diff options
author | Turbo Fredriksson <[email protected]> | 2013-11-18 13:46:10 +0000 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2013-11-21 12:32:41 -0800 |
commit | 30607d9b7b82dcb50eebe15d5b78cfd6deef07a5 (patch) | |
tree | 2ad2d3d090f7ab0dd4e1d854eaf14e0fa43e4c99 | |
parent | dd33a169ef1e071c2eb777328fe91df30ce542ae (diff) |
Document SPL module parameters.
This is a first draft of a spl-module-parameters(5) man page. I have
just extracted the parameter name and its description with modinfo,
then checked the source what type it is and its default value.
This will need more work, preferably someone that actually know these
values and what to use them for. Similar to zfsonlinux/zfs#1856, but
for the spl.
Signed-off-by: Brian Behlendorf <[email protected]>
Closes zfsonlinux/zfs#1856
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | man/Makefile.am | 2 | ||||
-rw-r--r-- | man/man5/Makefile.am | 5 | ||||
-rw-r--r-- | man/man5/spl-module-parameters.5 | 126 | ||||
-rw-r--r-- | rpm/generic/spl.spec.in | 1 |
5 files changed, 134 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 477229829..e81ddfbc8 100644 --- a/configure.ac +++ b/configure.ac @@ -50,6 +50,7 @@ AC_CONFIG_FILES([ Makefile man/Makefile man/man1/Makefile + man/man5/Makefile lib/Makefile cmd/Makefile module/Makefile diff --git a/man/Makefile.am b/man/Makefile.am index 7dc2a57d1..7791945cf 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -1 +1 @@ -SUBDIRS = man1 +SUBDIRS = man1 man5 diff --git a/man/man5/Makefile.am b/man/man5/Makefile.am new file mode 100644 index 000000000..06a823325 --- /dev/null +++ b/man/man5/Makefile.am @@ -0,0 +1,5 @@ +man_MANS = spl-module-parameters.5 +EXTRA_DIST = $(man_MANS) + +install-data-local: + $(INSTALL) -d -m 0755 "$(DESTDIR)$(mandir)/man5" diff --git a/man/man5/spl-module-parameters.5 b/man/man5/spl-module-parameters.5 new file mode 100644 index 000000000..3c134f775 --- /dev/null +++ b/man/man5/spl-module-parameters.5 @@ -0,0 +1,126 @@ +'\" te +.\" +.\" Copyright 2013 Turbo Fredriksson <[email protected]>. All rights reserved. +.\" +.TH SPL-MODULE-PARAMETERS 5 "Nov 18, 2013" +.SH NAME +spl\-module\-parameters \- SPL module parameters +.SH DESCRIPTION +.sp +.LP +Description of the different parameters to the SPL module. + +.SS "Module parameters" +.sp +.LP + +.sp +.ne 2 +.na +\fBspl_debug_subsys\fR (ulong) +.ad +.RS 12n +Subsystem debugging level mask. +.sp +Default value: \fB~0\fR. +.RE + +.sp +.ne 2 +.na +\fBspl_debug_mask\fR (ulong) +.ad +.RS 12n +Debugging level mask. +.sp +Default value: \fB8 | 10 | 4 | 20\fR (SD_ERROR | SD_EMERG | SD_WARNING | SD_CONSOLE). +.RE + +.sp +.ne 2 +.na +\fBspl_debug_printk\fR (ulong) +.ad +.RS 12n +Console printk level mask. +.sp +Default value: \fB8 | 10 | 4 | 20\fR (SD_ERROR | SD_EMERG | SD_WARNING | SD_CONSOLE). +.RE + +.sp +.ne 2 +.na +\fBspl_debug_mb\fR (int) +.ad +.RS 12n +Total debug buffer size. +.sp +Default value: \fB-1\fR. +.RE + +.sp +.ne 2 +.na +\fBspl_debug_panic_on_bug\fR (int) +.ad +.RS 12n +Panic on BUG +.sp +Use \fB1\fR for yes and \fB0\fR for no (default). +.RE + +.sp +.ne 2 +.na +\fBspl_kmem_cache_expire\fR (uint) +.ad +.RS 12n +By age (0x1) or low memory (0x2) +.sp +Default value: \fB0\fR. +.RE + +.sp +.ne 2 +.na +\fBspl_hostid\fR (ulong) +.ad +.RS 12n +The system hostid. +.sp +Default value: \fB0xFFFFFFFF\fR (an invalid hostid!) +.RE + +.sp +.ne 2 +.na +\fBspl_hostid_path\fR (charp) +.ad +.RS 12n +The system hostid file +.sp +Default value: \fB/etc/hostid\fR. +.RE + +.sp +.ne 2 +.na +\fBmutex_spin_max\fR (int) +.ad +.RS 12n +Spin a maximum of N times to acquire lock +.sp +.ne 2 +.na +\fBPossible values:\fR +.sp +.RS 12n + \fB0\fR Never spin when trying to acquire lock +.sp +\fB-1\fR Spin until acquired or holder yields without dropping lock +.sp +\fB1-MAX_INT\fR Spin for N attempts before sleeping for lock +.RE +.sp +.ne -4 +Default value: \fB0\fR. diff --git a/rpm/generic/spl.spec.in b/rpm/generic/spl.spec.in index 7f4a65ef5..a0fe29817 100644 --- a/rpm/generic/spl.spec.in +++ b/rpm/generic/spl.spec.in @@ -35,6 +35,7 @@ make install DESTDIR=%{?buildroot} %doc AUTHORS COPYING DISCLAIMER %{_sbindir}/* %{_mandir}/man1/* +%{_mandir}/man5/* %changelog * Wed Aug 21 2013 Brian Behlendorf <[email protected]> - 0.6.2-1 |