CVS log for linux-2.6-xfs/fs/xfs/Attic/xfs_clnt.h

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

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.61 / (download) - annotate - [select for diffs], Wed Oct 22 03:11:34 2008 UTC (8 years, 11 months ago) by donaldd.longdrop.melbourne.sgi.com
Branch: MAIN
CVS Tags: HEAD
Changes since 1.60: +0 -105 lines
Diff to previous 1.60 (colored)

kill struct xfs_mount_args

No need to parse the mount option into a structure before applying it
to struct xfs_mount.

The content of xfs_start_flags gets merged into xfs_parseargs.  Calls
inbetween don't care and can use mount members instead of the args
struct.

This patch uncovered that the mount option for shared filesystems wasn't
ever exposed on Linux.  The code to handle it is #if 0'ed in this patch
pending a decision on this feature.  I'll send a writeup about it to
the list soon.


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

  kill struct xfs_mount_args 

Revision 1.60 / (download) - annotate - [select for diffs], Tue Sep 16 16:10:31 2008 UTC (9 years, 1 month ago) by tes.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.59: +0 -2 lines
Diff to previous 1.59 (colored)

Undoes mod:     xfs-linux-melb:xfs-kern:32124a
undo test git mod
Merge of xfs-linux-melb:xfs-kern:32125a by kenmcd.

Revision 1.59 / (download) - annotate - [select for diffs], Tue Sep 16 16:09:40 2008 UTC (9 years, 1 month ago) by tes.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.58: +2 -0 lines
Diff to previous 1.58 (colored)

[XFS] one line
multiple line 1
multiple line 2

SGI-Git-Id: 6aec762e9268275d53ebeec79e9f667d31ab7794
SGI-Git-Author: Tim Shimmin  <tes@sgi.com>
SGI-Git-Date: Tue Sep 16 16:57:09 2008 +1000
Merge of xfs-linux-melb:xfs-kern:32124a by kenmcd.

Revision 1.58 / (download) - annotate - [select for diffs], Tue Apr 29 06:14:02 2008 UTC (9 years, 5 months ago) by tes.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.57: +1 -0 lines
Diff to previous 1.57 (colored)

Fix up noattr2 so that it will properly update the versionnum and features2 fields.

Previously, mounting with noattr2 failed to achieve anything because
although it cleared the attr2 mount flag, it would set it again as soon as
it processed the superblock fields.
The fix now has an explicit noattr2 flag and uses it later to fix up the
versionnum and features2 fields.
Merge of xfs-linux-melb:xfs-kern:31003a by kenmcd.

  Define XFSMNT_NOATTR2.

Revision 1.57 / (download) - annotate - [select for diffs], Thu Feb 28 03:29:07 2008 UTC (9 years, 7 months ago) by xaiki.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.56: +1 -1 lines
Diff to previous 1.56 (colored)

If you mount an XFS filesystem with no mount options at all, then
the "ikeep" option is set rather than "noikeep".

This regression was introduced in 970451.

With no mount options specified, xfs_parseargs() does the following:

	int			ikeep = 0;

	args->flags |= XFSMNT_BARRIER;
	args->flags2 |= XFSMNT2_COMPAT_IOSIZE;

	if (!options)
		goto done;

It only sets the above two options by default and before, it also used to
set XFSMNT_IDELETE by default.

If options are specified, then

	if (!(args->flags & XFSMNT_DMAPI) && !ikeep)
		args->flags |= XFSMNT_IDELETE;

is executed later on which is skipped by the "goto done;" above.

The solution is to invert the logic.
Merge of xfs-linux-melb:xfs-kern:30590a by kenmcd.

  Change the *_IDELETE flags to *_IKEEP, and flip the logic as necessary.

Revision 1.56 / (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.55: +0 -1 lines
Diff to previous 1.55 (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.55 / (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.54: +2 -0 lines
Diff to previous 1.54 (colored)

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.54 / (download) - annotate - [select for diffs], Fri Mar 31 03:49:51 2006 UTC (11 years, 6 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.53: +1 -0 lines
Diff to previous 1.53 (colored)

Implement the silent parameter to fill_super, previously ignored.
Merge of xfs-linux-melb:xfs-kern:25632a by kenmcd.

Revision 1.53 / (download) - annotate - [select for diffs], Thu Feb 2 05:00:23 2006 UTC (11 years, 8 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.52: +0 -2 lines
Diff to previous 1.52 (colored)

XFS propagates MS_NOATIME through two levels internally but doesn't actually
use it.  Kill this dead code.

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

Revision 1.52 / (download) - annotate - [select for diffs], Wed Nov 30 03:28:58 2005 UTC (11 years, 10 months ago) by nathans
Branch: MAIN
Changes since 1.51: +1 -1 lines
Diff to previous 1.51 (colored)

Reverse the sense of COMPAT_ATTR and ATTR2, keeps it simple and consistent.

Revision 1.51 / (download) - annotate - [select for diffs], Fri Oct 7 03:45:15 2005 UTC (12 years ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.50: +10 -4 lines
Diff to previous 1.50 (colored)

Rework the final mount options flag bit to make room for more.
Merge of xfs-linux-melb:xfs-kern:24030a by kenmcd.

Revision 1.50 / (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.49: +12 -26 lines
Diff to previous 1.49 (colored)

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

Revision 1.49 / (download) - annotate - [select for diffs], Fri Sep 16 15:11:06 2005 UTC (12 years, 1 month ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.48: +1 -1 lines
Diff to previous 1.48 (colored)

Ondisk format extension for extended attributes (attr2).  Basically, the data/attr forks now grow up/down from either end of the literal area, rather than dividing the literal area into two chunks and growing both upward.  Means we can now make much more efficient use of the attribute space, incl. fitting DMF attributes inline in 256 byte inodes, and large jumps in dbench3 performance numbers.  It is self enabling, but can be forced on/off via the attr2/noattr2 mount options.
Merge of xfs-linux-melb:xfs-kern:23836a by kenmcd.

Revision 1.48 / (download) - annotate - [select for diffs], Fri Sep 16 06:01:22 2005 UTC (12 years, 1 month ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.47: +2 -0 lines
Diff to previous 1.47 (colored)

Introduce two new mount options (nolargeio/largeio) to
allow filesystems to expose the filesystem stripe width
in stat(2) rather than the page cache size. This allows
applications requiring high bandwidth to easily
determine the optimum I/O size for the underlying
filesystem. The default is to report the page cache size
(i.e. "nolargeio").
Merge of xfs-linux-melb:xfs-kern:23830a by kenmcd.

  Introduce prefered I/O size mount option selection.

Revision 1.47 / (download) - annotate - [select for diffs], Tue Sep 6 22:44:36 2005 UTC (12 years, 1 month ago) by hch
Branch: MAIN
Changes since 1.46: +1 -1 lines
Diff to previous 1.46 (colored)

write barrier support

Issue all log sync operations as ordered writes.  In addition flush the
disk cache on fsync if the sync cached operation didn't sync the log to
disk (this requires some additional bookeping in the transaction and log
code).
If the device doesn't claim to support barriers, the filesystem has an
extern log volume or the trial superblock write with barriers enabled
failed we disable barriers and print a warning.  We should probably fail
the mount completely, but that could lead to nasty boot failures for
the root filesystem.

Not enabled by default yet, needs more destructive testing first.

Revision 1.46 / (download) - annotate - [select for diffs], Mon Mar 21 02:45:02 2005 UTC (12 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.45: +2 -0 lines
Diff to previous 1.45 (colored)

Make trivial extension to sync flag to implement dirsync, instead of silently ignoring it.
Merge of xfs-linux-melb:xfs-kern:21888a by kenmcd.

Revision 1.45 / (download) - annotate - [select for diffs], Wed Mar 16 02:57:07 2005 UTC (12 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.44: +2 -1 lines
Diff to previous 1.44 (colored)

Provide a mechanism for reporting ihashsize defaults via /proc/mounts.
Merge of xfs-linux-melb:xfs-kern:21841a by kenmcd.

Revision 1.44 / (download) - annotate - [select for diffs], Wed Dec 15 04:56:58 2004 UTC (12 years, 10 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.43: +1 -0 lines
Diff to previous 1.43 (colored)

Fix a performance and scaling problem in xfs_iget_core.  Improved the inode hash table sizing heuristics, and allow these to be manually tweaked as well.
Merge of xfs-linux-melb:xfs-kern:20766a by kenmcd.

Revision 1.43 / (download) - annotate - [select for diffs], Wed May 12 21:25:17 2004 UTC (13 years, 5 months ago) by jpk
Branch: MAIN
Changes since 1.42: +2 -0 lines
Diff to previous 1.42 (colored)

Add support for allocating additional file space in
stripe width sized chunks. A new fstab/mount option,
"swalloc" has been defined. If specified when mounting
a striped file system, allocation requests will be
rounded up to a stripe width if the file size is >= stripe
width, and the data is being appended to eof. The
'swalloc' option is "off" by default.
 Add support for the stripe width allocation option: swalloc.
 Define XFSMNT_SWALLOC.  (PV 783527)

Revision 1.42 / (download) - annotate - [select for diffs], Fri Feb 20 04:53:48 2004 UTC (13 years, 8 months ago) by nathans
Branch: MAIN
Changes since 1.41: +5 -5 lines
Diff to previous 1.41 (colored)

Fix length of mount argument path strings, off by one.

Revision 1.41 / (download) - annotate - [select for diffs], Mon Oct 6 18:11:55 2003 UTC (14 years ago) by lord
Branch: MAIN
Changes since 1.40: +1 -0 lines
Diff to previous 1.40 (colored)

Implement deletion of inode clusters in XFS.
add mount option to control freeing of inode clusters

Revision 1.40 / (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.39: +103 -0 lines
Diff to previous 1.39 (colored)

The Big Move
linux/fs/xfs/xfs_clnt.h 1.38 Renamed to xfs_clnt.h

Revision 1.39 / (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.38: +0 -103 lines
Diff to previous 1.38 (colored)

Nuke

Revision 1.38 / (download) - annotate - [select for diffs], Tue Apr 15 23:16:46 2003 UTC (14 years, 6 months ago) by cattelan
Branch: MAIN
CVS Tags: XFS-1_3_0pre1
Changes since 1.37: +5 -5 lines
Diff to previous 1.37 (colored)

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

Revision 1.37 / (download) - annotate - [select for diffs], Tue Mar 18 00:39:31 2003 UTC (14 years, 7 months ago) by nathans
Branch: MAIN
Changes since 1.36: +1 -28 lines
Diff to previous 1.36 (colored)

Cleanup/remove a bunch of macros, comments and code.
Remove several unused macros and some unused fields from mount_args.

Revision 1.36 / (download) - annotate - [select for diffs], Tue Oct 8 00:08:03 2002 UTC (15 years ago) by nathans
Branch: MAIN
Changes since 1.35: +1 -2 lines
Diff to previous 1.35 (colored)

Symlinks are created by default with mode 777 now, old behavior is still
accessible through sysctl through.  irixsgid mount option deprecated and
it too is still accessible through sysctl.
Deprecate the irixsgid mount option.

Revision 1.35 / (download) - annotate - [select for diffs], Sun Sep 29 20:41:49 2002 UTC (15 years ago) by lord
Branch: MAIN
Changes since 1.34: +3 -3 lines
Diff to previous 1.34 (colored)

bring the 32 bit inode flag back into line with the Irix version.
Change the bit used for the flag, and pass it in from the mount
arguments rather than setting it at a lower level.
change the bit used for XFSMNT_32BITINODES to be the same as Irix

Revision 1.34 / (download) - annotate - [select for diffs], Thu Sep 5 16:43:35 2002 UTC (15 years, 1 month ago) by sandeen
Branch: MAIN
Changes since 1.33: +0 -2 lines
Diff to previous 1.33 (colored)

Remove mrquota/QUOTAMAYBE mount option

Revision 1.33 / (download) - annotate - [select for diffs], Tue Jul 16 21:19:20 2002 UTC (15 years, 3 months ago) by lord
Branch: MAIN
Changes since 1.32: +1 -1 lines
Diff to previous 1.32 (colored)

rename xfs_args to xfs_mount_args

Revision 1.32 / (download) - annotate - [select for diffs], Thu Jul 11 16:43:58 2002 UTC (15 years, 3 months ago) by lord
Branch: MAIN
Changes since 1.31: +0 -3 lines
Diff to previous 1.31 (colored)

rationalize mount arguments

Revision 1.31 / (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.30: +29 -29 lines
Diff to previous 1.30 (colored)

whitespace cleanup

Revision 1.30 / (download) - annotate - [select for diffs], Tue Jun 18 21:13:32 2002 UTC (15 years, 4 months ago) by roehrich
Branch: MAIN
Changes since 1.29: +1 -0 lines
Diff to previous 1.29 (colored)

Move the dmapi mount event entirely into XFS.  Add a new mount option,
borrowed from the Imprezzo folks, to specify the mountpoint for the dmapi
filesystem.

Now mount dmapi filesystems this way:

	mount -o dmapi -o mtpt=/mnts/dmi1 /dev/sda7 /mnts/dmi1
No Message Supplied

Revision 1.29 / (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.28: +1 -1 lines
Diff to previous 1.28 (colored)

Update copyright dates

Revision 1.28 / (download) - annotate - [select for diffs], Fri May 24 14:30:21 2002 UTC (15 years, 4 months ago) by lord
Branch: MAIN
Changes since 1.27: +1 -0 lines
Diff to previous 1.27 (colored)

NOLOGFLUSH  defines

Revision 1.27 / (download) - annotate - [select for diffs], Fri Apr 19 18:22:52 2002 UTC (15 years, 6 months ago) by sandeen
Branch: MAIN
Changes since 1.26: +1 -0 lines
Diff to previous 1.26 (colored)

add mount option flag for irixsgid

Revision 1.26 / (download) - annotate - [select for diffs], Fri Feb 15 22:48:36 2002 UTC (15 years, 8 months ago) by sandeen
Branch: MAIN
Changes since 1.25: +2 -1 lines
Diff to previous 1.25 (colored)

new XFSMNT_OSYNCISOSYNC flag (replaces XFSMNT_OSYNCISDSYNC)

Revision 1.25 / (download) - annotate - [select for diffs], Mon Dec 3 17:52:09 2001 UTC (15 years, 10 months ago) by lord
Branch: MAIN
Changes since 1.24: +2 -1 lines
Diff to previous 1.24 (colored)

Define XFSMNT_32BITINODES flag

Revision 1.24 / (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.23: +44 -139 lines
Diff to previous 1.23 (colored)

add a big comment about differences between mount on IRIX and Linux.
rework so that all the IRIX ABI structures are no longer there and
add fields to the xfs_args struct needed for the external log/realtime
volume device ref counting fixups.

Revision 1.23 / (download) - annotate - [select for diffs], Fri Jun 29 22:29:47 2001 UTC (16 years, 3 months ago) by lord
Branch: MAIN
Changes since 1.22: +1 -0 lines
Diff to previous 1.22 (colored)

Add nouuid mount option

Revision 1.22 / (download) - annotate - [select for diffs], Tue Apr 3 02:52:38 2001 UTC (16 years, 6 months ago) by nathans
Branch: MAIN
CVS Tags: Release-1_0_0, Linux-2_4_5-merge
Changes since 1.21: +5 -2 lines
Diff to previous 1.21 (colored)

support group quotas in Linux/XFS.

Revision 1.21 / (download) - annotate - [select for diffs], Mon Sep 25 05:42:07 2000 UTC (17 years ago) by nathans
Branch: MAIN
CVS Tags: PreRelease-0_10
Changes since 1.20: +7 -18 lines
Diff to previous 1.20 (colored)

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

Revision 1.20 / (download) - annotate - [select for diffs], Fri Sep 22 18:50:28 2000 UTC (17 years ago) by roehrich
Branch: MAIN
Changes since 1.19: +2 -1 lines
Diff to previous 1.19 (colored)

add mount flags for dmapi
add mount flags for dmapi

Revision 1.19 / (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.18: +25 -11 lines
Diff to previous 1.18 (colored)

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

Revision 1.18 / (download) - annotate - [select for diffs], Fri Jun 9 02:16:41 2000 UTC (17 years, 4 months ago) by nn100003
Branch: MAIN
CVS Tags: DELETE
Changes since 1.17: +3 -3 lines
Diff to previous 1.17 (colored)

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

  Merge of 2.3.42-xfs:slinx:46754a by ananth.
  Addition of logdev and rtdev fields to xfs_args

Revision 1.17 / (download) - annotate - [select for diffs], Sun Jan 30 09:59:06 2000 UTC (17 years, 8 months ago) by kenmcd
Branch: MAIN
Changes since 1.16: +16 -8 lines
Diff to previous 1.16 (colored)

Encumbrance review done.
Add copyright and license words consistent with GPL.
Refer to http://fsg.melbourne.sgi.com/reviews/ for details.

There is a slight change in the license terms and conditions words
to go with the copyrights, so most of the files are not getting
new GPL's, just updated versions ... but there are 20-30 more files
here as well.

Revision 1.16 / (download) - annotate - [select for diffs], Thu Aug 26 19:43:29 1999 UTC (18 years, 1 month ago) by mostek
Branch: MAIN
Changes since 1.15: +5 -1 lines
Diff to previous 1.15 (colored)

Don't have fs/xfs dir in -I path.

Revision 1.15 / (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.14: +107 -8 lines
Diff to previous 1.14 (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.14 / (download) - annotate - [select for diffs], Fri Dec 19 03:35:21 1997 UTC (19 years, 10 months ago) by rcc
Branch: MAIN
Changes since 1.13: +48 -14 lines
Diff to previous 1.13 (colored)

add version 3 xfs arg structure (with padding) for new biosize option
pv: 555963,553288  rv:doucette@engr

Revision 1.13 / (download) - annotate - [select for diffs], Fri Sep 19 09:36:57 1997 UTC (20 years, 1 month ago) by rcc
Branch: MAIN
Changes since 1.12: +3 -1 lines
Diff to previous 1.12 (colored)

522678 - add norecovery and shared argument flags

Revision 1.12 / (download) - annotate - [select for diffs], Thu May 15 23:57:46 1997 UTC (20 years, 5 months ago) by doucette
Branch: MAIN
Changes since 1.11: +13 -7 lines
Diff to previous 1.11 (colored)

Add some comments to deal with customer complaint of bad documentation.

Revision 1.11 / (download) - annotate - [select for diffs], Tue Mar 11 18:46:05 1997 UTC (20 years, 7 months ago) by kayuri
Branch: MAIN
Changes since 1.10: +3 -1 lines
Diff to previous 1.10 (colored)

Added XFSMNT options for stripe unit allocations (bug 397746).

Revision 1.10 / (download) - annotate - [select for diffs], Fri Feb 7 21:45:41 1997 UTC (20 years, 8 months ago) by rcc
Branch: MAIN
Changes since 1.9: +2 -1 lines
Diff to previous 1.9 (colored)

274388 - add noatime constant to client interface

Revision 1.9 / (download) - annotate - [select for diffs], Mon Sep 30 23:41:36 1996 UTC (21 years ago) by kayuri
Branch: MAIN
Changes since 1.8: +14 -2 lines
Diff to previous 1.8 (colored)

Added stripe unit and width fields to xfs_args struct. Bug 397746

Revision 1.8 / (download) - annotate - [select for diffs], Wed Jul 24 20:27:32 1996 UTC (21 years, 2 months ago) by sup
Branch: MAIN
Changes since 1.7: +5 -4 lines
Diff to previous 1.7 (colored)

Added XFSMNT_QUOTAMAYBE option, motivated by difficulty of mounting quotas
on a root XFS filesystem when booting up off the miniroot.
This option instructs that quota should be turned on even
when the -o quota flag is missing if the superblock has quotas enabled.

Revision 1.7 / (download) - annotate - [select for diffs], Wed May 15 21:53:50 1996 UTC (21 years, 5 months ago) by sup
Branch: MAIN
Changes since 1.6: +5 -1 lines
Diff to previous 1.6 (colored)

XFSMNT options for quotas

Revision 1.6 / (download) - annotate - [select for diffs], Mon Sep 4 23:49:07 1995 UTC (22 years, 1 month ago) by doucette
Branch: MAIN
Changes since 1.5: +2 -1 lines
Diff to previous 1.5 (colored)

Add ino64 mount option, for easier testing of big inode numbers.

Revision 1.5 / (download) - annotate - [select for diffs], Fri Dec 23 23:41:29 1994 UTC (22 years, 9 months ago) by ajs
Branch: MAIN
Changes since 1.4: +11 -1 lines
Diff to previous 1.4 (colored)

Add irix5_xfs_args definition for use in copying in to
a 64 bit kernel.

Revision 1.4 / (download) - annotate - [select for diffs], Sat Nov 26 23:40:23 1994 UTC (22 years, 10 months ago) by miken
Branch: MAIN
Changes since 1.3: +2 -4 lines
Diff to previous 1.3 (colored)

Add fsname field to xfs_args

Revision 1.3 / (download) - annotate - [select for diffs], Fri Nov 18 00:31:57 1994 UTC (22 years, 11 months ago) by ajs
Branch: MAIN
Changes since 1.2: +2 -1 lines
Diff to previous 1.2 (colored)

Add a flag to the mount args for the 'wsync' option.

Revision 1.2 / (download) - annotate - [select for diffs], Sat Oct 29 01:58:15 1994 UTC (22 years, 11 months ago) by miken
Branch: MAIN
Changes since 1.1: +4 -1 lines
Diff to previous 1.1 (colored)

Change xfs_args structure.  A version field comes first and the mount command
initializes this to 1, so we can reject old mount commands on new kernels.
Two log buffer fields were also added to help control internal logging.

Revision 1.1 / (download) - annotate - [select for diffs], Tue Mar 22 03:02:25 1994 UTC (23 years, 7 months ago) by jleong
Branch: MAIN

Initial revision

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>