2010-11-12 16:03:43 +00:00
|
|
|
B<fileserver>
|
2010-07-16 18:21:57 +01:00
|
|
|
S<<< [B<-auditlog> <I<path to log file>>] >>>
|
|
|
|
S<<< [B<-audit-interface> (file | sysvmq)] >>>
|
|
|
|
S<<< [B<-d> <I<debug level>>] >>>
|
|
|
|
S<<< [B<-p> <I<number of processes>>] >>>
|
|
|
|
S<<< [B<-spare> <I<number of spare blocks>>] >>>
|
|
|
|
S<<< [B<-pctspare> <I<percentage spare>>] >>>
|
|
|
|
S<<< [B<-b> <I<buffers>>] >>>
|
|
|
|
S<<< [B<-l> <I<large vnodes>>] >>>
|
|
|
|
S<<< [B<-s> <I<small vnodes>>] >>>
|
|
|
|
S<<< [B<-vc> <I<volume cachesize>>] >>>
|
|
|
|
S<<< [B<-w> <I<call back wait interval>>] >>>
|
|
|
|
S<<< [B<-cb> <I<number of call backs>>] >>>
|
|
|
|
S<<< [B<-banner>] >>>
|
|
|
|
S<<< [B<-novbc>] >>>
|
|
|
|
S<<< [B<-implicit> <I<admin mode bits: rlidwka>>] >>>
|
|
|
|
S<<< [B<-readonly>] >>>
|
|
|
|
S<<< [B<-hr> <I<number of hours between refreshing the host cps>>] >>>
|
|
|
|
S<<< [B<-busyat> <I<< redirect clients when queue > n >>>] >>>
|
|
|
|
S<<< [B<-nobusy>] >>>
|
|
|
|
S<<< [B<-rxpck> <I<number of rx extra packets>>] >>>
|
|
|
|
S<<< [B<-rxdbg>] >>>
|
|
|
|
S<<< [B<-rxdbge>] >>>
|
|
|
|
S<<< [B<-rxmaxmtu> <I<bytes>>] >>>
|
2011-10-07 10:50:37 +01:00
|
|
|
S<<< [B<-nojumbo>] >>>
|
|
|
|
S<<< [B<-jumbo>] >>>
|
|
|
|
S<<< [B<-rxbind>] >>>
|
2010-07-16 18:21:57 +01:00
|
|
|
S<<< [B<-allow-dotted-principals>] >>>
|
|
|
|
S<<< [B<-L>] >>>
|
|
|
|
S<<< [B<-S>] >>>
|
|
|
|
S<<< [B<-k> <I<stack size>>] >>>
|
|
|
|
S<<< [B<-realm> <I<Kerberos realm name>>] >>>
|
|
|
|
S<<< [B<-udpsize> <I<size of socket buffer in bytes>>] >>>
|
|
|
|
S<<< [B<-sendsize> <I<size of send buffer in bytes>>] >>>
|
|
|
|
S<<< [B<-abortthreshold> <I<abort threshold>>] >>>
|
|
|
|
S<<< [B<-enable_peer_stats>] >>>
|
|
|
|
S<<< [B<-enable_process_stats>] >>>
|
|
|
|
S<<< [B<-syslog> [<I< loglevel >>]] >>>
|
|
|
|
S<<< [B<-mrafslogs>] >>>
|
2015-02-06 16:33:48 +00:00
|
|
|
S<<< [B<-transarc-logs>] >>>
|
2010-07-16 18:21:57 +01:00
|
|
|
S<<< [B<-saneacls>] >>>
|
|
|
|
S<<< [B<-help>] >>>
|
|
|
|
S<<< [B<-vhandle-setaside> <I<fds reserved for non-cache io>>] >>>
|
|
|
|
S<<< [B<-vhandle-max-cachesize> <I<max open files>>] >>>
|
|
|
|
S<<< [B<-vhandle-initial-cachesize> <I<fds reserved for non-cache io>>] >>>
|
|
|
|
S<<< [B<-vattachpar> <I<number of volume attach threads>>] >>>
|
|
|
|
S<<< [B<-m> <I<min percentage spare in partition>>] >>>
|
|
|
|
S<<< [B<-lock>] >>>
|
2010-10-12 23:46:36 +01:00
|
|
|
S<<< [B<-offline-timeout> <I<timeout in seconds>>] >>>
|
|
|
|
S<<< [B<-offline-shutdown-timeout> <I<timeout in seconds>>] >>>
|
Make ihandle sync behavior runtime-configurable
The actual behavior of FDH_SYNC has changed a bit over the years, and
some people want one behavior, and some want another. Make it possible
to make this choice at runtime with the new -sync option, instead of
making this decision by running with different patches.
Note that FDH_SYNC is not a macro anymore, nor is it an inline
function. While it could be a macro, it would look a bit complex, and
there are some oddities with trying to use vol_io_params inside the
FDH_SYNC expansion (vol_io_params is not declared for LWP, for
example). And having it be an inline function causes problems with
some odd linking dependencies. For example, vlib.a contains volume.o,
but does not contain a definition for DFlushVolume (dir/buffer.c),
which is referenced in volume.o. 'vos' uses vlib.a, but does not
bring in anything that defines DFlushVolume. Currently this appears to
not cause a problem because 'vos' uses nothing from volume.o, so the
dependencies of volume.o don't matter. Adding an inline FDH_SYNC for
platforms that don't support 'static inline' would add a dependency to
volume.o (via vol_io_params), which causes an error for the lack of a
DFlushVolume.
Those are possibly just some problems, and may not be all. So instead,
make it so we don't have to deal with that and just have a normal
function. While FDH_SYNC may be called in a performance-critical
section, the overhead of a real function call is nowhere near the
delay of an actual fsync(), so presumably any overhead doesn't matter.
Change-Id: I23620bd8ac31b9019e9d55cb46ec9f3a75f5675c
Reviewed-on: http://gerrit.openafs.org/9694
Reviewed-by: Andrew Deason <adeason@sinenomine.net>
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Derrick Brashear <shadow@your-file-system.com>
2013-03-29 18:40:41 +00:00
|
|
|
S<<< [B<-sync> <I<sync behavior>>] >>>
|
2013-04-25 14:26:46 +01:00
|
|
|
S<<< [B<-logfile <I<log file>>] >>> S<<< [B<-config <I<configuration path>>] >>>
|