svn commit: r341649 - head/share/man/man4

2018-12-06 Thread Joel Dahl
Author: joel (doc committer)
Date: Thu Dec  6 20:04:01 2018
New Revision: 341649
URL: https://svnweb.freebsd.org/changeset/base/341649

Log:
  Minor mandoc fixes.

Modified:
  head/share/man/man4/muge.4
  head/share/man/man4/vxlan.4

Modified: head/share/man/man4/muge.4
==
--- head/share/man/man4/muge.4  Thu Dec  6 20:03:06 2018(r341648)
+++ head/share/man/man4/muge.4  Thu Dec  6 20:04:01 2018(r341649)
@@ -35,10 +35,6 @@ To load the driver as a module at boot time, place the
 .Bd -literal -offset indent
 if_muge_load="YES"
 .Ed
-.Pp
-.\" Alternatively, to compile this driver into the kernel, place the
-.\" following lines in your kernel configuration file:
-.Ed
 .Sh DESCRIPTION
 The
 .Nm

Modified: head/share/man/man4/vxlan.4
==
--- head/share/man/man4/vxlan.4 Thu Dec  6 20:03:06 2018(r341648)
+++ head/share/man/man4/vxlan.4 Thu Dec  6 20:04:01 2018(r341649)
@@ -108,7 +108,7 @@ forwarding table entry.
 When the
 .Nm
 interface is brought up, a
-.Xr UDP 4
+.Xr udp 4
 .Xr socket 9
 is created based on the configuration,
 such as the local address for unicast mode or
@@ -214,7 +214,6 @@ Once created, the
 .Nm
 interface can be configured with
 .Xr ifconfig 8 .
-.Ed
 .Pp
 The following when placed in the file
 .Pa /etc/rc.conf
@@ -224,6 +223,7 @@ to be created, and will configure the interface in uni
 .Bd -literal -offset indent
 cloned_interfaces="vxlan0"
 create_args_vxlan0="vxlanid 108 vxlanlocal 192.168.100.1 vxlanremote 
192.168.100.2"
+.Ed
 .Sh SEE ALSO
 .Xr inet 4 ,
 .Xr inet6 4 ,
@@ -238,7 +238,7 @@ create_args_vxlan0="vxlanid 108 vxlanlocal 192.168.100
 .%D August 2014
 .%O "RFC 7348"
 .Re
-.Sh AUTHOR
+.Sh AUTHORS
 .An -nosplit
 The
 .Nm
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r341647 - head/share/man/man4

2018-12-06 Thread Joel Dahl
Author: joel (doc committer)
Date: Thu Dec  6 19:49:08 2018
New Revision: 341647
URL: https://svnweb.freebsd.org/changeset/base/341647

Log:
  Sort .Xr

Modified:
  head/share/man/man4/vmci.4

Modified: head/share/man/man4/vmci.4
==
--- head/share/man/man4/vmci.4  Thu Dec  6 19:27:15 2018(r341646)
+++ head/share/man/man4/vmci.4  Thu Dec  6 19:49:08 2018(r341647)
@@ -54,8 +54,8 @@ In addition to this, the VMCI kernel API provides supp
 events related to the state of the VMCI communication channels, and the
 virtual machine itself.
 .Sh SEE ALSO
-.Xr pci 9 ,
-.Xr socket 2
+.Xr socket 2 ,
+.Xr pci 9
 .Rs
 .%T "VMware vSockets Documentation"
 .%U https://www.vmware.com/support/developer/vmci-sdk/
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


Re: svn commit: r314036 - head/usr.sbin/bsdinstall/scripts

2017-02-26 Thread Joel Dahl
On Wed, Feb 22, 2017 at 06:10:04PM -0500, Allan Jude wrote:



> Core is soon to announce a more formalized way to discuss and reach
> consensus on these types of changes. robak@ can I ask that you back this
> out for now, and we use that process to determine what the right set of
> knobs to turn on by default is, and which should be up to the user.

This hasn't been backed out yet.

-- 
Joel
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


Re: svn commit: r314036 - head/usr.sbin/bsdinstall/scripts

2017-02-22 Thread Joel Dahl
On Wed, Feb 22, 2017 at 07:56:52AM +, Bartłomiej Rutkowski wrote:
> On Tue, Feb 21, 2017 at 2:40 PM, Alexey Dokuchaev  wrote:
> 
> > On Tue, Feb 21, 2017 at 08:34:29AM -0600, Eric Badger wrote:
> > > Thanks for working on making it easier to harden FreeBSD. While
> > > defaulting some of these options to "on" seem pretty harmless (e.g.
> > > random_pid), others are likely to cause confusion for new and
> > > experienced users alike (e.g. proc_debug. I've never used that option
> > > before, so I gave it a try. It simply causes gdb to hang when attempting
> > > to start a process, with no obvious indication of why).
> >
> > I concur.  In fact, harmless knobs should probably be turned on by default
> > in FreeBSD itself (i.e., without any "hardening" help from the installer),
> > while more intrusive ones should be opt-in, not opt-out.
> >
> > ./danfe
> >
> 
> I strongly believe we should, by default, ship as secured and hardened as
> possible in order to improve overall security of new users installations.
> Power users will and do change the OS as they please, they most likely
> don't use bsdinstall in first place, so they're not affected in any way.

Sorry, I strongly disagree with that. I'm most likely a "power user" and I use
bsdinstall.

-- 
Joel
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Re: svn commit: r314036 - head/usr.sbin/bsdinstall/scripts

2017-02-21 Thread Joel Dahl
On Tue, Feb 21, 2017 at 02:40:02PM +, Alexey Dokuchaev wrote:
> On Tue, Feb 21, 2017 at 08:34:29AM -0600, Eric Badger wrote:
> > Thanks for working on making it easier to harden FreeBSD. While
> > defaulting some of these options to "on" seem pretty harmless (e.g.
> > random_pid), others are likely to cause confusion for new and
> > experienced users alike (e.g. proc_debug. I've never used that option
> > before, so I gave it a try. It simply causes gdb to hang when attempting
> > to start a process, with no obvious indication of why).
> 
> I concur.  In fact, harmless knobs should probably be turned on by default
> in FreeBSD itself (i.e., without any "hardening" help from the installer),
> while more intrusive ones should be opt-in, not opt-out.

I agree. Can we back this out and discuss it on current@?

-- 
Joel
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


Re: svn commit: r300395 - head/contrib/top

2016-05-21 Thread Joel Dahl
On Sun, May 22, 2016 at 04:17:01AM +, Garrett Cooper wrote:
> Author: ngie
> Date: Sun May 22 04:17:00 2016
> New Revision: 300395
> URL: https://svnweb.freebsd.org/changeset/base/300395
> 
> Log:
>   Silence top(1) compiler warnings
>   
>   The contrib/top code is no longer maintained upstream (last pulled 16 years
>   ago).

Move it out of contrib/?

--
Joel
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r294290 - in head: lib/libc/sys share/man/man7 usr.bin/iscsictl usr.sbin/jls

2016-01-18 Thread Joel Dahl
Author: joel (doc committer)
Date: Mon Jan 18 20:21:38 2016
New Revision: 294290
URL: https://svnweb.freebsd.org/changeset/base/294290

Log:
  mdoc: sort Xr

Modified:
  head/lib/libc/sys/utrace.2
  head/share/man/man7/tuning.7
  head/usr.bin/iscsictl/iscsictl.8
  head/usr.sbin/jls/jls.8

Modified: head/lib/libc/sys/utrace.2
==
--- head/lib/libc/sys/utrace.2  Mon Jan 18 19:52:20 2016(r294289)
+++ head/lib/libc/sys/utrace.2  Mon Jan 18 20:21:38 2016(r294290)
@@ -70,8 +70,8 @@ support
 .Sh SEE ALSO
 .Xr kdump 1 ,
 .Xr ktrace 1 ,
-.Xr ktrace 2 ,
 .Xr truss 1 ,
+.Xr ktrace 2 ,
 .Xr sysdecode_utrace 3
 .Sh HISTORY
 The

Modified: head/share/man/man7/tuning.7
==
--- head/share/man/man7/tuning.7Mon Jan 18 19:52:20 2016
(r294289)
+++ head/share/man/man7/tuning.7Mon Jan 18 20:21:38 2016
(r294290)
@@ -756,8 +756,8 @@ over services you export from your box (
 .Xr ccdconfig 8 ,
 .Xr config 8 ,
 .Xr fsck 8 ,
-.Xr gpart 8 ,
 .Xr gjournal 8 ,
+.Xr gpart 8 ,
 .Xr gstripe 8 ,
 .Xr gvinum 8 ,
 .Xr ifconfig 8 ,

Modified: head/usr.bin/iscsictl/iscsictl.8
==
--- head/usr.bin/iscsictl/iscsictl.8Mon Jan 18 19:52:20 2016
(r294289)
+++ head/usr.bin/iscsictl/iscsictl.8Mon Jan 18 20:21:38 2016
(r294290)
@@ -187,11 +187,11 @@ Attach to target iqn.2012-06.com.example
 Disconnect all iSCSI sessions:
 .Dl Nm Fl Ra
 .Sh SEE ALSO
+.Xr libxo 3 ,
+.Xr xo_parse_args 3 ,
 .Xr iscsi 4 ,
 .Xr iscsi.conf 5 ,
-.Xr iscsid 8 ,
-.Xr libxo 3 ,
-.Xr xo_parse_args 3
+.Xr iscsid 8
 .Sh HISTORY
 The
 .Nm

Modified: head/usr.sbin/jls/jls.8
==
--- head/usr.sbin/jls/jls.8 Mon Jan 18 19:52:20 2016(r294289)
+++ head/usr.sbin/jls/jls.8 Mon Jan 18 20:21:38 2016(r294290)
@@ -113,10 +113,10 @@ Without this option, all active jails wi
 .El
 .Sh SEE ALSO
 .Xr jail_get 2 ,
-.Xr jail 8 ,
-.Xr jexec 8 ,
 .Xr libxo 3 ,
-.Xr xo_parse_args 3
+.Xr xo_parse_args 3 ,
+.Xr jail 8 ,
+.Xr jexec 8
 .Sh HISTORY
 The
 .Nm
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


Re: svn commit: r293720 - head/sys/dev/hyperv/netvsc

2016-01-12 Thread Joel Dahl
On Tue, Jan 12, 2016 at 07:30:05AM -0700, Ian Lepore wrote:
> On Tue, 2016-01-12 at 08:55 +0100, Joel Dahl wrote:
> > % finger m...@freebsd.org
> > [freebsd.org]
> > Trying 8.8.178.110...
> > Login: me   Name: Michael Elbel
> > Directory: /home/me Shell:
> > /usr/local/bin/bash
> > No Mail.
> > Mail forwarded to:
> > m...@consol.de
> > # me
> > No Plan.
> > 
> > ;-)
> > 
> 
> Really?  You're complaining about the committer using the personal
> pronoun that refers to one's self in a context of referring to himself?

It was a friendly "complaint". Don't overreact.

-- 
Joel
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


Re: svn commit: r293720 - head/sys/dev/hyperv/netvsc

2016-01-11 Thread Joel Dahl
On Tue, Jan 12, 2016 at 01:41:34AM +, Sepherosa Ziehau wrote:
> Author: sephe
> Date: Tue Jan 12 01:41:34 2016
> New Revision: 293720
> URL: https://svnweb.freebsd.org/changeset/base/293720
> 
> Log:
>   hyperv/hn: Implement SIOC[SG]IFMEDIA support
>   
>   Many applications and kernel modules (e.g. bridge) rely on the ifmedia
>   status report; give them what they want.
>   
>   Submitted by:   Dexuan Cui 
>   Reviewed by:Jun Su , me, adrian
>   Modified by:me (minor)
  ^^^ Really?

% finger m...@freebsd.org
[freebsd.org]
Trying 8.8.178.110...
Login: me   Name: Michael Elbel
Directory: /home/me Shell: /usr/local/bin/bash
No Mail.
Mail forwarded to:
m...@consol.de
# me
No Plan.

;-)

-- 
Joel
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r285556 - head/bin/ps

2015-07-14 Thread Joel Dahl
Author: joel (doc committer)
Date: Tue Jul 14 19:45:35 2015
New Revision: 285556
URL: https://svnweb.freebsd.org/changeset/base/285556

Log:
  mdoc: minor Xr fixes

Modified:
  head/bin/ps/ps.1

Modified: head/bin/ps/ps.1
==
--- head/bin/ps/ps.1Tue Jul 14 19:43:10 2015(r28)
+++ head/bin/ps/ps.1Tue Jul 14 19:45:35 2015(r285556)
@@ -738,9 +738,9 @@ Display information on all system proces
 .Xr procstat 1 ,
 .Xr w 1 ,
 .Xr kvm 3 ,
-.Xr libxo 3
+.Xr libxo 3 ,
 .Xr strftime 3 ,
-.Xr xo_parse_args 3
+.Xr xo_parse_args 3 ,
 .Xr mac 4 ,
 .Xr procfs 5 ,
 .Xr pstat 8 ,
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r285555 - head/usr.bin/rctl

2015-07-14 Thread Joel Dahl
Author: joel (doc committer)
Date: Tue Jul 14 19:43:10 2015
New Revision: 28
URL: https://svnweb.freebsd.org/changeset/base/28

Log:
  mdoc: add missing .El

Modified:
  head/usr.bin/rctl/rctl.8

Modified: head/usr.bin/rctl/rctl.8
==
--- head/usr.bin/rctl/rctl.8Tue Jul 14 19:42:40 2015(r285554)
+++ head/usr.bin/rctl/rctl.8Tue Jul 14 19:43:10 2015(r28)
@@ -245,6 +245,7 @@ Enable
 This defaults to 1, unless
 .Cd options RACCT_DEFAULT_TO_DISABLED
 is set in the kernel configuration file.
+.El
 .Sh EXIT STATUS
 .Ex -std
 .Sh EXAMPLES
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


Re: svn commit: r284425 - head/usr.sbin/freebsd-update

2015-06-16 Thread Joel Dahl
On Mon, Jun 15, 2015 at 08:12:15PM +, Xin LI wrote:
 Author: delphij
 Date: Mon Jun 15 20:12:15 2015
 New Revision: 284425
 URL: https://svnweb.freebsd.org/changeset/base/284425
 
 Log:
   Skip src component if /usr/src is empty.
   
   Submitted by:   kczekirda

I can't find anyone with that freebsd login id. If it's a non-committer,
please use a real name or email address, or at least something that doesn't look
like a freebsd login id. 

-- 
Joel
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


Re: svn commit: r283806 - head/contrib/traceroute

2015-06-03 Thread Joel Dahl
On Wed, Jun 03, 2015 at 11:02:10PM +0300, Gleb Smirnoff wrote:
 On Wed, Jun 03, 2015 at 11:49:15AM -0700, hiren panchasara wrote:
 h   Picking up a random traceroute commit here. I am not sure of the 
 history
 h   but don't we try to upstream the fixes for contrib/* things, in 
 general? 
 h   The last version was release 12 years ago. They where integrated in
 h   https://svnweb.freebsd.org/base?view=revisionrevision=100787
 h   
 h   I can submit the patches also to tracero...@ee.lbl.gov as indicated in
 h   
 https://svnweb.freebsd.org/base/head/contrib/traceroute/FREEBSD-upgrade?view=markup
 h  I tried to... However, the e-mail address tracero...@ee.lbl.gov doesn't 
 seem
 h  to work anymore...
 h 
 h In that case, we should continue fixing things in-house like you've been 
 doing.
 
 And probably 'svn mv' it out of contrib.

Yes, please move it. There is no upstream.

-- 
Joel
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


Re: svn commit: r282314 - in head: include lib/libc/stdlib

2015-05-01 Thread Joel Dahl
On Fri, May 01, 2015 at 09:34:07PM +0200, Baptiste Daroussin wrote:
 On Fri, May 01, 2015 at 10:22:50PM +0300, Sergey Kandaurov wrote:
  On 1 May 2015 at 21:32, Baptiste Daroussin b...@freebsd.org wrote:
   Author: bapt
   Date: Fri May  1 18:32:16 2015
   New Revision: 282314
   URL: https://svnweb.freebsd.org/changeset/base/282314
  
   Log:
 Import reallocarray(3) from OpenBSD
  
 Add a manpage for it, assign the copyright to the OpenBSD project on it 
   since it
 is mostly copy/paste from OpenBSD manpage.
 style(9) fixes
  [..]
  
   Added: head/lib/libc/stdlib/reallocarray.3
   ==
   --- /dev/null   00:00:00 1970   (empty, because file is newly added)
   +++ head/lib/libc/stdlib/reallocarray.3 Fri May  1 18:32:16 2015
   (r282314)
   @@ -0,0 +1,136 @@
   +.\ Copyright (c) 2015 OpenBSD
   +.\ All rights reserved.
  
  This copyright notice looks suspicious.
  
 Well I wrote the man page but by copy/pasting code from OpenBSD malloc(3)
 manpage which copyright should I set?

If you copied it from the malloc(3) manpage, you should use the copyright
notice from the same manpage.

-- 
Joel
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r281931 - in head: sbin/camcontrol usr.sbin/iovctl usr.sbin/jail

2015-04-24 Thread Joel Dahl
Author: joel (doc committer)
Date: Fri Apr 24 14:36:06 2015
New Revision: 281931
URL: https://svnweb.freebsd.org/changeset/base/281931

Log:
  Fix minor mdoc issues.

Modified:
  head/sbin/camcontrol/camcontrol.8
  head/usr.sbin/iovctl/iovctl.conf.5
  head/usr.sbin/jail/jail.8

Modified: head/sbin/camcontrol/camcontrol.8
==
--- head/sbin/camcontrol/camcontrol.8   Fri Apr 24 13:12:04 2015
(r281930)
+++ head/sbin/camcontrol/camcontrol.8   Fri Apr 24 14:36:06 2015
(r281931)
@@ -575,7 +575,6 @@ Most drives support this format.
 Print out the list in extended physical sector format.
 The extended format allows for ranges of blocks to be printed.
 .El
-.Pp
 .It Fl G
 Print out the grown defect list.
 This is a list of bad blocks that have

Modified: head/usr.sbin/iovctl/iovctl.conf.5
==
--- head/usr.sbin/iovctl/iovctl.conf.5  Fri Apr 24 13:12:04 2015
(r281930)
+++ head/usr.sbin/iovctl/iovctl.conf.5  Fri Apr 24 14:36:06 2015
(r281931)
@@ -144,7 +144,7 @@ passthrough devices through the use of t
 VF-0 is not configured as a passthrough device as it explicitly overrides the
 default.
 VF-0 also sets a device-specific parameter named mac-addr.
-.Bd -literal .offset ident
+.Bd -literal -offset ident
 PF {
device : ix0;
num_vfs : 3;
@@ -160,8 +160,8 @@ VF-0 {
 }
 .Ed
 .Sh SEE ALSO
-.Xr iovctl 8 ,
-.Xr rc.conf 5
+.Xr rc.conf 5 ,
+.Xr iovctl 8
 .Sh AUTHORS
 This manual page was written by
 .An Ryan Stone Aq Mt rst...@freebsd.org .

Modified: head/usr.sbin/jail/jail.8
==
--- head/usr.sbin/jail/jail.8   Fri Apr 24 13:12:04 2015(r281930)
+++ head/usr.sbin/jail/jail.8   Fri Apr 24 14:36:06 2015(r281931)
@@ -1221,7 +1221,6 @@ environment of the first jail.
 .Xr jls 8 ,
 .Xr mount 8 ,
 .Xr named 8 ,
-.Xr procfs 5 ,
 .Xr reboot 8 ,
 .Xr rpcbind 8 ,
 .Xr sendmail 8 ,
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r276659 - in head: lib/libc/iconv sbin/camcontrol sbin/hastd

2015-01-04 Thread Joel Dahl
Author: joel (doc committer)
Date: Sun Jan  4 12:49:24 2015
New Revision: 276659
URL: https://svnweb.freebsd.org/changeset/base/276659

Log:
  mdoc: paragraph improvements.

Modified:
  head/lib/libc/iconv/iconv.3
  head/sbin/camcontrol/camcontrol.8
  head/sbin/hastd/hast.conf.5

Modified: head/lib/libc/iconv/iconv.3
==
--- head/lib/libc/iconv/iconv.3 Sun Jan  4 12:42:08 2015(r276658)
+++ head/lib/libc/iconv/iconv.3 Sun Jan  4 12:49:24 2015(r276659)
@@ -176,8 +176,8 @@ may be
 .Dv NULL .
 In this case, the shift sequence for the destination switching
 to the initial state is discarded.
-.Pp
 .El
+.Pp
 The
 .Fn __iconv
 function works just like

Modified: head/sbin/camcontrol/camcontrol.8
==
--- head/sbin/camcontrol/camcontrol.8   Sun Jan  4 12:42:08 2015
(r276658)
+++ head/sbin/camcontrol/camcontrol.8   Sun Jan  4 12:49:24 2015
(r276659)
@@ -1364,8 +1364,8 @@ Defaults to
 Confirm yes to dangerous options such as
 .Fl e
 without prompting for confirmation.
-.Pp
 .El
+.Pp
 If the password specified for any action commands does not match the configured
 password for the specified user the command will fail.
 .Pp
@@ -1434,8 +1434,8 @@ additional unlock calls until after a po
 Confirm yes to dangerous options such as
 .Fl e
 without prompting for confirmation
-.Pp
 .El
+.Pp
 The password for all HPA commands is limited to 32 characters, longer passwords
 will fail.
 .It Ic fwdownload
@@ -1924,7 +1924,6 @@ power-on or hardware reset!
 .Pp
 .Em DO NOT
 use this on a device which has an active filesystem!
-.Pp
 .Bd -literal -offset indent
 camcontrol persist da0 -v -i read_keys
 .Ed

Modified: head/sbin/hastd/hast.conf.5
==
--- head/sbin/hastd/hast.conf.5 Sun Jan  4 12:42:08 2015(r276658)
+++ head/sbin/hastd/hast.conf.5 Sun Jan  4 12:49:24 2015(r276659)
@@ -270,39 +270,33 @@ program is executed with:
 .It Ic path role resource oldrole newrole
 .Pp
 Executed on both primary and secondary nodes when resource role is changed.
-.Pp
 .It Ic path connect resource
 .Pp
 Executed on both primary and secondary nodes when connection for the given
 resource between the nodes is established.
-.Pp
 .It Ic path disconnect resource
 .Pp
 Executed on both primary and secondary nodes when connection for the given
 resource between the nodes is lost.
-.Pp
 .It Ic path syncstart resource
 .Pp
 Executed on primary node when synchronization process of secondary node is
 started.
-.Pp
 .It Ic path syncdone resource
 .Pp
 Executed on primary node when synchronization process of secondary node is
 completed successfully.
-.Pp
 .It Ic path syncintr resource
 .Pp
 Executed on primary node when synchronization process of secondary node is
 interrupted, most likely due to secondary node outage or connection failure
 between the nodes.
-.Pp
 .It Ic path split-brain resource
 .Pp
 Executed on both primary and secondary nodes when split-brain condition is
 detected.
-.Pp
 .El
+.Pp
 The
 .Aq path
 argument should contain full path to executable program.
@@ -330,7 +324,6 @@ It can be one of:
 .Ar init ,
 .Ar secondary ,
 .Ar primary .
-.Pp
 .It Ic metaflush on | off
 .Pp
 When set to
@@ -349,7 +342,6 @@ will disable
 automatically.
 The default value is
 .Va on .
-.Pp
 .It Ic name Aq name
 .Pp
 GEOM provider name that will appear as
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r276657 - head/lib/libpmc

2015-01-04 Thread Joel Dahl
Author: joel (doc committer)
Date: Sun Jan  4 12:38:00 2015
New Revision: 276657
URL: https://svnweb.freebsd.org/changeset/base/276657

Log:
  mdoc: sort SEE ALSO.

Modified:
  head/lib/libpmc/pmc.corei7.3
  head/lib/libpmc/pmc.corei7uc.3
  head/lib/libpmc/pmc.haswell.3
  head/lib/libpmc/pmc.ivybridge.3
  head/lib/libpmc/pmc.ivybridgexeon.3
  head/lib/libpmc/pmc.sandybridgexeon.3
  head/lib/libpmc/pmc.soft.3
  head/lib/libpmc/pmc.ucf.3
  head/lib/libpmc/pmc.westmere.3
  head/lib/libpmc/pmc.westmereuc.3
  head/lib/libpmc/pmc.xscale.3
  head/lib/libpmc/pmc_capabilities.3

Modified: head/lib/libpmc/pmc.corei7.3
==
--- head/lib/libpmc/pmc.corei7.3Sun Jan  4 12:05:43 2015
(r276656)
+++ head/lib/libpmc/pmc.corei7.3Sun Jan  4 12:38:00 2015
(r276657)
@@ -1549,18 +1549,18 @@ Counts number of segment register loads.
 .Xr pmc 3 ,
 .Xr pmc.atom 3 ,
 .Xr pmc.core 3 ,
+.Xr pmc.corei7uc 3 ,
 .Xr pmc.iaf 3 ,
-.Xr pmc.ucf 3 ,
 .Xr pmc.k7 3 ,
 .Xr pmc.k8 3 ,
 .Xr pmc.p4 3 ,
 .Xr pmc.p5 3 ,
 .Xr pmc.p6 3 ,
-.Xr pmc.corei7uc 3 ,
-.Xr pmc.westmere 3 ,
-.Xr pmc.westmereuc 3 ,
 .Xr pmc.soft 3 ,
 .Xr pmc.tsc 3 ,
+.Xr pmc.ucf 3 ,
+.Xr pmc.westmere 3 ,
+.Xr pmc.westmereuc 3 ,
 .Xr pmc_cpuinfo 3 ,
 .Xr pmclog 3 ,
 .Xr hwpmc 4

Modified: head/lib/libpmc/pmc.corei7uc.3
==
--- head/lib/libpmc/pmc.corei7uc.3  Sun Jan  4 12:05:43 2015
(r276656)
+++ head/lib/libpmc/pmc.corei7uc.3  Sun Jan  4 12:38:00 2015
(r276657)
@@ -853,18 +853,18 @@ refreshed or needs to go into a power do
 .Xr pmc 3 ,
 .Xr pmc.atom 3 ,
 .Xr pmc.core 3 ,
+.Xr pmc.corei7 3 ,
 .Xr pmc.iaf 3 ,
-.Xr pmc.ucf 3 ,
 .Xr pmc.k7 3 ,
 .Xr pmc.k8 3 ,
 .Xr pmc.p4 3 ,
 .Xr pmc.p5 3 ,
 .Xr pmc.p6 3 ,
-.Xr pmc.corei7 3 ,
-.Xr pmc.westmere 3 ,
-.Xr pmc.westmereuc 3 ,
 .Xr pmc.soft 3 ,
 .Xr pmc.tsc 3 ,
+.Xr pmc.ucf 3 ,
+.Xr pmc.westmere 3 ,
+.Xr pmc.westmereuc 3 ,
 .Xr pmc_cpuinfo 3 ,
 .Xr pmclog 3 ,
 .Xr hwpmc 4

Modified: head/lib/libpmc/pmc.haswell.3
==
--- head/lib/libpmc/pmc.haswell.3   Sun Jan  4 12:05:43 2015
(r276656)
+++ head/lib/libpmc/pmc.haswell.3   Sun Jan  4 12:38:00 2015
(r276657)
@@ -936,25 +936,25 @@ Dirty L2 cache lines evicted by demand.
 .Xr pmc 3 ,
 .Xr pmc.atom 3 ,
 .Xr pmc.core 3 ,
+.Xr pmc.corei7 3 ,
+.Xr pmc.corei7uc 3 ,
+.Xr pmc.haswelluc 3 ,
 .Xr pmc.iaf 3 ,
-.Xr pmc.ucf 3 ,
+.Xr pmc.ivybridge 3 ,
+.Xr pmc.ivybridgexeon 3 ,
 .Xr pmc.k7 3 ,
 .Xr pmc.k8 3 ,
 .Xr pmc.p4 3 ,
 .Xr pmc.p5 3 ,
 .Xr pmc.p6 3 ,
-.Xr pmc.corei7 3 ,
-.Xr pmc.corei7uc 3 ,
-.Xr pmc.haswelluc 3 ,
-.Xr pmc.ivybridge 3 ,
-.Xr pmc.ivybridgexeon 3 ,
 .Xr pmc.sandybridge 3 ,
 .Xr pmc.sandybridgeuc 3 ,
 .Xr pmc.sandybridgexeon 3 ,
-.Xr pmc.westmere 3 ,
-.Xr pmc.westmereuc 3 ,
 .Xr pmc.soft 3 ,
 .Xr pmc.tsc 3 ,
+.Xr pmc.ucf 3 ,
+.Xr pmc.westmere 3 ,
+.Xr pmc.westmereuc 3 ,
 .Xr pmc_cpuinfo 3 ,
 .Xr pmclog 3 ,
 .Xr hwpmc 4

Modified: head/lib/libpmc/pmc.ivybridge.3
==
--- head/lib/libpmc/pmc.ivybridge.3 Sun Jan  4 12:05:43 2015
(r276656)
+++ head/lib/libpmc/pmc.ivybridge.3 Sun Jan  4 12:38:00 2015
(r276657)
@@ -844,23 +844,23 @@ Dirty L2 cache lines evicted by the MLC 
 .Xr pmc 3 ,
 .Xr pmc.atom 3 ,
 .Xr pmc.core 3 ,
+.Xr pmc.corei7 3 ,
+.Xr pmc.corei7uc 3 ,
 .Xr pmc.iaf 3 ,
-.Xr pmc.ucf 3 ,
+.Xr pmc.ivybridgexeon 3 ,
 .Xr pmc.k7 3 ,
 .Xr pmc.k8 3 ,
 .Xr pmc.p4 3 ,
 .Xr pmc.p5 3 ,
 .Xr pmc.p6 3 ,
-.Xr pmc.corei7 3 ,
-.Xr pmc.corei7uc 3 ,
-.Xr pmc.ivybridgexeon 3 ,
 .Xr pmc.sandybridge 3 ,
 .Xr pmc.sandybridgeuc 3 ,
 .Xr pmc.sandybridgexeon 3 ,
-.Xr pmc.westmere 3 ,
-.Xr pmc.westmereuc 3 ,
 .Xr pmc.soft 3 ,
 .Xr pmc.tsc 3 ,
+.Xr pmc.ucf 3 ,
+.Xr pmc.westmere 3 ,
+.Xr pmc.westmereuc 3 ,
 .Xr pmc_cpuinfo 3 ,
 .Xr pmclog 3 ,
 .Xr hwpmc 4

Modified: head/lib/libpmc/pmc.ivybridgexeon.3
==
--- head/lib/libpmc/pmc.ivybridgexeon.3 Sun Jan  4 12:05:43 2015
(r276656)
+++ head/lib/libpmc/pmc.ivybridgexeon.3 Sun Jan  4 12:38:00 2015
(r276657)
@@ -874,23 +874,23 @@ Dirty L2 cache lines filling the L2.
 .Xr pmc 3 ,
 .Xr pmc.atom 3 ,
 .Xr pmc.core 3 ,
+.Xr pmc.corei7 3 ,
+.Xr pmc.corei7uc 3 ,
 .Xr pmc.iaf 3 ,
-.Xr pmc.ucf 3 ,
+.Xr pmc.ivybridge 3 ,
 .Xr pmc.k7 3 ,
 .Xr pmc.k8 3 ,
 .Xr pmc.p4 3 ,
 .Xr pmc.p5 3 ,
 .Xr pmc.p6 3 ,
-.Xr pmc.corei7 3 ,
-.Xr pmc.corei7uc 3 ,
-.Xr pmc.ivybridge 3 ,
 .Xr pmc.sandybridge 3 ,
 .Xr pmc.sandybridgeuc 3 ,
 .Xr pmc.sandybridgexeon 3 ,
-.Xr pmc.westmere 3 ,
-.Xr pmc.westmereuc 3 ,
 .Xr pmc.soft 3 ,
 .Xr pmc.tsc 3 ,
+.Xr pmc.ucf 3 ,
+.Xr pmc.westmere 3 ,
+.Xr pmc.westmereuc 3 ,
 .Xr pmc_cpuinfo 3 ,
 .Xr pmclog 3 ,
 .Xr hwpmc 4

Modified: head/lib/libpmc/pmc.sandybridgexeon.3

svn commit: r276658 - head/usr.bin/sort

2015-01-04 Thread Joel Dahl
Author: joel (doc committer)
Date: Sun Jan  4 12:42:08 2015
New Revision: 276658
URL: https://svnweb.freebsd.org/changeset/base/276658

Log:
  mdoc: use An macro.

Modified:
  head/usr.bin/sort/sort.1.in

Modified: head/usr.bin/sort/sort.1.in
==
--- head/usr.bin/sort/sort.1.in Sun Jan  4 12:38:00 2015(r276657)
+++ head/usr.bin/sort/sort.1.in Sun Jan  4 12:42:08 2015(r276658)
@@ -610,9 +610,9 @@ A
 command first appeared in
 .At v3 .
 .Sh AUTHORS
-Gabor Kovesdan ga...@freebsd.org,
+.An Gabor Kovesdan Aq Mt ga...@freebsd.org ,
 .Pp
-Oleg Moskalenko mom040...@gmail.com
+.An Oleg Moskalenko Aq Mt mom040...@gmail.com
 .Sh NOTES
 This implementation of
 .Nm
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r276360 - in head: cddl/contrib/opensolaris/cmd/zpool lib/libc/regex lib/msun/man sbin/bsdlabel sbin/camcontrol sbin/geom/class/label sbin/ipfw sbin/iscontrol sbin/mount_nfs sbin/routed...

2014-12-29 Thread Joel Dahl
Author: joel (doc committer)
Date: Mon Dec 29 13:50:59 2014
New Revision: 276360
URL: https://svnweb.freebsd.org/changeset/base/276360

Log:
  mdoc: remove EOL whitespace.

Modified:
  head/cddl/contrib/opensolaris/cmd/zpool/zpool-features.7
  head/lib/libc/regex/re_format.7
  head/lib/msun/man/lgamma.3
  head/sbin/bsdlabel/bsdlabel.8
  head/sbin/camcontrol/camcontrol.8
  head/sbin/geom/class/label/glabel.8
  head/sbin/ipfw/ipfw.8
  head/sbin/iscontrol/iscontrol.8
  head/sbin/mount_nfs/mount_nfs.8
  head/sbin/routed/routed.8
  head/share/man/man4/ada.4
  head/share/man/man7/crypto.7
  head/share/man/man7/hier.7
  head/sys/boot/common/loader.8
  head/usr.bin/soeliminate/soeliminate.1
  head/usr.sbin/bsdinstall/bsdinstall.8
  head/usr.sbin/kbdcontrol/kbdcontrol.1

Modified: head/cddl/contrib/opensolaris/cmd/zpool/zpool-features.7
==
--- head/cddl/contrib/opensolaris/cmd/zpool/zpool-features.7Mon Dec 29 
13:02:03 2014(r276359)
+++ head/cddl/contrib/opensolaris/cmd/zpool/zpool-features.7Mon Dec 29 
13:50:59 2014(r276360)
@@ -443,7 +443,7 @@ This feature becomes
 .Sy active
 once a
 .Sy recordsize
-property has been set larger than 128KB, and will return to being 
+property has been set larger than 128KB, and will return to being
 .Sy enabled
 once all filesystems that have ever had their recordsize larger than 128KB
 are destroyed.

Modified: head/lib/libc/regex/re_format.7
==
--- head/lib/libc/regex/re_format.7 Mon Dec 29 13:02:03 2014
(r276359)
+++ head/lib/libc/regex/re_format.7 Mon Dec 29 13:50:59 2014
(r276360)
@@ -314,10 +314,10 @@ compatible with but not specified by
 .St -p1003.2 ,
 and should be used with
 caution in software intended to be portable to other systems.
-The additional word delimiters  
+The additional word delimiters
 .Ql \e
 and
-.Ql \e 
+.Ql \e
 are provided to ease compatibility with traditional
 .Xr svr4 4
 systems but are not portable and should be avoided.

Modified: head/lib/msun/man/lgamma.3
==
--- head/lib/msun/man/lgamma.3  Mon Dec 29 13:02:03 2014(r276359)
+++ head/lib/msun/man/lgamma.3  Mon Dec 29 13:50:59 2014(r276360)
@@ -99,7 +99,7 @@ returns the sign of \(*G(x).
 and
 .Fn lgammal_r x signgamp
 provide the same functionality as
-.Fn lgamma x , 
+.Fn lgamma x ,
 .Fn lgammaf x ,
 and
 .Fn lgammal x ,

Modified: head/sbin/bsdlabel/bsdlabel.8
==
--- head/sbin/bsdlabel/bsdlabel.8   Mon Dec 29 13:02:03 2014
(r276359)
+++ head/sbin/bsdlabel/bsdlabel.8   Mon Dec 29 13:50:59 2014
(r276360)
@@ -109,7 +109,7 @@ argument forces
 .Nm
 to use a layout suitable for a different architecture.
 Current valid values are
-.Cm i386 , amd64 , 
+.Cm i386 , amd64 ,
 and
 .Cm pc98 .
 If this option is omitted,

Modified: head/sbin/camcontrol/camcontrol.8
==
--- head/sbin/camcontrol/camcontrol.8   Mon Dec 29 13:02:03 2014
(r276359)
+++ head/sbin/camcontrol/camcontrol.8   Mon Dec 29 13:50:59 2014
(r276360)
@@ -1613,7 +1613,7 @@ For example:
 .It FC
 A Fibre Channel Transport ID consists of
 .Dq fcp,
-followed by a 64-bit Fibre Channel World Wide Name. 
+followed by a 64-bit Fibre Channel World Wide Name.
 For example:
 .Pp
 .Dl fcp,0x1234567812345678
@@ -1735,11 +1735,11 @@ May also be specified as
 .Dq exclusive_access .
 .It wr_ex_ro
 Write Exclusive Registrants Only mode.
-May also be specified as 
+May also be specified as
 .Dq write_exclusive_reg_only .
 .It ex_ac_ro
 Exclusive Access Registrants Only mode.
-May also be specified as 
+May also be specified as
 .Dq exclusive_access_reg_only .
 .It wr_ex_ar
 Write Exclusive All Registrants mode.
@@ -1747,7 +1747,7 @@ May also be specified as
 .Dq write_exclusive_all_regs .
 .It ex_ac_ar
 Exclusive Access All Registrants mode.
-May also be specified as 
+May also be specified as
 .Dq exclusive_access_all_regs .
 .El
 .It Fl U
@@ -1931,7 +1931,7 @@ camcontrol persist da0 -v -i read_keys
 .Pp
 This will read any persistent reservation keys registered with da0, and
 display any errors encountered when sending the PERSISTENT RESERVE IN
-.Tn SCSI 
+.Tn SCSI
 command.
 .Bd -literal -offset indent
 camcontrol persist da0 -v -o register -a -K 0x12345678
@@ -1976,9 +1976,9 @@ camcontrol persist da0 -v -o register_mo
 .Ed
 .Pp
 This will move the registration from the current initiator, whose
-Registration Key is 0x87654321, to the Fibre Channel initiator with the 
+Registration Key is 0x87654321, to the Fibre Channel initiator with the
 Fiber Channel World Wide Node Name 0x1234567812345678.
-A new registration key, 0x12345678, will be registered for the initiator 
+A new 

svn commit: r276381 - head/lib/libgssapi

2014-12-29 Thread Joel Dahl
Author: joel (doc committer)
Date: Mon Dec 29 21:52:32 2014
New Revision: 276381
URL: https://svnweb.freebsd.org/changeset/base/276381

Log:
  mdoc: sort SEE ALSO.

Modified:
  head/lib/libgssapi/gss_acquire_cred.3
  head/lib/libgssapi/gss_add_cred.3
  head/lib/libgssapi/gss_add_oid_set_member.3
  head/lib/libgssapi/gss_create_empty_oid_set.3
  head/lib/libgssapi/gss_delete_sec_context.3
  head/lib/libgssapi/gss_get_mic.3
  head/lib/libgssapi/gss_import_sec_context.3
  head/lib/libgssapi/gss_inquire_context.3
  head/lib/libgssapi/gss_process_context_token.3
  head/lib/libgssapi/gss_test_oid_set_member.3
  head/lib/libgssapi/gss_unwrap.3
  head/lib/libgssapi/gss_wrap.3

Modified: head/lib/libgssapi/gss_acquire_cred.3
==
--- head/lib/libgssapi/gss_acquire_cred.3   Mon Dec 29 21:43:02 2014
(r276380)
+++ head/lib/libgssapi/gss_acquire_cred.3   Mon Dec 29 21:52:32 2014
(r276381)
@@ -189,10 +189,10 @@ The credentials could not be acquired be
 No credentials were found for the specified name.
 .El
 .Sh SEE ALSO
-.Xr gss_init_sec_context 3 ,
 .Xr gss_accept_sec_context 3 ,
-.Xr gss_inquire_cred 3 ,
+.Xr gss_init_sec_context 3 ,
 .Xr gss_inquire_context 3 ,
+.Xr gss_inquire_cred 3 ,
 .Xr gss_release_cred 3 ,
 .Xr gss_release_oid_set 3
 .Sh STANDARDS

Modified: head/lib/libgssapi/gss_add_cred.3
==
--- head/lib/libgssapi/gss_add_cred.3   Mon Dec 29 21:43:02 2014
(r276380)
+++ head/lib/libgssapi/gss_add_cred.3   Mon Dec 29 21:52:32 2014
(r276381)
@@ -288,11 +288,11 @@ The required credentials could not be ad
 No credentials were found for the specified name.
 .El
 .Sh SEE ALSO
-.Xr gss_init_sec_context 3 ,
 .Xr gss_accept_sec_context 3 ,
 .Xr gss_acquire_cred 3 ,
-.Xr gss_inquire_cred 3 ,
+.Xr gss_init_sec_context 3 ,
 .Xr gss_inquire_context 3 ,
+.Xr gss_inquire_cred 3 ,
 .Xr gss_release_cred 3 ,
 .Xr gss_release_oid_set 3
 .Sh STANDARDS

Modified: head/lib/libgssapi/gss_add_oid_set_member.3
==
--- head/lib/libgssapi/gss_add_oid_set_member.3 Mon Dec 29 21:43:02 2014
(r276380)
+++ head/lib/libgssapi/gss_add_oid_set_member.3 Mon Dec 29 21:52:32 2014
(r276381)
@@ -85,8 +85,8 @@ The set in which the object identifier s
 Successful completion
 .El
 .Sh SEE ALSO
-.Xr gss_create_empty_oid_set 3 ,
-.Xr gss_acquire_cred 3
+.Xr gss_acquire_cred 3 ,
+.Xr gss_create_empty_oid_set 3
 .Sh STANDARDS
 .Bl -tag -width .It RFC 2743
 .It RFC 2743

Modified: head/lib/libgssapi/gss_create_empty_oid_set.3
==
--- head/lib/libgssapi/gss_create_empty_oid_set.3   Mon Dec 29 21:43:02 
2014(r276380)
+++ head/lib/libgssapi/gss_create_empty_oid_set.3   Mon Dec 29 21:52:32 
2014(r276381)
@@ -66,8 +66,8 @@ which the application must free after us
 Successful completion
 .El
 .Sh SEE ALSO
-.Xr gss_add_oid_set_member 3 ,
-.Xr gss_acquire_cred 3
+.Xr gss_acquire_cred 3 ,
+.Xr gss_add_oid_set_member 3
 .Sh STANDARDS
 .Bl -tag -width .It RFC 2743
 .It RFC 2743

Modified: head/lib/libgssapi/gss_delete_sec_context.3
==
--- head/lib/libgssapi/gss_delete_sec_context.3 Mon Dec 29 21:43:02 2014
(r276380)
+++ head/lib/libgssapi/gss_delete_sec_context.3 Mon Dec 29 21:52:32 2014
(r276381)
@@ -117,9 +117,9 @@ Successful completion
 No valid context was supplied
 .El
 .Sh SEE ALSO
-.Xr gss_process_context_token 3 ,
+.Xr gss_accept_sec_context 3 ,
 .Xr gss_init_sec_context 3 ,
-.Xr gss_accept_sec_context 3
+.Xr gss_process_context_token 3
 .Sh STANDARDS
 .Bl -tag -width .It RFC 2743
 .It RFC 2743

Modified: head/lib/libgssapi/gss_get_mic.3
==
--- head/lib/libgssapi/gss_get_mic.3Mon Dec 29 21:43:02 2014
(r276380)
+++ head/lib/libgssapi/gss_get_mic.3Mon Dec 29 21:52:32 2014
(r276381)
@@ -120,8 +120,8 @@ The context_handle parameter did not ide
 The specified QOP is not supported by the mechanism
 .El
 .Sh SEE ALSO
-.Xr gss_wrap 3 ,
-.Xr gss_release_buffer 3
+.Xr gss_release_buffer 3 ,
+.Xr gss_wrap 3
 .Sh STANDARDS
 .Bl -tag -width .It RFC 2743
 .It RFC 2743

Modified: head/lib/libgssapi/gss_import_sec_context.3
==
--- head/lib/libgssapi/gss_import_sec_context.3 Mon Dec 29 21:43:02 2014
(r276380)
+++ head/lib/libgssapi/gss_import_sec_context.3 Mon Dec 29 21:52:32 2014
(r276381)
@@ -75,8 +75,8 @@ The operation is unavailable
 Local policy prevents the import of this context by the current process
 .El
 .Sh SEE ALSO
-.Xr gss_export_sec_context 3 ,
-.Xr gss_delete_sec_context 3
+.Xr gss_delete_sec_context 3 ,
+.Xr 

svn commit: r276382 - head/lib/librpcsec_gss

2014-12-29 Thread Joel Dahl
Author: joel (doc committer)
Date: Mon Dec 29 21:59:44 2014
New Revision: 276382
URL: https://svnweb.freebsd.org/changeset/base/276382

Log:
  mdoc: sort SEE ALSO.

Modified:
  head/lib/librpcsec_gss/rpc_gss_get_error.3
  head/lib/librpcsec_gss/rpc_gss_get_mech_info.3
  head/lib/librpcsec_gss/rpc_gss_get_mechanisms.3
  head/lib/librpcsec_gss/rpc_gss_get_principal_name.3
  head/lib/librpcsec_gss/rpc_gss_get_versions.3
  head/lib/librpcsec_gss/rpc_gss_getcred.3
  head/lib/librpcsec_gss/rpc_gss_is_installed.3
  head/lib/librpcsec_gss/rpc_gss_max_data_length.3
  head/lib/librpcsec_gss/rpc_gss_mech_to_oid.3
  head/lib/librpcsec_gss/rpc_gss_oid_to_mech.3
  head/lib/librpcsec_gss/rpc_gss_qop_to_num.3
  head/lib/librpcsec_gss/rpc_gss_seccreate.3
  head/lib/librpcsec_gss/rpc_gss_set_callback.3
  head/lib/librpcsec_gss/rpc_gss_set_defaults.3
  head/lib/librpcsec_gss/rpc_gss_set_svc_name.3
  head/lib/librpcsec_gss/rpc_gss_svc_max_data_length.3
  head/lib/librpcsec_gss/rpcsec_gss.3

Modified: head/lib/librpcsec_gss/rpc_gss_get_error.3
==
--- head/lib/librpcsec_gss/rpc_gss_get_error.3  Mon Dec 29 21:52:32 2014
(r276381)
+++ head/lib/librpcsec_gss/rpc_gss_get_error.3  Mon Dec 29 21:59:44 2014
(r276382)
@@ -44,8 +44,8 @@ Get details of the last RPCSEC_GSS error
 A pointer to a structure where the error details will be returned
 .El
 .Sh SEE ALSO
-.Xr rpc 3 ,
 .Xr gssapi 3 ,
+.Xr rpc 3 ,
 .Xr rpcset_gss 3
 .Sh HISTORY
 The

Modified: head/lib/librpcsec_gss/rpc_gss_get_mech_info.3
==
--- head/lib/librpcsec_gss/rpc_gss_get_mech_info.3  Mon Dec 29 21:52:32 
2014(r276381)
+++ head/lib/librpcsec_gss/rpc_gss_get_mech_info.3  Mon Dec 29 21:59:44 
2014(r276382)
@@ -54,8 +54,8 @@ a list of the supported qualities of pro
 otherwise
 .Dv NULL .
 .Sh SEE ALSO
-.Xr rpc 3 ,
 .Xr gssapi 3 ,
+.Xr rpc 3 ,
 .Xr rpcset_gss 3
 .Sh HISTORY
 The

Modified: head/lib/librpcsec_gss/rpc_gss_get_mechanisms.3
==
--- head/lib/librpcsec_gss/rpc_gss_get_mechanisms.3 Mon Dec 29 21:52:32 
2014(r276381)
+++ head/lib/librpcsec_gss/rpc_gss_get_mechanisms.3 Mon Dec 29 21:59:44 
2014(r276382)
@@ -41,8 +41,8 @@ Return a
 .Dv NULL
 terminated list of installed security mechanisms.
 .Sh SEE ALSO
-.Xr rpc 3 ,
 .Xr gssapi 3 ,
+.Xr rpc 3 ,
 .Xr rpcset_gss 3
 .Sh HISTORY
 The

Modified: head/lib/librpcsec_gss/rpc_gss_get_principal_name.3
==
--- head/lib/librpcsec_gss/rpc_gss_get_principal_name.3 Mon Dec 29 21:52:32 
2014(r276381)
+++ head/lib/librpcsec_gss/rpc_gss_get_principal_name.3 Mon Dec 29 21:59:44 
2014(r276382)
@@ -67,9 +67,9 @@ if the principal was created or
 .Dv FALSE
 otherwise
 .Sh SEE ALSO
-.Xr rpc 3 ,
-.Xr gssapi 3 ,
 .Xr gss_export_name 3 ,
+.Xr gssapi 3 ,
+.Xr rpc 3 ,
 .Xr rpcset_gss 3
 .Sh HISTORY
 The

Modified: head/lib/librpcsec_gss/rpc_gss_get_versions.3
==
--- head/lib/librpcsec_gss/rpc_gss_get_versions.3   Mon Dec 29 21:52:32 
2014(r276381)
+++ head/lib/librpcsec_gss/rpc_gss_get_versions.3   Mon Dec 29 21:59:44 
2014(r276382)
@@ -50,8 +50,8 @@ The value of
 is set to the lowest supported protocol version
 .El
 .Sh SEE ALSO
-.Xr rpc 3 ,
 .Xr gssapi 3 ,
+.Xr rpc 3 ,
 .Xr rpcset_gss 3
 .Sh HISTORY
 The

Modified: head/lib/librpcsec_gss/rpc_gss_getcred.3
==
--- head/lib/librpcsec_gss/rpc_gss_getcred.3Mon Dec 29 21:52:32 2014
(r276381)
+++ head/lib/librpcsec_gss/rpc_gss_getcred.3Mon Dec 29 21:59:44 2014
(r276382)
@@ -70,8 +70,8 @@ if successful,
 .Dv FALSE
 otherwise.
 .Sh SEE ALSO
-.Xr rpc 3 ,
 .Xr gssapi 3 ,
+.Xr rpc 3 ,
 .Xr rpc_gss_set_callback 3 ,
 .Xr rpcset_gss 3
 .Sh HISTORY

Modified: head/lib/librpcsec_gss/rpc_gss_is_installed.3
==
--- head/lib/librpcsec_gss/rpc_gss_is_installed.3   Mon Dec 29 21:52:32 
2014(r276381)
+++ head/lib/librpcsec_gss/rpc_gss_is_installed.3   Mon Dec 29 21:59:44 
2014(r276382)
@@ -51,8 +51,8 @@ if the mechanism is installed,
 .Dv FALSE
 otherwise.
 .Sh SEE ALSO
-.Xr rpc 3 ,
 .Xr gssapi 3 ,
+.Xr rpc 3 ,
 .Xr rpcset_gss 3
 .Sh HISTORY
 The

Modified: head/lib/librpcsec_gss/rpc_gss_max_data_length.3
==
--- head/lib/librpcsec_gss/rpc_gss_max_data_length.3Mon Dec 29 21:52:32 
2014(r276381)
+++ head/lib/librpcsec_gss/rpc_gss_max_data_length.3Mon Dec 29 21:59:44 
2014(r276382)
@@ -50,8 +50,8 @@ Maximum packet size of the underlying tr
 .Sh RETURN 

svn commit: r276293 - in head: lib/libdpv lib/msun/man sbin/dhclient sbin/ifconfig sbin/iscontrol sbin/mount sbin/mount_fusefs sbin/newfs

2014-12-27 Thread Joel Dahl
Author: joel (doc committer)
Date: Sat Dec 27 08:22:58 2014
New Revision: 276293
URL: https://svnweb.freebsd.org/changeset/base/276293

Log:
  mdoc: improvements to SEE ALSO.

Modified:
  head/lib/libdpv/dpv.3
  head/lib/msun/man/cexp.3
  head/lib/msun/man/complex.3
  head/lib/msun/man/sin.3
  head/sbin/dhclient/dhclient.conf.5
  head/sbin/dhclient/dhclient.leases.5
  head/sbin/ifconfig/ifconfig.8
  head/sbin/iscontrol/iscontrol.8
  head/sbin/mount/mount.8
  head/sbin/mount_fusefs/mount_fusefs.8
  head/sbin/newfs/newfs.8

Modified: head/lib/libdpv/dpv.3
==
--- head/lib/libdpv/dpv.3   Sat Dec 27 07:07:37 2014(r276292)
+++ head/lib/libdpv/dpv.3   Sat Dec 27 08:22:58 2014(r276293)
@@ -435,8 +435,8 @@ or desired values.
 .El
 .Sh SEE ALSO
 .Xr dialog 1 ,
-.Xr dialog 3 ,
-.Xr Xdialog 1
+.Xr Xdialog 1 ,
+.Xr dialog 3
 .Sh HISTORY
 The
 .Nm

Modified: head/lib/msun/man/cexp.3
==
--- head/lib/msun/man/cexp.3Sat Dec 27 07:07:37 2014(r276292)
+++ head/lib/msun/man/cexp.3Sat Dec 27 08:22:58 2014(r276293)
@@ -103,7 +103,7 @@ is not finite, the sign of the result is
 .Sh SEE ALSO
 .Xr complex 3 ,
 .Xr exp 3 ,
-.Xr math 3 ,
+.Xr math 3
 .Sh STANDARDS
 The
 .Fn cexp

Modified: head/lib/msun/man/complex.3
==
--- head/lib/msun/man/complex.3 Sat Dec 27 07:07:37 2014(r276292)
+++ head/lib/msun/man/complex.3 Sat Dec 27 08:22:58 2014(r276293)
@@ -103,9 +103,9 @@ ctantangent
 ctanh  hyperbolic tangent
 .El
 .Sh SEE ALSO
-.Xr math 3 ,
 .Xr fenv 3 ,
 .Xr ieee 3 ,
+.Xr math 3 ,
 .Xr tgmath 3
 .Rs
 .%T ISO/IEC 9899:TC3

Modified: head/lib/msun/man/sin.3
==
--- head/lib/msun/man/sin.3 Sat Dec 27 07:07:37 2014(r276292)
+++ head/lib/msun/man/sin.3 Sat Dec 27 08:22:58 2014(r276293)
@@ -70,9 +70,9 @@ functions return the sine value.
 .Xr asin 3 ,
 .Xr atan 3 ,
 .Xr atan2 3 ,
-.Xr csin 3 ,
 .Xr cos 3 ,
 .Xr cosh 3 ,
+.Xr csin 3 ,
 .Xr math 3 ,
 .Xr sinh 3 ,
 .Xr tan 3 ,

Modified: head/sbin/dhclient/dhclient.conf.5
==
--- head/sbin/dhclient/dhclient.conf.5  Sat Dec 27 07:07:37 2014
(r276292)
+++ head/sbin/dhclient/dhclient.conf.5  Sat Dec 27 08:22:58 2014
(r276293)
@@ -524,8 +524,8 @@ In many cases, it is sufficient to just 
 file - the defaults are usually fine.
 .Sh SEE ALSO
 .Xr dhclient.leases 5 ,
-.Xr dhcpd.conf 5 ,
 .Xr dhcp-options 5 ,
+.Xr dhcpd.conf 5 ,
 .Xr dhclient 8 ,
 .Xr dhcpd 8
 .Rs

Modified: head/sbin/dhclient/dhclient.leases.5
==
--- head/sbin/dhclient/dhclient.leases.5Sat Dec 27 07:07:37 2014
(r276292)
+++ head/sbin/dhclient/dhclient.leases.5Sat Dec 27 08:22:58 2014
(r276293)
@@ -75,8 +75,8 @@ Current lease file.
 .El
 .Sh SEE ALSO
 .Xr dhclient.conf 5 ,
-.Xr dhcpd.conf 5 ,
 .Xr dhcp-options 5 ,
+.Xr dhcpd.conf 5 ,
 .Xr dhclient 8 ,
 .Xr dhcpd 8
 .Rs

Modified: head/sbin/ifconfig/ifconfig.8
==
--- head/sbin/ifconfig/ifconfig.8   Sat Dec 27 07:07:37 2014
(r276292)
+++ head/sbin/ifconfig/ifconfig.8   Sat Dec 27 08:22:58 2014
(r276293)
@@ -2819,9 +2819,9 @@ tried to alter an interface's configurat
 .Xr devd.conf 5 ,
 .\ .Xr eon 5 ,
 .Xr devd 8 ,
+.Xr jail 8 ,
 .Xr rc 8 ,
 .Xr routed 8 ,
-.Xr jail 8 ,
 .Xr sysctl 8
 .Sh HISTORY
 The

Modified: head/sbin/iscontrol/iscontrol.8
==
--- head/sbin/iscontrol/iscontrol.8 Sat Dec 27 07:07:37 2014
(r276292)
+++ head/sbin/iscontrol/iscontrol.8 Sat Dec 27 08:22:58 2014
(r276293)
@@ -121,8 +121,8 @@ whatever options are specified, and star
 .Xr iscsi_initiator 4 ,
 .Xr sa 4 ,
 .Xr iscsi.conf 5 ,
-.Xr iscsictl 8 ,
-.Xr camcontrol 8
+.Xr camcontrol 8 ,
+.Xr iscsictl 8
 .Sh STANDARDS
 RFC 3720
 .\Sh HISTORY

Modified: head/sbin/mount/mount.8
==
--- head/sbin/mount/mount.8 Sat Dec 27 07:07:37 2014(r276292)
+++ head/sbin/mount/mount.8 Sat Dec 27 08:22:58 2014(r276293)
@@ -548,6 +548,7 @@ support for a particular file system mig
 .Xr ext2fs 5 ,
 .Xr fstab 5 ,
 .Xr procfs 5 ,
+.Xr tmpfs 5 ,
 .Xr automount 8 ,
 .Xr fstyp 8 ,
 .Xr kldload 8 ,
@@ -558,7 +559,6 @@ support for a particular file system mig
 .Xr mount_smbfs 8 ,
 .Xr mount_udf 8 ,
 .Xr mount_unionfs 8 ,
-.Xr tmpfs 5 ,
 .Xr umount 8 ,
 .Xr zfs 8 ,
 .Xr zpool 8

Modified: head/sbin/mount_fusefs/mount_fusefs.8

svn commit: r276294 - in head: cddl/usr.bin/ctfconvert lib/libc/iconv lib/libc/locale lib/libc/rpc lib/libpam/modules/pam_guest lib/librtld_db lib/libusb lib/libutil

2014-12-27 Thread Joel Dahl
Author: joel (doc committer)
Date: Sat Dec 27 08:31:52 2014
New Revision: 276294
URL: https://svnweb.freebsd.org/changeset/base/276294

Log:
  mdoc: improvements to SEE ALSO.

Modified:
  head/cddl/usr.bin/ctfconvert/ctfconvert.1
  head/lib/libc/iconv/iconvlist.3
  head/lib/libc/locale/digittoint.3
  head/lib/libc/locale/xlocale.3
  head/lib/libc/rpc/rpc.3
  head/lib/libc/rpc/rpc_svc_reg.3
  head/lib/libpam/modules/pam_guest/pam_guest.8
  head/lib/librtld_db/librtld_db.3
  head/lib/libusb/libusb20.3
  head/lib/libutil/quotafile.3

Modified: head/cddl/usr.bin/ctfconvert/ctfconvert.1
==
--- head/cddl/usr.bin/ctfconvert/ctfconvert.1   Sat Dec 27 08:22:58 2014
(r276293)
+++ head/cddl/usr.bin/ctfconvert/ctfconvert.1   Sat Dec 27 08:31:52 2014
(r276294)
@@ -74,8 +74,8 @@ Write the output to file in
 .Sh EXIT STATUS
 .Ex -std
 .Sh SEE ALSO
-.Xr ctfmerge 1 ,
-.Xr ctfdump 1
+.Xr ctfdump 1 ,
+.Xr ctfmerge 1
 .Sh HISTORY
 The
 .Nm

Modified: head/lib/libc/iconv/iconvlist.3
==
--- head/lib/libc/iconv/iconvlist.3 Sat Dec 27 08:22:58 2014
(r276293)
+++ head/lib/libc/iconv/iconvlist.3 Sat Dec 27 08:31:52 2014
(r276294)
@@ -78,9 +78,9 @@ If an error occurs,
 will be NULL when calling
 .Fn do_one .
 .Sh SEE ALSO
-.Xr iconv 3 ,
+.Xr __iconv_free_list 3 ,
 .Xr __iconv_get_list 3 ,
-.Xr __iconv_free_list 3
+.Xr iconv 3
 .Sh STANDARDS
 The
 .Nm

Modified: head/lib/libc/locale/digittoint.3
==
--- head/lib/libc/locale/digittoint.3   Sat Dec 27 08:22:58 2014
(r276293)
+++ head/lib/libc/locale/digittoint.3   Sat Dec 27 08:31:52 2014
(r276294)
@@ -64,5 +64,5 @@ the function will return 0.
 .Sh SEE ALSO
 .Xr ctype 3 ,
 .Xr isdigit 3 ,
-.Xr isxdigit 3,
+.Xr isxdigit 3 ,
 .Xr xlocale 3

Modified: head/lib/libc/locale/xlocale.3
==
--- head/lib/libc/locale/xlocale.3  Sat Dec 27 08:22:58 2014
(r276293)
+++ head/lib/libc/locale/xlocale.3  Sat Dec 27 08:31:52 2014
(r276294)
@@ -71,7 +71,7 @@ function.
 .Xr localeconv 3 ,
 .Xr newlocale 3 ,
 .Xr querylocale 3 ,
-.Xr uselocale 3 ,
+.Xr uselocale 3
 .Sh CONVENIENCE FUNCTIONS
 The xlocale API includes a number of
 .Fa _l

Modified: head/lib/libc/rpc/rpc.3
==
--- head/lib/libc/rpc/rpc.3 Sat Dec 27 08:22:58 2014(r276293)
+++ head/lib/libc/rpc/rpc.3 Sat Dec 27 08:31:52 2014(r276294)
@@ -504,7 +504,6 @@ pages on which they are described:
 .Sh SEE ALSO
 .Xr getnetconfig 3 ,
 .Xr getnetpath 3 ,
-.Xr rpcbind 3 ,
 .Xr rpc_clnt_auth 3 ,
 .Xr rpc_clnt_calls 3 ,
 .Xr rpc_clnt_create 3 ,
@@ -513,5 +512,6 @@ pages on which they are described:
 .Xr rpc_svc_err 3 ,
 .Xr rpc_svc_reg 3 ,
 .Xr rpc_xdr 3 ,
+.Xr rpcbind 3 ,
 .Xr xdr 3 ,
 .Xr netconfig 5

Modified: head/lib/libc/rpc/rpc_svc_reg.3
==
--- head/lib/libc/rpc/rpc_svc_reg.3 Sat Dec 27 08:22:58 2014
(r276293)
+++ head/lib/libc/rpc/rpc_svc_reg.3 Sat Dec 27 08:31:52 2014
(r276294)
@@ -176,8 +176,8 @@ Service implementors usually do not need
 .Sh SEE ALSO
 .Xr select 2 ,
 .Xr rpc 3 ,
-.Xr rpcbind 3 ,
 .Xr rpc_svc_calls 3 ,
 .Xr rpc_svc_create 3 ,
 .Xr rpc_svc_err 3 ,
+.Xr rpcbind 3 ,
 .Xr rpcbind 8

Modified: head/lib/libpam/modules/pam_guest/pam_guest.8
==
--- head/lib/libpam/modules/pam_guest/pam_guest.8   Sat Dec 27 08:22:58 
2014(r276293)
+++ head/lib/libpam/modules/pam_guest/pam_guest.8   Sat Dec 27 08:31:52 
2014(r276294)
@@ -82,8 +82,8 @@ password.
 Requires the guest user to type in the guest account name as password.
 .El
 .Sh SEE ALSO
-.Xr pam_getenv 3 ,
 .Xr pam_get_item 3 ,
+.Xr pam_getenv 3 ,
 .Xr pam.conf 5 ,
 .Xr pam 8
 .Sh AUTHORS

Modified: head/lib/librtld_db/librtld_db.3
==
--- head/lib/librtld_db/librtld_db.3Sat Dec 27 08:22:58 2014
(r276293)
+++ head/lib/librtld_db/librtld_db.3Sat Dec 27 08:31:52 2014
(r276294)
@@ -167,8 +167,8 @@ You can get the error string using
 .Xr ld 1 ,
 .Xr ld-elf.so.1 1 ,
 .Xr ld.so 1 ,
-.Xr libproc 3 ,
-.Xr rtld 1
+.Xr rtld 1 ,
+.Xr libproc 3
 .Sh HISTORY
 The
 .Nm librtld_db

Modified: head/lib/libusb/libusb20.3
==
--- head/lib/libusb/libusb20.3  Sat Dec 27 08:22:58 2014(r276293)
+++ head/lib/libusb/libusb20.3  Sat Dec 27 08:31:52 2014(r276294)
@@ -1053,8 +1053,8 @@ This function does not return NULL.
 .It Pa /dev/usb
 .El
 .Sh SEE ALSO
-.Xr usb 4 ,

svn commit: r276235 - head/lib/msun/man

2014-12-26 Thread Joel Dahl
Author: joel (doc committer)
Date: Fri Dec 26 09:18:33 2014
New Revision: 276235
URL: https://svnweb.freebsd.org/changeset/base/276235

Log:
  Minor Xr fix.

Modified:
  head/lib/msun/man/csqrt.3

Modified: head/lib/msun/man/csqrt.3
==
--- head/lib/msun/man/csqrt.3   Fri Dec 26 09:12:19 2014(r276234)
+++ head/lib/msun/man/csqrt.3   Fri Dec 26 09:18:33 2014(r276235)
@@ -85,7 +85,7 @@ an \*(Na is generated, an invalid except
 .Sh SEE ALSO
 .Xr cabs 3 ,
 .Xr fenv 3 ,
-.Xr math 3 ,
+.Xr math 3
 .Sh STANDARDS
 The
 .Fn csqrt ,
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r276236 - head/share/man/man4

2014-12-26 Thread Joel Dahl
Author: joel (doc committer)
Date: Fri Dec 26 09:35:23 2014
New Revision: 276236
URL: https://svnweb.freebsd.org/changeset/base/276236

Log:
  Minor mdoc fixes.

Modified:
  head/share/man/man4/netmap.4

Modified: head/share/man/man4/netmap.4
==
--- head/share/man/man4/netmap.4Fri Dec 26 09:18:33 2014
(r276235)
+++ head/share/man/man4/netmap.4Fri Dec 26 09:35:23 2014
(r276236)
@@ -243,7 +243,6 @@ contains the index of the first of these
 which are connected in a list (the first uint32_t of each
 buffer being the index of the next buffer in the list).
 A 0 indicates the end of the list.
-.Pp
 .It Dv struct netmap_ring (one per ring)
 .Bd -literal
 struct netmap_ring {
@@ -266,7 +265,6 @@ Implements transmit and receive rings, w
 pointers, metadata and and an array of
 .Pa slots
 describing the buffers.
-.Pp
 .It Dv struct netmap_slot (one per buffer)
 .Bd -literal
 struct netmap_slot {
@@ -367,7 +365,6 @@ are pushed to the port, and
 .Va tail
 may advance if further slots have become available.
 Below is an example of the evolution of a TX ring:
-.Pp
 .Bd -literal
 after the syscall, slots between cur and tail are (a)vailable
   head=cur   tail
@@ -455,7 +452,6 @@ it MUST be used when the buf_idx in the 
 This can be used to implement
 zero-copy forwarding, see
 .Sx ZERO-COPY FORWARDING .
-.Pp
 .It NS_REPORT
 reports when this buffer has been transmitted.
 Normally,
@@ -533,7 +529,6 @@ A file descriptor obtained through
 .Pa /dev/netmap
 also supports the ioctl supported by network devices, see
 .Xr netintro 4 .
-.Pp
 .Bl -tag -width 
 .It Dv NIOCGINFO
 returns EINVAL if the named port does not support netmap.
@@ -541,7 +536,6 @@ Otherwise, it returns 0 and (advisory) i
 about the port.
 Note that all the information below can change before the
 interface is actually put in netmap mode.
-.Pp
 .Bl -tag -width XX
 .It Pa nr_memsize
 indicates the size of the
@@ -603,7 +597,6 @@ that application libraries (such as the
 .Nm nm_open
 indicated below) can use to indicate the specific set of rings.
 In the example below, netmap:foo is any valid netmap port name.
-.Pp
 .Bl -tag -width X
 .It NR_REG_ALL_NIC netmap:foo
 (default) all hardware ring pairs
@@ -784,7 +777,6 @@ are controlled through sysctl variables 
 .Em ( dev.netmap.* )
 and module parameters on Linux
 .Em ( /sys/module/netmap_lin/parameters/* ) :
-.Pp
 .Bl -tag -width indent
 .It Va dev.netmap.admode: 0
 Controls the use of native or emulated adapter mode.
@@ -852,42 +844,6 @@ OS primitives, see
 In particular,
 .Xr pthread_setaffinity_np 3
 may be of use.
-.Sh CAVEATS
-No matter how fast the CPU and OS are,
-achieving line rate on 10G and faster interfaces
-requires hardware with sufficient performance.
-Several NICs are unable to sustain line rate with
-small packet sizes. Insufficient PCIe or memory bandwidth
-can also cause reduced performance.
-.Pp
-Another frequent reason for low performance is the use
-of flow control on the link: a slow receiver can limit
-the transmit speed.
-Be sure to disable flow control when running high
-speed experiments.
-.Pp
-.Ss SPECIAL NIC FEATURES
-.Nm
-is orthogonal to some NIC features such as
-multiqueue, schedulers, packet filters.
-.Pp
-Multiple transmit and receive rings are supported natively
-and can be configured with ordinary OS tools,
-such as
-.Xr ethtool
-or
-device-specific sysctl variables.
-The same goes for Receive Packet Steering (RPS)
-and filtering of incoming traffic.
-.Pp
-.Nm
-.Em does not use
-features such as
-.Em checksum offloading , TCP segmentation offloading ,
-.Em encryption , VLAN encapsulation/decapsulation ,
-etc. .
-When using netmap to exchange packets with the host stack,
-make sure to disable these features.
 .Sh EXAMPLES
 .Ss TEST PROGRAMS
 .Nm
@@ -1065,3 +1021,39 @@ and
 .Nm VALE
 have been funded by the European Commission within FP7 Projects
 CHANGE (257422) and OPENLAB (287581).
+.Sh CAVEATS
+No matter how fast the CPU and OS are,
+achieving line rate on 10G and faster interfaces
+requires hardware with sufficient performance.
+Several NICs are unable to sustain line rate with
+small packet sizes. Insufficient PCIe or memory bandwidth
+can also cause reduced performance.
+.Pp
+Another frequent reason for low performance is the use
+of flow control on the link: a slow receiver can limit
+the transmit speed.
+Be sure to disable flow control when running high
+speed experiments.
+.Pp
+.Ss SPECIAL NIC FEATURES
+.Nm
+is orthogonal to some NIC features such as
+multiqueue, schedulers, packet filters.
+.Pp
+Multiple transmit and receive rings are supported natively
+and can be configured with ordinary OS tools,
+such as
+.Xr ethtool
+or
+device-specific sysctl variables.
+The same goes for Receive Packet Steering (RPS)
+and filtering of incoming traffic.
+.Pp
+.Nm
+.Em does not use
+features such as
+.Em checksum offloading , 

svn commit: r276258 - in head: usr.bin/dpv usr.bin/iscsictl usr.bin/last usr.bin/man usr.bin/mkcsmapper usr.bin/mkesdb usr.bin/rup usr.bin/rusers usr.bin/rwall usr.bin/script usr.bin/setchannel usr...

2014-12-26 Thread Joel Dahl
Author: joel (doc committer)
Date: Fri Dec 26 21:56:23 2014
New Revision: 276258
URL: https://svnweb.freebsd.org/changeset/base/276258

Log:
  mdoc: sort SEE ALSO.

Modified:
  head/usr.bin/dpv/dpv.1
  head/usr.bin/iscsictl/iscsi.conf.5
  head/usr.bin/last/last.1
  head/usr.bin/man/man.1
  head/usr.bin/mkcsmapper/mkcsmapper.1
  head/usr.bin/mkesdb/mkesdb.1
  head/usr.bin/rup/rup.1
  head/usr.bin/rusers/rusers.1
  head/usr.bin/rwall/rwall.1
  head/usr.bin/script/script.1
  head/usr.bin/setchannel/setchannel.1
  head/usr.bin/showmount/showmount.8
  head/usr.sbin/bluetooth/btpand/btpand.8
  head/usr.sbin/bsnmpd/modules/snmp_bridge/snmp_bridge.3
  head/usr.sbin/bsnmpd/modules/snmp_wlan/snmp_wlan.3
  head/usr.sbin/gpioctl/gpioctl.8
  head/usr.sbin/gssd/gssd.8
  head/usr.sbin/jail/jail.8
  head/usr.sbin/nandsim/nandsim.8
  head/usr.sbin/nfsuserd/nfsuserd.8
  head/usr.sbin/rpc.umntall/rpc.umntall.8
  head/usr.sbin/rtadvctl/rtadvctl.8
  head/usr.sbin/rtadvd/rtadvd.conf.5

Modified: head/usr.bin/dpv/dpv.1
==
--- head/usr.bin/dpv/dpv.1  Fri Dec 26 21:45:01 2014(r276257)
+++ head/usr.bin/dpv/dpv.1  Fri Dec 26 21:56:23 2014(r276258)
@@ -359,9 +359,9 @@ dpv -o /dev/md42  /dev/zero
 .Ed
 .Sh SEE ALSO
 .Xr dialog 1 ,
-.Xr dialog 3 ,
 .Xr sh 1 ,
-.Xr Xdialog 1
+.Xr Xdialog 1 ,
+.Xr dialog 3
 .Sh HISTORY
 A
 .Nm

Modified: head/usr.bin/iscsictl/iscsi.conf.5
==
--- head/usr.bin/iscsictl/iscsi.conf.5  Fri Dec 26 21:45:01 2014
(r276257)
+++ head/usr.bin/iscsictl/iscsi.conf.5  Fri Dec 26 21:56:23 2014
(r276258)
@@ -175,8 +175,8 @@ chaptest {
 .Ed
 .Sh SEE ALSO
 .Xr iscsi_initiator 4 ,
-.Xr iscsictl 8 ,
-.Xr iscontrol 8
+.Xr iscontrol 8 ,
+.Xr iscsictl 8
 .Sh STANDARDS
 ISCSI RFC 3720
 .\Sh HISTORY

Modified: head/usr.bin/last/last.1
==
--- head/usr.bin/last/last.1Fri Dec 26 21:45:01 2014(r276257)
+++ head/usr.bin/last/last.1Fri Dec 26 21:56:23 2014(r276258)
@@ -198,9 +198,9 @@ login data base
 .El
 .Sh SEE ALSO
 .Xr lastcomm 1 ,
-.Xr lastlogin 8 ,
 .Xr getutxent 3 ,
-.Xr ac 8
+.Xr ac 8 ,
+.Xr lastlogin 8
 .Sh HISTORY
 A
 .Nm

Modified: head/usr.bin/man/man.1
==
--- head/usr.bin/man/man.1  Fri Dec 26 21:45:01 2014(r276257)
+++ head/usr.bin/man/man.1  Fri Dec 26 21:56:23 2014(r276258)
@@ -349,17 +349,17 @@ Local configuration files.
 .Sh SEE ALSO
 .Xr apropos 1 ,
 .Xr intro 1 ,
+.Xr locale 1 ,
+.Xr manpath 1 ,
+.Xr nroff 1 ,
+.Xr troff 1 ,
+.Xr whatis 1 ,
 .Xr intro 2 ,
 .Xr intro 3 ,
 .Xr intro 4 ,
 .Xr intro 5 ,
+.Xr man.conf 5 ,
 .Xr intro 6 ,
 .Xr intro 7 ,
 .Xr intro 8 ,
-.Xr intro 9 ,
-.Xr locale 1 ,
-.Xr manpath 1 ,
-.Xr nroff 1 ,
-.Xr troff 1 ,
-.Xr whatis 1 ,
-.Xr man.conf 5
+.Xr intro 9

Modified: head/usr.bin/mkcsmapper/mkcsmapper.1
==
--- head/usr.bin/mkcsmapper/mkcsmapper.1Fri Dec 26 21:45:01 2014
(r276257)
+++ head/usr.bin/mkcsmapper/mkcsmapper.1Fri Dec 26 21:56:23 2014
(r276258)
@@ -77,8 +77,8 @@ Generate pivot data from
 .Ex -std mkcsmapper
 .Sh SEE ALSO
 .Xr iconv 1 ,
-.Xr iconv 3 ,
-.Xr mkesdb 1
+.Xr mkesdb 1 ,
+.Xr iconv 3
 .Sh HISTORY
 .Nm
 first appeared in

Modified: head/usr.bin/mkesdb/mkesdb.1
==
--- head/usr.bin/mkesdb/mkesdb.1Fri Dec 26 21:45:01 2014
(r276257)
+++ head/usr.bin/mkesdb/mkesdb.1Fri Dec 26 21:56:23 2014
(r276258)
@@ -72,8 +72,8 @@ Put generated binary data to
 .Ex -std mkesdb
 .Sh SEE ALSO
 .Xr iconv 1 ,
-.Xr iconv 3 ,
-.Xr mkcsmapper 1
+.Xr mkcsmapper 1 ,
+.Xr iconv 3
 .Sh HISTORY
 .Nm
 first appeared in

Modified: head/usr.bin/rup/rup.1
==
--- head/usr.bin/rup/rup.1  Fri Dec 26 21:45:01 2014(r276257)
+++ head/usr.bin/rup/rup.1  Fri Dec 26 21:56:23 2014(r276258)
@@ -83,8 +83,8 @@ and cannot accommodate any RPC-based ser
 The host may be down.
 .El
 .Sh SEE ALSO
-.Xr rpcbind 8 ,
-.Xr rpc.rstatd 8
+.Xr rpc.rstatd 8 ,
+.Xr rpcbind 8
 .Sh HISTORY
 The
 .Nm

Modified: head/usr.bin/rusers/rusers.1
==
--- head/usr.bin/rusers/rusers.1Fri Dec 26 21:45:01 2014
(r276257)
+++ head/usr.bin/rusers/rusers.1Fri Dec 26 21:56:23 2014
(r276258)
@@ -92,8 +92,8 @@ The host may be down.
 .Xr rwho 1 ,
 .Xr users 1 ,
 .Xr who 1 ,
-.Xr rpcbind 8 ,
-.Xr rpc.rusersd 8
+.Xr rpc.rusersd 8 ,
+.Xr rpcbind 8
 .Sh HISTORY
 The
 .Nm

Modified: head/usr.bin/rwall/rwall.1

svn commit: r276292 - in head: share/man/man4/man4.i386 share/man/man4/man4.powerpc sys/boot/forth sys/teken/libteken tools/tools/ether_reflect tools/tools/vimage

2014-12-26 Thread Joel Dahl
Author: joel (doc committer)
Date: Sat Dec 27 07:07:37 2014
New Revision: 276292
URL: https://svnweb.freebsd.org/changeset/base/276292

Log:
  mdoc: improvements to SEE ALSO.

Modified:
  head/share/man/man4/man4.i386/glxsb.4
  head/share/man/man4/man4.powerpc/snd_ai2s.4
  head/share/man/man4/man4.powerpc/snd_davbus.4
  head/sys/boot/forth/brand.4th.8
  head/sys/boot/forth/delay.4th.8
  head/sys/boot/forth/menu.4th.8
  head/sys/boot/forth/menusets.4th.8
  head/sys/boot/forth/version.4th.8
  head/sys/teken/libteken/teken.3
  head/tools/tools/ether_reflect/ether_reflect.1
  head/tools/tools/vimage/vimage.8

Modified: head/share/man/man4/man4.i386/glxsb.4
==
--- head/share/man/man4/man4.i386/glxsb.4   Sat Dec 27 05:24:18 2014
(r276291)
+++ head/share/man/man4/man4.i386/glxsb.4   Sat Dec 27 07:07:37 2014
(r276292)
@@ -70,8 +70,8 @@ device driver with AES keys of length !=
 .Sh SEE ALSO
 .Xr crypto 4 ,
 .Xr intro 4 ,
-.Xr pci 4 ,
 .Xr ipsec 4 ,
+.Xr pci 4 ,
 .Xr random 4 ,
 .Xr crypto 9
 .Sh HISTORY

Modified: head/share/man/man4/man4.powerpc/snd_ai2s.4
==
--- head/share/man/man4/man4.powerpc/snd_ai2s.4 Sat Dec 27 05:24:18 2014
(r276291)
+++ head/share/man/man4/man4.powerpc/snd_ai2s.4 Sat Dec 27 07:07:37 2014
(r276292)
@@ -65,8 +65,8 @@ Apple Tumbler Audio
 Apple Snapper Audio
 .El
 .Sh SEE ALSO
-.Xr sound 4 ,
-.Xr snd_davbus 4
+.Xr snd_davbus 4 ,
+.Xr sound 4
 .Sh HISTORY
 The
 .Nm

Modified: head/share/man/man4/man4.powerpc/snd_davbus.4
==
--- head/share/man/man4/man4.powerpc/snd_davbus.4   Sat Dec 27 05:24:18 
2014(r276291)
+++ head/share/man/man4/man4.powerpc/snd_davbus.4   Sat Dec 27 07:07:37 
2014(r276292)
@@ -63,8 +63,8 @@ Apple Burgundy Audio
 Apple Screamer Audio
 .El
 .Sh SEE ALSO
-.Xr sound 4 ,
-.Xr snd_ai2s 4
+.Xr snd_ai2s 4 ,
+.Xr sound 4
 .Sh HISTORY
 The
 .Nm

Modified: head/sys/boot/forth/brand.4th.8
==
--- head/sys/boot/forth/brand.4th.8 Sat Dec 27 05:24:18 2014
(r276291)
+++ head/sys/boot/forth/brand.4th.8 Sat Dec 27 07:07:37 2014
(r276292)
@@ -111,7 +111,7 @@ loader_brand=fbsd
 .Ed
 .Sh SEE ALSO
 .Xr loader.conf 5 ,
-.Xr loader 8 ,
+.Xr loader 8
 .Sh HISTORY
 The
 .Nm

Modified: head/sys/boot/forth/delay.4th.8
==
--- head/sys/boot/forth/delay.4th.8 Sat Dec 27 05:24:18 2014
(r276291)
+++ head/sys/boot/forth/delay.4th.8 Sat Dec 27 07:07:37 2014
(r276292)
@@ -110,8 +110,8 @@ delay_execute
 .Ed
 .Sh SEE ALSO
 .Xr loader.conf 5 ,
-.Xr loader 8 ,
 .Xr beastie.4th 8 ,
+.Xr loader 8 ,
 .Xr loader.4th 8
 .Sh HISTORY
 The

Modified: head/sys/boot/forth/menu.4th.8
==
--- head/sys/boot/forth/menu.4th.8  Sat Dec 27 05:24:18 2014
(r276291)
+++ head/sys/boot/forth/menu.4th.8  Sat Dec 27 07:07:37 2014
(r276292)
@@ -336,9 +336,9 @@ menu-display
 .Ed
 .Sh SEE ALSO
 .Xr loader.conf 5 ,
+.Xr beastie.4th 8 ,
 .Xr loader 8 ,
-.Xr loader.4th 8 ,
-.Xr beastie.4th 8
+.Xr loader.4th 8
 .Sh HISTORY
 The
 .Nm

Modified: head/sys/boot/forth/menusets.4th.8
==
--- head/sys/boot/forth/menusets.4th.8  Sat Dec 27 05:24:18 2014
(r276291)
+++ head/sys/boot/forth/menusets.4th.8  Sat Dec 27 07:07:37 2014
(r276292)
@@ -355,10 +355,10 @@ set submenu_command[1]=1 goto_menu
 .Ed
 .Sh SEE ALSO
 .Xr loader.conf 5 ,
+.Xr beastie.4th 8 ,
 .Xr loader 8 ,
 .Xr loader.4th 8 ,
-.Xr menu.4th 8 ,
-.Xr beastie.4th 8
+.Xr menu.4th 8
 .Sh HISTORY
 The
 .Nm

Modified: head/sys/boot/forth/version.4th.8
==
--- head/sys/boot/forth/version.4th.8   Sat Dec 27 05:24:18 2014
(r276291)
+++ head/sys/boot/forth/version.4th.8   Sat Dec 27 07:07:37 2014
(r276292)
@@ -113,8 +113,8 @@ loader_version=loader 1.1
 .Ed
 .Sh SEE ALSO
 .Xr loader.conf 5 ,
-.Xr loader 8 ,
-.Xr color.4th 8
+.Xr color.4th 8 ,
+.Xr loader 8
 .Sh HISTORY
 The
 .Nm

Modified: head/sys/teken/libteken/teken.3
==
--- head/sys/teken/libteken/teken.3 Sat Dec 27 05:24:18 2014
(r276291)
+++ head/sys/teken/libteken/teken.3 Sat Dec 27 07:07:37 2014
(r276292)
@@ -188,7 +188,7 @@ prior to 9.0.
 .Sh SEE ALSO
 .Xr ncurses 3 ,
 .Xr termcap 3 ,
-.Xr syscons 4 .
+.Xr syscons 4
 .Sh HISTORY
 The
 .Nm

Modified: head/tools/tools/ether_reflect/ether_reflect.1
==
--- 

svn commit: r274925 - in head: lib/libc/sys lib/libdpv sbin/ipfw share/man/man4 share/man/man4/man4.arm share/man/man9 sys/boot/common sys/boot/i386/gptzfsboot usr.bin/dpv

2014-11-23 Thread Joel Dahl
Author: joel (doc committer)
Date: Sun Nov 23 21:00:00 2014
New Revision: 274925
URL: https://svnweb.freebsd.org/changeset/base/274925

Log:
  Misc mdoc fixes:
  
  - Remove superfluous paragraph macros.
  - Remove/fix empty or incorrect macros.
  - Sort sections into conventional order.
  - Terminate quoted strings properly.
  - Remove EOL whitespace.

Modified:
  head/lib/libc/sys/poll.2
  head/lib/libdpv/dpv.3
  head/sbin/ipfw/ipfw.8
  head/share/man/man4/gre.4
  head/share/man/man4/man4.arm/cgem.4
  head/share/man/man4/me.4
  head/share/man/man4/netmap.4
  head/share/man/man9/get_cyclecount.9
  head/share/man/man9/malloc.9
  head/share/man/man9/sleepqueue.9
  head/sys/boot/common/zfsloader.8
  head/sys/boot/i386/gptzfsboot/gptzfsboot.8
  head/usr.bin/dpv/dpv.1

Modified: head/lib/libc/sys/poll.2
==
--- head/lib/libc/sys/poll.2Sun Nov 23 19:13:17 2014(r274924)
+++ head/lib/libc/sys/poll.2Sun Nov 23 21:00:00 2014(r274925)
@@ -180,7 +180,6 @@ specifies a signal mask which is set whi
 When 
 .Fn ppoll
 returns, the original signal mask is restored.
-.Pp
 .Bd -literal
 struct timespec {
time_t  tv_sec; /* seconds */

Modified: head/lib/libdpv/dpv.3
==
--- head/lib/libdpv/dpv.3   Sun Nov 23 19:13:17 2014(r274924)
+++ head/lib/libdpv/dpv.3   Sun Nov 23 21:00:00 2014(r274925)
@@ -502,7 +502,7 @@ This does not effect
 .Xr Xdialog 1 ,
 which renders the color escape sequences as plain text.
 See
-.Do Li
+.Do
 embedded \\Z sequences
 .Dc
 in

Modified: head/sbin/ipfw/ipfw.8
==
--- head/sbin/ipfw/ipfw.8   Sun Nov 23 19:13:17 2014(r274924)
+++ head/sbin/ipfw/ipfw.8   Sun Nov 23 21:00:00 2014(r274925)
@@ -1642,7 +1642,6 @@ be specified as:
 .Pp
 Note that the ampersand character has a special meaning in many shells
 and should generally be escaped.
-.Pp
 .El
 Note that the order of MAC addresses (destination first,
 source second) is
@@ -1991,7 +1990,7 @@ It may be possible to check what entry w
 .Ar table-key
 using
 .Cm lookup
-.Ae table-key
+.Ar table-key
 command.
 This functionality is optional and may be unsupported in some algorithms.
 .Pp

Modified: head/share/man/man4/gre.4
==
--- head/share/man/man4/gre.4   Sun Nov 23 19:13:17 2014(r274924)
+++ head/share/man/man4/gre.4   Sun Nov 23 21:00:00 2014(r274925)
@@ -91,7 +91,6 @@ Enables checksum calculation for outgoin
 Enables use of sequence number field in the GRE header for outgoing packets.
 .El
 .Sh EXAMPLES
-.Pp
 .Bd -literal
 192.168.1.* --- Router A  ---tunnel Router B --- 192.168.2.*
\\  /
@@ -151,7 +150,6 @@ A description of GRE encapsulation can b
 .An Andrey V. Elsukov Aq Mt a...@freebsd.org
 .An Heiko W.Rupp Aq Mt h...@pilhuhn.de
 .Sh BUGS
-.Pp
 The current implementation uses the key only for outgoing packets.
 Incoming packets with a different key or without a key will be treated as if 
they
 would belong to this interface.

Modified: head/share/man/man4/man4.arm/cgem.4
==
--- head/share/man/man4/man4.arm/cgem.4 Sun Nov 23 19:13:17 2014
(r274924)
+++ head/share/man/man4/man4.arm/cgem.4 Sun Nov 23 21:00:00 2014
(r274925)
@@ -248,6 +248,23 @@ checksum offloading is enabled.
 Counter of frames discarded due to an incorrect UDP checksum when
 checksum offloading is enabled.
 .El
+.Sh SEE ALSO
+.Xr miibus 4 ,
+.Xr ifconfig 8
+.Rs
+.%T Zynq-7000 SoC Technical Reference Manual (Xilinx doc UG585)
+.%U 
http://www.xilinx.com/support/documentation/user_guides/\:ug585-Zynq-7000-TRM.pdf
+.Re
+.Sh HISTORY
+The
+.Nm
+device driver first appeared in
+.Fx 10.0 .
+.Sh AUTHORS
+The
+.Nm
+driver and this manual page was written by
+.An Thomas Skibo Aq Mt thomassk...@yahoo.com .
 .Sh BUGS
 The GEM can perform TCP/UDP/IP checksum offloading.
 However, when transmit checksum offloading is enabled, the GEM generates and
@@ -277,21 +294,3 @@ If the bug does not exist in other versi
 work-around can be disabled by setting the dev.cgem.%d.rxhangwar
 .Xr sysctl 8
 variable to 0.
-.Pp
-.Sh SEE ALSO
-.Xr miibus 4 ,
-.Xr ifconfig 8
-.Rs
-.%T Zynq-7000 SoC Technical Reference Manual (Xilinx doc UG585)
-.%U 
http://www.xilinx.com/support/documentation/user_guides/\:ug585-Zynq-7000-TRM.pdf
-.Re
-.Sh HISTORY
-The
-.Nm
-device driver first appeared in
-.Fx 10.0 .
-.Sh AUTHORS
-The
-.Nm
-driver and this manual page was written by
-.An Thomas Skibo Aq Mt thomassk...@yahoo.com .

Modified: head/share/man/man4/me.4
==
--- head/share/man/man4/me.4Sun Nov 23 

Re: svn commit: r274925 - in head: lib/libc/sys lib/libdpv sbin/ipfw share/man/man4 share/man/man4/man4.arm share/man/man9 sys/boot/common sys/boot/i386/gptzfsboot usr.bin/dpv

2014-11-23 Thread Joel Dahl
On Sun, Nov 23, 2014 at 10:04:12PM +0100, Baptiste Daroussin wrote:
 On Sun, Nov 23, 2014 at 09:00:00PM +, Joel Dahl wrote:
  Author: joel (doc committer)
  Date: Sun Nov 23 21:00:00 2014
  New Revision: 274925
  URL: https://svnweb.freebsd.org/changeset/base/274925
  
  Log:
Misc mdoc fixes:

- Remove superfluous paragraph macros.
- Remove/fix empty or incorrect macros.
- Sort sections into conventional order.
- Terminate quoted strings properly.
- Remove EOL whitespace.
  
  Modified:
head/lib/libc/sys/poll.2
head/lib/libdpv/dpv.3
head/sbin/ipfw/ipfw.8
head/share/man/man4/gre.4
head/share/man/man4/man4.arm/cgem.4
head/share/man/man4/me.4
head/share/man/man4/netmap.4
head/share/man/man9/get_cyclecount.9
head/share/man/man9/malloc.9
head/share/man/man9/sleepqueue.9
head/sys/boot/common/zfsloader.8
head/sys/boot/i386/gptzfsboot/gptzfsboot.8
head/usr.bin/dpv/dpv.1
  
 
 [...]
 
  +.Sh AUTHORS
  +This manual page was written by
  +.An Andriy Gapon Aq a...@freebsd.org .
^ There should be a Mt here to properly render in html
 
 I just picked one in the middle of this commit. In general every mail on any
 manpage Mt should be used.

Sure. Feel free to go over our manpages and fix them. It's a minor issue.

And while we're on the subject, there's a bit of background to this commit.
Back in 2012 I started fixing mandoc lint errors/warnings in our manpage
collection (excluding stuff from contrib/ and gnu/ etc.). I think I got them
down from around ~4000 issues to almost zero. Quite a few manpages didn't
even work with mandoc at the time, due to how many syntactical mdoc errors
they had. The situation is still good, but I re-ran my scripts yesterday and
found a slew of new warnings. I fixed a few obvious ones, but if someone with
more time on his hands wants to help, please go ahead. A good starting point
would probably the netmap.4 or ctl.conf.5 manpages, they seem to generate
quite a few warnings.

I'd also be grateful if everyone ran mandoc -Tlint on their manpages before
committing. :-)

-- 
Joel
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r271314 - head/share/man/man9

2014-09-09 Thread Joel Dahl
Author: joel (doc committer)
Date: Tue Sep  9 14:31:56 2014
New Revision: 271314
URL: http://svnweb.freebsd.org/changeset/base/271314

Log:
  - Add missing 
  - Sort sections

Modified:
  head/share/man/man9/sysctl.9

Modified: head/share/man/man9/sysctl.9
==
--- head/share/man/man9/sysctl.9Tue Sep  9 14:20:55 2014
(r271313)
+++ head/share/man/man9/sysctl.9Tue Sep  9 14:31:56 2014
(r271314)
@@ -105,7 +105,7 @@
 .Fa void *ptr
 .Fa intptr_t len
 .Fa const char *format
-.Fa const char *descr
+.Fa const char *descr
 .Fc
 .Ft struct sysctl_oid *
 .Fo SYSCTL_ADD_PROC
@@ -505,49 +505,6 @@ enviroment early during module load or s
 .It Dv CTLFLAG_DYN
 Dynamically created OIDs automatically get this flag set.
 .El
-.Sh SECURITY CONSIDERATIONS
-When creating new sysctls, careful attention should be paid to the security
-implications of the monitoring or management interface being created.
-Most sysctls present in the kernel are read-only or writable only by the
-superuser.
-Sysctls exporting extensive information on system data structures and
-operation, especially those implemented using procedures, will wish to
-implement access control to limit the undesired exposure of information about
-other processes, network connections, etc.
-.Pp
-The following top level sysctl name spaces are commonly used:
-.Bl -tag -width .Va regression
-.It Va compat
-Compatibility layer information.
-.It Va debug
-Debugging information.
-Various name spaces exist under
-.Va debug .
-.It Va hw
-Hardware and device driver information.
-.It Va kern
-Kernel behavior tuning; generally deprecated in favor of more specific
-name spaces.
-.It Va machdep
-Machine-dependent configuration parameters.
-.It Va net
-Network subsystem.
-Various protocols have name spaces under
-.Va net .
-.It Va regression
-Regression test configuration and information.
-.It Va security
-Security and security-policy configuration and information.
-.It Va sysctl
-Reserved name space for the implementation of sysctl.
-.It Va user
-Configuration settings relating to user application behavior.
-Generally, configuring applications using kernel sysctls is discouraged.
-.It Va vfs
-Virtual file system configuration and information.
-.It Va vm
-Virtual memory subsystem configuration and information.
-.El
 .Sh EXAMPLES
 Sample use of
 .Fn SYSCTL_DECL
@@ -702,3 +659,46 @@ addition of MIB nodes.
 .Pp
 This man page was written by
 .An Robert N. M. Watson .
+.Sh SECURITY CONSIDERATIONS
+When creating new sysctls, careful attention should be paid to the security
+implications of the monitoring or management interface being created.
+Most sysctls present in the kernel are read-only or writable only by the
+superuser.
+Sysctls exporting extensive information on system data structures and
+operation, especially those implemented using procedures, will wish to
+implement access control to limit the undesired exposure of information about
+other processes, network connections, etc.
+.Pp
+The following top level sysctl name spaces are commonly used:
+.Bl -tag -width .Va regression
+.It Va compat
+Compatibility layer information.
+.It Va debug
+Debugging information.
+Various name spaces exist under
+.Va debug .
+.It Va hw
+Hardware and device driver information.
+.It Va kern
+Kernel behavior tuning; generally deprecated in favor of more specific
+name spaces.
+.It Va machdep
+Machine-dependent configuration parameters.
+.It Va net
+Network subsystem.
+Various protocols have name spaces under
+.Va net .
+.It Va regression
+Regression test configuration and information.
+.It Va security
+Security and security-policy configuration and information.
+.It Va sysctl
+Reserved name space for the implementation of sysctl.
+.It Va user
+Configuration settings relating to user application behavior.
+Generally, configuring applications using kernel sysctls is discouraged.
+.It Va vfs
+Virtual file system configuration and information.
+.It Va vm
+Virtual memory subsystem configuration and information.
+.El
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r271315 - head/lib/libc/sys

2014-09-09 Thread Joel Dahl
Author: joel (doc committer)
Date: Tue Sep  9 14:34:54 2014
New Revision: 271315
URL: http://svnweb.freebsd.org/changeset/base/271315

Log:
  Minor mdoc nit.

Modified:
  head/lib/libc/sys/kqueue.2

Modified: head/lib/libc/sys/kqueue.2
==
--- head/lib/libc/sys/kqueue.2  Tue Sep  9 14:31:56 2014(r271314)
+++ head/lib/libc/sys/kqueue.2  Tue Sep  9 14:34:54 2014(r271315)
@@ -478,7 +478,6 @@ is in microseconds.
 .It Dv NOTE_NSECONDS
 .Va data
 is in nanoseconds.
-.It
 .El
 .Pp
 If
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r271188 - head/share/man/man4

2014-09-06 Thread Joel Dahl
Author: joel (doc committer)
Date: Sat Sep  6 11:19:12 2014
New Revision: 271188
URL: http://svnweb.freebsd.org/changeset/base/271188

Log:
  mdoc: remove superfluous paragraph macro.

Modified:
  head/share/man/man4/uled.4

Modified: head/share/man/man4/uled.4
==
--- head/share/man/man4/uled.4  Sat Sep  6 09:03:13 2014(r271187)
+++ head/share/man/man4/uled.4  Sat Sep  6 11:19:12 2014(r271188)
@@ -73,7 +73,6 @@ struct uled_color {
uint8_t blue;
 };
 .Ed
-.Pp
 .It Dv ULED_SET_COLOR
 The command sets LED colors with values for RGB.
 It uses the same structure as above.
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r269247 - head/sbin/geom/class/virstor

2014-07-29 Thread Joel Dahl
Author: joel (doc committer)
Date: Tue Jul 29 19:38:17 2014
New Revision: 269247
URL: http://svnweb.freebsd.org/changeset/base/269247

Log:
  mdoc: sort sections.

Modified:
  head/sbin/geom/class/virstor/gvirstor.8

Modified: head/sbin/geom/class/virstor/gvirstor.8
==
--- head/sbin/geom/class/virstor/gvirstor.8 Tue Jul 29 18:31:44 2014
(r269246)
+++ head/sbin/geom/class/virstor/gvirstor.8 Tue Jul 29 19:38:17 2014
(r269247)
@@ -257,6 +257,10 @@ The
 .Nm
 utility first appeared in
 .Fx 7.0 .
+.Sh AUTHORS
+.An Ivan Voras Aq Mt ivo...@freebsd.org
+.Pp
+Sponsored by Google Summer of Code 2006.
 .Sh BUGS
 Commands
 .Cm add
@@ -293,7 +297,3 @@ and all their structures will be physica
 of the first virstor component.
 This could have a significant impact on file system performance
 .Pq which can in some rare cases be even positive .
-.Sh AUTHORS
-.An Ivan Voras Aq Mt ivo...@freebsd.org
-.Pp
-Sponsored by Google Summer of Code 2006.
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r269248 - head/share/man/man3

2014-07-29 Thread Joel Dahl
Author: joel (doc committer)
Date: Tue Jul 29 19:41:00 2014
New Revision: 269248
URL: http://svnweb.freebsd.org/changeset/base/269248

Log:
  Silence mandoc lint.

Modified:
  head/share/man/man3/offsetof.3

Modified: head/share/man/man3/offsetof.3
==
--- head/share/man/man3/offsetof.3  Tue Jul 29 19:38:17 2014
(r269247)
+++ head/share/man/man3/offsetof.3  Tue Jul 29 19:41:00 2014
(r269248)
@@ -16,7 +16,7 @@
 .\
 .\ $FreeBSD$
 .\
-.Dd February 18 2010
+.Dd February 18, 2010
 .Dt OFFSETOF 3
 .Os
 .Sh NAME
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r269249 - head/share/man/man9

2014-07-29 Thread Joel Dahl
Author: joel (doc committer)
Date: Tue Jul 29 19:43:00 2014
New Revision: 269249
URL: http://svnweb.freebsd.org/changeset/base/269249

Log:
  mdoc: remove superfluous paragraph macro.

Modified:
  head/share/man/man9/pmap_unwire.9

Modified: head/share/man/man9/pmap_unwire.9
==
--- head/share/man/man9/pmap_unwire.9   Tue Jul 29 19:41:00 2014
(r269248)
+++ head/share/man/man9/pmap_unwire.9   Tue Jul 29 19:43:00 2014
(r269249)
@@ -40,7 +40,6 @@
 .Fa pmap_t pmap vm_offset_t start vm_offset_t end
 .Fc
 .Sh DESCRIPTION
-.Pp
 The function
 .Fn pmap_unwire
 removes the wired attribute from each of the virtual-to-physical page mappings
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r269250 - in head/usr.bin/m4: . lib

2014-07-29 Thread Joel Dahl
Author: joel (doc committer)
Date: Tue Jul 29 19:46:13 2014
New Revision: 269250
URL: http://svnweb.freebsd.org/changeset/base/269250

Log:
  mdoc: fix date.

Modified:
  head/usr.bin/m4/lib/ohash_init.3
  head/usr.bin/m4/lib/ohash_interval.3
  head/usr.bin/m4/m4.1

Modified: head/usr.bin/m4/lib/ohash_init.3
==
--- head/usr.bin/m4/lib/ohash_init.3Tue Jul 29 19:43:00 2014
(r269249)
+++ head/usr.bin/m4/lib/ohash_init.3Tue Jul 29 19:46:13 2014
(r269250)
@@ -15,7 +15,7 @@
 .\
 .\ $FreeBSD$
 .\
-.Dd May 12 2014
+.Dd May 12, 2014
 .Dt OHASH_INIT 3
 .Os
 .Sh NAME

Modified: head/usr.bin/m4/lib/ohash_interval.3
==
--- head/usr.bin/m4/lib/ohash_interval.3Tue Jul 29 19:43:00 2014
(r269249)
+++ head/usr.bin/m4/lib/ohash_interval.3Tue Jul 29 19:46:13 2014
(r269250)
@@ -15,7 +15,7 @@
 .\
 .\ $FreeBSD$
 .\
-.Dd June 5 2013
+.Dd June 5, 2013
 .Dt OHASH_INTERVAL 3
 .Os
 .Sh NAME

Modified: head/usr.bin/m4/m4.1
==
--- head/usr.bin/m4/m4.1Tue Jul 29 19:43:00 2014(r269249)
+++ head/usr.bin/m4/m4.1Tue Jul 29 19:46:13 2014(r269250)
@@ -33,7 +33,7 @@
 .\
 .\ $FreeBSD$
 .\
-.Dd January 12 2014 $
+.Dd January 12, 2014
 .Dt M4 1
 .Os
 .Sh NAME
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r269251 - in head: usr.bin/systat usr.sbin/binmiscctl usr.sbin/config usr.sbin/pmcstat

2014-07-29 Thread Joel Dahl
Author: joel (doc committer)
Date: Tue Jul 29 19:49:27 2014
New Revision: 269251
URL: http://svnweb.freebsd.org/changeset/base/269251

Log:
  mdoc: kill EOL whitespace.

Modified:
  head/usr.bin/systat/systat.1
  head/usr.sbin/binmiscctl/binmiscctl.8
  head/usr.sbin/config/config.8
  head/usr.sbin/pmcstat/pmcstat.8

Modified: head/usr.bin/systat/systat.1
==
--- head/usr.bin/systat/systat.1Tue Jul 29 19:46:13 2014
(r269250)
+++ head/usr.bin/systat/systat.1Tue Jul 29 19:49:27 2014
(r269251)
@@ -119,7 +119,7 @@ of the list. For example:
 .Pp
 .Dl Nm Fl ifstat Fl match Ar bge0,em1 Fl pps
 .Pp
-This will display statistics of packets per second for network interfaces 
+This will display statistics of packets per second for network interfaces
 named as bge0 and em1.
 .Pp
 .Dl Nm Fl iostat Fl numeric Fl - Ar 2.1

Modified: head/usr.sbin/binmiscctl/binmiscctl.8
==
--- head/usr.sbin/binmiscctl/binmiscctl.8   Tue Jul 29 19:46:13 2014
(r269250)
+++ head/usr.sbin/binmiscctl/binmiscctl.8   Tue Jul 29 19:49:27 2014
(r269251)
@@ -28,7 +28,7 @@
 .\ Support for miscellaneous binary image activators
 .\
 .Dd April 10, 2014
-.Dt BINMISCCTL 8 
+.Dt BINMISCCTL 8
 .Os
 .Sh NAME
 .Nm binmiscctl
@@ -142,7 +142,7 @@ Enable the activator entry identified wi
 .It Cm lookup Ar name
 Look up and print out the activator entry identified with
 .Ar name .
-.It Cm list 
+.It Cm list
 Take a snapshot and print all the activator entries currently configured.
 .El
 .Sh EXAMPLES
@@ -162,13 +162,13 @@ Set its state to enabled.
 .Pp
 .Dl # binmiscctl disable llvmbc
 .Pp
-Set the state of the 
+Set the state of the
 .Ar llvmbc
 image activator to disabled.
 .Pp
 .Dl # binmiscctl enable llvmbc
 .Pp
-Set the state of the 
+Set the state of the
 .Ar llvmbc
 image activator to enabled.
 .Pp

Modified: head/usr.sbin/config/config.8
==
--- head/usr.sbin/config/config.8   Tue Jul 29 19:46:13 2014
(r269250)
+++ head/usr.sbin/config/config.8   Tue Jul 29 19:49:27 2014
(r269251)
@@ -73,7 +73,7 @@ This flag is kept for backward compatibi
 .It Fl I Ar path
 Search in
 .Ar path
-for any file included by the 
+for any file included by the
 .Ic include
 directive.  This option may be specified more than once.
 .It Fl d Ar destdir

Modified: head/usr.sbin/pmcstat/pmcstat.8
==
--- head/usr.sbin/pmcstat/pmcstat.8 Tue Jul 29 19:46:13 2014
(r269250)
+++ head/usr.sbin/pmcstat/pmcstat.8 Tue Jul 29 19:49:27 2014
(r269251)
@@ -235,7 +235,7 @@ lookup information is available.
 This option requires the
 .Fl R
 option to read in samples that were previously collected and
-saved with the 
+saved with the
 .Fl o
 option.
 .It Fl c Ar cpu-spec
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r267968 - head/share/man/man4

2014-06-27 Thread Joel Dahl
Author: joel (doc committer)
Date: Fri Jun 27 18:32:20 2014
New Revision: 267968
URL: http://svnweb.freebsd.org/changeset/base/267968

Log:
  Minor mdoc fix.

Modified:
  head/share/man/man4/vt.4

Modified: head/share/man/man4/vt.4
==
--- head/share/man/man4/vt.4Fri Jun 27 18:24:20 2014(r267967)
+++ head/share/man/man4/vt.4Fri Jun 27 18:32:20 2014(r267968)
@@ -208,7 +208,7 @@ terminal initialization information
 .Xr moused 8
 .Sh HISTORY
 The
-Nm
+.Nm
 driver first appeared in
 .Fx 9.3 .
 .Sh AUTHORS
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r267803 - in head: cddl/contrib/opensolaris/cmd/zpool lib/libc/sys lib/libcuse lib/libpam/modules/pam_passwdqc lib/libpmc lib/libutil libexec/rtld-elf sbin/ifconfig sbin/ipfw sbin/mount...

2014-06-23 Thread Joel Dahl
Author: joel (doc committer)
Date: Mon Jun 23 18:40:21 2014
New Revision: 267803
URL: http://svnweb.freebsd.org/changeset/base/267803

Log:
  mdoc: remove superfluous paragraph macros.

Modified:
  head/cddl/contrib/opensolaris/cmd/zpool/zpool.8
  head/lib/libc/sys/intro.2
  head/lib/libcuse/cuse.3
  head/lib/libpam/modules/pam_passwdqc/pam_passwdqc.8
  head/lib/libpmc/pmc.k8.3
  head/lib/libpmc/pmc.p4.3
  head/lib/libutil/fparseln.3
  head/lib/libutil/login_class.3
  head/libexec/rtld-elf/rtld.1
  head/sbin/ifconfig/ifconfig.8
  head/sbin/ipfw/ipfw.8
  head/sbin/mount_fusefs/mount_fusefs.8
  head/sbin/natd/natd.8
  head/sbin/pfctl/pfctl.8
  head/share/man/man4/est.4
  head/share/man/man4/mxge.4
  head/share/man/man4/ng_async.4
  head/share/man/man4/ng_ccatm.4
  head/share/man/man4/sysmouse.4
  head/share/man/man4/tty.4
  head/share/man/man4/vale.4
  head/share/man/man9/ifnet.9

Modified: head/cddl/contrib/opensolaris/cmd/zpool/zpool.8
==
--- head/cddl/contrib/opensolaris/cmd/zpool/zpool.8 Mon Jun 23 18:13:42 
2014(r267802)
+++ head/cddl/contrib/opensolaris/cmd/zpool/zpool.8 Mon Jun 23 18:40:21 
2014(r267803)
@@ -1041,7 +1041,6 @@ the following fields:
 See the
 .Qq Sx Properties
 section for more information on the available pool properties.
-.Pp
 .It Fl H
 Scripted mode. Do not display headers, and separate fields by a single tab
 instead of arbitrary space.

Modified: head/lib/libc/sys/intro.2
==
--- head/lib/libc/sys/intro.2   Mon Jun 23 18:13:42 2014(r267802)
+++ head/lib/libc/sys/intro.2   Mon Jun 23 18:40:21 2014(r267803)
@@ -133,7 +133,6 @@ executable file.
 A file descriptor argument was out of range, referred to no open file,
 or a read (write) request was made to a file that was only open for
 writing (reading).
-.Pp
 .It Er 10 ECHILD Em \No child processes .
 A
 .Xr wait 2
@@ -302,7 +301,6 @@ addresses with
 Internet protocols.
 .It Er 48 EADDRINUSE Em Address already in use .
 Only one usage of each address is normally permitted.
-.Pp
 .It Er 49 EADDRNOTAVAIL Em Can't assign requested address .
 Normally results from an attempt to create a socket with an
 address not on this machine.

Modified: head/lib/libcuse/cuse.3
==
--- head/lib/libcuse/cuse.3 Mon Jun 23 18:13:42 2014(r267802)
+++ head/lib/libcuse/cuse.3 Mon Jun 23 18:40:21 2014(r267803)
@@ -262,7 +262,6 @@ is returned.
 .Ft void
 .Fn cuse_poll_wakeup void
 This function will wake up any file pollers.
-.Pp
 .Sh LIBRARY LIMITATIONS
 Transfer lengths for
 .Fn read ,
@@ -374,7 +373,6 @@ values in case of failure and success.
 The events argument is also a mask of
 .Dv CUSE_POLL_XXX
 values.
-.Pp
 .Bd -literal -offset indent
 struct cuse_methods {
   cuse_open_t *cm_open;

Modified: head/lib/libpam/modules/pam_passwdqc/pam_passwdqc.8
==
--- head/lib/libpam/modules/pam_passwdqc/pam_passwdqc.8 Mon Jun 23 18:13:42 
2014(r267802)
+++ head/lib/libpam/modules/pam_passwdqc/pam_passwdqc.8 Mon Jun 23 18:40:21 
2014(r267803)
@@ -123,7 +123,6 @@ password are not counted.
 In addition to being sufficiently long, passwords are required to
 contain enough different characters for the character classes and
 the minimum length they have been checked against.
-.Pp
 .It Cm max Ns = Ns Ar N
 .Pq Cm max Ns = Ns 40
 The maximum allowed password length.

Modified: head/lib/libpmc/pmc.k8.3
==
--- head/lib/libpmc/pmc.k8.3Mon Jun 23 18:13:42 2014(r267802)
+++ head/lib/libpmc/pmc.k8.3Mon Jun 23 18:40:21 2014(r267803)
@@ -672,7 +672,6 @@ Count memory controller high priority by
 .It Li memory-controller-lo-pri-bypass
 Count memory controller low priority bypasses.
 .El
-.Pp
 .It Li k8-nb-memory-controller-dram-slots-missed
 .Pq Event E2H
 Count memory controller DRAM command slots missed (in MemClks).

Modified: head/lib/libpmc/pmc.p4.3
==
--- head/lib/libpmc/pmc.p4.3Mon Jun 23 18:13:42 2014(r267802)
+++ head/lib/libpmc/pmc.p4.3Mon Jun 23 18:40:21 2014(r267803)
@@ -541,7 +541,6 @@ can take the following value (which is a
 .It Li running
 Count cycles when the processor is active.
 .El
-.Pp
 .It Li p4-instr-retired Op Li ,mask= Ns Ar flags
 .Pq TS event
 Count instructions retired during a clock cycle.

Modified: head/lib/libutil/fparseln.3
==
--- head/lib/libutil/fparseln.3 Mon Jun 23 18:13:42 2014(r267802)
+++ head/lib/libutil/fparseln.3 Mon Jun 23 18:40:21 2014(r267803)
@@ -122,7 +122,6 @@ Remove escape 

svn commit: r267501 - head/usr.bin/ssh-copy-id

2014-06-15 Thread Joel Dahl
Author: joel (doc committer)
Date: Sun Jun 15 10:18:57 2014
New Revision: 267501
URL: http://svnweb.freebsd.org/changeset/base/267501

Log:
  Fix date.

Modified:
  head/usr.bin/ssh-copy-id/ssh-copy-id.1

Modified: head/usr.bin/ssh-copy-id/ssh-copy-id.1
==
--- head/usr.bin/ssh-copy-id/ssh-copy-id.1  Sun Jun 15 10:04:44 2014
(r267500)
+++ head/usr.bin/ssh-copy-id/ssh-copy-id.1  Sun Jun 15 10:18:57 2014
(r267501)
@@ -25,7 +25,7 @@
 .\
 .\ $FreeBSD$
 .\
-.Dd Feburary 28, 2014
+.Dd February 28, 2014
 .Dt SSH-COPY-ID 1
 .Os
 .Sh NAME
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r267502 - head/usr.sbin/binmiscctl

2014-06-15 Thread Joel Dahl
Author: joel (doc committer)
Date: Sun Jun 15 10:31:50 2014
New Revision: 267502
URL: http://svnweb.freebsd.org/changeset/base/267502

Log:
  mdoc: use display block in the beginning of the EXAMPLES section.

Modified:
  head/usr.sbin/binmiscctl/binmiscctl.8

Modified: head/usr.sbin/binmiscctl/binmiscctl.8
==
--- head/usr.sbin/binmiscctl/binmiscctl.8   Sun Jun 15 10:18:57 2014
(r267501)
+++ head/usr.sbin/binmiscctl/binmiscctl.8   Sun Jun 15 10:31:50 2014
(r267502)
@@ -146,10 +146,10 @@ Look up and print out the activator entr
 Take a snapshot and print all the activator entries currently configured.
 .El
 .Sh EXAMPLES
-.Bl
-# binmiscctl add llvmbc --interpreter ''/usr/bin/lli --fake-argv0=#a'' \\
-  --magic ''BC\\xc0\\xde'' --size 4 --set-enabled
-.El
+.Bd -ragged -offset indent
+# binmiscctl add llvmbc --interpreter ''/usr/bin/lli --fake-argv0=#a''
+--magic ''BC\\xc0\\xde'' --size 4 --set-enabled
+.Ed
 .Pp
 Add an image activator to run the LLVM interpreter (lli) on bitcode
 compiled files.
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r267503 - head/share/man/man5

2014-06-15 Thread Joel Dahl
Author: joel (doc committer)
Date: Sun Jun 15 10:34:35 2014
New Revision: 267503
URL: http://svnweb.freebsd.org/changeset/base/267503

Log:
  mdoc: remove superfluous paragraph macros.

Modified:
  head/share/man/man5/pf.conf.5
  head/share/man/man5/rc.conf.5

Modified: head/share/man/man5/pf.conf.5
==
--- head/share/man/man5/pf.conf.5   Sun Jun 15 10:31:50 2014
(r267502)
+++ head/share/man/man5/pf.conf.5   Sun Jun 15 10:34:35 2014
(r267503)
@@ -342,7 +342,6 @@ set limit states 1
 .Pp
 With 9000 state table entries, the timeout values are scaled to 50%
 (tcp.first 60, tcp.established 43200).
-.Pp
 .It Ar set loginterface
 Enable collection of packet and byte count statistics for the given
 interface or interface group.
@@ -362,7 +361,6 @@ One can disable the loginterface using:
 .Bd -literal -offset indent
 set loginterface none
 .Ed
-.Pp
 .It Ar set limit
 Sets hard limits on the memory pools used by the packet filter.
 See
@@ -415,7 +413,6 @@ Various limits can be combined on a sing
 .Bd -literal -offset indent
 set limit { states 2, frags 2, src-nodes 2000 }
 .Ed
-.Pp
 .It Ar set ruleset-optimization
 .Bl -tag -width  -compact
 .It Ar none
@@ -481,7 +478,6 @@ For example:
 .Bd -literal -offset indent
 set optimization aggressive
 .Ed
-.Pp
 .It Ar set block-policy
 The
 .Ar block-policy
@@ -573,7 +569,6 @@ ruleset finishes loading.
 For example:
 .Pp
 .Dl set fingerprints \/etc/pf.os.devel\
-.Pp
 .It Ar set skip on Aq Ar ifspec
 List interfaces for which packets should not be filtered.
 Packets passing in or out on such interfaces are passed as if pf was
@@ -583,7 +578,6 @@ packet filtering is not desired and can 
 For example:
 .Pp
 .Dl set skip on lo0
-.Pp
 .It Ar set debug
 Set the debug
 .Ar level
@@ -693,7 +687,6 @@ are received.
 The
 .Ar fragment crop
 reassembly mechanism does not yet work with NAT.
-.Pp
 .It Ar fragment drop-ovl
 This option is similar to the
 .Ar fragment crop

Modified: head/share/man/man5/rc.conf.5
==
--- head/share/man/man5/rc.conf.5   Sun Jun 15 10:31:50 2014
(r267502)
+++ head/share/man/man5/rc.conf.5   Sun Jun 15 10:34:35 2014
(r267503)
@@ -1498,7 +1498,6 @@ interface as described in RFC 4941.
 This is the IPv6 equivalent of
 .Va network_interfaces .
 Normally manual configuration of this variable is not needed.
-.Pp
 .It Va ipv6_cpe_wanif
 .Pq Vt str
 If the variable is set to an interface name,
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r267504 - head/share/man/man4

2014-06-15 Thread Joel Dahl
Author: joel (doc committer)
Date: Sun Jun 15 10:40:54 2014
New Revision: 267504
URL: http://svnweb.freebsd.org/changeset/base/267504

Log:
  mdoc: add missing width argument to Bl -tag.

Modified:
  head/share/man/man4/mrsas.4

Modified: head/share/man/man4/mrsas.4
==
--- head/share/man/man4/mrsas.4 Sun Jun 15 10:34:35 2014(r267503)
+++ head/share/man/man4/mrsas.4 Sun Jun 15 10:40:54 2014(r267504)
@@ -207,7 +207,7 @@ variable, where X is the adapter number,
 or via
 .Xr sysctl 8 .
 The following bits have the described effects:
-.Bl -tag -offset indent
+.Bl -tag -width indent -offset indent
 .It 0x01
 Enable informational prints.
 .It 0x02
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r267505 - in head/bin: chio rm

2014-06-15 Thread Joel Dahl
Author: joel (doc committer)
Date: Sun Jun 15 10:43:12 2014
New Revision: 267505
URL: http://svnweb.freebsd.org/changeset/base/267505

Log:
  mdoc: remove superfluous paragraph macros.

Modified:
  head/bin/chio/chio.1
  head/bin/rm/rm.1

Modified: head/bin/chio/chio.1
==
--- head/bin/chio/chio.1Sun Jun 15 10:40:54 2014(r267504)
+++ head/bin/chio/chio.1Sun Jun 15 10:43:12 2014(r267505)
@@ -151,7 +151,6 @@ This command will query the status of th
 will move it to the element specified in its source attribute.
 This is a convenient way to return media from a drive or portal
 to its previous element in the changer.
-.Pp
 .It Ic position Xo
 .Ar to ET to EU
 .Op Cm inv
@@ -173,7 +172,6 @@ Report which picker unit the changer is 
 .Xc
 Configure the changer to use picker
 .Ar unit .
-.Pp
 .It Ic ielem Xo
 .Op Ar timeout
 .Xc

Modified: head/bin/rm/rm.1
==
--- head/bin/rm/rm.1Sun Jun 15 10:40:54 2014(r267504)
+++ head/bin/rm/rm.1Sun Jun 15 10:43:12 2014(r267505)
@@ -121,7 +121,6 @@ each directory's contents are processed 
 is made to remove the directory).
 If the user does not respond affirmatively, the file hierarchy rooted in
 that directory is skipped.
-.Pp
 .It Fl r
 Equivalent to
 .Fl R .
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r267516 - head/usr.sbin/ctladm

2014-06-15 Thread Joel Dahl
Author: joel (doc committer)
Date: Sun Jun 15 18:30:26 2014
New Revision: 267516
URL: http://svnweb.freebsd.org/changeset/base/267516

Log:
  mdoc: add missing width to Bl -tag.

Modified:
  head/usr.sbin/ctladm/ctladm.8

Modified: head/usr.sbin/ctladm/ctladm.8
==
--- head/usr.sbin/ctladm/ctladm.8   Sun Jun 15 18:16:51 2014
(r267515)
+++ head/usr.sbin/ctladm/ctladm.8   Sun Jun 15 18:30:26 2014
(r267516)
@@ -938,7 +938,7 @@ Number of additional configuration optio
 Some options are global, others are backend-specific.
 .Pp
 Global options:
-.Bl -tag
+.Bl -tag -width 12n
 .It Va vendor
 Specifies LUN vendor string up to 8 chars.
 .It Va product
@@ -950,7 +950,7 @@ Set to on, enables UNMAP support for t
 .El
 .Pp
 Options specific for block backend:
-.Bl -tag
+.Bl -tag -width 12n
 .It Va file
 Specifies file or device name to use for backing store.
 .It Va num_threads
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r267518 - head/share/man/man4

2014-06-15 Thread Joel Dahl
Author: joel (doc committer)
Date: Sun Jun 15 18:39:10 2014
New Revision: 267518
URL: http://svnweb.freebsd.org/changeset/base/267518

Log:
  Minor mdoc improvements.

Modified:
  head/share/man/man4/proto.4

Modified: head/share/man/man4/proto.4
==
--- head/share/man/man4/proto.4 Sun Jun 15 18:32:02 2014(r267517)
+++ head/share/man/man4/proto.4 Sun Jun 15 18:39:10 2014(r267518)
@@ -76,6 +76,7 @@ with
 .Pa pcid:b:s:f
 representing the location of the PCI device in the PCI hierarchy.
 A location includes:
+.Pp
 .Bl -tag -width XX -compact
 .It d
 The PCI domain number
@@ -101,11 +102,17 @@ representing I/O port or memory mapped I
 .Sh EXAMPLES
 A single function PCI device in domain 0, on bus 1, in slot 2 and having a
 single memory mapped I/O region will have the following device special files:
-.Bl -tag -compact
+.Pp
+.Bl -tag -width XX -compact
 .It Pa /dev/proto/pci0:1:2:0/10.mem
 .It Pa /dev/proto/pci0:1:2:0/pcicfg
 .El
-.\ 
+.\
+.Sh AUTHORS
+The
+.Nm
+device driver and this manual page were written by
+.An Marcel Moolenaar Aq mar...@xcllnt.net .
 .Sh SECURITY CONSIDERATIONS
 Because programs have direct access to the hardware, the
 .Nm
@@ -126,9 +133,3 @@ The details of how a program can set up 
 initiate DMA still need to be fleshed out.
 .Pp
 Support for non-PCI devices has not been implemented yet.
-.\
-.Sh AUTHORS
-The
-.Nm
-device driver and this manual page were written by
-.An Marcel Moolenaar Aq mar...@xcllnt.net .
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r267292 - head/usr.sbin/bhyve

2014-06-09 Thread Joel Dahl
Author: joel (doc committer)
Date: Mon Jun  9 19:29:10 2014
New Revision: 267292
URL: http://svnweb.freebsd.org/changeset/base/267292

Log:
  Remove blank lines.

Modified:
  head/usr.sbin/bhyve/bhyve.8

Modified: head/usr.sbin/bhyve/bhyve.8
==
--- head/usr.sbin/bhyve/bhyve.8 Mon Jun  9 19:27:47 2014(r267291)
+++ head/usr.sbin/bhyve/bhyve.8 Mon Jun  9 19:29:10 2014(r267292)
@@ -59,7 +59,6 @@ exit is detected.
 .Bl -tag -width 10n
 .It Fl a
 The guest's local APIC is configured in xAPIC mode.
-
 The xAPIC mode is the default setting so this option is redundant. It will be
 deprecated in a future version.
 .It Fl A
@@ -103,7 +102,6 @@ per slot.
 .Bl -tag -width 10n
 .It Ar slot
 .Ar pcislot[:function]
-
 .Ar bus:pcislot:function
 .Pp
 The
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r267293 - head/sys/boot/i386/gptboot

2014-06-09 Thread Joel Dahl
Author: joel (doc committer)
Date: Mon Jun  9 19:36:08 2014
New Revision: 267293
URL: http://svnweb.freebsd.org/changeset/base/267293

Log:
  mdoc: fix AUTHORS section.

Modified:
  head/sys/boot/i386/gptboot/gptboot.8

Modified: head/sys/boot/i386/gptboot/gptboot.8
==
--- head/sys/boot/i386/gptboot/gptboot.8Mon Jun  9 19:29:10 2014
(r267292)
+++ head/sys/boot/i386/gptboot/gptboot.8Mon Jun  9 19:36:08 2014
(r267293)
@@ -241,5 +241,5 @@ gpart set -a bootonce -i 2 ada0
 .Nm
 appeared in FreeBSD 7.1.
 .Sh AUTHORS
-.An
-This manual page written by Warren Block wbl...@freebsd.org.
+This manual page written by
+.An Warren Block Aq wbl...@freebsd.org .
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r267149 - head/usr.bin/netstat

2014-06-06 Thread Joel Dahl
Author: joel (doc committer)
Date: Fri Jun  6 08:42:03 2014
New Revision: 267149
URL: http://svnweb.freebsd.org/changeset/base/267149

Log:
  Minor mdoc nit.

Modified:
  head/usr.bin/netstat/netstat.1

Modified: head/usr.bin/netstat/netstat.1
==
--- head/usr.bin/netstat/netstat.1  Fri Jun  6 08:05:34 2014
(r267148)
+++ head/usr.bin/netstat/netstat.1  Fri Jun  6 08:42:03 2014
(r267149)
@@ -90,8 +90,8 @@
 .Op Fl M Ar core
 .Op Fl N Ar system
 .It Nm Fl Q
-.Ek
 .El
+.Ek
 .Sh DESCRIPTION
 The
 .Nm
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r267182 - in head: sbin/geom/class/label sbin/reboot share/man/man4 usr.bin/mkimg

2014-06-06 Thread Joel Dahl
Author: joel (doc committer)
Date: Fri Jun  6 19:00:43 2014
New Revision: 267182
URL: http://svnweb.freebsd.org/changeset/base/267182

Log:
  Minor mdoc improvements.

Modified:
  head/sbin/geom/class/label/glabel.8
  head/sbin/reboot/boot_i386.8
  head/share/man/man4/mrsas.4
  head/share/man/man4/ng_bridge.4
  head/share/man/man4/ng_ppp.4
  head/share/man/man4/nvme.4
  head/usr.bin/mkimg/mkimg.1

Modified: head/sbin/geom/class/label/glabel.8
==
--- head/sbin/geom/class/label/glabel.8 Fri Jun  6 18:58:06 2014
(r267181)
+++ head/sbin/geom/class/label/glabel.8 Fri Jun  6 19:00:43 2014
(r267182)
@@ -235,7 +235,7 @@ and creating label nodes in the 
 .Xr devfs 5
 tree. It is sometimes desirable to disable certain label types if
 they conflict with other classes in complex GEOM topologies.
-.Bl
+.El
 .Sh EXIT STATUS
 Exit status is 0 on success, and 1 if the command fails.
 .Sh EXAMPLES

Modified: head/sbin/reboot/boot_i386.8
==
--- head/sbin/reboot/boot_i386.8Fri Jun  6 18:58:06 2014
(r267181)
+++ head/sbin/reboot/boot_i386.8Fri Jun  6 19:00:43 2014
(r267182)
@@ -113,7 +113,6 @@ boot device, as a hint about available b
 .Ic ?\
 may also be specified as the last segment of a path, in which case
 the listing will be of the relevant subdirectory.)
-.Pp
 .It Xo
 .Sm off
 .Ar bios_drive : interface ( unit , Oo Ar slice , Oc Ar part )

Modified: head/share/man/man4/mrsas.4
==
--- head/share/man/man4/mrsas.4 Fri Jun  6 18:58:06 2014(r267181)
+++ head/share/man/man4/mrsas.4 Fri Jun  6 19:00:43 2014(r267182)
@@ -321,7 +321,7 @@ management interface
 .Xr mfi 4 ,
 .Xr pci 4 ,
 .Xr device.hints 5 ,
-.Xt camcontrol 8
+.Xr camcontrol 8
 .Sh HISTORY
 The
 .Nm

Modified: head/share/man/man4/ng_bridge.4
==
--- head/share/man/man4/ng_bridge.4 Fri Jun  6 18:58:06 2014
(r267181)
+++ head/share/man/man4/ng_bridge.4 Fri Jun  6 19:00:43 2014
(r267182)
@@ -139,7 +139,6 @@ The
 determines how quickly a host must jump from one link to another
 before we declare a loopback condition.
 The default is one second.
-.Pp
 .It Dv NGM_BRIDGE_GET_CONFIG Pq Ic getconfig
 Returns the current configuration as a
 .Dv struct ng_bridge_config .

Modified: head/share/man/man4/ng_ppp.4
==
--- head/share/man/man4/ng_ppp.4Fri Jun  6 18:58:06 2014
(r267181)
+++ head/share/man/man4/ng_ppp.4Fri Jun  6 19:00:43 2014
(r267182)
@@ -385,7 +385,6 @@ struct ng_ppp_node_conf {
   struct ng_ppp_link_conf   links[NG_PPP_MAX_LINKS];
 };
 .Ed
-.Pp
 .It Dv NGM_PPP_GET_CONFIG Pq Ic getconfig
 Returns the current configuration as a
 .Dv struct ng_ppp_node_conf .

Modified: head/share/man/man4/nvme.4
==
--- head/share/man/man4/nvme.4  Fri Jun  6 18:58:06 2014(r267181)
+++ head/share/man/man4/nvme.4  Fri Jun  6 19:00:43 2014(r267182)
@@ -85,7 +85,6 @@ the format
 .Pa /dev/nvmeXnsY .
 Note that the NVM Express specification starts numbering namespaces at 1,
 not 0, and this driver follows that convention.
-.El
 .Sh CONFIGURATION
 By default,
 .Nm

Modified: head/usr.bin/mkimg/mkimg.1
==
--- head/usr.bin/mkimg/mkimg.1  Fri Jun  6 18:58:06 2014(r267181)
+++ head/usr.bin/mkimg/mkimg.1  Fri Jun  6 19:00:43 2014(r267182)
@@ -115,6 +115,12 @@ For a complete list of supported partiti
 format, or for a detailed description of how to specify partitions, run the
 .Nm
 utility without any arguments.
+.Sh ENVIRONMENT
+.Bl -tag -width TMPDIR -compact
+.It Ev TMPDIR
+Directory to put temporary files in; default is
+.Pa /tmp .
+.El
 .Sh EXAMPLES
 To create a bootable disk image that is partitioned using the GPT scheme and
 containing a root file system that was previously created using
@@ -159,11 +165,6 @@ For partitioning schemes that feature pa
 utility supports assigning labels to the partitions specified.
 In the following example the file system partition is labeled as 'backup':
 .Dl % mkimg -s gpt -p freebsd-ufs/backup:=file-system.ufs -o gpt.img
-.Sh ENVIRONMENT
-.Bl -tag -width TMPDIR -compact
-.It Ev TMPDIR
-Directory to put temporary files in; default is
-.Pa /tmp .
 .Sh SEE ALSO
 .Xr gpart 8
 .Xr makefs 8
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


Re: svn commit: r267026 - head/usr.bin/users

2014-06-03 Thread Joel Dahl

3 jun 2014 kl. 22:58 skrev Pietro Cerutti g...@freebsd.org:

 Author: gahr (ports committer)
 Date: Tue Jun  3 20:58:11 2014
 New Revision: 267026
 URL: http://svnweb.freebsd.org/changeset/base/267026
 
 Log:
  - style, remove (void) in front of printf and the like
 
  CR:  D161
  Approved by: cognet, bapt

Hmm, I’ve been MIA for a few weeks. What does ”CR D161” mean?

—
Joel
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


Re: svn commit: r263110 - head/share/man/man4

2014-03-14 Thread Joel Dahl
14 mar 2014 kl. 10:13 skrev Christian Brueffer bruef...@freebsd.org:

 On 3/14/14 2:54 AM, John-Mark Gurney wrote:
 John Nielsen wrote this message on Thu, Mar 13, 2014 at 16:28 -0600:
 On Mar 13, 2014, at 10:19 AM, John-Mark Gurney j...@freebsd.org wrote:
 
 Author: jmg
 Date: Thu Mar 13 16:19:36 2014
 New Revision: 263110
 URL: http://svnweb.freebsd.org/changeset/base/263110
 
 Log:
 remove link to the missing AMD Geode LX SB man page... we can add it
 back once someone cares enough to write one..
 
 You mean like this one?
 http://svnweb.freebsd.org/base/head/share/man/man4/man4.i386/glxsb.4
 
 The problems of checking on an amd64 box... :(
 
 Actually, how are we suppose to handle links to arch dependant man
 pages in arch independant man pages?  I did this check on an amd64 box,
 so the page glxsb didn't get installed...  Should we just always
 install these man pages on all arches then?  Or are we fine w/
 references to non-existant pages (on some arches)?
 
 Or should glxsb.4 be moved to an arch independant dir?
 
 
 I wonder if it makes sense to keep arch-dependent man directories at
 all.  I.e., if I prepare an ARM disk image on my amd64 laptop, I really
 want to have the arm manpages available on that amd64 box.
 
 Does anyone see a reason not to move man4/man4.${ARCH}/*.4 to man4?
 We're talking about 60 manpages here, so space is not really an issue.

Sounds good to me.

—
Joel

___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r261633 - head/usr.bin/csplit

2014-02-08 Thread Joel Dahl
Author: joel (doc committer)
Date: Sat Feb  8 13:29:35 2014
New Revision: 261633
URL: http://svnweb.freebsd.org/changeset/base/261633

Log:
  Correct example.
  
  Submitted by:Jason McIntyre j...@kerhand.co.uk
   Thomas Klausner w...@netbsd.org

Modified:
  head/usr.bin/csplit/csplit.1

Modified: head/usr.bin/csplit/csplit.1
==
--- head/usr.bin/csplit/csplit.1Sat Feb  8 11:05:48 2014
(r261632)
+++ head/usr.bin/csplit/csplit.1Sat Feb  8 13:29:35 2014
(r261633)
@@ -24,7 +24,7 @@
 .\
 .\ $FreeBSD$
 .\
-.Dd December 24, 2008
+.Dd February 6, 2014
 .Dt CSPLIT 1
 .Os
 .Sh NAME
@@ -143,7 +143,7 @@ Split the
 .Xr mdoc 7
 file
 .Pa foo.1
-into one file for each section (up to 20):
+into one file for each section (up to 21 plus one for the rest, if any):
 .Pp
 .Dl csplit -k foo.1 '%^\e.Sh%' '/^\e.Sh/' '{20}'
 .Pp
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r261634 - in head: usr.bin/chpass usr.bin/grep usr.bin/indent usr.bin/rpcgen usr.bin/whois usr.bin/xargs usr.sbin/bluetooth/btpand usr.sbin/ifmcstat usr.sbin/ppp usr.sbin/watchdogd

2014-02-08 Thread Joel Dahl
Author: joel (doc committer)
Date: Sat Feb  8 13:37:02 2014
New Revision: 261634
URL: http://svnweb.freebsd.org/changeset/base/261634

Log:
  mdoc: minor paragraph fixes.

Modified:
  head/usr.bin/chpass/chpass.1
  head/usr.bin/grep/grep.1
  head/usr.bin/indent/indent.1
  head/usr.bin/rpcgen/rpcgen.1
  head/usr.bin/whois/whois.1
  head/usr.bin/xargs/xargs.1
  head/usr.sbin/bluetooth/btpand/btpand.8
  head/usr.sbin/ifmcstat/ifmcstat.8
  head/usr.sbin/ppp/ppp.8
  head/usr.sbin/watchdogd/watchdogd.8

Modified: head/usr.bin/chpass/chpass.1
==
--- head/usr.bin/chpass/chpass.1Sat Feb  8 13:29:35 2014
(r261633)
+++ head/usr.bin/chpass/chpass.1Sat Feb  8 13:37:02 2014
(r261634)
@@ -317,7 +317,6 @@ password -- see below) will be silently 
 .Pp
 Exception: the super-user on the NIS master server is permitted to
 change any field.
-.Pp
 .It
 .Em Password authentication is required .
 The
@@ -433,7 +432,6 @@ option can be used in conjunction with t
 .Fl d
 option, in which case the user-specified hostname will override
 the default.
-.Pp
 .It Fl o
 Force the use of RPC-based updates when communicating with
 .Xr rpc.yppasswdd 8

Modified: head/usr.bin/grep/grep.1
==
--- head/usr.bin/grep/grep.1Sat Feb  8 13:29:35 2014(r261633)
+++ head/usr.bin/grep/grep.1Sat Feb  8 13:37:02 2014(r261634)
@@ -398,8 +398,8 @@ The default is 2.
 Force output to be line buffered.
 By default, output is line buffered when standard output is a terminal
 and block buffered otherwise.
-.Pp
 .El
+.Pp
 If no file arguments are specified, the standard input is used.
 .Sh EXIT STATUS
 The

Modified: head/usr.bin/indent/indent.1
==
--- head/usr.bin/indent/indent.1Sat Feb  8 13:29:35 2014
(r261633)
+++ head/usr.bin/indent/indent.1Sat Feb  8 13:37:02 2014
(r261634)
@@ -184,7 +184,6 @@ if (...) {
   code
 }
 .Ed
-.Pp
 .It Fl c Ns Ar n
 The column in which comments on code start.
 The default is 33.

Modified: head/usr.bin/rpcgen/rpcgen.1
==
--- head/usr.bin/rpcgen/rpcgen.1Sat Feb  8 13:29:35 2014
(r261633)
+++ head/usr.bin/rpcgen/rpcgen.1Sat Feb  8 13:37:02 2014
(r261634)
@@ -328,7 +328,6 @@ Contrary to some systems, in
 this option is needed to generate
 servers that can be invoked through portmonitors and
 .Xr inetd 8 .
-.Pp
 .It Fl K Ar seconds
 By default, services created using
 .Nm

Modified: head/usr.bin/whois/whois.1
==
--- head/usr.bin/whois/whois.1  Sat Feb  8 13:29:35 2014(r261633)
+++ head/usr.bin/whois/whois.1  Sat Feb  8 13:37:02 2014(r261634)
@@ -62,7 +62,6 @@ nor by
 .Tn ARIN
 whois database end with
 .Qq Li -ARIN . )
-.Pp
 .It Fl A
 Use the Asia/Pacific Network Information Center
 .Pq Tn APNIC

Modified: head/usr.bin/xargs/xargs.1
==
--- head/usr.bin/xargs/xargs.1  Sat Feb  8 13:29:35 2014(r261633)
+++ head/usr.bin/xargs/xargs.1  Sat Feb  8 13:37:02 2014(r261634)
@@ -164,7 +164,6 @@ directory to
 .Pa destdir :
 .Pp
 .Dl /bin/ls -1d [A-Z]* | xargs -J % cp -Rp % destdir
-.Pp
 .It Fl L Ar number
 Call
 .Ar utility

Modified: head/usr.sbin/bluetooth/btpand/btpand.8
==
--- head/usr.sbin/bluetooth/btpand/btpand.8 Sat Feb  8 13:29:35 2014
(r261633)
+++ head/usr.sbin/bluetooth/btpand/btpand.8 Sat Feb  8 13:37:02 2014
(r261634)
@@ -159,7 +159,6 @@ Network Access Point.
 .It PANU
 Personal Area Networking User.
 .El
-.Pp
 .It Fl S Ar service
 As per
 .Fl s

Modified: head/usr.sbin/ifmcstat/ifmcstat.8
==
--- head/usr.sbin/ifmcstat/ifmcstat.8   Sat Feb  8 13:29:35 2014
(r261633)
+++ head/usr.sbin/ifmcstat/ifmcstat.8   Sat Feb  8 13:37:02 2014
(r261634)
@@ -54,7 +54,6 @@ The following options are supported:
 .Bl -tag -width Fl
 .It Fl i Ar interface
 specifies the interface to be displayed.
-.Pp
 .It Fl f Ar address-family
 specifies the address family to be displayed;
 .Ar inet ,

Modified: head/usr.sbin/ppp/ppp.8
==
--- head/usr.sbin/ppp/ppp.8 Sat Feb  8 13:29:35 2014(r261633)
+++ head/usr.sbin/ppp/ppp.8 Sat Feb  8 13:37:02 2014(r261634)
@@ -1188,7 +1188,6 @@ Use Hardware Handshake (CTS/RTS) for flo
 .It
 Modem should be set to NO echo back (ATE0) and NO results string (ATQ1).
 .El
-.Pp
 .It
 Edit
 .Pa /etc/ttys
@@ -1796,7 +1795,6 @@ If no timeout is given, the 

svn commit: r259949 - head/sbin/geom/class/mirror

2013-12-27 Thread Joel Dahl
Author: joel (doc committer)
Date: Fri Dec 27 16:48:37 2013
New Revision: 259949
URL: http://svnweb.freebsd.org/changeset/base/259949

Log:
  Improve wording slightly.

Modified:
  head/sbin/geom/class/mirror/gmirror.8

Modified: head/sbin/geom/class/mirror/gmirror.8
==
--- head/sbin/geom/class/mirror/gmirror.8   Fri Dec 27 16:08:34 2013
(r259948)
+++ head/sbin/geom/class/mirror/gmirror.8   Fri Dec 27 16:48:37 2013
(r259949)
@@ -327,9 +327,7 @@ gmirror activate data da1
 .Sh NOTES
 Doing kernel dumps to
 .Nm
-providers.
-.Pp
-This is possible, but some conditions have to be met.
+providers is possible, but some conditions have to be met.
 First of all, a kernel dump will go only to one component and
 .Nm
 always chooses the component with the highest priority.
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r259770 - in head: share/man/man4 usr.sbin/bhyve

2013-12-23 Thread Joel Dahl
Author: joel (doc committer)
Date: Mon Dec 23 15:00:15 2013
New Revision: 259770
URL: http://svnweb.freebsd.org/changeset/base/259770

Log:
  mdoc: nuke whitespace.

Modified:
  head/share/man/man4/cxgbe.4
  head/usr.sbin/bhyve/bhyve.8

Modified: head/share/man/man4/cxgbe.4
==
--- head/share/man/man4/cxgbe.4 Mon Dec 23 14:23:17 2013(r259769)
+++ head/share/man/man4/cxgbe.4 Mon Dec 23 15:00:15 2013(r259770)
@@ -71,7 +71,6 @@ Note that ports of T5 cards are named cx
 Loader tunables with the hw.cxgbe prefix apply to both T4 and T5 cards.
 The sysctl MIBs are at dev.t5nex and dev.cxl for T5 cards and at dev.t4nex and
 dev.cxgbe for T4 cards.
-
 .Pp
 For more information on configuring this device, see
 .Xr ifconfig 8 .

Modified: head/usr.sbin/bhyve/bhyve.8
==
--- head/usr.sbin/bhyve/bhyve.8 Mon Dec 23 14:23:17 2013(r259769)
+++ head/usr.sbin/bhyve/bhyve.8 Mon Dec 23 15:00:15 2013(r259770)
@@ -229,7 +229,7 @@ Force
 .Nm
 to exit when a guest issues an access to an I/O port that is not emulated.
 This is intended for debug purposes.
-.It Fl w 
+.It Fl w
 Ignore accesses to unimplemented Model Specific Registers (MSRs). This is 
intended for debug purposes.
 .It Fl h
 Print help message and exit.
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r259413 - head/usr.sbin/bhyve

2013-12-15 Thread Joel Dahl
Author: joel (doc committer)
Date: Sun Dec 15 08:52:16 2013
New Revision: 259413
URL: http://svnweb.freebsd.org/changeset/base/259413

Log:
  mdoc: sort SEE ALSO.

Modified:
  head/usr.sbin/bhyve/bhyve.8

Modified: head/usr.sbin/bhyve/bhyve.8
==
--- head/usr.sbin/bhyve/bhyve.8 Sun Dec 15 08:37:24 2013(r259412)
+++ head/usr.sbin/bhyve/bhyve.8 Sun Dec 15 08:52:16 2013(r259413)
@@ -288,8 +288,8 @@ bhyve -c 4 \e\
 .Xr nmdm 4 ,
 .Xr vmm 4 ,
 .Xr ethers 5 ,
-.Xr bhyveload 8 ,
-.Xr bhyvectl 8
+.Xr bhyvectl 8 ,
+.Xr bhyveload 8
 .Sh HISTORY
 .Nm
 first appeared in
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r259186 - head/share/man/man4

2013-12-10 Thread Joel Dahl
Author: joel (doc committer)
Date: Tue Dec 10 19:15:26 2013
New Revision: 259186
URL: http://svnweb.freebsd.org/changeset/base/259186

Log:
  Minor mdoc fixes.

Modified:
  head/share/man/man4/netmap.4

Modified: head/share/man/man4/netmap.4
==
--- head/share/man/man4/netmap.4Tue Dec 10 19:14:19 2013
(r259185)
+++ head/share/man/man4/netmap.4Tue Dec 10 19:15:26 2013
(r259186)
@@ -77,7 +77,6 @@ sockets or BPF/pcap).
 For a list of devices with native
 .Nm
 support, see the end of this manual page.
-.Pp
 .Sh OPERATION - THE NETMAP API
 .Nm
 clients must first
@@ -99,7 +98,6 @@ interface or on a port of a
 switch, as indicated below. Additional fields in the
 .Pa struct nmreq
 control the details of operation.
-.Pp
 .Bl -tag -width 
 .It Dv Interface name (e.g. 'em0', 'eth1', ... )
 The data path of the interface is disconnected from the host stack.
@@ -237,7 +235,6 @@ accordingly, as shown in the figure belo
 |-- avail --|   (before syscall)
cur
 .Ed
-
 In receive rings, after a system call 'cur' indicates
 the first slot that contains a valid packet,
 and 'avail' reports how many of them are available.
@@ -289,7 +286,6 @@ are normally fixed size (2 Kbyte) buffer
 that contain packet data. Buffers addresses are computed through
 macros.
 .El
-.Pp
 .Bl -tag -width XXX
 Some macros support the access to objects in the shared memory
 region. In particular,
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r259041 - in head: cddl/contrib/opensolaris/cmd/zpool lib/libc/sys

2013-12-06 Thread Joel Dahl
Author: joel (doc committer)
Date: Fri Dec  6 21:22:33 2013
New Revision: 259041
URL: http://svnweb.freebsd.org/changeset/base/259041

Log:
  mdoc: remove EOL whitespace.

Modified:
  head/cddl/contrib/opensolaris/cmd/zpool/zpool-features.7
  head/lib/libc/sys/wait.2

Modified: head/cddl/contrib/opensolaris/cmd/zpool/zpool-features.7
==
--- head/cddl/contrib/opensolaris/cmd/zpool/zpool-features.7Fri Dec  6 
20:48:53 2013(r259040)
+++ head/cddl/contrib/opensolaris/cmd/zpool/zpool-features.7Fri Dec  6 
21:22:33 2013(r259041)
@@ -259,7 +259,7 @@ configuration.
 .El
 .Pp
 This features allows ZFS to maintain more information about how free space
-is organized within the pool. If this feature is 
+is organized within the pool. If this feature is
 .Sy enabled ,
 ZFS will
 set this feature to

Modified: head/lib/libc/sys/wait.2
==
--- head/lib/libc/sys/wait.2Fri Dec  6 20:48:53 2013(r259040)
+++ head/lib/libc/sys/wait.2Fri Dec  6 21:22:33 2013(r259041)
@@ -103,7 +103,7 @@ and
 .Fn wait4
 functions all implicitly wait for exited and trapped processes,
 but the
-.Fn waitid 
+.Fn waitid
 and
 .Fn wait6
 functions require the corresponding
@@ -203,7 +203,7 @@ and
 wait for any child process in the same process group as the caller.
 .El
 .Pp
-Non-standard identifier types supported by this 
+Non-standard identifier types supported by this
 implementation of
 .Fn waitid
 and
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r258855 - head/usr.sbin/bhyveload

2013-12-02 Thread Joel Dahl
Author: joel (doc committer)
Date: Mon Dec  2 19:49:52 2013
New Revision: 258855
URL: http://svnweb.freebsd.org/changeset/base/258855

Log:
  mdoc: quote string properly.

Modified:
  head/usr.sbin/bhyveload/bhyveload.8

Modified: head/usr.sbin/bhyveload/bhyveload.8
==
--- head/usr.sbin/bhyveload/bhyveload.8 Mon Dec  2 19:02:58 2013
(r258854)
+++ head/usr.sbin/bhyveload/bhyveload.8 Mon Dec  2 19:49:52 2013
(r258855)
@@ -131,7 +131,7 @@ and terminal I/O sent to the
 device
 .Pa /dev/nmdm1B
 .Pp
-.Dl bhyveload -m 256MB -h /usr/images/test -c /dev/nmdm1B test-vm
+.Dl bhyveload -m 256MB -h /usr/images/test -c /dev/nmdm1B test-vm
 .Sh SEE ALSO
 .Xr bhyve 4 ,
 .Xr bhyve 8 ,
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r258662 - head/share/man/man4

2013-11-26 Thread Joel Dahl
Author: joel (doc committer)
Date: Tue Nov 26 19:51:53 2013
New Revision: 258662
URL: http://svnweb.freebsd.org/changeset/base/258662

Log:
  mdoc: sort sections.

Modified:
  head/share/man/man4/u3g.4

Modified: head/share/man/man4/u3g.4
==
--- head/share/man/man4/u3g.4   Tue Nov 26 19:47:09 2013(r258661)
+++ head/share/man/man4/u3g.4   Tue Nov 26 19:51:53 2013(r258662)
@@ -103,10 +103,6 @@ and
 .Xr usb_quirk 4 ,
 .Xr devd 8 ,
 .Xr usbconfig 8
-.Sh BUGS
-The automatic mode switch from disk mode to modem mode does not work unless
-the driver is either built into the kernel or loaded before the device is
-connected.
 .Sh HISTORY
 The
 .Nm
@@ -125,3 +121,7 @@ driver was written by
 and
 .An Nick Hibma Aq n_hi...@freebsd.org .
 Hardware for testing was provided by AnyWi Technologies, Leiden, NL.
+.Sh BUGS
+The automatic mode switch from disk mode to modem mode does not work unless
+the driver is either built into the kernel or loaded before the device is
+connected.
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r258440 - head/share/man/man5

2013-11-21 Thread Joel Dahl
Author: joel (doc committer)
Date: Thu Nov 21 19:44:48 2013
New Revision: 258440
URL: http://svnweb.freebsd.org/changeset/base/258440

Log:
  mdoc: remove EOL whitespace.

Modified:
  head/share/man/man5/rc.conf.5

Modified: head/share/man/man5/rc.conf.5
==
--- head/share/man/man5/rc.conf.5   Thu Nov 21 19:43:45 2013
(r258439)
+++ head/share/man/man5/rc.conf.5   Thu Nov 21 19:44:48 2013
(r258440)
@@ -919,13 +919,13 @@ This variable contains additional flags 
 program.
 .It Va pflog_instances
 .Pq Vt str
-If logging to more than one 
+If logging to more than one
 .Xr pflog 4
-interface is desired, 
+interface is desired,
 .Va pflog_instances
 is set to the list of
 .Xr pflogd 8
-instances that should be started at system boot time. If 
+instances that should be started at system boot time. If
 .Va pflog_instances
 is set, for each whitespace-seperated
 .Ar element
@@ -966,7 +966,7 @@ program.
 .Pq Vt str
 Empty by default. If multiple instances of
 .Xr ftp-proxy 8
-are desired at boot time, 
+are desired at boot time,
 .Va ftpproxy_instances
 should contain a whitespace-seperated list of instance names. For each
 .Ar element
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r257871 - head/usr.sbin/mfiutil

2013-11-08 Thread Joel Dahl
Author: joel (doc committer)
Date: Fri Nov  8 23:08:01 2013
New Revision: 257871
URL: http://svnweb.freebsd.org/changeset/base/257871

Log:
  mdoc: remove superfluous paragraph macro.

Modified:
  head/usr.sbin/mfiutil/mfiutil.8

Modified: head/usr.sbin/mfiutil/mfiutil.8
==
--- head/usr.sbin/mfiutil/mfiutil.8 Fri Nov  8 22:47:43 2013
(r257870)
+++ head/usr.sbin/mfiutil/mfiutil.8 Fri Nov  8 23:08:01 2013
(r257871)
@@ -714,7 +714,6 @@ Display the second detected foreign conf
 .Pp
 Set the current rebuild rate for volumes to 40%:
 .Dl Nm Cm ctrlprop rebuild 40
-.Pp
 .Sh SEE ALSO
 .Xr mfi 4
 .Sh HISTORY
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r257872 - head/usr.sbin/bsdinstall

2013-11-08 Thread Joel Dahl
Author: joel (doc committer)
Date: Fri Nov  8 23:11:04 2013
New Revision: 257872
URL: http://svnweb.freebsd.org/changeset/base/257872

Log:
  mdoc: add missing El.

Modified:
  head/usr.sbin/bsdinstall/bsdinstall.8

Modified: head/usr.sbin/bsdinstall/bsdinstall.8
==
--- head/usr.sbin/bsdinstall/bsdinstall.8   Fri Nov  8 23:08:01 2013
(r257871)
+++ head/usr.sbin/bsdinstall/bsdinstall.8   Fri Nov  8 23:11:04 2013
(r257872)
@@ -61,6 +61,7 @@ See
 .Sx ENVIRONMENT VARIABLES
 for more information on
 .Ev BSDINSTALL_LOG .
+.El
 .Sh TARGETS
 Most of the following targets are only useful for scripting the installer.
 For interactive use, most users will be interested only in the
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r257655 - head/share/man/man4

2013-11-04 Thread Joel Dahl
Author: joel (doc committer)
Date: Mon Nov  4 21:27:21 2013
New Revision: 257655
URL: http://svnweb.freebsd.org/changeset/base/257655

Log:
  Remove superfluous paragraph macro and add missing the.

Modified:
  head/share/man/man4/rights.4

Modified: head/share/man/man4/rights.4
==
--- head/share/man/man4/rights.4Mon Nov  4 21:06:21 2013
(r257654)
+++ head/share/man/man4/rights.4Mon Nov  4 21:27:21 2013
(r257655)
@@ -69,7 +69,6 @@ type is used to store list of capability
 The
 .Xr cap_rights_init 3
 family of functions should be used to manage the structure.
-.Pp
 .Sh RIGHTS
 The following rights may be specified in a rights mask:
 .Bl -tag -width CAP_EXTATTR_DELETE
@@ -668,7 +667,7 @@ Project.
 .Sh AUTHORS
 This manual page was created by
 .An Pawel Jakub Dawidek Aq pa...@dawidek.net
-under sponsorship from the FreeBSD Foundation based on
+under sponsorship from the FreeBSD Foundation based on the
 .Xr cap_new 2
 manual page by
 .An Robert Watson Aq rwat...@freebsd.org .
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r257656 - head/share/man/man4

2013-11-04 Thread Joel Dahl
Author: joel (doc committer)
Date: Mon Nov  4 21:28:36 2013
New Revision: 257656
URL: http://svnweb.freebsd.org/changeset/base/257656

Log:
  mdoc: remove EOL whitespace.

Modified:
  head/share/man/man4/altera_atse.4

Modified: head/share/man/man4/altera_atse.4
==
--- head/share/man/man4/altera_atse.4   Mon Nov  4 21:27:21 2013
(r257655)
+++ head/share/man/man4/altera_atse.4   Mon Nov  4 21:28:36 2013
(r257656)
@@ -64,7 +64,7 @@ MegaCore.
 .Sh HARDWARE
 The current version of the
 .Nm
-driver supports the Ethernet MegaCore as described in version 11.1 of 
+driver supports the Ethernet MegaCore as described in version 11.1 of
 Altera's documentation when the device is configured with internal FIFOs.
 .Sh SEE ALSO
 .Xr miibus 4 ,
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r257400 - head/usr.sbin/pkg

2013-10-30 Thread Joel Dahl
Author: joel (doc committer)
Date: Wed Oct 30 21:49:38 2013
New Revision: 257400
URL: http://svnweb.freebsd.org/changeset/base/257400

Log:
  A few minor mdoc improvements.

Modified:
  head/usr.sbin/pkg/pkg.7

Modified: head/usr.sbin/pkg/pkg.7
==
--- head/usr.sbin/pkg/pkg.7 Wed Oct 30 21:36:15 2013(r257399)
+++ head/usr.sbin/pkg/pkg.7 Wed Oct 30 21:49:38 2013(r257400)
@@ -29,7 +29,7 @@
 .Os
 .Sh NAME
 .Nm pkg
-.Nd a utility for manipulating packages.
+.Nd a utility for manipulating packages
 .Sh SYNOPSIS
 .Nm
 .Ao Ar command Ac
@@ -55,8 +55,7 @@ The first time invoked,
 will bootstrap the real
 .Xr pkg 8
 from a remote repository.
-.Pp
-.Bl -tag -width pkg add pkg.txz xxx -compact
+.Bl -tag -width pkg add pkg.txz xxx
 .It Nm Ao Ar command Ac
 If
 .Xr pkg 8
@@ -142,6 +141,7 @@ SIGNATURE_TYPE: none,
 FINGERPRINTS: /usr/share/keys/pkg,
 ASSUME_ALWAYS_YES: yes
 .Ed
+.Pp
 Reference
 .Sx ENVIRONMENT
 for each variable.
@@ -246,8 +246,8 @@ Check installed packages for checksum mi
 Check for missing dependencies:
 .Dl # pkg check -d -a
 .Sh SEE ALSO
-.Xr pkg 8 ,
-.Xr ports 7
+.Xr ports 7 ,
+.Xr pkg 8
 .Sh HISTORY
 The
 .Nm
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r257401 - head/share/man/man9

2013-10-30 Thread Joel Dahl
Author: joel (doc committer)
Date: Wed Oct 30 21:52:31 2013
New Revision: 257401
URL: http://svnweb.freebsd.org/changeset/base/257401

Log:
  mdoc: document title should be all caps.

Modified:
  head/share/man/man9/getenv.9

Modified: head/share/man/man9/getenv.9
==
--- head/share/man/man9/getenv.9Wed Oct 30 21:49:38 2013
(r257400)
+++ head/share/man/man9/getenv.9Wed Oct 30 21:52:31 2013
(r257401)
@@ -28,7 +28,7 @@
 .\ $FreeBSD$
 .\
 .Dd October 22, 2013
-.Dt getenv 9
+.Dt GETENV 9
 .Os
 .Sh NAME
 .Nm freeenv ,
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


Re: svn commit: r256949 - head/sys/arm/rockchip

2013-10-22 Thread Joel Dahl

23 okt 2013 kl. 02:39 skrev Ganbold Tsagaankhuu ganb...@freebsd.org:

 Author: ganbold (doc committer)
 Date: Wed Oct 23 00:39:43 2013
 New Revision: 256949
 URL: http://svnweb.freebsd.org/changeset/base/256949
 
 Log:
  Import basic support for Rockchip RK3188 SoC.
 
 Added: head/sys/arm/rockchip/bus_space.c
 ==
 --- /dev/null 00:00:00 1970   (empty, because file is newly added)
 +++ head/sys/arm/rockchip/bus_space.c Wed Oct 23 00:39:43 2013
 (r256949)
 @@ -0,0 +1,113 @@
 +/*-
 + * Copyright (C) 2012 FreeBSD Foundation
 + * All rights reserved.
 + *
 + * Redistribution and use in source and binary forms, with or without
 + * modification, are permitted provided that the following conditions
 + * are met:
 + * 1. Redistributions of source code must retain the above copyright
 + *notice, this list of conditions and the following disclaimer.
 + * 2. Redistributions in binary form must reproduce the above copyright
 + *notice, this list of conditions and the following disclaimer in the
 + *documentation and/or other materials provided with the distribution.
 + * 3. Neither the name of MARVELL nor the names of contributors
 + *may be used to endorse or promote products derived from this software
 + *without specific prior written permission.

Hmm? If this is copyrighted the FreeBSD Foundation, why does the copyright 
mention MARVELL?

Copy/Paste mistake?

--
Joel

___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r256237 - head/usr.sbin/bhyveload

2013-10-09 Thread Joel Dahl
Author: joel (doc committer)
Date: Wed Oct  9 20:00:04 2013
New Revision: 256237
URL: http://svnweb.freebsd.org/changeset/base/256237

Log:
  Fix missing .
  
  Approved by:  re (blanket)

Modified:
  head/usr.sbin/bhyveload/bhyveload.8

Modified: head/usr.sbin/bhyveload/bhyveload.8
==
--- head/usr.sbin/bhyveload/bhyveload.8 Wed Oct  9 19:59:25 2013
(r256236)
+++ head/usr.sbin/bhyveload/bhyveload.8 Wed Oct  9 20:00:04 2013
(r256237)
@@ -1,4 +1,4 @@
-\
+.\
 .\ Copyright (c) 2012 NetApp Inc
 .\ All rights reserved.
 .\
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r256051 - in head: share/man/man5 usr.bin/calendar

2013-10-04 Thread Joel Dahl
Author: joel (doc committer)
Date: Fri Oct  4 16:44:24 2013
New Revision: 256051
URL: http://svnweb.freebsd.org/changeset/base/256051

Log:
  mdoc: remove EOL whitespace.
  
  Approved by:  re (blanket)

Modified:
  head/share/man/man5/src.conf.5
  head/usr.bin/calendar/calendar.1

Modified: head/share/man/man5/src.conf.5
==
--- head/share/man/man5/src.conf.5  Fri Oct  4 16:08:44 2013
(r256050)
+++ head/share/man/man5/src.conf.5  Fri Oct  4 16:44:24 2013
(r256051)
@@ -129,7 +129,7 @@ Set to not build
 .Xr authpf 8 .
 .It Va WITHOUT_BINUTILS
 .\ from FreeBSD: head/tools/build/options/WITHOUT_BINUTILS 255974 2013-10-01 
17:40:56Z emaste
-Set to not install binutils (as, c++-filt, gconv,  
+Set to not install binutils (as, c++-filt, gconv,
 ld, nm, objcopy, objdump, readelf, size and strip).
 .Bf -symbolic
 The option does not generally work for build targets, unless some alternative

Modified: head/usr.bin/calendar/calendar.1
==
--- head/usr.bin/calendar/calendar.1Fri Oct  4 16:08:44 2013
(r256050)
+++ head/usr.bin/calendar/calendar.1Fri Oct  4 16:44:24 2013
(r256051)
@@ -180,7 +180,7 @@ a continuation of the previous line.
 The
 .Nm
 file is preprocessed by a limited subset of
-.Xr cpp 1 
+.Xr cpp 1
 internally, allowing the inclusion of shared files such as
 lists of company holidays or meetings.
 This limited subset consists of \fB#include #ifndef #endif\fR and 
\fB#define\fR.
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r255861 - head/share/man/man4

2013-09-24 Thread Joel Dahl
Author: joel (doc committer)
Date: Tue Sep 24 20:14:59 2013
New Revision: 255861
URL: http://svnweb.freebsd.org/changeset/base/255861

Log:
  Minor mdoc fixes.
  
  Approved by:  re (blanket)

Modified:
  head/share/man/man4/bxe.4

Modified: head/share/man/man4/bxe.4
==
--- head/share/man/man4/bxe.4   Tue Sep 24 20:05:16 2013(r255860)
+++ head/share/man/man4/bxe.4   Tue Sep 24 20:14:59 2013(r255861)
@@ -32,10 +32,7 @@
 .Os
 .Sh NAME
 .Nm bxe
-.Nd Broadcom NetXtreme II Ethernet adapter driver for BCM57710 / BCM57711 /
-BCM57711E / BCM57712 / BCM57712-MF / BCM57800 / BCM57800-MF / BCM57810 /
-BCM57810-MF / BCM57840 / BCM57840-MF 10Gb PCIE Ethernet Network Controllers
-and Broadcom NetXtreme II BCM57840 10Gb/20Gb PCIE Ethernet Network Controllers.
+.Nd Broadcom NetXtreme II Ethernet 10Gb PCIe adapter driver
 .Sh SYNOPSIS
 To compile this driver into the kernel,
 place the following lines in your
@@ -54,7 +51,8 @@ if_bxe_load=YES
 The
 .Nm
 driver provides support for PCIe 10Gb Ethernet adapters based on the Broadcom
-NetXtreme II family of 10Gb chips. The driver supports Jumbo Frames, VLAN
+NetXtreme II family of 10Gb chips.
+The driver supports Jumbo Frames, VLAN
 tagging, checksum offload (IPv4, TCP, UDP, IPv6-TCP, IPv6-UDP), MSI-X
 interrupts, TCP Segmentation Offload (TSO), Large Receive Offload (LRO), and
 Receive Side Scaling (RSS).
@@ -90,35 +88,45 @@ Broadcom NetXtreme II BCM57840-MF 10Gb
 .El
 .Sh CONFIGURATION
 There a number of configuration parameters that can be set to tweak the
-driver's behavior. These parameters can be set via the
+driver's behavior.
+These parameters can be set via the
 .Xr loader.conf 5
-file to take affect during the next system boot. The following parameters 
affect
+file to take affect during the next system boot.
+The following parameters affect
 ALL instances of the driver.
 .Bl -tag -width indent
 .It Va hw.bxe.debug
 DEFAULT = 0
 .br
-Sets the default logging level of the driver. See the Diagnostics and Debugging
+Sets the default logging level of the driver.
+See the Diagnostics and Debugging
 section below for more details.
 .It Va hw.bxe.interrupt_mode
 DEFAULT = 2
 .br
-Sets the default interrupt mode: 0=IRQ, 1=MSI, 2=MSIX. If set to MSIX and
-allocation fails, the driver will roll back and attempt MSI allocation. If MSI
+Sets the default interrupt mode: 0=IRQ, 1=MSI, 2=MSIX.
+If set to MSIX and
+allocation fails, the driver will roll back and attempt MSI allocation.
+If MSI
 allocation fails, the driver will roll back and attempt fixed level IRQ
-allocation. If IRQ allocation fails, then the driver load fails. With MSI/MSIX,
+allocation.
+If IRQ allocation fails, then the driver load fails.
+With MSI/MSIX,
 the driver attempts to allocate a vector for each queue in addition to one more
 for default processing.
 .It Va hw.bxe.queue_count
 DEFAULT = 4
 .br
-Sets the default number of fast path packet processing queues. Note that one
+Sets the default number of fast path packet processing queues.
+Note that one
 MSI/MSIX interrupt vector is allocated per-queue.
 .It Va hw.bxe.max_rx_bufs
 DEFAULT = 0
 .br
-Sets the maximum number of receive buffers to allocate per-queue. Zero(0) means
-to allocate a receive buffer for every buffer descriptor. By default this
+Sets the maximum number of receive buffers to allocate per-queue.
+Zero(0) means
+to allocate a receive buffer for every buffer descriptor.
+By default this
 equates to 4080 buffers per-queue which is the maximum value for this config
 parameter.
 .It Va hw.bxe.hc_rx_ticks
@@ -132,14 +140,17 @@ Sets the number of ticks for host interr
 .It Va hw.bxe.rx_budget
 DEFAULT = 0x
 .br
-Sets the maximum number of receive packets to process in an interrupt. If the
+Sets the maximum number of receive packets to process in an interrupt.
+If the
 budget is reached then the remaining/pending packets will be processed in a
 scheduled taskqueue.
 .It Va hw.bxe.max_aggregation_size
 DEFAULT = 32768
 .br
-Sets the maximum LRO aggregration byte size. The higher the value the more
-packets the hardware will aggregate. Maximum is 65K.
+Sets the maximum LRO aggregration byte size.
+The higher the value the more
+packets the hardware will aggregate.
+Maximum is 65K.
 .It Va hw.bxe.mrrs
 DEFAULT = -1
 .br
@@ -155,11 +166,15 @@ Enable/Disable 4-tuple RSS for UDP: 0=DI
 .El
 .Pp
 Special care must be taken when modifying the number of queues and receive
-buffers. FreeBSD imposes a limit on the maximum number of
+buffers.
+FreeBSD imposes a limit on the maximum number of
 .Xr mbuf 9
-allocations. If buffer allocations fail, the interface initialization will fail
-and the interface will not be usable. The driver does not make a best effort
-for buffer allocations. It is an all or nothing effort.
+allocations.
+If buffer allocations fail, the interface initialization will fail
+and the interface will not be usable.
+The driver does not 

svn commit: r255711 - in head: lib/libc/sys usr.bin/protect

2013-09-19 Thread Joel Dahl
Author: joel (doc committer)
Date: Thu Sep 19 19:43:38 2013
New Revision: 255711
URL: http://svnweb.freebsd.org/changeset/base/255711

Log:
  Minor mdoc improvements.
  
  Approved by:  re (blanket)

Modified:
  head/lib/libc/sys/procctl.2
  head/usr.bin/protect/protect.1

Modified: head/lib/libc/sys/procctl.2
==
--- head/lib/libc/sys/procctl.2 Thu Sep 19 19:43:29 2013(r255710)
+++ head/lib/libc/sys/procctl.2 Thu Sep 19 19:43:38 2013(r255711)
@@ -54,7 +54,7 @@ to control as many of the selected possi
 An error is only returned if no selected processes successfully complete
 the request.
 The following identifier types are supported:
-.Bl -tag -width Dv P_PGID
+.Bl -tag -width Dv P_PGID
 .It Dv P_PID
 Control the process with the process ID
 .Fa id .
@@ -67,7 +67,7 @@ The control request to perform is specif
 .Fa cmd
 argument.
 The following commands are supported:
-.Bl -tag -width Dv PROC_SPROTECT
+.Bl -tag -width Dv PROC_SPROTECT
 .It Dv PROC_SPROTECT
 Set process protection state.
 This is used to mark a process as protected from being killed if the system
@@ -77,7 +77,7 @@ The
 parameter must point to an integer containing an operation and zero or more
 optional flags.
 The following operations are supported:
-.Bl -tag -width Dv PPROT_CLEAR
+.Bl -tag -width Dv PPROT_CLEAR
 .It Dv PPROT_SET
 Mark the selected processes as protected.
 .It Dv PPROT_CLEAR
@@ -85,7 +85,7 @@ Clear the protected state of selected pr
 .El
 .Pp
 The following optional flags are supported:
-.Bl -tag -width Dv PPROT_DESCEND
+.Bl -tag -width Dv PPROT_DESCE
 .It Dv PPROT_DESCEND
 Apply the requested operation to all child processes of each selected process
 in addition to each selected process.

Modified: head/usr.bin/protect/protect.1
==
--- head/usr.bin/protect/protect.1  Thu Sep 19 19:43:29 2013
(r255710)
+++ head/usr.bin/protect/protect.1  Thu Sep 19 19:43:38 2013
(r255711)
@@ -46,7 +46,7 @@ The kernel does not kill protected proce
 Note that this protected state is not inherited by child processes by default.
 .Pp
 The options are:
-.Bl -tag -width indent
+.Bl -tag -width XX
 .It Fl c
 Remove protection from the specified processes.
 .It Fl d
@@ -74,9 +74,11 @@ flags may be specified when adjusting th
 Mark the Xorg server as protected:
 .Pp
 .Dl pgrep Xorg | xargs protect -p
+.Pp
 Protect all ssh sessions and their child processes:
 .Pp
 .Dl pgrep sshd | xargs protect -dip
+.Pp
 Remove protection from all current and future processes:
 .Pp
 .Dl protect -cdi -p 1
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r255662 - head/share/man/man5

2013-09-17 Thread Joel Dahl
Author: joel (doc committer)
Date: Wed Sep 18 04:44:54 2013
New Revision: 255662
URL: http://svnweb.freebsd.org/changeset/base/255662

Log:
  mdoc: sort SEE ALSO.
  
  Approved by:  re (blanket)

Modified:
  head/share/man/man5/fstab.5

Modified: head/share/man/man5/fstab.5
==
--- head/share/man/man5/fstab.5 Wed Sep 18 03:51:49 2013(r255661)
+++ head/share/man/man5/fstab.5 Wed Sep 18 04:44:54 2013(r255662)
@@ -416,6 +416,7 @@ serv:/export/nfsnfs rw,noinet6  
0   0
 .Sh SEE ALSO
 .Xr getfsent 3 ,
 .Xr getvfsbyname 3 ,
+.Xr strunvis 3 ,
 .Xr ccd 4 ,
 .Xr dump 8 ,
 .Xr fsck 8 ,
@@ -423,7 +424,6 @@ serv:/export/nfsnfs rw,noinet6  
0   0
 .Xr mount 8 ,
 .Xr quotacheck 8 ,
 .Xr quotaon 8 ,
-.Xr strunvis 3 ,
 .Xr swapon 8 ,
 .Xr umount 8
 .Sh HISTORY
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r255575 - in head: usr.bin/iscsictl usr.sbin/ctld usr.sbin/iscsid

2013-09-14 Thread Joel Dahl
Author: joel (doc committer)
Date: Sat Sep 14 21:43:18 2013
New Revision: 255575
URL: http://svnweb.freebsd.org/changeset/base/255575

Log:
  Minor mdoc fixes.
  
  Approved by:  re (blanket)

Modified:
  head/usr.bin/iscsictl/iscsictl.8
  head/usr.sbin/ctld/ctld.8
  head/usr.sbin/iscsid/iscsid.8

Modified: head/usr.bin/iscsictl/iscsictl.8
==
--- head/usr.bin/iscsictl/iscsictl.8Sat Sep 14 20:38:22 2013
(r255574)
+++ head/usr.bin/iscsictl/iscsictl.8Sat Sep 14 21:43:18 2013
(r255575)
@@ -117,7 +117,7 @@ with its control utility
 and the new one,
 .Xr iscsi 4 ,
 with
-.Xr iscsictl 8
+.Nm
 and
 .Xr iscsid 8 .
 The only thing the two have in common is the configuration file,
@@ -138,8 +138,8 @@ Attach to target qn.2012-06.com.example:
 Disconnect all iSCSI sessions:
 .Dl Nm Fl Ra
 .Sh SEE ALSO
-.Xr iscsid 8 ,
-.Xr iscsi.conf 5
+.Xr iscsi.conf 5 ,
+.Xr iscsid 8
 .Sh HISTORY
 The
 .Nm

Modified: head/usr.sbin/ctld/ctld.8
==
--- head/usr.sbin/ctld/ctld.8   Sat Sep 14 20:38:22 2013(r255574)
+++ head/usr.sbin/ctld/ctld.8   Sat Sep 14 21:43:18 2013(r255575)
@@ -44,7 +44,6 @@ daemon is responsible for managing the C
 accepting incoming iSCSI connections, performing authentication and
 passing connections to the kernel part of the native iSCSI target.
 .Pp
-.Pp
 Upon startup, the
 .Nm
 daemon parses the configuration file and exits, if it encounters any errors.
@@ -52,7 +51,7 @@ Then it compares the configuration with 
 by previously running
 .Nm
 instances, removes LUNs no longer existing in the configuration file,
-and creates new LUNs as neccessary. 
+and creates new LUNs as neccessary.
 After that it listens for the incoming iSCSI connections, performs
 authentication, and, if successful, passes the connections to the kernel part
 of CTL iSCSI target, which handles it from that point.

Modified: head/usr.sbin/iscsid/iscsid.8
==
--- head/usr.sbin/iscsid/iscsid.8   Sat Sep 14 20:38:22 2013
(r255574)
+++ head/usr.sbin/iscsid/iscsid.8   Sat Sep 14 21:43:18 2013
(r255575)
@@ -46,7 +46,6 @@ The
 daemon is responsible for performing the Login Phase of iSCSI connections,
 as well as performing SendTargets discovery.
 .Pp
-.Pp
 Upon startup, the
 .Nm
 daemon opens the iSCSI initiator device file and waits for kernel requests.
@@ -64,7 +63,8 @@ The following options are available:
 .Bl -tag -width .Fl P Ar pidfile
 .It Fl P Ar pidfile
 Specify alternative location of a file where main process PID will be stored.
-The default location is /var/run/iscsid.pid.
+The default location is
+.Pa /var/run/iscsid.pid .
 .It Fl d
 Debug mode.
 The server sends verbose debug output to standard error, and does not
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r255526 - head/usr.sbin/daemon

2013-09-13 Thread Joel Dahl
Author: joel (doc committer)
Date: Fri Sep 13 19:19:21 2013
New Revision: 255526
URL: http://svnweb.freebsd.org/changeset/base/255526

Log:
  mdoc: remove EOL whitespace.
  
  Approved by:  re (blanket)

Modified:
  head/usr.sbin/daemon/daemon.8

Modified: head/usr.sbin/daemon/daemon.8
==
--- head/usr.sbin/daemon/daemon.8   Fri Sep 13 19:08:10 2013
(r255525)
+++ head/usr.sbin/daemon/daemon.8   Fri Sep 13 19:19:21 2013
(r255526)
@@ -73,7 +73,7 @@ regardless of whether the
 .Fl u
 option is used or not.
 .It Fl P Ar supervisor_pidfile
-Write the ID of the 
+Write the ID of the
 .Nm
 process into the
 .Ar supervisor_pidfile
@@ -120,7 +120,7 @@ The
 .Fl P
 option is useful combined with the
 .Fl r
-option as 
+option as
 .Ar supervisor_pidfile
 contains the ID of the supervisor
 not the child. This is especially important if you use
@@ -128,7 +128,7 @@ not the child. This is especially import
 in an rc script as the
 .Fl p
 option will give you the child's ID to signal when you attempt to
-stop the service, causing 
+stop the service, causing
 .Nm
 to restart the child.
 .Sh EXIT STATUS
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r255525 - head/share/man/man9

2013-09-13 Thread Joel Dahl
Author: joel (doc committer)
Date: Fri Sep 13 19:08:10 2013
New Revision: 255525
URL: http://svnweb.freebsd.org/changeset/base/255525

Log:
  mdoc: fix list width.
  
  Approved by:  re (blanket)

Modified:
  head/share/man/man9/vm_map_find.9

Modified: head/share/man/man9/vm_map_find.9
==
--- head/share/man/man9/vm_map_find.9   Fri Sep 13 18:47:58 2013
(r255524)
+++ head/share/man/man9/vm_map_find.9   Fri Sep 13 19:08:10 2013
(r255525)
@@ -91,7 +91,7 @@ is called to locate a free region of the
 address at or above
 .Fa *addr .
 The following strategies are supported:
-.Bl -tag -width Dv VMFS_ALIGNED_SPACE Ns Pq Fa n
+.Bl -tag -width Dv VMFS_ALIGNED_SPACE Ns
 .It Dv VMFS_NO_SPACE
 The mapping will only succeed if there is a free region of the requested
 length at the given address
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r255344 - head/sbin/camcontrol

2013-09-06 Thread Joel Dahl
Author: joel (doc committer)
Date: Sat Sep  7 05:44:53 2013
New Revision: 255344
URL: http://svnweb.freebsd.org/changeset/base/255344

Log:
  - Begin sentence on a new line.
  - Minor language fixes.

Modified:
  head/sbin/camcontrol/camcontrol.8

Modified: head/sbin/camcontrol/camcontrol.8
==
--- head/sbin/camcontrol/camcontrol.8   Sat Sep  7 05:30:34 2013
(r255343)
+++ head/sbin/camcontrol/camcontrol.8   Sat Sep  7 05:44:53 2013
(r255344)
@@ -662,7 +662,8 @@ request and not expect CRC bytes to be r
 .Bl -tag -width 17n
 .It Fl r Ar len Ar fmt Op args
 This specifies the size of the SMP request, without the CRC bytes, and the
-SMP request format.  If the format is
+SMP request format.
+If the format is
 .Sq - ,
 .Ar len
 bytes of data will be read from standard input and written as the SMP
@@ -1152,7 +1153,8 @@ argument.
 The number of passes when performing an
 .Sq overwrite
 operation.
-Valid values are between 1 and 31. The default is 1.
+Valid values are between 1 and 31.
+The default is 1.
 .It Fl I
 When performing an
 .Sq overwrite
@@ -1212,15 +1214,20 @@ will not be asked about the timeout if a
 command line.
 .El
 .It Ic idle
-Put ATA device into IDLE state. Optional parameter
+Put ATA device into IDLE state.
+Optional parameter
 .Pq Fl t
-specifies automatic standby timer value in seconds. Value 0 disables timer.
+specifies automatic standby timer value in seconds.
+Value 0 disables timer.
 .It Ic standby
-Put ATA device into STANDBY state. Optional parameter
+Put ATA device into STANDBY state.
+Optional parameter
 .Pq Fl t
-specifies automatic standby timer value in seconds. Value 0 disables timer.
+specifies automatic standby timer value in seconds.
+Value 0 disables timer.
 .It Ic sleep
-Put ATA device into SLEEP state. Note that the only way get device out of
+Put ATA device into SLEEP state.
+Note that the only way get device out of
 this state may be reset.
 .It Ic security
 Update or report security settings, using an ATA identify command (0xec).
@@ -1246,7 +1253,8 @@ Issuing a secure erase will
 user data on the device and may take several hours to complete.
 .Pp
 When this command is used against an SSD drive all its cells will be marked as
-empty, restoring it to factory default write performance. For SSD's this action
+empty, restoring it to factory default write performance.
+For SSD's this action
 usually takes just a few seconds.
 .It Fl f
 .Pp
@@ -1276,8 +1284,10 @@ the devices configured security level.
 .Pp
 Specifies which security level to set when issuing a
 .Fl s Ar pwd
-command. The security level determines device behavior when the master
-password is used to unlock the device. When the security level is set to high
+command.
+The security level determines device behavior when the master
+password is used to unlock the device.
+When the security level is set to high
 the device requires the unlock command and the master password to unlock.
 When the security level is set to maximum the device requires a secure erase
 with the master password to unlock.
@@ -1296,7 +1306,8 @@ argument, below.
 .It Fl s Ar pwd
 .Pp
 Password the device (enable security) using the given password for the selected
-user. This option can be combined with other options such as
+user.
+This option can be combined with other options such as
 .Fl e Em pwd
 .Pp
 A master password may be set in a addition to the user password. The purpose of
@@ -1335,7 +1346,7 @@ Confirm yes to dangerous options such as
 without prompting for confirmation.
 .Pp
 .El
-If the password specified for any action commands doesn't match the configured
+If the password specified for any action commands does not match the configured
 password for the specified user the command will fail.
 .Pp
 The password in all cases is limited to 32 characters, longer passwords will
@@ -1392,7 +1403,7 @@ call can be made without a power-on rese
 .It Fl U Ar pwd
 .Pp
 Unlock the HPA configuration of the specified device using the given password.
-If the password specified doesn't match the password configured via
+If the password specified does not match the password configured via
 .Fl p Ar pwd
 the command will fail.
 .Pp
@@ -1599,7 +1610,7 @@ This will
 .Em ERASE ALL
 data from the device, so backup your data before using!
 .Pp
-This command can be used used against an SSD drive to restoring it to
+This command can be used against an SSD drive to restoring it to
 factory default write performance.
 .Bd -literal -offset indent
 camcontrol hpa ada0
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


Re: svn commit: r254273 - in head: . include lib lib/libc/iconv lib/libiconv_compat lib/libkiconv share/mk sys/sys tools/build/mk

2013-09-05 Thread Joel Dahl
On Thu, Sep 05, 2013 at 10:13:34AM -0400, John Baldwin wrote:
 On Tuesday, September 03, 2013 3:52:41 pm Joel Dahl wrote:
  On Thu, Aug 22, 2013 at 05:58:35PM +0200, Joel Dahl wrote:
   On Sun, Aug 18, 2013 at 03:51:25PM -0700, Peter Wemm wrote:
On 8/18/13 3:42 PM, Jilles Tjoelker wrote:
 On Sun, Aug 18, 2013 at 09:53:04PM +0200, Joel Dahl wrote:
 On Sun, Aug 18, 2013 at 12:34:30AM +0200, Dimitry Andric wrote:
 On Aug 13, 2013, at 09:15, Peter Wemm pe...@freebsd.org wrote:
 Author: peter
 Date: Tue Aug 13 07:15:01 2013
 New Revision: 254273
 URL: http://svnweb.freebsd.org/changeset/base/254273
 
 Log:
  The iconv in libc did two things - implement the standard APIs, 
 the GNU
  extensions and also tried to be link time compatible with ports 
 libiconv.
  This splits that functionality and enables the parts that 
 shouldn't
  interfere with the port by default.
 
  WITH_ICONV (now on by default) - adds iconv.h, iconv_open(3) etc.
  WITH_LIBICONV_COMPAT (off by default) adds the libiconv_open etc 
 API, linker
  symbols and even a stub libiconv.so.3 that are good enough to be 
 able
  to 'pkg delete -f libiconv' on a running system and reasonably 
 expect it
  to work.
 
  I have tortured many machines over the last few days to try and 
 reduce
  the possibilities of foot-shooting as much as I can.  I've 
 successfully
  recompiled to enable and disable the libiconv_compat modes, ports 
 that use
  libiconv alongside system iconv etc.  If you don't enable the
  WITH_LIBICONV_COMPAT switch, they don't share symbol space.
 
  This is an extension of behavior on other system.  iconv(3) is a 
 standard
  libc interface and libiconv port expects to be able to run 
 alongside it on
  systems that have it.
 
 Unfortunately I expect this will break many ports, when the libiconv
 port is installed.  A simple example is the following:
 SNIP
 
 It also breaks installworld when /usr/src and /usr/obj are NFS 
 exported
 read-only.
 
 I think it has to do with share/i18n/csmapper and share/i18n/esdb 
 using
 directories as make targets. This apparently causes these files to be
 rebuilt at 'make installworld' time, which is always bad but is only
 detected when /usr/obj is read-only.
 
 A hack that works is to enclose the four targets depending on 
 ${SUBDIR}
 in  .if !make(install)  .
 
 Unfortunately, the Makefiles were written to depend on the directories
 as make targets fairly deeply, so a real fix is harder.

I was looking at this yesterday, but was tied up with other things.  
I'll
take a look at it today after getting a few other things done.  It 
should be
easy enough to replicate by changing /usr/obj to readonly on test 
systems.
   
   FWIW, this is still broken.
  
  Again, this is still broken.
 
 Yeah, my laptop failed to build cups (required by ghostscript which is 
 required
 by emacs) because of this:

Well, that's a different problem. Installworld is still broken on systems with
readonly /usr/obj.

-- 
Joel
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


Re: svn commit: r254273 - in head: . include lib lib/libc/iconv lib/libiconv_compat lib/libkiconv share/mk sys/sys tools/build/mk

2013-09-03 Thread Joel Dahl
On Thu, Aug 22, 2013 at 05:58:35PM +0200, Joel Dahl wrote:
 On Sun, Aug 18, 2013 at 03:51:25PM -0700, Peter Wemm wrote:
  On 8/18/13 3:42 PM, Jilles Tjoelker wrote:
   On Sun, Aug 18, 2013 at 09:53:04PM +0200, Joel Dahl wrote:
   On Sun, Aug 18, 2013 at 12:34:30AM +0200, Dimitry Andric wrote:
   On Aug 13, 2013, at 09:15, Peter Wemm pe...@freebsd.org wrote:
   Author: peter
   Date: Tue Aug 13 07:15:01 2013
   New Revision: 254273
   URL: http://svnweb.freebsd.org/changeset/base/254273
   
   Log:
The iconv in libc did two things - implement the standard APIs, the 
   GNU
extensions and also tried to be link time compatible with ports 
   libiconv.
This splits that functionality and enables the parts that shouldn't
interfere with the port by default.
   
WITH_ICONV (now on by default) - adds iconv.h, iconv_open(3) etc.
WITH_LIBICONV_COMPAT (off by default) adds the libiconv_open etc API, 
   linker
symbols and even a stub libiconv.so.3 that are good enough to be able
to 'pkg delete -f libiconv' on a running system and reasonably expect 
   it
to work.
   
I have tortured many machines over the last few days to try and reduce
the possibilities of foot-shooting as much as I can.  I've 
   successfully
recompiled to enable and disable the libiconv_compat modes, ports 
   that use
libiconv alongside system iconv etc.  If you don't enable the
WITH_LIBICONV_COMPAT switch, they don't share symbol space.
   
This is an extension of behavior on other system.  iconv(3) is a 
   standard
libc interface and libiconv port expects to be able to run alongside 
   it on
systems that have it.
   
   Unfortunately I expect this will break many ports, when the libiconv
   port is installed.  A simple example is the following:
   SNIP
   
   It also breaks installworld when /usr/src and /usr/obj are NFS exported
   read-only.
   
   I think it has to do with share/i18n/csmapper and share/i18n/esdb using
   directories as make targets. This apparently causes these files to be
   rebuilt at 'make installworld' time, which is always bad but is only
   detected when /usr/obj is read-only.
   
   A hack that works is to enclose the four targets depending on ${SUBDIR}
   in  .if !make(install)  .
   
   Unfortunately, the Makefiles were written to depend on the directories
   as make targets fairly deeply, so a real fix is harder.
  
  I was looking at this yesterday, but was tied up with other things.  I'll
  take a look at it today after getting a few other things done.  It should be
  easy enough to replicate by changing /usr/obj to readonly on test systems.
 
 FWIW, this is still broken.

Again, this is still broken.

-- 
Joel
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r255082 - head/share/man/man4

2013-08-30 Thread Joel Dahl
Author: joel (doc committer)
Date: Fri Aug 30 20:20:06 2013
New Revision: 255082
URL: http://svnweb.freebsd.org/changeset/base/255082

Log:
  mdoc: add missing El.

Modified:
  head/share/man/man4/vmx.4

Modified: head/share/man/man4/vmx.4
==
--- head/share/man/man4/vmx.4   Fri Aug 30 20:13:33 2013(r255081)
+++ head/share/man/man4/vmx.4   Fri Aug 30 20:20:06 2013(r255082)
@@ -100,6 +100,7 @@ Number of receive descriptors per ring a
 The default value is 256.
 The value must be a multiple of 32, and the maximum is 2048.
 There are two rings so the actual usage is doubled.
+.El
 .Sh EXAMPLES
 The following entry must be added to the VMware configuration file
 to provide the
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r254984 - head/share/man/man5

2013-08-27 Thread Joel Dahl
Author: joel (doc committer)
Date: Wed Aug 28 05:12:29 2013
New Revision: 254984
URL: http://svnweb.freebsd.org/changeset/base/254984

Log:
  mdoc fix

Modified:
  head/share/man/man5/periodic.conf.5

Modified: head/share/man/man5/periodic.conf.5
==
--- head/share/man/man5/periodic.conf.5 Wed Aug 28 01:10:51 2013
(r254983)
+++ head/share/man/man5/periodic.conf.5 Wed Aug 28 05:12:29 2013
(r254984)
@@ -1,4 +1,4 @@
-\-
+.\-
 .\ Copyright (c) 2000 Brian Somers br...@awfulhak.org
 .\ All rights reserved.
 .\
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r254825 - head/share/man/man9

2013-08-25 Thread Joel Dahl
Author: joel (doc committer)
Date: Sun Aug 25 06:58:51 2013
New Revision: 254825
URL: http://svnweb.freebsd.org/changeset/base/254825

Log:
  mdoc fixes.

Modified:
  head/share/man/man9/pfil.9

Modified: head/share/man/man9/pfil.9
==
--- head/share/man/man9/pfil.9  Sun Aug 25 02:07:28 2013(r254824)
+++ head/share/man/man9/pfil.9  Sun Aug 25 06:58:51 2013(r254825)
@@ -71,6 +71,7 @@ typedef int (*pfil_func_t)(void *arg, st
 .Fn pfil_wlock struct pfil_head *
 .Ft void
 .Fn pfil_wunlock struct pfil_head *
+.Ed
 .Sh DESCRIPTION
 The
 .Nm
@@ -241,7 +242,7 @@ Fine-grained locking was added in
 lock export was added in
 .Fx 10.0 .
 .Sh BUGS
-.Pp When a
+When a
 .Vt pfil_head
 is being modified, no traffic is diverted
 (to avoid deadlock).
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r254826 - head/share/man/man9

2013-08-25 Thread Joel Dahl
Author: joel (doc committer)
Date: Sun Aug 25 06:59:30 2013
New Revision: 254826
URL: http://svnweb.freebsd.org/changeset/base/254826

Log:
  Remove EOL whitespace.

Modified:
  head/share/man/man9/timeout.9

Modified: head/share/man/man9/timeout.9
==
--- head/share/man/man9/timeout.9   Sun Aug 25 06:58:51 2013
(r254825)
+++ head/share/man/man9/timeout.9   Sun Aug 25 06:59:30 2013
(r254826)
@@ -256,7 +256,7 @@ after the callout function returns.
 .Pp
 The
 .Fn callout_init_rw
-and the 
+and the
 .Fn callout_init_rm
 fuctions serve the need of using rwlocks and rmlocks in conjunction
 with callouts.
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


Re: svn commit: r254273 - in head: . include lib lib/libc/iconv lib/libiconv_compat lib/libkiconv share/mk sys/sys tools/build/mk

2013-08-22 Thread Joel Dahl
On Sun, Aug 18, 2013 at 03:51:25PM -0700, Peter Wemm wrote:
 On 8/18/13 3:42 PM, Jilles Tjoelker wrote:
  On Sun, Aug 18, 2013 at 09:53:04PM +0200, Joel Dahl wrote:
  On Sun, Aug 18, 2013 at 12:34:30AM +0200, Dimitry Andric wrote:
  On Aug 13, 2013, at 09:15, Peter Wemm pe...@freebsd.org wrote:
  Author: peter
  Date: Tue Aug 13 07:15:01 2013
  New Revision: 254273
  URL: http://svnweb.freebsd.org/changeset/base/254273
  
  Log:
   The iconv in libc did two things - implement the standard APIs, the GNU
   extensions and also tried to be link time compatible with ports 
  libiconv.
   This splits that functionality and enables the parts that shouldn't
   interfere with the port by default.
  
   WITH_ICONV (now on by default) - adds iconv.h, iconv_open(3) etc.
   WITH_LIBICONV_COMPAT (off by default) adds the libiconv_open etc API, 
  linker
   symbols and even a stub libiconv.so.3 that are good enough to be able
   to 'pkg delete -f libiconv' on a running system and reasonably expect it
   to work.
  
   I have tortured many machines over the last few days to try and reduce
   the possibilities of foot-shooting as much as I can.  I've successfully
   recompiled to enable and disable the libiconv_compat modes, ports that 
  use
   libiconv alongside system iconv etc.  If you don't enable the
   WITH_LIBICONV_COMPAT switch, they don't share symbol space.
  
   This is an extension of behavior on other system.  iconv(3) is a 
  standard
   libc interface and libiconv port expects to be able to run alongside it 
  on
   systems that have it.
  
  Unfortunately I expect this will break many ports, when the libiconv
  port is installed.  A simple example is the following:
  SNIP
  
  It also breaks installworld when /usr/src and /usr/obj are NFS exported
  read-only.
  
  I think it has to do with share/i18n/csmapper and share/i18n/esdb using
  directories as make targets. This apparently causes these files to be
  rebuilt at 'make installworld' time, which is always bad but is only
  detected when /usr/obj is read-only.
  
  A hack that works is to enclose the four targets depending on ${SUBDIR}
  in  .if !make(install)  .
  
  Unfortunately, the Makefiles were written to depend on the directories
  as make targets fairly deeply, so a real fix is harder.
 
 I was looking at this yesterday, but was tied up with other things.  I'll
 take a look at it today after getting a few other things done.  It should be
 easy enough to replicate by changing /usr/obj to readonly on test systems.

FWIW, this is still broken.

-- 
Joel
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r254658 - head/share/man/man9

2013-08-22 Thread Joel Dahl
Author: joel (doc committer)
Date: Thu Aug 22 16:00:09 2013
New Revision: 254658
URL: http://svnweb.freebsd.org/changeset/base/254658

Log:
  Minor mdoc nit.

Modified:
  head/share/man/man9/atomic.9

Modified: head/share/man/man9/atomic.9
==
--- head/share/man/man9/atomic.9Thu Aug 22 14:02:34 2013
(r254657)
+++ head/share/man/man9/atomic.9Thu Aug 22 16:00:09 2013
(r254658)
@@ -266,7 +266,6 @@ and do not have any variants with memory
 The
 .Fn atomic_store
 functions are only provided with release memory barriers.
-.Pp
 .Bl -hang
 .It Fn atomic_swap p v
 .Bd -literal -compact
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r254659 - head/usr.bin/dtc

2013-08-22 Thread Joel Dahl
Author: joel (doc committer)
Date: Thu Aug 22 16:01:20 2013
New Revision: 254659
URL: http://svnweb.freebsd.org/changeset/base/254659

Log:
  Remove EOL whitespace.

Modified:
  head/usr.bin/dtc/dtc.1

Modified: head/usr.bin/dtc/dtc.1
==
--- head/usr.bin/dtc/dtc.1  Thu Aug 22 16:00:09 2013(r254658)
+++ head/usr.bin/dtc/dtc.1  Thu Aug 22 16:01:20 2013(r254659)
@@ -141,11 +141,11 @@ or
 to be used for device tree source files that contain conditional components.
 This tool supports two extensions to the standard to support conditional
 compilation of device trees.
-The first is an 
+The first is an
 .Ar /include/if [property]/ file.dts
 directive that is allowed at the start of a file and which will only include
 the specified file if it the specified property is passed with this flag.
-The second is the 
+The second is the
 .Ar $NAME
 format for property values.
 These allow property value to be specified on the command line.
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r254660 - head/lib/libc/sys

2013-08-22 Thread Joel Dahl
Author: joel (doc committer)
Date: Thu Aug 22 16:02:20 2013
New Revision: 254660
URL: http://svnweb.freebsd.org/changeset/base/254660

Log:
  Remove EOL whitespace.

Modified:
  head/lib/libc/sys/chflags.2

Modified: head/lib/libc/sys/chflags.2
==
--- head/lib/libc/sys/chflags.2 Thu Aug 22 16:01:20 2013(r254659)
+++ head/lib/libc/sys/chflags.2 Thu Aug 22 16:02:20 2013(r254660)
@@ -198,7 +198,7 @@ the system is in single-user mode.
 for details.)
 .Pp
 The implementation of all flags is filesystem-dependent.
-See the description of the 
+See the description of the
 .Dv UF_ARCHIVE
 flag above for one example of the differences in behavior.
 Care should be exercised when writing applications to account for
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r254174 - head/share/man/man9

2013-08-10 Thread Joel Dahl
Author: joel (doc committer)
Date: Sat Aug 10 06:37:53 2013
New Revision: 254174
URL: http://svnweb.freebsd.org/changeset/base/254174

Log:
  mdoc: document title should be all caps.

Modified:
  head/share/man/man9/vm_page_busy.9

Modified: head/share/man/man9/vm_page_busy.9
==
--- head/share/man/man9/vm_page_busy.9  Sat Aug 10 01:48:15 2013
(r254173)
+++ head/share/man/man9/vm_page_busy.9  Sat Aug 10 06:37:53 2013
(r254174)
@@ -25,7 +25,7 @@
 .\
 .\ $FreeBSD$
 .Dd August 07, 2013
-.Dt vm_page_busy 9
+.Dt VM_PAGE_BUSY 9
 .Os
 .Sh NAME
 .Nm vm_page_busied ,
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r254175 - head/share/man/man9

2013-08-10 Thread Joel Dahl
Author: joel (doc committer)
Date: Sat Aug 10 06:39:42 2013
New Revision: 254175
URL: http://svnweb.freebsd.org/changeset/base/254175

Log:
  Minor mdoc nits.

Modified:
  head/share/man/man9/mutex.9

Modified: head/share/man/man9/mutex.9
==
--- head/share/man/man9/mutex.9 Sat Aug 10 06:37:53 2013(r254174)
+++ head/share/man/man9/mutex.9 Sat Aug 10 06:39:42 2013(r254175)
@@ -226,7 +226,7 @@ lock, respectively, and also accept a
 .Fa flags
 argument.
 In both cases, the only flags presently available for lock acquires are
-.Dv MTX_QUIET 
+.Dv MTX_QUIET
 and
 .Dv MTX_RECURSE .
 If the
@@ -243,7 +243,6 @@ bit is turned on in the
 .Fa flags
 argument, then the mutex can be acquired recursively.
 .Pp
-.Pp
 The
 .Fn mtx_trylock
 attempts to acquire the
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r254176 - head/share/man/man4

2013-08-10 Thread Joel Dahl
Author: joel (doc committer)
Date: Sat Aug 10 06:48:20 2013
New Revision: 254176
URL: http://svnweb.freebsd.org/changeset/base/254176

Log:
  mdoc: remove commented out macro, sort SEE ALSO and add missing .El.

Modified:
  head/share/man/man4/rsu.4

Modified: head/share/man/man4/rsu.4
==
--- head/share/man/man4/rsu.4   Sat Aug 10 06:39:42 2013(r254175)
+++ head/share/man/man4/rsu.4   Sat Aug 10 06:48:20 2013(r254176)
@@ -22,7 +22,6 @@
 .Nm rsu
 .Nd Realtek RTL8188SU/RTL8192SU USB IEEE 802.11b/g/n wireless network device
 .Sh SYNOPSIS
-.\.Cd rsu* at uhub? port ?
 To compile this driver into the kernel,
 place the following lines in your kernel configuration file:
 .Bd -ragged -offset indent
@@ -120,6 +119,7 @@ The following adapters should work:
 .It Sweex LW154
 .It TRENDnet TEW-648UB
 .It TRENDnet TEW-649UB
+.El
 .Sh EXAMPLES
 Join an existing BSS network (i.e., connect to an access point):
 .Bd -literal -offset indent
@@ -149,14 +149,14 @@ The driver will reset the hardware.
 This should not happen.
 .El
 .Sh SEE ALSO
-.Xr arp 8 ,
+.Xr hostname 1 ,
 .Xr intro 1 ,
-.Xr netintro 4 ,
 .Xr usb 3 ,
-.Xr hostname 1 ,
-.Xr ifconfig 8,
+.Xr netintro 4 ,
+.Xr rsufw 4 ,
 .Xr wlan 4 ,
-.Xr rsufw 4
+.Xr arp 8 ,
+.Xr ifconfig 8
 .Sh HISTORY
 The
 .Nm
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r253735 - head/usr.sbin/watchdogd

2013-07-28 Thread Joel Dahl
Author: joel (doc committer)
Date: Sun Jul 28 06:15:25 2013
New Revision: 253735
URL: http://svnweb.freebsd.org/changeset/base/253735

Log:
  mdoc and language improvements.

Modified:
  head/usr.sbin/watchdogd/watchdogd.8

Modified: head/usr.sbin/watchdogd/watchdogd.8
==
--- head/usr.sbin/watchdogd/watchdogd.8 Sun Jul 28 06:02:40 2013
(r253734)
+++ head/usr.sbin/watchdogd/watchdogd.8 Sun Jul 28 06:15:25 2013
(r253735)
@@ -115,7 +115,7 @@ will terminate.
 The
 .Nm
 utility recognizes the following runtime options:
-.Bl -tag -width .Fl -softtimeout-action Ar action  
+.Bl -tag -width 30m
 .It Fl I Ar file
 Write the process ID of the
 .Nm
@@ -204,16 +204,23 @@ and the kernel
 .Xr log 4
 device for
 .Xr syslog 8 .
+.Sh FILES
+.Bl -tag -width .Pa /var/run/watchdogd.pid -compact
+.It Pa /var/run/watchdogd.pid
+.El
 .Sh EXAMPLES
 .Ss Debugging watchdogd and/or your watchdog script.
+This is a useful recipe for debugging
+.Nm
+and your watchdog script.
 .Pp
-This is a useful recipe for debugging watchdogd and your watchdog
-script.
-.Pp
-(Note that ^C works oddly because watchdogd calls system(3) so the
+(Note that ^C works oddly because
+.Nm
+calls
+.Xr system 3
+so the
 first ^C will terminate the sleep command.)
 .Pp
-.Pp
 Explanation of options used:
 .Bl -enum -offset indent -compact
 .It
@@ -224,17 +231,29 @@ Set the watchdog to trip at 30 seconds. 
 Use of a softtimeout:
 .Bl -enum -offset indent -compact -nested
 .It
-Use a softtimeout (don't arm the hardware watchdog) (--softtimeout)
+Use a softtimeout (do not arm the hardware watchdog).
+(--softtimeout)
 .It
-Set the softtimeout action to do both kernel printf(9) and log(9) when it 
trips. (--softtimeout-action log,printf)
+Set the softtimeout action to do both kernel
+.Xr printf 9
+and
+.Xr log 9
+when it trips.
+(--softtimeout-action log,printf)
 .El
 .It
 Use of a pre-timeout:
 .Bl -enum -offset indent -compact -nested
 .It
-Set a pre-timeout of 15 seconds (this will later trigger a panic/dump) 
(--pretimeout 15)
+Set a pre-timeout of 15 seconds (this will later trigger a panic/dump).
+(--pretimeout 15)
 .It
-Set the action to also kernel printf(9) and log(9) when it trips. 
(--pretimeout-action log,printf)
+Set the action to also kernel
+.Xr printf 9
+and
+.Xr log 9
+when it trips.
+(--pretimeout-action log,printf)
 .El
 .It
 Use of a script:
@@ -279,10 +298,6 @@ watchdogd  -t 120 \\
   --pretimeout 60 --pretimeout-action log,printf,panic \\
   -e '/path/to/your/script 60' -w -T 15
 .Ed
-.Sh FILES
-.Bl -tag -width .Pa /var/run/watchdogd.pid -compact
-.It Pa /var/run/watchdogd.pid
-.El
 .Sh SEE ALSO
 .Xr watchdog 4 ,
 .Xr watchdog 8 ,
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r253736 - head/usr.bin/fetch

2013-07-28 Thread Joel Dahl
Author: joel (doc committer)
Date: Sun Jul 28 06:16:12 2013
New Revision: 253736
URL: http://svnweb.freebsd.org/changeset/base/253736

Log:
  Remove EOL whitespace.

Modified:
  head/usr.bin/fetch/fetch.1

Modified: head/usr.bin/fetch/fetch.1
==
--- head/usr.bin/fetch/fetch.1  Sun Jul 28 06:15:25 2013(r253735)
+++ head/usr.bin/fetch/fetch.1  Sun Jul 28 06:16:12 2013(r253736)
@@ -135,7 +135,7 @@ This option is deprecated and is provide
 only.
 .It Fl -ca-cert= Ns Ar file
 [SSL]
-Path to certificate bundle containing trusted CA certificates. 
+Path to certificate bundle containing trusted CA certificates.
 If not specified,
 .Pa /etc/ssl/cert.pem
 is used.
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r253445 - head/sbin/mount

2013-07-17 Thread Joel Dahl
Author: joel (doc committer)
Date: Thu Jul 18 05:46:33 2013
New Revision: 253445
URL: http://svnweb.freebsd.org/changeset/base/253445

Log:
  Minor mdoc fixes.

Modified:
  head/sbin/mount/mount.conf.8

Modified: head/sbin/mount/mount.conf.8
==
--- head/sbin/mount/mount.conf.8Thu Jul 18 02:58:24 2013
(r253444)
+++ head/sbin/mount/mount.conf.8Thu Jul 18 05:46:33 2013
(r253445)
@@ -43,7 +43,7 @@ using the logic in the
 function in
 .Pa src/sys/kern/vfs_mountroot.c .
 The root mount logic can be described as follows:
-.Bl -enum 
+.Bl -enum
 .It
 The kernel will synthesize in memory a config file
 with default directives for mounting
@@ -58,7 +58,7 @@ as the root file system.
 Next, the kernel will parse the in-memory config file created in step 1
 and try to mount the actual root file system.
 See
-.Sx FILE FORMAT 
+.Sx FILE FORMAT
 for the format of the config file.
 .It
 When the actual root file system is mounted,
@@ -67,7 +67,7 @@ will be re-mounted on the
 .Pa /dev
 directory.
 .It
-If a 
+If a
 .Pa /.mount.conf
 file does not exist in the root file system which was
 just mounted, the root mount logic stops here.
@@ -110,7 +110,7 @@ mount -t {FS} -o {OPTIONS} {MOUNTPOINT} 
 .Ed
 .Pp
 If this is successfully mounted,
-further lines in 
+further lines in
 .Pa .mount.conf
 are ignored.
 If all lines in
@@ -164,7 +164,7 @@ can manually enter the root file system 
 Finally if that does not work, the kernel will panic.
 .Bd -literal -offset indent
 .Li .onfail panic
-.LI .timeout 3
+.Li .timeout 3
 cd9660:/dev/cd0 ro
 .Li .timeout 0
 cd9660:/dev/acd0 ro
@@ -211,7 +211,7 @@ The following example
 will direct the kernel to do a unionfs
 mount on a directory
 .Pa /jail/freebsd-8-stable
-which has a 
+which has a
 .Xr chroot 2
 environment.
 .Bd -literal -offset indent
@@ -228,13 +228,13 @@ exist so that the root mount logic can p
 If this directory does not exist, the system
 may hang during the bootup process.
 .Sh SEE ALSO
-.Xr boot 8 ,
+.Xr nmount 2 ,
+.Xr md 4 ,
 .Xr boot.config 5 ,
 .Xr fstab 5 ,
+.Xr boot 8 ,
 .Xr loader 8 ,
-.Xr mount 8 ,
-.Xr md 4 ,
-.Xr nmount 2
+.Xr mount 8
 .Sh HISTORY
 The
 .Nm
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r253093 - head/share/man/man4

2013-07-09 Thread Joel Dahl
Author: joel (doc committer)
Date: Tue Jul  9 12:25:44 2013
New Revision: 253093
URL: http://svnweb.freebsd.org/changeset/base/253093

Log:
  Make mandoc lint happy.

Modified:
  head/share/man/man4/bridge.4

Modified: head/share/man/man4/bridge.4
==
--- head/share/man/man4/bridge.4Tue Jul  9 11:00:10 2013
(r253092)
+++ head/share/man/man4/bridge.4Tue Jul  9 12:25:44 2013
(r253093)
@@ -151,7 +151,7 @@ The following
 .Xr rc.conf 5
 variable configures an IPv6 link-local address on
 .Li bridge0
-interface: 
+interface:
 .Bd -literal -offset indent
 ifconfig_bridge0_ipv6=up
 .Ed
@@ -186,7 +186,7 @@ and applications use both of them.
 To prevent this situation,
 .Nm
 checks whether an link-local scoped IPv6 address is configured on
-a member interface to be added and the 
+a member interface to be added and the
 .Nm
 interface.
 When the
@@ -214,7 +214,6 @@ and/or
 .Va net.inet6.ip6.auto_linklocal
 is set to
 .Li 1 .
-.Ed
 .Sh SPANNING TREE
 The
 .Nm
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r253026 - head/share/man/man9

2013-07-07 Thread Joel Dahl
Author: joel (doc committer)
Date: Mon Jul  8 05:58:09 2013
New Revision: 253026
URL: http://svnweb.freebsd.org/changeset/base/253026

Log:
  mdoc: remove superfluous paragraph macros.

Modified:
  head/share/man/man9/SDT.9

Modified: head/share/man/man9/SDT.9
==
--- head/share/man/man9/SDT.9   Mon Jul  8 05:06:32 2013(r253025)
+++ head/share/man/man9/SDT.9   Mon Jul  8 05:58:09 2013(r253026)
@@ -54,7 +54,6 @@
 .Fn SDT_PROBE6 prov mod func name arg0 arg1 arg2 arg3 arg4 arg5
 .Fn SDT_PROBE7 prov mod func name arg0 arg1 arg2 arg3 arg4 arg5 arg6
 .Sh DESCRIPTION
-.Pp
 The
 .Nm
 macros allow programmers to define static trace points in kernel code.
@@ -158,7 +157,6 @@ trace points.
 They are meant to be added to executable code and can be used to instrument the
 code in which they are called.
 .Sh EXAMPLES
-.Pp
 The following probe definition will create a DTrace probe called
 .Ql icmp::unreach:pkt-receive ,
 which would hypothetically be triggered when the kernel receives an ICMP packet
@@ -216,7 +214,6 @@ framework were originally ported to Free
 This manual page was written by
 .An Mark Johnston Aq ma...@freebsd.org .
 .Sh BUGS
-.Pp
 The
 .Nm
 macros allow the module name of a probe to be specified as part of a probe
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r252379 - in head: sbin/mdconfig share/man/man5 share/man/man9

2013-06-29 Thread Joel Dahl
Author: joel (doc committer)
Date: Sat Jun 29 16:05:44 2013
New Revision: 252379
URL: http://svnweb.freebsd.org/changeset/base/252379

Log:
  mdoc: remove EOL whitespace.

Modified:
  head/sbin/mdconfig/mdconfig.8
  head/share/man/man5/fstab.5
  head/share/man/man9/locking.9

Modified: head/sbin/mdconfig/mdconfig.8
==
--- head/sbin/mdconfig/mdconfig.8   Sat Jun 29 15:58:03 2013
(r252378)
+++ head/sbin/mdconfig/mdconfig.8   Sat Jun 29 16:05:44 2013
(r252379)
@@ -144,7 +144,7 @@ If both of
 and
 .Fl f
 options are specified,
-display devices which match the two conditions. 
+display devices which match the two conditions.
 If the
 .Fl v
 option is specified, show all details.

Modified: head/share/man/man5/fstab.5
==
--- head/share/man/man5/fstab.5 Sat Jun 29 15:58:03 2013(r252378)
+++ head/share/man/man5/fstab.5 Sat Jun 29 16:05:44 2013(r252379)
@@ -231,7 +231,7 @@ is an
 .Xr md 4
 device file
 .Pq Do md Dc or Do md[0-9]* Dc
-and 
+and
 .Dq file
 is specified in
 .Fa fs_mntopts ,

Modified: head/share/man/man9/locking.9
==
--- head/share/man/man9/locking.9   Sat Jun 29 15:58:03 2013
(r252378)
+++ head/share/man/man9/locking.9   Sat Jun 29 16:05:44 2013
(r252379)
@@ -129,7 +129,7 @@ for details.
 Lockmanager locks are sleepable shared/exclusive locks used mostly in
 .Xr VFS 9
 .Po
-as a 
+as a
 .Xr vnode 9
 lock
 .Pc
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r251801 - head/share/misc

2013-06-16 Thread Joel Dahl
Author: joel (doc committer)
Date: Sun Jun 16 07:16:44 2013
New Revision: 251801
URL: http://svnweb.freebsd.org/changeset/base/251801

Log:
  cvsweb - svnweb

Modified:
  head/share/misc/bsd-family-tree

Modified: head/share/misc/bsd-family-tree
==
--- head/share/misc/bsd-family-tree Sun Jun 16 06:56:17 2013
(r251800)
+++ head/share/misc/bsd-family-tree Sun Jun 16 07:16:44 2013
(r251801)
@@ -638,6 +638,6 @@ Steven M. Schultz for providing 2.8BSD, 
 
 --
 Copyright (c) 1997-2012 Wolfram Schneider wo...@freebsd.org
-URL: http://cvsweb.freebsd.org/src/share/misc/bsd-family-tree
+URL: http://svnweb.freebsd.org/base/head/share/misc/bsd-family-tree
 
 $FreeBSD$
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r251564 - head/lib/libc/sys

2013-06-09 Thread Joel Dahl
Author: joel (doc committer)
Date: Sun Jun  9 07:15:43 2013
New Revision: 251564
URL: http://svnweb.freebsd.org/changeset/base/251564

Log:
  Minor mdoc fixes.

Modified:
  head/lib/libc/sys/aio_mlock.2

Modified: head/lib/libc/sys/aio_mlock.2
==
--- head/lib/libc/sys/aio_mlock.2   Sun Jun  9 06:13:51 2013
(r251563)
+++ head/lib/libc/sys/aio_mlock.2   Sun Jun  9 07:15:43 2013
(r251564)
@@ -60,7 +60,7 @@ and
 in order to determine return or error status for the enqueued operation
 while it is in progress.
 .Pp
-If the request could not be enqueued (generally due to 
+If the request could not be enqueued (generally due to
 .Xr aio 4
 limits),
 then the call returns without having enqueued the request.
@@ -115,8 +115,8 @@ if the request was explicitly cancelled 
 .Xr aio_cancel 2 ,
 .Xr aio_error 2 ,
 .Xr aio_return 2 ,
-.Xr aio 4 ,
-.Xr mlock 2
+.Xr mlock 2 ,
+.Xr aio 4
 .Sh PORTABILITY
 The
 .Fn aio_mlock
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


svn commit: r251369 - in head: lib/libc/gen lib/libc/net share/man/man3 usr.bin/m4/lib

2013-06-04 Thread Joel Dahl
Author: joel (doc committer)
Date: Tue Jun  4 07:37:06 2013
New Revision: 251369
URL: http://svnweb.freebsd.org/changeset/base/251369

Log:
  mdoc: convert .Fd to .In, which is much nicer.

Modified:
  head/lib/libc/gen/dl_iterate_phdr.3
  head/lib/libc/net/getaddrinfo.3
  head/lib/libc/net/getnameinfo.3
  head/share/man/man3/offsetof.3
  head/usr.bin/m4/lib/ohash_init.3
  head/usr.bin/m4/lib/ohash_interval.3

Modified: head/lib/libc/gen/dl_iterate_phdr.3
==
--- head/lib/libc/gen/dl_iterate_phdr.3 Tue Jun  4 06:38:01 2013
(r251368)
+++ head/lib/libc/gen/dl_iterate_phdr.3 Tue Jun  4 07:37:06 2013
(r251369)
@@ -29,7 +29,7 @@ Statically linked programs use an implem
 .Fn dl_iterate_phdr
 from libc.
 .Sh SYNOPSIS
-.Fd #include link.h
+.In link.h
 .Ft int
 .Fn dl_iterate_phdr int (*callback)(struct dl_phdr_info *, size_t, void *) 
void *data
 .Sh DESCRIPTION

Modified: head/lib/libc/net/getaddrinfo.3
==
--- head/lib/libc/net/getaddrinfo.3 Tue Jun  4 06:38:01 2013
(r251368)
+++ head/lib/libc/net/getaddrinfo.3 Tue Jun  4 07:37:06 2013
(r251369)
@@ -26,9 +26,9 @@
 .Nm freeaddrinfo
 .Nd socket address structure to host and service name
 .Sh SYNOPSIS
-.Fd #include sys/types.h
-.Fd #include sys/socket.h
-.Fd #include netdb.h
+.In sys/types.h
+.In sys/socket.h
+.In netdb.h
 .Ft int
 .Fo getaddrinfo
 .Fa const char *hostname const char *servname

Modified: head/lib/libc/net/getnameinfo.3
==
--- head/lib/libc/net/getnameinfo.3 Tue Jun  4 06:38:01 2013
(r251368)
+++ head/lib/libc/net/getnameinfo.3 Tue Jun  4 07:37:06 2013
(r251369)
@@ -25,9 +25,9 @@
 .Nm getnameinfo
 .Nd socket address structure to hostname and service name
 .Sh SYNOPSIS
-.Fd #include sys/types.h
-.Fd #include sys/socket.h
-.Fd #include netdb.h
+.In sys/types.h
+.In sys/socket.h
+.In netdb.h
 .Ft int
 .Fo getnameinfo
 .Fa const struct sockaddr *sa socklen_t salen char *host

Modified: head/share/man/man3/offsetof.3
==
--- head/share/man/man3/offsetof.3  Tue Jun  4 06:38:01 2013
(r251368)
+++ head/share/man/man3/offsetof.3  Tue Jun  4 07:37:06 2013
(r251369)
@@ -23,7 +23,7 @@
 .Nm offsetof
 .Nd offset of a structure member
 .Sh SYNOPSIS
-.Fd #include stddef.h
+.In stddef.h
 .Ft size_t
 .Fn offsetof type member
 .Sh DESCRIPTION

Modified: head/usr.bin/m4/lib/ohash_init.3
==
--- head/usr.bin/m4/lib/ohash_init.3Tue Jun  4 06:38:01 2013
(r251368)
+++ head/usr.bin/m4/lib/ohash_init.3Tue Jun  4 07:37:06 2013
(r251369)
@@ -31,9 +31,9 @@
 .Nm ohash_entries
 .Nd light-weight open hashing
 .Sh SYNOPSIS
-.Fd #include stdint.h
-.Fd #include stddef.h
-.Fd #include ohash.h
+.In stdint.h
+.In stddef.h
+.In ohash.h
 .Ft void
 .Fn ohash_init struct ohash *h unsigned int size struct ohash_info *info
 .Ft void

Modified: head/usr.bin/m4/lib/ohash_interval.3
==
--- head/usr.bin/m4/lib/ohash_interval.3Tue Jun  4 06:38:01 2013
(r251368)
+++ head/usr.bin/m4/lib/ohash_interval.3Tue Jun  4 07:37:06 2013
(r251369)
@@ -25,9 +25,9 @@
 .Nm ohash_qlookupi
 .Nd helper functions for open hashing
 .Sh SYNOPSIS
-.Fd #include stdint.h
-.Fd #include stddef.h
-.Fd #include ohash.h
+.In stdint.h
+.In stddef.h
+.In ohash.h
 .Ft uint32_t
 .Fn ohash_interval const char *start const char **pend
 .Ft void *
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


  1   2   3   4   5   >