Эх сурвалжийг харах

ipv6: add IPv6 to neighbour table overflow warning

IPv4 and IPv6 have separate neighbour tables, so
the warning messages should be distinguishable.

[ Add a suitable message prefix on the ipv4 side as well -DaveM ]

Signed-off-by: Ulrich Weber <uweber@astaro.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Ulrich Weber 14 жил өмнө
parent
commit
7e1b33e5ea

+ 1 - 1
net/ipv4/route.c

@@ -1231,7 +1231,7 @@ restart:
 			}
 			}
 
 
 			if (net_ratelimit())
 			if (net_ratelimit())
-				printk(KERN_WARNING "Neighbour table overflow.\n");
+				printk(KERN_WARNING "ipv4: Neighbour table overflow.\n");
 			rt_drop(rt);
 			rt_drop(rt);
 			return -ENOBUFS;
 			return -ENOBUFS;
 		}
 		}

+ 1 - 1
net/ipv6/route.c

@@ -670,7 +670,7 @@ static struct rt6_info *rt6_alloc_cow(struct rt6_info *ort, struct in6_addr *dad
 
 
 			if (net_ratelimit())
 			if (net_ratelimit())
 				printk(KERN_WARNING
 				printk(KERN_WARNING
-				       "Neighbour table overflow.\n");
+				       "ipv6: Neighbour table overflow.\n");
 			dst_free(&rt->dst);
 			dst_free(&rt->dst);
 			return NULL;
 			return NULL;
 		}
 		}