CVS log for xfs-linux/xfs_dir2_sf.c

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

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.54 / (download) - annotate - [select for diffs], Wed May 21 06:13:08 2008 UTC (9 years, 4 months ago) by bnaujok.longdrop.melbourne.sgi.com
Branch: MAIN
CVS Tags: HEAD
Changes since 1.53: +10 -7 lines
Diff to previous 1.53 (unified)

Return case-insensitive match for dentry cache

This implements the code to store the actual filename found
during a lookup in the dentry cache and to avoid multiple entries
in the dcache pointing to the same inode.

To avoid polluting the dcache, we implement a new directory inode
operations for lookup. xfs_vn_ci_lookup() stores the correct case
name in the dcache.

The "actual name" is only allocated and returned for a case-
insensitive match and not an actual match.

Another unusual interaction with the dcache is not storing
negative dentries like other filesystems doing a d_add(dentry, NULL)
when an ENOENT is returned. During the VFS lookup, if a dentry
returned has no inode, dput is called and ENOENT is returned.
By not doing a d_add, this actually removes it completely from
the dcache to be reused. create/rename have to be modified to
support unhashed dentries being passed in.

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

  Add lookup support for returning actual case-preserved name

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

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.52 / (download) - annotate - [select for diffs], Wed May 21 04:22:46 2008 UTC (9 years, 4 months ago) by bnaujok.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.51: +36 -26 lines
Diff to previous 1.51 (unified)

Name operation vector for hash and compare

Adds two pieces of functionality for the basis of case-insensitive
support in XFS:

1.  A comparison result enumerated type: xfs_dacmp. It represents an
    exact match, case-insensitive match or no match at all. This patch
    only implements different and exact results.

2.  xfs_nameops vector for specifying how to perform the hash generation
    of filenames and comparision methods. In this patch the hash vector
    points to the existing xfs_da_hashname function and the comparison
    method does a length compare, and if the same, does a memcmp and
    return the xfs_dacmp result.

All filename functions that use the hash (create, lookup remove, rename,
etc) now use the xfs_nameops.hashname function and all directory lookup
functions also use the xfs_nameops.compname function.

The lookup functions also handle case-insensitive results even though
the default comparison function cannot return that. And important
aspect of the lookup functions is that an exact match always has
precedence over a case-insensitive. So while a case-insensitive match
is found, we have to keep looking just in case there is an exact
match. In the meantime, the info for the first case-insensitive match
is retained if no exact match is found.

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

  Handle CI lookup in shortform directories

Revision 1.51 / (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.50: +4 -4 lines
Diff to previous 1.50 (unified)

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.50 / (download) - annotate - [select for diffs], Thu Dec 13 05:18:26 2007 UTC (9 years, 10 months ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.49: +3 -6 lines
Diff to previous 1.49 (unified)

Put the correct offset in dirent d_off

The recent filldir regression fix was not putting the correct
d_off in each dirent. This was resulting in incorrect cookies being
passed to dmapi ioctls and the wrong offset appearing in the dirents.
readdir was unaffected as the filp->f_pos was being updated with the
correct offset and this was being written into the last dirent in
each buffer. Fix the XFS code to do the right thing.
Merge of xfs-linux-melb:xfs-kern:30240a by kenmcd.

  pass the current offset to the filldir method rather than the offset
  of the next object. filldir expects the current offset, not the next one.

Revision 1.49 / (download) - annotate - [select for diffs], Thu Aug 23 16:00:34 2007 UTC (10 years, 1 month ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.48: +1 -0 lines
Diff to previous 1.48 (unified)

Radix tree based inode caching

One of the perpetual scaling problems XFS has is indexing
it's incore inodes. We currently uses hashes and the default
hash sizes chosen can only ever be a tradeoff between memory
consumption and the maximum realistic size of the cache.

As a result, anyone who has millions of inodes cached on a
filesystem needs to tunes the size of the cache via the ihashsize
mount option to allow decent scalability with inode cache
operations.

A further problem is the separate inode cluster hash, whose size is
based on the ihashsize but is smaller, and so under certain
conditions (sparse cluster cache population) this can become
a limitation long before the inode hash is causing issues.

The following patchset removes the inode hash and cluster hash
and replaces them with radix trees to avoid the scalability
limitations of the hashes. It also reduces the size of the
inodes by 3 pointers....
Merge of xfs-linux-melb:xfs-kern:29481a by kenmcd.

  Convert xfs inode caches from hashes to radix trees.

Revision 1.48 / (download) - annotate - [select for diffs], Thu Aug 23 15:57:59 2007 UTC (10 years, 1 month ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.47: +44 -77 lines
Diff to previous 1.47 (unified)

use filldir internally

Currently xfs has a rather complicated internal scheme to allow for
different directory formats in IRIX.  This patch rips all code related
to this out and pushes useage of the Linux filldir callback into the
lowlevel directory code.  This does not make the code any less portable
because filldir can be used to create dirents of all possible variations
(including the IRIX ones as proved by the IRIX binary emulation code
under arch/mips/).

This patch get rid of an unessecary copy in the readdir path, about
400 lines of code and one of the last two users of the uio structure.

This version is updated to deal with dmapi aswell which greatly
simplifies the get_dirattrs code.  The dmapi part has been tested
using the get_dirattrs tools from the xfstest dmapi suite1 with various
small and large directories.


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

  Use the generic filldir directory formatter callbacks rather than
  the complex xfs_uio_move based implementation. Removes a copy
  and simplifies the code greatly.

Revision 1.47 / (download) - annotate - [select for diffs], Wed Jun 20 06:09:16 2007 UTC (10 years, 3 months ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.46: +102 -102 lines
Diff to previous 1.46 (unified)

Reduce shouting by removing unnecessary macros from dir2 code.

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

  Call inline functions directly rather than the macros that
  wrap them and remove the unneeded macros.

Revision 1.46 / (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.45: +0 -3 lines
Diff to previous 1.45 (unified)

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

Revision 1.45 / (download) - annotate - [select for diffs], Sat Apr 22 03:50:19 2006 UTC (11 years, 5 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.44: +5 -5 lines
Diff to previous 1.44 (unified)

endianess annotations for xfs_dir2_data_entry_t

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Merge of xfs-linux-melb:xfs-kern:25806a by kenmcd.

  endianess annotations for xfs_dir2_data_entry_t

Revision 1.44 / (download) - annotate - [select for diffs], Fri Mar 17 14:39:27 2006 UTC (11 years, 6 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.43: +1 -1 lines
Diff to previous 1.43 (unified)

endianess annotations for xfs_dir2_leaf_entry_t

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

  endianess annotations for xfs_dir2_leaf_entry_t

Revision 1.43 / (download) - annotate - [select for diffs], Fri Mar 17 14:37:53 2006 UTC (11 years, 6 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.42: +1 -1 lines
Diff to previous 1.42 (unified)

endianess annotations for xfs_dir2_block_tail_t

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

  endianess annotations for xfs_dir2_block_tail_t

Revision 1.42 / (download) - annotate - [select for diffs], Fri Mar 17 14:36:24 2006 UTC (11 years, 6 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.41: +2 -2 lines
Diff to previous 1.41 (unified)

endianess annotations for xfs_dir2_data_unused_t

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

  endianess annotations for xfs_dir2_data_unused_t

Revision 1.41 / (download) - annotate - [select for diffs], Fri Sep 30 08:58:51 2005 UTC (12 years ago) by hch
Branch: MAIN
Changes since 1.40: +3 -3 lines
Diff to previous 1.40 (unified)

silence gcc4 warnings.  the directory ones are wrong because of information
gcc could not find out (that a directory always has a .. entry), the others
are outright gcc bugs.

Revision 1.40 / (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.39: +12 -26 lines
Diff to previous 1.39 (unified)

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

Revision 1.39 / (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.38: +5 -12 lines
Diff to previous 1.38 (unified)

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

Revision 1.38 / (download) - annotate - [select for diffs], Wed Jan 12 22:38:29 2005 UTC (12 years, 9 months ago) by hch
Branch: MAIN
Changes since 1.37: +47 -49 lines
Diff to previous 1.37 (unified)

Stop passing ARCH_CONVERT/ARCH_NOCONVERT around everywhere
stop passing ARCH_CONVERT/ARCH_NOCONVERT around everywhere

Revision 1.37 / (download) - annotate - [select for diffs], Mon Sep 15 04:36:29 2003 UTC (14 years, 1 month ago) by nathans
Branch: MAIN
Changes since 1.36: +30 -39 lines
Diff to previous 1.36 (unified)

Separate the big filesystems macro out into separate big inums and blknos macros; fix the check for too-large filesystems in the process.

Revision 1.36 / (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.35: +1328 -0 lines
Diff to previous 1.35 (unified)

The Big Move
linux/fs/xfs/xfs_dir2_sf.c 1.34 Renamed to xfs_dir2_sf.c

Revision 1.35 / (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.34: +0 -1328 lines
Diff to previous 1.34 (unified)

Nuke

Revision 1.34 / (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.33: +26 -1 lines
Diff to previous 1.33 (unified)

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.33 / (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.32: +4 -4 lines
Diff to previous 1.32 (unified)

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

Revision 1.32 / (download) - annotate - [select for diffs], Tue Feb 25 10:57:48 2003 UTC (14 years, 7 months ago) by lord
Branch: MAIN
Changes since 1.31: +4 -21 lines
Diff to previous 1.31 (unified)

rework readdir to be closer to the irix model internally, do all
the filldir fixup at the linvfs layer. This is the V2 directory
component, the V1 code still needs fixing up. We now return the
same directory offsets as Irix does.
Merge of 2.4.x-xfs-dev:slinx:134646a by lord.

  remove linux specific d_off fixup.

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

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

Revision 1.30 / (download) - annotate - [select for diffs], Fri Jul 12 21:10:34 2002 UTC (15 years, 3 months ago) by lord
Branch: MAIN
Changes since 1.29: +2 -0 lines
Diff to previous 1.29 (unified)

debug build fix

Revision 1.29 / (download) - annotate - [select for diffs], Fri Jul 12 16:42:01 2002 UTC (15 years, 3 months ago) by lord
Branch: MAIN
Changes since 1.28: +1 -1 lines
Diff to previous 1.28 (unified)

Fix debug build with XFS_BIG_FILESYSTEMS off

Revision 1.28 / (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.27: +22 -22 lines
Diff to previous 1.27 (unified)

whitespace cleanup

Revision 1.27 / (download) - annotate - [select for diffs], Tue Jun 4 20:37:15 2002 UTC (15 years, 4 months ago) by overby
Branch: MAIN
Changes since 1.26: +21 -1 lines
Diff to previous 1.26 (unified)

*** empty log message ***

Revision 1.26 / (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.25: +1 -1 lines
Diff to previous 1.25 (unified)

Update copyright dates

Revision 1.25 / (download) - annotate - [select for diffs], Fri May 24 11:40:04 2002 UTC (15 years, 4 months ago) by lord
Branch: MAIN
Changes since 1.24: +1 -1 lines
Diff to previous 1.24 (unified)

Use KM_SLEEP, not GFP_KERNEL on kmem_alloc.

Revision 1.24 / (download) - annotate - [select for diffs], Thu May 23 16:44:23 2002 UTC (15 years, 4 months ago) by lord
Branch: MAIN
Changes since 1.23: +3 -1 lines
Diff to previous 1.23 (unified)

remove a large array from the stack, allocate the memory instead

Revision 1.23 / (download) - annotate - [select for diffs], Mon Apr 23 19:52:01 2001 UTC (16 years, 5 months ago) by ananth
Branch: MAIN
CVS Tags: Linux-2_4_5-merge
Changes since 1.22: +0 -23 lines
Diff to previous 1.22 (unified)

Remove unused debug code.

Revision 1.22 / (download) - annotate - [select for diffs], Wed Apr 11 01:44:54 2001 UTC (16 years, 6 months ago) by cattelan
Branch: MAIN
Changes since 1.21: +4 -22 lines
Diff to previous 1.21 (unified)

Get rid of the last compiler warning OFF flags

Revision 1.21 / (download) - annotate - [select for diffs], Thu Mar 15 23:33:20 2001 UTC (16 years, 7 months ago) by lord
Branch: MAIN
CVS Tags: Release-1_0_0, PreRelease-0_10
Changes since 1.20: +0 -3 lines
Diff to previous 1.20 (unified)

Go back to basically the irix code for readdir, linux stuff is handled 
in the upper layers now.

Revision 1.20 / (download) - annotate - [select for diffs], Thu Oct 19 18:39:20 2000 UTC (16 years, 11 months ago) by eric
Branch: MAIN
Changes since 1.19: +3 -0 lines
Diff to previous 1.19 (unified)

slightly better d_type support for getdents64, set . and .. to DT_DIR

Revision 1.19 / (download) - annotate - [select for diffs], Mon Sep 25 05:42:07 2000 UTC (17 years ago) by nathans
Branch: MAIN
Changes since 1.18: +4 -58 lines
Diff to previous 1.18 (unified)

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

Revision 1.18 / (download) - annotate - [select for diffs], Thu Jul 20 17:56:03 2000 UTC (17 years, 2 months ago) by cattelan
Branch: MAIN
Changes since 1.17: +2 -2 lines
Diff to previous 1.17 (unified)

Don't include kdb if kdb isn't installed or config'ed on

Revision 1.17 / (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.16: +1 -1 lines
Diff to previous 1.16 (unified)

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

Revision 1.16 / (download) - annotate - [select for diffs], Fri Jun 9 04:39:57 2000 UTC (17 years, 4 months ago) by dxm
Branch: MAIN
Changes since 1.15: +61 -74 lines
Diff to previous 1.15 (unified)

ARCH: Support big-endian ONLY
Merge of 2.3.99pre2-xfs:slinx:62350a by ananth.

Revision 1.15 / (download) - annotate - [select for diffs], Fri Jun 9 03:45:01 2000 UTC (17 years, 4 months ago) by jtk
Branch: MAIN
Changes since 1.14: +49 -12 lines
Diff to previous 1.14 (unified)

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

  Change XFS getdents routines to not "shuffle" the d_off
  field, as filldir() will do so for us.

Revision 1.14 / (download) - annotate - [select for diffs], Fri Jun 9 03:29:54 2000 UTC (17 years, 4 months ago) by dxm
Branch: MAIN
Changes since 1.13: +35 -12 lines
Diff to previous 1.13 (unified)

dir2 architecture mods
Merge of 2.3.99pre2-xfs:slinx:57286a by ananth.

Revision 1.13 / (download) - annotate - [select for diffs], Fri Jun 9 03:15:59 2000 UTC (17 years, 4 months ago) by dxm
Branch: MAIN
Changes since 1.12: +13 -13 lines
Diff to previous 1.12 (unified)

add ARCH_GET macro
Merge of 2.3.99pre2-xfs:slinx:56110a by ananth.

Revision 1.12 / (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.11: +25 -11 lines
Diff to previous 1.11 (unified)

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

Revision 1.11 / (download) - annotate - [select for diffs], Fri Jun 9 02:27:12 2000 UTC (17 years, 4 months ago) by dxm
Branch: MAIN
CVS Tags: DELETE
Changes since 1.10: +77 -49 lines
Diff to previous 1.10 (unified)

architecture mods for v2 shortorm dirs
Merge of 2.3.99pre2-xfs:slinx:55580a by ananth.

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

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

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.9 / (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.8: +4 -9 lines
Diff to previous 1.8 (unified)

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.8 / (download) - annotate - [select for diffs], Sun Jan 30 09:59:06 2000 UTC (17 years, 8 months ago) by kenmcd
Branch: MAIN
Changes since 1.7: +12 -17 lines
Diff to previous 1.7 (unified)

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.7 / (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.6: +1 -1 lines
Diff to previous 1.6 (unified)

Merge from irix/irix6.5f to pingu/slinx-xfs
Merge of irix6.5f:irix:25835a created by lord on 10/29/99
  In the shortform getdents code, save off uio_offset at the
  start of the function instead of checking it directly, when
  called from cxfs we are doing uiomoves under the covers 
  which invalidate the contents of uio_offset and make most of
  the directory contents go missing.

Revision 1.6 / (download) - annotate - [select for diffs], Mon Jan 3 21:41:53 2000 UTC (17 years, 9 months ago) by kenmcd
Branch: MAIN
Changes since 1.5: +24 -1 lines
Diff to previous 1.5 (unified)

Encumbrance review done.  Add copyright and license words consistent with GPL.

Revision 1.5 / (download) - annotate - [select for diffs], Wed Nov 17 19:22:23 1999 UTC (17 years, 10 months ago) by lord
Branch: MAIN
Changes since 1.4: +1 -1 lines
Diff to previous 1.4 (unified)

replace struct buf and buf_t references with xfs_buf and xfs_buf_t

Revision 1.4 / (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.3: +1 -1 lines
Diff to previous 1.3 (unified)

Merge from irix/irix6.5f to pingu/slinx-xfs
Merge of irix6.5f:irix:25835a created by lord on 10/29/99
  In the shortform getdents code, save off uio_offset at the
  start of the function instead of checking it directly, when
  called from cxfs we are doing uiomoves under the covers 
  which invalidate the contents of uio_offset and make most of
  the directory contents go missing.

Revision 1.3 / (download) - annotate - [select for diffs], Mon Oct 25 15:38:29 1999 UTC (17 years, 11 months ago) by lord
Branch: MAIN
Changes since 1.2: +9 -5 lines
Diff to previous 1.2 (unified)

Merge fix from 6.5f for uio based getdents

Revision 1.2 / (download) - annotate - [select for diffs], Wed Aug 18 17:43:46 1999 UTC (18 years, 1 month ago) by cattelan
Branch: MAIN
Changes since 1.1: +5 -1 lines
Diff to previous 1.1 (unified)

First compiling version of mkfs unsing XFS libsim.
Mostly just addtions of cut up irix header files.

Revision 1.1 / (download) - annotate - [select for diffs], Thu Feb 4 01:28:30 1999 UTC (18 years, 8 months ago) by doucette
Branch: MAIN

xfs v2 shortform directories.

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>