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 macros for register-width, etc., rather than doing it
by hand in a few more assembly
Author: jmallett
Date: Mon Apr 19 07:51:57 2010
New Revision: 206836
URL: http://svn.freebsd.org/changeset/base/206836
Log:
Remove unused file.
Deleted:
head/sys/mips/mips/copystr.S
Modified:
head/sys/conf/files.mips
Modified: head/sys/conf/files.mips
==
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
===
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
Author: rpaulo
Date: Mon Apr 19 14:07:33 2010
New Revision: 206839
URL: http://svn.freebsd.org/changeset/base/206839
Log:
Revert r206755. It causes some laptops to stop booting.
Modified:
head/sys/dev/ahci/ahci.c
Modified: head/sys/dev/ahci/ahci.c
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
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 K&R
C function, without protot
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
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
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 that
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
head/sys/netinet
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
===
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
Author: rpaulo
Date: Mon Apr 19 17:16:23 2010
New Revision: 206848
URL: http://svn.freebsd.org/changeset/base/206848
Log:
Dump the AR_PHY_TURBO register on the AR5416. This register holds 11n
configurations.
Sponsored by: iXsystems, inc.
Modified:
head/tools/tools/ath/common/dumpregs_5
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 w
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.
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.
On 4/19/10 9:01 AM, Robert Noland wrote:
Luigi Rizzo wrote:
[...]
Index: sbin/ipfw/ipfw2.c
===
--- sbin/ipfw/ipfw2.c (revision 206844)
+++ sbin/ipfw/ipfw2.c (working copy)
@@ -326,7 +326,7 @@
#ifdef TCC
#define U64_FMT "I64"
#
Author: attilio
Date: Mon Apr 19 23:27:54 2010
New Revision: 206878
URL: http://svn.freebsd.org/changeset/base/206878
Log:
Fix a deadlock in the shutdown code:
When performing a smp_rendezvous() or more likely, on amd64 and i386,
a smp_tlb_shootdown() the caller will end up with the smp_ipi_
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
Modified:
head/sys/kern/ke
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 serve
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
Ob
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:
hea
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 wrote:
> Author: alc
> Date: Sat Apr 3 1
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)
>
Author: maxim
Date: Tue Apr 20 06:10:05 2010
New Revision: 206889
URL: http://svn.freebsd.org/changeset/base/206889
Log:
o Add do-not-fragment option support to ping6(8).
PR: bin/145759
Submitted by: pluknet
MFC after:1 month
Modified:
head/sbin/ping6/ping6.8
head/sbi
26 matches
Mail list logo