Re: svn commit: r242029 - head/sys/kern

2012-10-25 Thread Konstantin Belousov
On Thu, Oct 25, 2012 at 01:46:21AM +, Alfred Perlstein wrote: Author: alfred Date: Thu Oct 25 01:46:20 2012 New Revision: 242029 URL: http://svn.freebsd.org/changeset/base/242029 Log: Allow autotune maxusers 384 on 64 bit machines A default install on large memory machines

svn commit: r242074 - head/etc/rc.d

2012-10-25 Thread Brian Somers
Author: brian Date: Thu Oct 25 08:37:08 2012 New Revision: 242074 URL: http://svn.freebsd.org/changeset/base/242074 Log: Enable accept_rtadvd on interfaces running rtadvd. Without this, rtadvd runs but never advertises a default (IPv6) route. MFC after:1 week Modified:

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

2012-10-25 Thread Kevin Lo
Author: kevlo Date: Thu Oct 25 08:38:43 2012 New Revision: 242075 URL: http://svn.freebsd.org/changeset/base/242075 Log: Fix MINCLSIZE. It should be MHLEN + 1. Reviewed by: glebius Modified: head/share/man/man9/mbuf.9 Modified: head/share/man/man9/mbuf.9

svn commit: r242076 - head/sys/netinet

2012-10-25 Thread Gleb Smirnoff
Author: glebius Date: Thu Oct 25 09:00:57 2012 New Revision: 242076 URL: http://svn.freebsd.org/changeset/base/242076 Log: Fix error in r241913 that had broken fragment reassembly. Modified: head/sys/netinet/ip_input.c Modified: head/sys/netinet/ip_input.c

svn commit: r242077 - head/sys/netinet

2012-10-25 Thread Gleb Smirnoff
Author: glebius Date: Thu Oct 25 09:02:21 2012 New Revision: 242077 URL: http://svn.freebsd.org/changeset/base/242077 Log: After r241923 the updated ip_len no longer needed. Modified: head/sys/netinet/ip_input.c Modified: head/sys/netinet/ip_input.c

svn commit: r242078 - in head/sys: kern sys

2012-10-25 Thread Ed Schouten
Author: ed Date: Thu Oct 25 09:05:21 2012 New Revision: 242078 URL: http://svn.freebsd.org/changeset/base/242078 Log: Correct SIGTTIN handling. In the old TTY layer, SIGTTIN was correctly handled like this: while (data should be read) { send SIGTTIN if not

svn commit: r242079 - in head: sbin/ipfw share/man/man4 sys/conf sys/net sys/netinet sys/netinet6 sys/netpfil/ipfw

2012-10-25 Thread Andrey V. Elsukov
Author: ae Date: Thu Oct 25 09:39:14 2012 New Revision: 242079 URL: http://svn.freebsd.org/changeset/base/242079 Log: Remove the IPFIREWALL_FORWARD kernel option and make possible to turn on the related functionality in the runtime via the sysctl variable net.pfil.forward. It is turned off

Re: svn commit: r242029 - head/sys/kern

2012-10-25 Thread Garrett Cooper
On Wed, Oct 24, 2012 at 6:46 PM, Alfred Perlstein alf...@freebsd.org wrote: Author: alfred Date: Thu Oct 25 01:46:20 2012 New Revision: 242029 URL: http://svn.freebsd.org/changeset/base/242029 Log: Allow autotune maxusers 384 on 64 bit machines A default install on large memory

svn commit: r242080 - in head/contrib/llvm/tools/clang: include/clang/Basic lib/Sema

2012-10-25 Thread Ed Schouten
Author: ed Date: Thu Oct 25 10:13:58 2012 New Revision: 242080 URL: http://svn.freebsd.org/changeset/base/242080 Log: Pull in r166498 from upstream clang trunk: Add a new warning -Wmissing-variable-declarations, to warn about variables defined without a previous declaration. This is

svn commit: r242082 - head

2012-10-25 Thread Andrey V. Elsukov
,junk:false' /etc/malloc.conf.) +20121025: + The IPFIREWALL_FORWARD kernel option has been removed. Its + functionality now can be turned on using the net.pfil.forward + sysctl variable. + 20121023: The ZERO_COPY_SOCKET kernel option has been removed and split

Re: svn commit: r242074 - head/etc/rc.d

2012-10-25 Thread Dimitry Andric
On 2012-10-25 10:37, Brian Somers wrote: ... URL: http://svn.freebsd.org/changeset/base/242074 Log: Enable accept_rtadvd on interfaces running rtadvd. ... + for iface in ${command_args}; do + ifconfig ${iface} inet6 -accept_rtadv + done The commit message says

Re: svn commit: r242080 - in head/contrib/llvm/tools/clang: include/clang/Basic lib/Sema

2012-10-25 Thread Roman Divacky
Why? I can understand cherry picking revisions that fix bugs FreeBSD users hit but why additional features? Why cant this wait for next proper llvm/clang import? On Thu, Oct 25, 2012 at 10:13:58AM +, Ed Schouten wrote: Author: ed Date: Thu Oct 25 10:13:58 2012 New Revision: 242080 URL:

Re: svn commit: r242029 - head/sys/kern

2012-10-25 Thread Bruce Evans
On Thu, 25 Oct 2012, Konstantin Belousov wrote: On Thu, Oct 25, 2012 at 01:46:21AM +, Alfred Perlstein wrote: ... Modified: head/sys/kern/subr_param.c == --- head/sys/kern/subr_param.c Thu Oct 25 01:27:01 2012

Re: svn commit: r242079 - in head: sbin/ipfw share/man/man4 sys/conf sys/net sys/netinet sys/netinet6 sys/netpfil/ipfw

2012-10-25 Thread John Baldwin
On Thursday, October 25, 2012 5:39:15 am Andrey V. Elsukov wrote: Author: ae Date: Thu Oct 25 09:39:14 2012 New Revision: 242079 URL: http://svn.freebsd.org/changeset/base/242079 Log: Remove the IPFIREWALL_FORWARD kernel option and make possible to turn on the related functionality in

Re: svn commit: r242013 - head/sys/net

2012-10-25 Thread John Baldwin
On Wednesday, October 24, 2012 3:05:53 pm Gleb Smirnoff wrote: On Wed, Oct 24, 2012 at 02:42:33PM -0400, John Baldwin wrote: J On Wednesday, October 24, 2012 2:33:44 pm Gleb Smirnoff wrote: J Author: glebius J Date: Wed Oct 24 18:33:44 2012 J New Revision: 242013 J URL:

Re: svn commit: r242029 - head/sys/kern

2012-10-25 Thread John Baldwin
On Thursday, October 25, 2012 4:05:51 am Konstantin Belousov wrote: On Thu, Oct 25, 2012 at 01:46:21AM +, Alfred Perlstein wrote: Author: alfred Date: Thu Oct 25 01:46:20 2012 New Revision: 242029 URL: http://svn.freebsd.org/changeset/base/242029 Log: Allow autotune maxusers

Re: svn commit: r242079 - in head: sbin/ipfw share/man/man4 sys/conf sys/net sys/netinet sys/netinet6 sys/netpfil/ipfw

2012-10-25 Thread Andrey V. Elsukov
On 25.10.2012 17:28, John Baldwin wrote: Remove the IPFIREWALL_FORWARD kernel option and make possible to turn on the related functionality in the runtime via the sysctl variable net.pfil.forward. It is turned off by default. Certainly for MFC's I think it makes sense to retain the

svn commit: r242084 - head/sys/boot/common

2012-10-25 Thread Alexander Motin
Author: mav Date: Thu Oct 25 15:45:32 2012 New Revision: 242084 URL: http://svn.freebsd.org/changeset/base/242084 Log: Remove new-line characters from the include() errors to make it consistent with the rest of code. Modified: head/sys/boot/common/interp.c Modified:

Re: svn commit: r242079 - in head: sbin/ipfw share/man/man4 sys/conf sys/net sys/netinet sys/netinet6 sys/netpfil/ipfw

2012-10-25 Thread Andre Oppermann
On 25.10.2012 11:39, Andrey V. Elsukov wrote: Author: ae Date: Thu Oct 25 09:39:14 2012 New Revision: 242079 URL: http://svn.freebsd.org/changeset/base/242079 Log: Remove the IPFIREWALL_FORWARD kernel option and make possible to turn on the related functionality in the runtime via the

Re: svn commit: r242014 - head/sys/kern

2012-10-25 Thread Andre Oppermann
On 25.10.2012 05:49, Bruce Evans wrote: On Wed, 24 Oct 2012, Attilio Rao wrote: On Wed, Oct 24, 2012 at 8:16 PM, Andre Oppermann an...@freebsd.org wrote: ... Let's go back and see how we can do this the sanest way. These are the options I see at the moment: 1. sprinkle

Re: svn commit: r242079 - in head: sbin/ipfw share/man/man4 sys/conf sys/net sys/netinet sys/netinet6 sys/netpfil/ipfw

2012-10-25 Thread Andrey V. Elsukov
On 25.10.2012 19:54, Andre Oppermann wrote: I still don't agree with naming the sysctl net.pfil.forward. This type of forwarding is a property of IPv4 and IPv6 and thus should be put there. Pfil hooking can be on layer 2, 2-bridging, 3 and who knows where else in the future. Forwarding

Re: svn commit: r242074 - head/etc/rc.d

2012-10-25 Thread Brian Somers
On Thu, Oct 25, 2012 at 09:00:07PM +0900, Hiroki Sato wrote: Dimitry Andric d...@freebsd.org wrote in 50892486.9030...@freebsd.org: di On 2012-10-25 10:37, Brian Somers wrote: di ... di URL: http://svn.freebsd.org/changeset/base/242074 di di Log: di Enable accept_rtadvd on

svn commit: r242085 - head/usr.sbin/pciconf

2012-10-25 Thread Jim Harris
Author: jimharris Date: Thu Oct 25 17:22:37 2012 New Revision: 242085 URL: http://svn.freebsd.org/changeset/base/242085 Log: For PCI Express capability, if max link width is greater than zero, print the current and max link speed. Sponsored by: Intel Discussed with: jhb MFC

svn commit: r242086 - in head: share/man/man4 sys/dev/hptiop

2012-10-25 Thread Xin LI
Author: delphij Date: Thu Oct 25 17:29:11 2012 New Revision: 242086 URL: http://svn.freebsd.org/changeset/base/242086 Log: Update hptiop(4) to version 1.8, which added support for HighPoint RocketRAID 4500 series. Many thanks to HighPoint Technologies for their continued support of

Re: svn commit: r242014 - head/sys/kern

2012-10-25 Thread Alan Cox
On 10/25/2012 11:23, Andre Oppermann wrote: On 25.10.2012 05:49, Bruce Evans wrote: On Wed, 24 Oct 2012, Attilio Rao wrote: On Wed, Oct 24, 2012 at 8:16 PM, Andre Oppermann an...@freebsd.org wrote: ... Let's go back and see how we can do this the sanest way. These are the options I see at

svn commit: r242087 - head/sys/dev/cxgb

2012-10-25 Thread Navdeep Parhar
Author: np Date: Thu Oct 25 18:11:04 2012 New Revision: 242087 URL: http://svn.freebsd.org/changeset/base/242087 Log: Initialize the response queue mutex a bit earlier to avoid a panic that occurs if t3_sge_alloc_qset fails and then t3_free_qset attempts to destroy an uninitialized mutex.

svn commit: r242088 - head/sys/dev/filemon

2012-10-25 Thread David E. O'Brien
Author: obrien Date: Thu Oct 25 18:39:09 2012 New Revision: 242088 URL: http://svn.freebsd.org/changeset/base/242088 Log: Desupport pre-FreeBSD 7.1. Modified: head/sys/dev/filemon/filemon.c Modified: head/sys/dev/filemon/filemon.c

svn commit: r242089 - head/sys/dev/ciss

2012-10-25 Thread Peter Wemm
Author: peter Date: Thu Oct 25 18:46:02 2012 New Revision: 242089 URL: http://svn.freebsd.org/changeset/base/242089 Log: Increase the driver-side limit on the number of logical volumes that the driver will recognize. I've tested this as far as 25 volumes. Modified:

Re: svn commit: r242074 - head/etc/rc.d

2012-10-25 Thread Hiroki Sato
Brian Somers br...@freebsd.org wrote in 20121025171827.ga59...@thong.lan.awfulhak.org: br After upgrading from 8-STABLE to 9-STABLE on Monday, IPv6 routing br advertisments were broken. Disabling accept (enabling send) appeared br to be necessary to get things up and running. br br As you say,

svn commit: r242090 - head/sys/rpc/rpcsec_gss

2012-10-25 Thread Rick Macklem
Author: rmacklem Date: Thu Oct 25 19:30:58 2012 New Revision: 242090 URL: http://svn.freebsd.org/changeset/base/242090 Log: Modify the comment to take out the names and URL. Requested by: kib MFC after:3 days Modified: head/sys/rpc/rpcsec_gss/svc_rpcsec_gss.c Modified:

svn commit: r242091 - in head/usr.sbin/lpr: common_source filters

2012-10-25 Thread Ed Schouten
Author: ed Date: Thu Oct 25 20:16:38 2012 New Revision: 242091 URL: http://svn.freebsd.org/changeset/base/242091 Log: Let lpr build with -Wmissing-variable-declarations. Mark variables static where possible and place the uid/euid variables in lp.h, so that we can compile-time enforce

svn commit: r242092 - head/sys/fs/smbfs

2012-10-25 Thread Davide Italiano
Author: davide Date: Thu Oct 25 20:23:04 2012 New Revision: 242092 URL: http://svn.freebsd.org/changeset/base/242092 Log: - Remove the references to the deprecated zalloc kernel interface - Use M_ZERO flag in malloc() rather than bzero() - malloc() with M_NOWAIT can't return NULL so there's

Re: svn commit: r242079 - in head: sbin/ipfw share/man/man4 sys/conf sys/net sys/netinet sys/netinet6 sys/netpfil/ipfw

2012-10-25 Thread Andre Oppermann
On 25.10.2012 18:25, Andrey V. Elsukov wrote: On 25.10.2012 19:54, Andre Oppermann wrote: I still don't agree with naming the sysctl net.pfil.forward. This type of forwarding is a property of IPv4 and IPv6 and thus should be put there. Pfil hooking can be on layer 2, 2-bridging, 3 and who

svn commit: r242096 - in head/usr.sbin/bsdconfig: . security

2012-10-25 Thread Devin Teske
Author: dteske Date: Thu Oct 25 21:04:11 2012 New Revision: 242096 URL: http://svn.freebsd.org/changeset/base/242096 Log: When Xdialog(1) is passed a NULL argument to its `--help' option, Xdialog(1) acts like dialog(1) in that it returns exit status 2 when the help button is chosen.

svn commit: r242097 - head/sys/fs/smbfs

2012-10-25 Thread Davide Italiano
Author: davide Date: Thu Oct 25 21:08:02 2012 New Revision: 242097 URL: http://svn.freebsd.org/changeset/base/242097 Log: Fix build in case we have SMBVDEBUG turned on. Reviewed by: gnn Approved by: gnn Sponsored by: iXsystems inc. Modified: head/sys/fs/smbfs/smbfs_io.c

svn commit: r242101 - in head/usr.sbin/cron: cron crontab lib

2012-10-25 Thread Maxim Sobolev
Author: sobomax Date: Thu Oct 25 22:54:29 2012 New Revision: 242101 URL: http://svn.freebsd.org/changeset/base/242101 Log: Second attempt to add @every_second keyword support. Due to multiple requests, default to the previous 60-seconds scheduling method unless there is any @every_second

svn commit: r242102 - in head: contrib/bmake usr.bin/bmake

2012-10-25 Thread Simon J. Gerraty
Author: sjg Date: Thu Oct 25 23:18:05 2012 New Revision: 242102 URL: http://svn.freebsd.org/changeset/base/242102 Log: Merge bmake-20121010 Approved by: marcel (mentor) Modified: head/contrib/bmake/ChangeLog head/contrib/bmake/Makefile.in head/contrib/bmake/bmake.1

svn commit: r242103 - head/sys/mips/cavium

2012-10-25 Thread Juli Mallett
Author: jmallett Date: Fri Oct 26 00:04:05 2012 New Revision: 242103 URL: http://svn.freebsd.org/changeset/base/242103 Log: Don't attach if the bootloader has not indicated that we're a PCI host. This fixes booting on systems which are PCI targets. Modified: head/sys/mips/cavium/octopci.c

svn commit: r242107 - in head/usr.sbin/bsdconfig: . security share

2012-10-25 Thread Devin Teske
Author: dteske Date: Fri Oct 26 00:31:25 2012 New Revision: 242107 URL: http://svn.freebsd.org/changeset/base/242107 Log: Switch from using a msgbox to display help files to a textbox instead. The problem with using a msgbox was one of truncation in the case of Xdialog(1) and lack of screen

svn commit: r242114 - head/usr.sbin/bsdconfig/share

2012-10-25 Thread Devin Teske
Author: dteske Date: Fri Oct 26 00:46:09 2012 New Revision: 242114 URL: http://svn.freebsd.org/changeset/base/242114 Log: Fix copy/paste error. Approved by: adrian (co-mentor) (implicit) Modified: head/usr.sbin/bsdconfig/share/dialog.subr Modified:

svn commit: r242115 - head/usr.sbin/bsdconfig/share

2012-10-25 Thread Devin Teske
Author: dteske Date: Fri Oct 26 01:47:59 2012 New Revision: 242115 URL: http://svn.freebsd.org/changeset/base/242115 Log: Tighten-up displays that use a NULL prompt (e.g., networking and usermgmt). Approved by: adrian (co-mentor) (implicit) Modified:

svn commit: r242116 - head/sys/contrib/octeon-sdk

2012-10-25 Thread Juli Mallett
Author: jmallett Date: Fri Oct 26 02:09:55 2012 New Revision: 242116 URL: http://svn.freebsd.org/changeset/base/242116 Log: No MII on the RSYS4GBE (AMC-7211/ATCA-7220). Modified: head/sys/contrib/octeon-sdk/cvmx-helper-board.c Modified: head/sys/contrib/octeon-sdk/cvmx-helper-board.c

svn commit: r242117 - in head/usr.sbin/bsdconfig/networking: include share

2012-10-25 Thread Devin Teske
Author: dteske Date: Fri Oct 26 02:45:29 2012 New Revision: 242117 URL: http://svn.freebsd.org/changeset/base/242117 Log: Resurrect and integrate stable/9/sysinstall/help/tcp.hlp Approved by: adrian (co-mentor) (implicit) Added: head/usr.sbin/bsdconfig/networking/include/tcp.hlp

svn commit: r242118 - head/usr.sbin/bsdconfig/networking/share

2012-10-25 Thread Devin Teske
Author: dteske Date: Fri Oct 26 02:49:12 2012 New Revision: 242118 URL: http://svn.freebsd.org/changeset/base/242118 Log: Don't mask fwe(4) lp(4) or plip(4) devices from ifconfig(8) list. Approved by: adrian (co-mentor) (implicit) Modified:

svn commit: r242119 - head/usr.sbin/bsdconfig/networking/share

2012-10-25 Thread Devin Teske
Author: dteske Date: Fri Oct 26 02:50:14 2012 New Revision: 242119 URL: http://svn.freebsd.org/changeset/base/242119 Log: Remove unnecessary quotation to clean things up. Approved by: adrian (co-mentor) (implicit) Modified: head/usr.sbin/bsdconfig/networking/share/device.subr

svn commit: r242120 - head/usr.sbin/cpucontrol

2012-10-25 Thread Eitan Adler
Author: eadler Date: Fri Oct 26 02:50:16 2012 New Revision: 242120 URL: http://svn.freebsd.org/changeset/base/242120 Log: This utility builds without NO_WCAST_ALIGN Tested with make universe No objections from: stas Approved by: cperciva MFC after:3 days Modified:

svn commit: r242121 - in head/sys: conf ia64/ia64 ia64/include

2012-10-25 Thread Alan Cox
Author: alc Date: Fri Oct 26 03:02:39 2012 New Revision: 242121 URL: http://svn.freebsd.org/changeset/base/242121 Log: Port the new PV entry allocator from amd64/i386. This allocator has two advantages. First, PV entries are roughly half the size. Second, this allocator doesn't access

svn commit: r242123 - in head/usr.sbin/bsdconfig/usermgmt: . include

2012-10-25 Thread Devin Teske
Author: dteske Date: Fri Oct 26 03:20:04 2012 New Revision: 242123 URL: http://svn.freebsd.org/changeset/base/242123 Log: Resurrect and integrate stable/9/usr.sbin/sysinstall/help/usermgmt.hlp Approved by: adrian (co-mentor) (implicit) Added:

svn commit: r242124 - head/sys/arm/conf

2012-10-25 Thread Tim Kientzle
Author: kientzle Date: Fri Oct 26 05:41:58 2012 New Revision: 242124 URL: http://svn.freebsd.org/changeset/base/242124 Log: Comment out the BOOTP/NFSROOT support. Transition this config file to support a production kernel mounted on an SD card. Modified: head/sys/arm/conf/PANDABOARD

svn commit: r242125 - head/sys/arm/ti

2012-10-25 Thread Tim Kientzle
Author: kientzle Date: Fri Oct 26 05:48:53 2012 New Revision: 242125 URL: http://svn.freebsd.org/changeset/base/242125 Log: set the kernelname from the boot loader environment. This fixes kern.bootfile sysctl. Submitted by: Giovanni Trematerra Modified: head/sys/arm/ti/ti_machdep.c