diff options
author | Brian Behlendorf <[email protected]> | 2018-02-14 17:01:15 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2018-05-29 14:51:39 -0700 |
commit | a91258913fb597db7f409f3534512cf2249bceb6 (patch) | |
tree | 7c489b0ed42187c10046f52fe8f2e4883f884db1 /man | |
parent | 1149b62d20b7ed9d8ae25d5da7a06213d79b7602 (diff) |
Prepare SPL repo to merge with ZFS repo
This commit removes everything from the repository except the core
SPL implementation for Linux. Those files which remain have been
moved to non-conflicting locations to facilitate the merge.
The README.md and associated files have been updated accordingly.
Signed-off-by: Brian Behlendorf <[email protected]>
Diffstat (limited to 'man')
-rw-r--r-- | man/Makefile.am | 1 | ||||
-rw-r--r-- | man/man1/Makefile.am | 4 | ||||
-rw-r--r-- | man/man1/splat.1 | 94 | ||||
-rw-r--r-- | man/man5/Makefile.am | 4 |
4 files changed, 0 insertions, 103 deletions
diff --git a/man/Makefile.am b/man/Makefile.am deleted file mode 100644 index 7791945cf..000000000 --- a/man/Makefile.am +++ /dev/null @@ -1 +0,0 @@ -SUBDIRS = man1 man5 diff --git a/man/man1/Makefile.am b/man/man1/Makefile.am deleted file mode 100644 index d6becca6e..000000000 --- a/man/man1/Makefile.am +++ /dev/null @@ -1,4 +0,0 @@ -dist_man_MANS = splat.1 - -install-data-local: - $(INSTALL) -d -m 0755 "$(DESTDIR)$(mandir)/man1" diff --git a/man/man1/splat.1 b/man/man1/splat.1 deleted file mode 100644 index 407680b28..000000000 --- a/man/man1/splat.1 +++ /dev/null @@ -1,94 +0,0 @@ -'\" t -.\" -.\" Copyright 2013 Darik Horn <[email protected]>. All rights reserved. -.\" -.TH splat 1 "2013 MAR 16" "ZFS on Linux" "User Commands" - -.SH NAME -splat \- Solaris Porting LAyer Tests -.SH SYNOPSIS -.LP -.BI "splat [\-chvx] < \-\-all | \-\-list | \-\-test " "subsystem" ":" "test" " [...] >" - -.SH DESCRIPTION -This utility uses the splat.ko kernel module to test the spl.ko kernel -module. Run "modprobe splat" before invoking \fBsplat\fR. - -.SH OPTIONS -.HP -.BI "\-a" "" ", \-\-all" "" -.IP -Run all available tests on all subsystems. -.HP -.BI "\-c" "" ", \-\-nocolor" "" -.IP -Disable output highlighting. By default, "Fail" is printed in red text -and "Pass" is printed in green text. -.HP -.BI "\-h" "" ", \-\-help" "" -.IP -Print the usage message. -.HP -.BI "\-l" "" ", \-\-list" "" -.IP -For each spl.ko subsystem, print all available test names and -hexadecimal identifiers with a short description. -.HP -.BI "\-t" " subsystem" ":" "test" ", \-\-test" " subsystem" ":" "test" -.HP -.BI "\-t" " subsystem" ":all" "" ", \-\-test" " subsystem" ":all" "" -.IP -Run the \fItest\fR diagnostic routine for the spl.ko \fIsubsystem\fR. -Specify this option more than once to run multiple tests. - -The \fItest\fR and \fIsubsystem\fR parameters are the names or -hexadecimal identifiers returned by the \fBsplat --list\fR command. - -If \fIsubsystem\fR is a name and not a hexadecimal identifier, then the -\fBall\fR keyword can be used to run all available \fIsubsystem\fR -tests. - -.HP -.BI "\-v" "" ", \-\-verbose" "" -.HP -.IP -Increase verbosity. -.HP -.BI "\-x" "" ", \-\-exit" "" -.IP -Stop running tests after the first failure. - -.SH "EXAMPLES" -.LP -Test everything in the spl.ko kernel module: -.IP -# splat --all --verbose -.LP -Test the entire kernel memory subsystem: -.IP -# splat --test kmem:all -.LP -Test the kernel compression and queue waiting facilities: -.IP -# splat --test zlib:compress/uncompress --test taskq:wait -.LP -This is the same as the previous command, except that the subsystems -and tests are referenced by hexadecimal identifier instead of by name: -.IP -# splat -t 0x0f00:0x0f01 -t 0x0200:0x0204 - -.SH "NOTES" -All tests always return a green "Pass" result on a healthy system. Any -red "Fail" result should be investigated or reported. - -.SH "BUGS" -Some tests can deadlock the kernel if an X11 desktop is running, -especially if a proprietary blob driver is loaded for the video -hardware. - -.SH "AUTHORS" -This man page was written by Darik Horn <[email protected]>. - -.SH "SEE ALSO" -.BR zpios (1), -.BR ztest (1) diff --git a/man/man5/Makefile.am b/man/man5/Makefile.am deleted file mode 100644 index fb22beb11..000000000 --- a/man/man5/Makefile.am +++ /dev/null @@ -1,4 +0,0 @@ -dist_man_MANS = spl-module-parameters.5 - -install-data-local: - $(INSTALL) -d -m 0755 "$(DESTDIR)$(mandir)/man5" |