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

Commit 279f64b7 authored by Arvid Brodin's avatar Arvid Brodin Committed by David S. Miller
Browse files

net/hsr: Remove left-over never-true conditional code.



MacAddressB is an array (unsigned char MacAddressB[ETH_ALEN]) and is allocated
as a part of *node_dst (which is a struct hsr_node). So the condition is always
false.

Detected by Dan Carpenter.

Signed-off-by: default avatarArvid Brodin <arvid.brodin@alten.se>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 19278cab
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -290,10 +290,6 @@ void hsr_addr_subst_dest(struct hsr_node *node_src, struct sk_buff *skb,
	}
	if (port->type != node_dst->AddrB_port)
		return;
	if (!node_dst->MacAddressB) {
		WARN_ONCE(1, "%s: No MacAddressB\n", __func__);
		return;
	}

	ether_addr_copy(eth_hdr(skb)->h_dest, node_dst->MacAddressB);
}