diff options
author | Gilad Ben-Yossef <gilad@benyossef.com> | 2017-10-18 09:00:35 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2017-11-03 15:11:17 +0100 |
commit | 068c2e703577dca8cd634421f14b90959589ec85 (patch) | |
tree | 3144bd7660f68746530412aa8ab09e9f3339da3f /net/ipv6/esp6.c | |
parent | crypto: ccp - use -ENOSPC for transient busy indication (diff) | |
download | linux-068c2e703577dca8cd634421f14b90959589ec85.tar.xz linux-068c2e703577dca8cd634421f14b90959589ec85.zip |
net: use -ENOSPC for transient busy indication
Replace -EBUSY with -ENOSPC when handling transient busy
indication in the absence of backlog.
Signed-off-by: Gilad Ben-Yossef <gilad@benyossef.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to '')
-rw-r--r-- | net/ipv6/esp6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/esp6.c b/net/ipv6/esp6.c index 89910e2c10f4..c04d995df37c 100644 --- a/net/ipv6/esp6.c +++ b/net/ipv6/esp6.c @@ -396,7 +396,7 @@ int esp6_output_tail(struct xfrm_state *x, struct sk_buff *skb, struct esp_info case -EINPROGRESS: goto error; - case -EBUSY: + case -ENOSPC: err = NET_XMIT_DROP; break; |