Date: Tue, 10 May 2016 20:12:27 +0000 (UTC) From: Warren Block <wblock@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r299386 - in stable/10/share/man: man4 man9 Message-ID: <201605102012.u4AKCRKf055054@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wblock (doc committer) Date: Tue May 10 20:12:27 2016 New Revision: 299386 URL: https://svnweb.freebsd.org/changeset/base/299386 Log: MFC r298904: Spelling fixes supplied by pfg@, detected with codespell, plus additional misspellings detected by igor. Modified: stable/10/share/man/man4/cxgbe.4 stable/10/share/man/man4/ng_car.4 stable/10/share/man/man4/ng_nat.4 stable/10/share/man/man4/uplcom.4 stable/10/share/man/man9/counter.9 stable/10/share/man/man9/fpu_kern.9 stable/10/share/man/man9/hash.9 stable/10/share/man/man9/lock.9 stable/10/share/man/man9/pci.9 stable/10/share/man/man9/sysctl.9 stable/10/share/man/man9/zone.9 Directory Properties: stable/10/ (props changed) Modified: stable/10/share/man/man4/cxgbe.4 ============================================================================== --- stable/10/share/man/man4/cxgbe.4 Tue May 10 20:09:40 2016 (r299385) +++ stable/10/share/man/man4/cxgbe.4 Tue May 10 20:12:27 2016 (r299386) @@ -227,7 +227,7 @@ long as it is compatible with the driver the one already on the card. The default is 1. .It Va hw.cxgbe.fl_pktshift -The number of bytes of padding inserted before the begining of an Ethernet +The number of bytes of padding inserted before the beginning of an Ethernet frame in the receive buffer. The default value of 2 ensures that the Ethernet payload (usually the IP header) is at a 4 byte aligned address. Modified: stable/10/share/man/man4/ng_car.4 ============================================================================== --- stable/10/share/man/man4/ng_car.4 Tue May 10 20:09:40 2016 (r299385) +++ stable/10/share/man/man4/ng_car.4 Tue May 10 20:12:27 2016 (r299386) @@ -123,9 +123,9 @@ Return current node configuration as .Vt "struct ng_car_bulkconf" .Bd -literal struct ng_car_hookconf { - uint64_t cbs; /* Commited burst size (bytes) */ + uint64_t cbs; /* Committed burst size (bytes) */ uint64_t ebs; /* Exceeded/Peak burst size (bytes) */ - uint64_t cir; /* Commited information rate (bits/s) */ + uint64_t cir; /* Committed information rate (bits/s) */ uint64_t pir; /* Peak information rate (bits/s) */ uint8_t green_action; /* Action for green packets */ uint8_t yellow_action; /* Action for yellow packets */ @@ -162,7 +162,7 @@ Return node statistics as .Bd -literal struct ng_car_hookstats { uint64_t passed_pkts; /* Counter for passed packets */ - uint64_t droped_pkts; /* Counter for droped packets */ + uint64_t droped_pkts; /* Counter for dropped packets */ uint64_t green_pkts; /* Counter for green packets */ uint64_t yellow_pkts; /* Counter for yellow packets */ uint64_t red_pkts; /* Counter for red packets */ Modified: stable/10/share/man/man4/ng_nat.4 ============================================================================== --- stable/10/share/man/man4/ng_nat.4 Tue May 10 20:09:40 2016 (r299385) +++ stable/10/share/man/man4/ng_nat.4 Tue May 10 20:12:27 2016 (r299386) @@ -259,7 +259,7 @@ struct ng_nat_libalias_info { .Ed In case of .Nm -failed to retreive a certain counter +failed to retrieve a certain counter from its .Xr libalias instance, the corresponding field is returned as Modified: stable/10/share/man/man4/uplcom.4 ============================================================================== --- stable/10/share/man/man4/uplcom.4 Tue May 10 20:09:40 2016 (r299385) +++ stable/10/share/man/man4/uplcom.4 Tue May 10 20:12:27 2016 (r299386) @@ -98,7 +98,7 @@ HAL Corporation Crossam2+USB IR commande .It Hama USB RS-232 Serial Adapter .It -Hamlet exagerate XURS232 +Hamlet exaggerate XURS232 .It HP LD220 Point-Of-Sale (POS) Display .It Modified: stable/10/share/man/man9/counter.9 ============================================================================== --- stable/10/share/man/man9/counter.9 Tue May 10 20:09:40 2016 (r299385) +++ stable/10/share/man/man9/counter.9 Tue May 10 20:12:27 2016 (r299386) @@ -78,7 +78,7 @@ update faster than simple arithmetic on Thus .Nm is considered suitable for accounting in the performance-critical -code pathes. +code paths. .Bl -tag -width indent .It Fn counter_u64_alloc how Allocate a new 64-bit unsigned counter. Modified: stable/10/share/man/man9/fpu_kern.9 ============================================================================== --- stable/10/share/man/man9/fpu_kern.9 Tue May 10 20:09:40 2016 (r299385) +++ stable/10/share/man/man9/fpu_kern.9 Tue May 10 20:12:27 2016 (r299386) @@ -139,7 +139,7 @@ function ends the region started by .Fn fpu_kern_enter . The uses of FPU in the kernel after the call to .Fn fpu_kern_leave -are erronous until the next call to +are erroneous until the next call to .Fn fpu_kern_enter is performed. The function takes the Modified: stable/10/share/man/man9/hash.9 ============================================================================== --- stable/10/share/man/man9/hash.9 Tue May 10 20:09:40 2016 (r299385) +++ stable/10/share/man/man9/hash.9 Tue May 10 20:12:27 2016 (r299386) @@ -126,7 +126,7 @@ uses same hashing algorithm as the .Fn jenkins_hash function, but works only on .Ft uint32_t -sized arrays, thus is simplier and faster. +sized arrays, thus is simpler and faster. It accepts an array of .Ft uint32_t values in its first argument and size of this array in the second argument. Modified: stable/10/share/man/man9/lock.9 ============================================================================== --- stable/10/share/man/man9/lock.9 Tue May 10 20:09:40 2016 (r299385) +++ stable/10/share/man/man9/lock.9 Tue May 10 20:12:27 2016 (r299386) @@ -215,7 +215,7 @@ The flag allows exclusive requests to pr even if the current thread owns shared locks. This is safe since shared lock is guaranteed to not recurse, and is used when thread is known to held unrelated shared locks, to not cause -unneccessary starvation. An example is +unnecessary starvation. An example is .Dv vp locking in VFS .Xr lookup 9 , Modified: stable/10/share/man/man9/pci.9 ============================================================================== --- stable/10/share/man/man9/pci.9 Tue May 10 20:09:40 2016 (r299385) +++ stable/10/share/man/man9/pci.9 Tue May 10 20:12:27 2016 (r299386) @@ -685,7 +685,7 @@ function assigns the .Fa *count messages allocated to the first .Fa *count -table indicies. +table indices. If .Fn pci_alloc_msix is not able to allocate any messages, Modified: stable/10/share/man/man9/sysctl.9 ============================================================================== --- stable/10/share/man/man9/sysctl.9 Tue May 10 20:09:40 2016 (r299385) +++ stable/10/share/man/man9/sysctl.9 Tue May 10 20:12:27 2016 (r299386) @@ -238,7 +238,7 @@ SYSCTL_STRING(_kern, KERN_BOOTFILE, boot * the variable pointer and size are provided, as well as a format * string for sysctl(8). */ -static l_fp pps_freq; /* scaled frequence offset (ns/s) */ +static l_fp pps_freq; /* scaled frequency offset (ns/s) */ SYSCTL_OPAQUE(_kern_ntp_pll, OID_AUTO, pps_freq, CTLFLAG_RD, &pps_freq, sizeof(pps_freq), "I", ""); Modified: stable/10/share/man/man9/zone.9 ============================================================================== --- stable/10/share/man/man9/zone.9 Tue May 10 20:09:40 2016 (r299385) +++ stable/10/share/man/man9/zone.9 Tue May 10 20:12:27 2016 (r299386) @@ -184,7 +184,7 @@ This flag requires either or .Dv UMA_ZONE_HASH , since subsystem requires a mechanism to find a book-keeping structure -to an item beeing freed. +to an item being freed. The subsystem may choose to prefer offpage book-keeping for certain zones implicitly. .It Dv UMA_ZONE_ZINIT
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605102012.u4AKCRKf055054>