Up to [Development] / xfs-linux
Request diff between arbitrary revisions
Default branch: MAIN
Current tag: MAIN
Revision 1.66 / (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.65: +8 -8
lines
Diff to previous 1.65 (unified)
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.65 / (download) - annotate - [select for diffs], Tue Jun 24 04:20:04 2008 UTC (9 years, 3 months ago) by bnaujok.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.64: +25 -24
lines
Diff to previous 1.64 (unified)
Fix CI lookup in leaf-form directories Instead of comparing buffer pointers, compare buffer block numbers and don't keep buff Merge of xfs-linux-melb:xfs-kern:31346a by kenmcd. Fix CI lookup in leaf-form directories
Revision 1.64 / (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
Changes since 1.63: +3 -2
lines
Diff to previous 1.63 (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.63 / (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.62: +8 -7
lines
Diff to previous 1.62 (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.62 / (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.61: +43 -17
lines
Diff to previous 1.61 (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 leaf form directories
Revision 1.61 / (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.60: +1 -1
lines
Diff to previous 1.60 (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.60 / (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.59: +1 -1
lines
Diff to previous 1.59 (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.59 / (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.58: +30 -46
lines
Diff to previous 1.58 (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.58 / (download) - annotate - [select for diffs], Wed Jun 20 06:09:16 2007 UTC (10 years, 4 months ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.57: +53 -53
lines
Diff to previous 1.57 (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.57 / (download) - annotate - [select for diffs], Sat Mar 3 02:56:54 2007 UTC (10 years, 7 months ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.56: +3 -4
lines
Diff to previous 1.56 (unified)
the "aendp" arg to xfs_dir2_data_freescan is always NULL, remove it. Patch provided by Eric Sandeen. Signed-off-by: Eric Sandeen <sandeen@sandeen.net> Merge of xfs-linux-melb:xfs-kern:28204a by kenmcd. the "aendp" arg to xfs_dir2_data_freescan is always NULL, remove it. Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
Revision 1.56 / (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.55: +0 -2
lines
Diff to previous 1.55 (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.55 / (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.54: +5 -5
lines
Diff to previous 1.54 (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.54 / (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.53: +1 -1
lines
Diff to previous 1.53 (unified)
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.53 / (download) - annotate - [select for diffs], Thu Mar 23 02:48:21 2006 UTC (11 years, 6 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.52: +1 -1
lines
Diff to previous 1.52 (unified)
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.52 / (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.51: +10 -10
lines
Diff to previous 1.51 (unified)
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.51 / (download) - annotate - [select for diffs], Fri Mar 17 14:40:12 2006 UTC (11 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.50: +3 -3
lines
Diff to previous 1.50 (unified)
endianess annotations for XFS_DIR2_DATA_ENTRY_TAG_P #Signed-off-by: Christoph Hellwig <hch@lst.de> Merge of xfs-linux-melb:xfs-kern:25494a by kenmcd. endianess annotations for XFS_DIR2_DATA_ENTRY_TAG_P
Revision 1.50 / (download) - annotate - [select for diffs], Fri Mar 17 14:39:27 2006 UTC (11 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.49: +28 -27
lines
Diff to previous 1.49 (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.49 / (download) - annotate - [select for diffs], Fri Mar 17 14:38:40 2006 UTC (11 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.48: +37 -37
lines
Diff to previous 1.48 (unified)
endianess annotations for xfs_dir2_leaf_hdr_t #Signed-off-by: Christoph Hellwig <hch@lst.de> Merge of xfs-linux-melb:xfs-kern:25492a by kenmcd. endianess annotations for xfs_dir2_leaf_hdr_t
Revision 1.48 / (download) - annotate - [select for diffs], Fri Mar 17 14:37:53 2006 UTC (11 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.47: +3 -3
lines
Diff to previous 1.47 (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.47 / (download) - annotate - [select for diffs], Fri Mar 17 14:36:24 2006 UTC (11 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.46: +5 -7
lines
Diff to previous 1.46 (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.46 / (download) - annotate - [select for diffs], Fri Mar 17 14:35:40 2006 UTC (11 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.45: +17 -17
lines
Diff to previous 1.45 (unified)
endianess annotations for xfs_dir2_leaf_tail_t #Signed-off-by: Christoph Hellwig <hch@lst.de> Merge of xfs-linux-melb:xfs-kern:25487a by kenmcd. endianess annotations for xfs_dir2_leaf_tail_t
Revision 1.45 / (download) - annotate - [select for diffs], Fri Mar 17 14:34:56 2006 UTC (11 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.44: +15 -15
lines
Diff to previous 1.44 (unified)
endianess annotations for XFS_DIR2_LEAF_BESTS_P #Signed-off-by: Christoph Hellwig <hch@lst.de> Merge of xfs-linux-melb:xfs-kern:25486a by kenmcd. endianess annotations for XFS_DIR2_LEAF_BESTS_P
Revision 1.44 / (download) - annotate - [select for diffs], Fri Mar 17 14:34:11 2006 UTC (11 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.43: +3 -3
lines
Diff to previous 1.43 (unified)
endianess annotations for xfs_dir2_free_hdr_t #Signed-off-by: Christoph Hellwig <hch@lst.de> Merge of xfs-linux-melb:xfs-kern:25485a by kenmcd.
Revision 1.43 / (download) - annotate - [select for diffs], Fri Mar 17 14:33:26 2006 UTC (11 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.42: +12 -12
lines
Diff to previous 1.42 (unified)
endianess annotations for xfs_dir2_data_hdr structure. Merge of xfs-linux-melb:xfs-kern:25484a by kenmcd.
Revision 1.42 / (download) - annotate - [select for diffs], Fri Mar 3 05:01:26 2006 UTC (11 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.41: +16 -14
lines
Diff to previous 1.41 (unified)
Dynamically allocate xfs_dir2_put_args_t structure to reduce stack pressure in xfs_dir2_leaf_getdents routine. Merge of xfs-linux-melb:xfs-kern:25359a by kenmcd.
Revision 1.41 / (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.40: +12 -26
lines
Diff to previous 1.40 (unified)
Update license/copyright notices to match the prefered SGI boilerplate. Merge of xfs-linux-melb:xfs-kern:23903a by kenmcd.
Revision 1.40 / (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.39: +4 -14
lines
Diff to previous 1.39 (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.39 / (download) - annotate - [select for diffs], Mon Jun 6 14:38:55 2005 UTC (12 years, 4 months ago) by sandeen
Branch: MAIN
Changes since 1.38: +1 -1
lines
Diff to previous 1.38 (unified)
Fix up some warning fallout from functions made static
Revision 1.38 / (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.37: +6 -2
lines
Diff to previous 1.37 (unified)
mark various symbols static Patch from Adrian Bunk
Revision 1.37 / (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.36: +11 -11
lines
Diff to previous 1.36 (unified)
Remove INT_ZERO and INT_ISZERO 0 is 0 in all endianess variant. No need for INT_ZERO and INT_ISZERO
Revision 1.36 / (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.35: +9 -9
lines
Diff to previous 1.35 (unified)
Stop passing ARCH_CONVERT/ARCH_NOCONVERT around everywhere stop passing ARCH_CONVERT/ARCH_NOCONVERT around everywhere
Revision 1.35 / (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.34: +3 -4
lines
Diff to previous 1.34 (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.34 / (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.33: +1897 -0
lines
Diff to previous 1.33 (unified)
The Big Move linux/fs/xfs/xfs_dir2_leaf.c 1.32 Renamed to xfs_dir2_leaf.c
Revision 1.33 / (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.32: +0 -1897
lines
Diff to previous 1.32 (unified)
Nuke
Revision 1.32 / (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.31: +28 -1
lines
Diff to previous 1.31 (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.31 / (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.30: +4 -4
lines
Diff to previous 1.30 (unified)
Whitespace cleanup Clean up some whitespace... revert some whitespace changes from previous whitespace cleanup (incorrect tabs)
Revision 1.30 / (download) - annotate - [select for diffs], Wed Mar 5 00:05:12 2003 UTC (14 years, 7 months ago) by overby
Branch: MAIN
Changes since 1.29: +3 -0
lines
Diff to previous 1.29 (unified)
getdents fix for dir v2
Revision 1.29 / (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.28: +1 -7
lines
Diff to previous 1.28 (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.28 / (download) - annotate - [select for diffs], Wed Oct 9 03:06:48 2002 UTC (15 years ago) by nathans
Branch: MAIN
Changes since 1.27: +15 -15
lines
Diff to previous 1.27 (unified)
Global search and replace of the b* memory routines to their mem* equivalents. (bcopy->memcopy, ovbcopy->memmove, bzero->memset, bcmp->memcmp).
Revision 1.27 / (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.26: +16 -16
lines
Diff to previous 1.26 (unified)
whitespace cleanup
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], Mon Apr 1 22:46:06 2002 UTC (15 years, 6 months ago) by sandeen
Branch: MAIN
Changes since 1.24: +6 -6
lines
Diff to previous 1.24 (unified)
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.24 / (download) - annotate - [select for diffs], Tue Feb 5 21:52:14 2002 UTC (15 years, 8 months ago) by lord
Branch: MAIN
Changes since 1.23: +1 -1
lines
Diff to previous 1.23 (unified)
remove KM_SLEEP_IO flag
Revision 1.23 / (download) - annotate - [select for diffs], Tue Sep 11 19:25:00 2001 UTC (16 years, 1 month ago) by lord
Branch: MAIN
Changes since 1.22: +3 -3
lines
Diff to previous 1.22 (unified)
fix min max typing issues
Revision 1.22 / (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.21: +0 -23
lines
Diff to previous 1.21 (unified)
Remove unused debug code.
Revision 1.21 / (download) - annotate - [select for diffs], Mon Apr 16 22:49:09 2001 UTC (16 years, 6 months ago) by lord
Branch: MAIN
Changes since 1.20: +1 -1
lines
Diff to previous 1.20 (unified)
Add new memory flag to indicate IO during allocation is OK
Revision 1.20 / (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.19: +29 -57
lines
Diff to previous 1.19 (unified)
Get rid of the last compiler warning OFF flags
Revision 1.19 / (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.18: +0 -1
lines
Diff to previous 1.18 (unified)
Go back to basically the irix code for readdir, linux stuff is handled in the upper layers now.
Revision 1.18 / (download) - annotate - [select for diffs], Thu Oct 19 18:39:20 2000 UTC (17 years ago) by eric
Branch: MAIN
Changes since 1.17: +1 -0
lines
Diff to previous 1.17 (unified)
slightly better d_type support for getdents64
Revision 1.17 / (download) - annotate - [select for diffs], Tue Sep 26 02:03:57 2000 UTC (17 years ago) by dxm
Branch: MAIN
Changes since 1.16: +7 -7
lines
Diff to previous 1.16 (unified)
pv 801066
Revision 1.16 / (download) - annotate - [select for diffs], Mon Sep 25 05:42:07 2000 UTC (17 years ago) by nathans
Branch: MAIN
Changes since 1.15: +3 -59
lines
Diff to previous 1.15 (unified)
use xfs.h, remove all traces of SIM, push extern declarations into headers, dead code removal.
Revision 1.15 / (download) - annotate - [select for diffs], Thu Jul 20 17:56:03 2000 UTC (17 years, 3 months ago) by cattelan
Branch: MAIN
Changes since 1.14: +2 -2
lines
Diff to previous 1.14 (unified)
Don't include kdb if kdb isn't installed or config'ed on
Revision 1.14 / (download) - annotate - [select for diffs], Fri Jun 9 04:40:42 2000 UTC (17 years, 4 months ago) by dxm
Branch: MAIN
Changes since 1.13: +7 -7
lines
Diff to previous 1.13 (unified)
need INT_GET/INT_SET on copy if types are different Merge of 2.3.99pre2-xfs:slinx:62352a by ananth.
Revision 1.13 / (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.12: +145 -145
lines
Diff to previous 1.12 (unified)
ARCH: Support big-endian ONLY Merge of 2.3.99pre2-xfs:slinx:62350a by ananth.
Revision 1.12 / (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.11: +28 -10
lines
Diff to previous 1.11 (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.11 / (download) - annotate - [select for diffs], Fri Jun 9 03:31:04 2000 UTC (17 years, 4 months ago) by dxm
Branch: MAIN
Changes since 1.10: +14 -13
lines
Diff to previous 1.10 (unified)
architecture mods - dir2 btree Merge of 2.3.99pre2-xfs:slinx:57465a by ananth.
Revision 1.10 / (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.9: +156 -133
lines
Diff to previous 1.9 (unified)
dir2 architecture mods Merge of 2.3.99pre2-xfs:slinx:57286a by ananth.
Revision 1.9 / (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.8: +25 -12
lines
Diff to previous 1.8 (unified)
Updated copyright and license notices, ready for open source release Merge of 2.3.99pre2-xfs:slinx:55821a by ananth.
Revision 1.8 / (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.7: +1 -1
lines
Diff to previous 1.7 (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.7 / (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.6: +3 -6
lines
Diff to previous 1.6 (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.6 / (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.5: +19 -1
lines
Diff to previous 1.5 (unified)
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.5 / (download) - annotate - [select for diffs], Fri Dec 10 20:20:52 1999 UTC (17 years, 10 months ago) by cattelan
Branch: MAIN
Changes since 1.4: +2 -2
lines
Diff to previous 1.4 (unified)
More macros bwrite -> XFS_bwrite bawrite -> XFS_bawrite biodone -> xfs_biodone bwait -> xfs_bwait incore -> xfs_incore incore_relse -> xfs_incore_relse incore_match -> xfs_incore_match baread -> xfs_baread
Revision 1.4 / (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.3: +2 -2
lines
Diff to previous 1.3 (unified)
replace struct buf and buf_t references with xfs_buf and xfs_buf_t
Revision 1.3 / (download) - annotate - [select for diffs], Wed Aug 18 17:43:46 1999 UTC (18 years, 2 months ago) by cattelan
Branch: MAIN
Changes since 1.2: +10 -1
lines
Diff to previous 1.2 (unified)
First compiling version of mkfs unsing XFS libsim. Mostly just addtions of cut up irix header files.
Revision 1.2 / (download) - annotate - [select for diffs], Wed Apr 28 20:49:42 1999 UTC (18 years, 5 months ago) by overby
Branch: MAIN
Changes since 1.1: +1 -1
lines
Diff to previous 1.1 (unified)
Fix the comparison of the 'lowstale' value against the index value after compaction, not before.
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 multiple data block single index block directories