svn commit: r210555 - in head/sys: amd64/linux32 i386/linux kern sys

2010-07-27 Thread Alan Cox
Author: alc Date: Wed Jul 28 04:47:40 2010 New Revision: 210555 URL: http://svn.freebsd.org/changeset/base/210555 Log: The interpreter name should no longer be treated as a buffer that can be overwritten. (This change should have been included in r210545.) Submitted by: kib Modified:

svn commit: r210553 - head/sys/dev/usb

2010-07-27 Thread Andrew Thompson
Author: thompsa Date: Tue Jul 27 22:55:24 2010 New Revision: 210553 URL: http://svn.freebsd.org/changeset/base/210553 Log: Fix the entry for the Option ICON452 where an underscore was used instead of whitespace. Submitted by: Lucius Windschuh Modified: head/sys/dev/usb/usbdevs Modifie

Re: svn commit: r210550 - in head/sys: amd64/include arm/include i386/include ia64/include mips/include powerpc/include sparc64/include sun4v/include sys vm

2010-07-27 Thread John Baldwin
On Tuesday, July 27, 2010 4:33:50 pm John Baldwin wrote: > Author: jhb > Date: Tue Jul 27 20:33:50 2010 > New Revision: 210550 > URL: http://svn.freebsd.org/changeset/base/210550 > > Log: > Very rough first cut at NUMA support for the physical page allocator. For > now it uses a very dumb fir

Re: svn commit: r210552 - in head/sys: conf x86/acpica

2010-07-27 Thread John Baldwin
On Tuesday, July 27, 2010 4:40:46 pm John Baldwin wrote: > Author: jhb > Date: Tue Jul 27 20:40:46 2010 > New Revision: 210552 > URL: http://svn.freebsd.org/changeset/base/210552 > > Log: > Add a parser for the ACPI SRAT table for amd64 and i386. It sets > PCPU(domain) for each CPU and popula

svn commit: r210552 - in head/sys: conf x86/acpica

2010-07-27 Thread John Baldwin
Author: jhb Date: Tue Jul 27 20:40:46 2010 New Revision: 210552 URL: http://svn.freebsd.org/changeset/base/210552 Log: Add a parser for the ACPI SRAT table for amd64 and i386. It sets PCPU(domain) for each CPU and populates a mem_affinity array suitable for the NUMA support in the physical

svn commit: r210551 - head/lib/libc/sys

2010-07-27 Thread Edward Tomasz Napierala
Author: trasz Date: Tue Jul 27 20:34:37 2010 New Revision: 210551 URL: http://svn.freebsd.org/changeset/base/210551 Log: Update mlockall(2) to mention that it's superuser-only syscall, just like the mlock(2) manual page says. Update mlock(2) to say that hitting RLIMIT_MEMLOCK results in ENO

svn commit: r210550 - in head/sys: amd64/include arm/include i386/include ia64/include mips/include powerpc/include sparc64/include sun4v/include sys vm

2010-07-27 Thread John Baldwin
Author: jhb Date: Tue Jul 27 20:33:50 2010 New Revision: 210550 URL: http://svn.freebsd.org/changeset/base/210550 Log: Very rough first cut at NUMA support for the physical page allocator. For now it uses a very dumb first-touch allocation policy. This will change in the future. - Each a

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

2010-07-27 Thread Jayachandran C.
Author: jchandra Date: Tue Jul 27 19:31:10 2010 New Revision: 210549 URL: http://svn.freebsd.org/changeset/base/210549 Log: mips/rmi/bus_space_rmi_pci.c is needed even when PCI is disabled. This file really provides a bus that does byteswapping, and can be used by non-PCI components too. Mo

svn commit: r210548 - head/sys/vm

2010-07-27 Thread Edward Tomasz Napierala
Author: trasz Date: Tue Jul 27 19:26:18 2010 New Revision: 210548 URL: http://svn.freebsd.org/changeset/base/210548 Log: Fix commented out resource limit check in mlockall(2). It's still racy, but at least less misleading. Modified: head/sys/vm/vm_mmap.c Modified: head/sys/vm/vm_mmap.c ==

Re: svn commit: r210514 - in head/sys/amd64: acpica amd64

2010-07-27 Thread Jung-uk Kim
On Tuesday 27 July 2010 12:55 pm, Pyun YongHyeon wrote: > On Tue, Jul 27, 2010 at 12:15:06PM -0400, Jung-uk Kim wrote: > > On Tuesday 27 July 2010 10:49 am, Gavin Atkinson wrote: > > > On Mon, 2010-07-26 at 19:53 +, Jung-uk Kim wrote: > > > > Author: jkim > > > > Date: Mon Jul 26 19:53:09 2010

Re: svn commit: r210514 - in head/sys/amd64: acpica amd64

2010-07-27 Thread Alexey Dokuchaev
On Tue, Jul 27, 2010 at 12:15:06PM -0400, Jung-uk Kim wrote: > The simplest thing to try is: > > sysctl debug.bootverbose=1 > sysctl debug.acpi.suspend_bounce=1 > acpiconf -s 3 > > This test emulates suspend/resume cycle of all device drivers without > actually going into S3 st

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

2010-07-27 Thread Jayachandran C.
Author: jchandra Date: Tue Jul 27 17:33:51 2010 New Revision: 210547 URL: http://svn.freebsd.org/changeset/base/210547 Log: The changes in r210542 moved setting counter_upper and counter_lower_last outside the critical section - fix that. Reported by: mav Modified: head/sys/mips/rmi/t

svn commit: r210546 - head/bin/setfacl

2010-07-27 Thread Benedict Reuschling
Author: bcr (doc committer) Date: Tue Jul 27 17:33:02 2010 New Revision: 210546 URL: http://svn.freebsd.org/changeset/base/210546 Log: Typo fix: s/ommited/omitted MFC after: 4 days Modified: head/bin/setfacl/setfacl.1 Modified: head/bin/setfacl/setfacl.1

svn commit: r210545 - in head/sys: compat/freebsd32 kern sys vm

2010-07-27 Thread Alan Cox
Author: alc Date: Tue Jul 27 17:31:03 2010 New Revision: 210545 URL: http://svn.freebsd.org/changeset/base/210545 Log: Introduce exec_alloc_args(). The objective being to encapsulate the details of the string buffer allocation in one place. Eliminate the portion of the string buffer that

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

2010-07-27 Thread Benedict Reuschling
Author: bcr (doc committer) Date: Tue Jul 27 17:23:40 2010 New Revision: 210544 URL: http://svn.freebsd.org/changeset/base/210544 Log: Small typo fix: s/ommited/omitted PR: docs/148977 Submitted by: Warren Block (wblock at wonkity dot com) MFC after: 4 days Modified:

svn commit: r210543 - in head/sys/dev/usb: . quirk

2010-07-27 Thread Gavin Atkinson
Author: gavin Date: Tue Jul 27 17:07:16 2010 New Revision: 210543 URL: http://svn.freebsd.org/changeset/base/210543 Log: Prevent uhid(4) from attaching to the Liebert PowerSure Personal XT UPS. PR: usb/129251 Submitted by: Andrew D Wiles MFC after:1 week Modified: head

Re: svn commit: r210514 - in head/sys/amd64: acpica amd64

2010-07-27 Thread Pyun YongHyeon
On Tue, Jul 27, 2010 at 12:15:06PM -0400, Jung-uk Kim wrote: > On Tuesday 27 July 2010 10:49 am, Gavin Atkinson wrote: > > On Mon, 2010-07-26 at 19:53 +, Jung-uk Kim wrote: > > > Author: jkim > > > Date: Mon Jul 26 19:53:09 2010 > > > New Revision: 210514 > > > URL: http://svn.freebsd.org/chang

Re: svn commit: r210514 - in head/sys/amd64: acpica amd64

2010-07-27 Thread Jung-uk Kim
On Tuesday 27 July 2010 10:49 am, Gavin Atkinson wrote: > On Mon, 2010-07-26 at 19:53 +, Jung-uk Kim wrote: > > Author: jkim > > Date: Mon Jul 26 19:53:09 2010 > > New Revision: 210514 > > URL: http://svn.freebsd.org/changeset/base/210514 > > > > Log: > > Re-implement FPU suspend/resume for a

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

2010-07-27 Thread Jayachandran C.
Author: jchandra Date: Tue Jul 27 15:10:05 2010 New Revision: 210542 URL: http://svn.freebsd.org/changeset/base/210542 Log: The count/compare values have to be tracked per CPU. Reviewed by: mav Modified: head/sys/mips/rmi/tick.c Modified: head/sys/mips/rmi/tick.c ==

Re: svn commit: r210514 - in head/sys/amd64: acpica amd64

2010-07-27 Thread Gavin Atkinson
On Mon, 2010-07-26 at 19:53 +, Jung-uk Kim wrote: > Author: jkim > Date: Mon Jul 26 19:53:09 2010 > New Revision: 210514 > URL: http://svn.freebsd.org/changeset/base/210514 > > Log: > Re-implement FPU suspend/resume for amd64. This removes superfluous uses > of critical_enter(9) and criti

svn commit: r210539 - head/sbin/ipfw

2010-07-27 Thread Gleb Smirnoff
Author: glebius Date: Tue Jul 27 14:31:39 2010 New Revision: 210539 URL: http://svn.freebsd.org/changeset/base/210539 Log: Document that the "ngtee" action no longer accepts packet, and thus don't depend on one_pass flag anymore. This is a POLA violation, but it is quite difficult to rest

svn commit: r210538 - head

2010-07-27 Thread Rui Paulo
Author: rpaulo Date: Tue Jul 27 14:26:38 2010 New Revision: 210538 URL: http://svn.freebsd.org/changeset/base/210538 Log: Add an entry to remove the acpi_boost(4) man page. Submitted by: pluknet Modified: head/ObsoleteFiles.inc Modified: head/ObsoleteFiles.inc =

svn commit: r210537 - in head/sys: netgraph netinet/ipfw

2010-07-27 Thread Gleb Smirnoff
Author: glebius Date: Tue Jul 27 14:26:34 2010 New Revision: 210537 URL: http://svn.freebsd.org/changeset/base/210537 Log: Fix operation of "netgraph" action in conjunction with the net.inet.ip.fw.one_pass sysctl. The "ngtee" action is still broken. PR: kern/148885 Submit

svn commit: r210534 - in head/sys/dev/usb: . serial

2010-07-27 Thread Gavin Atkinson
Author: gavin Date: Tue Jul 27 12:29:45 2010 New Revision: 210534 URL: http://svn.freebsd.org/changeset/base/210534 Log: Add support for the Longcheer WM66 USB HSDPA Modem to u3g(4) This patch is different to that provided in the PR, due to the changes in this driver since 7.x. PR:

svn commit: r210533 - head/sys/net

2010-07-27 Thread Gleb Smirnoff
Author: glebius Date: Tue Jul 27 11:56:49 2010 New Revision: 210533 URL: http://svn.freebsd.org/changeset/base/210533 Log: Don't check malloc(M_WAITOK) result. Modified: head/sys/net/if_llatbl.c Modified: head/sys/net/if_llatbl.c ==

svn commit: r210532 - head/sys/net

2010-07-27 Thread Bjoern A. Zeeb
Author: bz Date: Tue Jul 27 11:54:01 2010 New Revision: 210532 URL: http://svn.freebsd.org/changeset/base/210532 Log: Return NULL rather than 0 for a pointer. MFC after:3 days Modified: head/sys/net/if.c Modified: head/sys/net/if.c ===

svn commit: r210529 - head/sys/net

2010-07-27 Thread Gleb Smirnoff
Author: glebius Date: Tue Jul 27 10:05:27 2010 New Revision: 210529 URL: http://svn.freebsd.org/changeset/base/210529 Log: When installing a new ARP entry via 'arp -S', lla_lookup() will either find an existing entry, or allocate a new one. In the latter case an entry would have flags, that

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

2010-07-27 Thread Jayachandran C.
Author: jchandra Date: Tue Jul 27 09:22:41 2010 New Revision: 210528 URL: http://svn.freebsd.org/changeset/base/210528 Log: Fixup mips/rmi for the new mips timer code(r210403). This will get XLR booting again. The code is a copy of the mips/mips/tick.c with minor modifications for XLR i

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

2010-07-27 Thread Simon L. Nielsen
Author: simon Date: Tue Jul 27 08:45:29 2010 New Revision: 210525 URL: http://svn.freebsd.org/changeset/base/210525 Log: Missing IFCAP_* macro descriptions in ifnet(9). PR: docs/148952 Submitted by: Lars Hartmann MFC after:2 weeks Modified: head/share/man/man9/ifnet.9

svn commit: r210524 - in head/sys/dev/usb: . serial

2010-07-27 Thread Gavin Atkinson
Author: gavin Date: Tue Jul 27 07:57:35 2010 New Revision: 210524 URL: http://svn.freebsd.org/changeset/base/210524 Log: - Support two devices made by West Mountain Radio in uslcom(4) [1] - Bring in several other devices from OpenBSD while here. Use the official manufacturer name over