svn commit: r211277 - stable/6/sbin/ip6fw

2010-08-13 Thread Hajimu UMEMOTO
Author: ume Date: Fri Aug 13 07:34:41 2010 New Revision: 211277 URL: http://svn.freebsd.org/changeset/base/211277 Log: Fix the argument type of fill_icmptypes() on amd64. PR: bin/132911 Submitted by: Yoshitaka AHAREN Modified: stable/6/sbin/ip6fw/ip6fw.c Modified: stable/6/

Re: svn commit: r211252 - head/usr.sbin/acpi/acpidump

2010-08-13 Thread Bruce Evans
On Fri, 13 Aug 2010, Takanori Watanabe wrote: Log: Fix build on amd64 and ia64. Why not fix it on all arches? Modified: head/usr.sbin/acpi/acpidump/acpi.c == --- head/usr.sbin/acpi/acpidump/acpi.c Fri Aug 13 00:21:

Re: svn commit: r211252 - head/usr.sbin/acpi/acpidump

2010-08-13 Thread Dag-Erling Smørgrav
Takanori Watanabe writes: > @@ -647,7 +646,7 @@ acpi_handle_tcpa(ACPI_TABLE_HEADER *sdp) > printf(END_COMMENT); > return; > } > - printf("\tClass %d Base Address 0x%jx Length %" PRIu64 "\n\n", > + printf("\tClass %u Base Address 0x%jx Length %ju\n\n", >

svn commit: r211278 - head/usr.sbin/acpi/acpidump

2010-08-13 Thread Takanori Watanabe
Author: takawata Date: Fri Aug 13 09:58:17 2010 New Revision: 211278 URL: http://svn.freebsd.org/changeset/base/211278 Log: use uintmax_t instead of uint64_t. Pointed out by: des. Modified: head/usr.sbin/acpi/acpidump/acpi.c Modified: head/usr.sbin/acpi/acpidump/acpi.c =

Re: svn commit: r211221 - head/usr.sbin/acpi/acpidump

2010-08-13 Thread Bruce Evans
On Thu, 12 Aug 2010, John Baldwin wrote: Dag-Erling Sm??rgrav wrote: John Baldwin writes: Dag-Erling Sm??rgrav writes: Oops, I replied to the commit mail for the round after this before noticing this thread. Slightly better: printf("\tClass %u Base Address 0x%jx Length %ju\n\n",

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

2010-08-13 Thread Bruce Evans
On Thu, 12 Aug 2010, Jung-uk Kim wrote: On Thursday 12 August 2010 12:37 pm, m...@freebsd.org wrote: On Thu, Aug 12, 2010 at 9:13 AM, Jung-uk Kim wrote: Log: ?Provide description for 'machdep.disable_rtc_set' sysctl. ?Clean up style(9) ?nits. ?Remove a redundant return statement and an unnec

Re: svn commit: r211221 - head/usr.sbin/acpi/acpidump

2010-08-13 Thread Dag-Erling Smørgrav
Bruce Evans writes: > - `platform_class' has type uint16_t. u_int is larger than that on all > supported machines, and also on unsupported ones with 16-31 bit u_ints. > Thus the cast has almost no effect, and has no effect on the result. you have to cast it to *something*, unless you're will

svn commit: r211279 - stable/8/sys/dev/usb/quirk

2010-08-13 Thread Konstantin Belousov
Author: kib Date: Fri Aug 13 11:24:02 2010 New Revision: 211279 URL: http://svn.freebsd.org/changeset/base/211279 Log: MFC r210931: Disable sync cache for the Transcend Jetflash V90. Modified: stable/8/sys/dev/usb/quirk/usb_quirk.c Directory Properties: stable/8/sys/ (props changed) s

svn commit: r211280 - in head/sys: conf mips/conf mips/include mips/mips mips/rmi

2010-08-13 Thread Jayachandran C.
Author: jchandra Date: Fri Aug 13 12:56:00 2010 New Revision: 211280 URL: http://svn.freebsd.org/changeset/base/211280 Log: Rename TARGET_XLR_XLS to CPU_RMI to match other CPU_xxx definitions. use CPU_RMI all XLR configurations. Update ident string for N32 and N64 kernels. Modified: head/

svn commit: r211281 - head/bin/sh

2010-08-13 Thread Jilles Tjoelker
Author: jilles Date: Fri Aug 13 13:36:18 2010 New Revision: 211281 URL: http://svn.freebsd.org/changeset/base/211281 Log: sh: Fix shadowing of sigset. Modified: head/bin/sh/error.c Modified: head/bin/sh/error.c == --

Re: svn commit: r211221 - head/usr.sbin/acpi/acpidump

2010-08-13 Thread Bruce Evans
On Fri, 13 Aug 2010, [utf-8] Dag-Erling Sm??rgrav wrote: Bruce Evans writes: - `platform_class' has type uint16_t. u_int is larger than that on all supported machines, and also on unsupported ones with 16-31 bit u_ints. Thus the cast has almost no effect, and has no effect on the result.

svn commit: r211282 - head/sbin/geom/class/multipath

2010-08-13 Thread Matt Jacob
Author: mjacob Date: Fri Aug 13 15:17:19 2010 New Revision: 211282 URL: http://svn.freebsd.org/changeset/base/211282 Log: Avoid a memory leak. Submitted by: Dmitry Luhtionov via Alexander Motin MFC after:1 week Modified: head/sbin/geom/class/multipath/geom_multipath.c Modified: he

svn commit: r211283 - head/sys/net

2010-08-13 Thread Marko Zec
Author: zec Date: Fri Aug 13 18:17:32 2010 New Revision: 211283 URL: http://svn.freebsd.org/changeset/base/211283 Log: When moving an ethernet ifnet from one vnet to another, destroy the associated ng_ether netgraph node in the current vnet, and create a new one in the target vnet. Revi

svn commit: r211284 - head/sys/kern

2010-08-13 Thread Pawel Jakub Dawidek
Author: pjd Date: Fri Aug 13 19:20:35 2010 New Revision: 211284 URL: http://svn.freebsd.org/changeset/base/211284 Log: Simplify taskqueue_drain() by using proved macros. Modified: head/sys/kern/subr_taskqueue.c Modified: head/sys/kern/subr_taskqueue.c

svn commit: r211285 - head/sys/dev/alc

2010-08-13 Thread Pyun YongHyeon
Author: yongari Date: Fri Aug 13 19:39:33 2010 New Revision: 211285 URL: http://svn.freebsd.org/changeset/base/211285 Log: Make sure to disable RX MAC in alc_stop_mac(). Previously there was a logic error which it always enabled RX MAC. Modified: head/sys/dev/alc/if_alc.c Modified: head/sy

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

2010-08-13 Thread mdf
On Fri, Aug 13, 2010 at 12:20 PM, Pawel Jakub Dawidek wrote: > Author: pjd > Date: Fri Aug 13 19:20:35 2010 > New Revision: 211284 > URL: http://svn.freebsd.org/changeset/base/211284 > > Log: >  Simplify taskqueue_drain() by using proved macros. Thanks! This was on my to-do list since I'd been i

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

2010-08-13 Thread Joel Dahl
Author: joel (doc committer) Date: Fri Aug 13 20:27:40 2010 New Revision: 211286 URL: http://svn.freebsd.org/changeset/base/211286 Log: Fix typo. Modified: head/share/man/man4/tpm.4 Modified: head/share/man/man4/tpm.4 ==

svn commit: r211287 - head/bin/sh

2010-08-13 Thread Jilles Tjoelker
Author: jilles Date: Fri Aug 13 20:29:43 2010 New Revision: 211287 URL: http://svn.freebsd.org/changeset/base/211287 Log: sh: Add a forgotten const. Modified: head/bin/sh/eval.c Modified: head/bin/sh/eval.c == --- he

svn commit: r211288 - head/etc

2010-08-13 Thread Jung-uk Kim
Author: jkim Date: Fri Aug 13 20:43:19 2010 New Revision: 211288 URL: http://svn.freebsd.org/changeset/base/211288 Log: Enforce ACPI timer as the timecounter hardware before we change sleep state unless it is the current timer. When we have resumed successfully, restore the previous timecou

svn commit: r211289 - head/etc

2010-08-13 Thread Jung-uk Kim
Author: jkim Date: Fri Aug 13 21:04:43 2010 New Revision: 211289 URL: http://svn.freebsd.org/changeset/base/211289 Log: Do not fork a subshell unnecessarily. Modified: head/etc/rc.suspend Modified: head/etc/rc.suspend ==

svn commit: r211290 - head/tools/regression/fstest/tests/chflags

2010-08-13 Thread Pawel Jakub Dawidek
Author: pjd Date: Fri Aug 13 21:17:59 2010 New Revision: 211290 URL: http://svn.freebsd.org/changeset/base/211290 Log: - Use loops to avoid code duplication. - More tests. Modified: head/tools/regression/fstest/tests/chflags/07.t head/tools/regression/fstest/tests/chflags/08.t head/tool

svn commit: r211291 - head/etc

2010-08-13 Thread Jung-uk Kim
Author: jkim Date: Fri Aug 13 21:23:13 2010 New Revision: 211291 URL: http://svn.freebsd.org/changeset/base/211291 Log: Consistently use full pathnames for external commands. Modified: head/etc/rc.resume head/etc/rc.suspend Modified: head/etc/rc.resume =

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

2010-08-13 Thread Jung-uk Kim
Author: jkim Date: Fri Aug 13 22:08:42 2010 New Revision: 211292 URL: http://svn.freebsd.org/changeset/base/211292 Log: Reset switchtime to zero rather than the current CPU ticker (TSC) value. It is more appropriate in this context because TSC MSR is reset to zero when the CPU is restarted f

svn commit: r211294 - stable/8/usr.sbin/iostat

2010-08-13 Thread Yar Tikhiy
Author: yar Date: Sat Aug 14 00:50:26 2010 New Revision: 211294 URL: http://svn.freebsd.org/changeset/base/211294 Log: MFC r211001: Move the sentences telling the defaults for -c and -w to where they belong. Previously they were misplaced, i.e., swapped. Modified: stable/8/usr.sbin/