svn commit: r217345 - in head/sys/mips: include mips

2011-01-12 Thread Jayachandran C.
Author: jchandra Date: Thu Jan 13 06:48:43 2011 New Revision: 217345 URL: http://svn.freebsd.org/changeset/base/217345 Log: Cleanup physical address and PTE types on MIPS. 1. Use vm_paddr_t for physical addresses. There are a few places in the MIPS platform code where vm_offset_t is

svn commit: r217344 - head/sbin/geom/class/part

2011-01-12 Thread Maxim Konovalov
Author: maxim Date: Thu Jan 13 06:20:44 2011 New Revision: 217344 URL: http://svn.freebsd.org/changeset/base/217344 Log: o Somehow I revert Dd macro in the previous commit. Re-revert it. Modified: head/sbin/geom/class/part/gpart.8 Modified: head/sbin/geom/class/part/gpart.8 ===

svn commit: r217343 - head/sbin/geom/class/part

2011-01-12 Thread Maxim Konovalov
Author: maxim Date: Thu Jan 13 06:18:00 2011 New Revision: 217343 URL: http://svn.freebsd.org/changeset/base/217343 Log: o Start each sentence on a new line. No content changes. Suggested by: jhb MFC after:1 week Modified: head/sbin/geom/class/part/gpart.8 Modified: head/sbin/geo

svn commit: r217342 - head/sbin/geom/class/part

2011-01-12 Thread Maxim Konovalov
Author: maxim Date: Thu Jan 13 06:10:47 2011 New Revision: 217342 URL: http://svn.freebsd.org/changeset/base/217342 Log: o Typo fixes. PR: docs/153933 Submitted by: jpaetzel@, Warren Block MFC after:1 week Modified: head/sbin/geom/class/part/gpart.8 Modified: head/sbin

Re: svn commit: r217330 - head/sys/x86/x86

2011-01-12 Thread Warner Losh
On 01/12/2011 14:27, m...@freebsd.org wrote: On Wed, Jan 12, 2011 at 1:21 PM, John Baldwin wrote: On Wednesday, January 12, 2011 4:08:50 pm Matthew D Fleming wrote: Author: mdf Date: Wed Jan 12 21:08:49 2011 New Revision: 217330 URL: http://svn.freebsd.org/changeset/base/217330 Log: Fix a

svn commit: r217341 - in head/sys/powerpc: aim include

2011-01-12 Thread Nathan Whitehorn
Author: nwhitehorn Date: Thu Jan 13 04:37:48 2011 New Revision: 217341 URL: http://svn.freebsd.org/changeset/base/217341 Log: Fix handling of NX pages on capable CPUs. Thanks to kib for prodding me in the right direction. Modified: head/sys/powerpc/aim/mmu_oea64.c head/sys/powerpc/aim/tra

Re: svn commit: r217330 - head/sys/x86/x86

2011-01-12 Thread Bruce Evans
On Wed, 12 Jan 2011 m...@freebsd.org wrote: On Wed, Jan 12, 2011 at 4:06 PM, Bruce Evans wrote: On Wed, 12 Jan 2011, John Baldwin wrote: ... and then just used SYSCTL_ADD_BUS_SIZE_T() in the code so we could let the members in the bounce zone retain the same types passed to bus_dma_tag_create

svn commit: r217340 - head/contrib/dialog

2011-01-12 Thread Nathan Whitehorn
Author: nwhitehorn Date: Thu Jan 13 02:26:22 2011 New Revision: 217340 URL: http://svn.freebsd.org/changeset/base/217340 Log: Bootstrap merge info for dialog. Modified: Directory Properties: head/contrib/dialog/ (props changed) ___ svn-src-all@fre

svn commit: r217339 - vendor/dialog/dialog-1.1-20100428

2011-01-12 Thread Nathan Whitehorn
Author: nwhitehorn Date: Thu Jan 13 02:23:12 2011 New Revision: 217339 URL: http://svn.freebsd.org/changeset/base/217339 Log: Tag dialog 1.1-20100428. Added: vendor/dialog/dialog-1.1-20100428/ - copied from r217338, vendor/dialog/dist/ ___ svn-

svn commit: r217338 - in vendor/dialog: . dist

2011-01-12 Thread Nathan Whitehorn
Author: nwhitehorn Date: Thu Jan 13 02:21:23 2011 New Revision: 217338 URL: http://svn.freebsd.org/changeset/base/217338 Log: Vendor import of dialog-1.1-20100428. Added: vendor/dialog/ vendor/dialog/dist/ - copied from r217337, head/contrib/dialog/

svn commit: r217337 - head/sys/x86/x86

2011-01-12 Thread Matthew D Fleming
Author: mdf Date: Thu Jan 13 00:52:57 2011 New Revision: 217337 URL: http://svn.freebsd.org/changeset/base/217337 Log: Revert to using bus_size_t for the bounce_zone's alignment member. Reuqested by: jhb Modified: head/sys/x86/x86/busdma_machdep.c Modified: head/sys/x86/x86/busdma_machd

Re: svn commit: r217330 - head/sys/x86/x86

2011-01-12 Thread mdf
On Wed, Jan 12, 2011 at 4:06 PM, Bruce Evans wrote: > On Wed, 12 Jan 2011, John Baldwin wrote: > >>> Log: >>>  Fix a brain fart.  Since this file is shared between i386 and amd64, a >>>  bus_size_t may be 32 or 64 bits.  Change the bounce_zone alignment field >>>  to explicitly be 32 bits, as I ca

Re: svn commit: r217330 - head/sys/x86/x86

2011-01-12 Thread Bruce Evans
On Wed, 12 Jan 2011, John Baldwin wrote: Log: Fix a brain fart. Since this file is shared between i386 and amd64, a bus_size_t may be 32 or 64 bits. Change the bounce_zone alignment field to explicitly be 32 bits, as I can't really imagine a DMA device that needs anything close to 2GB

svn commit: r217336 - head/sys/fs/nfsserver

2011-01-12 Thread Zack Kirsch
Author: zack Date: Wed Jan 12 23:46:12 2011 New Revision: 217336 URL: http://svn.freebsd.org/changeset/base/217336 Log: In the experimental NFS server, when converting an open-owner to a lock-owner, start at sequence id 1 instead of 0, to match up with both Solaris and Linux. Reviewed by:

svn commit: r217335 - head/sys/fs/nfsserver

2011-01-12 Thread Zack Kirsch
Author: zack Date: Wed Jan 12 23:34:09 2011 New Revision: 217335 URL: http://svn.freebsd.org/changeset/base/217335 Log: Clean up the experimental NFS server replay cache when the module is unloaded. Reviewed by:rmacklem Approved by:zml (mentor) Modified: head/sys/fs/nfsserver/n

svn commit: r217334 - head/sbin/geom/class/raid3

2011-01-12 Thread Bruce Cran
Author: brucec Date: Wed Jan 12 23:31:28 2011 New Revision: 217334 URL: http://svn.freebsd.org/changeset/base/217334 Log: Fix formatting of cross-references. Modified: head/sbin/geom/class/raid3/graid3.8 Modified: head/sbin/geom/class/raid3/graid3.8 ==

svn commit: r217333 - head/sys/netinet

2011-01-12 Thread Christian S.J. Peron
Author: csjp Date: Wed Jan 12 23:07:51 2011 New Revision: 217333 URL: http://svn.freebsd.org/changeset/base/217333 Log: Un-break the build: use the correct format specifier for sizeof() Modified: head/sys/netinet/if_ether.c Modified: head/sys/netinet/if_ether.c ==

svn commit: r217332 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2011-01-12 Thread Matthew D Fleming
Author: mdf Date: Wed Jan 12 23:06:38 2011 New Revision: 217332 URL: http://svn.freebsd.org/changeset/base/217332 Log: Revert cddl changes for sysctl(9) until I understand why this isn't building on universe. Modified: head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c head/sys/cdd

svn commit: r217331 - head/sys/dev/alc

2011-01-12 Thread Pyun YongHyeon
Author: yongari Date: Wed Jan 12 22:24:07 2011 New Revision: 217331 URL: http://svn.freebsd.org/changeset/base/217331 Log: Make sure to invoke unlocked foo_start since the taskqueue does not hold a driver lock. This should fix a regression introduced in r216925. PR: kern/153769 Modif

Re: svn commit: r217330 - head/sys/x86/x86

2011-01-12 Thread John Baldwin
On Wednesday, January 12, 2011 4:27:40 pm m...@freebsd.org wrote: > On Wed, Jan 12, 2011 at 1:21 PM, John Baldwin wrote: > > On Wednesday, January 12, 2011 4:08:50 pm Matthew D Fleming wrote: > >> Author: mdf > >> Date: Wed Jan 12 21:08:49 2011 > >> New Revision: 217330 > >> URL: http://svn.freebs

Re: svn commit: r217327 - head/sbin/geom/class/raid3

2011-01-12 Thread Pawel Jakub Dawidek
On Wed, Jan 12, 2011 at 08:27:14PM +, Bruce Cran wrote: > Author: brucec > Date: Wed Jan 12 20:27:14 2011 > New Revision: 217327 > URL: http://svn.freebsd.org/changeset/base/217327 > > Log: > Fix sorting of cross-references. > > Modified: > head/sbin/geom/class/raid3/graid3.8 > > Modifie

Re: svn commit: r217330 - head/sys/x86/x86

2011-01-12 Thread mdf
On Wed, Jan 12, 2011 at 1:21 PM, John Baldwin wrote: > On Wednesday, January 12, 2011 4:08:50 pm Matthew D Fleming wrote: >> Author: mdf >> Date: Wed Jan 12 21:08:49 2011 >> New Revision: 217330 >> URL: http://svn.freebsd.org/changeset/base/217330 >> >> Log: >>   Fix a brain fart.  Since this file

Re: svn commit: r217330 - head/sys/x86/x86

2011-01-12 Thread John Baldwin
On Wednesday, January 12, 2011 4:08:50 pm Matthew D Fleming wrote: > Author: mdf > Date: Wed Jan 12 21:08:49 2011 > New Revision: 217330 > URL: http://svn.freebsd.org/changeset/base/217330 > > Log: > Fix a brain fart. Since this file is shared between i386 and amd64, a > bus_size_t may be 32

Re: svn commit: r217309 - in head: . contrib/dialog contrib/dialog/po contrib/dialog/samples contrib/dialog/samples/copifuncs contrib/dialog/samples/install gnu/lib gnu/lib/libdialog gnu/lib/libdialog

2011-01-12 Thread John Baldwin
On Wednesday, January 12, 2011 3:12:47 pm Nathan Whitehorn wrote: > On 01/12/11 10:33, John Baldwin wrote: > > On Wednesday, January 12, 2011 9:55:03 am Nathan Whitehorn wrote: > >> Author: nwhitehorn > >> Date: Wed Jan 12 14:55:02 2011 > >> New Revision: 217309 > >> URL: http://svn.freebsd.org/cha

svn commit: r217330 - head/sys/x86/x86

2011-01-12 Thread Matthew D Fleming
Author: mdf Date: Wed Jan 12 21:08:49 2011 New Revision: 217330 URL: http://svn.freebsd.org/changeset/base/217330 Log: Fix a brain fart. Since this file is shared between i386 and amd64, a bus_size_t may be 32 or 64 bits. Change the bounce_zone alignment field to explicitly be 32 bits, as

Re: svn commit: r217327 - head/sbin/geom/class/raid3

2011-01-12 Thread Garrett Cooper
On Wed, Jan 12, 2011 at 12:27 PM, Bruce Cran wrote: > Author: brucec > Date: Wed Jan 12 20:27:14 2011 > New Revision: 217327 > URL: http://svn.freebsd.org/changeset/base/217327 > > Log: >  Fix sorting of cross-references. Thanks :). ___ svn-src-all@free

svn commit: r217329 - in stable/8: sys/net sys/netinet tools/regression/netinet/arphold

2011-01-12 Thread George V. Neville-Neil
Author: gnn Date: Wed Jan 12 20:44:11 2011 New Revision: 217329 URL: http://svn.freebsd.org/changeset/base/217329 Log: MFC: 215207 Add a queue to hold packets while we await an ARP reply. When a fast machine first brings up some non TCP networking program it is quite possible that we

svn commit: r217328 - head/sys/sys

2011-01-12 Thread Matthew D Fleming
Author: mdf Date: Wed Jan 12 20:38:55 2011 New Revision: 217328 URL: http://svn.freebsd.org/changeset/base/217328 Log: Fix a typo. XLONG should allow pointers to unsigned and signed long. Submitted by: Modified: head/sys/sys/sysctl.h Modified: head/sys/sys/sysctl.h ===

svn commit: r217327 - head/sbin/geom/class/raid3

2011-01-12 Thread Bruce Cran
Author: brucec Date: Wed Jan 12 20:27:14 2011 New Revision: 217327 URL: http://svn.freebsd.org/changeset/base/217327 Log: Fix sorting of cross-references. Modified: head/sbin/geom/class/raid3/graid3.8 Modified: head/sbin/geom/class/raid3/graid3.8 =

Re: svn commit: r217309 - in head: . contrib/dialog contrib/dialog/po contrib/dialog/samples contrib/dialog/samples/copifuncs contrib/dialog/samples/install gnu/lib gnu/lib/libdialog gnu/lib/libdialog

2011-01-12 Thread Nathan Whitehorn
On 01/12/11 10:33, John Baldwin wrote: On Wednesday, January 12, 2011 9:55:03 am Nathan Whitehorn wrote: Author: nwhitehorn Date: Wed Jan 12 14:55:02 2011 New Revision: 217309 URL: http://svn.freebsd.org/changeset/base/217309 Log: Update dialog to version 20100428. This changes the license u

svn commit: r217325 - in head/sys/security: mac mac_seeotheruids

2011-01-12 Thread Matthew D Fleming
Author: mdf Date: Wed Jan 12 19:54:14 2011 New Revision: 217325 URL: http://svn.freebsd.org/changeset/base/217325 Log: sysctl(9) cleanup checkpoint: amd64 GENERIC builds cleanly. Commit the security directory. Modified: head/sys/security/mac/mac_framework.c head/sys/security/mac_seeoth

svn commit: r217323 - in head/sys/dev: acpi_support ae alc ale ath bce bge bwi bwn ed iscsi/initiator iwi mps mpt nfe pccbb sound/pcm ste txp usb/input

2011-01-12 Thread Matthew D Fleming
Author: mdf Date: Wed Jan 12 19:53:56 2011 New Revision: 217323 URL: http://svn.freebsd.org/changeset/base/217323 Log: sysctl(9) cleanup checkpoint: amd64 GENERIC builds cleanly. Commit the rest of the devices. Modified: head/sys/dev/acpi_support/acpi_ibm.c head/sys/dev/ae/if_ae.c he

svn commit: r217321 - in head/sys/dev/cxgb: . ulp/iw_cxgb

2011-01-12 Thread Matthew D Fleming
Author: mdf Date: Wed Jan 12 19:53:44 2011 New Revision: 217321 URL: http://svn.freebsd.org/changeset/base/217321 Log: sysctl(9) cleanup checkpoint: amd64 GENERIC builds cleanly. Commit the cxgb driver piece. Modified: head/sys/dev/cxgb/cxgb_main.c head/sys/dev/cxgb/cxgb_sge.c head/s

svn commit: r217320 - in head/sys/netgraph: . bluetooth/common bluetooth/socket

2011-01-12 Thread Matthew D Fleming
Author: mdf Date: Wed Jan 12 19:53:39 2011 New Revision: 217320 URL: http://svn.freebsd.org/changeset/base/217320 Log: sysctl(9) cleanup checkpoint: amd64 GENERIC builds cleanly. Commit the netgraph piece. Modified: head/sys/netgraph/bluetooth/common/ng_bluetooth.c head/sys/netgraph/bl

svn commit: r217326 - in head/sys: amd64/acpica ddb kern nlm rpc ufs/ffs x86/x86

2011-01-12 Thread Matthew D Fleming
Author: mdf Date: Wed Jan 12 19:54:19 2011 New Revision: 217326 URL: http://svn.freebsd.org/changeset/base/217326 Log: sysctl(9) cleanup checkpoint: amd64 GENERIC builds cleanly. Commit the kernel changes. Modified: head/sys/amd64/acpica/acpi_machdep.c head/sys/ddb/db_capture.c head/

svn commit: r217324 - head/sys/geom/sched

2011-01-12 Thread Matthew D Fleming
Author: mdf Date: Wed Jan 12 19:54:07 2011 New Revision: 217324 URL: http://svn.freebsd.org/changeset/base/217324 Log: sysctl(9) cleanup checkpoint: amd64 GENERIC builds cleanly. Commit the geom piece. Modified: head/sys/geom/sched/g_sched.c head/sys/geom/sched/gs_rr.c Modified: head/

svn commit: r217322 - in head/sys: net net80211 netinet netinet/cc netinet/ipfw

2011-01-12 Thread Matthew D Fleming
Author: mdf Date: Wed Jan 12 19:53:50 2011 New Revision: 217322 URL: http://svn.freebsd.org/changeset/base/217322 Log: sysctl(9) cleanup checkpoint: amd64 GENERIC builds cleanly. Commit the net* piece. Modified: head/sys/net/if.c head/sys/net/netisr.c head/sys/net/route.c head/sys/

svn commit: r217319 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2011-01-12 Thread Matthew D Fleming
Author: mdf Date: Wed Jan 12 19:53:30 2011 New Revision: 217319 URL: http://svn.freebsd.org/changeset/base/217319 Log: sysctl(9) cleanup checkpoint: amd64 GENERIC builds cleanly. Commit the zfs piece. Modified: head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c head/sys/cddl/con

svn commit: r217318 - in head/sys/dev: e1000 ixgbe

2011-01-12 Thread Matthew D Fleming
Author: mdf Date: Wed Jan 12 19:53:23 2011 New Revision: 217318 URL: http://svn.freebsd.org/changeset/base/217318 Log: sysctl(9) cleanup checkpoint: amd64 GENERIC builds cleanly. Commit the Intel drivers. Modified: head/sys/dev/e1000/if_em.c head/sys/dev/e1000/if_igb.c head/sys/dev/e

Re: svn commit: r217309 - in head: . contrib/dialog contrib/dialog/po contrib/dialog/samples contrib/dialog/samples/copifuncs contrib/dialog/samples/install gnu/lib gnu/lib/libdialog gnu/lib/libdialog

2011-01-12 Thread John Baldwin
On Wednesday, January 12, 2011 9:55:03 am Nathan Whitehorn wrote: > Author: nwhitehorn > Date: Wed Jan 12 14:55:02 2011 > New Revision: 217309 > URL: http://svn.freebsd.org/changeset/base/217309 > > Log: > Update dialog to version 20100428. This changes the license under which > dialog is dist

svn commit: r217317 - head

2011-01-12 Thread Bruce Cran
Author: brucec Date: Wed Jan 12 19:28:52 2011 New Revision: 217317 URL: http://svn.freebsd.org/changeset/base/217317 Log: Fix wrapping of 20110103 entry. Modified: head/UPDATING Modified: head/UPDATING == --- head/UP

svn commit: r217316 - head/sbin/geom/class/raid3

2011-01-12 Thread Bruce Cran
Author: brucec Date: Wed Jan 12 19:20:30 2011 New Revision: 217316 URL: http://svn.freebsd.org/changeset/base/217316 Log: Fix cross-reference to gvinum(8). Modified: head/sbin/geom/class/raid3/graid3.8 Modified: head/sbin/geom/class/raid3/graid3.8

svn commit: r217315 - head/sys/netinet

2011-01-12 Thread George V. Neville-Neil
Author: gnn Date: Wed Jan 12 19:11:17 2011 New Revision: 217315 URL: http://svn.freebsd.org/changeset/base/217315 Log: Fix several bugs in the ARP code related to improperly formatted packets. *) Reject requests with a protocol length not equal to 4. This is IPv4 and there is no reason

svn commit: r217314 - head/sbin/geom/class/part

2011-01-12 Thread Andrey V. Elsukov
Author: ae Date: Wed Jan 12 19:06:59 2011 New Revision: 217314 URL: http://svn.freebsd.org/changeset/base/217314 Log: Fix up the grammar. PR: docs/153933 MFC after:3 days Modified: head/sbin/geom/class/part/gpart.8 Modified: head/sbin/geom/class/part/gpart.8

svn commit: r217313 - in head: . sys/sys

2011-01-12 Thread Matthew D Fleming
:52:48 2011(r217313) @@ -23,6 +23,13 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 9. ln -s aj /etc/malloc.conf.) 20110112: + A SYSCTL_[ADD_]UQUAD was added for unsigned uint64_t pointers, + symmetric with the existing SYSCTL_[ADD_]QUAD. Type checking + for scalar

Re: svn commit: r217308 - head/sbin/hastd

2011-01-12 Thread Pawel Jakub Dawidek
On Wed, Jan 12, 2011 at 06:10:19PM +0200, Kostik Belousov wrote: > On Wed, Jan 12, 2011 at 02:38:17PM +, Pawel Jakub Dawidek wrote: > > Author: pjd > > Date: Wed Jan 12 14:38:17 2011 > > New Revision: 217308 > > URL: http://svn.freebsd.org/changeset/base/217308 > > > > Log: > > Add a note th

svn commit: r217312 - head/sbin/hastd

2011-01-12 Thread Pawel Jakub Dawidek
Author: pjd Date: Wed Jan 12 16:16:54 2011 New Revision: 217312 URL: http://svn.freebsd.org/changeset/base/217312 Log: execve(2), not fork(2) resets signal handler to the default value (if it isn't ignored). Correct comment talking about that. Pointed out by: kib MFC after:3 d

Re: svn commit: r217308 - head/sbin/hastd

2011-01-12 Thread Kostik Belousov
On Wed, Jan 12, 2011 at 02:38:17PM +, Pawel Jakub Dawidek wrote: > Author: pjd > Date: Wed Jan 12 14:38:17 2011 > New Revision: 217308 > URL: http://svn.freebsd.org/changeset/base/217308 > > Log: > Add a note that when custom signal handler is installed for a signal, > signal action is res

svn commit: r217308 - head/sbin/hastd

2011-01-12 Thread Pawel Jakub Dawidek
Author: pjd Date: Wed Jan 12 14:38:17 2011 New Revision: 217308 URL: http://svn.freebsd.org/changeset/base/217308 Log: Add a note that when custom signal handler is installed for a signal, signal action is restored to default in child after fork(2). In this case there is no need to do anythi

svn commit: r217307 - head/sbin/hastd

2011-01-12 Thread Pawel Jakub Dawidek
Author: pjd Date: Wed Jan 12 14:35:29 2011 New Revision: 217307 URL: http://svn.freebsd.org/changeset/base/217307 Log: Install default signal handlers before masking signals we want to handle. It is possible that the parent process ignores some of them and sigtimedwait() will never see them,

svn commit: r217306 - stable/8/sbin/hastd

2011-01-12 Thread Pawel Jakub Dawidek
Author: pjd Date: Wed Jan 12 14:13:50 2011 New Revision: 217306 URL: http://svn.freebsd.org/changeset/base/217306 Log: svn merge -c215331,215332,215676 svn+ssh://svn.freebsd.org/base/head/sbin/hastd sbin/hastd MFC r215331,r215332,r215676: r215676 (by brucec): Don't generate input

svn commit: r217305 - in head: sbin/geom/class/raid3 sys/geom/raid3

2011-01-12 Thread Andrey V. Elsukov
Author: ae Date: Wed Jan 12 13:55:01 2011 New Revision: 217305 URL: http://svn.freebsd.org/changeset/base/217305 Log: Sector size can not be greater than MAXPHYS. Since GRAID3 calculates sector size from user-specified block size, report to user about big blocksize. PR: kern/1

svn commit: r217304 - head/sys/mips/rmi

2011-01-12 Thread Jayachandran C.
Author: jchandra Date: Wed Jan 12 13:16:35 2011 New Revision: 217304 URL: http://svn.freebsd.org/changeset/base/217304 Log: The message ring interrupt needs to be enabled for all cpus, not just the ones which run the message ring handler. Some bits of the interrupt mask are part of the st

svn commit: r217303 - head/sys/geom/nop

2011-01-12 Thread Andrey V. Elsukov
Author: ae Date: Wed Jan 12 12:26:10 2011 New Revision: 217303 URL: http://svn.freebsd.org/changeset/base/217303 Log: Sector size can not be greater than MAXPHYS. MFC after:1 week Modified: head/sys/geom/nop/g_nop.c Modified: head/sys/geom/nop/g_nop.c ===

svn commit: r217302 - stable/8/sys/kern

2011-01-12 Thread Bjoern A. Zeeb
Author: bz Date: Wed Jan 12 10:12:32 2011 New Revision: 217302 URL: http://svn.freebsd.org/changeset/base/217302 Log: MFC r216340,217195: Don't tie ct_debug to bootverbose. Provide a sysctl to turn it on or off. Switch the default to always off. Improve style and wording of co