diff options
Diffstat (limited to 'net/core/neighbour.c')
| -rw-r--r-- | net/core/neighbour.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/net/core/neighbour.c b/net/core/neighbour.c index ca15f32821f..932c6d7cf66 100644 --- a/net/core/neighbour.c +++ b/net/core/neighbour.c @@ -1161,6 +1161,7 @@ int neigh_update(struct neighbour *neigh, const u8 *lladdr, u8 new,  						 neigh->parms->reachable_time :  						 0)));  		neigh->nud_state = new; +		notify = 1;  	}  	if (lladdr != neigh->ha) { @@ -1274,7 +1275,7 @@ int neigh_compat_output(struct neighbour *neigh, struct sk_buff *skb)  	if (dev_hard_header(skb, dev, ntohs(skb->protocol), NULL, NULL,  			    skb->len) < 0 && -	    dev->header_ops->rebuild(skb)) +	    dev_rebuild_header(skb))  		return 0;  	return dev_queue_xmit(skb);  | 
