mirror of
https://github.com/xcat2/xNBA.git
synced 2025-01-31 05:17:34 +00:00
Use -ENETUNREACH to mean "no reachable network device exists, don't bother
retrying".
This commit is contained in:
parent
8edf8f6fa8
commit
c953c1a1c3
@ -384,7 +384,7 @@ static int ipv4_tx ( struct pk_buff *pkb,
|
||||
}
|
||||
if ( ! netdev ) {
|
||||
DBG ( "IPv4 has no route to %s\n", inet_ntoa ( iphdr->dest ) );
|
||||
rc = -EHOSTUNREACH;
|
||||
rc = -ENETUNREACH;
|
||||
goto err;
|
||||
}
|
||||
|
||||
|
@ -239,7 +239,7 @@ static int ipv6_tx ( struct pk_buff *pkb,
|
||||
/* No network interface identified */
|
||||
if ( !netdev ) {
|
||||
DBG ( "No route to host %s\n", inet6_ntoa ( ip6hdr->dest ) );
|
||||
rc = -EHOSTUNREACH;
|
||||
rc = -ENETUNREACH;
|
||||
goto err;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user