diff options
author | Joe Perches <joe@perches.com> | 2007-12-16 13:45:43 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 14:58:15 -0800 |
commit | f97c1e0c6ebdb606c97b6cb5e837c6110ac5a961 (patch) | |
tree | 2af3da0114614a127099f9ab2ef706f676faa376 /net/ipv4/arp.c | |
parent | 21cf2253ebcf070bc307e0b56d696a2519c75cb4 (diff) | |
download | linux-3.10-f97c1e0c6ebdb606c97b6cb5e837c6110ac5a961.tar.gz linux-3.10-f97c1e0c6ebdb606c97b6cb5e837c6110ac5a961.tar.bz2 linux-3.10-f97c1e0c6ebdb606c97b6cb5e837c6110ac5a961.zip |
[IPV4] net/ipv4: 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/ipv4/arp.c')
-rw-r--r-- | net/ipv4/arp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/arp.c b/net/ipv4/arp.c index 1102fb3d801..fdf12d1c350 100644 --- a/net/ipv4/arp.c +++ b/net/ipv4/arp.c @@ -777,7 +777,7 @@ static int arp_process(struct sk_buff *skb) * Check for bad requests for 127.x.x.x and requests for multicast * addresses. If this is one such, delete it. */ - if (LOOPBACK(tip) || MULTICAST(tip)) + if (ipv4_is_loopback(tip) || ipv4_is_multicast(tip)) goto out; /* |