svn commit: r216321 - head/usr.sbin/fwcontrol

2010-12-09 Thread Kevin Lo
Author: kevlo Date: Thu Dec 9 08:36:23 2010 New Revision: 216321 URL: http://svn.freebsd.org/changeset/base/216321 Log: Closing fd when it's done Reviewed by: sbruno Modified: head/usr.sbin/fwcontrol/fwcontrol.c Modified: head/usr.sbin/fwcontrol/fwcontrol.c

Re: svn commit: r216295 - in head/usr.sbin/bsnmpd: . tools tools/bsnmptools tools/libbsnmptools

2010-12-09 Thread poyopoyo
install with DESTDIR is broken. -- kuro Index: tools/bsnmptools/Makefile === --- tools/bsnmptools/Makefile (revision 216320) +++ tools/bsnmptools/Makefile (working copy) @@ -17,8 +17,8 @@ LDADD+= -lcrypto .endif -LINKS=

Re: svn commit: r216269 - head/sys/geom/part

2010-12-09 Thread Bruce Evans
On Wed, 8 Dec 2010, Bruce Cran wrote: On Wed, 8 Dec 2010 16:46:17 +1100 (EST) Bruce Evans b...@optusnet.com.au wrote: - for ATA drives, it uses the firmware geometry supplied by the drive firmware. The ATA standard specifies this to be H=16/S=63 for all drives larger than a certain size

svn commit: r216322 - head/usr.sbin

2010-12-09 Thread Bruce Cran
Author: brucec Date: Thu Dec 9 11:37:40 2010 New Revision: 216322 URL: http://svn.freebsd.org/changeset/base/216322 Log: Build sade on amd64 as well as i386 and sparc64. Modified: head/usr.sbin/Makefile.amd64 Modified: head/usr.sbin/Makefile.amd64

svn commit: r216323 - head/usr.sbin/bsnmpd/tools/bsnmptools

2010-12-09 Thread Shteryana Shopova
Author: syrinx Date: Thu Dec 9 12:25:45 2010 New Revision: 216323 URL: http://svn.freebsd.org/changeset/base/216323 Log: Unbreak make installworld w/ DESTDIR specified PR: kern/152939 Modified: head/usr.sbin/bsnmpd/tools/bsnmptools/Makefile Modified:

svn commit: r216324 - in head/sys/mips: mips rmi rmi/dev/nlge

2010-12-09 Thread Jayachandran C.
Author: jchandra Date: Thu Dec 9 12:30:13 2010 New Revision: 216324 URL: http://svn.freebsd.org/changeset/base/216324 Log: Fix compilation when DEBUG option is enabled. - remove unused code in mips/rmi/xlr_pci.c - remove unused variable in mips/rmi/dev/nlge/if_nlge.c - fix reference

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

2010-12-09 Thread Rick Macklem
Author: rmacklem Date: Thu Dec 9 19:02:23 2010 New Revision: 216330 URL: http://svn.freebsd.org/changeset/base/216330 Log: Disable attempts to establish a callback connection from the experimental NFSv4 server to a NFSv4 client when delegations are not being issued, even if the client

svn commit: r216333 - head/sys/i386/i386

2010-12-09 Thread Alan Cox
Author: alc Date: Thu Dec 9 20:16:00 2010 New Revision: 216333 URL: http://svn.freebsd.org/changeset/base/216333 Log: When r207410 eliminated the acquisition and release of the page queues lock from pmap_extract_and_hold(), it didn't take into account that pmap_pte_quick() sometimes

svn commit: r216334 - head/lib/libc/stdio

2010-12-09 Thread John Baldwin
Author: jhb Date: Thu Dec 9 20:28:30 2010 New Revision: 216334 URL: http://svn.freebsd.org/changeset/base/216334 Log: When reopening a stream backed by an open file descriptor, do not close the existing file descriptor. Instead, let dup2() atomically close the old file descriptor when

svn commit: r216335 - head/sys/vm

2010-12-09 Thread Max Laier
Author: mlaier Date: Thu Dec 9 21:02:22 2010 New Revision: 216335 URL: http://svn.freebsd.org/changeset/base/216335 Log: Fix a long standing (from the original 4.4BSD lite sources) race between vmspace_fork and vm_map_wire that would lead to vm_fault_copy_wired: page missing panics. While

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

2010-12-09 Thread Jung-uk Kim
Author: jkim Date: Thu Dec 9 21:29:36 2010 New Revision: 216337 URL: http://svn.freebsd.org/changeset/base/216337 Log: Remove AMD Family 0Fh, Model 6Bh, Stepping 2 from the list of P-state invariant CPUs. I do not believe this model is P-state invariant any more. Maybe cpufreq(4) was

svn commit: r216338 - in head/lib/csu: amd64 arm i386-elf ia64 powerpc powerpc64 sparc64

2010-12-09 Thread Dimitry Andric
Author: dim Date: Thu Dec 9 21:31:21 2010 New Revision: 216338 URL: http://svn.freebsd.org/changeset/base/216338 Log: Let all .c and .S files under lib/csu consistently use the __FBSDID() macro for identification, instead of several different hand-rolled variants (plain .ident, .ascii,

svn commit: r216340 - head/sys/kern

2010-12-09 Thread Bjoern A. Zeeb
Author: bz Date: Thu Dec 9 22:02:48 2010 New Revision: 216340 URL: http://svn.freebsd.org/changeset/base/216340 Log: Don't tie ct_debug to bootverbose. Provide a sysctl to turn it on or off. Switch the default to always off. Reviewed by: kib Modified: head/sys/kern/subr_clock.c

Re: svn commit: r216269 - head/sys/geom/part

2010-12-09 Thread Bruce Cran
On Thu, 9 Dec 2010 19:58:56 +1100 (EST) Bruce Evans b...@optusnet.com.au wrote: I had understood the ATA_FLAG_54_58 backwards. It tells us if the drive is not so old that it doesn't support IDENTIFY records for words 54-58. I think we rarely get here. Drives old enough to use CHS may be so

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

2010-12-09 Thread Andriy Gapon
on 09/12/2010 23:29 Jung-uk Kim said the following: Author: jkim Date: Thu Dec 9 21:29:36 2010 New Revision: 216337 URL: http://svn.freebsd.org/changeset/base/216337 Log: Remove AMD Family 0Fh, Model 6Bh, Stepping 2 from the list of P-state invariant CPUs. I do not believe this

Re: svn commit: r216269 - head/sys/geom/part

2010-12-09 Thread Andriy Gapon
on 10/12/2010 00:14 Bruce Cran said the following: Since it appears that disks are still using the CHS fields despite having been obsolete since ATA-7 I guess it makes sense to continue printing them. I apologize for repeating myself, that probably starts to be annoying... We read some

Re: svn commit: r216269 - head/sys/geom/part

2010-12-09 Thread Kostik Belousov
On Fri, Dec 10, 2010 at 12:36:57AM +0200, Andriy Gapon wrote: on 10/12/2010 00:14 Bruce Cran said the following: Since it appears that disks are still using the CHS fields despite having been obsolete since ATA-7 I guess it makes sense to continue printing them. I apologize for repeating

Re: svn commit: r216269 - head/sys/geom/part

2010-12-09 Thread Andriy Gapon
on 10/12/2010 00:55 Kostik Belousov said the following: On Fri, Dec 10, 2010 at 12:36:57AM +0200, Andriy Gapon wrote: on 10/12/2010 00:14 Bruce Cran said the following: Since it appears that disks are still using the CHS fields despite having been obsolete since ATA-7 I guess it makes sense to

Re: svn commit: r216269 - head/sys/geom/part

2010-12-09 Thread Bruce Evans
On Thu, 9 Dec 2010, Bruce Cran wrote: On Thu, 9 Dec 2010 19:58:56 +1100 (EST) Bruce Evans b...@optusnet.com.au wrote: I had understood the ATA_FLAG_54_58 backwards. It tells us if the drive is not so old that it doesn't support IDENTIFY records for words 54-58. I think we rarely get here.

svn commit: r216343 - head/usr.bin/stat

2010-12-09 Thread Doug Barton
Author: dougb Date: Thu Dec 9 23:57:23 2010 New Revision: 216343 URL: http://svn.freebsd.org/changeset/base/216343 Log: Bring in the change from OpenBSD's 1.14: synchronize synopsis and usage; -l, -r, -s and -x are mutually exclusive; while here, slightly improve spacing in the source

Re: svn commit: r216269 - head/sys/geom/part

2010-12-09 Thread Erik Trulsson
On Fri, Dec 10, 2010 at 12:36:57AM +0200, Andriy Gapon wrote: on 10/12/2010 00:14 Bruce Cran said the following: Since it appears that disks are still using the CHS fields despite having been obsolete since ATA-7 I guess it makes sense to continue printing them. I apologize for repeating

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

2010-12-09 Thread Ruslan Ermilov
Author: ru Date: Fri Dec 10 07:55:38 2010 New Revision: 216349 URL: http://svn.freebsd.org/changeset/base/216349 Log: Document this driver supports the converter I just bought. Modified: head/share/man/man4/uplcom.4 Modified: head/share/man/man4/uplcom.4