svn commit: r190253 - stable/7/bin/sh

2009-03-22 Thread Ed Schouten
Author: ed Date: Sun Mar 22 08:09:16 2009 New Revision: 190253 URL: http://svn.freebsd.org/changeset/base/190253 Log: MFC: Don't disable CR-to-NL translation when waiting for data to arrive. A difference between the old and the new TTY layer is that the new implementation does

svn commit: r190254 - stable/6/bin/sh

2009-03-22 Thread Ed Schouten
Author: ed Date: Sun Mar 22 08:14:01 2009 New Revision: 190254 URL: http://svn.freebsd.org/changeset/base/190254 Log: MFC r189542: Don't disable CR-to-NL translation when waiting for data to arrive. A difference between the old and the new TTY layer is that the new implementati

Re: svn commit: r190098 - in head/sys/sparc64: fhc sparc64

2009-03-22 Thread Andriy Gapon
on 22/03/2009 01:57 M. Warner Losh said the following: > I'll point out that style(9) doesn't say use as few local variables as > possible... That part is completely unspecified. But it does say: Do not put declarations inside blocks unless the routine is unusually complicated. "unusually compli

Re: svn commit: r190098 - in head/sys/sparc64: fhc sparc64

2009-03-22 Thread Christoph Mallon
Andriy Gapon schrieb: on 22/03/2009 01:57 M. Warner Losh said the following: I'll point out that style(9) doesn't say use as few local variables as possible... That part is completely unspecified. But it does say: Do not put declarations inside blocks unless the routine is unusually complicat

Re: svn commit: r190098 - in head/sys/sparc64: fhc sparc64

2009-03-22 Thread Colin Percival
Christoph Mallon wrote: (two loops plus three if ()s, which can easily happen in a non-trivial algorithm, and you start at column 48 of 80) I've found that this is usually a very good point at which to ask myself if the code in question can be refactored. I'm not saying that I refactor code ju

svn commit: r190255 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb sparc64/sparc64

2009-03-22 Thread Marius Strobl
Author: marius Date: Sun Mar 22 09:57:57 2009 New Revision: 190255 URL: http://svn.freebsd.org/changeset/base/190255 Log: MFC: r181640, r190003 - Add sys_tick and the USIII and beyond sys_tick_cmpr to state_regs[]. - Const'ify and static'ize as appropriate. - Use __FBSDID(). Modified:

svn commit: r190256 - in stable/7/sys: . conf contrib/pf dev/ath/ath_hal dev/cxgb sparc64/sparc64

2009-03-22 Thread Marius Strobl
Author: marius Date: Sun Mar 22 10:08:41 2009 New Revision: 190256 URL: http://svn.freebsd.org/changeset/base/190256 Log: MFC: r182918 Add drivers for the power management devices found on Fireplane/ Safari- and JBus-based machines. Currently the main purpose of these drivers is debuggi

svn commit: r190257 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb sparc64/include sparc64/sparc64

2009-03-22 Thread Marius Strobl
Author: marius Date: Sun Mar 22 10:33:10 2009 New Revision: 190257 URL: http://svn.freebsd.org/changeset/base/190257 Log: MFC: r183142, r186395, 190106 - Newer firmware versions no longer provide SUNW,stop-self so just disable interrupts and loop forever instead. We still could use

svn commit: r190258 - stable/6/share/man/man9

2009-03-22 Thread Marius Strobl
Author: marius Date: Sun Mar 22 10:42:07 2009 New Revision: 190258 URL: http://svn.freebsd.org/changeset/base/190258 Log: MFC: r167274, r179694, r182816, r182962, r185004 - Some minor tweaks and updates to bus_dma(9) including some additional notes on the address filter and locking ca

svn commit: r190259 - stable/7/sbin/fdisk_pc98

2009-03-22 Thread Takahashi Yoshihiro
Author: nyan Date: Sun Mar 22 10:51:40 2009 New Revision: 190259 URL: http://svn.freebsd.org/changeset/base/190259 Log: MFC: r190027 Use the common PC98_SID_ACTIVE define instead of a local define. Modified: stable/7/sbin/fdisk_pc98/ (props changed) stable/7/sbin/fdisk_pc98/fdisk.c

svn commit: r190260 - in stable/7/sys: . boot/pc98/libpc98 contrib/pf dev/ath/ath_hal dev/cxgb

2009-03-22 Thread Takahashi Yoshihiro
Author: nyan Date: Sun Mar 22 10:55:07 2009 New Revision: 190260 URL: http://svn.freebsd.org/changeset/base/190260 Log: MFC: r190029 Use the common PC98_MID_* defines instead of a magic number. Modified: stable/7/sys/ (props changed) stable/7/sys/boot/pc98/libpc98/biosdisk.c stab

svn commit: r190261 - in stable/7/sys: . boot/pc98/libpc98 contrib/pf dev/ath/ath_hal dev/cxgb

2009-03-22 Thread Takahashi Yoshihiro
Author: nyan Date: Sun Mar 22 11:03:24 2009 New Revision: 190261 URL: http://svn.freebsd.org/changeset/base/190261 Log: MFC: r190146, r190147 Teach the BIOS CD driver to use bounce buffers when the destination address is > 1 MB. Modified: stable/7/sys/ (props changed) stabl

svn commit: r190262 - in stable/6/sys: . boot/pc98/libpc98 contrib/pf dev/cxgb

2009-03-22 Thread Takahashi Yoshihiro
Author: nyan Date: Sun Mar 22 11:07:13 2009 New Revision: 190262 URL: http://svn.freebsd.org/changeset/base/190262 Log: MFC: r190146, r190147 Teach the BIOS CD driver to use bounce buffers when the destination address is > 1 MB. Modified: stable/6/sys/ (props changed) stable/6/

Re: svn commit: r190098 - in head/sys/sparc64: fhc sparc64

2009-03-22 Thread M. Warner Losh
In message: <49c5f88c.3070...@freebsd.org> Andriy Gapon writes: : on 22/03/2009 01:57 M. Warner Losh said the following: : > I'll point out that style(9) doesn't say use as few local variables as : > possible... That part is completely unspecified. : : But it does say: : Do not put d

Re: svn commit: r190098 - in head/sys/sparc64: fhc sparc64

2009-03-22 Thread M. Warner Losh
In message: <49c5fcca.5010...@gmx.de> Christoph Mallon writes: : Andriy Gapon schrieb: : > on 22/03/2009 01:57 M. Warner Losh said the following: : >> I'll point out that style(9) doesn't say use as few local variables as : >> possible... That part is completely unspecified. : > : >

svn commit: r190263 - head/sys/dev/usb/storage

2009-03-22 Thread Warner Losh
Author: imp Date: Sun Mar 22 13:17:46 2009 New Revision: 190263 URL: http://svn.freebsd.org/changeset/base/190263 Log: NO_INQUIRY is wrong for this device. Alternatively, if it is right, it is right for only a tiny fraction of these devices and this wild-card entry is too broad. # I ru

Re: svn commit: r190098 - in head/sys/sparc64: fhc sparc64

2009-03-22 Thread Christoph Mallon
M. Warner Losh schrieb: In message: <49c5f88c.3070...@freebsd.org> Andriy Gapon writes: : on 22/03/2009 01:57 M. Warner Losh said the following: : > I'll point out that style(9) doesn't say use as few local variables as : > possible... That part is completely unspecified. : : But i

svn commit: r190264 - head/sys/kern

2009-03-22 Thread Konstantin Belousov
Author: kib Date: Sun Mar 22 13:42:41 2009 New Revision: 190264 URL: http://svn.freebsd.org/changeset/base/190264 Log: Fix several issues with parsing the notes for ELF objects. Badly formed ELF note may cause the caclulated pointer to the next note to point both after the note region, th

svn commit: r190265 - head/sys/sys

2009-03-22 Thread Konstantin Belousov
Author: kib Date: Sun Mar 22 14:39:37 2009 New Revision: 190265 URL: http://svn.freebsd.org/changeset/base/190265 Log: Bump __FreeBSD_version for dynamic token string support added in ld.so. Requested by: maho Modified: head/sys/sys/param.h Modified: head/sys/sys/param.h ===

svn commit: r190266 - head/lib/libc/string

2009-03-22 Thread Konstantin Belousov
Author: kib Date: Sun Mar 22 15:29:12 2009 New Revision: 190266 URL: http://svn.freebsd.org/changeset/base/190266 Log: 7.2 will be the first release where strndup() appears. Submitted by: Florian Smeets MFC after:3 days Modified: head/lib/libc/string/strdup.3 Modified: head/lib/l

svn commit: r190267 - stable/7/sys/kern

2009-03-22 Thread Nick Hibma
Author: n_hibma Date: Sun Mar 22 15:46:12 2009 New Revision: 190267 URL: http://svn.freebsd.org/changeset/base/190267 Log: If the device marked itself quiet, make detachment quiet as well. This avoids 'XX: detached' messages when the 'attached' message was suppressed. Modified: stable/7/s

svn commit: r190268 - in stable/7: share/man/man4 sys/conf sys/dev/usb sys/modules sys/modules/u3g

2009-03-22 Thread Nick Hibma
Author: n_hibma Date: Sun Mar 22 16:27:14 2009 New Revision: 190268 URL: http://svn.freebsd.org/changeset/base/190268 Log: MFC the (current) u3g driver, a driver for USB based 3G cards and dongles. This includes changes to ubsa (removing attachment from that device), and small changes to

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

2009-03-22 Thread Andrew Thompson
Author: thompsa Date: Sun Mar 22 17:09:56 2009 New Revision: 190269 URL: http://svn.freebsd.org/changeset/base/190269 Log: Set the endpoint on the preallocated fifo so it doesnt get matched as an endpoint fifo. Reported by: Pieter de Goeje Modified: head/sys/dev/usb/usb_dev.c Modifie

svn commit: r190270 - head/bin/sh

2009-03-22 Thread Stefan Farfeleder
Author: stefanf Date: Sun Mar 22 17:20:42 2009 New Revision: 190270 URL: http://svn.freebsd.org/changeset/base/190270 Log: Make the output of the alias built-in POSIX-compliant: Drop the leading 'alias' and suppress printing the trailing space which is added for internal purposes. Modified:

svn commit: r190271 - head/tools/regression/bin/sh/builtins

2009-03-22 Thread Stefan Farfeleder
Author: stefanf Date: Sun Mar 22 17:22:14 2009 New Revision: 190271 URL: http://svn.freebsd.org/changeset/base/190271 Log: Update and extend the tests for alias. Modified: head/tools/regression/bin/sh/builtins/alias.0 head/tools/regression/bin/sh/builtins/alias.0.stdout Modified: head/tool

Re: svn commit: r190098 - in head/sys/sparc64: fhc sparc64

2009-03-22 Thread Julian Elischer
Christoph Mallon wrote: Andriy Gapon schrieb: >> compliants about style (9) > agreement and disagreement. basically almost every single committer who comes into the group usually starts up by objecting to one part or another of the style guide. However the problem is that we all object to diff

Re: svn commit: r190098 - in head/sys/sparc64: fhc sparc64

2009-03-22 Thread Julian Elischer
M. Warner Losh wrote: In message: <49c5f88c.3070...@freebsd.org> Andriy Gapon writes: : on 22/03/2009 01:57 M. Warner Losh said the following: : > I'll point out that style(9) doesn't say use as few local variables as : > possible... That part is completely unspecified. : : But it

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

2009-03-22 Thread Alan Cox
Author: alc Date: Sun Mar 22 18:56:26 2009 New Revision: 190272 URL: http://svn.freebsd.org/changeset/base/190272 Log: Update stale comments. The alternate address space mapping was eliminated when PAE support was added to i386. The direct mapping exists on amd64. Modified: head/sys/amd64

Re: svn commit: r190098 - in head/sys/sparc64: fhc sparc64

2009-03-22 Thread M. Warner Losh
In message: <49c63e34.4030...@gmx.de> Christoph Mallon writes: : M. Warner Losh schrieb: : > In message: <49c5f88c.3070...@freebsd.org> : > Andriy Gapon writes: : > : on 22/03/2009 01:57 M. Warner Losh said the following: : > : > I'll point out that style(9) doesn't say us

svn commit: r190273 - stable/7/usr.sbin/eeprom

2009-03-22 Thread Marius Strobl
Author: marius Date: Sun Mar 22 20:36:26 2009 New Revision: 190273 URL: http://svn.freebsd.org/changeset/base/190273 Log: MFC: 190097 - Sprinkle const. - Remove incorrect __unused. Modified: stable/7/usr.sbin/eeprom/ (props changed) stable/7/usr.sbin/eeprom/ofw_options.c Modified:

svn commit: r190274 - stable/6/usr.sbin/eeprom

2009-03-22 Thread Marius Strobl
Author: marius Date: Sun Mar 22 20:36:37 2009 New Revision: 190274 URL: http://svn.freebsd.org/changeset/base/190274 Log: MFC: 190097 - Sprinkle const. - Remove incorrect __unused. Modified: stable/6/usr.sbin/eeprom/ (props changed) stable/6/usr.sbin/eeprom/ofw_options.c Modified:

svn commit: r190275 - in stable/7/sys: amd64/amd64 amd64/include i386/i386 i386/include

2009-03-22 Thread Alan Cox
Author: alc Date: Sun Mar 22 20:46:37 2009 New Revision: 190275 URL: http://svn.freebsd.org/changeset/base/190275 Log: MFC r188932, r189785, r189795, and r190272 Optimize free_pv_entry(); specifically, avoid repeated TAILQ_REMOVE()s. Update the pmap's resident page count when a page t

svn commit: r190276 - in stable/6/sys: . contrib/pf dev/cxgb sys

2009-03-22 Thread Marius Strobl
Author: marius Date: Sun Mar 22 20:48:05 2009 New Revision: 190276 URL: http://svn.freebsd.org/changeset/base/190276 Log: MFC: r161587 Fix typo in a comment: DEFINE_CLASSx => DEFINE_CLASS_x. Modified: stable/6/sys/ (props changed) stable/6/sys/contrib/pf/ (props changed) stable/6

svn commit: r190277 - in stable/6/sys: . contrib/pf dev/cxgb sys

2009-03-22 Thread Marius Strobl
Author: marius Date: Sun Mar 22 20:49:26 2009 New Revision: 190277 URL: http://svn.freebsd.org/changeset/base/190277 Log: MFC: 188040 Use NULL in preference to 0 for pointers. Modified: stable/6/sys/ (props changed) stable/6/sys/contrib/pf/ (props changed) stable/6/sys/dev/cxgb/

svn commit: r190278 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb sys

2009-03-22 Thread Marius Strobl
Author: marius Date: Sun Mar 22 20:50:45 2009 New Revision: 190278 URL: http://svn.freebsd.org/changeset/base/190278 Log: MFC: 188040 Use NULL in preference to 0 for pointers. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/at

svn commit: r190279 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb sys

2009-03-22 Thread Marius Strobl
Author: marius Date: Sun Mar 22 20:52:43 2009 New Revision: 190279 URL: http://svn.freebsd.org/changeset/base/190279 Log: MFC: r188475 o Introduce KOBJMETHOD_END for the end of the kobj list. o Fix a minor indentation problem. o Put in the extra-strict KOBJMETHOD define, but commented o

svn commit: r190280 - in stable/6/sys: . contrib/pf dev/cxgb sys

2009-03-22 Thread Marius Strobl
Author: marius Date: Sun Mar 22 20:52:44 2009 New Revision: 190280 URL: http://svn.freebsd.org/changeset/base/190280 Log: MFC: r188475 o Introduce KOBJMETHOD_END for the end of the kobj list. o Fix a minor indentation problem. o Put in the extra-strict KOBJMETHOD define, but commented o

svn commit: r190281 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb sparc64/fhc sparc64/sparc64

2009-03-22 Thread Marius Strobl
Author: marius Date: Sun Mar 22 20:54:22 2009 New Revision: 190281 URL: http://svn.freebsd.org/changeset/base/190281 Log: MFC: r190098 - Failing to register as interrupt controller during attach shouldn't be fatal so just inform about this instead of panicing. - Sort device methods.

svn commit: r190282 - head/sys/dev/drm

2009-03-22 Thread Robert Noland
Author: rnoland Date: Sun Mar 22 20:58:29 2009 New Revision: 190282 URL: http://svn.freebsd.org/changeset/base/190282 Log: Fix up the flags to bus_dmamem again. The man page incorrectly showed the BUS_DMA_NOCACHE flags as being a valid flag for load instead of alloc. Discussed with:

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

2009-03-22 Thread Robert Noland
Author: rnoland Date: Sun Mar 22 21:00:58 2009 New Revision: 190283 URL: http://svn.freebsd.org/changeset/base/190283 Log: Correct the documentation to reflect the fact that BUS_DMA_NOCACHE is a flag to bus_dmamem_alloc() rather than bus_dmamap_load(); Discussed with: kib MFC afte

svn commit: r190284 - head/bin/sh

2009-03-22 Thread Stefan Farfeleder
Author: stefanf Date: Sun Mar 22 21:09:22 2009 New Revision: 190284 URL: http://svn.freebsd.org/changeset/base/190284 Log: - Apply the r190270 changes to printing of single aliases too. - Sort the aliases before printing them. Modified: head/bin/sh/alias.c Modified: head/bin/sh/alias.c ===

Re: svn commit: r190283 - head/share/man/man9

2009-03-22 Thread Marius Strobl
On Sun, Mar 22, 2009 at 09:00:58PM +, Robert Noland wrote: > Author: rnoland > Date: Sun Mar 22 21:00:58 2009 > New Revision: 190283 > URL: http://svn.freebsd.org/changeset/base/190283 > > Log: > Correct the documentation to reflect the fact that BUS_DMA_NOCACHE is a > flag to bus_dmamem_a

svn commit: r190285 - head/tools/regression/bin/sh/builtins

2009-03-22 Thread Stefan Farfeleder
Author: stefanf Date: Sun Mar 22 21:12:00 2009 New Revision: 190285 URL: http://svn.freebsd.org/changeset/base/190285 Log: Update test for r190284. Modified: head/tools/regression/bin/sh/builtins/alias.0 head/tools/regression/bin/sh/builtins/alias.0.stdout Modified: head/tools/regression/b

svn commit: r190286 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb sparc64/central sparc64/ebus sparc64/pci sparc64/sbus sparc64/sparc64

2009-03-22 Thread Marius Strobl
Author: marius Date: Sun Mar 22 21:14:33 2009 New Revision: 190286 URL: http://svn.freebsd.org/changeset/base/190286 Log: MFC: r190099 - Sort device methods. - Take advantage of KOBJMETHOD_END. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) sta

svn commit: r190287 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb sparc64/pci sparc64/sparc64

2009-03-22 Thread Marius Strobl
Author: marius Date: Sun Mar 22 21:16:10 2009 New Revision: 190287 URL: http://svn.freebsd.org/changeset/base/190287 Log: MFC: r190101 Take advantage of KOBJMETHOD_END. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/

svn commit: r190288 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb sparc64/sparc64

2009-03-22 Thread Marius Strobl
Author: marius Date: Sun Mar 22 21:17:20 2009 New Revision: 190288 URL: http://svn.freebsd.org/changeset/base/190288 Log: MFC: r190103 Take advantage of KOBJMETHOD_END. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/

svn commit: r190289 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb sparc64/include sparc64/sparc64 sun4v/include sun4v/sun4v

2009-03-22 Thread Marius Strobl
Author: marius Date: Sun Mar 22 21:31:02 2009 New Revision: 190289 URL: http://svn.freebsd.org/changeset/base/190289 Log: MFC: 190107 (partial) - There's no need to wrap kdb_active and kdb_trap() in #ifdef KDB as they're always available. - Remove unused variable. [1] - Add a missin

Re: svn commit: r190098 - in head/sys/sparc64: fhc sparc64

2009-03-22 Thread Tim Kientzle
Julian Elischer wrote: Christoph Mallon wrote: Andriy Gapon schrieb: >> compliants about style (9) > agreement and disagreement. basically almost every single committer who comes into the group usually starts up by objecting to one part or another of the style guide. ... The style guide IS o

svn commit: r190290 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb sparc64/pci

2009-03-22 Thread Marius Strobl
Author: marius Date: Sun Mar 22 21:38:24 2009 New Revision: 190290 URL: http://svn.freebsd.org/changeset/base/190290 Log: MFC: r190109 - Ensure we find no unexpected partner. - Failing to register as interrupt controller during attach shouldn't be fatal so just inform about this inste

svn commit: r190291 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb sparc64/isa

2009-03-22 Thread Marius Strobl
Author: marius Date: Sun Mar 22 22:00:19 2009 New Revision: 190291 URL: http://svn.freebsd.org/changeset/base/190291 Log: MFC: r190111 Add device found in B100. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props

svn commit: r190292 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb sparc64/sbus

2009-03-22 Thread Marius Strobl
Author: marius Date: Sun Mar 22 22:05:22 2009 New Revision: 190292 URL: http://svn.freebsd.org/changeset/base/190292 Log: MFC: r190112 - As suggested by OpenSolaris use up-burst-sizes for determining the supported burst sizes. - Add support for 64-bit burst sizes (required for SBus GE

svn commit: r190293 - in head/sys: cddl/dev/dtnfsclient modules/dtrace modules/dtrace/dtnfsclient modules/dtrace/dtraceall nfsclient sys

2009-03-22 Thread Robert Watson
Author: rwatson Date: Sun Mar 22 22:07:52 2009 New Revision: 190293 URL: http://svn.freebsd.org/changeset/base/190293 Log: Add dtnfsclient, a first cut at an NFSv2/v3 client reuest DTrace provider. The NFS client exposes 'start' and 'done' probes for NFSv2 and NFSv3 RPCs when using the new

svn commit: r190294 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb dev/dc

2009-03-22 Thread Marius Strobl
Author: marius Date: Sun Mar 22 22:08:30 2009 New Revision: 190294 URL: http://svn.freebsd.org/changeset/base/190294 Log: MFC: r190117 - Set MIIF_NOLOOP and don't add IFM_LOOP as loopback apparently isn't supported with these pseudo-PHYs. The MIIF_NOLOOP flag currently triggers noth

svn commit: r190295 - head/bin/sh

2009-03-22 Thread Stefan Farfeleder
Author: stefanf Date: Sun Mar 22 22:09:12 2009 New Revision: 190295 URL: http://svn.freebsd.org/changeset/base/190295 Log: Improve the IFS handling of the read built-in. Obtained from:NetBSD Submitted by: Jilles Tjoelker Modified: head/bin/sh/miscbltin.c Modified: head/bin/sh/

svn commit: r190296 - head/tools/regression/bin/sh/builtins

2009-03-22 Thread Stefan Farfeleder
Author: stefanf Date: Sun Mar 22 22:14:46 2009 New Revision: 190296 URL: http://svn.freebsd.org/changeset/base/190296 Log: Add a few tests for the read built-in. Added: head/tools/regression/bin/sh/builtins/read1.0 (contents, props changed) head/tools/regression/bin/sh/builtins/read1.0.st

Re: svn commit: r190293 - in head/sys: cddl/dev/dtnfsclient modules/dtrace modules/dtrace/dtnfsclient modules/dtrace/dtraceall nfsclient sys

2009-03-22 Thread Robert Watson
On Sun, 22 Mar 2009, Robert Watson wrote: Add dtnfsclient, a first cut at an NFSv2/v3 client reuest DTrace provider. The NFS client exposes 'start' and 'done' probes for NFSv2 and NFSv3 RPCs when using the new RPC implementation, passing in the vnode, mbuf chain, credential, and NFSv2 or NF

svn commit: r190297 - in stable/7/sys: . conf contrib/pf dev/ath/ath_hal dev/cxgb sparc64/pci sparc64/sparc64

2009-03-22 Thread Marius Strobl
Author: marius Date: Sun Mar 22 22:19:54 2009 New Revision: 190297 URL: http://svn.freebsd.org/changeset/base/190297 Log: MFC: r183423, r184428, r185133, r186290, r190108 Add a driver for `Schizo' Fireplane/Safari to PCI 2.1 and `Tomatillo' JBus to PCI 2.2 bridges including subsequent fix

svn commit: r190298 - head/bin/sh

2009-03-22 Thread Stefan Farfeleder
Author: stefanf Date: Sun Mar 22 22:57:53 2009 New Revision: 190298 URL: http://svn.freebsd.org/changeset/base/190298 Log: Fix the behaviour of the read built-in when IFS is unset. Obtained from:NetBSD Modified: head/bin/sh/miscbltin.c Modified: head/bin/sh/miscbltin.c =

svn commit: r190299 - stable/7/sys/kern

2009-03-22 Thread Mike Silbersack
Author: silby Date: Sun Mar 22 23:00:00 2009 New Revision: 190299 URL: http://svn.freebsd.org/changeset/base/190299 Log: Fix unp_gc so that it recognizes file descriptors that are currently in the process of being passed between processes as alive and does not try to garbage collect them.

svn commit: r190300 - head/tools/regression/bin/sh/builtins

2009-03-22 Thread Stefan Farfeleder
Author: stefanf Date: Sun Mar 22 23:00:52 2009 New Revision: 190300 URL: http://svn.freebsd.org/changeset/base/190300 Log: Test the r190298 change. Modified: head/tools/regression/bin/sh/builtins/read1.0 head/tools/regression/bin/sh/builtins/read1.0.stdout Modified: head/tools/regression/b

Re: svn commit: r190299 - stable/7/sys/kern

2009-03-22 Thread Robert Watson
On Sun, 22 Mar 2009, Mike Silbersack wrote: Fix unp_gc so that it recognizes file descriptors that are currently in the process of being passed between processes as alive and does not try to garbage collect them. The full description of the problem and a test program to reproduce it can b

Re: svn commit: r190299 - stable/7/sys/kern

2009-03-22 Thread Mike Silbersack
On Sun, 22 Mar 2009, Robert Watson wrote: On Sun, 22 Mar 2009, Mike Silbersack wrote: Fix unp_gc so that it recognizes file descriptors that are currently in the process of being passed between processes as alive and does not try to garbage collect them. The full description of the prob

svn commit: r190301 - head/sys/kern releng/7.0 releng/7.0/sys/conf releng/7.0/sys/kern releng/7.1 releng/7.1/sys/conf releng/7.1/sys/kern stable/7/sys/kern

2009-03-22 Thread Colin Percival
Author: cperciva Date: Mon Mar 23 00:00:50 2009 New Revision: 190301 URL: http://svn.freebsd.org/changeset/base/190301 Log: Correctly sanity-check timer IDs. [SA-09:06] Limit the size of malloced buffer when dumping environment variables. [EN-09:01] Approved by: so (cperciva) Appr

svn commit: r190301 - head/sys/kern releng/7.0 releng/7.0/sys/conf releng/7.0/sys/kern releng/7.1 releng/7.1/sys/conf releng/7.1/sys/kern stable/7/sys/kern

2009-03-22 Thread Colin Percival
Author: cperciva Date: Mon Mar 23 00:00:50 2009 New Revision: 190301 URL: http://svn.freebsd.org/changeset/base/190301 Log: Correctly sanity-check timer IDs. [SA-09:06] Limit the size of malloced buffer when dumping environment variables. [EN-09:01] Approved by: so (cperciva) Appr

svn commit: r190301 - head/sys/kern releng/7.0 releng/7.0/sys/conf releng/7.0/sys/kern releng/7.1 releng/7.1/sys/conf releng/7.1/sys/kern stable/7/sys/kern

2009-03-22 Thread Colin Percival
Author: cperciva Date: Mon Mar 23 00:00:50 2009 New Revision: 190301 URL: http://svn.freebsd.org/changeset/base/190301 Log: Correctly sanity-check timer IDs. [SA-09:06] Limit the size of malloced buffer when dumping environment variables. [EN-09:01] Approved by: so (cperciva) Appr

svn commit: r190302 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb powerpc/powerpc

2009-03-22 Thread Nathan Whitehorn
Author: nwhitehorn Date: Mon Mar 23 00:15:38 2009 New Revision: 190302 URL: http://svn.freebsd.org/changeset/base/190302 Log: MFC r189675: Change the PVO zone for fictitious pages to the unmanaged PVO zone, to match the unmanaged flag set in the PVO attributes. Without doing this, pmap_

svn commit: r190303 - head/sys/dev/age

2009-03-22 Thread Pyun YongHyeon
Author: yongari Date: Mon Mar 23 00:27:46 2009 New Revision: 190303 URL: http://svn.freebsd.org/changeset/base/190303 Log: Fix inversed logic. pci_find_extcap() returns 0 when it finds specified capability. Modified: head/sys/dev/age/if_age.c Modified: head/sys/dev/age/if_age.c ===

svn commit: r190304 - head/etc/mail

2009-03-22 Thread Gregory Neil Shapiro
Author: gshapiro Date: Mon Mar 23 00:40:07 2009 New Revision: 190304 URL: http://svn.freebsd.org/changeset/base/190304 Log: Add the URL for RFC2142 PR: conf/127510 Modified: head/etc/mail/aliases Modified: head/etc/mail/aliases =

svn commit: r190305 - head/sys/kern

2009-03-22 Thread Alexander Kabaev
Author: kan Date: Mon Mar 23 01:13:34 2009 New Revision: 190305 URL: http://svn.freebsd.org/changeset/base/190305 Log: Add safety check that does not allow empty strings to be queued to the devctl notification queue. Empty strings cause devctl read call to return 0 and result in devd exiting

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

2009-03-22 Thread Alexander Kabaev
Author: kan Date: Mon Mar 23 01:24:17 2009 New Revision: 190306 URL: http://svn.freebsd.org/changeset/base/190306 Log: Do not pass uninitialized data buffer to devctl_queue_data function. This was botched in revision 190191. Modified: head/sys/dev/usb/usb_device.c Modified: head/sys/dev/us

svn commit: r190307 - stable/7/sys/net

2009-03-22 Thread Sean Farley
Author: scf Date: Mon Mar 23 03:03:44 2009 New Revision: 190307 URL: http://svn.freebsd.org/changeset/base/190307 Log: Merge r189866 from head to stable/7: Add the SIOCSIFMTU ioctl handling directly to tap(4) permitting it to have its MTU set higher than 1500 (ETHERMTU). Its new limi

svn commit: r190308 - stable/7/share/zoneinfo

2009-03-22 Thread Edwin Groothuis
Author: edwin Date: Mon Mar 23 03:26:01 2009 New Revision: 190308 URL: http://svn.freebsd.org/changeset/base/190308 Log: MFC of ... r187524: Latest bulletin C from Daniel GAMBIS: no leap at the end of june 2009. r188436: MFV of tzdata2009b. - Updated leapseconds r189923: M

svn commit: r190309 - stable/6/share/zoneinfo

2009-03-22 Thread Edwin Groothuis
Author: edwin Date: Mon Mar 23 03:26:03 2009 New Revision: 190309 URL: http://svn.freebsd.org/changeset/base/190309 Log: MFC of ... r187524: Latest bulletin C from Daniel GAMBIS: no leap at the end of june 2009. r188436: MFV of tzdata2009b. - Updated leapseconds r189923: M

svn commit: r190310 - stable/7/sys/dev/usb

2009-03-22 Thread Andrew Thompson
Author: thompsa Date: Mon Mar 23 04:06:21 2009 New Revision: 190310 URL: http://svn.freebsd.org/changeset/base/190310 Log: Sync usbdevs to HEAD, keeping name compat. Modified: stable/7/sys/dev/usb/usbdevs Modified: stable/7/sys/dev/usb/usbdevs

svn commit: r190311 - stable/7/sys/dev/usb

2009-03-22 Thread Andrew Thompson
Author: thompsa Date: Mon Mar 23 04:07:46 2009 New Revision: 190311 URL: http://svn.freebsd.org/changeset/base/190311 Log: Sync umass quirks to HEAD. Modified: stable/7/sys/dev/usb/umass.c Modified: stable/7/sys/dev/usb/umass.c

svn commit: r190312 - in stable/7/etc: . mail periodic/weekly

2009-03-22 Thread Gregory Neil Shapiro
Author: gshapiro Date: Mon Mar 23 04:54:52 2009 New Revision: 190312 URL: http://svn.freebsd.org/changeset/base/190312 Log: MFC r190304: Add the URL for RFC2142 PR: conf/127510 Modified: stable/7/etc/ (props changed) stable/7/etc/mail/aliases stable/7/etc/periodic/weekly/

svn commit: r190313 - in stable/6/etc: . mail

2009-03-22 Thread Gregory Neil Shapiro
Author: gshapiro Date: Mon Mar 23 04:56:33 2009 New Revision: 190313 URL: http://svn.freebsd.org/changeset/base/190313 Log: MFC r190304: Add the URL for RFC2142 PR: conf/127510 Modified: stable/6/etc/ (props changed) stable/6/etc/mail/aliases Modified: stable/6/etc/mail/al

svn commit: r190314 - head/sys/dev/msk

2009-03-22 Thread Pyun YongHyeon
Author: yongari Date: Mon Mar 23 05:46:28 2009 New Revision: 190314 URL: http://svn.freebsd.org/changeset/base/190314 Log: Togging ALLMULTI does not require controller reset so have Rx filtering handle this. Introduce a new function msk_rxfilter that handles Rx filter configuration and multi