mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 06:50:12 +00:00
doc: quote list items in POD
Recent versions of Pod::Simple complain if we use integers or other
special characters in an =item list. We have a couple bulleted lists
that happen to have integers or other special characters as the list
values. Quote the items with C<> so that Pod::Simple can correctly parse
them again.
Reviewed-on: http://gerrit.openafs.org/9838
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Jeffrey Altman <jaltman@your-file-system.com>
Tested-by: Jeffrey Altman <jaltman@your-file-system.com>
(cherry picked from commit 32d823c52f
)
Change-Id: Ie3e5c792d64f1d2e973e3a5f68b8466986cde0d7
Reviewed-on: http://gerrit.openafs.org/9842
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Jason Edgecombe <jason@rampaginggeek.com>
Tested-by: Jason Edgecombe <jason@rampaginggeek.com>
Reviewed-by: Stephan Wiesand <stephan.wiesand@desy.de>
Tested-by: Stephan Wiesand <stephan.wiesand@desy.de>
This commit is contained in:
parent
753d3380f3
commit
c18835330e
@ -186,39 +186,39 @@ The exit status of B<aklog> will be one of the following:
|
||||
|
||||
=over 3
|
||||
|
||||
=item 0
|
||||
=item C<0>
|
||||
|
||||
Success -- No error occurred.
|
||||
|
||||
=item 1
|
||||
=item C<1>
|
||||
|
||||
Usage -- Bad command syntax; accompanied by a usage message.
|
||||
|
||||
=item 2
|
||||
=item C<2>
|
||||
|
||||
Something failed -- More than one cell or pathname was given on the
|
||||
command line and at least one failure occurred. A more specific error
|
||||
status is returned when only one directive is given.
|
||||
|
||||
=item 3
|
||||
=item C<3>
|
||||
|
||||
AFS -- Unable to get AFS configuration or unable to get information about
|
||||
a specific cell.
|
||||
|
||||
=item 4
|
||||
=item C<4>
|
||||
|
||||
Kerberos -- Unable to get tickets for authentication.
|
||||
|
||||
=item 5
|
||||
=item C<5>
|
||||
|
||||
Token -- Unable to get tokens.
|
||||
|
||||
=item 6
|
||||
=item C<6>
|
||||
|
||||
Bad pathname -- The path given was not a directory or lstat(2) failed on
|
||||
some component of the pathname.
|
||||
|
||||
=item 7
|
||||
=item C<7>
|
||||
|
||||
Miscellaneous -- An internal failure occurred. For example, B<aklog>
|
||||
returns this if it runs out of memory.
|
||||
|
@ -54,19 +54,19 @@ There are three acceptable values:
|
||||
|
||||
=over 4
|
||||
|
||||
=item 0
|
||||
=item C<0>
|
||||
|
||||
Provides profiling information about the numbers of times different
|
||||
internal Cache Manager routines were called since the Cache Manager
|
||||
started.
|
||||
|
||||
=item 1
|
||||
=item C<1>
|
||||
|
||||
Reports various internal performance statistics related to the Cache
|
||||
Manager (for example, statistics about how effectively the cache is being
|
||||
used and the quantity of intracell and intercell data access).
|
||||
|
||||
=item 2
|
||||
=item C<2>
|
||||
|
||||
Reports all of the internal performance statistics provided by the C<1>
|
||||
setting, plus some additional, detailed performance figures (for example,
|
||||
|
@ -52,25 +52,25 @@ There are four acceptable values:
|
||||
|
||||
=over 4
|
||||
|
||||
=item 0
|
||||
=item C<0>
|
||||
|
||||
Provides profiling information about the numbers of times different
|
||||
internal File Server routines were called since the File Server
|
||||
started. This value is not currently implemented; it returns no data.
|
||||
|
||||
=item 1
|
||||
=item C<1>
|
||||
|
||||
Reports various internal performance statistics related to the File Server
|
||||
(for example, vnode cache entries and Rx protocol activity).
|
||||
|
||||
=item 2
|
||||
=item C<2>
|
||||
|
||||
Reports all of the internal performance statistics provided by the C<1>
|
||||
setting, plus some additional, detailed performance figures about the File
|
||||
Server (for example, minimum, maximum, and cumulative statistics regarding
|
||||
File Server RPCs, how long they take to complete, and how many succeed).
|
||||
|
||||
=item 3
|
||||
=item C<3>
|
||||
|
||||
Reports File Server callback processing statistics since the File Server
|
||||
started, including the number of call of callbacks added (AddCallBack), the
|
||||
|
@ -90,30 +90,30 @@ expressions:
|
||||
|
||||
=over 4
|
||||
|
||||
=item .
|
||||
=item C<.>
|
||||
|
||||
The period matches any single character.
|
||||
|
||||
=item *
|
||||
=item C<*>
|
||||
|
||||
The asterisk matches zero or more instances of the preceding character.
|
||||
Combine it with any other alphanumeric character or metacharacter.
|
||||
|
||||
=item [ ]
|
||||
=item C<[ ]>
|
||||
|
||||
Square brackets around a list of characters match a single instance of any
|
||||
of the characters, but no other characters; for example, C<[abc]> matches
|
||||
a single C<a> or C<b> or C<c>, but not C<d> or C<A>. This expression can
|
||||
be combined with the asterisk.
|
||||
|
||||
=item ^
|
||||
=item C<^>
|
||||
|
||||
The caret, when used as the first character in a square-bracketed set,
|
||||
designates a match with any single character I<except> the characters that
|
||||
follow it; for example, C<[^a]> matches any single character except
|
||||
lowercase C<a>. This expression can be combined with the asterisk.
|
||||
|
||||
=item \
|
||||
=item C<\>
|
||||
|
||||
A backslash preceding any of the metacharacters in this list makes it
|
||||
match its literal value only. For example, the expression C<\.> (backslash
|
||||
|
Loading…
Reference in New Issue
Block a user