svn commit: r249000 - head/sys/dev/ath

2013-04-01 Thread Adrian Chadd
Author: adrian Date: Tue Apr 2 06:25:10 2013 New Revision: 249000 URL: http://svnweb.freebsd.org/changeset/base/249000 Log: Mark a couple of places where I think the dmamap isn't being unmapped before the TX path is being aborted. Right now it's in the TDMA code and I can live with that;

svn commit: r248999 - head/sys/dev/ath

2013-04-01 Thread Adrian Chadd
Author: adrian Date: Tue Apr 2 06:24:22 2013 New Revision: 248999 URL: http://svnweb.freebsd.org/changeset/base/248999 Log: Some TX dmamap cleanups. * Don't use BUS_DMA_ALLOCNOW for descriptor DMA maps; we never use bounce buffers for the descriptors themselves. * Add some XXX's t

svn commit: r248998 - head/sys/dev/ath

2013-04-01 Thread Adrian Chadd
Author: adrian Date: Tue Apr 2 06:21:37 2013 New Revision: 248998 URL: http://svnweb.freebsd.org/changeset/base/248998 Log: Add a missing unmap; if we're freeing this mbuf then we must really both sync/unmap the dmamap before freeing it. Modified: head/sys/dev/ath/if_ath_rx.c Modified: he

svn commit: r248997 - head/sys/conf

2013-04-01 Thread Kevin Lo
Author: kevlo Date: Tue Apr 2 05:57:36 2013 New Revision: 248997 URL: http://svnweb.freebsd.org/changeset/base/248997 Log: Add VIMAGE to NOTES. Reviewed by: zec Modified: head/sys/conf/NOTES Modified: head/sys/conf/NOTES

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

2013-04-01 Thread Matthew D Fleming
Author: mdf Date: Tue Apr 2 05:30:52 2013 New Revision: 248996 URL: http://svnweb.freebsd.org/changeset/base/248996 Log: Regen. MFC after:1 week Modified: head/sys/compat/freebsd32/freebsd32_proto.h head/sys/compat/freebsd32/freebsd32_syscall.h head/sys/compat/freebsd32/freebsd3

svn commit: r248995 - in head: contrib/libarchive/libarchive contrib/libarchive/libarchive/test lib/libc/sys sys/compat/freebsd32 sys/kern sys/sys usr.sbin/extattr

2013-04-01 Thread Matthew D Fleming
Author: mdf Date: Tue Apr 2 05:30:41 2013 New Revision: 248995 URL: http://svnweb.freebsd.org/changeset/base/248995 Log: Fix return type of extattr_set_* and fix rmextattr(8) utility. extattr_set_{fd,file,link} is logically a write(2)-like operation and should return ssize_t, just like e

svn commit: r248993 - head/sys/dev/bge

2013-04-01 Thread Pyun YongHyeon
Author: yongari Date: Tue Apr 2 00:57:54 2013 New Revision: 248993 URL: http://svnweb.freebsd.org/changeset/base/248993 Log: Fix a typo. Reported by: David Imhoff via brad@OpenBSD Tested by:hrs Reviewed by: davidch Modified: head/sys/dev/bge/if_bge.c Modified: head/sys/dev/bg

svn commit: r248992 - head/sys/cam/scsi

2013-04-01 Thread Steven Hartland
Author: smh Date: Tue Apr 2 00:11:35 2013 New Revision: 248992 URL: http://svnweb.freebsd.org/changeset/base/248992 Log: Added ATA Pass-Through support to CAM sys/cam/scsi/scsi_all.c: - Added scsi_ata_pass_16 method Which use ATA Pass-Through to send commands to the a

Re: svn commit: r248983 - in head: cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt sys/cddl/contrib/opensolaris/uts/common/dtrace sys/cddl

2013-04-01 Thread Pedro Giffuni
> Da: Andriy Gapon > >on 01/04/2013 22:13 Pedro F. Giffuni said the following: >> Dtrace: enablings on defunct providers prevent providers from unregistering > >Unfortunately, we have some much larger problems in this area of the FreeBSD >port. > It does help to be in sync with illumos though.

svn commit: r248991 - head/cddl/contrib/opensolaris/tools/ctf/cvt

2013-04-01 Thread Dimitry Andric
Author: dim Date: Mon Apr 1 21:16:32 2013 New Revision: 248991 URL: http://svnweb.freebsd.org/changeset/base/248991 Log: Follow up to r247960 and rr247960 by also amending ctfmerge. For the only other case where STT_FILE symbols are used, in symit_next() in cddl/contrib/opensolaris/tools/c

svn commit: r248988 - head/sys/dev/ath

2013-04-01 Thread Adrian Chadd
Author: adrian Date: Mon Apr 1 20:57:13 2013 New Revision: 248988 URL: http://svnweb.freebsd.org/changeset/base/248988 Log: Ensure that we only call the busdma unmap/flush routines once, when the buffer is being freed. * When buffers are cloned, the original mapping isn't copied but it

svn commit: r248987 - in head: lib/libc/gen tools/regression/lib/libc/gen

2013-04-01 Thread Jilles Tjoelker
Author: jilles Date: Mon Apr 1 20:50:07 2013 New Revision: 248987 URL: http://svnweb.freebsd.org/changeset/base/248987 Log: wordexp(): Remove wrong IFS usage. Words in shell script are separated by spaces or tabs independent of the value of IFS. The value of IFS is only relevant for the

Re: svn commit: r247962 - head/cddl/contrib/opensolaris/tools/ctf/cvt

2013-04-01 Thread Andriy Gapon
on 01/04/2013 23:38 Jim Harris said the following: > > > > On Mon, Apr 1, 2013 at 11:04 AM, Dimitry Andric > wrote: > > On Apr 1, 2013, at 08:07, Andriy Gapon > wrote: > > on 08/03/2013 00:43 Dimitry Andric said the following: >

svn commit: r248986 - head/sys/dev/ath

2013-04-01 Thread Adrian Chadd
Author: adrian Date: Mon Apr 1 20:44:21 2013 New Revision: 248986 URL: http://svnweb.freebsd.org/changeset/base/248986 Log: Remove an un-needed comment. Modified: head/sys/dev/ath/if_ath.c Modified: head/sys/dev/ath/if_ath.c ==

Re: svn commit: r247962 - head/cddl/contrib/opensolaris/tools/ctf/cvt

2013-04-01 Thread Jim Harris
On Mon, Apr 1, 2013 at 11:04 AM, Dimitry Andric wrote: > On Apr 1, 2013, at 08:07, Andriy Gapon wrote: > > on 08/03/2013 00:43 Dimitry Andric said the following: > >> Author: dim > >> Date: Thu Mar 7 22:43:50 2013 > >> New Revision: 247962 > >> URL: http://svnweb.freebsd.org/changeset/base/2479

Re: svn commit: r248983 - in head: cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt sys/cddl/contrib/opensolaris/uts/common/dtrace sys/cddl

2013-04-01 Thread Andriy Gapon
on 01/04/2013 22:13 Pedro F. Giffuni said the following: > Dtrace: enablings on defunct providers prevent providers from unregistering Unfortunately, we have some much larger problems in this area of the FreeBSD port. -- Andriy Gapon ___ svn-src-head@

svn commit: r248985 - head/sys/dev/ath

2013-04-01 Thread Adrian Chadd
Author: adrian Date: Mon Apr 1 20:12:21 2013 New Revision: 248985 URL: http://svnweb.freebsd.org/changeset/base/248985 Log: Use ATH_MAX_SCATTER rather than ATH_TXDESC. ATH_MAX_SCATTER is used to size the ath_buf DMA segment array. We thus should use it when checking sizes of things. Mod

svn commit: r248984 - head/sys/dev/ath

2013-04-01 Thread Adrian Chadd
Author: adrian Date: Mon Apr 1 20:11:19 2013 New Revision: 248984 URL: http://svnweb.freebsd.org/changeset/base/248984 Log: Only unmap the RX mbuf DMA map if there's a buffer here. The normal RX path (ath_rx_pkt()) will sync and unmap the buffer before passing it up the stack. We only n

svn commit: r248983 - in head: cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt sys/cddl/contrib/opensolaris/uts/common/dtrace sys/cddl/...

2013-04-01 Thread Pedro F. Giffuni
Author: pfg Date: Mon Apr 1 19:13:46 2013 New Revision: 248983 URL: http://svnweb.freebsd.org/changeset/base/248983 Log: Dtrace: enablings on defunct providers prevent providers from unregistering Merge change from illumos: 1368 enablings on defunct providers prevent providers from un

Re: svn commit: r248751 - head/share/mk

2013-04-01 Thread John Baldwin
On Monday, April 01, 2013 1:17:48 pm Ed Maste wrote: > On 1 April 2013 12:34, Chris Rees wrote: > > On 1 April 2013 17:17, John Baldwin wrote: > >> On Tuesday, March 26, 2013 4:11:10 pm Ed Maste wrote: > >>> Author: emaste > >>> Date: Tue Mar 26 20:11:09 2013 > >>> New Revision: 248751 > >>> URL:

Re: svn commit: r247962 - head/cddl/contrib/opensolaris/tools/ctf/cvt

2013-04-01 Thread Dimitry Andric
On Apr 1, 2013, at 08:07, Andriy Gapon wrote: > on 08/03/2013 00:43 Dimitry Andric said the following: >> Author: dim >> Date: Thu Mar 7 22:43:50 2013 >> New Revision: 247962 >> URL: http://svnweb.freebsd.org/changeset/base/247962 >> >> Log: >> Fix error in r247960: actually assign the basename

svn commit: r248980 - head/bin/sh

2013-04-01 Thread Jilles Tjoelker
Author: jilles Date: Mon Apr 1 17:18:22 2013 New Revision: 248980 URL: http://svnweb.freebsd.org/changeset/base/248980 Log: sh: Fix various compiler warnings. It now passes WARNS=7 with clang on i386. GCC 4.2.1 does not understand setjmp() properly so will always trigger -Wuninitial

Re: svn commit: r248751 - head/share/mk

2013-04-01 Thread Ed Maste
On 1 April 2013 12:34, Chris Rees wrote: > On 1 April 2013 17:17, John Baldwin wrote: >> On Tuesday, March 26, 2013 4:11:10 pm Ed Maste wrote: >>> Author: emaste >>> Date: Tue Mar 26 20:11:09 2013 >>> New Revision: 248751 >>> URL: http://svnweb.freebsd.org/changeset/base/248751 >>> >>> Log: >>>

svn commit: r248979 - head/etc/mtree

2013-04-01 Thread Ed Maste
Author: emaste Date: Mon Apr 1 17:15:04 2013 New Revision: 248979 URL: http://svnweb.freebsd.org/changeset/base/248979 Log: Format per etc/mtree/README - Spaces instead of tabs - Sort some i18n entries Modified: head/etc/mtree/BSD.usr.dist Modified: head/etc/mtree/BSD.usr.dist ==

Re: svn commit: r248751 - head/share/mk

2013-04-01 Thread Chris Rees
On 1 April 2013 17:17, John Baldwin wrote: > On Tuesday, March 26, 2013 4:11:10 pm Ed Maste wrote: >> Author: emaste >> Date: Tue Mar 26 20:11:09 2013 >> New Revision: 248751 >> URL: http://svnweb.freebsd.org/changeset/base/248751 >> >> Log: >> Unconditionally include ${SRCCONF} if overridden >>

Re: svn commit: r248836 - head/gnu/usr.bin/gdb/kgdb

2013-04-01 Thread John Baldwin
On Thursday, March 28, 2013 1:04:59 pm Will Andrews wrote: > Author: will > Date: Thu Mar 28 17:04:59 2013 > New Revision: 248836 > URL: http://svnweb.freebsd.org/changeset/base/248836 > > Log: > KGDB: Allow modules to be loaded from the specified kernel's directory. > > When looking up the

Re: svn commit: r248751 - head/share/mk

2013-04-01 Thread John Baldwin
On Tuesday, March 26, 2013 4:11:10 pm Ed Maste wrote: > Author: emaste > Date: Tue Mar 26 20:11:09 2013 > New Revision: 248751 > URL: http://svnweb.freebsd.org/changeset/base/248751 > > Log: > Unconditionally include ${SRCCONF} if overridden > > This avoids silently failing to include ${SRC

Re: svn commit: r248682 - head

2013-04-01 Thread John Baldwin
On Sunday, March 24, 2013 8:39:26 am Antoine Brodin wrote: > Author: antoine > Date: Sun Mar 24 12:39:26 2013 > New Revision: 248682 > URL: http://svnweb.freebsd.org/changeset/base/248682 > > Log: > Add 2 more obsolete files and a missing date. > > Modified: > head/ObsoleteFiles.inc > > Modi

Re: svn commit: r248705 - head/sys/dev/ipmi

2013-04-01 Thread John Baldwin
On Monday, March 25, 2013 10:30:34 am Alexander V. Chernikov wrote: > Author: melifaro > Date: Mon Mar 25 14:30:34 2013 > New Revision: 248705 > URL: http://svnweb.freebsd.org/changeset/base/248705 > > Log: > Unlock IPMI sc while performing requests via KCS and SMIC interfaces. > It is already

svn commit: r248977 - in head/sys/dev: nvd nvme

2013-04-01 Thread Jim Harris
Author: jimharris Date: Mon Apr 1 16:23:34 2013 New Revision: 248977 URL: http://svnweb.freebsd.org/changeset/base/248977 Log: Add unmapped bio support to nvme(4) and nvd(4). Sponsored by: Intel Modified: head/sys/dev/nvd/nvd.c head/sys/dev/nvme/nvme.h head/sys/dev/nvme/nvme_ns.c

svn commit: r248976 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2013-04-01 Thread Martin Matuska
Author: mm Date: Mon Apr 1 16:14:57 2013 New Revision: 248976 URL: http://svnweb.freebsd.org/changeset/base/248976 Log: Call dmu_snapshot_list_next() in zvol.c with dsl_pool_config lock held Submitted by: Andriy Gapon MFC after:17 days Modified: head/sys/cddl/contrib/opensolaris/

svn commit: r248975 - head/crypto/openssh

2013-04-01 Thread Dag-Erling Smørgrav
Author: des Date: Mon Apr 1 13:48:30 2013 New Revision: 248975 URL: http://svnweb.freebsd.org/changeset/base/248975 Log: Silence warnings about redefined macros. Modified: head/crypto/openssh/umac128.c Modified: head/crypto/openssh/umac128.c =

svn commit: r248973 - head/sys/dev/tws

2013-04-01 Thread Alexander Motin
Author: mav Date: Mon Apr 1 13:18:34 2013 New Revision: 248973 URL: http://svnweb.freebsd.org/changeset/base/248973 Log: Slightly tune locking to not call xpt_alloc_ccb() that is allowed to sleep while holding the SIM mutex. Modified: head/sys/dev/tws/tws_cam.c head/sys/dev/tws/tws_user.

svn commit: r248972 - head/bin/setfacl

2013-04-01 Thread Edward Tomasz Napierala
Author: trasz Date: Mon Apr 1 13:17:28 2013 New Revision: 248972 URL: http://svnweb.freebsd.org/changeset/base/248972 Log: Mention that read_attributes, write_attributes, read_acl and write_acl are always permitted for the file owner. PR: kern/174948 MFC after:1 week Mod

Re: svn commit: r248552 - in head: sbin/ipfw sys/netinet sys/netpfil/ipfw

2013-04-01 Thread Alexander V. Chernikov
On 01.04.2013 00:50, Andriy Gapon wrote: > on 20/03/2013 12:35 Alexander V. Chernikov said the following: >> Author: melifaro >> Date: Wed Mar 20 10:35:33 2013 >> New Revision: 248552 >> URL: http://svnweb.freebsd.org/changeset/base/248552 >> >> Log: >> Add ipfw support for setting/matching DiffS

svn commit: r248971 - head/sys/netpfil/ipfw

2013-04-01 Thread Alexander V. Chernikov
Author: melifaro Date: Mon Apr 1 11:28:52 2013 New Revision: 248971 URL: http://svnweb.freebsd.org/changeset/base/248971 Log: Fix ipfw rule validation partially broken by r248552. Pointed by: avg MFC with: r248552 Modified: head/sys/netpfil/ipfw/ip_fw_sockopt.c Modified: head/s

svn commit: r248969 - head/sys/kern

2013-04-01 Thread Konstantin Belousov
Author: kib Date: Mon Apr 1 09:59:38 2013 New Revision: 248969 URL: http://svnweb.freebsd.org/changeset/base/248969 Log: Do not call the VOP_LOOKUP() for the doomed directory vnode. The vnode could be reclaimed while lock upgrade was performed. Sponsored by: The FreeBSD Foundation Rep

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

2013-04-01 Thread Konstantin Belousov
Author: kib Date: Mon Apr 1 09:57:46 2013 New Revision: 248968 URL: http://svnweb.freebsd.org/changeset/base/248968 Log: Record the correct error in the trace. Sponsored by: The FreeBSD Foundation MFC after:3 days Modified: head/sys/x86/x86/busdma_machdep.c Modified: head/sys/x86

svn commit: r248967 - head/sys/fs/nfsclient

2013-04-01 Thread Konstantin Belousov
Author: kib Date: Mon Apr 1 09:56:48 2013 New Revision: 248967 URL: http://svnweb.freebsd.org/changeset/base/248967 Log: Strip the unnneeded spaces, mostly at the end of lines. MFC after:3 days Modified: head/sys/fs/nfsclient/nfs_clbio.c Modified: head/sys/fs/nfsclient/nfs_clbio.c

Re: svn commit: r246713 - in head/sys: arm/arm cam cam/ctl cam/scsi conf dev/aac dev/advansys dev/aha dev/ahb dev/ahci dev/aic dev/aic7xxx dev/amr dev/arcmsr dev/ata dev/buslogic dev/ciss dev/dpt dev/

2013-04-01 Thread Konstantin Belousov
On Sun, Mar 31, 2013 at 06:20:17PM -0600, Ian Lepore wrote: > On Tue, 2013-02-12 at 16:57 +, Konstantin Belousov wrote: > > Author: kib > > Date: Tue Feb 12 16:57:20 2013 > > New Revision: 246713 > > URL: http://svnweb.freebsd.org/changeset/base/246713 > > > > Log: > > Reform the busdma API

Re: svn commit: r248571 - in head: . cddl/contrib/opensolaris/cmd/zdb cddl/contrib/opensolaris/cmd/zfs cddl/contrib/opensolaris/cmd/zhack cddl/contrib/opensolaris/cmd/zpool cddl/contrib/opensolaris/cm

2013-04-01 Thread Jaakko Heinonen
Hi, On 2013-03-21, Martin Matuska wrote: > Merge libzfs_core branch: > includes MFV 238590, 238592, 247580 I am getting the following error after this commit: # zpool list failed to read pool configuration: bad address no pools available # zfs list failed to read pool configuration: bad a