CVS log for linux-2.6-xfs/fs/xfs/xfs_rw.h

[BACK] Up to [Development] / linux-2.6-xfs / fs / xfs

Request diff between arbitrary revisions


Default branch: MAIN
Current tag: MAIN


Revision 1.86 / (download) - annotate - [select for diffs], Mon Nov 5 15:04:07 2007 UTC (9 years, 11 months ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
CVS Tags: HEAD
Changes since 1.85: +2 -2 lines
Diff to previous 1.85 (colored)

optimize XFS_IS_REALTIME_INODE w/o realtime config

Use XFS_IS_REALTIME_INODE in more places, and #define it to
0 if CONFIG_XFS_RT is off.  This should be safe because mount
checks in xfs_rtmount_init:

# define xfs_rtmount_init(m)    (((mp)->m_sb.sb_rblocks == 0)? 0 : (ENOSYS))

so if we get mounted w/o CONFIG_XFS_RT, no realtime inodes should
be encountered after that.

Defining XFS_IS_REALTIME_INODE to 0 saves a bit of stack space,
presumeably gcc can optimize around the various "if (0)" type
checks:

xfs_alloc_file_space    -8
xfs_bmap_adjacent       -16
xfs_bmapi               -8
xfs_bmap_rtalloc        -16
xfs_bunmapi             -28
xfs_free_file_space     -64
xfs_imap                +8  <-- ?  hmm.
xfs_iomap_write_direct  -12
xfs_qm_dqusage_adjust   -4
xfs_qm_vop_chown_reserve -4

Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
Merge of xfs-linux-melb:xfs-kern:30014a by kenmcd.

  Use XFS_IS_REALTIME_INODE() rather than open coding the check.

Revision 1.85 / (download) - annotate - [select for diffs], Fri Sep 21 16:10:12 2007 UTC (10 years ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.84: +0 -8 lines
Diff to previous 1.84 (colored)

kill xfs_iocore_t

xfs_iocore_t is a structure embedded in xfs_inode.  Except for one
field it just duplicates fields already in xfs_inode, and there is
nothing this abstraction buys us on XFS/Linux.  This patch removes
it and shrinks source and binary size of xfs aswell as shrinking
the size of xfs_inode by 60/44 bytes in debug/non-debug builds.


Signed-off-by: Christoph Hellwig <hch@lst.de>
Merge of xfs-linux-melb:xfs-kern:29754a by kenmcd.

  kill xfs_iocore_t

Revision 1.84 / (download) - annotate - [select for diffs], Fri Aug 24 16:03:11 2007 UTC (10 years, 1 month ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.83: +0 -8 lines
Diff to previous 1.83 (colored)

decontaminate vnode operations from behavior details

All vnode ops now take struct xfs_inode pointers and the behaviour
related glue is split out into methods of it's own.  This required
fixing xfs_create/mkdir/symlink to not mess with the inode pointer
but rather use a separate boolean for error handling.  Thanks to
Dave Chinner for that fix.


Signed-off-by: Christoph Hellwig <hch@lst.de>
Merge of xfs-linux-melb:xfs-kern:29492a by kenmcd.

  convert vnode ops to take xfs_inode pointers and separate out
  behaviour related glue.

Revision 1.83 / (download) - annotate - [select for diffs], Thu Aug 2 16:07:51 2007 UTC (10 years, 2 months ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.82: +0 -26 lines
Diff to previous 1.82 (colored)

Remove m_nreadaheads

m_nreadaheads in the mount struct is never used; remove it
and the various macros assigned to it. Also remove a couple
other unused macros in the same areas.

Removes one user of xfs_physmem.

Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
Merge of xfs-linux-melb:xfs-kern:29322a by kenmcd.

  remove unused m_nreadaheads and associated macros.

Revision 1.82 / (download) - annotate - [select for diffs], Fri Jun 8 16:04:48 2007 UTC (10 years, 4 months ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.81: +22 -0 lines
Diff to previous 1.81 (colored)

Cleanup inode extent size hint extraction
Merge of xfs-linux-melb:xfs-kern:28866a by kenmcd.

  Define a common function for extracting the valid extent size
  hint from a given inode.

Revision 1.81 / (download) - annotate - [select for diffs], Tue May 22 03:59:49 2007 UTC (10 years, 4 months ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.80: +11 -3 lines
Diff to previous 1.80 (colored)

Make hole punching at EOF atomic.

If hole punching at EOF is done as two steps (i.e. truncate then extend)
the file is in a transient state between the two steps where an
application can see the incorrect file size. Punching a hole to
EOF needs to be treated in teh same way as all other hole punching
cases so that the file size is never seen to change.
Merge of xfs-linux-melb:xfs-kern:28641a by kenmcd.

  export and define flags for xfs_free_eofblocks.

Revision 1.80 / (download) - annotate - [select for diffs], Thu Jun 15 03:55:18 2006 UTC (11 years, 4 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.79: +2 -1 lines
Diff to previous 1.79 (colored)

Push some common code out of write path into core XFS code for sharing.
Merge of xfs-linux-melb:xfs-kern:26248a by kenmcd.

Revision 1.79 / (download) - annotate - [select for diffs], Tue May 30 15:57:54 2006 UTC (11 years, 4 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.78: +4 -3 lines
Diff to previous 1.78 (colored)

Resolve a namespace collision on remaining vtypes for FreeBSD porters.
Merge of xfs-linux-melb:xfs-kern:26108a by kenmcd.

Revision 1.78 / (download) - annotate - [select for diffs], Wed Feb 15 02:48:07 2006 UTC (11 years, 8 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.77: +1 -0 lines
Diff to previous 1.77 (colored)

Remove direct dependency between dmapi.ko and xfs.ko causing dmapi.ko to be held in "[permanent]" mode by the xfs module.
Merge of xfs-linux-melb:xfs-kern:25191a by kenmcd.

Revision 1.77 / (download) - annotate - [select for diffs], Fri Sep 23 03:51:28 2005 UTC (12 years ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.76: +12 -26 lines
Diff to previous 1.76 (colored)

Update license/copyright notices to match the prefered SGI boilerplate.
Merge of xfs-linux-melb:xfs-kern:23903a by kenmcd.

Revision 1.76 / (download) - annotate - [select for diffs], Fri Sep 23 03:48:50 2005 UTC (12 years ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.75: +28 -71 lines
Diff to previous 1.75 (colored)

Remove xfs_macros.c, xfs_macros.h, rework headers a whole lot.
Merge of xfs-linux-melb:xfs-kern:23901a by kenmcd.

Revision 1.75 / (download) - annotate - [select for diffs], Fri Nov 21 01:49:22 2003 UTC (13 years, 10 months ago) by nathans
Branch: MAIN
Changes since 1.74: +0 -26 lines
Diff to previous 1.74 (colored)

Seperate the NFS reference cache code out from xfs_rw.c to simplify management of different kernel versions.

Revision 1.74 / (download) - annotate - [select for diffs], Fri Oct 17 02:22:25 2003 UTC (14 years ago) by nathans
Branch: MAIN
Changes since 1.73: +1 -54 lines
Diff to previous 1.73 (colored)

Add some IO path tracing, move inval_cached_pages to a better home to help.

Revision 1.73 / (download) - annotate - [select for diffs], Fri Jun 27 18:04:26 2003 UTC (14 years, 3 months ago) by cattelan
Branch: MAIN
Changes since 1.72: +233 -0 lines
Diff to previous 1.72 (colored)

The Big Move
linux/fs/xfs/xfs_rw.h 1.71 Renamed to xfs_rw.h

Revision 1.72 / (download) - annotate - [select for diffs], Fri Jun 27 17:57:21 2003 UTC (14 years, 3 months ago) by cattelan
Branch: MAIN
CVS Tags: DENUKE
Changes since 1.71: +0 -233 lines
Diff to previous 1.71 (colored)

Nuke

Revision 1.71 / (download) - annotate - [select for diffs], Tue Apr 15 23:16:46 2003 UTC (14 years, 6 months ago) by cattelan
Branch: MAIN
CVS Tags: XFS-1_3_0pre1
Changes since 1.70: +39 -39 lines
Diff to previous 1.70 (colored)

Whitespace cleanup
Clean up some whitespace... revert some whitespace changes from previous whitespace cleanup (incorrect tabs)

Revision 1.70 / (download) - annotate - [select for diffs], Fri Mar 28 02:59:15 2003 UTC (14 years, 6 months ago) by nathans
Branch: MAIN
Changes since 1.69: +38 -22 lines
Diff to previous 1.69 (colored)

Move some extern declarations out of a .c file into a .h file.

Revision 1.69 / (download) - annotate - [select for diffs], Mon Oct 7 19:21:29 2002 UTC (15 years ago) by hch
Branch: MAIN
Changes since 1.68: +0 -1 lines
Diff to previous 1.68 (colored)

Remove struct pm entirely - it was never defined in the Linux port.
Remove struct pm argument from several functions.

Revision 1.68 / (download) - annotate - [select for diffs], Mon Oct 7 19:10:05 2002 UTC (15 years ago) by hch
Branch: MAIN
Changes since 1.67: +0 -1 lines
Diff to previous 1.67 (colored)

Remove leftovers of long-dead iocore methods
Remove stale typedefs.

Revision 1.67 / (download) - annotate - [select for diffs], Tue Aug 13 16:09:38 2002 UTC (15 years, 2 months ago) by lord
Branch: MAIN
Changes since 1.66: +1 -1 lines
Diff to previous 1.66 (colored)

rationalize xfs <-> pagebuf interface

Revision 1.66 / (download) - annotate - [select for diffs], Wed Jul 10 19:00:42 2002 UTC (15 years, 3 months ago) by sandeen
Branch: MAIN
Changes since 1.65: +56 -56 lines
Diff to previous 1.65 (colored)

whitespace cleanup

Revision 1.65 / (download) - annotate - [select for diffs], Mon Jul 8 22:09:30 2002 UTC (15 years, 3 months ago) by lord
Branch: MAIN
Changes since 1.64: +1 -2 lines
Diff to previous 1.64 (colored)

changes xfs_inval_cached_pages interface

Revision 1.64 / (download) - annotate - [select for diffs], Sat Jun 8 02:44:08 2002 UTC (15 years, 4 months ago) by lord
Branch: MAIN
Changes since 1.63: +0 -1 lines
Diff to previous 1.63 (colored)

remove unused parameter from read/write path

Revision 1.63 / (download) - annotate - [select for diffs], Tue Jun 4 16:30:46 2002 UTC (15 years, 4 months ago) by sandeen
Branch: MAIN
Changes since 1.62: +1 -1 lines
Diff to previous 1.62 (colored)

Update copyright dates

Revision 1.62 / (download) - annotate - [select for diffs], Tue Mar 26 16:19:25 2002 UTC (15 years, 6 months ago) by lord
Branch: MAIN
Changes since 1.61: +2 -1 lines
Diff to previous 1.61 (colored)

prototype change for xfs_inval_cached_pages

Revision 1.61 / (download) - annotate - [select for diffs], Wed Sep 26 19:08:38 2001 UTC (16 years ago) by sandeen
Branch: MAIN
Changes since 1.60: +9 -0 lines
Diff to previous 1.60 (colored)

Define XFS_REFCACHE_SIZE_MAX
Prototype for xfs_refcache_resize

Revision 1.60 / (download) - annotate - [select for diffs], Tue Sep 18 20:56:42 2001 UTC (16 years, 1 month ago) by sandeen
Branch: MAIN
Changes since 1.59: +2 -1 lines
Diff to previous 1.59 (colored)

update prototype for xfs_refcache_purge_some to include mountpoint arg

Revision 1.59 / (download) - annotate - [select for diffs], Tue Aug 14 13:35:18 2001 UTC (16 years, 2 months ago) by eric
Branch: MAIN
Changes since 1.58: +2 -2 lines
Diff to previous 1.58 (colored)

Merge of irix6.5f:irix:99901a
Change xfs_ioerror_alert prototype.

Revision 1.58 / (download) - annotate - [select for diffs], Tue Mar 6 19:44:15 2001 UTC (16 years, 7 months ago) by lord
Branch: MAIN
CVS Tags: Release-1_0_0, PreRelease-0_10, Linux-2_4_5-merge
Changes since 1.57: +16 -0 lines
Diff to previous 1.57 (colored)

prototypes for nfs reference cache

Revision 1.57 / (download) - annotate - [select for diffs], Tue Oct 10 14:38:27 2000 UTC (17 years ago) by lord
Branch: MAIN
Changes since 1.56: +1 -13 lines
Diff to previous 1.56 (colored)

remove dead prototypes

Revision 1.56 / (download) - annotate - [select for diffs], Mon Sep 25 05:42:07 2000 UTC (17 years ago) by nathans
Branch: MAIN
Changes since 1.55: +6 -53 lines
Diff to previous 1.55 (colored)

use xfs.h, remove all traces of SIM, push extern declarations into headers,
dead code removal.

Revision 1.55 / (download) - annotate - [select for diffs], Thu Sep 14 01:07:30 2000 UTC (17 years, 1 month ago) by nathans
Branch: MAIN
Changes since 1.54: +10 -10 lines
Diff to previous 1.54 (colored)

match the xfs_zero_eof declaration up with the current source.

Revision 1.54 / (download) - annotate - [select for diffs], Thu Jun 15 21:42:59 2000 UTC (17 years, 4 months ago) by jtk
Branch: MAIN
Changes since 1.53: +1 -16 lines
Diff to previous 1.53 (colored)

Pull the IRIX specific "refcache" code.

Revision 1.53 / (download) - annotate - [select for diffs], Fri Jun 9 06:40:03 2000 UTC (17 years, 4 months ago) by ananth
Branch: MAIN
Changes since 1.52: +12 -58 lines
Diff to previous 1.52 (colored)

Merge of 2.3.99pre2-xfs:slinx:63004a originally by lord on 05/30/00
  Remove page buf metadata as an option - it is always on now

Merge of 2.3.99pre2-xfs:slinx:63026a originally by cattelan on 05/30/00
  Masive type update 
  all daddr_t -> xfs_daddr_t
  caddr_t -> xfs_caddr_t
  off_t   -> xfs_off_t
  ino_t   -> xfs_ino_t
  off64_t -> xfs_off_t 
  Removed need for file xfs_to_linux.h and lunux_to_xfs.h

Merge of 2.3.99pre2-xfs:slinx:63532a originally by nathans on 06/06/00
  remove dead code.

Merge of 2.3.99pre2-xfs:slinx:63636a originally by nathans on 06/07/00
  more housekeeping - remove unused headers & dead code.

Revision 1.52 / (download) - annotate - [select for diffs], Fri Jun 9 02:50:02 2000 UTC (17 years, 4 months ago) by kenmcd
Branch: MAIN
CVS Tags: GPL-ENCUMBRANCE
Changes since 1.51: +25 -12 lines
Diff to previous 1.51 (colored)

Updated copyright and license notices, ready for open source release
Merge of 2.3.99pre2-xfs:slinx:55821a by ananth.

Revision 1.51 / (download) - annotate - [select for diffs], Fri Jun 9 01:11:55 2000 UTC (17 years, 4 months ago) by nathans
Branch: MAIN
CVS Tags: DELETE
Changes since 1.50: +0 -11 lines
Diff to previous 1.50 (colored)

Merge of 2.3.99pre2-xfs:slinx:46048a by ananth.

  Merge of 2.3.42-xfs:slinx:46048a by ananth.
  removed prototype for unused xfs_vop_readbuf() routine.

Revision 1.50 / (download) - annotate - [select for diffs], Fri Jun 9 00:03:30 2000 UTC (17 years, 4 months ago) by cattelan
Branch: MAIN
Changes since 1.49: +18 -0 lines
Diff to previous 1.49 (colored)

Merge of 2.3.99pre2-xfs:slinx:44186a by ananth.

  Merge of 2.3.42-xfs:slinx:44186a by ananth.
  Copied GPL from slinx-xfs tree.

Revision 1.49 / (download) - annotate - [select for diffs], Thu Jun 8 23:59:59 2000 UTC (17 years, 4 months ago) by lord
Branch: MAIN
Changes since 1.48: +0 -0 lines
Diff to previous 1.48 (colored)

Bring XFS upto 2.3.42
Merge of 2.3.99pre2-xfs:slinx:43458a by ananth.

  Merge of 2.3.42-xfs:slinx:43458a by ananth.

Revision 1.48 / (download) - annotate - [select for diffs], Mon Jan 24 21:38:02 2000 UTC (17 years, 8 months ago) by lord
Branch: MAIN
Changes since 1.47: +0 -0 lines
Diff to previous 1.47 (colored)

Merge from irix/irix6.5f to pingu/slinx-xfs
Merge of irix6.5f:irix:32165a created by doucette on 11/02/99
  Add a trace point for xfs_diordwr.

Revision 1.47 / (download) - annotate - [select for diffs], Tue Jan 4 23:18:33 2000 UTC (17 years, 9 months ago) by lord
Branch: MAIN
Changes since 1.46: +2 -0 lines
Diff to previous 1.46 (colored)

more pagebuf cleanup

Revision 1.46 / (download) - annotate - [select for diffs], Fri Nov 19 20:34:54 1999 UTC (17 years, 11 months ago) by lord
Branch: MAIN
Changes since 1.45: +0 -9 lines
Diff to previous 1.45 (colored)

Move xfs_bdwrite and xfs_bawrite to xfs_buf.h

Revision 1.45 / (download) - annotate - [select for diffs], Wed Nov 17 19:22:23 1999 UTC (17 years, 11 months ago) by lord
Branch: MAIN
Changes since 1.44: +16 -16 lines
Diff to previous 1.44 (colored)

replace struct buf and buf_t references with xfs_buf and xfs_buf_t

Revision 1.44 / (download) - annotate - [select for diffs], Mon Nov 15 23:07:16 1999 UTC (17 years, 11 months ago) by lord
Branch: MAIN
Changes since 1.43: +2 -0 lines
Diff to previous 1.43 (colored)

Merge from irix/irix6.5f to pingu/slinx-xfs
Merge of irix6.5f:irix:32165a created by doucette on 11/02/99
  Add a trace point for xfs_diordwr.

Revision 1.43 / (download) - annotate - [select for diffs], Fri May 14 20:13:13 1999 UTC (18 years, 5 months ago) by lord
Branch: MAIN
Changes since 1.42: +50 -33 lines
Diff to previous 1.42 (colored)

Merge from irix/cxfs-f to irix/irix6.5f
Merge of cxfs-f:irix:15011b created by lord on 05/11/99
  Merge from irix/cxfs to irix/cxfs-f
  Merge of cxfs:irix:13423a created by lord on 04/19/99
  CXFS infrastructure checkin

Merge of cxfs-f:irix:15285a created by lord on 05/12/99
  Clean up XFS code so that cxfs can use more of it for
  unwritten extent conversion.
  This is part 1 of 2 so that it can be merged into the
  'pre-merge' tree.
  Change prototype for xfs_strat_write_unwritten

Revision 1.42 / (download) - annotate - [select for diffs], Thu May 13 15:53:16 1999 UTC (18 years, 5 months ago) by lhd
Branch: MAIN
Changes since 1.41: +2 -1 lines
Diff to previous 1.41 (colored)

Add dio argument to xfs_inval_cached_pages prototype.

Revision 1.41 / (download) - annotate - [select for diffs], Fri Dec 4 21:44:23 1998 UTC (18 years, 10 months ago) by doucette
Branch: MAIN
Changes since 1.40: +2 -2 lines
Diff to previous 1.40 (colored)

Add casts to make this compile cleanly -64.
pv: 617654

Revision 1.40 / (download) - annotate - [select for diffs], Thu Sep 10 22:24:51 1998 UTC (19 years, 1 month ago) by nrs
Branch: MAIN
Changes since 1.39: +4 -1 lines
Diff to previous 1.39 (colored)

478652 - Added prototype for xfs_xfsd_list_evict

Revision 1.39 / (download) - annotate - [select for diffs], Sun Jul 12 03:57:42 1998 UTC (19 years, 3 months ago) by bbowen
Branch: MAIN
Changes since 1.38: +21 -1 lines
Diff to previous 1.38 (colored)

566573 - add structure definition and signature changes
for i/o page lockdown and nested inode locking

Revision 1.38 / (download) - annotate - [select for diffs], Wed Apr 29 12:54:46 1998 UTC (19 years, 5 months ago) by ram
Branch: MAIN
Changes since 1.37: +14 -1 lines
Diff to previous 1.37 (colored)

Add a structure for passing dio information to xfs_dio_read() and
xfs_dio_write().
pv: 548344
rv: kayuri@engr, lord@cray.com

Revision 1.37 / (download) - annotate - [select for diffs], Fri Feb 20 23:09:35 1998 UTC (19 years, 8 months ago) by rm
Branch: MAIN
Changes since 1.36: +4 -1 lines
Diff to previous 1.36 (colored)

Implement unwritten extent flagging.
rv: doucette@engr, rcc@engr, earsh@engr, kayuri@engr
pv: 705217

Revision 1.36 / (download) - annotate - [select for diffs], Thu Jan 8 04:48:27 1998 UTC (19 years, 9 months ago) by doucette
Branch: MAIN
Changes since 1.35: +3 -1 lines
Diff to previous 1.35 (colored)

Add xfs_inval_cached_trace to trace (xrwtrc) calls to
xfs_inval_cached_pages.  Add read/write tracing for
xfs_bunmapi calls as well.
pv: 555734
rv: kayuri@engr

Revision 1.35 / (download) - annotate - [select for diffs], Fri Sep 12 17:49:45 1997 UTC (20 years, 1 month ago) by lord
Branch: MAIN
Changes since 1.34: +2 -2 lines
Diff to previous 1.34 (colored)

change prototypes

Revision 1.34 / (download) - annotate - [select for diffs], Fri Jul 25 08:18:10 1997 UTC (20 years, 2 months ago) by rcc
Branch: MAIN
Changes since 1.33: +12 -1 lines
Diff to previous 1.33 (colored)

412713 - update xfs_vop_readbuf signature

Revision 1.33 / (download) - annotate - [select for diffs], Wed Apr 30 22:32:19 1997 UTC (20 years, 5 months ago) by sup
Branch: MAIN
Changes since 1.32: +0 -6 lines
Diff to previous 1.32 (colored)

cleanup error handling changes

Revision 1.32 / (download) - annotate - [select for diffs], Fri Mar 28 01:54:54 1997 UTC (20 years, 6 months ago) by sup
Branch: MAIN
Changes since 1.31: +4 -7 lines
Diff to previous 1.31 (colored)

disk error handling changes

Revision 1.31 / (download) - annotate - [select for diffs], Fri Feb 21 04:33:16 1997 UTC (20 years, 7 months ago) by sup
Branch: MAIN
Changes since 1.30: +10 -4 lines
Diff to previous 1.30 (colored)

Changed the func name from xfs_bdstrat to xfs_bdstrat_cb().
It was confusingly overloaded.

Revision 1.30 / (download) - annotate - [select for diffs], Tue Jan 28 00:36:24 1997 UTC (20 years, 8 months ago) by doucette
Branch: MAIN
Changes since 1.29: +7 -16 lines
Diff to previous 1.29 (colored)

Turn xfs_bdelwri/xfs_bdwrite and xfs_basyncwri/xfs_bawrite into
"normal" macros, not in xfs_macros.c, to make the simulation build happier.

Revision 1.29 / (download) - annotate - [select for diffs], Sat Jan 25 02:55:42 1997 UTC (20 years, 8 months ago) by sup
Branch: MAIN
Changes since 1.28: +51 -2 lines
Diff to previous 1.28 (colored)

First cut of XFS I/O error handling changes.

Revision 1.28 / (download) - annotate - [select for diffs], Sat Oct 12 02:00:29 1996 UTC (21 years ago) by pjr
Branch: MAIN
Changes since 1.27: +15 -1 lines
Diff to previous 1.27 (colored)

file system implementations of read and write vops now by default assume they must do locking themselves - i.e., they assume that VOP_RWLOCK/VOP_RWUNLOCK hasn't been done by the layer above.  This is unless the IO_ISLOCKED flag is set in the ioflag arg, in which case it assumes the layer above did call VOP_RWLOCK/VOP_RWUNLOCK.

Revision 1.27 / (download) - annotate - [select for diffs], Thu Aug 29 18:13:37 1996 UTC (21 years, 1 month ago) by doucette
Branch: MAIN
Changes since 1.26: +31 -20 lines
Diff to previous 1.26 (colored)

Add xfs_inval_cached_pages and xfs_write_clear_setuid prototypes.

Revision 1.26 / (download) - annotate - [select for diffs], Tue May 14 23:49:34 1996 UTC (21 years, 5 months ago) by ajs
Branch: MAIN
Changes since 1.25: +3 -1 lines
Diff to previous 1.25 (colored)

380202 Update xfs_zero_eof() prototype.

Revision 1.25 / (download) - annotate - [select for diffs], Mon Apr 1 22:49:42 1996 UTC (21 years, 6 months ago) by ajs
Branch: MAIN
Changes since 1.24: +1 -1 lines
Diff to previous 1.24 (colored)

Changes for vnodes with behaviors.

Revision 1.24 / (download) - annotate - [select for diffs], Sat Mar 9 00:15:25 1996 UTC (21 years, 7 months ago) by pjr
Branch: MAIN
Changes since 1.23: +6 -6 lines
Diff to previous 1.23 (colored)

remove pvnode_t and related

Revision 1.23 / (download) - annotate - [select for diffs], Tue Jan 23 09:19:33 1996 UTC (21 years, 8 months ago) by ack
Branch: MAIN
Changes since 1.22: +12 -42 lines
Diff to previous 1.22 (colored)

auto-merge of changes from /proj/banyan/isms/irix/kern/fs/xfs/RCS/xfs_rw.h,v
> ----------------------------
> revision 1.20
> date: 1996/01/20 00:51:42;  author: doucette;  state: Exp;  lines: +12 -42
> Remove unused structure xfs_strat_write_locals (used to be a zone).
> Change the names of the XFS_ZONE_NBMAPS uses to something more
> reasonable since we're not using zones for this anymore.  Cut the
> number of readaheads (in xfs_read_file) in small memory systems (bug
> 318607).
> =============================================================================

Revision 1.22 / (download) - annotate - [select for diffs], Thu Dec 21 02:11:13 1995 UTC (21 years, 10 months ago) by huy
Branch: MAIN
Changes since 1.21: +5 -5 lines
Diff to previous 1.21 (colored)

new prototypes for xfs_read(), xfs_write(), xfs_strategy(),
        xfs_bmap(). First parameter is now pvnode_t *

Revision 1.21 / (download) - annotate - [select for diffs], Thu Nov 9 04:16:23 1995 UTC (21 years, 11 months ago) by jwag
Branch: MAIN
Changes since 1.20: +6 -3 lines
Diff to previous 1.20 (colored)

changes for new VOP_READ/VOP_WRITE interface.

Revision 1.20 / (download) - annotate - [select for diffs], Tue Oct 24 07:44:35 1995 UTC (21 years, 11 months ago) by ack
Branch: MAIN
Changes since 1.19: +0 -0 lines
Diff to previous 1.19 (colored)

auto-merge of changes from /hosts/clyde/proj/banyan/isms/irix/kern/fs/xfs/RCS/xfs_rw.h,v
> ----------------------------
> revision 1.19
> date: 1995/10/13 16:11:35;  author: ajs;  state: Exp;  lines: +11 -1
> Put XFS tracing under ifdefs separate from DEBUG
> =============================================================================

Revision 1.19 / (download) - annotate - [select for diffs], Tue Oct 17 08:20:21 1995 UTC (22 years ago) by ack
Branch: MAIN
Changes since 1.18: +11 -1 lines
Diff to previous 1.18 (colored)

auto-merge of changes from /hosts/clyde/proj/banyan/isms/irix/kern/fs/xfs/RCS/xfs_rw.h,v
> ----------------------------
> revision 1.19
> date: 1995/10/13 16:11:35;  author: ajs;  state: Exp;  lines: +11 -1
> Put XFS tracing under ifdefs separate from DEBUG
> =============================================================================

Revision 1.18 / (download) - annotate - [select for diffs], Wed Aug 16 05:46:36 1995 UTC (22 years, 2 months ago) by doucette
Branch: MAIN
Changes since 1.17: +9 -3 lines
Diff to previous 1.17 (colored)

Turn some macros into functions for 32-bit kernels, to save some memory.
Change XFS_FSB_TO_DB by removing the mp argument, get that value out
of the inode instead.

Revision 1.17 / (download) - annotate - [select for diffs], Mon May 1 17:54:57 1995 UTC (22 years, 5 months ago) by ajs
Branch: MAIN
Changes since 1.16: +13 -0 lines
Diff to previous 1.16 (colored)

Add prototypes for write reference cache interfaces.

Revision 1.16 / (download) - annotate - [select for diffs], Thu Apr 13 03:15:24 1995 UTC (22 years, 6 months ago) by ajs
Branch: MAIN
Changes since 1.15: +11 -2 lines
Diff to previous 1.15 (colored)

First cut at disk error handling

Revision 1.15 / (download) - annotate - [select for diffs], Fri Mar 31 20:05:50 1995 UTC (22 years, 6 months ago) by doucette
Branch: MAIN
Changes since 1.14: +50 -42 lines
Diff to previous 1.14 (colored)

Add an #ident line.
Use struct xxx * instead of xxx_t * in xfs header files to avoid
unnecessary dependencies between header files.

Revision 1.14 / (download) - annotate - [select for diffs], Wed Feb 22 20:47:44 1995 UTC (22 years, 7 months ago) by doucette
Branch: MAIN
Changes since 1.13: +1 -1 lines
Diff to previous 1.13 (colored)

Fix bugs 263156, 263632 - enable 64-bit file sizes in 64-bit kernels.

Revision 1.13 / (download) - annotate - [select for diffs], Thu Oct 20 03:26:31 1994 UTC (23 years ago) by ajs
Branch: MAIN
Changes since 1.12: +10 -0 lines
Diff to previous 1.12 (colored)

Add XFS_FSB_TO_DB to convert from fs blocks to disk blocks
taking into account whether the file is a real time file
or not.

Revision 1.12 / (download) - annotate - [select for diffs], Fri Oct 7 21:54:13 1994 UTC (23 years ago) by ajs
Branch: MAIN
Changes since 1.11: +18 -0 lines
Diff to previous 1.11 (colored)

241835 Make sure that we always zero unitialized data before
making it accessible to the user.  We were failing to do so
in the case where when we mapped an extent it was delalloc,
but when xfs_strat_read() got the buffer for it it had been
allocated.  Thus we read it from disk but it had not yet been
initialized.  Now we track where the holes are when we map
out a region in xfs_strat_write() and use that list to know
which blocks must be unitialized in xfs_strat_read().

Revision 1.11 / (download) - annotate - [select for diffs], Fri Sep 23 16:45:35 1994 UTC (23 years ago) by ajs
Branch: MAIN
Changes since 1.10: +1 -0 lines
Diff to previous 1.10 (colored)

Add a debug local for xfs_strat_write().

Revision 1.10 / (download) - annotate - [select for diffs], Sat Sep 3 21:55:49 1994 UTC (23 years, 1 month ago) by ajs
Branch: MAIN
Changes since 1.9: +23 -0 lines
Diff to previous 1.9 (colored)

Add fields to strat write locals and defines for
tracing code.

Revision 1.9 / (download) - annotate - [select for diffs], Fri Sep 2 15:40:32 1994 UTC (23 years, 1 month ago) by ajs
Branch: MAIN
Changes since 1.8: +12 -0 lines
Diff to previous 1.8 (colored)

Define maximum sized buffer to be used by XFS.

Revision 1.8 / (download) - annotate - [select for diffs], Tue Jun 14 15:38:36 1994 UTC (23 years, 4 months ago) by ajs
Branch: MAIN
Changes since 1.7: +1 -0 lines
Diff to previous 1.7 (colored)

Add another local for xfs_strat_write.

Revision 1.7 / (download) - annotate - [select for diffs], Mon Jun 13 07:34:00 1994 UTC (23 years, 4 months ago) by miken
Branch: MAIN
Changes since 1.6: +0 -0 lines
Diff to previous 1.6 (colored)

no diffs; oops.

Revision 1.6 / (download) - annotate - [select for diffs], Mon May 23 21:51:44 1994 UTC (23 years, 5 months ago) by ajs
Branch: MAIN
Changes since 1.5: +38 -0 lines
Diff to previous 1.5 (colored)

Define structure to hold xfs_strat_write() local variables.

Revision 1.5 / (download) - annotate - [select for diffs], Fri Apr 22 00:22:16 1994 UTC (23 years, 6 months ago) by ajs
Branch: MAIN
Changes since 1.4: +1 -1 lines
Diff to previous 1.4 (colored)

Just syntactic cleanup.

Revision 1.4 / (download) - annotate - [select for diffs], Mon Mar 14 01:10:21 1994 UTC (23 years, 7 months ago) by ajs
Branch: MAIN
Changes since 1.3: +2 -1 lines
Diff to previous 1.3 (colored)

Changing prototype for xfs_zero_eof().

Revision 1.3 / (download) - annotate - [select for diffs], Mon Mar 7 21:41:18 1994 UTC (23 years, 7 months ago) by ajs
Branch: MAIN
Changes since 1.2: +4 -0 lines
Diff to previous 1.2 (colored)

Adding a prototype for xfs_zero_eof().

Revision 1.2 / (download) - annotate - [select for diffs], Fri Feb 25 02:01:14 1994 UTC (23 years, 7 months ago) by ajs
Branch: MAIN
Changes since 1.1: +9 -0 lines
Diff to previous 1.1 (colored)

Add prototype for xfs_bmap().

Revision 1.1 / (download) - annotate - [select for diffs], Thu Feb 17 01:04:39 1994 UTC (23 years, 8 months ago) by ajs
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>