svn commit: r227044 - head/lib/libpam/modules/pam_unix

2011-11-02 Thread Dag-Erling Smorgrav
Author: des Date: Wed Nov 2 23:40:21 2011 New Revision: 227044 URL: http://svn.freebsd.org/changeset/base/227044 Log: Note that pam_unix(8) does not respect PAM_CHANGE_EXPIRED_AUTHTOK. Modified: head/lib/libpam/modules/pam_unix/pam_unix.8 Modified: head/lib/libpam/modules/pam_unix/pam_unix.

svn commit: r227043 - head/sys/dev/re

2011-11-02 Thread Marius Strobl
Author: marius Date: Wed Nov 2 23:23:19 2011 New Revision: 227043 URL: http://svn.freebsd.org/changeset/base/227043 Log: Sprinkle some const. Modified: head/sys/dev/re/if_re.c Modified: head/sys/dev/re/if_re.c == --

svn commit: r227042 - head/sys/dev/tl

2011-11-02 Thread Marius Strobl
Author: marius Date: Wed Nov 2 23:22:50 2011 New Revision: 227042 URL: http://svn.freebsd.org/changeset/base/227042 Log: Remove variable initialized but no longer actually used since r226995. Found with: Coverity Prevent(tm) CID: 10044 Modified: head/sys/dev/tl/if_tl.c Mod

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

2011-11-02 Thread Andre Oppermann
On 02.11.2011 22:01, Sergey Kandaurov wrote: On 2 November 2011 21:40, Sergey Kandaurov wrote: On 2 November 2011 20:34, Anton Yuzhaninov wrote: On 10/16/11 19:08, Andre Oppermann wrote: Author: andre Date: Sun Oct 16 15:08:43 2011 New Revision: 226437 URL: http://svn.freebsd.org/changeset/

Re: svn commit: r225793 - in head/sys: modules/ipfw netinet/ipfw

2011-11-02 Thread Bjoern A. Zeeb
, not when you link it into the kernel? As in that case I do have: lion3#  sysctl net.inet6.ip6.fw.enable net.inet6.ip6.fw.enable: 1 ipfw is built and installed as a module as part of make kernel target. Can you try to see if this fixes the problem? http://people.freebsd.org/~bz/2002-01-ipfw-kl

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

2011-11-02 Thread Sergey Kandaurov
On 2 November 2011 21:40, Sergey Kandaurov wrote: > On 2 November 2011 20:34, Anton Yuzhaninov wrote: >> On 10/16/11 19:08, Andre Oppermann wrote: >>> >>> Author: andre >>> Date: Sun Oct 16 15:08:43 2011 >>> New Revision: 226437 >>> URL: http://svn.freebsd.org/changeset/base/226437 >>> >>> Log: >

svn commit: r227034 - head/sys/netinet

2011-11-02 Thread Sergey Kandaurov
Author: pluknet Date: Wed Nov 2 20:58:47 2011 New Revision: 227034 URL: http://svn.freebsd.org/changeset/base/227034 Log: Restore sysctl names for tcp_sendspace/tcp_recvspace. They seem to be changed unintentionally in r226437, and there were no any mentions of renaming in commit log mes

svn commit: r227032 - head/sys/dev/uart

2011-11-02 Thread Olivier Houchard
Author: cognet Date: Wed Nov 2 20:45:44 2011 New Revision: 227032 URL: http://svn.freebsd.org/changeset/base/227032 Log: Disable the TX ready interrupts once we received one, some UART won't clear the IIR_TXRDY bit upon reading. Reviewed by: marcel Modified: head/sys/dev/uart/uart_de

svn commit: r227025 - stable/9/contrib/llvm/tools/clang/lib/Basic

2011-11-02 Thread Dimitry Andric
Author: dim Date: Wed Nov 2 18:55:26 2011 New Revision: 227025 URL: http://svn.freebsd.org/changeset/base/227025 Log: MFC r226951: Pull in r143305 and r143312 from upstream clang trunk, so using "clang -march=native" on AMD K10 family processors no longer errors out with "unknown targe

Re: svn commit: r225793 - in head/sys: modules/ipfw netinet/ipfw

2011-11-02 Thread Sergey Kandaurov
t;  (r225793) >>>>> @@ -31,11 +31,11 @@ __FBSDID("$FreeBSD$"); >>>>>  #if !defined(KLD_MODULE) >>>>>  #include "opt_ipdn.h" >>>>>  #include "opt_inet.h" >>>>> +#include "opt_inet6.h"

svn commit: r227024 - head/lib/libc/i386/gen

2011-11-02 Thread Konstantin Belousov
Author: kib Date: Wed Nov 2 18:08:30 2011 New Revision: 227024 URL: http://svn.freebsd.org/changeset/base/227024 Log: Despite official i386 ABI does not mandate any stack alignment besides the word alignment, some versions of gcc do require 16-byte alignment. Make sure the stack is 16-byte

svn commit: r227023 - head/lib/libc/amd64/gen

2011-11-02 Thread Konstantin Belousov
Author: kib Date: Wed Nov 2 18:06:22 2011 New Revision: 227023 URL: http://svn.freebsd.org/changeset/base/227023 Log: Make sure that stack is 16-byte aligned before calling a function, as it is required by amd64 ABI. Add a comment for the places were the stack is accidentally properly align

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

2011-11-02 Thread Sergey Kandaurov
On 2 November 2011 20:34, Anton Yuzhaninov wrote: > On 10/16/11 19:08, Andre Oppermann wrote: >> >> Author: andre >> Date: Sun Oct 16 15:08:43 2011 >> New Revision: 226437 >> URL: http://svn.freebsd.org/changeset/base/226437 >> >> Log: >>   VNET virtualize tcp_sendspace/tcp_recvspace and change th

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

2011-11-02 Thread Anton Yuzhaninov
On 10/16/11 19:08, Andre Oppermann wrote: Author: andre Date: Sun Oct 16 15:08:43 2011 New Revision: 226437 URL: http://svn.freebsd.org/changeset/base/226437 Log: VNET virtualize tcp_sendspace/tcp_recvspace and change the type to INT. A long is not necessary as the TCP window is limite

Re: svn commit: r225793 - in head/sys: modules/ipfw netinet/ipfw

2011-11-02 Thread Bjoern A. Zeeb
that case I do have: lion3#  sysctl net.inet6.ip6.fw.enable net.inet6.ip6.fw.enable: 1 ipfw is built and installed as a module as part of make kernel target. Can you try to see if this fixes the problem? http://people.freebsd.org/~bz/2002-01-ipfw-kld.diff Please not that in the module case

Re: svn commit: r227015 - head/sys/geom

2011-11-02 Thread Alexander Motin
On 11/02/11 15:42, Pawel Jakub Dawidek wrote: > On Wed, Nov 02, 2011 at 09:24:59AM +, Alexander Motin wrote: >> Author: mav >> Date: Wed Nov 2 09:24:59 2011 >> New Revision: 227015 >> URL: http://svn.freebsd.org/changeset/base/227015 >> >> Log: >> Add mutex and two flags to make orphan() cal

svn commit: r227020 - head/share/misc

2011-11-02 Thread Maxim Konovalov
Author: maxim Date: Wed Nov 2 14:28:36 2011 New Revision: 227020 URL: http://svn.freebsd.org/changeset/base/227020 Log: OpenBSD 5.0 added. Modified: head/share/misc/bsd-family-tree Modified: head/share/misc/bsd-family-tree

svn commit: r227018 - stable/9/etc

2011-11-02 Thread Gavin Atkinson
Author: gavin Date: Wed Nov 2 13:51:29 2011 New Revision: 227018 URL: http://svn.freebsd.org/changeset/base/227018 Log: Merge r226860 from head: Update the example rules in devfs.conf to reflect the changes since ATA_CAM. While here, add another example rule, as many applications t

Re: svn commit: r227015 - head/sys/geom

2011-11-02 Thread Pawel Jakub Dawidek
On Wed, Nov 02, 2011 at 09:24:59AM +, Alexander Motin wrote: > Author: mav > Date: Wed Nov 2 09:24:59 2011 > New Revision: 227015 > URL: http://svn.freebsd.org/changeset/base/227015 > > Log: > Add mutex and two flags to make orphan() call properly asynchronous: >- delay consumer closing

Re: svn commit: r225793 - in head/sys: modules/ipfw netinet/ipfw

2011-11-02 Thread Sergey Kandaurov
On 2 November 2011 16:53, Bjoern A. Zeeb wrote: > On Wed, 2 Nov 2011, Sergey Kandaurov wrote: > >> On 27 September 2011 17:27, Bjoern A. Zeeb wrote: >>> >>> Author: bz >>> Date: Tue Sep 27 13:27:17 2011 >>> New Revision: 225793 >>> URL: http://svn.freebsd.org/changeset/base/225793 >>> >>> Log: >>

Re: svn commit: r225793 - in head/sys: modules/ipfw netinet/ipfw

2011-11-02 Thread Bjoern A. Zeeb
On Wed, 2 Nov 2011, Sergey Kandaurov wrote: On 27 September 2011 17:27, Bjoern A. Zeeb wrote: Author: bz Date: Tue Sep 27 13:27:17 2011 New Revision: 225793 URL: http://svn.freebsd.org/changeset/base/225793 Log:  Unbreak no-ip and no-inet6 module builds with ipfw.  For now continue to  build

Re: svn commit: r225793 - in head/sys: modules/ipfw netinet/ipfw

2011-11-02 Thread Sergey Kandaurov
On 27 September 2011 17:27, Bjoern A. Zeeb wrote: > Author: bz > Date: Tue Sep 27 13:27:17 2011 > New Revision: 225793 > URL: http://svn.freebsd.org/changeset/base/225793 > > Log: >  Unbreak no-ip and no-inet6 module builds with ipfw.  For now continue to >  build the ip_fw_pfil.c hooks and ipfw e

svn commit: r227017 - stable/7/usr.bin/netstat

2011-11-02 Thread Alexander V. Chernikov
Author: melifaro Date: Wed Nov 2 11:05:11 2011 New Revision: 227017 URL: http://svn.freebsd.org/changeset/base/227017 Log: MFC 213440 (by ru) Show hostcache statistics in netstat(1). Submitted by: Maxim Dounin Approved by:ae Approved by:ru Modified: stable/7/usr.bin/n

svn commit: r227016 - stable/8/usr.bin/netstat

2011-11-02 Thread Alexander V. Chernikov
Author: melifaro Date: Wed Nov 2 11:02:42 2011 New Revision: 227016 URL: http://svn.freebsd.org/changeset/base/227016 Log: MFC 213440 (by ru) Show hostcache statistics in nestat(1). Submitted by: Maxim Dounin Approved by:ae Approved by:ru Modified: stable/8/usr.bin/ne

svn commit: r227015 - head/sys/geom

2011-11-02 Thread Alexander Motin
Author: mav Date: Wed Nov 2 09:24:59 2011 New Revision: 227015 URL: http://svn.freebsd.org/changeset/base/227015 Log: Add mutex and two flags to make orphan() call properly asynchronous: - delay consumer closing and detaching on orphan() until all I/Os complete; - prevent new I/Os submiss

svn commit: r227014 - stable/9/lib/libc/gen

2011-11-02 Thread Sergey Kandaurov
Author: pluknet Date: Wed Nov 2 08:23:40 2011 New Revision: 227014 URL: http://svn.freebsd.org/changeset/base/227014 Log: MFC r226836: Fix the manual section number for a cross-reference to open(2) and sort it. Approved by: re (kib) Modified: stable/9/lib/libc/gen/getutxent.3 Directo

svn commit: r227013 - head/usr.sbin/mergemaster

2011-11-02 Thread Doug Barton
Author: dougb Date: Wed Nov 2 07:40:23 2011 New Revision: 227013 URL: http://svn.freebsd.org/changeset/base/227013 Log: 1. Add a new option, --run-updates, to always or never run the newalises, pwd_mkdb, etc. updates at the end of the comparison. 2. Add an update to the end to handle