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

Commit 34eb5fe0 authored by Ihar Hrachyshka's avatar Ihar Hrachyshka Committed by David S. Miller
Browse files

arp: fixed error in a comment

the is_garp code deals just with gratuitous ARP packets, not every
unsolicited packet.

This patch is a result of a discussion in netdev:
http://marc.info/?l=linux-netdev&m=149506354216994



Suggested-by: default avatarJulian Anastasov <ja@ssi.bg>
Signed-off-by: default avatarIhar Hrachyshka <ihrachys@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 499350a5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -846,7 +846,7 @@ static int arp_process(struct net *net, struct sock *sk, struct sk_buff *skb)
		 */
		is_garp = tip == sip && addr_type == RTN_UNICAST;

		/* Unsolicited ARP _replies_ also require target hwaddr to be
		/* Gratuitous ARP _replies_ also require target hwaddr to be
		 * the same as source.
		 */
		if (is_garp && arp->ar_op == htons(ARPOP_REPLY))