]> git.neil.brown.name Git - history.git/log
history.git
21 years ago[PF_KEY]: spirange should be in host byte order.
Herbert Xu [Sat, 31 Jul 2004 16:39:29 +0000 (09:39 -0700)]
[PF_KEY]: spirange should be in host byte order.

I'm looking through the xfrm_alloc_spi stuff and noticed that the
netlink alloc_spi function takes the range in host order while the
PFKEY alloc_spi function takes them in network order.

First I thought that I stuffed up since I was the one who changed
the code in the netlink interface to take them in host order :)

But reading RFC 2367 seems to indicate otherwise.  It says that all
fields are host order unless specified otherwise.  And the spirange
fields are not specified to be network order at all.

Looking at the existing PFKEY users:

User Space
----------
Openswan - Doesn't use PFKEY for this.
Racoon - Puts zeros in there so it doesn't care.  However its test-pfkey
 program stores things in host order.
ISAKMPD - Stores things in host order.

So the conclusion is that we can and should change our PFKEY
implementation to use host order for these fields.

This patch does exactly that.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[IPSEC]: xfrm_alloc_spi always succeeds on non-trivial range
Herbert Xu [Sat, 31 Jul 2004 16:33:16 +0000 (09:33 -0700)]
[IPSEC]: xfrm_alloc_spi always succeeds on non-trivial range

xfrm_alloc_spi will always succeed if minspi < maxspi, even if
minspi + 1 == maxspi.  If the range is already occupied this
will obviously lead to breakage.

Of course this is very unlikely to occur in reality due to the
size of the range.  Although with IPCOMP it might actually happen
on a very large server.

The fix is obivous.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[IPSEC]: Remove redundant check in xfrm_state_add()
Herbert Xu [Sat, 31 Jul 2004 16:30:00 +0000 (09:30 -0700)]
[IPSEC]: Remove redundant check in xfrm_state_add()

This is the patch referred to in the netlink_get_spi thread.

I was actually wrong about the reason for this patch though.  Firstly
it's the SPI check that is redundant and not the find_acq() call.
And it's redundant because of the find_acq() patch, not because
of the fact that this is in xfrm_state_add().

Now that find_acq() only returns SAs with SPIs, we don't need to
check this in xfrm_state_add() anymore.

We do still need the call though to clean up leftover larval states.

Another side-effect of the change is that we can move the existence
check above find_acq() since find_acq() will never return any SAs
matching the SPI we're trying to add (It doesn't need to because if
an SA with a matching SPI existed, it would've been returned by
state_lookup() already).

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[IPSEC]: Fix SPI generation by netlink_get_spi()
Herbert Xu [Sat, 31 Jul 2004 16:28:27 +0000 (09:28 -0700)]
[IPSEC]: Fix SPI generation by netlink_get_spi()

The issue is that two successive calls to netlink_get_spi is returning
the same SA.  Since netlink_get_spi is meant to be a creation operation
this is incorrect.

The netlink_get_spi operation is modelled off the PFKEY SADB_GETSPI
command which is specified in RFC 2367.  The purpose of SADB_GETSPI
is to create a new larval SA that can then be filled in by SADB_UPDATE.

Its semantics does not allow two SADB_GETSPI calls to return the same
SA, even if there is no SADB_UPDATE call in between.

The reason the second netlink_get_spi is returning the same SA is
because in find_acq(), the code is looking at all larval states as
opposed to only larval states with an SPI of zero.

Since the only other caller of find_acq() -- xfrm_state_add() intentionally
ignores all return values with a non-zero SPI, it is safe to not look at
SAs with non-zero SPIs at all in find_acq().

The following patch does exactly that.

In fact, the find_acq() call in xfrm_state_add() is a remnant from
the days when we had xfrm_state_replace() instead of xfrm_state_add()
and xfrm_state_update().  It can now be safely removed.

I'll post a separate patch for that.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years agoMerge http://linux-mh.bkbits.net/bluetooth-2.6
David S. Miller [Sat, 31 Jul 2004 16:24:50 +0000 (09:24 -0700)]
Merge http://linux-mh.bkbits.net/bluetooth-2.6
into nuts.davemloft.net:/disk1/BK/net-2.6

21 years ago[Bluetooth] Fix resetting to default filters
Marcel Holtmann [Sat, 31 Jul 2004 20:32:50 +0000 (22:32 +0200)]
[Bluetooth] Fix resetting to default filters

The problem is that after a successful connection between the Windows
Bluetooth stack and the Linux Bluez stack, no packets from the device
ever reach the PC running Windows XP Service Pack 2. That is, a ping
from the PC never receives a response, and a ping from BlueZ never
reaches the PC. Linux packet statistics show that the PC packets are
received, but all return traffic seems to be routed over the loopback
interface.

Immediately after creating the BNEP connection with BlueZ, the Windows
Bluetooth stack sends a BNEP_FILTER_NET_TYPE_SET_MSG with an effective
length of zero. BlueZ interprets this message to mean that no filter
ranges should be allowed. The code zeros the first entry in the filter
list, which is than interpreted as meaning that no ranges of acceptable
packets are available. This interpretation is wrong and leads to all
packets being rejected by BNEP.

The Bluetooth BNEP specification clearly states the following:

The length (in octets) of this message is 4+4*N, where N is the number
of disjoint ranges of Networking protocol types that form the complete
set. Note that N=0 (empty set) denotes a reset to default filters (if
any) supported by the remote device.

Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
21 years agoMerge nuts.davemloft.net:/disk1/BK/network-2.6
David S. Miller [Sat, 31 Jul 2004 16:20:16 +0000 (09:20 -0700)]
Merge nuts.davemloft.net:/disk1/BK/network-2.6
into nuts.davemloft.net:/disk1/BK/net-2.6

21 years ago[Bluetooth] Send HCI_Reset for ISSC USB dongles
Marcel Holtmann [Sat, 31 Jul 2004 14:59:54 +0000 (16:59 +0200)]
[Bluetooth] Send HCI_Reset for ISSC USB dongles

For the USB dongles from ISSC the first command must be a HCI_Reset,
because otherwise the inquiry procedures won't work.

Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
21 years agoMerge bk://cifs.bkbits.net/linux-2.5cifs
Linus Torvalds [Sat, 31 Jul 2004 11:35:19 +0000 (04:35 -0700)]
Merge bk://cifs.bkbits.net/linux-2.5cifs
into ppc970.osdl.org:/home/torvalds/v2.6/linux

21 years ago[PATCH] PATCH: Fix HPT366 crash and support HPT372N
Alan Cox [Sat, 31 Jul 2004 11:34:32 +0000 (04:34 -0700)]
[PATCH] PATCH: Fix HPT366 crash and support HPT372N

On a board containing the HPT372N IDE controller the 2.6.x series kernels will
misbehave. If the HPT372N is set up with the newer PCI identifier it is
ignored. If it is set up with the HPT372 identifier then the kernel crashes
on boot.

This patch is a forward port of my 2.4 driver fixes that have been in 2.4
for a year but somehow escaped 2.6. Ronny Buchmann caught a couple
of merge details I missed and those are fixed in this diff too.

As well as adding 372N support this also fixes the unknown revision case
to avoid crashes should any future 37x variants with weird class_rev's appear

Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years agoMerge bk://linux.bkbits.net/linux-2.5
Steve French [Sat, 31 Jul 2004 10:12:18 +0000 (03:12 -0700)]
Merge bk://linux.bkbits.net/linux-2.5
into hostme.bitkeeper.com:/repos/c/cifs/linux-2.5cifs

21 years ago[CIFS] Update readme and todo lists for cifs vfs
Steve French [Sat, 31 Jul 2004 20:54:08 +0000 (15:54 -0500)]
[CIFS] Update readme and todo lists for cifs vfs

Signed-off-by: Steve French (sfrench@us.ibm.com)
21 years ago[PATCH] slab memory shrinking balancing fix
Andrew Morton [Sat, 31 Jul 2004 07:47:41 +0000 (00:47 -0700)]
[PATCH] slab memory shrinking balancing fix

The logic in shrink_slab tries to balance the proportion of slab which it
scans against the proportion of pagecache which the caller scanned.  Problem
is that with a large number of highmem LRU pages and a small number of lowmem
LRU pages, the amount of pagecache scanning appears to be very small, so we
don't push slab hard enough.

The patch changes things so that for, say, a GFP_KERNEL allocation attempt we
only consider ZONE_NORMAL and ZONE_DMA when calculating "what proportion of
the LRU did the caller just scan".

This will have the effect of shrinking slab harder in response to GFP_KERNEL
allocations than for GFP_HIGHMEM allocations.

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] ppc32: fix compilation with binutils-2.15
Tom Rini [Sat, 31 Jul 2004 07:06:38 +0000 (00:06 -0700)]
[PATCH] ppc32: fix compilation with binutils-2.15

Currently, ppc32 will not always compile with binutils-2.15.  The issue
is that binutils has become even more strict about which opcodes can be
used with which CPU flags.  The problem is that we have a number of
cases where we compile with altivec instructions (with runtime checks to
make sure we can actually run them) in code that's not altivec specific.

The fix for this is to always pass in -maltivec on CONFIG_6xx.  To do
this cleanly, we split our AFLAGS definition up into
aflags-$(CONFIG_FOO).

Signed-off-by: Tom Rini <trini@kernel.crashing.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years agoMerge bk://linux-sam.bkbits.net/kbuild
Linus Torvalds [Sat, 31 Jul 2004 02:49:53 +0000 (19:49 -0700)]
Merge bk://linux-sam.bkbits.net/kbuild
into ppc970.osdl.org:/home/torvalds/v2.6/linux

21 years agoMerge bk://linux.bkbits.net/linux-2.5
Steve French [Sat, 31 Jul 2004 01:11:43 +0000 (18:11 -0700)]
Merge bk://linux.bkbits.net/linux-2.5
into hostme.bitkeeper.com:/repos/c/cifs/linux-2.5cifs

21 years ago[CIFS] remove sparse pointer warning
Steve French [Fri, 30 Jul 2004 16:10:05 +0000 (11:10 -0500)]
[CIFS] remove sparse pointer warning

Signed-off-by: Steve French (sfrench@us.ibm.com)
21 years ago[PATCH] sparse: misc cleanups
Alexander Viro [Fri, 30 Jul 2004 15:49:36 +0000 (08:49 -0700)]
[PATCH] sparse: misc cleanups

all sorts of minor stuff - basically, all chunks are independent here,
but IMO that one is not worth splitting.  Contains:
* pmac_cpufreq.c: declaration in the middle of a block.
* sys_ia32.c: couple of trivial annotations.
* ipmi_si_intf.c: should be using asm/irq.h instead of linux/irq.h
* synclink_cs.c: assignment-in-conditional with nobody ever looking
at the variable we are assigning to afterwards; variable removed.
* sbni.c: s/__volatile/__volatile__
* matroxfb_base.h: got rid of ((u32 *)p)++
* asm-ppc/checksum.h and asm-sparc64/floppy.h: NULL noise removal
* amd64 compat.h: missing L in long constant.
* mtd-abi.h: annotated ioctl structure
* sysctl.c: corrected annotations in extern

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] signed char portability fix
Alexander Viro [Fri, 30 Jul 2004 15:49:25 +0000 (08:49 -0700)]
[PATCH] signed char portability fix

code using atm_cirange fields assumes that they are signed; make that
explicit by s/char/signed char/.

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] size_t portability fixes
Alexander Viro [Fri, 30 Jul 2004 15:49:13 +0000 (08:49 -0700)]
[PATCH] size_t portability fixes

more size_t fixes (%d -> %zd)

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] sparse: more in drivers/net
Alexander Viro [Fri, 30 Jul 2004 15:49:02 +0000 (08:49 -0700)]
[PATCH] sparse: more in drivers/net

drivers/net BROKEN_ON_SMP annotations and NULL noise removals.

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] sparse: more in isdn
Alexander Viro [Fri, 30 Jul 2004 15:48:50 +0000 (08:48 -0700)]
[PATCH] sparse: more in isdn

annotations and NULL noise removals in drivres/isdn (more BROKEN_ON_SMP
stuff)

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] ARM initial annotations
Alexander Viro [Fri, 30 Jul 2004 15:48:39 +0000 (08:48 -0700)]
[PATCH] ARM initial annotations

Usual set of initial annotations for a platform.

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] #if abuses
Alexander Viro [Fri, 30 Jul 2004 15:48:27 +0000 (08:48 -0700)]
[PATCH] #if abuses

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] NULL noise removal in skfp
Alexander Viro [Fri, 30 Jul 2004 15:48:16 +0000 (08:48 -0700)]
[PATCH] NULL noise removal in skfp

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] sparse: drivers/char/*
Alexander Viro [Fri, 30 Jul 2004 15:48:04 +0000 (08:48 -0700)]
[PATCH] sparse: drivers/char/*

the rest of BROKEN_ON_SMP drivers in drivers/char sparsified.

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] sparse: stallion
Alexander Viro [Fri, 30 Jul 2004 15:47:52 +0000 (08:47 -0700)]
[PATCH] sparse: stallion

stallion annotated, cleaned up, a bunch of useless verify_area()
removed.

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] sparse: istallion
Alexander Viro [Fri, 30 Jul 2004 15:47:40 +0000 (08:47 -0700)]
[PATCH] sparse: istallion

istallion annotated, cleaned up, a bunch of useless verify_area()
removed.

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] sparse: ftape
Alexander Viro [Fri, 30 Jul 2004 15:47:29 +0000 (08:47 -0700)]
[PATCH] sparse: ftape

ftape got annotations and NULL noise removals.
Propagated the dependency on alpha/i386/amd64 to Kconfig (it's already
enforced by #error)

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] annotations in drivers/video
Alexander Viro [Fri, 30 Jul 2004 15:47:17 +0000 (08:47 -0700)]
[PATCH] annotations in drivers/video

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] inline fixes in net/*
Alexander Viro [Fri, 30 Jul 2004 15:47:05 +0000 (08:47 -0700)]
[PATCH] inline fixes in net/*

* in ipv6/route.c: made ipv6_advmss() inlined again (and moved it up)
* in sunrpc/xprt.c: inlining fix: moved do_xprt_reserve() up

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years agoMerge bk://linux-dj.bkbits.net/agpgart
Linus Torvalds [Fri, 30 Jul 2004 12:07:42 +0000 (05:07 -0700)]
Merge bk://linux-dj.bkbits.net/agpgart
into ppc970.osdl.org:/home/torvalds/v2.6/linux

21 years agoMerge http://lia64.bkbits.net/to-base-2.6
Linus Torvalds [Fri, 30 Jul 2004 12:06:41 +0000 (05:06 -0700)]
Merge http://lia64.bkbits.net/to-base-2.6
into ppc970.osdl.org:/home/torvalds/v2.6/linux

21 years agobte_error.c:
Robin Holt [Fri, 30 Jul 2004 21:11:13 +0000 (21:11 +0000)]
bte_error.c:
bte.c:
  After working with the chip designer some more, we have determined one
  more hardware register we were supposed to write to ensure the SHUB
  chip was ready for future transfers.  This patch fixes that.  This also
  allowed us to eliminate a udelay which was working around the problem.

  During retesting, we uncovered a race condition where transfer status
  was changed by a different cpu after we were expecting one value which
  cascaded to additional problems.  This patch uses a local variable to
  also eliminate that race.

Signed-off-by: Robin Holt <holt@sgi.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
21 years agosn_console.c:
Pat Gefre [Fri, 30 Jul 2004 20:26:30 +0000 (20:26 +0000)]
sn_console.c:
  move sn_debug_printf to only compile for DEBUG
  early printk needs to handle missing carriage returns
Signed-off-by: Pat Gefre <pfg@sgi.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
21 years ago[NET]: Kill NET_FASTROUTE, does nothing and suffers from major bitrot.
David S. Miller [Fri, 30 Jul 2004 07:23:29 +0000 (00:23 -0700)]
[NET]: Kill NET_FASTROUTE, does nothing and suffers from major bitrot.

Based up suggestion/changes from Jeff Garzik.

Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[SPARC64]: Update defconfig.
David S. Miller [Fri, 30 Jul 2004 06:50:04 +0000 (23:50 -0700)]
[SPARC64]: Update defconfig.

21 years agoMerge nuts.davemloft.net:/disk1/BK/sparcwork-2.6
David S. Miller [Fri, 30 Jul 2004 06:17:34 +0000 (23:17 -0700)]
Merge nuts.davemloft.net:/disk1/BK/sparcwork-2.6
into nuts.davemloft.net:/disk1/BK/sparc-2.6

21 years agoMerge nuts.davemloft.net:/disk1/BK/network-2.6
David S. Miller [Fri, 30 Jul 2004 06:00:42 +0000 (23:00 -0700)]
Merge nuts.davemloft.net:/disk1/BK/network-2.6
into nuts.davemloft.net:/disk1/BK/net-2.6

21 years agoMerge bk://cifs.bkbits.net/linux-2.5cifs
Linus Torvalds [Thu, 29 Jul 2004 16:04:58 +0000 (09:04 -0700)]
Merge bk://cifs.bkbits.net/linux-2.5cifs
into ppc970.osdl.org:/home/torvalds/v2.6/linux

21 years ago[PATCH] cmap annotations
Alexander Viro [Thu, 29 Jul 2004 15:48:53 +0000 (08:48 -0700)]
[PATCH] cmap annotations

fb_set_cmap() and fb_copy_cmap() split into kernel and userland versions.
fb_cmap, fb_image and fb_cursor split and annotated.
fixed bug in sbuslib.c that used to call "userland" version of fb_set_cmap()
when kernel one was need (RGB data was already copied into kernel space).

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] fb_cursor() fixes
Alexander Viro [Thu, 29 Jul 2004 15:48:40 +0000 (08:48 -0700)]
[PATCH] fb_cursor() fixes

Massive leaks fixed in fb_cursor().

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] console_font_op annotated
Alexander Viro [Thu, 29 Jul 2004 15:48:29 +0000 (08:48 -0700)]
[PATCH] console_font_op annotated

->vc_font switched to console_font (from console_font_op, of all things!)
console_font_op annotated (->data is finally makred __user).

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] con_get_font sanitized
Alexander Viro [Thu, 29 Jul 2004 15:48:17 +0000 (08:48 -0700)]
[PATCH] con_get_font sanitized

->con_font_get() sanitized.  We pass console_font * to method instead of
console_font_op * and do not mess with mixing ->data in these guys.

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] fbcon_do_set_font() sanitized
Alexander Viro [Thu, 29 Jul 2004 15:48:06 +0000 (08:48 -0700)]
[PATCH] fbcon_do_set_font() sanitized

fbcon internal cleanup.  Instead of passing console_font_op into
fbcon_do_set_font() we pass width/height directly.  Amusing (but harmless)
bug fixed there:
if (!w > 32) {
bogus code that fortunately never got triggered
}
Fixed by removal of the junk in question (and yes, it's verifiable junk -
it would not do anything even if we replaced the check with intended
!(w > 32)).

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] con_set_font sanitized
Alexander Viro [Thu, 29 Jul 2004 15:47:55 +0000 (08:47 -0700)]
[PATCH] con_set_font sanitized

con_font_set() sanitized.  We are passing console_font and flags into
the method in separate arguments and we are not messing with
console_font_op->data anymore - it's a userland pointer (to be annotated
several patches later in the series, due to another abuse of console_font_op
that needs to be fixed first), while console_font->data is kernel one
and they don't mix anymore.

We also do a sanity check (font width > 0) in the caller instead of
method instances, since we are already checking for width <= 32 and
height <= 32 there; doesn't make sense leaving that one in method
instances.

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] con_font_copy sanitized
Alexander Viro [Thu, 29 Jul 2004 15:47:43 +0000 (08:47 -0700)]
[PATCH] con_font_copy sanitized

->con_font_copy() sanitized.  We extract the number of console to copy the
font from in the caller (it's taken from the field of console_font_op that
is normally used for font height - messy even for an ioctl, but that animal
used to be passed all the way down into console drivers).

With decoding done in con_font_copy(), we simply pass source console number
into the method.

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] con_font_default sanitized
Alexander Viro [Thu, 29 Jul 2004 15:47:32 +0000 (08:47 -0700)]
[PATCH] con_font_default sanitized

->con_font_default() sanitized.  We copy font name (if any) from userland
in the caller and pass it explicitly.  We are also beginning to get rid
of console_font_op in method arguments.

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] con_font_op split
Alexander Viro [Thu, 29 Jul 2004 15:47:21 +0000 (08:47 -0700)]
[PATCH] con_font_op split

Preparations for cleanups: con_font_op() is turned into a switch calling
con_font_{get,set,default,copy} depending on the operation required;
method ->con_font_op() also split, with NULL resulting in -ENOSYS on
operation in question.

Code that used to be in con_font_op() got slightly cleaned up after move
into new helpers (we are beginning to untangle the mess; there will be
more cleanups in the next patches).

Methods are currently using exact same arguments as old ->con_font_op().
That will change in subsequent patches, method by method (right now there's
a hell of a scary field reuse between them, making impossible to do any
static checks and practically begging for bugs).

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] ppc64: fix memcpy_to/from_io
Benjamin Herrenschmidt [Thu, 29 Jul 2004 15:44:24 +0000 (08:44 -0700)]
[PATCH] ppc64: fix memcpy_to/from_io

The ppc64 implementation of memcpy_to/from_io was bogus (used memcpy
which uses cache hints and thus is broken on non cacheable IO space).

This re-implements them with some simple/gross C code doing 32 bits
accesses when aligned and bytes accesses when not.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] ppc64: hash table races fixes
Benjamin Herrenschmidt [Thu, 29 Jul 2004 15:44:13 +0000 (08:44 -0700)]
[PATCH] ppc64: hash table races fixes

This fixes some possible rare issues with the hash code beeing called
with interrupts enabled from update_mmu_cache, and fixes some races in
the iSeries low level htab code by adding an array of spinlocks

This is actually an old patch already present in SLES kernel and that
got "missed" somewhat in the main tree, adapted to recent changes.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[DMA]: Fix example code in DMA-mapping.txt
David S. Miller [Thu, 29 Jul 2004 12:36:08 +0000 (05:36 -0700)]
[DMA]: Fix example code in DMA-mapping.txt

Spotted by Jack Spaar <jspaar@myrealbox.com>

Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[XFRM]: Declare xfrm6_output in net/xfrm.h
David S. Miller [Thu, 29 Jul 2004 12:33:10 +0000 (05:33 -0700)]
[XFRM]: Declare xfrm6_output in net/xfrm.h

21 years ago[IPSEC]: Move generic encap code into xfrm6_output.
Herbert Xu [Thu, 29 Jul 2004 12:18:09 +0000 (05:18 -0700)]
[IPSEC]: Move generic encap code into xfrm6_output.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[AH6]: Rearrange routing headers
Herbert Xu [Thu, 29 Jul 2004 12:07:16 +0000 (05:07 -0700)]
[AH6]: Rearrange routing headers

This patch rearranges the IPv6 routing header so that the destination
addresses appear in the order as they would on the destination.  This
is specified in Appendix A2 of RFC 2402.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[CIFS] fix smb return code
Steve French [Thu, 29 Jul 2004 11:30:37 +0000 (06:30 -0500)]
[CIFS] fix smb return code

Signed-off-by: Steve French (sfrench@us.ibm.com)
21 years ago[NET]: Decrease skb->cb[] to 40 bytes.
David S. Miller [Thu, 29 Jul 2004 10:34:40 +0000 (03:34 -0700)]
[NET]: Decrease skb->cb[] to 40 bytes.

No control block usage, even on 64-bit, needs
the full current 48 bytes.  This brings sk_buff
size down to 256 bytes on 64-bit platforms and
fixes some performance regressions due to the
addition of the input_dev member.

Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[SPARC]: sparc64 openpromio.h needs compiler.h, sync sparc32
David S. Miller [Thu, 29 Jul 2004 10:32:10 +0000 (03:32 -0700)]
[SPARC]: sparc64 openpromio.h needs compiler.h, sync sparc32

21 years ago[NET]: Convert netrom to use module_param.
Stephen Hemminger [Thu, 29 Jul 2004 08:53:08 +0000 (01:53 -0700)]
[NET]: Convert netrom to use module_param.

Convert Netrom to use module_param

Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[NET]: Convert ROSE to use module_param.
Stephen Hemminger [Thu, 29 Jul 2004 08:52:33 +0000 (01:52 -0700)]
[NET]: Convert ROSE to use module_param.

Switch to module_param and the hash list can be local.

Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[NET]: Allow MD5 to be a module
Herbert Xu [Thu, 29 Jul 2004 08:48:49 +0000 (01:48 -0700)]
[NET]: Allow MD5 to be a module

I found that recent 2.6 kernels no longer allowed me to build MD5 as
a module even though everything that used it were modules (including
ipv6 and sctp).  It turns out that there were boolean options
selecting MD5 in the Kconfig files.  Due to limitations in the current
kconfig implementation, this forces MD5 to be a boolean as well.

The usual workaround in these cases is to move the selection up
to the closest tristate.  This is what the following patch does.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[PKT_SCHED]: Fix pkt_cls.h incompatabilities.
Jamal Hadi Salim [Thu, 29 Jul 2004 08:45:05 +0000 (01:45 -0700)]
[PKT_SCHED]: Fix pkt_cls.h incompatabilities.

Signed-off-by: Jamal Hadi Salim <hadi@cyberus.ca>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[PATCH 1/1]: net/sunrpc/xprt.c gcc341 inlining fix
Andrew Morton [Thu, 29 Jul 2004 08:34:34 +0000 (01:34 -0700)]
[PATCH 1/1]: net/sunrpc/xprt.c gcc341 inlining fix

From: Mikael Pettersson <mikpe@csd.uu.se>

gcc-3.4.1 errors out in 2.6.8-rc1-mm1 at net/sunrpc/xprt.c:

net/sunrpc/xprt.c: In function 'xprt_reserve':
net/sunrpc/xprt.c:84: sorry, unimplemented: inlining failed in call to 'do_xprt_reserve': function body not available
net/sunrpc/xprt.c:1307: sorry, unimplemented: called from here
make[2]: *** [net/sunrpc/xprt.o] Error 1
make[1]: *** [net/sunrpc] Error 2
make: *** [net] Error 2

do_xprt_reserve() is marked inline but used defore its function
body is available. Moving it before its only caller fixes the problem.

Signed-off-by: Mikael Pettersson <mikpe@csd.uu.se>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[PATCH 8/8] gcc-3.5 fixes
Andrew Morton [Thu, 29 Jul 2004 08:32:58 +0000 (01:32 -0700)]
[PATCH 8/8] gcc-3.5 fixes

From: Andi Kleen <ak@muc.de>

Trivial gcc-3.5 build fixes.

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[PATCH 7/8] gcc-3.5 fixes
Andrew Morton [Thu, 29 Jul 2004 08:32:28 +0000 (01:32 -0700)]
[PATCH 7/8] gcc-3.5 fixes

From: Andi Kleen <ak@muc.de>

Trivial gcc-3.5 build fixes.

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[PATCH 6/8] gcc-3.5 fixes
Andrew Morton [Thu, 29 Jul 2004 08:31:58 +0000 (01:31 -0700)]
[PATCH 6/8] gcc-3.5 fixes

From: Andi Kleen <ak@muc.de>

Trivial gcc-3.5 build fixes.

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[PATCH 5/8] gcc-3.5 fixes
Andrew Morton [Thu, 29 Jul 2004 08:31:29 +0000 (01:31 -0700)]
[PATCH 5/8] gcc-3.5 fixes

From: Andi Kleen <ak@muc.de>

Trivial gcc-3.5 build fixes.

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[PATCH 4/8] gcc-3.5 fixes
Andrew Morton [Thu, 29 Jul 2004 08:30:56 +0000 (01:30 -0700)]
[PATCH 4/8] gcc-3.5 fixes

From: Andi Kleen <ak@muc.de>

Trivial gcc-3.5 build fixes.

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[PATCH 3/8] gcc-3.5 fixes
Andrew Morton [Thu, 29 Jul 2004 08:30:16 +0000 (01:30 -0700)]
[PATCH 3/8] gcc-3.5 fixes

From: Andi Kleen <ak@muc.de>

Trivial gcc-3.5 build fixes.

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[PATCH 2/8] gcc-3.5 fixes
Andrew Morton [Thu, 29 Jul 2004 08:28:08 +0000 (01:28 -0700)]
[PATCH 2/8] gcc-3.5 fixes

From: Andi Kleen <ak@muc.de>

Trivial gcc-3.5 build fixes.

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[PATCH 1/8] gcc-3.5 fixes
Andrew Morton [Thu, 29 Jul 2004 08:27:24 +0000 (01:27 -0700)]
[PATCH 1/8] gcc-3.5 fixes

From: Andi Kleen <ak@muc.de>

Trivial gcc-3.5 build fixes.

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[BRIDGE]: RCU fix
Stephen Hemminger [Thu, 29 Jul 2004 07:41:53 +0000 (00:41 -0700)]
[BRIDGE]: RCU fix

Follow up to earlier RCU patch.  Since now using RCU, need to use
deferred free.

Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[BRIDGE]: forwarding table RCU
Stephen Hemminger [Thu, 29 Jul 2004 07:41:06 +0000 (00:41 -0700)]
[BRIDGE]: forwarding table RCU

Convert the bridge forwarding database over to using RCU.
This avoids a read_lock and atomic_inc/dec in the fast path
of output.

Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[BRIDGE]: linkstate handling
Stephen Hemminger [Thu, 29 Jul 2004 07:40:24 +0000 (00:40 -0700)]
[BRIDGE]: linkstate handling

This makes bridge port status reflect both the state of the interface
from software (up/down) and the carrier.  It makes STP handle link failure
(cable breakage, etc).  The original concept comes from a
Mark Ruijter <bridge@siennax.com> who implemented it differently.
My way is simpler and requires no polling.

Obviously, this link state detection will only work if the network card
handles the events properly.

Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[BRIDGE]: dev_xmit cleanup
Stephen Hemminger [Thu, 29 Jul 2004 07:39:35 +0000 (00:39 -0700)]
[BRIDGE]: dev_xmit cleanup

The br_dev_xmit function was broken in two pieces (needlessly).
Put it back together.

Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years ago[BRIDGE]: Propagate bridge internal MTU changes
Stephen Hemminger [Thu, 29 Jul 2004 07:38:51 +0000 (00:38 -0700)]
[BRIDGE]: Propagate bridge internal MTU changes

Need to propagate MTU changes that the bridge does to it's pseudo interface
up to others. There ends up being a double call to br_min_mtu() but that's
harmless.

Cleans up the EXPORT_SYMBOLS including dev_change_flags which is used by vlan.
Shouldn't be basing exports on kernel config options like this.

Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Signed-off-by: David S. Miller <davem@redhat.com>
21 years agoMerge bk://ppc.bkbits.net/for-linus-ppc
Linus Torvalds [Thu, 29 Jul 2004 06:37:27 +0000 (23:37 -0700)]
Merge bk://ppc.bkbits.net/for-linus-ppc
into ppc970.osdl.org:/home/torvalds/v2.6/linux

21 years agoMerge bk://kernel.bkbits.net/davem/net-2.6
Linus Torvalds [Thu, 29 Jul 2004 06:32:31 +0000 (23:32 -0700)]
Merge bk://kernel.bkbits.net/davem/net-2.6
into ppc970.osdl.org:/home/torvalds/v2.6/linux

21 years agoMerge bk://kernel.bkbits.net/davem/sparc-2.6
Linus Torvalds [Thu, 29 Jul 2004 06:31:34 +0000 (23:31 -0700)]
Merge bk://kernel.bkbits.net/davem/sparc-2.6
into ppc970.osdl.org:/home/torvalds/v2.6/linux

21 years agoMerge davem@nuts.davemloft.net:/disk1/BK/sparc-2.6
David S. Miller [Thu, 29 Jul 2004 12:54:02 +0000 (05:54 -0700)]
Merge davem@nuts.davemloft.net:/disk1/BK/sparc-2.6
into kernel.bkbits.net:/home/davem/sparc-2.6

21 years agoMerge bk://dsaxena.bkbits.net/linux-2.6-for-rmk
Linus Torvalds [Thu, 29 Jul 2004 06:30:41 +0000 (23:30 -0700)]
Merge bk://dsaxena.bkbits.net/linux-2.6-for-rmk
into ppc970.osdl.org:/home/torvalds/v2.6/linux

21 years agoMerge http://lia64.bkbits.net/to-base-2.6
Linus Torvalds [Thu, 29 Jul 2004 06:26:25 +0000 (23:26 -0700)]
Merge http://lia64.bkbits.net/to-base-2.6
into ppc970.osdl.org:/home/torvalds/v2.6/linux

21 years agoMerge plexity.net:/home/dsaxena/src/linux-2.5-bk
Deepak Saxena [Thu, 29 Jul 2004 04:22:53 +0000 (21:22 -0700)]
Merge plexity.net:/home/dsaxena/src/linux-2.5-bk
into plexity.net:/home/dsaxena/src/linux-2.6-for-rmk

21 years agoMerge bk://linux.bkbits.net/linux-2.5
Deepak Saxena [Thu, 29 Jul 2004 04:15:05 +0000 (21:15 -0700)]
Merge bk://linux.bkbits.net/linux-2.5
into plexity.net:/home/dsaxena/src/linux-2.5-bk

21 years agoMerge bk://linux.bkbits.net/linux-2.5
Steve French [Thu, 29 Jul 2004 03:24:07 +0000 (20:24 -0700)]
Merge bk://linux.bkbits.net/linux-2.5
into hostme.bitkeeper.com:/repos/c/cifs/linux-2.5cifs

21 years ago[PPC32] Merge MPC52xx changes with recent CPM changes.
Tom Rini [Thu, 29 Jul 2004 01:17:53 +0000 (18:17 -0700)]
[PPC32] Merge MPC52xx changes with recent CPM changes.

21 years ago[serial/ppc] Add support for MPC52xx PSCs.
Sylvain Munaut [Thu, 29 Jul 2004 17:12:57 +0000 (19:12 +0200)]
[serial/ppc] Add support for MPC52xx PSCs.

Can be used as serial port and console. Compliant with the OCP driver model.

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
21 years ago[ppc] Add basic support for the Freescale MPC52xx embedded CPU and the LITE5200 platform
Sylvain Munaut [Thu, 29 Jul 2004 17:09:03 +0000 (19:09 +0200)]
[ppc] Add basic support for the Freescale MPC52xx embedded CPU and the LITE5200 platform

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
21 years ago[CIFS] Resize cifs request buffer mempools as tcp sessions are added to avoid potenti...
Steve French [Wed, 28 Jul 2004 19:16:47 +0000 (14:16 -0500)]
[CIFS] Resize cifs request buffer mempools as tcp sessions are added to avoid potential deadlocks.

Signed-off-by: Steve French (sfrench@us.ibm.com)
21 years ago# Signed-off-by: Gordon Jin <gordon.jin@intel.com>
Tony Luck [Wed, 28 Jul 2004 17:57:12 +0000 (17:57 +0000)]
#   Signed-off-by: Gordon Jin <gordon.jin@intel.com>
#   Signed-off-by: Arun Sharma <arun.sharma@intel.com>
#   Signed-off-by: Tony Luck <tony.luck@intel.com>

21 years ago[PATCH] swsusp: documentation update
Pavel Machek [Wed, 28 Jul 2004 16:14:37 +0000 (09:14 -0700)]
[PATCH] swsusp: documentation update

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] remove dead code from copy_process()
Luiz Capitulino [Wed, 28 Jul 2004 16:14:26 +0000 (09:14 -0700)]
[PATCH] remove dead code from copy_process()

Don't assign to `retval' twice in a row.

Signed-off-by: Luiz Capitulino <lcapitulino@prefeitura.sp.gov.br>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] Fix up HP copyright & license text
Bjorn Helgaas [Wed, 28 Jul 2004 16:14:15 +0000 (09:14 -0700)]
[PATCH] Fix up HP copyright & license text

Fix up HP copyrights and add licensing terms (GPL v2) for hp-agp.c and
pcdp.

Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] Watchdog driver for Intel IXP2000 Network Processor
Deepak Saxena [Wed, 28 Jul 2004 16:14:03 +0000 (09:14 -0700)]
[PATCH] Watchdog driver for Intel IXP2000 Network Processor

Following patch adds support for the watchdog driver embedded in Intel's
IXP2000 family of network processors.  The architecture-specific bits of
IXP2000 support will be merged upstream via the ARM tree once all the
various drivers have been merged.

Signed-off-by: Deepak Saxena <dsaxena@plexity.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] comment "ptrace_list" and "children" members
David Mosberger [Wed, 28 Jul 2004 16:13:51 +0000 (09:13 -0700)]
[PATCH] comment "ptrace_list" and "children" members

Document the purpose of the "ptrace_list/ptrace_children" and
"children/sibling" lists.

Signed-off-by: <davidm@hpl.hp.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] mark swim3 floppy controller as removable device
Olaf Hering [Wed, 28 Jul 2004 16:13:40 +0000 (09:13 -0700)]
[PATCH] mark swim3 floppy controller as removable device

Mark the mac floppy controller driver as removable media.  This prevents an
entry in /proc/partitions.  Several tools will not try to access the floppy
anymore with this change.

Signed-off-by: Olaf Hering <olh@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] convert ipmi_watchdog to use module option nowayout
Arkadiusz Miskiewicz [Wed, 28 Jul 2004 16:13:29 +0000 (09:13 -0700)]
[PATCH] convert ipmi_watchdog to use module option nowayout

Convert ipmi_watchdog to also use module option `nowayout' as is done in
other watchdog drivers.

From: Corey Minyard <cminyard@mvista.com>

   The patch is good (same style as other watchdogs), but needs to have
   some documentation updated.  I've tacked that on.

Signed-off-by: Arkadiusz Miskiewicz <arekm@pld-linux.org>
Signed-off-by: Corey Minyard <minyard@acm.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] writepages drops bh on not uptodate page
Andrea Arcangeli [Wed, 28 Jul 2004 16:13:18 +0000 (09:13 -0700)]
[PATCH] writepages drops bh on not uptodate page

I think I understood why some ext2 fs corruption still happens even after
the last i_size fix.

what happened I believe is that the writepages layer got a not a fully
uptodate page (in turn with bh mapped on top of it), and then right before
unlocking the page and entering the writeback mode, it freed all the bh.
Without bh a not uptodate page will trigger a full readpage from disk, that
overwrites the pagecache before the multi-bio gets submitted, generating fs
corruption.

I believe the below patch should fix it (untested) against kernel CVS.

The testcases developed by Kurt showed the pagecache being overwritten with
on-disk data at block offsets, and Chris as well was wondering about races
between wait_on_page_writeback and readpage.  the below fix just explains
everything we've seen since not-fully-uptodate pages must have always bh on
them and the below patch enforces just that invariant, and it should fix
our pagecache-overwritten-by-disk-data problem.

Signed-off-by: Andrea Arcangeli <andrea@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] remove boot98
Brian Gerst [Wed, 28 Jul 2004 16:13:06 +0000 (09:13 -0700)]
[PATCH] remove boot98

Remove the orphaned PC9800 boot code.

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] Subject: PATCH: fix bogus ioctl return in mtrr
Alan Cox [Wed, 28 Jul 2004 16:12:55 +0000 (09:12 -0700)]
[PATCH] Subject: PATCH: fix bogus ioctl return in mtrr

This is fairly self explanatory - ENOIOCTLCMD is an internal code outside
of the -1 to -511 range.  The correct return for an unknown ioctl is
-ENOTTY although some Linux devices return the incorrect -EINVAL result.

Patch-By: Alan Cox <alan@redhat.com>
OSDL Developer Certificate of Origin 1.0 included herein by reference

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>