diff options
author | David S. Miller | 2013-02-19 05:32:49 +0100 |
---|---|---|
committer | David S. Miller | 2013-02-19 05:34:21 +0100 |
commit | 6338a53a2bd02d5878ab449371323364b7cc7694 (patch) | |
tree | 461c4acae130771b9856715bc2cfdc341b6e5964 /kernel | |
parent | ipv6: fix a sparse warning (diff) | |
parent | xfrm: release neighbor upon dst destruction (diff) | |
download | kernel-qcow2-linux-6338a53a2bd02d5878ab449371323364b7cc7694.tar.gz kernel-qcow2-linux-6338a53a2bd02d5878ab449371323364b7cc7694.tar.xz kernel-qcow2-linux-6338a53a2bd02d5878ab449371323364b7cc7694.zip |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net into net
Pull in 'net' to take in the bug fixes that didn't make it into
3.8-final.
Also, deal with the semantic conflict of the change made to
net/ipv6/xfrm6_policy.c A missing rt6->n neighbour release
was added to 'net', but in 'net-next' we no longer cache the
neighbour entries in the ipv6 routes so that change is not
appropriate there.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/pid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/pid.c b/kernel/pid.c index de9af600006f..f2c6a6825098 100644 --- a/kernel/pid.c +++ b/kernel/pid.c @@ -331,7 +331,7 @@ out: return pid; out_unlock: - spin_unlock(&pidmap_lock); + spin_unlock_irq(&pidmap_lock); out_free: while (++i <= ns->level) free_pidmap(pid->numbers + i); |