svn commit: r321231 - stable/11/share/man/man9

Ngie Cooper ngie at FreeBSD.org
Wed Jul 19 19:02:08 UTC 2017


Author: ngie
Date: Wed Jul 19 19:02:06 2017
New Revision: 321231
URL: https://svnweb.freebsd.org/changeset/base/321231

Log:
  MFC note:	content changes based on r309745 not included.
  
  MFC r315799:
  
  counter(9): fix igor/manlint warnings
  
  - Reword description of `counter_enter` slightly to fix
    wordiness [1].
  - Expand "isn't" as "is not" [1].
  - Add missing section number with .Xr sysctl calls [2].

Modified:
  stable/11/share/man/man9/counter.9
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/share/man/man9/counter.9
==============================================================================
--- stable/11/share/man/man9/counter.9	Wed Jul 19 19:00:32 2017	(r321230)
+++ stable/11/share/man/man9/counter.9	Wed Jul 19 19:02:06 2017	(r321231)
@@ -25,7 +25,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd March 14, 2016
+.Dd March 22, 2017
 .Dt COUNTER 9
 .Os
 .Sh NAME
@@ -105,7 +105,7 @@ to
 .Fa c .
 The KPI does not guarantee any protection from wraparound.
 .It Fn counter_enter
-Enter mode that would allow to safely update several counters via
+Enter mode that would allow the safe update of several counters via
 .Fn counter_u64_add_protected .
 On some machines this expands to
 .Xr critical 9
@@ -130,7 +130,7 @@ Clear the counter
 and set it to zero.
 .It Fn SYSCTL_COUNTER_U64 parent nbr name access ptr descr
 Declare a static
-.Xr sysctl
+.Xr sysctl 9
 oid that would represent a
 .Nm .
 The
@@ -142,7 +142,7 @@ A read of the oid returns value obtained through
 Any write to the oid zeroes it.
 .It Fn SYSCTL_ADD_COUNTER_U64 ctx parent nbr name access ptr descr
 Create a
-.Xr sysctl
+.Xr sysctl 9
 oid that would represent a
 .Nm .
 The
@@ -154,7 +154,7 @@ A read of the oid returns value obtained through
 Any write to the oid zeroes it.
 .It Fn SYSCTL_COUNTER_U64_ARRAY parent nbr name access ptr len descr
 Declare a static
-.Xr sysctl
+.Xr sysctl 9
 oid that would represent an array of
 .Nm .
 The
@@ -171,7 +171,7 @@ values  obtained through
 Any write to the oid zeroes all array elements.
 .It Fn SYSCTL_ADD_COUNTER_U64_ARRAY ctx parent nbr name access ptr len descr
 Create a
-.Xr sysctl
+.Xr sysctl 9
 oid that would represent an array of
 .Nm .
 The


More information about the svn-src-all mailing list