Use <quote> elements over '"' where appropriate, and other elements over
'"' where that makes more sense.
This commit is contained in:
parent
389924ee76
commit
c27a266461
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=30147
1 changed files with 9 additions and 9 deletions
|
@ -168,7 +168,7 @@ options KDB_TRACE</programlisting>
|
||||||
mean the latest file version could be lost if a panic occurs
|
mean the latest file version could be lost if a panic occurs
|
||||||
before it is committed to storage. Disabling softupdates
|
before it is committed to storage. Disabling softupdates
|
||||||
yields a great performance hit, and still does not guarantee
|
yields a great performance hit, and still does not guarantee
|
||||||
data consistency. Mounting filesystem with the "sync" option
|
data consistency. Mounting filesystem with the <quote>sync</quote> option
|
||||||
is needed for that. For a compromise, the softupdates cache delays can
|
is needed for that. For a compromise, the softupdates cache delays can
|
||||||
be shortened. There are three sysctl's that are useful for
|
be shortened. There are three sysctl's that are useful for
|
||||||
this (best to be set in
|
this (best to be set in
|
||||||
|
@ -319,7 +319,7 @@ KMOD=geom_journal
|
||||||
error).</para>
|
error).</para>
|
||||||
|
|
||||||
<para>The asynchronous programming model (also
|
<para>The asynchronous programming model (also
|
||||||
called "event-driven") is somewhat harder
|
called <quote>event-driven</quote>) is somewhat harder
|
||||||
than the much more used imperative one used in userland
|
than the much more used imperative one used in userland
|
||||||
(at least it takes a
|
(at least it takes a
|
||||||
while to get used to it). In some cases the helper routines
|
while to get used to it). In some cases the helper routines
|
||||||
|
@ -353,7 +353,7 @@ KMOD=geom_journal
|
||||||
can be combined in a tree-like fashion. Instances of GEOM classes are
|
can be combined in a tree-like fashion. Instances of GEOM classes are
|
||||||
called <emphasis>geoms</emphasis>.</para>
|
called <emphasis>geoms</emphasis>.</para>
|
||||||
|
|
||||||
<para>Each GEOM class has several "class methods" that get called
|
<para>Each GEOM class has several <quote>class methods</quote> that get called
|
||||||
when there is no geom instance available (or they are simply not
|
when there is no geom instance available (or they are simply not
|
||||||
bound to a single instance):</para>
|
bound to a single instance):</para>
|
||||||
|
|
||||||
|
@ -472,16 +472,16 @@ KMOD=geom_journal
|
||||||
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
|
|
||||||
<listitem><para>&man.geom.8; looks in the command-line definition
|
<listitem><para>&man.geom.8; looks in the command-line argument
|
||||||
for the command (usually "label"), and calls a helper
|
for the command (usually <option>label</option>), and calls a helper
|
||||||
function.</para></listitem>
|
function.</para></listitem>
|
||||||
|
|
||||||
<listitem><para>helper function checks parameters and gathers
|
<listitem><para>The helper function checks parameters and gathers
|
||||||
metadata, which it proceeds to write to all concerned
|
metadata, which it proceeds to write to all concerned
|
||||||
providers.</para></listitem>
|
providers.</para></listitem>
|
||||||
|
|
||||||
<listitem><para>this "spoils" existing geoms (if any) and
|
<listitem><para>This <quote>spoils</quote> existing geoms (if any) and
|
||||||
initializes a new round of "tasting" of the providers. The
|
initializes a new round of <quote>tasting</quote> of the providers. The
|
||||||
intended geom class recognizes the metadata and brings the
|
intended geom class recognizes the metadata and brings the
|
||||||
geom up.</para></listitem>
|
geom up.</para></listitem>
|
||||||
|
|
||||||
|
@ -585,7 +585,7 @@ KMOD=geom_journal
|
||||||
entities</para></listitem>
|
entities</para></listitem>
|
||||||
|
|
||||||
<listitem><para><literal>g_event</literal> : Handles all other
|
<listitem><para><literal>g_event</literal> : Handles all other
|
||||||
cases: creation of geom instances, access counting, "spoil"
|
cases: creation of geom instances, access counting, <quote>spoil</quote>
|
||||||
events, etc.</para></listitem>
|
events, etc.</para></listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue