CVS log for xfs-linux/xfs_attr_leaf.c

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

Request diff between arbitrary revisions


Default branch: MAIN
Current tag: MAIN


Revision 1.117 / (download) - annotate - [select for diffs], Tue Aug 19 15:46:54 2008 UTC (9 years, 2 months ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
CVS Tags: HEAD
Changes since 1.116: +23 -23 lines
Diff to previous 1.116 (colored)

convert beX_add to beX_add_cpu (new common API)

remove beX_add functions and replace all uses with beX_add_cpu

Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com>
Merge of xfs-linux-melb:xfs-kern:31920a by kenmcd.

  convert beX_add to beX_add_cpu (new common API)

Revision 1.116 / (download) - annotate - [select for diffs], Fri Jul 25 06:13:14 2008 UTC (9 years, 3 months ago) by xaiki.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.115: +5 -1 lines
Diff to previous 1.115 (colored)

Undoes mod:     xfs-linux-melb:xfs-kern:31766a
Revert remove mounpoint UUID code

As spotted by dchinner and hch, this touches on-disk format and log format, should be more carefully reviewed.
Merge of xfs-linux-melb:xfs-kern:31773a by kenmcd.

Revision 1.115 / (download) - annotate - [select for diffs], Fri Jul 25 04:21:53 2008 UTC (9 years, 3 months ago) by xaiki.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.114: +1 -5 lines
Diff to previous 1.114 (colored)

remove mounpoint UUID code

It looks like all of the below is unused... and according
to Nathan,

"dont think it even got used/implemented anywhere, but i think it
was meant to be an auto-mount kinda thing... such that when you look
up at that point, it knows to mount the device with that uuid there,
if its not already it was never really written anywhere ... just an
idea in doug doucettes brain i think."

Think it'll ever go anywhere, or should it get pruned?

The below builds; not at all tested, until I get an idea if it's worth
doing.  Need to double check that some structures might not need padding
out to keep things compatible/consistent...
Merge of xfs-linux-melb:xfs-kern:31766a by kenmcd.

Revision 1.114 / (download) - annotate - [select for diffs], Wed Jul 23 16:38:25 2008 UTC (9 years, 3 months ago) by xaiki.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.113: +8 -67 lines
Diff to previous 1.113 (colored)

Move xfs_attr_rolltrans to xfs_trans_roll

Move it from the attr code to the transaction code and make the attr
code call the new function.

We rolltrans is really usefull whenever we want to use rolling
transaction, should be generic, it isn't dependent on any part of the
attr code anyway.

We use this excuse to change all the:
 if ((error = xfs_attr_rolltrans()))

calls into:
 error = xfs_trans_roll();
 if (error)

Signed-off-by: Niv Sardi <xaiki@sgi.com>
Merge of xfs-linux-melb:xfs-kern:31729a by kenmcd.

Revision 1.113 / (download) - annotate - [select for diffs], Wed Jun 18 06:16:45 2008 UTC (9 years, 4 months ago) by tes.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.112: +7 -54 lines
Diff to previous 1.112 (colored)

Switches xfs_vn_listxattr to set it's put_listent callback
directly and not go through xfs_attr_list.

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

  Switches xfs_vn_listxattr to set it's put_listent callback
  directly and not go through xfs_attr_list.

Revision 1.112 / (download) - annotate - [select for diffs], Wed May 21 04:23:47 2008 UTC (9 years, 5 months ago) by bnaujok.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.111: +11 -9 lines
Diff to previous 1.111 (colored)

Add op_flags field and helpers to xfs_da_args

The end of the xfs_da_args structure has 4 unsigned char fields for
true/false information on directory and attr operations using the
xfs_da_args structure.

The following converts these 4 into a op_flags field that uses the
first 4 bits for these fields and allows expansion for future
operation information (eg. case-insensitive lookup request).

Signed-off-by: Barry Naujok <bnaujok@sgi.com>
Merge of xfs-linux-melb:xfs-kern:31206a by kenmcd.

  Convert discrete xfs_da_args flags into flag bits

Revision 1.111 / (download) - annotate - [select for diffs], Fri May 9 04:27:47 2008 UTC (9 years, 5 months ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.110: +9 -9 lines
Diff to previous 1.110 (colored)

Remove unused arg from kmem_free()

kmem_free() function takes (ptr, size) arguments but doesn't
actually use second one.

This patch removes size argument from all callsites.

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Merge of xfs-linux-melb:xfs-kern:31050a by kenmcd.

  Remove unused arg from kmem_free()

Revision 1.110 / (download) - annotate - [select for diffs], Mon Apr 14 06:13:52 2008 UTC (9 years, 6 months ago) by tes.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.109: +1 -1 lines
Diff to previous 1.109 (colored)

Always use di_forkoff when checking for attr space.

In the case where we mount a filesystem which was previously
using the attr2 format as attr1, returning the default
mp->m_attroffset instead of the per-inode di_forkoff for
inline attribute fit calculations, may result in corruption,
if for example, the data fork is already taking more space
than the default fork offset and we try to add an extended attribute.
Fix tested by xfstests/186.

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

  Fix up xfs_attr_shortform_bytesfit() to return di_forkoff for attr1 instead
  of m_attroffset, when we have a fit in the inode.
  Fix tested by xfstests/186.

Revision 1.109 / (download) - annotate - [select for diffs], Fri Feb 22 03:05:49 2008 UTC (9 years, 8 months ago) by donaldd.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.108: +3 -3 lines
Diff to previous 1.108 (colored)

remove shouting-indirection macros from xfs_sb.h

Remove macro-to-small-function indirection from xfs_sb.h,
and remove some which are completely unused.

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

  remove shouting-indirection macros from xfs_sb.h

Revision 1.108 / (download) - annotate - [select for diffs], Fri Sep 21 06:16:14 2007 UTC (10 years, 1 month ago) by donaldd.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.107: +3 -5 lines
Diff to previous 1.107 (colored)

Unwrap XFS_SB_LOCK.

Un-obfuscate XFS_SB_LOCK, remove XFS_SB_LOCK->mutex_lock->spin_lock
macros, call spin_lock directly, remove extraneous cookie
holdover from old xfs code, and change lock type to spinlock_t.

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

  Unwrap XFS_SB_LOCK

Revision 1.107 / (download) - annotate - [select for diffs], Fri Mar 2 02:59:33 2007 UTC (10 years, 7 months ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.106: +1 -1 lines
Diff to previous 1.106 (colored)

The last argument "lsn" of xfs_trans_commit() is always called with NULL.

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

  The last argument "lsn" of xfs_trans_commit() is always called with NULL.
  Signed-off-by: Eric Sandeen <sandeen@sandeen.net>

Revision 1.106 / (download) - annotate - [select for diffs], Tue Feb 6 02:54:01 2007 UTC (10 years, 8 months ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.105: +2 -1 lines
Diff to previous 1.105 (colored)

Fix assertion in xfs_attr_shortform_remove().
Merge of xfs-linux-melb:xfs-kern:28021a by kenmcd.

  Fix assertion in xfs_attr_shortform_remove().

Revision 1.105 / (download) - annotate - [select for diffs], Thu Dec 21 02:50:36 2006 UTC (10 years, 10 months ago) by bnaujok.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.104: +42 -3 lines
Diff to previous 1.104 (colored)

Fix attr2 corruption with btree data extents
Merge of xfs-linux-melb:xfs-kern:27792a by kenmcd.

  Lock forkoff when data extent is in btree form. Also allow more space for
  attr if extents must convert to btree form.

Revision 1.104 / (download) - annotate - [select for diffs], Thu Nov 30 14:40:05 2006 UTC (10 years, 10 months ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.103: +3 -3 lines
Diff to previous 1.103 (colored)

Keep stack usage down for 4k stacks by using noinline.

gcc-4.1 and more recent aggressively inline static functions which
increases XFS stack usage by ~15% in critical paths. Prevent
this from occurring by adding noinline to the STATIC definition.

Also uninline some functions that are too large to be inlined and
were causing problems with CONFIG_FORCED_INLINING=y.

Finally, clean up all the different users of inline, __inline and
__inline__ and put them under one STATIC_INLINE macro. For debug
kernels the STATIC_INLINE macro uninlines those functions.
Merge of xfs-linux-melb:xfs-kern:27585a by kenmcd.

  noinline static function declaration cleanup.

Revision 1.103 / (download) - annotate - [select for diffs], Fri Aug 4 13:25:10 2006 UTC (11 years, 2 months ago) by tes.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.102: +155 -196 lines
Diff to previous 1.102 (colored)

Add EA list callbacks for xfs kernel use.
Cleanup some namespace code.
Merge of xfs-linux-melb:xfs-kern:26583a by kenmcd.

  Add calls to EA list callback.
  Allow callback to pass out a value as well as a name.
  Allow callback to indicate that the list iteration should
  finish early allowing to be used for searching.
  Abstract some namespace operations to simplify code for additions
  of more namespaces if needed.

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

Remove version 1 directory code.  Never functioned on Linux, just pure bloat.
Merge of xfs-linux-melb:xfs-kern:26251a by kenmcd.

Revision 1.101 / (download) - annotate - [select for diffs], Thu Apr 13 10:13:05 2006 UTC (11 years, 6 months ago) by olaf
Branch: MAIN
Changes since 1.100: +1 -1 lines
Diff to previous 1.100 (colored)

Add parameters to xfs_bmapi() and xfs_bunmapi() to have them
report the range spanned by modifications to the in-core extent
map.  Add XFS_BUNMAPI() and XFS_SWAP_EXTENTS() macros that call
xfs_bunmapi() and xfs_swap_extents() via the ioops vector.
Change all calls that may modify the in-core extent map for the
data fork to go through the ioops vector.  This allows a cache
of extent map data to be kept in sync.
Provide extra parameter for xfs_bmapi().

Revision 1.100 / (download) - annotate - [select for diffs], Thu Mar 23 02:48:21 2006 UTC (11 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.99: +2 -2 lines
Diff to previous 1.99 (colored)

We really suck at spulling.  Thanks to Chris Pascoe for fixing all these typos.
Merge of xfs-linux-melb:xfs-kern:25539a by kenmcd.

Revision 1.99 / (download) - annotate - [select for diffs], Fri Mar 17 14:48:35 2006 UTC (11 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.98: +2 -2 lines
Diff to previous 1.98 (colored)

endianess annotations for xfs_da_node_hdr_t

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

  endianess annotations for xfs_da_node_hdr_t

Revision 1.98 / (download) - annotate - [select for diffs], Fri Mar 17 14:47:48 2006 UTC (11 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.97: +3 -3 lines
Diff to previous 1.97 (colored)

endianess annotations for xfs_da_node_entry_t

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

  endianess annotations for xfs_da_node_entry_t

Revision 1.97 / (download) - annotate - [select for diffs], Fri Mar 17 14:47:02 2006 UTC (11 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.96: +5 -9 lines
Diff to previous 1.96 (colored)

store xfs_attr_inactive_list_t in native endian

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

  store xfs_attr_inactive_list_t in native endian

Revision 1.96 / (download) - annotate - [select for diffs], Fri Mar 17 14:46:19 2006 UTC (11 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.95: +7 -10 lines
Diff to previous 1.95 (colored)

store xfs_attr_sf_sort in native endian

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

  store xfs_attr_sf_sort in native endian

Revision 1.95 / (download) - annotate - [select for diffs], Fri Mar 17 14:45:34 2006 UTC (11 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.94: +25 -30 lines
Diff to previous 1.94 (colored)

endianess annotations for xfs_attr_shortform_t

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

  endianess annotations for xfs_attr_shortform_t

Revision 1.94 / (download) - annotate - [select for diffs], Fri Mar 17 14:44:48 2006 UTC (11 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.93: +10 -14 lines
Diff to previous 1.93 (colored)

endianess annotations for xfs_attr_leaf_name_remote_t

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

  endianess annotations for xfs_attr_leaf_name_remote_t

Revision 1.93 / (download) - annotate - [select for diffs], Fri Mar 17 14:44:04 2006 UTC (11 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.92: +8 -10 lines
Diff to previous 1.92 (colored)

endianess annotations for xfs_attr_leaf_name_local_t

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

  endianess annotations for xfs_attr_leaf_name_local_t

Revision 1.92 / (download) - annotate - [select for diffs], Fri Mar 17 14:43:20 2006 UTC (11 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.91: +59 -74 lines
Diff to previous 1.91 (colored)

endianess annotations for xfs_attr_leaf_entry_t

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

  endianess annotations for xfs_attr_leaf_entry_t

Revision 1.91 / (download) - annotate - [select for diffs], Fri Mar 17 14:42:34 2006 UTC (11 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.90: +188 -226 lines
Diff to previous 1.90 (colored)

endianess annotations for xfs_attr_leaf_hdr_t

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

  endianess annotations for xfs_attr_leaf_hdr_t

Revision 1.90 / (download) - annotate - [select for diffs], Fri Mar 17 14:41:01 2006 UTC (11 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.89: +35 -63 lines
Diff to previous 1.89 (colored)

endianess annotations for xfs_da_blkinfo_t

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

  endianess annotations for xfs_da_blkinfo_t

Revision 1.89 / (download) - annotate - [select for diffs], Wed Nov 30 03:28:58 2005 UTC (11 years, 10 months ago) by nathans
Branch: MAIN
Changes since 1.88: +6 -6 lines
Diff to previous 1.88 (colored)

Reverse the sense of COMPAT_ATTR and ATTR2, keeps it simple and consistent.

Revision 1.88 / (download) - annotate - [select for diffs], Fri Nov 25 05:08:51 2005 UTC (11 years, 11 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.87: +8 -3 lines
Diff to previous 1.87 (colored)

Fix a case where attr2 format was being used unconditionally.
Merge of xfs-linux-melb:xfs-kern:24566a by kenmcd.

Revision 1.87 / (download) - annotate - [select for diffs], Mon Sep 26 15:00:54 2005 UTC (12 years, 1 month ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.86: +6 -6 lines
Diff to previous 1.86 (colored)

Fix up a 32/64 local flags variable issue when enabling attr2 mode.
Merge of xfs-linux-melb:xfs-kern:23925a by kenmcd.

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

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

Revision 1.85 / (download) - annotate - [select for diffs], Fri Sep 23 03:48:50 2005 UTC (12 years, 1 month ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.84: +7 -14 lines
Diff to previous 1.84 (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.84 / (download) - annotate - [select for diffs], Tue Sep 20 15:24:48 2005 UTC (12 years, 1 month ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.83: +1 -1 lines
Diff to previous 1.83 (colored)

Fix up an internal sort function name collision issue.
Merge of xfs-linux-melb:xfs-kern:23859a by kenmcd.

Revision 1.83 / (download) - annotate - [select for diffs], Fri Sep 16 15:10:21 2005 UTC (12 years, 1 month ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.82: +152 -25 lines
Diff to previous 1.82 (colored)

Ondisk format extension for extended attributes (attr2).  Basically, the data/attr forks now grow up/down from either end of the literal area, rather than dividing the literal area into two chunks and growing both upward.  Means we can now make much more efficient use of the attribute space, incl. fitting DMF attributes inline in 256 byte inodes, and large jumps in dbench3 performance numbers.  It is self enabling, but can be forced on/off via the attr2/noattr2 mount options.
Merge of xfs-linux-melb:xfs-kern:23835a by kenmcd.

Revision 1.82 / (download) - annotate - [select for diffs], Fri Sep 16 15:09:30 2005 UTC (12 years, 1 month ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.81: +0 -0 lines
Diff to previous 1.81 (colored)

Ondisk format extension for extended attributes (attr2).  Basically, the data/attr forks now grow up/down from either end of the literal area, rather than dividing the literal area into two chunks and growing both upward.  Means we can now make much more efficient use of the attribute space, incl. fitting DMF attributes inline in 256 byte inodes, and large jumps in dbench3 performance numbers.  It is self enabling, but can be forced on/off via the attr2/noattr2 mount options.
Merge of xfs-linux-melb:xfs-kern:23834a by kenmcd.

Revision 1.81 / (download) - annotate - [select for diffs], Fri Sep 16 06:02:09 2005 UTC (12 years, 1 month ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.80: +22 -17 lines
Diff to previous 1.80 (colored)

Move some code around to prepare for the upcoming extended attributes format change (attr2).
Merge of xfs-linux-melb:xfs-kern:23833a by kenmcd.

Revision 1.80 / (download) - annotate - [select for diffs], Wed May 18 09:29:33 2005 UTC (12 years, 5 months ago) by hch
Branch: MAIN
Changes since 1.79: +22 -6 lines
Diff to previous 1.79 (colored)

mark various symbols static

Patch from Adrian Bunk

Revision 1.79 / (download) - annotate - [select for diffs], Fri Jan 14 11:57:33 2005 UTC (12 years, 9 months ago) by hch
Branch: MAIN
Changes since 1.78: +30 -30 lines
Diff to previous 1.78 (colored)

Remove INT_ZERO and INT_ISZERO
0 is 0 in all endianess variant.  No need for INT_ZERO and INT_ISZERO

Revision 1.78 / (download) - annotate - [select for diffs], Mon Mar 29 01:36:21 2004 UTC (13 years, 7 months ago) by nathans
Branch: MAIN
Changes since 1.77: +3 -4 lines
Diff to previous 1.77 (colored)

Fix shortform attr flags botch affecting listxattr - from Andreas Gruenbacher.

Revision 1.77 / (download) - annotate - [select for diffs], Thu Feb 19 01:55:09 2004 UTC (13 years, 8 months ago) by nathans
Branch: MAIN
Changes since 1.76: +19 -3 lines
Diff to previous 1.76 (colored)

Fix the by-handle attr list interface (used by xfsdump) for security attrs.

Revision 1.76 / (download) - annotate - [select for diffs], Thu Jan 29 03:56:41 2004 UTC (13 years, 9 months ago) by nathans
Branch: MAIN
Changes since 1.75: +35 -10 lines
Diff to previous 1.75 (colored)

Add the security extended attributes namespace.

Revision 1.75 / (download) - annotate - [select for diffs], Fri Dec 12 04:08:29 2003 UTC (13 years, 10 months ago) by nathans
Branch: MAIN
Changes since 1.74: +30 -23 lines
Diff to previous 1.74 (colored)

Rework some extended attributes code to make it more easily extended.

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

The Big Move
linux/fs/xfs/xfs_attr_leaf.c 1.72 Renamed to xfs_attr_leaf.c

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

Nuke

Revision 1.72 / (download) - annotate - [select for diffs], Tue May 20 17:12:43 2003 UTC (14 years, 5 months ago) by sandeen
Branch: MAIN
Changes since 1.71: +1 -2 lines
Diff to previous 1.71 (colored)

Remove test for impossible condition (unsigned 8-bit >= 256)

Revision 1.71 / (download) - annotate - [select for diffs], Thu May 1 16:22:06 2003 UTC (14 years, 5 months ago) by cattelan
Branch: MAIN
CVS Tags: XFS-1_3_0pre1
Changes since 1.70: +30 -1 lines
Diff to previous 1.70 (colored)

Rework the way xfs includes xfs_<blah>.h headers.
This reduces a lot of the compile dependenciesÂ,
and should reduce some of the "recompile all" situations.

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

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

Revision 1.69 / (download) - annotate - [select for diffs], Wed Mar 5 14:26:06 2003 UTC (14 years, 7 months ago) by hch
Branch: MAIN
Changes since 1.68: +1 -1 lines
Diff to previous 1.68 (colored)

Spelling fixes from 2.5.64

Revision 1.68 / (download) - annotate - [select for diffs], Tue Mar 4 20:15:43 2003 UTC (14 years, 7 months ago) by overby
Branch: MAIN
Changes since 1.67: +6 -2 lines
Diff to previous 1.67 (colored)

Add error reporting calls in error paths that return EFSCORRUPTED
Merge of irix6.5f:irix:136445a by sandeen.

  Merge of grove2-6520stage:irix:136445a by roehrich.
  Merge of grove2:irix:136445a by roehrich.
  Add error reporting calls in error paths that return EFSCORRUPTED

Revision 1.67 / (download) - annotate - [select for diffs], Mon Nov 18 20:39:28 2002 UTC (14 years, 11 months ago) by lord
Branch: MAIN
Changes since 1.66: +1 -1 lines
Diff to previous 1.66 (colored)

avoid need to remap pages when discarding attribute space
pass explicit flags into trans_get_buf

Revision 1.66 / (download) - annotate - [select for diffs], Wed Oct 23 04:21:07 2002 UTC (15 years ago) by kaos
Branch: MAIN
Changes since 1.65: +11 -11 lines
Diff to previous 1.65 (colored)

Undoes mod:     2.4.x-xfs:slinx:130826a
Revert STATIC->static change

Revision 1.65 / (download) - annotate - [select for diffs], Wed Oct 23 03:54:05 2002 UTC (15 years ago) by kaos
Branch: MAIN
Changes since 1.64: +11 -11 lines
Diff to previous 1.64 (colored)

Replace STATIC with static in xfs code

Revision 1.64 / (download) - annotate - [select for diffs], Wed Oct 9 03:06:48 2002 UTC (15 years ago) by nathans
Branch: MAIN
Changes since 1.63: +46 -46 lines
Diff to previous 1.63 (colored)

Global search and replace of the b* memory routines to their mem* equivalents.
(bcopy->memcopy, ovbcopy->memmove, bzero->memset, bcmp->memcmp).

Revision 1.63 / (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.62: +38 -38 lines
Diff to previous 1.62 (colored)

whitespace cleanup

Revision 1.62 / (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.61: +1 -1 lines
Diff to previous 1.61 (colored)

Update copyright dates

Revision 1.61 / (download) - annotate - [select for diffs], Wed May 22 02:21:13 2002 UTC (15 years, 5 months ago) by tes
Branch: MAIN
Changes since 1.60: +1 -1 lines
Diff to previous 1.60 (colored)

Forgot to endian convert valuelen (a 16 bit uint) when I 
brought the fix over from IRIX. Oops.

Revision 1.60 / (download) - annotate - [select for diffs], Wed May 8 04:29:58 2002 UTC (15 years, 5 months ago) by tes
Branch: MAIN
Changes since 1.59: +3 -3 lines
Diff to previous 1.59 (colored)

E2BIG --to--> ERANGE

Revision 1.59 / (download) - annotate - [select for diffs], Mon Apr 8 06:19:06 2002 UTC (15 years, 6 months ago) by tes
Branch: MAIN
Changes since 1.58: +4 -0 lines
Diff to previous 1.58 (colored)

Apply olaf@sgi.com fix for xfs_attr_shortform_allfit().
xfs_attr_shortform_allfit() determines if an EA will
fit into the short form format but forgets to test if the
valuelen will fit into 1 byte. We limit the length of the
value even if it fits into the inode's attribute fork.
pv#853637

Revision 1.58 / (download) - annotate - [select for diffs], Wed Apr 3 20:18:24 2002 UTC (15 years, 6 months ago) by sandeen
Branch: MAIN
Changes since 1.57: +15 -18 lines
Diff to previous 1.57 (colored)

Remove double endian flipping

Revision 1.57 / (download) - annotate - [select for diffs], Mon Apr 1 22:46:06 2002 UTC (15 years, 6 months ago) by sandeen
Branch: MAIN
Changes since 1.56: +29 -29 lines
Diff to previous 1.56 (colored)

Optimize endian flipping code when setting to or testing for zero
Use INT_ZERO and INT_ISZERO instead of INT_SET and INT_GET

Revision 1.56 / (download) - annotate - [select for diffs], Mon Feb 25 23:44:28 2002 UTC (15 years, 8 months ago) by nathans
Branch: MAIN
Changes since 1.55: +15 -16 lines
Diff to previous 1.55 (colored)

Merge of 2.4.18-xfs:slinx:111234a by nathans.

  add the final piece of the extended attributes interface transition -
  listing the xfs root namespace.

Revision 1.55 / (download) - annotate - [select for diffs], Mon Feb 25 23:42:16 2002 UTC (15 years, 8 months ago) by nathans
Branch: MAIN
Changes since 1.54: +93 -27 lines
Diff to previous 1.54 (colored)

Merge of 2.4.18-xfs:slinx:111144a by nathans.

  Kernel changes to transition us to the new extended attribute and ACL
  interfaces.  Some minor code rearranging (files moved, some deleted,
  some new ones from ext2/ext3 ACL project) too.

Revision 1.54 / (download) - annotate - [select for diffs], Tue Aug 21 06:07:05 2001 UTC (16 years, 2 months ago) by ivanr
Branch: MAIN
Changes since 1.53: +2 -1 lines
Diff to previous 1.53 (colored)

avoid calling xfs_da_buf_done with NULL pointer

Revision 1.53 / (download) - annotate - [select for diffs], Wed Apr 11 01:44:54 2001 UTC (16 years, 6 months ago) by cattelan
Branch: MAIN
CVS Tags: Linux-2_4_5-merge
Changes since 1.52: +4 -4 lines
Diff to previous 1.52 (colored)

Get rid of the last compiler warning OFF flags

Revision 1.52 / (download) - annotate - [select for diffs], Thu Sep 28 04:14:43 2000 UTC (17 years, 1 month ago) by nathans
Branch: MAIN
CVS Tags: Release-1_0_0, PreRelease-0_10
Changes since 1.51: +0 -5 lines
Diff to previous 1.51 (colored)

remove explicit externs - get these from headers.

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

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

Revision 1.50 / (download) - annotate - [select for diffs], Thu Jul 27 03:29:03 2000 UTC (17 years, 3 months ago) by dxm
Branch: MAIN
Changes since 1.49: +20 -22 lines
Diff to previous 1.49 (colored)

endian fixes

Revision 1.49 / (download) - annotate - [select for diffs], Wed Jul 26 16:03:54 2000 UTC (17 years, 3 months ago) by jtk
Branch: MAIN
Changes since 1.48: +527 -336 lines
Diff to previous 1.48 (colored)

Endian fixes for the "attributes" fork.

Revision 1.48 / (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.47: +7 -11 lines
Diff to previous 1.47 (colored)

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:63306a originally by dxm on 06/04/00
  RT/GRIO checkin

Merge of 2.3.99pre2-xfs:slinx:63413a originally by jtk on 06/06/00
  Squash a handfull of compiler warnings.

Revision 1.47 / (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.46: +25 -12 lines
Diff to previous 1.46 (colored)

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

Revision 1.46 / (download) - annotate - [select for diffs], Fri Jun 9 02:10:00 2000 UTC (17 years, 4 months ago) by cattelan
Branch: MAIN
CVS Tags: DELETE
Changes since 1.45: +1 -1 lines
Diff to previous 1.45 (colored)

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

  Merge of 2.3.42-xfs:slinx:46541a by ananth.
  Header file cleanup
  removed the last of the
  #if defined(__linux__)
  #include <xfs_linux>
  #endif
  All os specific include file switches should now done
  in xfs_os_defs.h

Revision 1.45 / (download) - annotate - [select for diffs], Fri Jun 9 01:50:04 2000 UTC (17 years, 4 months ago) by nathans
Branch: MAIN
Changes since 1.44: +1 -3 lines
Diff to previous 1.44 (colored)

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

  Merge of 2.3.42-xfs:slinx:46428a by ananth.
  remove unused include files.

Revision 1.44 / (download) - annotate - [select for diffs], Sun Jan 30 09:59:06 2000 UTC (17 years, 9 months ago) by kenmcd
Branch: MAIN
Changes since 1.43: +18 -0 lines
Diff to previous 1.43 (colored)

Encumbrance review done.
Add copyright and license words consistent with GPL.
Refer to http://fsg.melbourne.sgi.com/reviews/ for details.

There is a slight change in the license terms and conditions words
to go with the copyrights, so most of the files are not getting
new GPL's, just updated versions ... but there are 20-30 more files
here as well.

Revision 1.43 / (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.42: +2 -2 lines
Diff to previous 1.42 (colored)

replace struct buf and buf_t references with xfs_buf and xfs_buf_t

Revision 1.42 / (download) - annotate - [select for diffs], Wed Aug 25 02:22:32 1999 UTC (18 years, 2 months ago) by cattelan
Branch: MAIN
Changes since 1.41: +3 -0 lines
Diff to previous 1.41 (colored)

Many more header file fix ups.
Many more to come.

Revision 1.41 / (download) - annotate - [select for diffs], Thu Feb 4 01:28:30 1999 UTC (18 years, 8 months ago) by doucette
Branch: MAIN
Changes since 1.40: +136 -112 lines
Diff to previous 1.40 (colored)

Change includes for v2 directory support.
Use xfs_dabufs for all directory and attribute buffering.

Revision 1.40 / (download) - annotate - [select for diffs], Sun Jan 18 08:52:19 1998 UTC (19 years, 9 months ago) by rcc
Branch: MAIN
Changes since 1.39: +1 -1 lines
Diff to previous 1.39 (colored)

added extra argument to xfs_trans_commit for IO_DSYNC speedup.
pv: 555963  rv: lord@cray

Revision 1.39 / (download) - annotate - [select for diffs], Thu Jan 8 01:12:36 1998 UTC (19 years, 9 months ago) by doucette
Branch: MAIN
Changes since 1.38: +4 -4 lines
Diff to previous 1.38 (colored)

Change xfs_da_read_buf to xfs_da_get_buf in cases where
we don't need the buffer data since we're just going to
binval it.  Change signature of xfs_da_get_buf to support this.
rv: rcc@engr
pv: 558120

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

Add buffer targeting stuff

Revision 1.37 / (download) - annotate - [select for diffs], Wed Aug 20 01:24:23 1997 UTC (20 years, 2 months ago) by doucette
Branch: MAIN
Changes since 1.36: +1 -1 lines
Diff to previous 1.36 (colored)

Use m_da_magicpct (precomputed) instead of XFS_LBSIZE * 37/100
to eliminate runtime divisions.

Revision 1.36 / (download) - annotate - [select for diffs], Wed Jul 9 17:33:28 1997 UTC (20 years, 3 months ago) by doucette
Branch: MAIN
Changes since 1.35: +5 -5 lines
Diff to previous 1.35 (colored)

Remove length argument from xfs_da_grow_inode and xfs_da_shrink_inode,
since it's always 1 and the >1 case doesn't work right.

Revision 1.35 / (download) - annotate - [select for diffs], Sun Apr 6 02:40:38 1997 UTC (20 years, 6 months ago) by sup
Branch: MAIN
Changes since 1.34: +33 -14 lines
Diff to previous 1.34 (colored)

Changed xfs_attr_rolltrans() return the status of the trans_commit
it does.  Changed  all its callers to bail out if we hit an error in the
middle of a long running transaction.
xfs_attr_shortform_to_leaf() wasn't doing the right thing if xfs_da_grow_inode()
returned an I/O error.

Revision 1.34 / (download) - annotate - [select for diffs], Tue Mar 4 01:01:29 1997 UTC (20 years, 7 months ago) by doucette
Branch: MAIN
Changes since 1.33: +1 -1 lines
Diff to previous 1.33 (colored)

Change EDIRCORRUPTED to EFSCORRUPTED, generalizing the error message.

Revision 1.33 / (download) - annotate - [select for diffs], Tue Feb 25 02:59:29 1997 UTC (20 years, 8 months ago) by doucette
Branch: MAIN
Changes since 1.32: +4 -0 lines
Diff to previous 1.32 (colored)

Add missing check for value too long for buffer, to shortform
attribute getvalue (bug 462371).

Revision 1.32 / (download) - annotate - [select for diffs], Fri Dec 6 22:05:46 1996 UTC (20 years, 10 months ago) by doucette
Branch: MAIN
Changes since 1.31: +69 -205 lines
Diff to previous 1.31 (colored)

Fold in ficus changes not yet merged in:
revision 1.32
date: 1996/11/21 23:31:08;  author: doucette;  state: Exp;  lines: +69 -205
Rewrite inactive attribute code to avoid freeing any of the data blocks
until the very end.  We still walk the on-disk structure, but just call
xfs_trans_binval on the buffers we get.  Then we call the truncate
code to get rid of the data blocks.  This means we don't need a block
reservation.

Revision 1.31 / (download) - annotate - [select for diffs], Tue Nov 19 01:08:56 1996 UTC (20 years, 11 months ago) by doucette
Branch: MAIN
Changes since 1.30: +6 -4 lines
Diff to previous 1.30 (colored)

Fix the hack used to deal with the 64kb blocksize vs. the 16-bit offset
in block values - for attributes we need to align this to a 4-byte boundary
(bug 444571)

Revision 1.30 / (download) - annotate - [select for diffs], Tue Jul 16 22:06:24 1996 UTC (21 years, 3 months ago) by ajs
Branch: MAIN
Changes since 1.29: +22 -12 lines
Diff to previous 1.29 (colored)

Weaken ASSERT in xfs_attr_leaf_freextent() so that we can handle
running into holes while processing the attribute fork in unlink
processing during recovery.

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

Changes for vnodes with behaviors.

Revision 1.28 / (download) - annotate - [select for diffs], Fri Feb 16 21:37:23 1996 UTC (21 years, 8 months ago) by doucette
Branch: MAIN
Changes since 1.27: +6 -6 lines
Diff to previous 1.27 (colored)

Use XFS_ERROR macro where it was missing in several places.

Revision 1.27 / (download) - annotate - [select for diffs], Tue Dec 5 09:29:21 1995 UTC (21 years, 10 months ago) by ack
Branch: MAIN
Changes since 1.26: +56 -42 lines
Diff to previous 1.26 (colored)

auto-merge of changes from /proj/banyan/isms/irix/kern/fs/xfs/RCS/xfs_attr_leaf.c,v
> ----------------------------
> revision 1.26
> date: 1995/11/30 02:24:52;  author: curtis;  state: Exp;  lines: +56 -42
> Mildly ugly hack to take care of "dangling" space in attr list when we unlink
> the object.  The "dangling" space comes from a crash between remove the space
> from the attribute list and freeing the space according to the bmap() code.
> Since we're in VOP_INACTIVE, just free everything in the low 30 bits of
> the attribute fork.
> =============================================================================

Revision 1.26 / (download) - annotate - [select for diffs], Thu Nov 23 04:17:48 1995 UTC (21 years, 11 months ago) by ack
Branch: MAIN
Changes since 1.25: +95 -72 lines
Diff to previous 1.25 (colored)

auto-merge of changes from /proj/banyan/isms/irix/kern/fs/xfs/RCS/xfs_attr_leaf.c,v
> ----------------------------
> revision 1.25
> date: 1995/11/22 20:14:37;  author: curtis;  state: Exp;  lines: +95 -72
> Streamline the code use to add a name to a leaf block, fix a bug in moving
> entries from one block to another (used in btree splits/joins), and fix two
> bugs where cruft is left in the attribute btree if we crash between two
> transactions (found during crashtest looping).
> =============================================================================

Revision 1.25 / (download) - annotate - [select for diffs], Tue Oct 31 06:13:20 1995 UTC (22 years ago) by ack
Branch: MAIN
Changes since 1.24: +391 -308 lines
Diff to previous 1.24 (colored)

auto-merge of changes from /proj/banyan/isms/irix/kern/fs/xfs/RCS/xfs_attr_leaf.c,v
> ----------------------------
> revision 1.24
> date: 1995/10/28 02:09:23;  author: curtis;  state: Exp;  lines: +391 -308
> Major rework to fix fundamentally wrong use of the transaction code.
> =============================================================================

Revision 1.24 / (download) - annotate - [select for diffs], Tue Oct 24 07:44:12 1995 UTC (22 years ago) by ack
Branch: MAIN
Changes since 1.23: +0 -0 lines
Diff to previous 1.23 (colored)

auto-merge of changes from /hosts/clyde/proj/banyan/isms/irix/kern/fs/xfs/RCS/xfs_attr_leaf.c,v
> ----------------------------
> revision 1.23
> date: 1995/10/13 00:28:16;  author: doucette;  state: Exp;  lines: +1 -0
> Include sys/uuid.h since the uuid_t definition has been moved out
> of sys/types.h for DCE.
> =============================================================================

Revision 1.23 / (download) - annotate - [select for diffs], Tue Oct 17 08:19:59 1995 UTC (22 years ago) by ack
Branch: MAIN
Changes since 1.22: +1 -0 lines
Diff to previous 1.22 (colored)

auto-merge of changes from /hosts/clyde/proj/banyan/isms/irix/kern/fs/xfs/RCS/xfs_attr_leaf.c,v
> ----------------------------
> revision 1.23
> date: 1995/10/13 00:28:16;  author: doucette;  state: Exp;  lines: +1 -0
> Include sys/uuid.h since the uuid_t definition has been moved out
> of sys/types.h for DCE.
> =============================================================================

Revision 1.22 / (download) - annotate - [select for diffs], Tue Oct 3 04:19:28 1995 UTC (22 years ago) by ack
Branch: MAIN
Changes since 1.21: +211 -86 lines
Diff to previous 1.21 (colored)

auto-merge of changes from /hosts/clyde/proj/banyan/isms/irix/kern/fs/xfs/RCS/xfs_attr_leaf.c,v
> ----------------------------
> revision 1.22
> date: 1995/09/30 03:14:05;  author: curtis;  state: Exp;  lines: +211 -86
> Significantly rework attr_list() to use the hashval in the cursor as the
> primary index into the attribute list adding "stability" to the returned
> list.  Also add tracing support for attr_list() calls.
> =============================================================================

Revision 1.21 / (download) - annotate - [select for diffs], Fri Sep 22 09:47:36 1995 UTC (22 years, 1 month ago) by ack
Branch: MAIN
Changes since 1.20: +10 -9 lines
Diff to previous 1.20 (colored)

auto-merge of changes from /hosts/clyde/proj/banyan/isms/irix/kern/fs/xfs/RCS/xfs_attr_leaf.c,v
> ----------------------------
> revision 1.21
> date: 1995/09/22 02:24:00;  author: doucette;  state: Exp;  lines: +10 -9
> Add type xfs_dablk_t for directory and attribute (file) block numbers,
> and use it where appropriate.
> =============================================================================

Revision 1.20 / (download) - annotate - [select for diffs], Thu Aug 17 03:23:38 1995 UTC (22 years, 2 months ago) by ajs
Branch: MAIN
Changes since 1.19: +1 -1 lines
Diff to previous 1.19 (colored)

Fix typo inside ASSERT in last checkin.

Revision 1.19 / (download) - annotate - [select for diffs], Wed Aug 16 23:49:01 1995 UTC (22 years, 2 months ago) by doucette
Branch: MAIN
Changes since 1.18: +32 -26 lines
Diff to previous 1.18 (colored)

Use local variables in some places to point at the attribute inode fork,
this improves the code quality some.

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

Add includes of xfs_macros.h, xfs_bit.h.

Revision 1.17 / (download) - annotate - [select for diffs], Tue Jun 20 18:48:16 1995 UTC (22 years, 4 months ago) by doucette
Branch: MAIN
Changes since 1.16: +9 -8 lines
Diff to previous 1.16 (colored)

Add a translated block number argument to xfs_da_read_buf, for use by
the readahead path.

Revision 1.16 / (download) - annotate - [select for diffs], Thu Jun 15 01:38:13 1995 UTC (22 years, 4 months ago) by curtis
Branch: MAIN
Changes since 1.15: +2 -2 lines
Diff to previous 1.15 (colored)

The attribute value size is in bytes, not in blocks.

Revision 1.15 / (download) - annotate - [select for diffs], Thu Jun 15 01:22:21 1995 UTC (22 years, 4 months ago) by curtis
Branch: MAIN
Changes since 1.14: +353 -0 lines
Diff to previous 1.14 (colored)

Change code supporting large attribute values to not push the value
through the log.  Use bwrite() and depend on the newly written attribute
invalidation code to undo thing in the right way.  Should be much faster.

Revision 1.14 / (download) - annotate - [select for diffs], Wed Jun 14 02:26:50 1995 UTC (22 years, 4 months ago) by curtis
Branch: MAIN
Changes since 1.13: +55 -19 lines
Diff to previous 1.13 (colored)

Change the way we allocate "remote" attibute value blocks.  Delay the decision
on which block until we've finished allocating for other reasons so we don'y
allocate the same block twice (a no-no).

Revision 1.13 / (download) - annotate - [select for diffs], Mon Jun 12 03:04:46 1995 UTC (22 years, 4 months ago) by curtis
Branch: MAIN
Changes since 1.12: +280 -97 lines
Diff to previous 1.12 (colored)

Rework to add "atomic rename" functionality (add new attribute value with
INCOMPLETE flag, atomically unmark new attr and mark old attr INCOMPLETE,
then remove old attribute value), change "attr not found" errno to a newly
created one ENOATTR, lots of cleanups, etc.

Revision 1.12 / (download) - annotate - [select for diffs], Thu Jun 1 18:45:04 1995 UTC (22 years, 5 months ago) by curtis
Branch: MAIN
Changes since 1.11: +1 -2 lines
Diff to previous 1.11 (colored)

Fix code in leaf_to_node() to work around out-of-line attribute values.

Revision 1.11 / (download) - annotate - [select for diffs], Wed May 31 03:37:48 1995 UTC (22 years, 5 months ago) by curtis
Branch: MAIN
Changes since 1.10: +10 -7 lines
Diff to previous 1.10 (colored)

Some fixes for the INCOMPLETE flag.

Revision 1.10 / (download) - annotate - [select for diffs], Sat May 27 03:16:09 1995 UTC (22 years, 5 months ago) by curtis
Branch: MAIN
Changes since 1.9: +50 -19 lines
Diff to previous 1.9 (colored)

Mostly finish support for attribute values larger than a single block.

Revision 1.9 / (download) - annotate - [select for diffs], Fri May 26 00:57:01 1995 UTC (22 years, 5 months ago) by doucette
Branch: MAIN
Changes since 1.8: +18 -18 lines
Diff to previous 1.8 (colored)

Put the attribute fork info (i_af) into a zone-allocated structure
pointed to by i_afp, to save memory for inodes that don't use attributes.

Revision 1.8 / (download) - annotate - [select for diffs], Tue May 23 03:05:15 1995 UTC (22 years, 5 months ago) by ajs
Branch: MAIN
Changes since 1.7: +1 -0 lines
Diff to previous 1.7 (colored)

Clean up compiler warning.

Revision 1.7 / (download) - annotate - [select for diffs], Sat May 20 02:37:04 1995 UTC (22 years, 5 months ago) by curtis
Branch: MAIN
Changes since 1.6: +37 -4 lines
Diff to previous 1.6 (colored)

Fix bugs in out-of-line attribute support.

Revision 1.6 / (download) - annotate - [select for diffs], Fri May 19 01:59:49 1995 UTC (22 years, 5 months ago) by curtis
Branch: MAIN
Changes since 1.5: +84 -127 lines
Diff to previous 1.5 (colored)

Interim Checkin:  start on out-of-line attribute values, make more use of
dual-fork inodes, cleanups, etc.

Revision 1.5 / (download) - annotate - [select for diffs], Wed May 17 23:06:17 1995 UTC (22 years, 5 months ago) by curtis
Branch: MAIN
Changes since 1.4: +223 -186 lines
Diff to previous 1.4 (colored)

Changes include:  start to make use of dual-fork inodes, remove dead functions,
clean up some crufty code, start adding support for out-of-line attribute
values, etc.

Revision 1.4 / (download) - annotate - [select for diffs], Tue May 9 21:21:19 1995 UTC (22 years, 5 months ago) by doucette
Branch: MAIN
Changes since 1.3: +40 -30 lines
Diff to previous 1.3 (colored)

Add support for in-core and on-disk inodes with both data and
attribute forks, or just a data fork.  Change all the data structures
and macros used to manipulate the variable portion of the inode, to
support this feature.

Revision 1.3 / (download) - annotate - [select for diffs], Tue May 9 00:20:09 1995 UTC (22 years, 5 months ago) by curtis
Branch: MAIN
Changes since 1.2: +1 -1 lines
Diff to previous 1.2 (colored)

Remove an unused argument.

Revision 1.2 / (download) - annotate - [select for diffs], Mon May 8 22:38:32 1995 UTC (22 years, 5 months ago) by curtis
Branch: MAIN
Changes since 1.1: +0 -28 lines
Diff to previous 1.1 (colored)

Remove all #ifdef SIM, #ifdef the calls out of xf_da_btree.c instead.

Revision 1.1 / (download) - annotate - [select for diffs], Mon May 8 20:17:04 1995 UTC (22 years, 5 months ago) by curtis
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>