svn commit: r226828 - head/contrib/tzcode/stdtime

2011-10-27 Thread Mikolaj Golub
Author: trociny Date: Thu Oct 27 08:44:07 2011 New Revision: 226828 URL: http://svn.freebsd.org/changeset/base/226828 Log: Fix a memory leak in tzload(). Reported by: valgrind Reviewed by: kib MFC after:3 days Modified: head/contrib/tzcode/stdtime/localtime.c Modified:

svn commit: r226829 - head/sys/netgraph

2011-10-27 Thread Gleb Smirnoff
Author: glebius Date: Thu Oct 27 09:43:25 2011 New Revision: 226829 URL: http://svn.freebsd.org/changeset/base/226829 Log: - If KDB NETGRAPH_DEBUG are on, print traces on discovered failed invariants. - Reduce tautology in NETGRAPH_DEBUG output. Modified: head/sys/netgraph/netgraph.h

svn commit: r226830 - head/sys/net

2011-10-27 Thread Gleb Smirnoff
Author: glebius Date: Thu Oct 27 09:45:12 2011 New Revision: 226830 URL: http://svn.freebsd.org/changeset/base/226830 Log: Add macro IF_DEQUEUE_ALL(ifq, m), that takes the entire mbuf chain off the queue. It can be utilized in queue processing to avoid multiple locking/unlocking. Modified:

svn commit: r226831 - head/sys/contrib/pf/net

2011-10-27 Thread Gleb Smirnoff
Author: glebius Date: Thu Oct 27 09:47:00 2011 New Revision: 226831 URL: http://svn.freebsd.org/changeset/base/226831 Log: Utilize new IF_DEQUEUE_ALL(ifq, m) macro in pfsyncintr() to reduce contention on ifqueue lock. Modified: head/sys/contrib/pf/net/if_pfsync.c Modified:

svn commit: r226832 - in head/sys/arm: at91 econa xscale/i80321 xscale/i8134x xscale/ixp425 xscale/pxa

2011-10-27 Thread Kevin Lo
Author: kevlo Date: Thu Oct 27 10:21:40 2011 New Revision: 226832 URL: http://svn.freebsd.org/changeset/base/226832 Log: Check the return value of BUS_SETUP_INTR() Reviewed by: imp Modified: head/sys/arm/at91/at91.c head/sys/arm/econa/econa.c head/sys/arm/xscale/i80321/iq80321.c

svn commit: r226833 - in head/sys: boot/forth kern

2011-10-27 Thread Sergey Kandaurov
Author: pluknet Date: Thu Oct 27 10:25:11 2011 New Revision: 226833 URL: http://svn.freebsd.org/changeset/base/226833 Log: Remove the long reprecated ``/stand/sysinstall'' from the init_path. It can be put back using the INIT_PATH config option or init_path loader variable, if still

Re: svn commit: r226713 - head/sys/netinet

2011-10-27 Thread Nikolay Denev
On Oct 25, 2011, at 7:06 AM, Qing Li wrote: Author: qingli Date: Tue Oct 25 04:06:29 2011 New Revision: 226713 URL: http://svn.freebsd.org/changeset/base/226713 Log: Exclude host routes when checking for prefix coverage on multiple interfaces. A host route has a NULL mask so check for

svn commit: r226835 - in head/sys: amd64/conf i386/conf ia64/conf pc98/conf powerpc/conf sparc64/conf

2011-10-27 Thread Ken Smith
Author: kensmith Date: Thu Oct 27 13:07:49 2011 New Revision: 226835 URL: http://svn.freebsd.org/changeset/base/226835 Log: Adjust the debugger options slightly. This should help me do the right thing when changing the debugging options as part of head becoming a new stable branch. It may

svn commit: r226836 - head/lib/libc/gen

2011-10-27 Thread Sergey Kandaurov
Author: pluknet Date: Thu Oct 27 13:17:42 2011 New Revision: 226836 URL: http://svn.freebsd.org/changeset/base/226836 Log: Fix the manual section number for a cross-reference to open(2) and sort it. Reviewed by: ed MFC after:3 days Modified: head/lib/libc/gen/getutxent.3

Re: svn commit: r226835 - in head/sys: amd64/conf i386/conf ia64/conf pc98/conf powerpc/conf sparc64/conf

2011-10-27 Thread Ken Smith
On Thu, 2011-10-27 at 13:07 +, Ken Smith wrote: Author: kensmith Date: Thu Oct 27 13:07:49 2011 New Revision: 226835 URL: http://svn.freebsd.org/changeset/base/226835 Log: Adjust the debugger options slightly. This should help me do the right thing when changing the debugging

svn commit: r226837 - head/sys/crypto/aesni

2011-10-27 Thread Pawel Jakub Dawidek
Author: pjd Date: Thu Oct 27 14:07:57 2011 New Revision: 226837 URL: http://svn.freebsd.org/changeset/base/226837 Log: Improve AES-NI performance for AES-XTS: - Operate on uint64_t types when doing XORing, etc. instead of uint8_t. - Don't bzero() temporary block for every AES block. Do it

svn commit: r226839 - head/sys/crypto/aesni

2011-10-27 Thread Pawel Jakub Dawidek
Author: pjd Date: Thu Oct 27 14:15:26 2011 New Revision: 226839 URL: http://svn.freebsd.org/changeset/base/226839 Log: Update Copyright. MFC after:3 days Modified: head/sys/crypto/aesni/aesni_wrap.c Modified: head/sys/crypto/aesni/aesni_wrap.c

Re: svn commit: r226828 - head/contrib/tzcode/stdtime

2011-10-27 Thread Fabian Keil
Mikolaj Golub troc...@freebsd.org wrote: Author: trociny Date: Thu Oct 27 08:44:07 2011 New Revision: 226828 URL: http://svn.freebsd.org/changeset/base/226828 Log: Fix a memory leak in tzload(). Reported by:valgrind Reviewed by:kib MFC after: 3 days While

Re: svn commit: r226828 - head/contrib/tzcode/stdtime

2011-10-27 Thread Fabian Keil
Mikolaj Golub troc...@freebsd.org wrote: On Thu, 27 Oct 2011 16:49:26 +0200 Fabian Keil wrote: FK Mikolaj Golub troc...@freebsd.org wrote: Author: trociny Date: Thu Oct 27 08:44:07 2011 New Revision: 226828 URL: http://svn.freebsd.org/changeset/base/226828 Log: Fix

Re: svn commit: r226828 - head/contrib/tzcode/stdtime

2011-10-27 Thread Mikolaj Golub
On Thu, 27 Oct 2011 16:49:26 +0200 Fabian Keil wrote: FK Mikolaj Golub troc...@freebsd.org wrote: Author: trociny Date: Thu Oct 27 08:44:07 2011 New Revision: 226828 URL: http://svn.freebsd.org/changeset/base/226828 Log: Fix a memory leak in tzload(). Reported by:

svn commit: r226840 - head/sys/geom/eli

2011-10-27 Thread Pawel Jakub Dawidek
Author: pjd Date: Thu Oct 27 16:12:25 2011 New Revision: 226840 URL: http://svn.freebsd.org/changeset/base/226840 Log: Before this change when GELI detected hardware crypto acceleration it will start only one worker thread. For software crypto it will start by default N worker threads where

svn commit: r226841 - head/usr.bin/getent

2011-10-27 Thread Ed Schouten
Author: ed Date: Thu Oct 27 16:20:29 2011 New Revision: 226841 URL: http://svn.freebsd.org/changeset/base/226841 Log: Print INIT_PROCESS and LOGIN_PROCESS entries as well. Even though our implementation of utmpx never emits these types of records, they are part of POSIX. Do print them

svn commit: r226842 - head/sbin/hastd

2011-10-27 Thread Pawel Jakub Dawidek
Author: pjd Date: Thu Oct 27 16:22:17 2011 New Revision: 226842 URL: http://svn.freebsd.org/changeset/base/226842 Log: Correct comments. MFC after:3 days Modified: head/sbin/hastd/secondary.c Modified: head/sbin/hastd/secondary.c

svn commit: r226843 - in head/sys: amd64/amd64 dev/xen/balloon i386/i386 i386/xen kern vm

2011-10-27 Thread Alan Cox
Author: alc Date: Thu Oct 27 16:39:17 2011 New Revision: 226843 URL: http://svn.freebsd.org/changeset/base/226843 Log: Eliminate vestiges of page coloring in VM_ALLOC_NOOBJ calls to vm_page_alloc(). While I'm here, for the sake of consistency, always specify the allocation class, such as

svn commit: r226846 - head/lib/libc/gen

2011-10-27 Thread Ed Schouten
Author: ed Date: Thu Oct 27 17:05:18 2011 New Revision: 226846 URL: http://svn.freebsd.org/changeset/base/226846 Log: Make our utmpx more like System V. When booting the system, truncate the utx.active file, but do write the BOOT_TIME record into it afterwards. This allows one to obtain

svn commit: r226847 - head/lib/libc/gen

2011-10-27 Thread Ed Schouten
Author: ed Date: Thu Oct 27 17:21:41 2011 New Revision: 226847 URL: http://svn.freebsd.org/changeset/base/226847 Log: Don't forget to kick the man page date. Modified: head/lib/libc/gen/getutxent.3 Modified: head/lib/libc/gen/getutxent.3

svn commit: r226848 - head/sys/vm

2011-10-27 Thread Alan Cox
Author: alc Date: Thu Oct 27 17:29:19 2011 New Revision: 226848 URL: http://svn.freebsd.org/changeset/base/226848 Log: Tidy up the comment at the head of vm_page_alloc, and mention that the returned page has the flag VPO_BUSY set. Modified: head/sys/vm/vm_page.c Modified:

svn commit: r226849 - head/sys/kern

2011-10-27 Thread John Baldwin
Author: jhb Date: Thu Oct 27 17:43:36 2011 New Revision: 226849 URL: http://svn.freebsd.org/changeset/base/226849 Log: Whitespace fix. Modified: head/sys/kern/vfs_subr.c Modified: head/sys/kern/vfs_subr.c == ---

svn commit: r226850 - head/sys/sys

2011-10-27 Thread John Baldwin
Author: jhb Date: Thu Oct 27 17:44:51 2011 New Revision: 226850 URL: http://svn.freebsd.org/changeset/base/226850 Log: Sort function prototypes. Modified: head/sys/sys/fcntl.h Modified: head/sys/sys/fcntl.h == ---

svn commit: r226851 - head/sbin/hastd

2011-10-27 Thread Pawel Jakub Dawidek
Author: pjd Date: Thu Oct 27 18:45:01 2011 New Revision: 226851 URL: http://svn.freebsd.org/changeset/base/226851 Log: Delay resuid generation until first connection to secondary, not until first write. This way on first connection we will synchronize only the extents that were modified

svn commit: r226852 - head/sbin/hastd

2011-10-27 Thread Pawel Jakub Dawidek
Author: pjd Date: Thu Oct 27 18:49:16 2011 New Revision: 226852 URL: http://svn.freebsd.org/changeset/base/226852 Log: Monor cleanups. MFC after:3 days Modified: head/sbin/hastd/primary.c Modified: head/sbin/hastd/primary.c

svn commit: r226854 - head/sbin/hastd

2011-10-27 Thread Pawel Jakub Dawidek
Author: pjd Date: Thu Oct 27 20:01:23 2011 New Revision: 226854 URL: http://svn.freebsd.org/changeset/base/226854 Log: - Eliminate the need for hio_nv. - Introduce hio_clear() function for clearing hio before returning it onto free queue. MFC after:3 days Modified:

svn commit: r226855 - head/sbin/hastd

2011-10-27 Thread Pawel Jakub Dawidek
Author: pjd Date: Thu Oct 27 20:10:21 2011 New Revision: 226855 URL: http://svn.freebsd.org/changeset/base/226855 Log: Improve comment so it doesn't suggest race is possible, but that we handle the race. MFC after:3 days Modified: head/sbin/hastd/primary.c Modified:

svn commit: r226856 - head/sbin/hastd

2011-10-27 Thread Pawel Jakub Dawidek
Author: pjd Date: Thu Oct 27 20:13:39 2011 New Revision: 226856 URL: http://svn.freebsd.org/changeset/base/226856 Log: Reduce indentation. MFC after:3 days Modified: head/sbin/hastd/primary.c Modified: head/sbin/hastd/primary.c

svn commit: r226857 - head/sbin/hastd

2011-10-27 Thread Pawel Jakub Dawidek
Author: pjd Date: Thu Oct 27 20:15:37 2011 New Revision: 226857 URL: http://svn.freebsd.org/changeset/base/226857 Log: Minor cleanups. MFC after:3 days Modified: head/sbin/hastd/primary.c Modified: head/sbin/hastd/primary.c

svn commit: r226860 - head/etc

2011-10-27 Thread Gavin Atkinson
Author: gavin Date: Thu Oct 27 20:35:21 2011 New Revision: 226860 URL: http://svn.freebsd.org/changeset/base/226860 Log: Update the example rules in devfs.conf to reflect the changes since ATA_CAM. While here, add another example rule, as many applications these days expect to find /dev/dvd

svn commit: r226861 - head/sbin/hastd

2011-10-27 Thread Pawel Jakub Dawidek
Author: pjd Date: Thu Oct 27 20:36:35 2011 New Revision: 226861 URL: http://svn.freebsd.org/changeset/base/226861 Log: Remove redundant space. MFC after:3 days Modified: head/sbin/hastd/secondary.c Modified: head/sbin/hastd/secondary.c

Re: svn commit: r226835 - in head/sys: amd64/conf i386/conf ia64/conf pc98/conf powerpc/conf sparc64/conf

2011-10-27 Thread Doug Barton
On 10/27/2011 06:07, Ken Smith wrote: Adjust the debugger options slightly. This should help me do the right thing when changing the debugging options as part of head becoming a new stable branch. It may also help people who for one reason or another want to run head but don't want

svn commit: r226862 - head/etc

2011-10-27 Thread Gavin Atkinson
Author: gavin Date: Thu Oct 27 20:39:20 2011 New Revision: 226862 URL: http://svn.freebsd.org/changeset/base/226862 Log: Remove example for linking /dev/vga to /dev/ttyv0, this hasn't been required since X version 4.3.0. PR: conf/161847 Submitted by: eadler MFC after:2

svn commit: r226863 - head/sys/conf

2011-10-27 Thread Doug Barton
Author: dougb Date: Thu Oct 27 20:44:28 2011 New Revision: 226863 URL: http://svn.freebsd.org/changeset/base/226863 Log: Fix svnversion for svn 1.7.x by not looking for .svn in ${SYSDIR} (since it no longer exists). Instead, run svnversion if we can find the binary and test that the output

Re: svn commit: r226775 - in head: etc sbin/devd

2011-10-27 Thread Ronald Klop
Hi, I like this. Do you have plans the commit it on stable/9? Ronald. On Wed, 26 Oct 2011 04:11:28 +0200, Hiroki Sato h...@freebsd.org wrote: Author: hrs Date: Wed Oct 26 02:11:28 2011 New Revision: 226775 URL: http://svn.freebsd.org/changeset/base/226775 Log: - Add support for a !

svn commit: r226864 - head/sys/dev/bge

2011-10-27 Thread Pyun YongHyeon
Author: yongari Date: Thu Oct 27 20:54:53 2011 New Revision: 226864 URL: http://svn.freebsd.org/changeset/base/226864 Log: Rename BGE_FW_DRV_ALIVE/BGE_FW_PAUSE to BGE_FW_CMD_DRV_ALIVE/BGE_FW_CMD_PAUSE. Also add more firmware commands(not used yet). No functional changes. Modified:

Re: svn commit: r226860 - head/etc

2011-10-27 Thread Alexander Best
On Thu Oct 27 11, Gavin Atkinson wrote: Author: gavin Date: Thu Oct 27 20:35:21 2011 New Revision: 226860 URL: http://svn.freebsd.org/changeset/base/226860 Log: Update the example rules in devfs.conf to reflect the changes since ATA_CAM. While here, add another example rule, as many

Re: svn commit: r226860 - head/etc

2011-10-27 Thread Garrett Cooper
On Thu, Oct 27, 2011 at 1:56 PM, Alexander Best arun...@freebsd.org wrote: On Thu Oct 27 11, Gavin Atkinson wrote: Author: gavin Date: Thu Oct 27 20:35:21 2011 New Revision: 226860 URL: http://svn.freebsd.org/changeset/base/226860 Log:   Update the example rules in devfs.conf to reflect

svn commit: r226865 - in head/etc: defaults periodic/daily

2011-10-27 Thread Xin LI
Author: delphij Date: Thu Oct 27 21:25:41 2011 New Revision: 226865 URL: http://svn.freebsd.org/changeset/base/226865 Log: Increase default scrub threshold from 30 days to 5 weeks. Using whole weeks makes it easier to predicate when the scrub would happen. MFC after:1 week

svn commit: r226866 - head/sys/dev/bge

2011-10-27 Thread Pyun YongHyeon
Author: yongari Date: Thu Oct 27 21:27:37 2011 New Revision: 226866 URL: http://svn.freebsd.org/changeset/base/226866 Log: Rename hard-coded value 1 14 with BGE_RX_CPU_DRV_EVENT. This bit(SW event 7 in publicly available data sheet) is used to make RX CPU handle a firmware command and the

Re: svn commit: r226436 - in head: . gnu/usr.bin/binutils/objcopy gnu/usr.bin/binutils/strip lib/libc/gen lib/libelf lib/libipsec lib/libpmc lib/msun/man libexec/rtld-elf/amd64 libexec/rtld-elf/i386 s

2011-10-27 Thread Xin LI
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 10/16/11 07:30, Eitan Adler wrote: [...] head/secure/lib/libcrypto/man/engine.3 head/secure/usr.bin/openssl/man/ca.1 head/secure/usr.bin/openssl/man/dgst.1 [...] These files are automatically generated from crypto/openssl/doc, would you

svn commit: r226867 - head/sys/dev/bge

2011-10-27 Thread Pyun YongHyeon
Author: yongari Date: Thu Oct 27 22:10:52 2011 New Revision: 226867 URL: http://svn.freebsd.org/changeset/base/226867 Log: Define BGE_FW_HB_TIMEOUT_SEC and remove one more magic value. bge(4) sends BGE_FW_CMD_DRV_ALIVE command to firmware every 2 seconds. BGE_FW_CMD_DRV_ALIVE command

svn commit: r226868 - head/sys/netinet

2011-10-27 Thread Michael Tuexen
Author: tuexen Date: Thu Oct 27 22:37:59 2011 New Revision: 226868 URL: http://svn.freebsd.org/changeset/base/226868 Log: Send out control chunks which have no specific destination. MFC after: 3 days. Modified: head/sys/netinet/sctp_output.c Modified: head/sys/netinet/sctp_output.c

svn commit: r226869 - head/sys/netinet

2011-10-27 Thread Michael Tuexen
Author: tuexen Date: Thu Oct 27 22:38:48 2011 New Revision: 226869 URL: http://svn.freebsd.org/changeset/base/226869 Log: When add a new remote address using sctp_add_remote_addr(), return the correct net if requested. MFC after: 3 days. Modified: head/sys/netinet/sctp_pcb.c

svn commit: r226870 - head/sys/dev/mii

2011-10-27 Thread Pyun YongHyeon
Author: yongari Date: Fri Oct 28 00:40:19 2011 New Revision: 226870 URL: http://svn.freebsd.org/changeset/base/226870 Log: Recognize BCM5720C PHY. Modified: head/sys/dev/mii/brgphy.c head/sys/dev/mii/miidevs Modified: head/sys/dev/mii/brgphy.c

svn commit: r226871 - head/sys/dev/bge

2011-10-27 Thread Pyun YongHyeon
Author: yongari Date: Fri Oct 28 01:04:40 2011 New Revision: 226871 URL: http://svn.freebsd.org/changeset/base/226871 Log: Add initial BCM5720 support. Many thanks to Broadcom for continuing support of FreeBSD. Submitted by: Geans Pin at Broadcom (initial version) H/W donated by:

svn commit: r226872 - head/sys/dev/bge

2011-10-27 Thread Pyun YongHyeon
Author: yongari Date: Fri Oct 28 01:10:59 2011 New Revision: 226872 URL: http://svn.freebsd.org/changeset/base/226872 Log: Disable updating InputDiscards counter for BCM5717, BCM5718, BCM5719 A0 and BCM5720 A0 and add comment why driver does not try to read it. Modified:

Re: svn commit: r226835 - in head/sys: amd64/conf i386/conf ia64/conf pc98/conf powerpc/conf sparc64/conf

2011-10-27 Thread Marcel Moolenaar
On Oct 27, 2011, at 6:14 AM, Ken Smith wrote: In response to one of my commits done to the ia64 GENERIC I received some feedback giving a long list of issues (style, formatting, seemingly gratuitous differences, annoyances, etc.) with the whole set of GENERIC config files. If anyone knows

Re: svn commit: r226835 - in head/sys: amd64/conf i386/conf ia64/conf pc98/conf powerpc/conf sparc64/conf

2011-10-27 Thread Ken Smith
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 10/27/11 10:09 PM, Marcel Moolenaar wrote: On Oct 27, 2011, at 6:14 AM, Ken Smith wrote: In response to one of my commits done to the ia64 GENERIC I received some feedback giving a long list of issues (style, formatting, seemingly