svn commit: r206829 - in head/sys/mips: cavium include mips

2010-04-19 Thread Juli Mallett
Author: jmallett Date: Mon Apr 19 06:01:58 2010 New Revision: 206829 URL: http://svn.freebsd.org/changeset/base/206829 Log: o) Fix XKPHYS physical address extraction. Also define cache coherency attributes for XKPHYS. o) Make coprocessor 0 accessor function macros for register+selector

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

2010-04-19 Thread Juli Mallett
Author: jmallett Date: Mon Apr 19 07:34:26 2010 New Revision: 206834 URL: http://svn.freebsd.org/changeset/base/206834 Log: o) Eliminate the stand frame and its use. Use CALLFRAME_* everywhere. o) Use machine/asm.h macros for register-width, etc., rather than doing it by hand in a few

svn commit: r206837 - head/sys/mips/malta

2010-04-19 Thread Juli Mallett
Author: jmallett Date: Mon Apr 19 09:03:34 2010 New Revision: 206837 URL: http://svn.freebsd.org/changeset/base/206837 Log: Fix MALTA64 build. Modified: head/sys/mips/malta/gt_pci.c Modified: head/sys/mips/malta/gt_pci.c

svn commit: r206838 - head/sys/cddl/compat/opensolaris/kern

2010-04-19 Thread Xin LI
Author: delphij Date: Mon Apr 19 09:03:36 2010 New Revision: 206838 URL: http://svn.freebsd.org/changeset/base/206838 Log: Partially MFp4 #176265 by pjd@: - Properly initialize and destroy system_taskq. - Add a dummy implementation of taskq_create_proc(). Note: We do not currently

svn commit: r206840 - head/sys/netinet

2010-04-19 Thread Michael Tuexen
Author: tuexen Date: Mon Apr 19 14:15:58 2010 New Revision: 206840 URL: http://svn.freebsd.org/changeset/base/206840 Log: Get delayed SACK working again. MFC after: 3 days. Modified: head/sys/netinet/sctp_indata.c Modified: head/sys/netinet/sctp_indata.c

svn commit: r206842 - head/contrib/top

2010-04-19 Thread Nathan Whitehorn
Author: nwhitehorn Date: Mon Apr 19 14:34:44 2010 New Revision: 206842 URL: http://svn.freebsd.org/changeset/base/206842 Log: Fix brokenness in top on big-endian 32-bit systems introduced when changing format_k2 to take a long long. Because itoa is defined as a KR C function, without

svn commit: r206843 - head/sbin/ipfw

2010-04-19 Thread Luigi Rizzo
Author: luigi Date: Mon Apr 19 15:11:45 2010 New Revision: 206843 URL: http://svn.freebsd.org/changeset/base/206843 Log: Slightly different handling of printf/snprintf for unaligned uint64_t, which should improve readability, and also to ease the port to platforms that do not support %llu

svn commit: r206844 - head/sys/netinet

2010-04-19 Thread Kenneth D. Merry
Author: ken Date: Mon Apr 19 15:15:36 2010 New Revision: 206844 URL: http://svn.freebsd.org/changeset/base/206844 Log: Don't clear other flags (e.g. CSUM_TCP) when setting CSUM_TSO. This was causing TSO to break for the Xen netfront driver. Reviewed by: gibbs, rwatson MFC after:7

Re: svn commit: r206843 - head/sbin/ipfw

2010-04-19 Thread Robert Noland
Luigi Rizzo wrote: Author: luigi Date: Mon Apr 19 15:11:45 2010 New Revision: 206843 URL: http://svn.freebsd.org/changeset/base/206843 Log: Slightly different handling of printf/snprintf for unaligned uint64_t, which should improve readability, and also to ease the port to platforms

svn commit: r206845 - in head/sys/netinet: . ipfw

2010-04-19 Thread Luigi Rizzo
Author: luigi Date: Mon Apr 19 16:17:30 2010 New Revision: 206845 URL: http://svn.freebsd.org/changeset/base/206845 Log: whitespace fixes (trailing whitespace, bad indentation after a merge, etc.) Modified: head/sys/netinet/ip_dummynet.h head/sys/netinet/ipfw/dn_sched.h

svn commit: r206846 - head/sbin/ipfw

2010-04-19 Thread Luigi Rizzo
Author: luigi Date: Mon Apr 19 16:35:47 2010 New Revision: 206846 URL: http://svn.freebsd.org/changeset/base/206846 Log: fix 64-bit build Reported by: Robert Noland Modified: head/sbin/ipfw/ipfw2.c Modified: head/sbin/ipfw/ipfw2.c

Re: svn commit: r206843 - head/sbin/ipfw

2010-04-19 Thread Luigi Rizzo
On Mon, Apr 19, 2010 at 11:01:40AM -0500, Robert Noland wrote: ... +#ifdef TCC +#define U64_FMT I64 +#else +#define U64_FMT llu This is broken on amd64. It either needs casting or the following patch... thanks, i prefer passing through an unsigned long long as in the previous version

svn commit: r206859 - head/sys/geom

2010-04-19 Thread Jaakko Heinonen
Author: jh Date: Mon Apr 19 20:07:35 2010 New Revision: 206859 URL: http://svn.freebsd.org/changeset/base/206859 Log: Fix ddb(4) show geom addr command when INVARIANTS is enabled. Don't assert that the topology lock is held when g_valid_obj() is called from debugger. MFC after:1

svn commit: r206868 - head/contrib/tzdata

2010-04-19 Thread Edwin Groothuis
Author: edwin Date: Mon Apr 19 20:59:39 2010 New Revision: 206868 URL: http://svn.freebsd.org/changeset/base/206868 Log: MFV of tzdata2010i, r206865 - Marocco does have DST this year between May and August. - Historical data for Taiwan - Argentina / San Luis does not do DST this year.

svn commit: r206876 - in head/sys/dev: age alc ale fxp msk nfe

2010-04-19 Thread Pyun YongHyeon
Author: yongari Date: Mon Apr 19 22:10:40 2010 New Revision: 206876 URL: http://svn.freebsd.org/changeset/base/206876 Log: With r206844, CSUM_TCP is also set for CSUM_TSO case. Modify drivers to take into account for the change. Basically CSUM_TSO should be checked before checking CSUM_TCP.

svn commit: r206879 - head/sys/kern

2010-04-19 Thread Attilio Rao
Author: attilio Date: Mon Apr 19 23:40:46 2010 New Revision: 206879 URL: http://svn.freebsd.org/changeset/base/206879 Log: getblk lockmgr is mostly used as a msleep() and may lead too easilly to false positives. Whitelist it. Reported by: Erik Cederstrand erik at cederstrand dot dk

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

2010-04-19 Thread Rick Macklem
Author: rmacklem Date: Tue Apr 20 01:02:39 2010 New Revision: 206880 URL: http://svn.freebsd.org/changeset/base/206880 Log: For the experimental NFS client doing an NFSv4 mount, set the NFSCLFLAGS_RECVRINPROG while doing recovery from an expired lease in a manner similar to r206818 for

svn commit: r206881 - head/release/powerpc

2010-04-19 Thread Nathan Whitehorn
Author: nwhitehorn Date: Tue Apr 20 01:12:23 2010 New Revision: 206881 URL: http://svn.freebsd.org/changeset/base/206881 Log: Add gpart and glabel to the release CD mfsroot. Even if sysinstall cannot partition disks on powerpc, this will allow the user to. PR: powerpc/93203

svn commit: r206885 - head/sys/vm

2010-04-19 Thread Alan Cox
Author: alc Date: Tue Apr 20 04:16:39 2010 New Revision: 206885 URL: http://svn.freebsd.org/changeset/base/206885 Log: Eliminate an unnecessary call to pmap_remove_all(). If a page belongs to an object whose reference count is zero, then that page cannot possibly be mapped. Modified:

Re: svn commit: r206140 - head/sys/vm

2010-04-19 Thread K. Macy
How has the problem been addressed? I'm seeing periodic panics with non-zero resident count with the page lock patch applied. It is possible that I've inadvertently re-introduced an issue you've fixed. Thanks, Kip On Sat, Apr 3, 2010 at 9:20 AM, Alan Cox a...@freebsd.org wrote: Author: alc

Re: svn commit: r206843 - head/sbin/ipfw

2010-04-19 Thread Luigi Rizzo
On Mon, Apr 19, 2010 at 03:44:25PM -0700, Julian Elischer wrote: On 4/19/10 9:01 AM, Robert Noland wrote: Luigi Rizzo wrote: [...] Index: sbin/ipfw/ipfw2.c === --- sbin/ipfw/ipfw2.c (revision 206844) +++