aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/netpoll.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2007-12-16 13:44:00 -0800
committerDavid S. Miller <davem@davemloft.net>2008-01-28 14:58:15 -0800
commit21cf2253ebcf070bc307e0b56d696a2519c75cb4 (patch)
tree9092cd731d94175b66f4d29437fb023932329a5d /net/core/netpoll.c
parent[IPV4] include/net: Use ipv4_is_<type> (diff)
downloadlinux-dev-21cf2253ebcf070bc307e0b56d696a2519c75cb4.tar.xz
linux-dev-21cf2253ebcf070bc307e0b56d696a2519c75cb4.zip
[IPV4] net/core: Use ipv4_is_<type>
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/netpoll.c')
-rw-r--r--net/core/netpoll.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/core/netpoll.c b/net/core/netpoll.c
index b1d5acd2fc7a..6faa128a4c8e 100644
--- a/net/core/netpoll.c
+++ b/net/core/netpoll.c
@@ -410,7 +410,8 @@ static void arp_reply(struct sk_buff *skb)
memcpy(&tip, arp_ptr, 4);
/* Should we ignore arp? */
- if (tip != htonl(np->local_ip) || LOOPBACK(tip) || MULTICAST(tip))
+ if (tip != htonl(np->local_ip) ||
+ ipv4_is_loopback(tip) || ipv4_is_multicast(tip))
return;
size = sizeof(struct arphdr) + 2 * (skb->dev->addr_len + 4);