diff options
author | Nick Bowler <nbowler@elliptictech.com> | 2011-11-10 10:01:27 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-11-13 00:13:32 +0100 |
commit | 4b90a603a1b21d63cf743cc833680cb195a729f6 (patch) | |
tree | 5ac1ffcfd7208796967f4d9387d831c1d9e54ace /net/ipv4 | |
parent | net: Fix references to deleted NET_ETHERNET Kconfig setting. (diff) | |
download | linux-4b90a603a1b21d63cf743cc833680cb195a729f6.tar.xz linux-4b90a603a1b21d63cf743cc833680cb195a729f6.zip |
ah: Don't return NET_XMIT_DROP on input.
When the ahash driver returns -EBUSY, AH4/6 input functions return
NET_XMIT_DROP, presumably copied from the output code path. But
returning transmit codes on input doesn't make a lot of sense.
Since NET_XMIT_DROP is a positive int, this gets interpreted as
the next header type (i.e., success). As that can only end badly,
remove the check.
Signed-off-by: Nick Bowler <nbowler@elliptictech.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/ah4.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/ipv4/ah4.c b/net/ipv4/ah4.c index c7056b2e831f..36d14406261e 100644 --- a/net/ipv4/ah4.c +++ b/net/ipv4/ah4.c @@ -369,8 +369,6 @@ static int ah_input(struct xfrm_state *x, struct sk_buff *skb) if (err == -EINPROGRESS) goto out; - if (err == -EBUSY) - err = NET_XMIT_DROP; goto out_free; } |