projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3f19b2a
)
rxrpc: Map the EACCES error produced by some ICMP6 to EHOSTUNREACH
author
David Howells
<dhowells@redhat.com>
Sat, 2 May 2020 12:31:19 +0000
(13:31 +0100)
committer
David Howells
<dhowells@redhat.com>
Sun, 31 May 2020 14:19:51 +0000
(15:19 +0100)
Map the EACCES error that is produced by some ICMP6 packets to EHOSTUNREACH
when we get them as EACCES has other meanings within a filesystem context.
Signed-off-by: David Howells <dhowells@redhat.com>
net/rxrpc/peer_event.c
patch
|
blob
|
history
diff --git
a/net/rxrpc/peer_event.c
b/net/rxrpc/peer_event.c
index
b1449d9
..
112e490
100644
(file)
--- a/
net/rxrpc/peer_event.c
+++ b/
net/rxrpc/peer_event.c
@@
-271,6
+271,9
@@
static void rxrpc_store_error(struct rxrpc_peer *peer,
break;
case SO_EE_ORIGIN_ICMP6:
+ if (err == EACCES)
+ err = EHOSTUNREACH;
+ /* Fall through */
default:
_proto("Rx Received error report { orig=%u }", ee->ee_origin);
break;