david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Use -ENETUNREACH to mean "no reachable network device exists, don't bother

retrying".
This commit is contained in:
Michael Brown 2007-01-14 16:22:10 +00:00
parent 8edf8f6fa8
commit c953c1a1c3
2 changed files with 2 additions and 2 deletions

View File

@ -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;
}

View File

@ -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;
}