CVS log for xfs-linux/quota/xfs_qm_syscalls.c

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

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.49 / (download) - annotate - [select for diffs], Mon Oct 13 15:07:23 2008 UTC (9 years ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
CVS Tags: HEAD
Changes since 1.48: +1 -1 lines
Diff to previous 1.48 (unified)

use xfs_sync_inodes rather than xfs_syncsub

Kill the unused arg in xfs_syncsub() and xfs_sync_inodes().  For
callers of xfs_syncsub() that only want to flush inodes, replace
xfs_syncsub() with direct calls to xfs_sync_inodes() as that is all
that is being done with the specific flags being passed in.

Signed-off-by: Dave Chinner <david@fromorbit.com>
Merge of xfs-linux-melb:xfs-kern:32305a by kenmcd.

  use xfs_sync_inodes rather than xfs_syncsub

Revision 1.48 / (download) - annotate - [select for diffs], Mon Oct 13 15:06:28 2008 UTC (9 years ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.47: +8 -8 lines
Diff to previous 1.47 (unified)

Use struct inodes instead of vnodes to kill vn_grab

With the sync code relocated to the linux-2.6 directory we can use
struct inodes directly. If we do the same thing for the quota
release code, we can remove vn_grab altogether.  While here, convert
the VN_BAD() checks to is_bad_inode() so we can remove vnodes
entirely from this code.

Signed-off-by: Dave Chinner <david@fromorbit.com>
Merge of xfs-linux-melb:xfs-kern:32304a by kenmcd.

  Use struct inodes instead of vnodes to kill vn_grab

Revision 1.47 / (download) - annotate - [select for diffs], Fri Oct 10 15:20:40 2008 UTC (9 years ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.46: +59 -68 lines
Diff to previous 1.46 (unified)

Traverse inode trees when releasing dquots

Make releasing all inode dquots traverse the per-ag
inode radix trees rather than the mount inode list.
This removes another user of the mount inode list.

Version 3
o fix comment relating to avoiding trying to release the
  quota inodes and those in reclaim.

Version 2
o add comment explaining use of gang lookups for a single inode
o use IRELE, not VN_RELE
o move check for ag initialisation to caller.

Signed-off-by: Dave Chinner <david@fromorbit.com>
Merge of xfs-linux-melb:xfs-kern:32291a by kenmcd.

  Traverse inode trees when releasing dquots

Revision 1.46 / (download) - annotate - [select for diffs], Mon Jul 28 15:43:25 2008 UTC (9 years, 3 months ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.45: +1 -1 lines
Diff to previous 1.45 (unified)

kill bhv_vnode_t

All remaining bhv_vnode_t instance are in code that's more or less Linux
specific.  (Well, for xfs_acl.c that could be argued, but that code is
on the removal list, too).  So just do an s/bhv_vnode_t/struct inode/
over the whole tree.  We can clean up variable naming and some useless
helpers later.


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

  kill bhv_vnode_t

Revision 1.45 / (download) - annotate - [select for diffs], Wed Jul 23 16:33:15 2008 UTC (9 years, 3 months ago) by xaiki.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.44: +1 -1 lines
Diff to previous 1.44 (unified)

Avoid directly referencing the VFS inode V2

In several places we directly convert from the XFS inode
to the linux (VFS) inode by a simple deference of ip->i_vnode.
We should not do this - a helper function should be used to
extract the VFS inode from the XFS inode.

Introduce the function VFS_I() to extract the VFS inode
from the XFS inode. The name was chosen to match XFS_I() which
is used to extract the XFS inode from the VFS inode.

Version 2:
o don't use vn_to_inode() and inode_to_vn() functions as they
  are not needed

Signed-off-by: Dave Chinner <david@fromorbit.com>
Merge of xfs-linux-melb:xfs-kern:31722a by kenmcd.

Revision 1.44 / (download) - annotate - [select for diffs], Fri Jul 4 16:39:25 2008 UTC (9 years, 3 months ago) by tes.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.43: +2 -2 lines
Diff to previous 1.43 (unified)

s/XFS_PURGE_INODE/IRELE/g
s/VN_HOLD(XFS_ITOV())/IHOLD()/

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

  s/XFS_PURGE_INODE/IRELE/g

Revision 1.43 / (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.42: +4 -4 lines
Diff to previous 1.42 (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.42 / (download) - annotate - [select for diffs], Mon Apr 21 06:14:44 2008 UTC (9 years, 6 months ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.41: +0 -6 lines
Diff to previous 1.41 (unified)

kill di_mode checks after xfs_iget

Unless XFS_IGET_CREATE is passed xfs_iget will return ENOENT if it
encounters an inode with di_mode == 0.  Remove the duplicated checks
in the callers.

(the log recovery case is not touched for now)


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

  kill di_mode checks after xfs_iget

Revision 1.41 / (download) - annotate - [select for diffs], Wed Apr 9 16:29:46 2008 UTC (9 years, 6 months ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.40: +2 -2 lines
Diff to previous 1.40 (unified)

Propagate errors from xfs_trans_commit().

xfs_trans_commit() can return errors when there are problems
in the transaction subsystem. They are indicative that the entire
transaction may be incomplete, and hence the error should be
propagated as there is a good possibility that there is something
fatally wrong in the filesystem. Catch and propagate or warn
about commit errors in the places where they are currently ignored.
Merge of xfs-linux-melb:xfs-kern:30795a by kenmcd.

  Propagate errors from xfs_trans_commit()

Revision 1.40 / (download) - annotate - [select for diffs], Wed Apr 9 16:26:32 2008 UTC (9 years, 6 months ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.39: +7 -8 lines
Diff to previous 1.39 (unified)

Propagate quota file truncation errors.

Truncating the quota files can silently fail. Ensure that
truncation errors are propagated to the callers.
Merge of xfs-linux-melb:xfs-kern:30791a by kenmcd.

  Propagate quota file truncation errors.

Revision 1.39 / (download) - annotate - [select for diffs], Wed Apr 9 16:25:45 2008 UTC (9 years, 6 months ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.38: +12 -3 lines
Diff to previous 1.38 (unified)

Catch errors when turning off quotas.

When turning off quota, we need to write various transactions
to the log to ensure that they are cleanly removed in the case
of a crash. We need to check that the transactions hit the disk
correctly. If we fail to write the final quota off transaction,
we are corrupt in memory and so the only option is to shut the
filesystem down at this point.
Merge of xfs-linux-melb:xfs-kern:30790a by kenmcd.

  Catch errors when turning off quotas.

Revision 1.38 / (download) - annotate - [select for diffs], Wed Mar 26 03:24:14 2008 UTC (9 years, 7 months ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.37: +5 -5 lines
Diff to previous 1.37 (unified)

remove most calls to VN_RELE

Most VN_RELE calls either directly contain a XFS_ITOV or have the
corresponding xfs_inode already in scope.  Use the IRELE helper instead
of VN_RELE to clarify the code.  With a little more work we can kill
VN_RELE altogether and define IRELE in terms of iput directly.


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

  remove most calls to VN_RELE

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

remove shouting-indirection macros from xfs_sb.h

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

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

  remove shouting-indirection macros from xfs_sb.h

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

Unwrap XFS_SB_LOCK.

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

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

  Unwrap XFS_SB_LOCK

Revision 1.35 / (download) - annotate - [select for diffs], Fri Aug 24 16:16:26 2007 UTC (10 years, 2 months ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.34: +7 -9 lines
Diff to previous 1.34 (unified)

kill the vfs_flags member in struct bhv_vfs

All flags are added to xfs_mount's m_flag instead.  Note that the 32bit
inode flag was duplicated in both of them, but only cleared in the
mount when it was not nessecary due to the filesystem beeing small enough.
Two flags are still required here - one to indicate the mount option
setting, and one to indicate if it applies or not.

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

  move vfs_flags to xfs_mount.

Revision 1.34 / (download) - annotate - [select for diffs], Fri Aug 24 16:12:53 2007 UTC (10 years, 2 months ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.33: +2 -5 lines
Diff to previous 1.33 (unified)

remove dependency of the quota module on behaviors

Mount options are now parsed by the main XFS module and rejected if quota
support is not available, and there are some new quota operation for the
quotactl syscall and calls to quote in the mount, unmount and sync
callchains.


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

  remove dependency of the quota module on behaviors

Revision 1.33 / (download) - annotate - [select for diffs], Tue Mar 20 02:55:19 2007 UTC (10 years, 7 months ago) by donaldd.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.32: +7 -2 lines
Diff to previous 1.32 (unified)

Fix uquota and oquota enforcement problems.

When uquota and oquota (gquota/pquota) are enabled for accounting both
are enforced if ether has enforcement active.

Conditions:
 - Both XFS_UQUOTA_ACCT and XFS_GQUOTA_ACCT are enabled.
 - Either XFS_UQUOTA_ENFD or XFS_OQUOTA_ENFD is enabled.
 - The usage without enforce is reached at the soft limit.

Problems:
 1. "repquota" shows all grace time even if no enforcement.
 2. we cannot make a file over a hard limits even if no enforcement.

Signed-off-by: Kouta Ooizumi <k-ooizumi@tnes.nec.co.jp>
Merge of xfs-linux-melb:xfs-kern:28272a by kenmcd.

  Fix uquota and oquota enforcement problems.

Revision 1.32 / (download) - annotate - [select for diffs], Fri Mar 9 05:13:15 2007 UTC (10 years, 7 months ago) by donaldd.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.31: +1 -3 lines
Diff to previous 1.31 (unified)

Fix quotaon syscall failures for group enforcement requests.

xfs_qm_scall_quotaon was incorrectly failing requests to enable
group quota enforcement. Fixes logic error in OQUOTA handling.
Merge of xfs-linux-melb:xfs-kern:28227a by kenmcd.

  Fix handling of OQUOTA in xfs_qm_scall_quotaon.

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

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

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

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

Revision 1.30 / (download) - annotate - [select for diffs], Wed Feb 7 02:50:13 2007 UTC (10 years, 8 months ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.29: +0 -2 lines
Diff to previous 1.29 (unified)

Remove unused header files for MAC and CAP checking functionality.

xfs_mac.h and xfs_cap.h provide definitions and macros that aren't
used anywhere in XFS at all. They are left-overs from "to be implement
at some point in the future" functionality that Irix XFS has. If this
functionality ever goes into Linux, it will be provided at a different
layer, most likely through the security hooks in the kernel so we will
never need this functionality in XFS.

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

  Remove unused xfs_cap.h/xfs_mac.h header files.
  Signed-off-by: Eric Sandeen <sandeen@sandeen.net>

Revision 1.29 / (download) - annotate - [select for diffs], Wed Dec 13 02:56:14 2006 UTC (10 years, 10 months ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.28: +1 -1 lines
Diff to previous 1.28 (unified)

remove unused xflags parameter from sync routines
Merge of xfs-linux-melb:xfs-kern:27710a by kenmcd.

  remove unused xflags parameter from sync routines

Revision 1.28 / (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.27: +0 -2 lines
Diff to previous 1.27 (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.27 / (download) - annotate - [select for diffs], Tue May 30 15:56:57 2006 UTC (11 years, 5 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.26: +1 -1 lines
Diff to previous 1.26 (unified)

Resolve a namespace collision on vnode/vnodeops for FreeBSD porters.
Merge of xfs-linux-melb:xfs-kern:26107a by kenmcd.

Revision 1.26 / (download) - annotate - [select for diffs], Tue May 30 15:55:47 2006 UTC (11 years, 5 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.25: +1 -1 lines
Diff to previous 1.25 (unified)

Resolve a namespace collision on vfs/vfsops for FreeBSD porters.
Merge of xfs-linux-melb:xfs-kern:26106a by kenmcd.

Revision 1.25 / (download) - annotate - [select for diffs], Thu Mar 23 02:48:21 2006 UTC (11 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.24: +1 -1 lines
Diff to previous 1.24 (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.24 / (download) - annotate - [select for diffs], Wed Jan 25 00:34:27 2006 UTC (11 years, 9 months ago) by cattelan
Branch: MAIN
Changes since 1.23: +7 -4 lines
Diff to previous 1.23 (unified)

Bring the XFS code in sync with the changed from 2.6.16-rc1

Revision 1.23 / (download) - annotate - [select for diffs], Mon Sep 26 16:35:34 2005 UTC (12 years, 1 month ago) by hch
Branch: MAIN
Changes since 1.22: +51 -57 lines
Diff to previous 1.22 (unified)

endianess annotations and cleanup for the quota code

Revision 1.22 / (download) - annotate - [select for diffs], Mon Sep 26 03:46:03 2005 UTC (12 years, 1 month ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.21: +12 -27 lines
Diff to previous 1.21 (unified)

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

Revision 1.21 / (download) - annotate - [select for diffs], Fri Sep 23 03:48:50 2005 UTC (12 years, 1 month ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.20: +8 -8 lines
Diff to previous 1.20 (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.20 / (download) - annotate - [select for diffs], Fri Sep 16 03:52:03 2005 UTC (12 years, 1 month ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.19: +5 -2 lines
Diff to previous 1.19 (unified)

Provide a mechiansm for flushing delalloc before quota reporting.
Merge of xfs-linux-melb:xfs-kern:23829a by kenmcd.

Revision 1.19 / (download) - annotate - [select for diffs], Fri Sep 16 03:51:17 2005 UTC (12 years, 1 month ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.18: +2 -7 lines
Diff to previous 1.18 (unified)

Fix signedness issues in dquot ID handling, allowing uids/gids above MAXINT
Merge of xfs-linux-melb:xfs-kern:23828a by kenmcd.

Revision 1.18 / (download) - annotate - [select for diffs], Wed Jun 22 13:56:22 2005 UTC (12 years, 4 months ago) by hch
Branch: MAIN
Changes since 1.17: +5 -11 lines
Diff to previous 1.17 (unified)

replace vn_get usage by ihold
replace vn_get usage by ihold

Revision 1.17 / (download) - annotate - [select for diffs], Mon Jun 20 03:44:48 2005 UTC (12 years, 4 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.16: +21 -3 lines
Diff to previous 1.16 (unified)

Merge a few minor fixes to the quota warning code.
Merge of xfs-linux-melb:xfs-kern:22901a by kenmcd.

Revision 1.16 / (download) - annotate - [select for diffs], Fri Jun 3 06:03:33 2005 UTC (12 years, 4 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.15: +92 -59 lines
Diff to previous 1.15 (unified)

Add support for project quota, based on Dan Knappes earlier work.
Merge of xfs-linux-melb:xfs-kern:22805a by kenmcd.

Revision 1.15 / (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.14: +2 -4 lines
Diff to previous 1.14 (unified)

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

Revision 1.14 / (download) - annotate - [select for diffs], Wed Oct 27 12:06:24 2004 UTC (13 years ago) by hch
Branch: MAIN
Changes since 1.13: +7 -5 lines
Diff to previous 1.13 (unified)

handle inode creating race
xfs_iget gained another parameter

Revision 1.13 / (download) - annotate - [select for diffs], Wed Oct 27 11:56:15 2004 UTC (13 years ago) by hch
Branch: MAIN
Changes since 1.12: +0 -0 lines
Diff to previous 1.12 (unified)

Handle inode creating race
xfs_iget gained another parameter

Revision 1.12 / (download) - annotate - [select for diffs], Tue Aug 24 04:25:29 2004 UTC (13 years, 2 months ago) by nathans
Branch: MAIN
Changes since 1.11: +24 -12 lines
Diff to previous 1.11 (unified)

Support for default quota limits via the zero dquot (ala grace times).

Revision 1.11 / (download) - annotate - [select for diffs], Fri Aug 13 05:31:26 2004 UTC (13 years, 2 months ago) by nathans
Branch: MAIN
Changes since 1.10: +1 -1 lines
Diff to previous 1.10 (unified)

Use sparse whitespace approach that Al took to be more consistent.  Couple more sparse fixes.

Revision 1.10 / (download) - annotate - [select for diffs], Thu Jul 8 07:35:45 2004 UTC (13 years, 3 months ago) by nathans
Branch: MAIN
Changes since 1.9: +1 -1 lines
Diff to previous 1.9 (unified)

sparse: rework previous mods to fix warnings in DMAPI code.  From Chris Wedgwood.

Revision 1.9 / (download) - annotate - [select for diffs], Mon Jun 28 10:06:42 2004 UTC (13 years, 4 months ago) by nathans
Branch: MAIN
Changes since 1.8: +1 -1 lines
Diff to previous 1.8 (unified)

sparse: annotate quota source for user pointers.  From Chris Wedgwood.

Revision 1.8 / (download) - annotate - [select for diffs], Mon Jun 28 09:59:09 2004 UTC (13 years, 4 months ago) by nathans
Branch: MAIN
Changes since 1.7: +1 -1 lines
Diff to previous 1.7 (unified)

Remove unneeded escape from printed string.  From Chris Wedgwood.

Revision 1.7 / (download) - annotate - [select for diffs], Mon May 3 07:00:36 2004 UTC (13 years, 5 months ago) by nathans
Branch: MAIN
Changes since 1.6: +2 -3 lines
Diff to previous 1.6 (unified)

Remove unused transaction pointer from bulkstat.

Revision 1.6 / (download) - annotate - [select for diffs], Thu Oct 16 19:31:15 2003 UTC (14 years ago) by roehrich
Branch: MAIN
Changes since 1.5: +4 -1 lines
Diff to previous 1.5 (unified)

Implement dm_get_bulkall
Merge of 2.4.x-xfs-kern:slinx:159760a by roehrich.

  Update use of xfs_bulkstat.

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

The Big Move
linux/fs/xfs/quota/xfs_qm_syscalls.c 1.3 Renamed to quota/xfs_qm_syscalls.c

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

Nuke

Revision 1.3 / (download) - annotate - [select for diffs], Thu May 1 16:22:06 2003 UTC (14 years, 6 months ago) by cattelan
Branch: MAIN
CVS Tags: XFS-1_3_0pre1
Changes since 1.2: +35 -1 lines
Diff to previous 1.2 (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.2 / (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.1: +10 -10 lines
Diff to previous 1.1 (unified)

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

Revision 1.1 / (download) - annotate - [select for diffs], Mon Mar 17 06:02:57 2003 UTC (14 years, 7 months ago) by nathans
Branch: MAIN

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.
linux/fs/xfs/xfs_qm_syscalls.c 1.73 Renamed to linux/fs/xfs/quota/xfs_qm_syscalls.c
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.

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>