svn commit: r239938 - head/usr.sbin/ac

2012-08-31 Thread Ed Schouten
Author: ed Date: Fri Aug 31 08:48:53 2012 New Revision: 239938 URL: http://svn.freebsd.org/changeset/base/239938 Log: Use better variable naming. MFC after:1 month Modified: head/usr.sbin/ac/ac.c Modified: head/usr.sbin/ac/ac.c

svn commit: r239939 - head/sys/dev/amr

2012-08-31 Thread Scott Long
Author: scottl Date: Fri Aug 31 09:42:46 2012 New Revision: 239939 URL: http://svn.freebsd.org/changeset/base/239939 Log: Essentially revert r239912. The amr_periodic function hadn't been armed in over 10 years and was dead code; the previous revision exposed it as such to CLANG. The

svn commit: r239940 - head/sys/dev/ixgbe

2012-08-31 Thread Scott Long
Author: scottl Date: Fri Aug 31 10:07:38 2012 New Revision: 239940 URL: http://svn.freebsd.org/changeset/base/239940 Log: Heavily optimize the case of small RX packets of 160 bytes or less. For this case, allocate a plain mbuf and copy the frame into it, then send the copy up the stack,

Re: svn commit: r239940 - head/sys/dev/ixgbe

2012-08-31 Thread Gleb Smirnoff
Scott, On Fri, Aug 31, 2012 at 10:07:38AM +, Scott Long wrote: S +/* S + * Optimized bcopy thanks to Luigi Rizzo's investigative work. Assumes S + * non-overlapping regions and 32-byte padding on both src and dst. S + */ S +static __inline int S +ixgbe_bcopy(void *_src, void *_dst, int l)

svn commit: r239941 - in head/sys/sparc64: include pci sparc64

2012-08-31 Thread Marius Strobl
Author: marius Date: Fri Aug 31 11:15:01 2012 New Revision: 239941 URL: http://svn.freebsd.org/changeset/base/239941 Log: Add a global MD macro for the VIS block size instead of duplicating it and using magic values all over the place. MFC after:1 week Modified:

svn commit: r239951 - head/bin/mv

2012-08-31 Thread John Baldwin
Author: jhb Date: Fri Aug 31 14:35:01 2012 New Revision: 239951 URL: http://svn.freebsd.org/changeset/base/239951 Log: Add a -h flag similar to the -h flag for ln to force mv(1) to treat a symbolic link to a directory for the target as a symbolic link instead of a directory. This makes it

svn commit: r239953 - head/cddl/contrib/opensolaris/cmd/zpool

2012-08-31 Thread Joel Dahl
Author: joel (doc committer) Date: Fri Aug 31 17:18:41 2012 New Revision: 239953 URL: http://svn.freebsd.org/changeset/base/239953 Log: Mdoc fixes. Modified: head/cddl/contrib/opensolaris/cmd/zpool/zpool-features.5 head/cddl/contrib/opensolaris/cmd/zpool/zpool.8 Modified:

svn commit: r239954 - head/usr.sbin/ac

2012-08-31 Thread Ed Schouten
Author: ed Date: Fri Aug 31 18:26:39 2012 New Revision: 239954 URL: http://svn.freebsd.org/changeset/base/239954 Log: Relicense ac(8). Though the license of the original ac(8) source code provides many liberties, we are already somewhat violating it. The license requires us to clearly

svn commit: r239956 - head/sys/conf

2012-08-31 Thread John Baldwin
Author: jhb Date: Fri Aug 31 21:10:38 2012 New Revision: 239956 URL: http://svn.freebsd.org/changeset/base/239956 Log: The implied source variable (.IMPSRC) didn't actually work in my previous commit. Change this to use .ALLSRC instead, but be careful to only use the .fw file for

Re: svn commit: r239956 - head/sys/conf

2012-08-31 Thread John Baldwin
On Friday, August 31, 2012 5:10:38 pm John Baldwin wrote: Author: jhb Date: Fri Aug 31 21:10:38 2012 New Revision: 239956 URL: http://svn.freebsd.org/changeset/base/239956 Log: The implied source variable (.IMPSRC) didn't actually work in my previous commit. Change this to use

svn commit: r239957 - head/sys/conf

2012-08-31 Thread John Baldwin
Author: jhb Date: Fri Aug 31 21:27:23 2012 New Revision: 239957 URL: http://svn.freebsd.org/changeset/base/239957 Log: Similar to how r171350 fixed linking of kernel modules containing firmware objects by adding --no-warn-mismatch to the linker flags, add --no-warn-mismatch when linking

svn commit: r239958 - head/cddl/contrib/opensolaris/cmd/zdb

2012-08-31 Thread Joel Dahl
Author: joel (doc committer) Date: Fri Aug 31 21:44:12 2012 New Revision: 239958 URL: http://svn.freebsd.org/changeset/base/239958 Log: Minor mdoc fixes. Modified: head/cddl/contrib/opensolaris/cmd/zdb/zdb.8 Modified: head/cddl/contrib/opensolaris/cmd/zdb/zdb.8

svn commit: r239959 - in head/sys: conf modules/xfs

2012-08-31 Thread Dimitry Andric
Author: dim Date: Fri Aug 31 21:45:49 2012 New Revision: 239959 URL: http://svn.freebsd.org/changeset/base/239959 Log: Work around several warnings from clang in the xfs filesystem, when linking it statically into the kernel. With our gcc in base there are no warnings, so also remove the

Re: svn commit: r239927 - head/tools/tools/track

2012-08-31 Thread Dag-Erling Smørgrav
Doug Barton do...@freebsd.org writes: Dag-Erling Smørgrav d...@freebsd.org writes: - \*\*\*\ Error*) + \*\*\**) Are you sure that the double ** is necessary here? Yes, error messages generally include text in addition to the initial three asterisks. DES -- Dag-Erling Smørgrav -

svn commit: r239960 - head/include

2012-08-31 Thread Ed Schouten
Author: ed Date: Fri Aug 31 22:22:14 2012 New Revision: 239960 URL: http://svn.freebsd.org/changeset/base/239960 Log: Properly enable Clang-style atomics when available. In addition to testing against cxx_atomic, we must check c_atomic. The former is only set when building C++ code. Also

svn commit: r239961 - head/usr.sbin/ac

2012-08-31 Thread Ed Schouten
Author: ed Date: Fri Aug 31 22:37:08 2012 New Revision: 239961 URL: http://svn.freebsd.org/changeset/base/239961 Log: Also relicense the ac(8) man page. MFC after:1 month Discussed with: Simon Gerraty and Chris Demetriou Modified: head/usr.sbin/ac/ac.8 Modified:

Re: svn commit: r239962 - head/contrib/binutils/binutils

2012-08-31 Thread Garrett Cooper
On Fri, Aug 31, 2012 at 4:28 PM, Dimitry Andric d...@freebsd.org wrote: Author: dim Date: Fri Aug 31 23:28:41 2012 New Revision: 239962 URL: http://svn.freebsd.org/changeset/base/239962 Log: Fix a twelve year old bug in readelf: when process_dynamic_segment() encounters a DT_RUNPATH

svn commit: r239963 - in head: include/rpc lib/libc/rpc sys/rpc

2012-08-31 Thread Pedro F. Giffuni
Author: pfg Date: Sat Sep 1 02:56:17 2012 New Revision: 239963 URL: http://svn.freebsd.org/changeset/base/239963 Log: Bring some changes from Bull's NFSv4 libtirpc implementation. We especifically ignored the glibc compatibility changes but this should help interaction with Solaris and

svn commit: r239964 - in head/sys/mips: include mips

2012-08-31 Thread Alan Cox
Author: alc Date: Sat Sep 1 03:46:28 2012 New Revision: 239964 URL: http://svn.freebsd.org/changeset/base/239964 Log: Introduce a new software PTE flag that indicates whether the mapping is for a managed page. Tested by:jchandra Modified: head/sys/mips/include/pmap.h

svn commit: r239966 - head/sys/dev/ath/ath_hal/ar5212

2012-08-31 Thread Adrian Chadd
Author: adrian Date: Sat Sep 1 05:43:30 2012 New Revision: 239966 URL: http://svn.freebsd.org/changeset/base/239966 Log: Fix the PHY / CRC error bug in the AR5212 HAL, which apparently also pops up on (at least) the AR5413. The 30 second summary - if a CRC error frame comes in during