svn commit: r215792 - head/sys/net

2010-11-23 Thread Maxim Konovalov
Author: maxim Date: Wed Nov 24 05:50:19 2010 New Revision: 215792 URL: http://svn.freebsd.org/changeset/base/215792 Log: o Swap descriptions for net.bpf.bufsize and net.bpf.maxbufsize. PR: misc/152531 MFC after:1 week Modified: head/sys/net/bpf_buffer.c Modified: head/sy

svn commit: r215790 - head/sys/netinet

2010-11-23 Thread Gleb Smirnoff
Author: glebius Date: Wed Nov 24 05:24:36 2010 New Revision: 215790 URL: http://svn.freebsd.org/changeset/base/215790 Log: Redo r166423. It is important not only skip freeing multicast entires when underlying interface is detached, but also purge pointers to them, to avoid double-free in fut

svn commit: r215789 - head/sys/dev/e1000

2010-11-23 Thread Jack F Vogel
Author: jfv Date: Wed Nov 24 01:13:55 2010 New Revision: 215789 URL: http://svn.freebsd.org/changeset/base/215789 Log: Add shared code glue for new 82580 devices. Modified: head/sys/dev/e1000/e1000_api.c head/sys/dev/e1000/e1000_hw.h Modified: head/sys/dev/e1000/e1000_api.c ===

svn commit: r215786 - head/usr.sbin/iostat

2010-11-23 Thread Yar Tikhiy
Author: yar Date: Wed Nov 24 00:05:19 2010 New Revision: 215786 URL: http://svn.freebsd.org/changeset/base/215786 Log: Clarify a few details about iostat(8) behavior: - The default repeat count for iostat(8) is 1 unless there was a -w on the command line. - A -x display doesn't inc

svn commit: r215783 - head/bin/sh

2010-11-23 Thread Jilles Tjoelker
Author: jilles Date: Tue Nov 23 22:17:39 2010 New Revision: 215783 URL: http://svn.freebsd.org/changeset/base/215783 Log: sh: Code size optimizations to "stack string" memory allocation: * Prefer one CHECKSTRSPACE with multiple USTPUTC to multiple STPUTC. * Add STPUTS macro (based on functio

svn commit: r215782 - head/sys/compat/ndis

2010-11-23 Thread Bernhard Schmidt
Author: bschmidt Date: Tue Nov 23 22:17:06 2010 New Revision: 215782 URL: http://svn.freebsd.org/changeset/base/215782 Log: Add prototype for InitializeSListHead(). Modified: head/sys/compat/ndis/subr_ntoskrnl.c Modified: head/sys/compat/ndis/subr_ntoskrnl.c =

svn commit: r215781 - head/sys/dev/e1000

2010-11-23 Thread Jack F Vogel
Author: jfv Date: Tue Nov 23 22:12:02 2010 New Revision: 215781 URL: http://svn.freebsd.org/changeset/base/215781 Log: - New 82580 devices supported - Fixes from John Baldwin: vlan shadow tables made per/interface, make vlan hw setup only happen when capability enabled, and finally, ma

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

2010-11-23 Thread Marius Strobl
Author: marius Date: Tue Nov 23 22:07:10 2010 New Revision: 215780 URL: http://svn.freebsd.org/changeset/base/215780 Log: Remove the description of the link0 link option, since r215297 the master media option generally should be used instead. Actually I think the lists of media types should

svn commit: r215779 - head/sys/compat/ndis

2010-11-23 Thread Bernhard Schmidt
Author: bschmidt Date: Tue Nov 23 21:49:32 2010 New Revision: 215779 URL: http://svn.freebsd.org/changeset/base/215779 Log: Add a few functions used in newer drivers. Fix RtlCompareMemory() while here. Submitted by: Paul B Mahol Modified: head/sys/compat/ndis/ntoskrnl_var.h head/sys

svn commit: r215770 - head/tools/tools/sysbuild

2010-11-23 Thread Poul-Henning Kamp
Author: phk Date: Tue Nov 23 21:21:56 2010 New Revision: 215770 URL: http://svn.freebsd.org/changeset/base/215770 Log: Don't checksum distfiles twice if they match the first time. Modified: head/tools/tools/sysbuild/sysbuild.sh Modified: head/tools/tools/sysbuild/sysbuild.sh

svn commit: r215768 - head/sys/dev/fxp

2010-11-23 Thread Marius Strobl
Author: marius Date: Tue Nov 23 21:09:42 2010 New Revision: 215768 URL: http://svn.freebsd.org/changeset/base/215768 Log: - Sprinkle const on tables. - Remove an alpha remnant. - Minor comment and style fixes. Modified: head/sys/dev/fxp/if_fxp.c head/sys/dev/fxp/if_fxpvar.h Modified: h

svn commit: r215767 - head/tools/tools/sysbuild

2010-11-23 Thread Poul-Henning Kamp
Author: phk Date: Tue Nov 23 20:47:39 2010 New Revision: 215767 URL: http://svn.freebsd.org/changeset/base/215767 Log: Optimize the ports recurser a bit more. Modified: head/tools/tools/sysbuild/sysbuild.sh Modified: head/tools/tools/sysbuild/sysbuild.sh =

svn commit: r215766 - head/bin/sh

2010-11-23 Thread Jilles Tjoelker
Author: jilles Date: Tue Nov 23 20:46:06 2010 New Revision: 215766 URL: http://svn.freebsd.org/changeset/base/215766 Log: sh: Pass multiple bytes at a time to lex. This speeds up the expansion/arith6.0 test considerably. Modified: head/bin/sh/arith_lex.l Modified: head/bin/sh/arith_lex.

svn commit: r215765 - head/tools/tools/sysbuild

2010-11-23 Thread Poul-Henning Kamp
Author: phk Date: Tue Nov 23 20:28:21 2010 New Revision: 215765 URL: http://svn.freebsd.org/changeset/base/215765 Log: Improve the ports-dependency resolver by truncating the recursion if we already did the target port, and by leaving behind a /tmp/_.plist.dot which documents which ports pul

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

2010-11-23 Thread Weongyo Jeong
Author: weongyo Date: Tue Nov 23 20:23:25 2010 New Revision: 215764 URL: http://svn.freebsd.org/changeset/base/215764 Log: Fixes a kernel crash when usb module is reloaded after unload that it didn't destroy the cdev properly. Pointy hat to:me Reported by: Brandon Gooch , jkim

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

2010-11-23 Thread Attilio Rao
Author: attilio Date: Tue Nov 23 18:52:27 2010 New Revision: 215758 URL: http://svn.freebsd.org/changeset/base/215758 Log: Make this printfoutput more verbose. Sponsored by: Sandvine Incorporated Submitted by: Sandvine Incorporated MFC after:3 days Modified: head/sys/boot/common/

svn commit: r215754 - in head/sys: amd64/amd64 i386/i386

2010-11-23 Thread Jung-uk Kim
Author: jkim Date: Tue Nov 23 17:28:23 2010 New Revision: 215754 URL: http://svn.freebsd.org/changeset/base/215754 Log: Remove a stale tunable introduced in r215703. Modified: head/sys/amd64/amd64/pmap.c head/sys/i386/i386/pmap.c Modified: head/sys/amd64/amd64/pmap.c ==

svn commit: r215753 - in head/sys/amd64: acpica amd64

2010-11-23 Thread Jung-uk Kim
Author: jkim Date: Tue Nov 23 16:12:35 2010 New Revision: 215753 URL: http://svn.freebsd.org/changeset/base/215753 Log: Reinitialize PAT MSR via pmap_init_pat() while resuming. This function does better job since r215703 and it is safer now. Modified: head/sys/amd64/acpica/acpi_switch.S

svn commit: r215752 - head/usr.bin/locate/locate

2010-11-23 Thread Nathan Whitehorn
Author: nwhitehorn Date: Tue Nov 23 15:08:56 2010 New Revision: 215752 URL: http://svn.freebsd.org/changeset/base/215752 Log: Properly use SCHAR_MAX instead of CHAR_MAX for 0x7f. This fixes operation of locate(1) on systems on which char is unsigned by default (ARM and PowerPC). Reporte

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

2010-11-23 Thread Andriy Gapon
Author: avg Date: Tue Nov 23 14:36:14 2010 New Revision: 215751 URL: http://svn.freebsd.org/changeset/base/215751 Log: x86/local_apic: use newly added ARAT bit definition ARAT: APIC-Timer-always-running feature. Suggested by: mav MFC after:12 days Modified: head/sys/x86/x86/lo

svn commit: r215750 - head/sys/kern

2010-11-23 Thread Andriy Gapon
Author: avg Date: Tue Nov 23 14:30:22 2010 New Revision: 215750 URL: http://svn.freebsd.org/changeset/base/215750 Log: taskqueue: drop unused tq_name field tq_name was used write-only and besides it was just a pointer, so it could point to some garbage in a temporary buffer that's gone.

svn commit: r215748 - in head/sys: amd64/include i386/include

2010-11-23 Thread Andriy Gapon
Author: avg Date: Tue Nov 23 13:55:30 2010 New Revision: 215748 URL: http://svn.freebsd.org/changeset/base/215748 Log: specialreg.h: add definitions for some useful bits found in CPUID.6 EAX and ECX CPUID.6 is defined as Thermal and Power Management Leaf by both Intel and AMD. Revie

svn commit: r215747 - in head/sys: compat/freebsd32 kern

2010-11-23 Thread Sergey Kandaurov
Author: pluknet Date: Tue Nov 23 13:49:15 2010 New Revision: 215747 URL: http://svn.freebsd.org/changeset/base/215747 Log: Update MNT_ROOTFS comments after changes in the root mount logic. Reported by: arundel Suggested by: marcel (phrasing) Approved by: kib (mentor) Modified: head

svn commit: r215742 - head/sys/sys

2010-11-23 Thread Konstantin Belousov
Author: kib Date: Tue Nov 23 12:51:08 2010 New Revision: 215742 URL: http://svn.freebsd.org/changeset/base/215742 Log: Add PT_GNU_STACK definition. MFC after:3 days Modified: head/sys/sys/elf_common.h Modified: head/sys/sys/elf_common.h ==

svn commit: r215741 - head/sys/compat/ia32

2010-11-23 Thread Konstantin Belousov
Author: kib Date: Tue Nov 23 12:47:15 2010 New Revision: 215741 URL: http://svn.freebsd.org/changeset/base/215741 Log: Add include guards. MFC after:3 days Modified: head/sys/compat/ia32/ia32_signal.h head/sys/compat/ia32/ia32_util.h Modified: head/sys/compat/ia32/ia32_signal.h ==

Re: svn commit: r215706 - head/sys/compat/linux

2010-11-23 Thread Alexander Leidinger
Quoting Dimitry Andric (from Mon, 22 Nov 2010 20:23:18 + (UTC)): Author: dim Date: Mon Nov 22 20:23:18 2010 New Revision: 215706 URL: http://svn.freebsd.org/changeset/base/215706 Log: Fix linux kernel module breakage introduced in r215675, by including . Thanks! Noticed by: m

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

2010-11-23 Thread Nick Hibma
Author: n_hibma Date: Tue Nov 23 08:15:14 2010 New Revision: 215734 URL: http://svn.freebsd.org/changeset/base/215734 Log: Make the Huawei E1820 work (Emile Coetzee). Shorten the descriptive strings for Huawei devices. The vendor or operator name should not be included in the device name.