svn commit: r221944 - head/sys/dev/ath/ath_hal/ar5416

2011-05-15 Thread Adrian Chadd
Author: adrian Date: Sun May 15 07:59:33 2011 New Revision: 221944 URL: http://svn.freebsd.org/changeset/base/221944 Log: Fix NF calibration breakage introduced by me in a past commit. Since the returned NF will be -ve, checking for = 0 is not good enough. For now, check whether it

svn commit: r221945 - head/sys/dev/iwn

2011-05-15 Thread Bernhard Schmidt
Author: bschmidt Date: Sun May 15 08:09:36 2011 New Revision: 221945 URL: http://svn.freebsd.org/changeset/base/221945 Log: Only update the scheduler's byte count table for aggregation queues. The other queues, especially the command queue, uses the FIFO mode which doesn't require the byte

Re: svn commit: r221703 - in head/sys: amd64/include i386/include x86/isa x86/x86

2011-05-15 Thread Andriy Gapon
on 13/05/2011 19:57 Jung-uk Kim said the following: You guys keep saying some code derived from OpenSolaris exists to sync. TSCs. Can you let me see it, pretty please? I don't know what else to say. :-( http://people.freebsd.org/~avg/tsc/ I think I've posted this before. -- Andriy Gapon

Re: svn commit: r221703 - in head/sys: amd64/include i386/include x86/isa x86/x86

2011-05-15 Thread Andriy Gapon
on 13/05/2011 22:14 Bruce Evans said the following: It might happen for clock_gettime() in separate threads where the threads somehow know and depend on the order of the calls. My simplistic world view is that those threads then should be the place to do all the fence dances, not the generic

Re: svn commit: r221850 - head/tools/tools/nanobsd

2011-05-15 Thread Henrik Brix Andersen
On May 13, 2011, at 20:28, Warner Losh wrote: Author: imp Date: Fri May 13 18:28:25 2011 New Revision: 221850 URL: http://svn.freebsd.org/changeset/base/221850 Log: Copy symbolic links as files rather than recreating the links. PR: misc/151697 Submitted by:lev@

Re: svn commit: r221913 - head/sys/dev/mii

2011-05-15 Thread Marius Strobl
On Sun, May 15, 2011 at 02:35:37PM +1000, Bruce Evans wrote: On Sat, 14 May 2011, Marius Strobl wrote: Log: - There's no need for nibbletab to be static, it's const however. - Fix whitespace. There is every reason for it to be static. Modified: head/sys/dev/mii/mii.c

svn commit: r221952 - head/sbin/geom/class/part

2011-05-15 Thread Andrey V. Elsukov
Author: ae Date: Sun May 15 11:45:13 2011 New Revision: 221952 URL: http://svn.freebsd.org/changeset/base/221952 Log: Simplify the code a bit. For own providers GEOM_PART always provides start and end config attributes. MFC after:1 week Modified:

svn commit: r221953 - head/sys/geom/eli

2011-05-15 Thread Mikolaj Golub
Author: trociny Date: Sun May 15 12:39:30 2011 New Revision: 221953 URL: http://svn.freebsd.org/changeset/base/221953 Log: Fix a memory leak possible in g_eli_key_allocate() if the key with the same keyno is added while we aren't holding the lock. Approved by: pjd (mentor) MFC after:

svn commit: r221954 - head/sbin/ifconfig

2011-05-15 Thread Marius Strobl
Author: marius Date: Sun May 15 12:51:00 2011 New Revision: 221954 URL: http://svn.freebsd.org/changeset/base/221954 Log: When setting media always and not just in case of switching to IFM_AUTO clear the options of the current media, i.e. only inherit the instance, which matches what NetBSD

svn commit: r221955 - head/sys/net

2011-05-15 Thread Marius Strobl
Author: marius Date: Sun May 15 12:58:29 2011 New Revision: 221955 URL: http://svn.freebsd.org/changeset/base/221955 Log: - Add 10baseT as an alias for 10baseT/UTP. - Add shorthand aliases for common media+option combinations as announced by miibus(4) so that one can actually supply the

svn commit: r221957 - head/sys/dev/mk48txx

2011-05-15 Thread Marius Strobl
Author: marius Date: Sun May 15 13:17:08 2011 New Revision: 221957 URL: http://svn.freebsd.org/changeset/base/221957 Log: Add support for MK48T37. Modified: head/sys/dev/mk48txx/mk48txx.c head/sys/dev/mk48txx/mk48txxreg.h Modified: head/sys/dev/mk48txx/mk48txx.c

svn commit: r221958 - head/sys/sparc64/sparc64

2011-05-15 Thread Marius Strobl
Author: marius Date: Sun May 15 13:25:26 2011 New Revision: 221958 URL: http://svn.freebsd.org/changeset/base/221958 Log: Recognize the eeprom device found in Fujitsu PRIMEPOWER650 and 900. Modified: head/sys/sparc64/sparc64/eeprom.c Modified: head/sys/sparc64/sparc64/eeprom.c

svn commit: r221960 - in head/sys/dev: scc uart

2011-05-15 Thread Marius Strobl
Author: marius Date: Sun May 15 13:27:38 2011 New Revision: 221960 URL: http://svn.freebsd.org/changeset/base/221960 Log: Recognize the SAB 82532 found in Fujitsu PRIMEPOWER650 and 900. Modified: head/sys/dev/scc/scc_bfe_ebus.c head/sys/dev/uart/uart_cpu_sparc64.c Modified:

svn commit: r221961 - in head: share/man/man4/man4.i386 sys/conf sys/dev/glxiic sys/i386/conf sys/modules sys/modules/glxiic

2011-05-15 Thread Henrik Brix Andersen
Author: brix (ports committer) Date: Sun May 15 14:01:23 2011 New Revision: 221961 URL: http://svn.freebsd.org/changeset/base/221961 Log: Add I2C bus driver for the AMD Geode LX series CS5536 Companion Device. Reviewed by:jhb (newbus bits only), adrian Added:

Re: svn commit: r221913 - head/sys/dev/mii

2011-05-15 Thread Bruce Evans
On Sun, 15 May 2011, Marius Strobl wrote: On Sun, May 15, 2011 at 02:35:37PM +1000, Bruce Evans wrote: On Sat, 14 May 2011, Marius Strobl wrote: Log: - There's no need for nibbletab to be static, it's const however. - Fix whitespace. There is every reason for it to be static. Modified:

Re: svn commit: r221952 - head/sbin/geom/class/part

2011-05-15 Thread Marcel Moolenaar
On May 15, 2011, at 7:45 AM, Andrey V. Elsukov wrote: Author: ae Date: Sun May 15 11:45:13 2011 New Revision: 221952 URL: http://svn.freebsd.org/changeset/base/221952 Log: Simplify the code a bit. For own providers GEOM_PART always provides start and end config attributes. MFC

Re: svn commit: r221952 - head/sbin/geom/class/part

2011-05-15 Thread Alexey Dokuchaev
On Sun, May 15, 2011 at 11:09:10AM -0400, Marcel Moolenaar wrote: On May 15, 2011, at 7:45 AM, Andrey V. Elsukov wrote: Author: ae Date: Sun May 15 11:45:13 2011 New Revision: 221952 URL: http://svn.freebsd.org/changeset/base/221952 Log: Simplify the code a bit. For own providers

Re: svn commit: r221952 - head/sbin/geom/class/part

2011-05-15 Thread Andrey V. Elsukov
On 15.05.2011 19:09, Marcel Moolenaar wrote: Simplify the code a bit. For own providers GEOM_PART always provides start and end config attributes. MFC after: 1 week Just to make sure: the code deals with backward compatibility. If you're aware of the issue, but don't care (anymore)

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

2011-05-15 Thread Adrian Chadd
Author: adrian Date: Sun May 15 15:54:34 2011 New Revision: 221965 URL: http://svn.freebsd.org/changeset/base/221965 Log: * Add some more TX descriptor error counters; this'll be helpful when implementing TX aggregation * Whilst I'm there, comment some RX error counters Modified:

Re: svn commit: r221853 - in head/sys: dev/md dev/null sys vm

2011-05-15 Thread Dag-Erling Smørgrav
Matthew D Fleming m...@freebsd.org writes: Log: Usa a globally visible region of zeros for both /dev/zero and the md device. There are likely other kernel uses of blob of zeros than can be converted. Excellent, thank you! DES -- Dag-Erling Smørgrav - d...@des.no

svn commit: r221967 - head/sbin/geom/class/part

2011-05-15 Thread Andrey V. Elsukov
Author: ae Date: Sun May 15 16:16:48 2011 New Revision: 221967 URL: http://svn.freebsd.org/changeset/base/221967 Log: Some partitioning schemes want to have partitions that are aligned with geometry. And they do recalculation of user specified parameters. MBR, PC98, VTOC8, EBR schemes are

Re: svn commit: r221952 - head/sbin/geom/class/part

2011-05-15 Thread Marcel Moolenaar
On May 15, 2011, at 11:27 AM, Andrey V. Elsukov wrote: On 15.05.2011 19:09, Marcel Moolenaar wrote: Simplify the code a bit. For own providers GEOM_PART always provides start and end config attributes. MFC after: 1 week Just to make sure: the code deals with backward compatibility. If

svn commit: r221970 - head/bin/sh

2011-05-15 Thread Jilles Tjoelker
Author: jilles Date: Sun May 15 17:00:43 2011 New Revision: 221970 URL: http://svn.freebsd.org/changeset/base/221970 Log: sh: Avoid close(-1) when evaluating a multi-command pipeline. Valgrind complains about this. Modified: head/bin/sh/eval.c Modified: head/bin/sh/eval.c

Re: svn commit: r221952 - head/sbin/geom/class/part

2011-05-15 Thread Marcel Moolenaar
On May 15, 2011, at 12:59 PM, Marcel Moolenaar wrote: /* ... paging in non-commit details ... */ The point is that this is what's happening *now*. This is not what happened before. With support for logical partitions (i.e. the EBR scheme), the total partition bounds and the effective

Re: svn commit: r221952 - head/sbin/geom/class/part

2011-05-15 Thread Andrey V. Elsukov
On 15.05.2011 20:59, Marcel Moolenaar wrote: g_part_dumpconf() function does set both pair of parameters: (start, end) and (offset, length). I do not see a way how one pair can not be present in XML tree. /* ... paging in non-commit details ... */ The point is that this is what's

svn commit: r221971 - head/sys/dev/glxiic

2011-05-15 Thread Henrik Brix Andersen
Author: brix (ports committer) Date: Sun May 15 19:04:08 2011 New Revision: 221971 URL: http://svn.freebsd.org/changeset/base/221971 Log: Fix breakage on pc98 by redefining DEBUG(). Pointy hat to:brix Modified: head/sys/dev/glxiic/glxiic.c Modified: head/sys/dev/glxiic/glxiic.c

Re: svn commit: r221971 - head/sys/dev/glxiic

2011-05-15 Thread Kostik Belousov
On Sun, May 15, 2011 at 07:04:08PM +, Henrik Brix Andersen wrote: Author: brix (ports committer) Date: Sun May 15 19:04:08 2011 New Revision: 221971 URL: http://svn.freebsd.org/changeset/base/221971 Log: Fix breakage on pc98 by redefining DEBUG(). Why this was built on pc98 at all ?

svn commit: r221972 - head/sys/geom/part

2011-05-15 Thread Andrey V. Elsukov
Author: ae Date: Sun May 15 20:03:54 2011 New Revision: 221972 URL: http://svn.freebsd.org/changeset/base/221972 Log: Add a sysctl kern.geom.part.check_integrity for those who has corrupt partition tables and lost an ability to boot after r221788. Also unhide an error message from

svn commit: r221973 - in head: sys/fs/nfs sys/fs/nfsclient sys/nfs sys/nfsclient usr.bin/nfsstat

2011-05-15 Thread Rick Macklem
Author: rmacklem Date: Sun May 15 20:52:43 2011 New Revision: 221973 URL: http://svn.freebsd.org/changeset/base/221973 Log: Change the sysctl naming for the old and new NFS clients to vfs.oldnfs.xxx and vfs.nfs.xxx respectively. This makes the default nfs client use vfs.nfs.xxx after

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

2011-05-15 Thread Pyun YongHyeon
Author: yongari Date: Sun May 15 21:44:51 2011 New Revision: 221974 URL: http://svn.freebsd.org/changeset/base/221974 Log: Correctly disable jumbo frame support for BCM5719 A0. Modified: head/sys/dev/bge/if_bge.c Modified: head/sys/dev/bge/if_bge.c

svn commit: r221975 - head/bin/sh

2011-05-15 Thread Jilles Tjoelker
Author: jilles Date: Sun May 15 22:09:27 2011 New Revision: 221975 URL: http://svn.freebsd.org/changeset/base/221975 Log: sh: Minor optimization to output from ulimit/export/readonly. No functional change is intended. Modified: head/bin/sh/miscbltin.c head/bin/sh/var.c Modified:

svn commit: r221976 - head/usr.sbin/nfsd

2011-05-15 Thread Rick Macklem
Author: rmacklem Date: Sun May 15 22:46:45 2011 New Revision: 221976 URL: http://svn.freebsd.org/changeset/base/221976 Log: Fix the nfsv4 man page to reflect the changes related to making the new NFS client and server the default. This is a content change. Modified:

Re: svn commit: r221888 - head/sys/dev/ath/ath_hal

2011-05-15 Thread Adrian Chadd
On 14 May 2011 22:25, Adrian Chadd adr...@freebsd.org wrote:  Import initial EEPROM code for Kite (AR9287). That should be Kiwi (AR9287.) Sorry. Adrian ___ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head

svn commit: r221981 - head/sys/powerpc/aim

2011-05-15 Thread Nathan Whitehorn
Author: nwhitehorn Date: Mon May 16 03:32:40 2011 New Revision: 221981 URL: http://svn.freebsd.org/changeset/base/221981 Log: Remove a useless check that served only to make 64-bit PPC systems unbootable after r221855. Submitted by: andreast MFC after:1 week Modified: