Up to [Development] / xfs-linux
Request diff between arbitrary revisions
Default branch: MAIN
Current tag: MAIN
Revision 1.215 / (download) - annotate - [select for diffs], Wed Sep 26 06:09:48 2007 UTC (10 years ago) by donaldd.longdrop.melbourne.sgi.com
Branch: MAIN
CVS Tags: HEAD
Changes since 1.214: +0 -122
lines
Diff to previous 1.214 (unified)
Remove Makefile wrappers in XFS Makefile (and Kbuild) would include Makefile-linux-26 I doubt XFS will really still compile on 2.4; so drop that. This moves Makefile-linux-26 into Makefile and drops Kbuild. Also having wrappers as both Kbuild and Makefile seemed redundant anyways. The patch is relatively large because it renames a file, but no functional changes. Signed-off-by: Andi Kleen <ak@suse.de> Merge of xfs-linux-melb:xfs-kern:29781a by kenmcd. Remove Makefile wrappers in XFS.
Revision 1.214 / (download) - annotate - [select for diffs], Fri Sep 21 16:10:12 2007 UTC (10 years ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.213: +0 -1
lines
Diff to previous 1.213 (unified)
kill xfs_iocore_t xfs_iocore_t is a structure embedded in xfs_inode. Except for one field it just duplicates fields already in xfs_inode, and there is nothing this abstraction buys us on XFS/Linux. This patch removes it and shrinks source and binary size of xfs aswell as shrinking the size of xfs_inode by 60/44 bytes in debug/non-debug builds. Signed-off-by: Christoph Hellwig <hch@lst.de> Merge of xfs-linux-melb:xfs-kern:29754a by kenmcd. kill xfs_iocore_t
Revision 1.213 / (download) - annotate - [select for diffs], Fri Aug 24 16:18:10 2007 UTC (10 years, 1 month ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.212: +0 -1
lines
Diff to previous 1.212 (unified)
kill struct bhv_vfs Now that struct bhv_vfs doesn't have any members left we can kill it and go directly from the super_block to the xfs_mount everywhere. Signed-off-by: Christoph Hellwig <hch@lst.de> Merge of xfs-linux-melb:xfs-kern:29509a by kenmcd. remove struct bhv_vfs and go directly to the superblock.
Revision 1.212 / (download) - annotate - [select for diffs], Fri Aug 24 16:14:38 2007 UTC (10 years, 1 month ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.211: +0 -2
lines
Diff to previous 1.211 (unified)
call common xfs vfs-level helpers directly and remove vfs operations Also remove the now dead behavior code. Signed-off-by: Christoph Hellwig <hch@lst.de> Merge of xfs-linux-melb:xfs-kern:29505a by kenmcd. remove vfs operations.
Revision 1.211 / (download) - annotate - [select for diffs], Fri Aug 24 16:13:42 2007 UTC (10 years, 1 month ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.210: +1 -0
lines
Diff to previous 1.210 (unified)
decontaminate vfs operations from behavior details All vfs ops now take struct xfs_mount pointers and the behaviour related glue is split out into methods of it's own. Signed-off-by: Christoph Hellwig <hch@lst.de> Merge of xfs-linux-melb:xfs-kern:29504a by kenmcd. convert vfs ops to take xfs_mount pointers and split out the behaviour related glue.
Revision 1.210 / (download) - annotate - [select for diffs], Fri Aug 24 16:04:16 2007 UTC (10 years, 1 month ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.209: +0 -1
lines
Diff to previous 1.209 (unified)
call common xfs vnode-level helpers directly and remove vnode operations Signed-off-by: Christoph Hellwig <hch@lst.de> Merge of xfs-linux-melb:xfs-kern:29493a by kenmcd. remove vnode operations.
Revision 1.209 / (download) - annotate - [select for diffs], Fri Aug 24 16:03:11 2007 UTC (10 years, 1 month ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.208: +1 -0
lines
Diff to previous 1.208 (unified)
decontaminate vnode operations from behavior details All vnode ops now take struct xfs_inode pointers and the behaviour related glue is split out into methods of it's own. This required fixing xfs_create/mkdir/symlink to not mess with the inode pointer but rather use a separate boolean for error handling. Thanks to Dave Chinner for that fix. Signed-off-by: Christoph Hellwig <hch@lst.de> Merge of xfs-linux-melb:xfs-kern:29492a by kenmcd. convert vnode ops to take xfs_inode pointers and separate out behaviour related glue.
Revision 1.208 / (download) - annotate - [select for diffs], Thu Aug 23 15:59:37 2007 UTC (10 years, 1 month ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.207: +0 -1
lines
Diff to previous 1.207 (unified)
kill move.[ch] Kill uio related functions and defines now that they're unused. Signed-off-by: Christoph Hellwig <hch@lst.de> Merge of xfs-linux-melb:xfs-kern:29480a by kenmcd. kill move.[ch] now they are unused.
Revision 1.207 / (download) - annotate - [select for diffs], Mon Jul 9 06:12:03 2007 UTC (10 years, 3 months ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.206: +2 -0
lines
Diff to previous 1.206 (unified)
Concurrent Multi-File Data Streams In media spaces, video is often stored in a frame-per-file format. When dealing with uncompressed realtime HD video streams in this format, it is crucial that files do not get fragmented and that multiple files a placed contiguously on disk. When multiple streams are being ingested and played out at the same time, it is critical that the filesystem does not cross the streams and interleave them together as this creates seek and readahead cache miss latency and prevents both ingest and playout from meeting frame rate targets. This patch set creates a "stream of files" concept into the allocator to place all the data from a single stream contiguously on disk so that RAID array readahead can be used effectively. Each additional stream gets placed in different allocation groups within the filesystem, thereby ensuring that we don't cross any streams. When an AG fills up, we select a new AG for the stream that is not in use. The core of the functionality is the stream tracking - each inode that we create in a directory needs to be associated with the directories' stream. Hence every time we create a file, we look up the directories' stream object and associate the new file with that object. Once we have a stream object for a file, we use the AG that the stream object point to for allocations. If we can't allocate in that AG (e.g. it is full) we move the entire stream to another AG. Other inodes in the same stream are moved to the new AG on their next allocation (i.e. lazy update). Stream objects are kept in a cache and hold a reference on the inode. Hence the inode cannot be reclaimed while there is an outstanding stream reference. This means that on unlink we need to remove the stream association and we also need to flush all the associations on certain events that want to reclaim all unreferenced inodes (e.g. filesystem freeze). Merge of xfs-linux-melb:xfs-kern:29096a by kenmcd. Concurrent Multi-File Data Streams feature check in.
Revision 1.206 / (download) - annotate - [select for diffs], Thu Dec 21 14:28:57 2006 UTC (10 years, 9 months ago) by donaldd.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.205: +0 -1
lines
Diff to previous 1.205 (unified)
Merge up to 2.6.19 Merge of xfs-linux-melb:xfs-kern:27801a by kenmcd.
Revision 1.205 / (download) - annotate - [select for diffs], Mon Oct 16 03:52:22 2006 UTC (11 years ago) by vapo.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.204: +1 -16
lines
Diff to previous 1.204 (unified)
956618: Linux crashes on boot with XFS-DMAPI filesystem when CONFIG_XFS_TRACE is on Merge of xfs-linux-melb:xfs-kern:27196a by kenmcd. dmapi still needs to have XFS_VNODE_TRACE defined, so it doesn't mess up struct xfs_vnode when XFS_TRACE is enabled. I had a brainwave on this one - why not do all the #defines in xfs.h and fix the few files that don't include it?
Revision 1.204 / (download) - annotate - [select for diffs], Fri Oct 13 16:13:54 2006 UTC (11 years ago) by tes.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.203: +5 -5
lines
Diff to previous 1.203 (unified)
Merge up to 2.6.18 Merge of xfs-linux-melb:xfs-kern:27192a by kenmcd.
Revision 1.203 / (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.202: +0 -3
lines
Diff to previous 1.202 (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.202 / (download) - annotate - [select for diffs], Thu Jun 15 03:56:49 2006 UTC (11 years, 4 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.201: +1 -1
lines
Diff to previous 1.201 (unified)
Remove unneeded conditional code on NFS export interface related code paths. Merge of xfs-linux-melb:xfs-kern:26250a by kenmcd.
Revision 1.201 / (download) - annotate - [select for diffs], Wed Feb 15 02:48:07 2006 UTC (11 years, 8 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.200: +1 -4
lines
Diff to previous 1.200 (unified)
Remove direct dependency between dmapi.ko and xfs.ko causing dmapi.ko to be held in "[permanent]" mode by the xfs module. Merge of xfs-linux-melb:xfs-kern:25191a by kenmcd.
Revision 1.200 / (download) - annotate - [select for diffs], Sat Dec 17 11:31:50 2005 UTC (11 years, 10 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.199: +2 -2
lines
Diff to previous 1.199 (unified)
Complete the pagebuf -> xfs_buf naming convention transition, finally. Merge of xfs-linux-melb:xfs-kern:24866a by kenmcd.
Revision 1.199 / (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.198: +12 -26
lines
Diff to previous 1.198 (unified)
Update license/copyright notices to match the prefered SGI boilerplate. Merge of xfs-linux-melb:xfs-kern:23903a by kenmcd.
Revision 1.198 / (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.197: +0 -1
lines
Diff to previous 1.197 (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.197 / (download) - annotate - [select for diffs], Wed Jun 22 03:43:05 2005 UTC (12 years, 3 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.196: +0 -1
lines
Diff to previous 1.196 (unified)
Merge back mainline 2.6 changes - qsort and ROTL transition. Merge of xfs-linux-melb:xfs-kern:22938a by kenmcd.
Revision 1.196 / (download) - annotate - [select for diffs], Thu Apr 7 19:53:16 2005 UTC (12 years, 6 months ago) by sandeen
Branch: MAIN
Changes since 1.195: +1 -1
lines
Diff to previous 1.195 (unified)
Enable XFS_VNODE_TRACE
Revision 1.195 / (download) - annotate - [select for diffs], Wed Jan 26 22:37:33 2005 UTC (12 years, 8 months ago) by hch
Branch: MAIN
Changes since 1.194: +1 -1
lines
Diff to previous 1.194 (unified)
Fix NFS exporting with modular nfsd build xfs_export.o for modular nfsd too
Revision 1.194 / (download) - annotate - [select for diffs], Sun Jan 9 22:23:36 2005 UTC (12 years, 9 months ago) by hch
Branch: MAIN
Changes since 1.193: +1 -0
lines
Diff to previous 1.193 (unified)
Move support code for NFS exporting to a conditionally built file add xfs_export.c
Revision 1.193 / (download) - annotate - [select for diffs], Mon Sep 27 03:35:15 2004 UTC (13 years ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.192: +0 -2
lines
Diff to previous 1.192 (unified)
Remove crufty old cap/mac code - never used, never compiled, gone. Merge of xfs-linux-melb:xfs-kern:19601a by kenmcd.
Revision 1.192 / (download) - annotate - [select for diffs], Mon Aug 16 16:43:08 2004 UTC (13 years, 2 months ago) by hch
Branch: MAIN
Changes since 1.191: +1 -0
lines
Diff to previous 1.191 (unified)
Add 32bit ioctl translation Add xfs_ioctl32.o to the build
Revision 1.191 / (download) - annotate - [select for diffs], Tue Jun 15 07:42:37 2004 UTC (13 years, 4 months ago) by hch
Branch: MAIN
Changes since 1.190: +2 -1
lines
Diff to previous 1.190 (unified)
Fix up memory allocators to try more hard kmem.c is back on Linux 2.6
Revision 1.190 / (download) - annotate - [select for diffs], Tue Jun 8 17:26:18 2004 UTC (13 years, 4 months ago) by roehrich
Branch: MAIN
Changes since 1.189: +1 -1
lines
Diff to previous 1.189 (unified)
Move dmapi_xfs.c to ../xfs_dmapi.c Change from dmapi/dmapi_xfs.o to xfs_dmapi.o
Revision 1.189 / (download) - annotate - [select for diffs], Tue Jun 8 15:57:09 2004 UTC (13 years, 4 months ago) by roehrich
Branch: MAIN
Changes since 1.188: +4 -1
lines
Diff to previous 1.188 (unified)
Change xfs makefiles for new dmapi Adjust for new dmapi
Revision 1.188 / (download) - annotate - [select for diffs], Tue May 18 15:41:26 2004 UTC (13 years, 5 months ago) by roehrich
Branch: MAIN
Changes since 1.187: +1 -1
lines
Diff to previous 1.187 (unified)
Switch all XFSDEBUG to DEBUG
Revision 1.187 / (download) - annotate - [select for diffs], Fri Feb 20 03:16:57 2004 UTC (13 years, 7 months ago) by nathans
Branch: MAIN
Changes since 1.186: +1 -2
lines
Diff to previous 1.186 (unified)
Implement mrlocks on top of rwsems, instead of using our own mrlock code.
Revision 1.186 / (download) - annotate - [select for diffs], Mon Feb 9 02:04:38 2004 UTC (13 years, 8 months ago) by hch
Branch: MAIN
Changes since 1.185: +7 -43
lines
Diff to previous 1.185 (unified)
allow loadable behaviour modules in 2.6 build xfs_dmops.o and xfs_qmops.o unconditionally delegate quota and dmapi source to makefiles in the subdirs
Revision 1.185 / (download) - annotate - [select for diffs], Fri Feb 6 04:26:12 2004 UTC (13 years, 8 months ago) by nathans
Branch: MAIN
Changes since 1.184: +1 -1
lines
Diff to previous 1.184 (unified)
Sync up with external trees, fixing the build after support source renames.
Revision 1.184 / (download) - annotate - [select for diffs], Wed Jan 21 05:55:14 2004 UTC (13 years, 8 months ago) by nathans
Branch: MAIN
Changes since 1.183: +7 -0
lines
Diff to previous 1.183 (unified)
Revisit symbol exports, move left-over debug/behavior exports outta the way of regular builds.
Revision 1.183 / (download) - annotate - [select for diffs], Tue Dec 30 01:31:52 2003 UTC (13 years, 9 months ago) by cattelan
Branch: MAIN
Changes since 1.182: +9 -6
lines
Diff to previous 1.182 (unified)
Final bit of code moving to unify the tree rename page_buf.c/h to xfs_buf.c/h and merge in upper level xfs_buf.h page_buf.c -> xfs_buf.c
Revision 1.182 / (download) - annotate - [select for diffs], Tue Dec 16 06:11:00 2003 UTC (13 years, 10 months ago) by cattelan
Branch: MAIN
Changes since 1.181: +4 -5
lines
Diff to previous 1.181 (unified)
Fix up Makefiles and include files to deal with merged tree
Revision 1.181 / (download) - annotate - [select for diffs], Thu Nov 20 03:51:05 2003 UTC (13 years, 11 months ago) by nathans
Branch: MAIN
Changes since 1.180: +1 -3
lines
Diff to previous 1.180 (unified)
Merge page_buf_locking routines in with the rest of page_buf.
Revision 1.180 / (download) - annotate - [select for diffs], Mon Nov 17 05:07:05 2003 UTC (13 years, 11 months ago) by nathans
Branch: MAIN
Changes since 1.179: +1 -0
lines
Diff to previous 1.179 (unified)
Trivial sync ups with the 2.4 XFS code, no functional change.
Revision 1.179 / (download) - annotate - [select for diffs], Tue Oct 21 02:25:14 2003 UTC (13 years, 11 months ago) by nathans
Branch: MAIN
Changes since 1.178: +2 -5
lines
Diff to previous 1.178 (unified)
Dont build objects which are not linked into the kernel ever. Merge of xfs-linux:slinx:160314a by nathans.
Revision 1.178 / (download) - annotate - [select for diffs], Mon Oct 20 04:45:34 2003 UTC (14 years ago) by nathans
Branch: MAIN
Changes since 1.177: +14 -2
lines
Diff to previous 1.177 (unified)
Enable the tracing options in XFS Makefiles. Merge of xfs-linux:slinx:160246a by nathans.
Revision 1.177 / (download) - annotate - [select for diffs], Mon Oct 20 02:14:42 2003 UTC (14 years ago) by nathans
Branch: MAIN
Changes since 1.176: +1 -0
lines
Diff to previous 1.176 (unified)
Enable tracing in the quota code if requested
Revision 1.176 / (download) - annotate - [select for diffs], Fri Oct 17 09:12:28 2003 UTC (14 years ago) by nathans
Branch: MAIN
Changes since 1.175: +2 -1
lines
Diff to previous 1.175 (unified)
Fix ktrace code - dont build unilaterally, and do earlier init for pagebuf use.
Revision 1.175 / (download) - annotate - [select for diffs], Thu Oct 9 04:59:50 2003 UTC (14 years ago) by nathans
Branch: MAIN
Changes since 1.174: +1 -1
lines
Diff to previous 1.174 (unified)
Rename pagebuf debug option (ie. pagebuf tracing) into a generic XFS tracing option for the other XFS trace code to use too (once fixed). Merge of xfs-linux:slinx:159717a by nathans.
Revision 1.174 / (download) - annotate - [select for diffs], Fri Aug 29 04:37:06 2003 UTC (14 years, 1 month ago) by nathans
Branch: MAIN
Changes since 1.173: +0 -1
lines
Diff to previous 1.173 (unified)
Alternate, cleaner fix for the ENOSPC/ACL lookup problem Merge of xfs-linux:slinx:157531a by nathans.
Revision 1.173 / (download) - annotate - [select for diffs], Wed May 14 12:38:47 2003 UTC (14 years, 5 months ago) by hch
Branch: MAIN
Changes since 1.172: +0 -1
lines
Diff to previous 1.172 (unified)
simplify memory allocation code big time kmem.c is gone
Revision 1.172 / (download) - annotate - [select for diffs], Mon May 12 09:43:12 2003 UTC (14 years, 5 months ago) by lord
Branch: MAIN
Changes since 1.171: +0 -1
lines
Diff to previous 1.171 (unified)
Move xfs_syncd code into xfs_super.c which is the only place which uses it
Revision 1.171 / (download) - annotate - [select for diffs], Mon May 5 21:36:47 2003 UTC (14 years, 5 months ago) by hch
Branch: MAIN
Changes since 1.170: +1 -0
lines
Diff to previous 1.170 (unified)
merge Steve's sync changes over to 2.5
Revision 1.170 / (download) - annotate - [select for diffs], Wed Apr 16 20:09:14 2003 UTC (14 years, 6 months ago) by cattelan
Branch: MAIN
Changes since 1.169: +1 -1
lines
Diff to previous 1.169 (unified)
Whitespace cleanup Merge whitespace cleanup to 2.5 tree Merge of 2.4.x-xfs:slinx:144573a by cattelan. Clean up some whitespace... revert some whitespace changes from previous whitespace cleanup (incorrect tabs)
Revision 1.169 / (download) - annotate - [select for diffs], Wed Mar 26 19:00:53 2003 UTC (14 years, 6 months ago) by hch
Branch: MAIN
Changes since 1.168: +8 -8
lines
Diff to previous 1.168 (unified)
bring us back in sync with mainline cleanup
Revision 1.168 / (download) - annotate - [select for diffs], Mon Mar 17 07:19:15 2003 UTC (14 years, 7 months ago) by nathans
Branch: MAIN
Changes since 1.167: +19 -12
lines
Diff to previous 1.167 (unified)
Separate the quota source into its own subdirectory ala dmapi. Push a bunch of quota- and dmapi-specific code down into these subdirs which previously was compiled into the core XFS code, and don't descend into these subdirs if options config'd off. Merge of 2.4.x-xfs:slinx:141850a by nathans.
Revision 1.167 / (download) - annotate - [select for diffs], Wed Mar 12 06:04:25 2003 UTC (14 years, 7 months ago) by nathans
Branch: MAIN
Changes since 1.166: +4 -5
lines
Diff to previous 1.166 (unified)
Next step in bhv code cleanup - this is a start on moving quota and dmapi into behavior layers, purging several points where these sit slap bang in the middle of XFS code (esp. read_super). Also removes numerous #ifdef's and a bunch of unused #define's from all over the place. More to come. Merge of 2.4.x-xfs:slinx:141499a by nathans.
Revision 1.166 / (download) - annotate - [select for diffs], Mon Feb 24 20:59:54 2003 UTC (14 years, 7 months ago) by hch
Branch: MAIN
Changes since 1.165: +0 -0
lines
Diff to previous 1.165 (unified)
fix compilation with CONFIG_SYSCTL=n
Revision 1.165 / (download) - annotate - [select for diffs], Tue Feb 11 19:51:18 2003 UTC (14 years, 8 months ago) by hch
Branch: MAIN
Changes since 1.164: +0 -3
lines
Diff to previous 1.164 (unified)
Merge up to 2.5.60
Revision 1.164 / (download) - annotate - [select for diffs], Fri Dec 20 18:51:34 2002 UTC (14 years, 10 months ago) by cattelan
Branch: MAIN
Changes since 1.163: +12 -14
lines
Diff to previous 1.163 (unified)
"merge" the 2.4 fsx fix for block size < page size to 2.5. This needed major changes to actually fit.
Revision 1.163 / (download) - annotate - [select for diffs], Tue Dec 17 16:34:29 2002 UTC (14 years, 10 months ago) by hch
Branch: MAIN
Changes since 1.162: +0 -0
lines
Diff to previous 1.162 (unified)
merge up to 2.5.52
Revision 1.162 / (download) - annotate - [select for diffs], Tue Dec 17 16:06:38 2002 UTC (14 years, 10 months ago) by hch
Branch: MAIN
Changes since 1.161: +0 -2
lines
Diff to previous 1.161 (unified)
merge up to 2.5.52
Revision 1.161 / (download) - annotate - [select for diffs], Tue Nov 5 15:04:39 2002 UTC (14 years, 11 months ago) by lord
Branch: MAIN
Changes since 1.160: +1 -1
lines
Diff to previous 1.160 (unified)
Add XFS_POSIX_ACL to control ACL compilation in xfs switch to CONFIG_XFS_POSIX_ACL
Revision 1.160 / (download) - annotate - [select for diffs], Mon Nov 4 19:41:46 2002 UTC (14 years, 11 months ago) by lord
Branch: MAIN
Changes since 1.159: +1 -0
lines
Diff to previous 1.159 (unified)
break out the allocator specific parts of the xfs I/O path into a separate file, xfs_iomap.c out of xfs_lrw.c. Remove some parts of the code which were not doing anything for us. This is step one in some major reorgs of this code.
Revision 1.159 / (download) - annotate - [select for diffs], Tue Oct 8 17:33:15 2002 UTC (15 years ago) by lord
Branch: MAIN
Changes since 1.158: +17 -16
lines
Diff to previous 1.158 (unified)
xfs components of the 2.5.41 merge. CONTRIBUTED: Makefile format changes from Kai Germaschewski <kai-germaschewski@uiowa.edu> and CONTRIBUTED: direct I/O parameter changes from Andrew Morton <akpm@digeo.com> Remainder from Christoph. no longer descending to directories during make
Revision 1.158 / (download) - annotate - [select for diffs], Thu Sep 5 06:24:11 2002 UTC (15 years, 1 month ago) by nathans
Branch: MAIN
Changes since 1.157: +1 -2
lines
Diff to previous 1.157 (unified)
*** empty log message ***
Revision 1.157 / (download) - annotate - [select for diffs], Mon Sep 2 12:36:59 2002 UTC (15 years, 1 month ago) by lord
Branch: MAIN
Changes since 1.156: +2 -2
lines
Diff to previous 1.156 (unified)
move page_buf_io.c to xfs_aops.c
Revision 1.156 / (download) - annotate - [select for diffs], Thu Aug 29 15:46:02 2002 UTC (15 years, 1 month ago) by lord
Branch: MAIN
Changes since 1.155: +3 -2
lines
Diff to previous 1.155 (unified)
cleanup stats/sysctl
Revision 1.155 / (download) - annotate - [select for diffs], Wed Aug 28 19:30:08 2002 UTC (15 years, 1 month ago) by lord
Branch: MAIN
Changes since 1.154: +0 -1
lines
Diff to previous 1.154 (unified)
simplify cred code
Revision 1.154 / (download) - annotate - [select for diffs], Thu Aug 15 14:17:34 2002 UTC (15 years, 2 months ago) by lord
Branch: MAIN
Changes since 1.153: +0 -1
lines
Diff to previous 1.153 (unified)
remove unneeded vfs locking code
Revision 1.153 / (download) - annotate - [select for diffs], Fri Aug 2 17:42:30 2002 UTC (15 years, 2 months ago) by roehrich
Branch: MAIN
Changes since 1.152: +17 -2
lines
Diff to previous 1.152 (unified)
Merge of 2.4.x-xfs:slinx:123931a by lord. fix build after dmapi src move
Revision 1.152 / (download) - annotate - [select for diffs], Fri Jul 26 22:05:57 2002 UTC (15 years, 2 months ago) by sandeen
Branch: MAIN
Changes since 1.151: +18 -38
lines
Diff to previous 1.151 (unified)
fix makefiles for modules
Revision 1.151 / (download) - annotate - [select for diffs], Thu Jul 25 18:50:28 2002 UTC (15 years, 2 months ago) by sandeen
Branch: MAIN
Changes since 1.150: +1 -9
lines
Diff to previous 1.150 (unified)
Merge of 2.4.x-xfs:slinx:123567a originally by roehrich on 07/23/02 From Chris Hellwig: * CONFIG_XFS_DMAPI is now a dep_mbool on CONFIG_XFS_FS, fs/xfs_dmapi/ is entered based on CONFIG_XFS_FS if CONFIG_XFS_DMAPI is set to keep the old behaviour. * CONFIG_HAVE_XFS_DMAPI is gone, as CONFIG_XFS_DMAPI has the same meaning now. * we refuse to mount with dmapi/xdsm options now if we can't support it. * this way the dmapi_mount vfs method can't be called without dmapi support anymore. declare the two dmapi-related vfs methods only if we build with dmapi support. * fs/xfs/xfsdmapistubs.c is gone, all stubs for XFS-own dmapi-related functions are inlines in xfs_dmapi.h now. * xfs_dmapi_mmap_event is renamed to xfs_dm_send_mmap_event to match the other xfs_dm_send_* functions No Message Supplied
Revision 1.150 / (download) - annotate - [select for diffs], Wed Jul 10 20:44:06 2002 UTC (15 years, 3 months ago) by sandeen
Branch: MAIN
Changes since 1.149: +13 -13
lines
Diff to previous 1.149 (unified)
whitespace cleanup Merge of 2.4.x-xfs:slinx:122792a by sandeen.
Revision 1.149 / (download) - annotate - [select for diffs], Tue Jul 2 02:32:38 2002 UTC (15 years, 3 months ago) by nathans
Branch: MAIN
Changes since 1.148: +0 -0
lines
Diff to previous 1.148 (unified)
Merge of 2.4.x-xfs:slinx:122603a originally by nathans on 07/01/02 we now have a valid xfs_cap.c target.
Revision 1.148 / (download) - annotate - [select for diffs], Mon Jun 24 15:14:34 2002 UTC (15 years, 3 months ago) by lord
Branch: MAIN
Changes since 1.147: +5 -17
lines
Diff to previous 1.147 (unified)
clean up makefile ifdefs Merge of 2.4.x-xfs:slinx:122136a by lord.
Revision 1.147 / (download) - annotate - [select for diffs], Mon Jun 24 15:06:26 2002 UTC (15 years, 3 months ago) by lord
Branch: MAIN
Changes since 1.146: +0 -2
lines
Diff to previous 1.146 (unified)
rationalize locking code
Revision 1.146 / (download) - annotate - [select for diffs], Thu Jun 20 06:17:29 2002 UTC (15 years, 4 months ago) by nathans
Branch: MAIN
Changes since 1.145: +15 -12
lines
Diff to previous 1.145 (unified)
Merge of 2.4.x-xfs:slinx:122032a by nathans. rework the quota and rt stub files so that we don't create a bunch of small functions, instead we just define them away via headers. add hook for cap.
Revision 1.145 / (download) - annotate - [select for diffs], Thu Jun 13 18:06:04 2002 UTC (15 years, 4 months ago) by lord
Branch: MAIN
Changes since 1.144: +1 -9
lines
Diff to previous 1.144 (unified)
remove grio code Merge of 2.4.x-xfs:slinx:121492a by lord.
Revision 1.144 / (download) - annotate - [select for diffs], Thu Jun 13 03:39:24 2002 UTC (15 years, 4 months ago) by lord
Branch: MAIN
Changes since 1.143: +42 -37
lines
Diff to previous 1.143 (unified)
Make xfs build better
Revision 1.143 / (download) - annotate - [select for diffs], Tue Jun 4 21:47:31 2002 UTC (15 years, 4 months ago) by lord
Branch: MAIN
Changes since 1.142: +2 -1
lines
Diff to previous 1.142 (unified)
fix make dep for xfs
Revision 1.142 / (download) - annotate - [select for diffs], Tue Jun 4 18:56:57 2002 UTC (15 years, 4 months ago) by sandeen
Branch: MAIN
Changes since 1.141: +1 -1
lines
Diff to previous 1.141 (unified)
Update copyright dates Merge of 2.4.x-xfs:slinx:120763a by sandeen.
Revision 1.141 / (download) - annotate - [select for diffs], Mon Jun 3 21:52:59 2002 UTC (15 years, 4 months ago) by lord
Branch: MAIN
Changes since 1.140: +1 -2
lines
Diff to previous 1.140 (unified)
Undoes mod: 2.4.x-xfs:slinx:120154a Merge of 2.4.x-xfs:slinx:120708a by lord.
Revision 1.140 / (download) - annotate - [select for diffs], Sat Jun 1 11:45:23 2002 UTC (15 years, 4 months ago) by lord
Branch: MAIN
Changes since 1.139: +87 -36
lines
Diff to previous 1.139 (unified)
merge in more Make changes - xfs as a module builds
Revision 1.139 / (download) - annotate - [select for diffs], Fri May 31 22:19:43 2002 UTC (15 years, 4 months ago) by lord
Branch: MAIN
Changes since 1.138: +37 -54
lines
Diff to previous 1.138 (unified)
merge up to 2.5.19
Revision 1.138 / (download) - annotate - [select for diffs], Fri May 24 15:52:49 2002 UTC (15 years, 4 months ago) by lord
Branch: MAIN
Changes since 1.137: +2 -1
lines
Diff to previous 1.137 (unified)
Merge of 2.4.x-xfs:slinx:120154a originally by lord on 05/24/02 Add xfs_log_lsn.c
Revision 1.137 / (download) - annotate - [select for diffs], Tue May 21 05:28:46 2002 UTC (15 years, 5 months ago) by nathans
Branch: MAIN
Changes since 1.136: +4 -2
lines
Diff to previous 1.136 (unified)
Merge of 2.4.x-xfs:slinx:119674a by nathans. changes to fold xfs_support code back into XFS (the other sgi projects using this will be / have been fixed). reduces our footprint on the base kernel. NB: xfs_support.o as a distinct module no longer exists.
Revision 1.136 / (download) - annotate - [select for diffs], Mon Mar 25 04:35:42 2002 UTC (15 years, 6 months ago) by nathans
Branch: MAIN
Changes since 1.135: +3 -0
lines
Diff to previous 1.135 (unified)
Merge of 2.4.x-xfs:slinx:114782a by nathans. Propogate the PAGEBUF_TRACE flag if need be.
Revision 1.135 / (download) - annotate - [select for diffs], Tue Feb 26 03:24:19 2002 UTC (15 years, 7 months ago) by nathans
Branch: MAIN
Changes since 1.134: +5 -2
lines
Diff to previous 1.134 (unified)
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.134 / (download) - annotate - [select for diffs], Mon Jan 28 20:50:17 2002 UTC (15 years, 8 months ago) by lord
Branch: MAIN
Changes since 1.133: +1 -1
lines
Diff to previous 1.133 (unified)
Merge of 2.4.x-xfs:slinx:110350a by lord. Put back explicit setting of -funsigned-char
Revision 1.133 / (download) - annotate - [select for diffs], Thu Jan 24 03:56:40 2002 UTC (15 years, 8 months ago) by lord
Branch: MAIN
Changes since 1.132: +1 -1
lines
Diff to previous 1.132 (unified)
Merge of 2.4.x-xfs:slinx:110094a by lord. Remove the explicit setting of -funsigned-char from the makefile
Revision 1.132 / (download) - annotate - [select for diffs], Sun Jan 13 13:14:04 2002 UTC (15 years, 9 months ago) by lord
Branch: MAIN
Changes since 1.131: +2 -2
lines
Diff to previous 1.131 (unified)
Merge pagebuf module into XFS Merge of 2.4.x-xfs:slinx:109482a by lord.
Revision 1.131 / (download) - annotate - [select for diffs], Sat Jan 12 15:14:53 2002 UTC (15 years, 9 months ago) by lord
Branch: MAIN
Changes since 1.130: +2 -4
lines
Diff to previous 1.130 (unified)
relocate xfs_support header files Merge of 2.4.x-xfs:slinx:109476a by lord.
Revision 1.130 / (download) - annotate - [select for diffs], Tue Dec 11 22:36:16 2001 UTC (15 years, 10 months ago) by roehrich
Branch: MAIN
Changes since 1.129: +1 -4
lines
Diff to previous 1.129 (unified)
Merge of 2.4.x-xfs:slinx:107764a by lord. No Message Supplied
Revision 1.129 / (download) - annotate - [select for diffs], Tue Dec 11 22:33:45 2001 UTC (15 years, 10 months ago) by roehrich
Branch: MAIN
Changes since 1.128: +2 -2
lines
Diff to previous 1.128 (unified)
If I build dmapi as a module then CONFIG_XFS_DMAPI won't be set--it'll be CONFIG_XFS_DMAPI_MODULE instead. So switch to using CONFIG_HAVE_XFS_DMAPI to see if DMAPI is being used, whether dmapi is a module or not. Merge of 2.4.x-xfs:slinx:107752a by lord. No Message Supplied
Revision 1.128 / (download) - annotate - [select for diffs], Sat Oct 20 06:18:58 2001 UTC (16 years ago) by kaos
Branch: MAIN
Changes since 1.127: +13 -11
lines
Diff to previous 1.127 (unified)
Initialise xfsidbg after the main xfs code
Revision 1.127 / (download) - annotate - [select for diffs], Sat Oct 20 01:16:33 2001 UTC (16 years ago) by kaos
Branch: MAIN
Changes since 1.126: +2 -2
lines
Diff to previous 1.126 (unified)
Correct CONFIG typo
Revision 1.126 / (download) - annotate - [select for diffs], Fri Oct 19 04:29:19 2001 UTC (16 years ago) by kaos
Branch: MAIN
Changes since 1.125: +2 -2
lines
Diff to previous 1.125 (unified)
Correct extra cflags for xfsidbg.o
Revision 1.125 / (download) - annotate - [select for diffs], Wed Oct 17 05:35:01 2001 UTC (16 years ago) by kaos
Branch: MAIN
Changes since 1.124: +11 -5
lines
Diff to previous 1.124 (unified)
Allow xfsidbg to be built in
Revision 1.124 / (download) - annotate - [select for diffs], Mon Oct 15 02:59:21 2001 UTC (16 years ago) by kaos
Branch: MAIN
Changes since 1.123: +4 -0
lines
Diff to previous 1.123 (unified)
Prevent XFS kernel code including files from outside the kernel
Revision 1.123 / (download) - annotate - [select for diffs], Thu Oct 11 03:28:59 2001 UTC (16 years ago) by kaos
Branch: MAIN
Changes since 1.122: +2 -0
lines
Diff to previous 1.122 (unified)
Update kbuild 2.5 files for kdb v1.9
Revision 1.122 / (download) - annotate - [select for diffs], Mon Aug 20 07:39:46 2001 UTC (16 years, 2 months ago) by nathans
Branch: MAIN
Changes since 1.121: +1 -3
lines
Diff to previous 1.121 (unified)
fix up static for debug builds, also want -g for debug builds.
Revision 1.121 / (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.120: +1 -5
lines
Diff to previous 1.120 (unified)
Get rid of the last compiler warning OFF flags
Revision 1.120 / (download) - annotate - [select for diffs], Thu Mar 15 01:00:39 2001 UTC (16 years, 7 months ago) by kaos
Branch: MAIN
CVS Tags: Release-1_0_0,
PreRelease-0_10
Changes since 1.119: +17 -3
lines
Diff to previous 1.119 (unified)
Special cases in xfs makefile
Revision 1.119 / (download) - annotate - [select for diffs], Wed Mar 14 15:08:54 2001 UTC (16 years, 7 months ago) by lord
Branch: MAIN
Changes since 1.118: +1 -1
lines
Diff to previous 1.118 (unified)
Comment out grio directory, make dep dies an ugly death otherwise
Revision 1.118 / (download) - annotate - [select for diffs], Wed Mar 14 08:07:20 2001 UTC (16 years, 7 months ago) by kaos
Branch: MAIN
Changes since 1.117: +22 -55
lines
Diff to previous 1.117 (unified)
Make xfs support a separate component to handle xscsi/xvm
Revision 1.117 / (download) - annotate - [select for diffs], Wed Mar 7 20:19:24 2001 UTC (16 years, 7 months ago) by lord
Branch: MAIN
Changes since 1.116: +6 -2
lines
Diff to previous 1.116 (unified)
Break realtime and grio apart as build options
Revision 1.116 / (download) - annotate - [select for diffs], Tue Feb 27 03:57:03 2001 UTC (16 years, 7 months ago) by kaos
Branch: MAIN
Changes since 1.115: +4 -12
lines
Diff to previous 1.115 (unified)
Use mkdep from 2.4.2-ac kernel
Revision 1.115 / (download) - annotate - [select for diffs], Fri Jan 19 06:50:04 2001 UTC (16 years, 9 months ago) by tes
Branch: MAIN
Changes since 1.114: +5 -2
lines
Diff to previous 1.114 (unified)
Make ACLs compile configurable
Revision 1.114 / (download) - annotate - [select for diffs], Mon Jan 15 10:28:46 2001 UTC (16 years, 9 months ago) by tes
Branch: MAIN
Changes since 1.113: +3 -1
lines
Diff to previous 1.113 (unified)
Add XFS/ACL support
Revision 1.113 / (download) - annotate - [select for diffs], Tue Jan 9 02:55:07 2001 UTC (16 years, 9 months ago) by cattelan
Branch: MAIN
Changes since 1.112: +1 -1
lines
Diff to previous 1.112 (unified)
Remove the -g3 from the compile flags. This shouldn't be the default at this point, anybody needed debugging info should add them by hand. This should significatly reduce the size of the initial ram disks.
Revision 1.112 / (download) - annotate - [select for diffs], Thu Dec 21 05:48:12 2000 UTC (16 years, 9 months ago) by cattelan
Branch: MAIN
Changes since 1.111: +1 -1
lines
Diff to previous 1.111 (unified)
Update to test13-pre3, needed to move to new Makefile scheme.
Revision 1.111 / (download) - annotate - [select for diffs], Thu Dec 21 04:48:26 2000 UTC (16 years, 9 months ago) by kaos
Branch: MAIN
Changes since 1.110: +4 -1
lines
Diff to previous 1.110 (unified)
pagebuf/dmapi new Makefiles fix
Revision 1.110 / (download) - annotate - [select for diffs], Tue Dec 19 05:20:37 2000 UTC (16 years, 10 months ago) by kaos
Branch: MAIN
Changes since 1.109: +96 -99
lines
Diff to previous 1.109 (unified)
Change XFS Makefiles to 2.4.0-test13-prex format
Revision 1.109 / (download) - annotate - [select for diffs], Tue Nov 14 02:57:58 2000 UTC (16 years, 11 months ago) by dxm
Branch: MAIN
Changes since 1.108: +13 -2
lines
Diff to previous 1.108 (unified)
Split XFS support code into xfs_support module
Revision 1.108 / (download) - annotate - [select for diffs], Mon Sep 25 05:42:07 2000 UTC (17 years ago) by nathans
Branch: MAIN
Changes since 1.107: +18 -27
lines
Diff to previous 1.107 (unified)
don't provide -Ipseudo-inc, rework grio/rt a bit, remove -D_KERNEL, rework quota objects - in general, tidy up.
Revision 1.107 / (download) - annotate - [select for diffs], Thu Sep 14 05:14:56 2000 UTC (17 years, 1 month ago) by nathans
Branch: MAIN
Changes since 1.106: +6 -0
lines
Diff to previous 1.106 (unified)
add a comment re quotas.
Revision 1.106 / (download) - annotate - [select for diffs], Thu Aug 3 13:51:30 2000 UTC (17 years, 2 months ago) by roehrich
Branch: MAIN
Changes since 1.105: +1 -1
lines
Diff to previous 1.105 (unified)
add xfs_dmapi glue to dmapi add xfs_dmapi glue to dmapi
Revision 1.105 / (download) - annotate - [select for diffs], Tue Jul 25 20:26:44 2000 UTC (17 years, 2 months ago) by ananth
Branch: MAIN
Changes since 1.104: +6 -6
lines
Diff to previous 1.104 (unified)
Tabs cause problems in some make environments (verison 3.79 for example).
Revision 1.104 / (download) - annotate - [select for diffs], Mon Jul 17 20:46:45 2000 UTC (17 years, 3 months ago) by roehrich
Branch: MAIN
Changes since 1.103: +17 -9
lines
Diff to previous 1.103 (unified)
Make xfs makefiles dmapi-aware do not use stubs when dmapi is enabled
Revision 1.103 / (download) - annotate - [select for diffs], Tue Jul 4 19:32:45 2000 UTC (17 years, 3 months ago) by jtk
Branch: MAIN
Changes since 1.102: +3 -1
lines
Diff to previous 1.102 (unified)
Allow XFS DEBUG mode to be configured via CONFIG_XFS_DEBUG.
Revision 1.102 / (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.101: +27 -8
lines
Diff to previous 1.101 (unified)
Merge of 2.3.99pre2-xfs:slinx:62997a originally by lord on 05/30/00 Switch from OX_OBJ to O_OBJ 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:63364a originally by dxm on 06/05/00 don't require grio directory Merge of 2.3.99pre2-xfs:slinx:63636a originally by nathans on 06/07/00 more housekeeping - remove unused headers & dead code.
Revision 1.101 / (download) - annotate - [select for diffs], Fri Jun 9 03:58:47 2000 UTC (17 years, 4 months ago) by cattelan
Branch: MAIN
Changes since 1.100: +4 -1
lines
Diff to previous 1.100 (unified)
Merge of 2.3.99pre2-xfs:slinx:59962a by ananth. Check for no-unknown-pragma option on gcc
Revision 1.100 / (download) - annotate - [select for diffs], Fri Jun 9 03:53:49 2000 UTC (17 years, 4 months ago) by jtk
Branch: MAIN
Changes since 1.99: +5 -0
lines
Diff to previous 1.99 (unified)
Merge of 2.3.99pre2-xfs:slinx:59377a by ananth. Close a large hole in the header dependency chain.
Revision 1.99 / (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.98: +31 -0
lines
Diff to previous 1.98 (unified)
Updated copyright and license notices, ready for open source release Merge of 2.3.99pre2-xfs:slinx:55821a by ananth.
Revision 1.98 / (download) - annotate - [select for diffs], Fri Jun 9 02:19:55 2000 UTC (17 years, 4 months ago) by cattelan
Branch: MAIN
CVS Tags: DELETE
Changes since 1.97: +1 -16
lines
Diff to previous 1.97 (unified)
Merge of 2.3.99pre2-xfs:slinx:46994a by ananth. Merge of 2.3.42-xfs:slinx:46994a by ananth. Removed the need for links in the pseudo-inc directory. changed all includes of xfs_linux.h -> xfs_os_defs.h
Revision 1.97 / (download) - annotate - [select for diffs], Fri Jun 9 02:13:12 2000 UTC (17 years, 4 months ago) by dxm
Branch: MAIN
Changes since 1.96: +2 -1
lines
Diff to previous 1.96 (unified)
initial architecture work Merge of 2.3.99pre2-xfs:slinx:46678a by ananth. Merge of 2.3.42-xfs:slinx:46678a by ananth.
Revision 1.96 / (download) - annotate - [select for diffs], Fri Jun 9 01:09:48 2000 UTC (17 years, 4 months ago) by nathans
Branch: MAIN
Changes since 1.95: +0 -1
lines
Diff to previous 1.95 (unified)
Merge of 2.3.99pre2-xfs:slinx:46031a by ananth. Merge of 2.3.42-xfs:slinx:46031a by ananth. remove xfs_misc.c from list of built source files.
Revision 1.95 / (download) - annotate - [select for diffs], Fri Jun 9 01:03:55 2000 UTC (17 years, 4 months ago) by jtk
Branch: MAIN
Changes since 1.94: +7 -1
lines
Diff to previous 1.94 (unified)
Merge of 2.3.99pre2-xfs:slinx:45566a by ananth. Merge of 2.3.42-xfs:slinx:45566a by ananth. Add/use EXTRA_INCLUDE_DIRECTORIES & EXTRA_FIND_DIRECTORIES.
Revision 1.94 / (download) - annotate - [select for diffs], Fri Jun 9 00:56:39 2000 UTC (17 years, 4 months ago) by jtk
Branch: MAIN
Changes since 1.93: +1 -1
lines
Diff to previous 1.93 (unified)
Merge of 2.3.99pre2-xfs:slinx:44954a by ananth. Merge of 2.3.42-xfs:slinx:44954a by ananth. Change the default xfs build back to non-debug, at least until we can figure what's wrong with the ASSERT in xfs_log.c
Revision 1.93 / (download) - annotate - [select for diffs], Fri Jun 9 00:56:22 2000 UTC (17 years, 4 months ago) by lord
Branch: MAIN
Changes since 1.92: +2 -2
lines
Diff to previous 1.92 (unified)
Merge of 2.3.99pre2-xfs:slinx:44925a by ananth. Merge of 2.3.42-xfs:slinx:44925a by ananth. use LX_OBJ rather than L_OBJ
Revision 1.92 / (download) - annotate - [select for diffs], Thu Jun 8 23:59:59 2000 UTC (17 years, 4 months ago) by lord
Branch: MAIN
Changes since 1.91: +4 -3
lines
Diff to previous 1.91 (unified)
Bring XFS upto 2.3.42 Merge of 2.3.99pre2-xfs:slinx:43458a by ananth. Merge of 2.3.42-xfs:slinx:43458a by ananth.
Revision 1.91 / (download) - annotate - [select for diffs], Fri Feb 11 03:35:55 2000 UTC (17 years, 8 months ago) by mostek
Branch: MAIN
Changes since 1.90: +3 -1
lines
Diff to previous 1.90 (unified)
Just add a comment with # -DDEBUG -DXFSDEBUG to more easily turn on debugging.
Revision 1.90 / (download) - annotate - [select for diffs], Wed Jan 12 16:31:33 2000 UTC (17 years, 9 months ago) by lord
Branch: MAIN
Changes since 1.89: +14 -7
lines
Diff to previous 1.89 (unified)
add xfsidbg as a module
Revision 1.89 / (download) - annotate - [select for diffs], Tue Jan 11 20:52:49 2000 UTC (17 years, 9 months ago) by lord
Branch: MAIN
Changes since 1.88: +7 -7
lines
Diff to previous 1.88 (unified)
Changed make rule for module build
Revision 1.88 / (download) - annotate - [select for diffs], Thu Dec 16 00:44:23 1999 UTC (17 years, 10 months ago) by cattelan
Branch: MAIN
Changes since 1.87: +7 -2
lines
Diff to previous 1.87 (unified)
Build xfs as a module now... actually two modules
Revision 1.87 / (download) - annotate - [select for diffs], Mon Nov 22 23:59:24 1999 UTC (17 years, 10 months ago) by mostek
Branch: MAIN
Changes since 1.86: +1 -1
lines
Diff to previous 1.86 (unified)
Add two more xfs.h's for xfs_repair inclusion.
Revision 1.86 / (download) - annotate - [select for diffs], Thu Nov 18 14:12:57 1999 UTC (17 years, 11 months ago) by lord
Branch: MAIN
Changes since 1.85: +1 -2
lines
Diff to previous 1.85 (unified)
Export xfs_buf.h to the sys/fs subdirectory
Revision 1.85 / (download) - annotate - [select for diffs], Wed Oct 20 22:05:26 1999 UTC (18 years ago) by lord
Branch: MAIN
Changes since 1.84: +2 -1
lines
Diff to previous 1.84 (unified)
Added -funsigned-char to cflags
Revision 1.84 / (download) - annotate - [select for diffs], Thu Oct 7 22:31:05 1999 UTC (18 years ago) by cattelan
Branch: MAIN
Changes since 1.83: +6 -9
lines
Diff to previous 1.83 (unified)
moved all linux/*.o to linux/Makefile
Revision 1.83 / (download) - annotate - [select for diffs], Thu Oct 7 18:44:41 1999 UTC (18 years ago) by cattelan
Branch: MAIN
Changes since 1.82: +3 -2
lines
Diff to previous 1.82 (unified)
Do want -Wall remove specific warning with -Wno-<warning>
Revision 1.82 / (download) - annotate - [select for diffs], Thu Oct 7 15:09:23 1999 UTC (18 years ago) by lord
Branch: MAIN
Changes since 1.81: +6 -38
lines
Diff to previous 1.81 (unified)
Cleanup make rules
Revision 1.81 / (download) - annotate - [select for diffs], Tue Oct 5 05:18:56 1999 UTC (18 years ago) by cattelan
Branch: MAIN
Changes since 1.80: +2 -2
lines
Diff to previous 1.80 (unified)
Added compiler flags to turn off warning we don't want to hear about
Revision 1.80 / (download) - annotate - [select for diffs], Thu Sep 30 14:10:40 1999 UTC (18 years ago) by lord
Branch: MAIN
Changes since 1.79: +2 -3
lines
Diff to previous 1.79 (unified)
Add linux/xfs_iops.o (was xfs_inode.c)
Revision 1.79 / (download) - annotate - [select for diffs], Wed Sep 29 17:55:19 1999 UTC (18 years ago) by lord
Branch: MAIN
Changes since 1.78: +1 -1
lines
Diff to previous 1.78 (unified)
Add linux_bdstrat.c
Revision 1.78 / (download) - annotate - [select for diffs], Sat Sep 25 01:28:07 1999 UTC (18 years ago) by cattelan
Branch: MAIN
Changes since 1.77: +19 -10
lines
Diff to previous 1.77 (unified)
Include path changes
Revision 1.77 / (download) - annotate - [select for diffs], Fri Sep 10 20:24:32 1999 UTC (18 years, 1 month ago) by cattelan
Branch: MAIN
Changes since 1.76: +3 -1
lines
Diff to previous 1.76 (unified)
More header files to be linked.
Revision 1.76 / (download) - annotate - [select for diffs], Fri Sep 10 18:00:00 1999 UTC (18 years, 1 month ago) by cattelan
Branch: MAIN
Changes since 1.75: +25 -1
lines
Diff to previous 1.75 (unified)
Added rules to make all nessesary sym links
Revision 1.75 / (download) - annotate - [select for diffs], Fri Sep 3 01:13:18 1999 UTC (18 years, 1 month ago) by cattelan
Branch: MAIN
Changes since 1.74: +1 -1
lines
Diff to previous 1.74 (unified)
First checkin of a loadable module
Revision 1.74 / (download) - annotate - [select for diffs], Fri Sep 3 00:40:44 1999 UTC (18 years, 1 month ago) by mostek
Branch: MAIN
Changes since 1.73: +3 -1
lines
Diff to previous 1.73 (unified)
Added a bunch of new files with stubs...
Revision 1.73 / (download) - annotate - [select for diffs], Thu Sep 2 22:52:53 1999 UTC (18 years, 1 month ago) by mostek
Branch: MAIN
Changes since 1.72: +6 -5
lines
Diff to previous 1.72 (unified)
Add DMAPI and Real time stubs.
Revision 1.72 / (download) - annotate - [select for diffs], Thu Sep 2 22:24:14 1999 UTC (18 years, 1 month ago) by cattelan
Branch: MAIN
Changes since 1.71: +5 -3
lines
Diff to previous 1.71 (unified)
No Message Supplied
Revision 1.71 / (download) - annotate - [select for diffs], Thu Sep 2 19:11:37 1999 UTC (18 years, 1 month ago) by cattelan
Branch: MAIN
Changes since 1.70: +3 -1
lines
Diff to previous 1.70 (unified)
Added files
Revision 1.70 / (download) - annotate - [select for diffs], Thu Sep 2 18:49:02 1999 UTC (18 years, 1 month ago) by mostek
Branch: MAIN
Changes since 1.69: +2 -1
lines
Diff to previous 1.69 (unified)
Add oplockstubs.o.
Revision 1.69 / (download) - annotate - [select for diffs], Wed Sep 1 14:35:36 1999 UTC (18 years, 1 month ago) by cattelan
Branch: MAIN
Changes since 1.68: +13 -2
lines
Diff to previous 1.68 (unified)
added xfs_griostubs.c
Revision 1.68 / (download) - annotate - [select for diffs], Wed Sep 1 00:35:47 1999 UTC (18 years, 1 month ago) by mostek
Branch: MAIN
Changes since 1.67: +8 -4
lines
Diff to previous 1.67 (unified)
Add new files and a define moved from kern/Makefile.
Revision 1.67 / (download) - annotate - [select for diffs], Tue Aug 31 16:17:54 1999 UTC (18 years, 1 month ago) by cattelan
Branch: MAIN
Changes since 1.66: +1 -1
lines
Diff to previous 1.66 (unified)
More files More files
Revision 1.66 / (download) - annotate - [select for diffs], Mon Aug 30 23:15:11 1999 UTC (18 years, 1 month ago) by mostek
Branch: MAIN
Changes since 1.65: +6 -3
lines
Diff to previous 1.65 (unified)
Add some new files including quota stubs, more locks, globals, ...
Revision 1.65 / (download) - annotate - [select for diffs], Mon Aug 30 20:33:27 1999 UTC (18 years, 1 month ago) by cattelan
Branch: MAIN
Changes since 1.64: +7 -3
lines
Diff to previous 1.64 (unified)
Move files around; use the new linux dir.
Revision 1.64 / (download) - annotate - [select for diffs], Fri Aug 27 22:00:32 1999 UTC (18 years, 1 month ago) by cattelan
Branch: MAIN
Changes since 1.63: +6 -5
lines
Diff to previous 1.63 (unified)
Header file checkpoint... libsim mkfs xfsdb build\n as well as most of the kernel files
Revision 1.63 / (download) - annotate - [select for diffs], Wed Aug 25 02:22:32 1999 UTC (18 years, 1 month ago) by cattelan
Branch: MAIN
Changes since 1.62: +52 -2
lines
Diff to previous 1.62 (unified)
Many more header file fix ups. Many more to come.
Revision 1.62 / (download) - annotate - [select for diffs], Thu Aug 12 21:33:22 1999 UTC (18 years, 2 months ago) by kpreslan
Branch: MAIN
Changes since 1.61: +9 -200
lines
Diff to previous 1.61 (unified)
TAKE - Imported Linux VFS operation stubs
Revision 1.61 / (download) - annotate - [select for diffs], Fri May 14 20:13:13 1999 UTC (18 years, 5 months ago) by lord
Branch: MAIN
Changes since 1.60: +5 -6
lines
Diff to previous 1.60 (unified)
Merge from irix/cxfs-f to irix/irix6.5f Merge of cxfs-f:irix:15011b created by lord on 05/11/99 Merge from irix/cxfs to irix/cxfs-f Merge of cxfs:irix:13423a created by lord on 04/19/99 CXFS infrastructure checkin
Revision 1.60 / (download) - annotate - [select for diffs], Sat Mar 6 00:22:19 1999 UTC (18 years, 7 months ago) by cwf
Branch: MAIN
Changes since 1.59: +2 -0
lines
Diff to previous 1.59 (unified)
pv:512169 Added xfs_dfrag files into build.
Revision 1.59 / (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.58: +15 -1
lines
Diff to previous 1.58 (unified)
Add new v2 directory files.
Revision 1.58 / (download) - annotate - [select for diffs], Tue Sep 9 14:28:06 1997 UTC (20 years, 1 month ago) by kcm
Branch: MAIN
Changes since 1.57: +2 -1
lines
Diff to previous 1.57 (unified)
Changes to reflect DMAPI upgrade to conform to the X/Open XDSM document.
Revision 1.57 / (download) - annotate - [select for diffs], Tue Aug 26 18:13:10 1997 UTC (20 years, 1 month ago) by dnoveck
Branch: MAIN
Changes since 1.56: +3 -3
lines
Diff to previous 1.56 (unified)
Add cxfs_clnt.h
Revision 1.56 / (download) - annotate - [select for diffs], Mon Aug 11 19:57:44 1997 UTC (20 years, 2 months ago) by dnoveck
Branch: MAIN
Changes since 1.55: +2 -2
lines
Diff to previous 1.55 (unified)
Fix for CELL_ARRAY configurations.
Revision 1.55 / (download) - annotate - [select for diffs], Mon Aug 11 15:34:54 1997 UTC (20 years, 2 months ago) by kcm
Branch: MAIN
Changes since 1.54: +11 -5
lines
Diff to previous 1.54 (unified)
Add xfsdmapi.a to be used when DMAPI is installed.
Revision 1.54 / (download) - annotate - [select for diffs], Wed Jul 16 16:18:37 1997 UTC (20 years, 3 months ago) by mostek
Branch: MAIN
Changes since 1.53: +5 -1
lines
Diff to previous 1.53 (unified)
Add the cell subdirectory for cxfs
Revision 1.53 / (download) - annotate - [select for diffs], Mon Jun 30 23:15:41 1997 UTC (20 years, 3 months ago) by doucette
Branch: MAIN
Changes since 1.52: +1 -0
lines
Diff to previous 1.52 (unified)
Add new xfs internal header file xfs_trans_space.h.
Revision 1.52 / (download) - annotate - [select for diffs], Tue Jun 17 19:10:46 1997 UTC (20 years, 4 months ago) by doucette
Branch: MAIN
Changes since 1.51: +0 -2
lines
Diff to previous 1.51 (unified)
Remove xfs_handle.c (to os) and xfs_handle.h (to sys).
Revision 1.51 / (download) - annotate - [select for diffs], Sat Jun 14 01:46:09 1997 UTC (20 years, 4 months ago) by doucette
Branch: MAIN
Changes since 1.50: +2 -1
lines
Diff to previous 1.50 (unified)
Add xfs_misc.c (DFS interfaces).
Revision 1.50 / (download) - annotate - [select for diffs], Thu Apr 10 22:41:30 1997 UTC (20 years, 6 months ago) by tjm
Branch: MAIN
Changes since 1.49: +6 -1
lines
Diff to previous 1.49 (unified)
Added back in an entry to build xfs_icrash.o using the -g3 compiler option. This entry was accidently removed during the ficus to kudzu merge.
Revision 1.49 / (download) - annotate - [select for diffs], Mon Mar 17 04:43:45 1997 UTC (20 years, 7 months ago) by singal
Branch: MAIN
Changes since 1.48: +1 -2
lines
Diff to previous 1.48 (unified)
Remove xfs_prio.c from build. PRIO has now been merged with GRIO.
Revision 1.48 / (download) - annotate - [select for diffs], Sun Jan 5 22:37:35 1997 UTC (20 years, 9 months ago) by montep
Branch: MAIN
Changes since 1.47: +2 -7
lines
Diff to previous 1.47 (unified)
merge ficus into kudzu (1.45 ... 1.45.1.1) > ---------------------------- > revision 1.45.1.1 > date: 1996/11/20 17:50:04; author: casey; state: Exp; lines: +21 -9 > Add components (acl_xfs, mac_xfs, xfs_attr_fetch) to support > access control lists and mandatory access control in XFS. > =============================================================================
Revision 1.47 / (download) - annotate - [select for diffs], Fri Dec 13 00:29:47 1996 UTC (20 years, 10 months ago) by sup
Branch: MAIN
Changes since 1.46: +13 -8
lines
Diff to previous 1.46 (unified)
Added xfs_utils.c, xfs_utils.h, xfs_dquot_item.h, and also arrange things in alphabetical order to keep Doug Doucette happy. :-)
Revision 1.46 / (download) - annotate - [select for diffs], Fri Dec 6 17:40:49 1996 UTC (20 years, 10 months ago) by casey
Branch: MAIN
Changes since 1.45: +20 -3
lines
Diff to previous 1.45 (unified)
Trix footprint merge from ficus
Revision 1.45 / (download) - annotate - [select for diffs], Mon Sep 23 05:26:30 1996 UTC (21 years ago) by singal
Branch: MAIN
Changes since 1.44: +3 -2
lines
Diff to previous 1.44 (unified)
Added xfs_prio.c to build.
Revision 1.44 / (download) - annotate - [select for diffs], Fri Aug 2 22:15:11 1996 UTC (21 years, 2 months ago) by tjm
Branch: MAIN
Changes since 1.43: +8 -2
lines
Diff to previous 1.43 (unified)
Added entry for xfs_icrash.c file.
Revision 1.43 / (download) - annotate - [select for diffs], Thu Jul 11 06:55:55 1996 UTC (21 years, 3 months ago) by sup
Branch: MAIN
Changes since 1.42: +2 -1
lines
Diff to previous 1.42 (unified)
turn off project quotas
Revision 1.42 / (download) - annotate - [select for diffs], Wed Jun 12 01:18:14 1996 UTC (21 years, 4 months ago) by sup
Branch: MAIN
Changes since 1.41: +3 -2
lines
Diff to previous 1.41 (unified)
xfs_dqblk.h
Revision 1.41 / (download) - annotate - [select for diffs], Tue May 21 21:15:23 1996 UTC (21 years, 5 months ago) by ajs
Branch: MAIN
Changes since 1.40: +1 -2
lines
Diff to previous 1.40 (unified)
Delete bogus debug stuff from default build.
Revision 1.40 / (download) - annotate - [select for diffs], Wed May 15 21:50:47 1996 UTC (21 years, 5 months ago) by sup
Branch: MAIN
Changes since 1.39: +22 -7
lines
Diff to previous 1.39 (unified)
Quotas
Revision 1.39 / (download) - annotate - [select for diffs], Tue Oct 24 07:44:08 1995 UTC (21 years, 11 months ago) by ack
Branch: MAIN
Changes since 1.38: +3 -4
lines
Diff to previous 1.38 (unified)
auto-merge of changes from /hosts/clyde/proj/banyan/isms/irix/kern/fs/xfs/RCS/Makefile,v > ---------------------------- > revision 1.39 > date: 1995/10/20 02:17:09; author: doucette; state: Exp; lines: +3 -4 > Remove xfsidbg.h. Remove the -g flag from xfsidbg.c build. > =============================================================================
Revision 1.38 / (download) - annotate - [select for diffs], Tue Oct 3 04:19:27 1995 UTC (22 years ago) by ack
Branch: MAIN
Changes since 1.37: +2 -2
lines
Diff to previous 1.37 (unified)
auto-merge of changes from /hosts/clyde/proj/banyan/isms/irix/kern/fs/xfs/RCS/Makefile,v > ---------------------------- > revision 1.38 > date: 1995/09/28 01:26:08; author: doucette; state: Exp; lines: +2 -2 > Turn on -g, turn off -common for xfs-related idbg.c files. > This matches the compile for idbg.c (no -common) and makes icrash happy (-g). > =============================================================================
Revision 1.37 / (download) - annotate - [select for diffs], Wed Aug 16 05:45:36 1995 UTC (22 years, 2 months ago) by doucette
Branch: MAIN
Changes since 1.36: +4 -1
lines
Diff to previous 1.36 (unified)
Add new files xfs_rtbit.c and xfs_macros.c, and header file xfs_macros.h.
Revision 1.36 / (download) - annotate - [select for diffs], Tue Aug 8 01:50:08 1995 UTC (22 years, 2 months ago) by doucette
Branch: MAIN
Changes since 1.35: +10 -5
lines
Diff to previous 1.35 (unified)
Move xfs_grio.c and xfs_rtalloc.c to xfsrt.a target, so it can be a separate inst subsystem.
Revision 1.35 / (download) - annotate - [select for diffs], Mon May 8 19:53:49 1995 UTC (22 years, 5 months ago) by curtis
Branch: MAIN
Changes since 1.34: +11 -3
lines
Diff to previous 1.34 (unified)
Restructured code support for directories and added fiels for attributes.
Revision 1.34 / (download) - annotate - [select for diffs], Thu Mar 9 21:54:45 1995 UTC (22 years, 7 months ago) by wtk
Branch: MAIN
Changes since 1.33: +2 -1
lines
Diff to previous 1.33 (unified)
Add dmiidbg.o, xlvidbg.o xfsidbg.o to Makefiles
Revision 1.33 / (download) - annotate - [select for diffs], Fri Mar 3 01:47:17 1995 UTC (22 years, 7 months ago) by doucette
Branch: MAIN
Changes since 1.32: +13 -4
lines
Diff to previous 1.32 (unified)
Add xfsidbg.h, xfsidbg.c - separation of xfs/xlv/dmi stuff from idbg.
Revision 1.32 / (download) - annotate - [select for diffs], Tue Jan 17 20:33:39 1995 UTC (22 years, 9 months ago) by tap
Branch: MAIN
Changes since 1.31: +10 -1
lines
Diff to previous 1.31 (unified)
disable warning 1552. When the kernel is compiled non-debug, those variables used only in assert statements are flagged with the warnings of set but not used.
Revision 1.31 / (download) - annotate - [select for diffs], Tue Sep 27 02:25:20 1994 UTC (23 years ago) by doucette
Branch: MAIN
Changes since 1.30: +3 -1
lines
Diff to previous 1.30 (unified)
Add xfs_fsops.c and .h files for growfs, etc.
Revision 1.30 / (download) - annotate - [select for diffs], Mon Sep 19 21:22:01 1994 UTC (23 years, 1 month ago) by ajs
Branch: MAIN
Changes since 1.29: +1 -2
lines
Diff to previous 1.29 (unified)
Obsolete xfs_stats.h.
Revision 1.29 / (download) - annotate - [select for diffs], Thu Sep 8 20:29:54 1994 UTC (23 years, 1 month ago) by doucette
Branch: MAIN
Changes since 1.28: +1 -0
lines
Diff to previous 1.28 (unified)
Add xfs_stats.h header file.
Revision 1.28 / (download) - annotate - [select for diffs], Wed Sep 7 21:58:02 1994 UTC (23 years, 1 month ago) by doucette
Branch: MAIN
Changes since 1.27: +2 -2
lines
Diff to previous 1.27 (unified)
Re-order the .h files so they're alphabetic again.
Revision 1.27 / (download) - annotate - [select for diffs], Sat Sep 3 03:29:00 1994 UTC (23 years, 1 month ago) by orosz
Branch: MAIN
Changes since 1.26: +3 -1
lines
Diff to previous 1.26 (unified)
Added new files xfs_handle.c and xfs_handle.h.
Revision 1.26 / (download) - annotate - [select for diffs], Tue Jul 19 21:58:44 1994 UTC (23 years, 3 months ago) by doucette
Branch: MAIN
Changes since 1.25: +3 -1
lines
Diff to previous 1.25 (unified)
Add xfs_itable.c and .h.
Revision 1.25 / (download) - annotate - [select for diffs], Wed Jul 6 20:56:53 1994 UTC (23 years, 3 months ago) by miken
Branch: MAIN
Changes since 1.24: +1 -2
lines
Diff to previous 1.24 (unified)
remove xfs_log_print.c ; move to logprint command as log_misc.c
Revision 1.24 / (download) - annotate - [select for diffs], Tue Jul 5 23:15:12 1994 UTC (23 years, 3 months ago) by doucette
Branch: MAIN
Changes since 1.23: +2 -2
lines
Diff to previous 1.23 (unified)
Replace the -g in KCOPTS with $(XFSCOPTS). This can be set in klocaldefs but won't be set for the miniroot build.
Revision 1.23 / (download) - annotate - [select for diffs], Sat Jun 25 21:42:09 1994 UTC (23 years, 3 months ago) by ajs
Branch: MAIN
Changes since 1.22: +1 -3
lines
Diff to previous 1.22 (unified)
Remove xfs_bio.c from the list of files to build. Remove xfs_bio.h from the list of headers.
Revision 1.22 / (download) - annotate - [select for diffs], Thu Jun 9 01:16:41 1994 UTC (23 years, 4 months ago) by miken
Branch: MAIN
Changes since 1.21: +0 -4
lines
Diff to previous 1.21 (unified)
Remove kernel files which are no longer needed
Revision 1.21 / (download) - annotate - [select for diffs], Thu May 5 17:46:04 1994 UTC (23 years, 5 months ago) by miken
Branch: MAIN
Changes since 1.20: +3 -1
lines
Diff to previous 1.20 (unified)
Add xfs_log_recover.c and xfs_log_recover.h
Revision 1.20 / (download) - annotate - [select for diffs], Wed May 4 23:18:26 1994 UTC (23 years, 5 months ago) by doucette
Branch: MAIN
Changes since 1.19: +3 -2
lines
Diff to previous 1.19 (unified)
Add xfs_bit.c and xfs_bit.h, remove byte_to_bits.c.
Revision 1.19 / (download) - annotate - [select for diffs], Wed May 4 00:20:44 1994 UTC (23 years, 5 months ago) by doucette
Branch: MAIN
Changes since 1.18: +3 -1
lines
Diff to previous 1.18 (unified)
Add xfs_ialloc_btree.[ch] files.
Revision 1.18 / (download) - annotate - [select for diffs], Tue Apr 26 00:38:23 1994 UTC (23 years, 5 months ago) by doucette
Branch: MAIN
Changes since 1.17: +1 -1
lines
Diff to previous 1.17 (unified)
Add xfs_error.c file, remove obsolete comment.
Revision 1.17 / (download) - annotate - [select for diffs], Wed Apr 13 18:12:13 1994 UTC (23 years, 6 months ago) by doucette
Branch: MAIN
Changes since 1.16: +0 -2
lines
Diff to previous 1.16 (unified)
Move xfs_print.c from kernel directory to sim directory.
Revision 1.16 / (download) - annotate - [select for diffs], Thu Mar 24 01:49:43 1994 UTC (23 years, 7 months ago) by doucette
Branch: MAIN
Changes since 1.15: +2 -2
lines
Diff to previous 1.15 (unified)
Turn on -g for the xfs directory.
Revision 1.15 / (download) - annotate - [select for diffs], Tue Mar 22 05:18:31 1994 UTC (23 years, 7 months ago) by miken
Branch: MAIN
Changes since 1.14: +2 -1
lines
Diff to previous 1.14 (unified)
Add xfs_log_print.c
Revision 1.14 / (download) - annotate - [select for diffs], Tue Mar 22 02:59:29 1994 UTC (23 years, 7 months ago) by jleong
Branch: MAIN
Changes since 1.13: +2 -1
lines
Diff to previous 1.13 (unified)
Added xfs_clnt.h.
Revision 1.13 / (download) - annotate - [select for diffs], Fri Mar 4 18:49:31 1994 UTC (23 years, 7 months ago) by tap
Branch: MAIN
Changes since 1.12: +2 -1
lines
Diff to previous 1.12 (unified)
added file xfs_grio.c
Revision 1.12 / (download) - annotate - [select for diffs], Fri Feb 25 02:00:16 1994 UTC (23 years, 7 months ago) by ajs
Branch: MAIN
Changes since 1.11: +4 -1
lines
Diff to previous 1.11 (unified)
Add new iunlink files.
Revision 1.11 / (download) - annotate - [select for diffs], Thu Feb 24 23:41:26 1994 UTC (23 years, 7 months ago) by doucette
Branch: MAIN
Changes since 1.10: +2 -1
lines
Diff to previous 1.10 (unified)
Add xfs_dir.c, xfs_dir_btree.c replacing xfs_dir_fake.c.
Revision 1.10 / (download) - annotate - [select for diffs], Fri Feb 18 02:36:51 1994 UTC (23 years, 8 months ago) by doucette
Branch: MAIN
Changes since 1.9: +10 -3
lines
Diff to previous 1.9 (unified)
Add xfs_vfsops.c. Re-sort the .c file list. Add missing .h files. We'll want to remove some of the .h files later, but not now.
Revision 1.9 / (download) - annotate - [select for diffs], Fri Feb 18 01:05:28 1994 UTC (23 years, 8 months ago) by wei_hu
Branch: MAIN
Changes since 1.8: +6 -2
lines
Diff to previous 1.8 (unified)
include xfs_dir_fake.c
Revision 1.8 / (download) - annotate - [select for diffs], Wed Feb 16 23:21:55 1994 UTC (23 years, 8 months ago) by ajs
Branch: MAIN
Changes since 1.7: +2 -1
lines
Diff to previous 1.7 (unified)
Add xfs_rw.c.
Revision 1.7 / (download) - annotate - [select for diffs], Tue Feb 8 19:48:57 1994 UTC (23 years, 8 months ago) by doucette
Branch: MAIN
Changes since 1.6: +2 -0
lines
Diff to previous 1.6 (unified)
Add xfs_rtalloc.[ch], realtime file implementation.
Revision 1.6 / (download) - annotate - [select for diffs], Tue Feb 1 02:30:29 1994 UTC (23 years, 8 months ago) by doucette
Branch: MAIN
Changes since 1.5: +2 -0
lines
Diff to previous 1.5 (unified)
Add new files xfs_alloc_btree.[ch] split off from xfs_alloc.[ch].
Revision 1.5 / (download) - annotate - [select for diffs], Tue Feb 1 00:17:46 1994 UTC (23 years, 8 months ago) by doucette
Branch: MAIN
Changes since 1.4: +3 -1
lines
Diff to previous 1.4 (unified)
Add xfs_bmap_btree.[ch] to file lists.
Revision 1.4 / (download) - annotate - [select for diffs], Fri Jan 28 01:55:03 1994 UTC (23 years, 8 months ago) by ajs
Branch: MAIN
Changes since 1.3: +1 -2
lines
Diff to previous 1.3 (unified)
Removing reference to the non-existent xfs.h.
Revision 1.3 / (download) - annotate - [select for diffs], Sat Jan 22 00:10:52 1994 UTC (23 years, 9 months ago) by ajs
Branch: MAIN
Changes since 1.2: +3 -1
lines
Diff to previous 1.2 (unified)
Add xfs_extfree.c and xfs_trans_extfree.c
Revision 1.2 / (download) - annotate - [select for diffs], Fri Dec 10 00:21:13 1993 UTC (23 years, 10 months ago) by ajs
Branch: MAIN
Changes since 1.1: +3 -1
lines
Diff to previous 1.1 (unified)
Add new files xfs_trans_buf.c and xfs_trans_inode.c
Revision 1.1 / (download) - annotate - [select for diffs], Thu Dec 9 06:08:11 1993 UTC (23 years, 10 months ago) by doucette
Branch: MAIN
Initial revision