Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f261a5b0 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "net: core: Dont send ARP probes for NUD_PERMANENET"

parents aee884f9 309792a2
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1286,7 +1286,8 @@ struct neighbour *neigh_event_ns(struct neigh_table *tbl,
						 lladdr || !dev->addr_len);
	if (neigh) {
		if (neigh_probe_enable) {
			if (!(neigh->nud_state == NUD_REACHABLE)) {
			if (neigh->nud_state != NUD_REACHABLE &&
			    neigh->nud_state != NUD_PERMANENT) {
				neigh_update(neigh, lladdr, NUD_STALE,
					 NEIGH_UPDATE_F_OVERRIDE);
				write_lock(&neigh->lock);