Up to [Development] / xfs-linux
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.72 / (download) - annotate - [select for diffs], Fri Oct 17 02:58:35 2008 UTC (8 years, 11 months ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
CVS Tags: HEAD
Changes since 1.71: +10 -25
lines
Diff to previous 1.71 (colored)
Finish removing the mount pointer from the AIL API Change all the remaining AIL API functions that are passed struct xfs_mount pointers to pass pointers directly to the struct xfs_ail being used. With this conversion, all external access to the AIL is via the struct xfs_ail. Hence the operation and referencing of the AIL is almost entirely independent of the xfs_mount that is using it - it is now much more tightly tied to the log and the items it is tracking in the log than it is tied to the xfs_mount. Signed-off-by: Dave Chinner <david@fromorbit.com> Merge of xfs-linux-melb:xfs-kern:32353a by kenmcd. Finish removing the mount pointer from the AIL API
Revision 1.71 / (download) - annotate - [select for diffs], Fri Oct 17 02:57:36 2008 UTC (8 years, 11 months ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.70: +18 -10
lines
Diff to previous 1.70 (colored)
Add ail pointer into log items Add an xfs_ail pointer to log items so that the log items can reference the AIL directly during callbacks without needed a struct xfs_mount. Signed-off-by: Dave Chinner <david@fromorbit.com> Merge of xfs-linux-melb:xfs-kern:32352a by kenmcd. Add ail pointer into log items
Revision 1.70 / (download) - annotate - [select for diffs], Thu Oct 16 05:23:50 2008 UTC (8 years, 11 months ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.69: +6 -6
lines
Diff to previous 1.69 (colored)
Move the AIL lock into the struct xfs_ail Bring the ail lock inside the struct xfs_ail. This means the AIL can be entirely manipulated via the struct xfs_ail rather than needing both the struct xfs_mount and the struct xfs_ail. Signed-off-by: Dave Chinner <david@fromorbit.com> Merge of xfs-linux-melb:xfs-kern:32350a by kenmcd. Move the AIL lock into the struct xfs_ail
Revision 1.69 / (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.68: +2 -4
lines
Diff to previous 1.68 (colored)
Remove unused arg from kmem_free() kmem_free() function takes (ptr, size) arguments but doesn't actually use second one. This patch removes size argument from all callsites. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> Merge of xfs-linux-melb:xfs-kern:31050a by kenmcd. Remove unused arg from kmem_free()
Revision 1.68 / (download) - annotate - [select for diffs], Fri Sep 21 04:09:25 2007 UTC (10 years ago) by donaldd.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.67: +9 -12
lines
Diff to previous 1.67 (colored)
Unwrap AIL_LOCK Merge of xfs-linux-melb:xfs-kern:29739a by kenmcd.
Revision 1.67 / (download) - annotate - [select for diffs], Thu Aug 23 16:00:34 2007 UTC (10 years, 1 month ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.66: +1 -0
lines
Diff to previous 1.66 (colored)
Radix tree based inode caching One of the perpetual scaling problems XFS has is indexing it's incore inodes. We currently uses hashes and the default hash sizes chosen can only ever be a tradeoff between memory consumption and the maximum realistic size of the cache. As a result, anyone who has millions of inodes cached on a filesystem needs to tunes the size of the cache via the ihashsize mount option to allow decent scalability with inode cache operations. A further problem is the separate inode cluster hash, whose size is based on the ihashsize but is smaller, and so under certain conditions (sparse cluster cache population) this can become a limitation long before the inode hash is causing issues. The following patchset removes the inode hash and cluster hash and replaces them with radix trees to avoid the scalability limitations of the hashes. It also reduces the size of the inodes by 3 pointers.... Merge of xfs-linux-melb:xfs-kern:29481a by kenmcd. Convert xfs inode caches from hashes to radix trees.
Revision 1.66 / (download) - annotate - [select for diffs], Thu Nov 30 14:40:05 2006 UTC (10 years, 10 months ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.65: +2 -2
lines
Diff to previous 1.65 (colored)
Keep stack usage down for 4k stacks by using noinline. gcc-4.1 and more recent aggressively inline static functions which increases XFS stack usage by ~15% in critical paths. Prevent this from occurring by adding noinline to the STATIC definition. Also uninline some functions that are too large to be inlined and were causing problems with CONFIG_FORCED_INLINING=y. Finally, clean up all the different users of inline, __inline and __inline__ and put them under one STATIC_INLINE macro. For debug kernels the STATIC_INLINE macro uninlines those functions. Merge of xfs-linux-melb:xfs-kern:27585a by kenmcd. noinline static function declaration cleanup.
Revision 1.65 / (download) - annotate - [select for diffs], Thu Aug 10 15:30:19 2006 UTC (11 years, 2 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.64: +2 -67
lines
Diff to previous 1.64 (colored)
Remove unused iop_abort log item operation Signed-off-by: Eric Sandeen <sandeen@sandeen.net> Merge of xfs-linux-melb:xfs-kern:26747a by kenmcd. Remove unused iop_abort log item operation
Revision 1.64 / (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.63: +0 -1
lines
Diff to previous 1.63 (colored)
Remove version 1 directory code. Never functioned on Linux, just pure bloat. Merge of xfs-linux-melb:xfs-kern:26251a by kenmcd.
Revision 1.63 / (download) - annotate - [select for diffs], Wed May 24 06:05:09 2006 UTC (11 years, 4 months ago) by tes.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.62: +56 -0
lines
Diff to previous 1.62 (colored)
inode items and EFI/EFDs have different ondisk format for 32bit and 64bit kernels allow recovery to handle both versions and do the necessary decoding Merge of xfs-linux-melb:xfs-kern:26011a by kenmcd. Code to convert the 32 bit and 64 bit versions of EFIs to the native version. We don't convert the EFDs extents because their extents are never used.
Revision 1.62 / (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.61: +12 -26
lines
Diff to previous 1.61 (colored)
Update license/copyright notices to match the prefered SGI boilerplate. Merge of xfs-linux-melb:xfs-kern:23903a by kenmcd.
Revision 1.61 / (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.60: +2 -9
lines
Diff to previous 1.60 (colored)
Remove xfs_macros.c, xfs_macros.h, rework headers a whole lot. Merge of xfs-linux-melb:xfs-kern:23901a by kenmcd.
Revision 1.60 / (download) - annotate - [select for diffs], Wed Jul 13 03:43:58 2005 UTC (12 years, 3 months ago) by tes.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.59: +2 -0
lines
Diff to previous 1.59 (colored)
add log debugging and tracing info Merge of xfs-linux-melb:xfs-kern:23155a by kenmcd.
Revision 1.59 / (download) - annotate - [select for diffs], Fri Jun 17 14:01:39 2005 UTC (12 years, 3 months ago) by hch
Branch: MAIN
Changes since 1.58: +30 -92
lines
Diff to previous 1.58 (colored)
consolidate extent item freeing consolidate extent item freeing
Revision 1.58 / (download) - annotate - [select for diffs], Wed May 18 09:29:33 2005 UTC (12 years, 4 months ago) by hch
Branch: MAIN
Changes since 1.57: +2 -2
lines
Diff to previous 1.57 (colored)
mark various symbols static Patch from Adrian Bunk
Revision 1.57 / (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.56: +668 -0
lines
Diff to previous 1.56 (colored)
The Big Move linux/fs/xfs/xfs_extfree_item.c 1.55 Renamed to xfs_extfree_item.c
Revision 1.56 / (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.55: +0 -668
lines
Diff to previous 1.55 (colored)
Nuke
Revision 1.55 / (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.54: +14 -1
lines
Diff to previous 1.54 (colored)
Rework the way xfs includes xfs_<blah>.h headers. This reduces a lot of the compile dependenciesÂ, and should reduce some of the "recompile all" situations.
Revision 1.54 / (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.53: +9 -9
lines
Diff to previous 1.53 (colored)
Whitespace cleanup Clean up some whitespace... revert some whitespace changes from previous whitespace cleanup (incorrect tabs)
Revision 1.53 / (download) - annotate - [select for diffs], Fri Jan 24 20:11:43 2003 UTC (14 years, 8 months ago) by lord
Branch: MAIN
Changes since 1.52: +4 -4
lines
Diff to previous 1.52 (colored)
Transaction A is in callback processing unpinning a buffer, Transaction B is in the process of marking the buffer stale. Between transaction A dropping its reference and checking the stale state, transaction B gets a reference and stales the buffer. A ends up freeing the log item and releasing the buffer. End result is we have a reference to free memory and an unlocked buffer. deal with extra arg on unpin operation
Revision 1.52 / (download) - annotate - [select for diffs], Wed Oct 23 04:21:07 2002 UTC (14 years, 11 months ago) by kaos
Branch: MAIN
Changes since 1.51: +26 -26
lines
Diff to previous 1.51 (colored)
Undoes mod: 2.4.x-xfs:slinx:130826a Revert STATIC->static change
Revision 1.51 / (download) - annotate - [select for diffs], Wed Oct 23 03:54:05 2002 UTC (14 years, 11 months ago) by kaos
Branch: MAIN
Changes since 1.50: +26 -26
lines
Diff to previous 1.50 (colored)
Replace STATIC with static in xfs code
Revision 1.50 / (download) - annotate - [select for diffs], Wed Jul 31 21:19:39 2002 UTC (15 years, 2 months ago) by lord
Branch: MAIN
Changes since 1.49: +2 -2
lines
Diff to previous 1.49 (colored)
move from xfs_zone back to kmem_zone
Revision 1.49 / (download) - annotate - [select for diffs], Thu Jul 18 17:35:16 2002 UTC (15 years, 2 months ago) by sandeen
Branch: MAIN
Changes since 1.48: +24 -24
lines
Diff to previous 1.48 (colored)
update Designated initializer format
Revision 1.48 / (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.47: +28 -28
lines
Diff to previous 1.47 (colored)
whitespace cleanup
Revision 1.47 / (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.46: +1 -1
lines
Diff to previous 1.46 (colored)
Update copyright dates
Revision 1.46 / (download) - annotate - [select for diffs], Wed Apr 11 16:27:03 2001 UTC (16 years, 6 months ago) by lord
Branch: MAIN
CVS Tags: Linux-2_4_5-merge
Changes since 1.45: +0 -22
lines
Diff to previous 1.45 (colored)
Kill gratuitous prototypes
Revision 1.45 / (download) - annotate - [select for diffs], Tue Apr 10 01:57:29 2001 UTC (16 years, 6 months ago) by sandeen
Branch: MAIN
Changes since 1.44: +32 -24
lines
Diff to previous 1.44 (colored)
Add member labels to ops vector initializations for clarity.
Revision 1.44 / (download) - annotate - [select for diffs], Mon Sep 25 05:42:07 2000 UTC (17 years ago) by nathans
Branch: MAIN
CVS Tags: Release-1_0_0,
PreRelease-0_10
Changes since 1.43: +1 -32
lines
Diff to previous 1.43 (colored)
use xfs.h, remove all traces of SIM, push extern declarations into headers, dead code removal.
Revision 1.43 / (download) - annotate - [select for diffs], Wed Jul 26 07:00:20 2000 UTC (17 years, 2 months ago) by dxm
Branch: MAIN
Changes since 1.42: +2 -2
lines
Diff to previous 1.42 (colored)
fix cast from pointer to 64 bit
Revision 1.42 / (download) - annotate - [select for diffs], Fri Jul 21 12:49:14 2000 UTC (17 years, 2 months ago) by lord
Branch: MAIN
Changes since 1.41: +2 -2
lines
Diff to previous 1.41 (colored)
Fix a cast
Revision 1.41 / (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.40: +5 -5
lines
Diff to previous 1.40 (colored)
Merge of 2.3.99pre2-xfs:slinx:63026a originally by cattelan on 05/30/00 Masive type update all daddr_t -> xfs_daddr_t caddr_t -> xfs_caddr_t off_t -> xfs_off_t ino_t -> xfs_ino_t off64_t -> xfs_off_t Removed need for file xfs_to_linux.h and lunux_to_xfs.h Merge of 2.3.99pre2-xfs:slinx:63413a originally by jtk on 06/06/00 Squash a handfull of compiler warnings.
Revision 1.40 / (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.39: +25 -12
lines
Diff to previous 1.39 (colored)
Updated copyright and license notices, ready for open source release Merge of 2.3.99pre2-xfs:slinx:55821a by ananth.
Revision 1.39 / (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.38: +1 -3
lines
Diff to previous 1.38 (colored)
Merge of 2.3.99pre2-xfs:slinx:46541a by ananth. Merge of 2.3.42-xfs:slinx:46541a by ananth. Header file cleanup removed the last of the #if defined(__linux__) #include <xfs_linux> #endif All os specific include file switches should now done in xfs_os_defs.h
Revision 1.38 / (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.37: +0 -2
lines
Diff to previous 1.37 (colored)
Merge of 2.3.99pre2-xfs:slinx:46428a by ananth. Merge of 2.3.42-xfs:slinx:46428a by ananth. remove unused include files.
Revision 1.37 / (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.36: +19 -1
lines
Diff to previous 1.36 (colored)
Merge of 2.3.99pre2-xfs:slinx:44186a by ananth. Merge of 2.3.42-xfs:slinx:44186a by ananth. Copied GPL from slinx-xfs tree.
Revision 1.36 / (download) - annotate - [select for diffs], Wed Nov 17 19:22:23 1999 UTC (17 years, 10 months ago) by lord
Branch: MAIN
Changes since 1.35: +2 -2
lines
Diff to previous 1.35 (colored)
replace struct buf and buf_t references with xfs_buf and xfs_buf_t
Revision 1.35 / (download) - annotate - [select for diffs], Wed Aug 18 17:43:46 1999 UTC (18 years, 1 month ago) by cattelan
Branch: MAIN
Changes since 1.34: +4 -1
lines
Diff to previous 1.34 (colored)
First compiling version of mkfs unsing XFS libsim. Mostly just addtions of cut up irix header files.
Revision 1.34 / (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.33: +32 -7
lines
Diff to previous 1.33 (colored)
Merge from irix/cxfs-f to irix/irix6.5f Merge of cxfs-f:irix:15011b created by lord on 05/11/99 Merge from irix/cxfs to irix/cxfs-f Merge of cxfs:irix:13423a created by lord on 04/19/99 CXFS infrastructure checkin
Revision 1.33 / (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.32: +2 -0
lines
Diff to previous 1.32 (colored)
Change includes for v2 directory support.
Revision 1.32 / (download) - annotate - [select for diffs], Fri Dec 4 21:44:23 1998 UTC (18 years, 10 months ago) by doucette
Branch: MAIN
Changes since 1.31: +5 -5
lines
Diff to previous 1.31 (colored)
Add casts to make this compile cleanly -64. pv: 617654
Revision 1.31 / (download) - annotate - [select for diffs], Tue Nov 25 01:32:01 1997 UTC (19 years, 10 months ago) by rcc
Branch: MAIN
Changes since 1.30: +67 -3
lines
Diff to previous 1.30 (colored)
545936 - add IOP_UNPIN_REMOVE ops. no-ops except for EFI's where we have to do real work. pv: 545936, rv: doucette@engr
Revision 1.30 / (download) - annotate - [select for diffs], Wed Apr 30 21:51:48 1997 UTC (20 years, 5 months ago) by sup
Branch: MAIN
Changes since 1.29: +18 -3
lines
Diff to previous 1.29 (colored)
Handle the EFI/EFD interdependencies when we're aborting transactions.
Revision 1.29 / (download) - annotate - [select for diffs], Sun Apr 6 02:53:25 1997 UTC (20 years, 6 months ago) by sup
Branch: MAIN
Changes since 1.28: +2 -2
lines
Diff to previous 1.28 (colored)
Undo last change. That race doesn't exist anymore because of trans_aborts.
Revision 1.28 / (download) - annotate - [select for diffs], Mon Mar 31 23:48:19 1997 UTC (20 years, 6 months ago) by sup
Branch: MAIN
Changes since 1.27: +2 -2
lines
Diff to previous 1.27 (colored)
XFS_EFI_COMMITTED flag is protected by the AIL_LOCK. So, move the ASSERT inside to prevent a possible race when we're shutting down because of I/O errors.
Revision 1.27 / (download) - annotate - [select for diffs], Sun Jan 5 22:37:44 1997 UTC (20 years, 9 months ago) by montep
Branch: MAIN
Changes since 1.26: +3 -2
lines
Diff to previous 1.26 (colored)
merge ficus into kudzu (1.25 ... 1.25.1.1) > ---------------------------- > revision 1.25.1.1 > date: 1996/12/07 00:09:25; author: sup; state: Exp; lines: +3 -2 > IOP_PUSHBUF added to xfs_item_ops_t. > =============================================================================
Revision 1.26 / (download) - annotate - [select for diffs], Thu Dec 12 02:27:01 1996 UTC (20 years, 10 months ago) by sup
Branch: MAIN
Changes since 1.25: +3 -2
lines
Diff to previous 1.25 (colored)
IOP_PUSHBUF added to xfs_item_ops_t.
Revision 1.25.1.1 / (download) - annotate - [select for diffs], Sat Dec 7 00:09:25 1996 UTC (20 years, 10 months ago) by sup
CVS Tags: DELETE-1
Changes since 1.25: +3 -2
lines
Diff to previous 1.25 (colored) next main 1.26 (colored)
IOP_PUSHBUF added to xfs_item_ops_t.
Revision 1.25 / (download) - annotate - [select for diffs], Fri Jul 26 21:19:43 1996 UTC (21 years, 2 months ago) by alexp
Branch: MAIN
Changes since 1.24: +7 -7
lines
Diff to previous 1.24 (colored)
Convert AIL_LOCK from mutex_spinlock to mutex under "ifdef INTR_KTHREADS"
Revision 1.24 / (download) - annotate - [select for diffs], Fri Feb 9 01:14:17 1996 UTC (21 years, 8 months ago) by doucette
Branch: MAIN
Changes since 1.23: +2 -2
lines
Diff to previous 1.23 (colored)
Move the include of sys/debug.h under #define _KERNEL for compile errors.
Revision 1.23 / (download) - annotate - [select for diffs], Tue Oct 24 07:44:22 1995 UTC (21 years, 11 months ago) by ack
Branch: MAIN
Changes since 1.22: +0 -0
lines
Diff to previous 1.22 (colored)
auto-merge of changes from /hosts/clyde/proj/banyan/isms/irix/kern/fs/xfs/RCS/xfs_extfree_item.c,v > ---------------------------- > revision 1.22 > date: 1995/10/13 00:28:23; author: doucette; state: Exp; lines: +2 -1 > Include sys/uuid.h since the uuid_t definition has been moved out > of sys/types.h for DCE. > =============================================================================
Revision 1.22 / (download) - annotate - [select for diffs], Tue Oct 17 08:20:08 1995 UTC (22 years ago) by ack
Branch: MAIN
Changes since 1.21: +1 -0
lines
Diff to previous 1.21 (colored)
auto-merge of changes from /hosts/clyde/proj/banyan/isms/irix/kern/fs/xfs/RCS/xfs_extfree_item.c,v > ---------------------------- > revision 1.22 > date: 1995/10/13 00:28:23; author: doucette; state: Exp; lines: +2 -1 > Include sys/uuid.h since the uuid_t definition has been moved out > of sys/types.h for DCE. > =============================================================================
Revision 1.21 / (download) - annotate - [select for diffs], Thu Sep 14 07:08:57 1995 UTC (22 years, 1 month ago) by ack
Branch: MAIN
Changes since 1.20: +7 -4
lines
Diff to previous 1.20 (colored)
auto-merge of changes from /hosts/clyde/proj/banyan/isms/irix/kern/fs/xfs/RCS/xfs_extfree_item.c,v > ---------------------------- > revision 1.21 > date: 1995/09/09 03:40:23; author: ajs; state: Exp; lines: +6 -3 > 253058 Return pinned rather than locked in xfs_efi_item_pin() > so that the log will get flushed to hopefully flush out > the corresponding efd. > =============================================================================
Revision 1.20 / (download) - annotate - [select for diffs], Wed Jun 7 00:24:49 1995 UTC (22 years, 4 months ago) by ajs
Branch: MAIN
Changes since 1.19: +1 -3
lines
Diff to previous 1.19 (colored)
270466 Make xfs_efi_release() a global function.
Revision 1.19 / (download) - annotate - [select for diffs], Wed Apr 26 22:49:42 1995 UTC (22 years, 5 months ago) by ajs
Branch: MAIN
Changes since 1.18: +123 -8
lines
Diff to previous 1.18 (colored)
Fixing up recovery from disk errors.
Revision 1.18 / (download) - annotate - [select for diffs], Fri Mar 31 20:05:25 1995 UTC (22 years, 6 months ago) by doucette
Branch: MAIN
Changes since 1.17: +1 -0
lines
Diff to previous 1.17 (colored)
Add an #ident line.
Revision 1.17 / (download) - annotate - [select for diffs], Thu Mar 9 03:46:48 1995 UTC (22 years, 7 months ago) by ajs
Branch: MAIN
Changes since 1.16: +43 -15
lines
Diff to previous 1.16 (colored)
Zone allocate efi and efd structs in the common case, also change for the new AIL locking scheme.
Revision 1.16 / (download) - annotate - [select for diffs], Tue Jan 31 18:58:49 1995 UTC (22 years, 8 months ago) by doucette
Branch: MAIN
Changes since 1.15: +14 -0
lines
Diff to previous 1.15 (colored)
Warning elimination: remove unused variables, tag some routines ARGSUSED, add return statements, ifdef out some code.
Revision 1.15 / (download) - annotate - [select for diffs], Tue Jan 31 00:04:12 1995 UTC (22 years, 8 months ago) by tap
Branch: MAIN
Changes since 1.14: +2 -2
lines
Diff to previous 1.14 (colored)
in the XFS simulator, define _KERNEL before including params.h. This causes the off_t type to be defined as a long long rather than a long.
Revision 1.14 / (download) - annotate - [select for diffs], Sat Jun 25 21:42:44 1994 UTC (23 years, 3 months ago) by ajs
Branch: MAIN
Changes since 1.13: +0 -1
lines
Diff to previous 1.13 (colored)
Remove include of obsolete xfs_bio.h.
Revision 1.13 / (download) - annotate - [select for diffs], Mon Jun 13 07:11:15 1994 UTC (23 years, 4 months ago) by miken
Branch: MAIN
Changes since 1.12: +1 -1
lines
Diff to previous 1.12 (colored)
Update extent format structure to make it really work
Revision 1.12 / (download) - annotate - [select for diffs], Thu Jun 9 19:38:43 1994 UTC (23 years, 4 months ago) by wei_hu
Branch: MAIN
Changes since 1.11: +0 -1
lines
Diff to previous 1.11 (colored)
Eliminate include of <sys/uuid.h>.
Revision 1.11 / (download) - annotate - [select for diffs], Wed Jun 8 01:34:20 1994 UTC (23 years, 4 months ago) by ajs
Branch: MAIN
Changes since 1.10: +2 -0
lines
Diff to previous 1.10 (colored)
Use the pointer to the EFI as an identifier for the EFI in the on disk format.
Revision 1.10 / (download) - annotate - [select for diffs], Tue May 10 21:53:12 1994 UTC (23 years, 5 months ago) by ajs
Branch: MAIN
Changes since 1.9: +2 -2
lines
Diff to previous 1.9 (colored)
Change the trylock routine to use the new return codes.
Revision 1.9 / (download) - annotate - [select for diffs], Thu May 5 21:19:58 1994 UTC (23 years, 5 months ago) by miken
Branch: MAIN
Changes since 1.8: +2 -0
lines
Diff to previous 1.8 (colored)
add some asserts for size field
Revision 1.8 / (download) - annotate - [select for diffs], Thu May 5 15:30:22 1994 UTC (23 years, 5 months ago) by ajs
Branch: MAIN
Changes since 1.7: +1 -1
lines
Diff to previous 1.7 (colored)
Set the size field in the efi format structure to 1 for the number of regions rather than the byte count of the region.
Revision 1.7 / (download) - annotate - [select for diffs], Tue Apr 12 23:08:28 1994 UTC (23 years, 6 months ago) by doucette
Branch: MAIN
Changes since 1.6: +4 -0
lines
Diff to previous 1.6 (colored)
Add missing return statements to xfs_efi_init and xfs_efd_init.
Revision 1.6 / (download) - annotate - [select for diffs], Mon Mar 28 22:49:00 1994 UTC (23 years, 6 months ago) by miken
Branch: MAIN
Changes since 1.5: +1 -1
lines
Diff to previous 1.5 (colored)
1. xxx_fields field now has correct values 2. xxx_size field contains # of regions in action/item rather than byte count.
Revision 1.5 / (download) - annotate - [select for diffs], Thu Mar 10 19:06:52 1994 UTC (23 years, 7 months ago) by ajs
Branch: MAIN
Changes since 1.4: +6 -4
lines
Diff to previous 1.4 (colored)
Change the trylock routine to return failure. This will keep xfs_trans_push_ail() from trying to push on the items.
Revision 1.4 / (download) - annotate - [select for diffs], Tue Feb 1 00:18:38 1994 UTC (23 years, 8 months ago) by doucette
Branch: MAIN
Changes since 1.3: +0 -5
lines
Diff to previous 1.3 (colored)
Fix includes after splitting xfs_bmap_btree.h off from xfs_bmap.h.
Revision 1.3 / (download) - annotate - [select for diffs], Sat Jan 22 02:21:13 1994 UTC (23 years, 8 months ago) by doucette
Branch: MAIN
Changes since 1.2: +1 -1
lines
Diff to previous 1.2 (colored)
Fix include of sys/kmem.h.
Revision 1.2 / (download) - annotate - [select for diffs], Sat Jan 22 00:11:13 1994 UTC (23 years, 8 months ago) by ajs
Branch: MAIN
Changes since 1.1: +1 -0
lines
Diff to previous 1.1 (colored)
Add include of kmem.h in the non-sim case so we'll compile in the kernel.
Revision 1.1 / (download) - annotate - [select for diffs], Fri Jan 21 21:53:40 1994 UTC (23 years, 8 months ago) by ajs
Branch: MAIN
Initial revision