aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2012-10-18 17:55:31 +0000
committerDavid S. Miller <davem@davemloft.net>2012-10-21 20:37:05 -0400
commit06e3041164a1c52d6e8a369af8be3827f428272b (patch)
tree5bb1a5cd7b225ab84c1241486d61b78655f25ec1
parent3fbca4a2fee75ff89be9c5e44a893f89982873ff (diff)
pktgen: Use ipv6_addr_any
Use the standard test for a non-zero ipv6 address. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/core/pktgen.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/net/core/pktgen.c b/net/core/pktgen.c
index d1dc14c2aac..1d1c216ffd9 100644
--- a/net/core/pktgen.c
+++ b/net/core/pktgen.c
@@ -2427,11 +2427,7 @@ static void mod_cur_headers(struct pktgen_dev *pkt_dev)
}
} else { /* IPV6 * */
- if (pkt_dev->min_in6_daddr.s6_addr32[0] == 0 &&
- pkt_dev->min_in6_daddr.s6_addr32[1] == 0 &&
- pkt_dev->min_in6_daddr.s6_addr32[2] == 0 &&
- pkt_dev->min_in6_daddr.s6_addr32[3] == 0) ;
- else {
+ if (!ipv6_addr_any(&pkt_dev->min_in6_daddr)) {
int i;
/* Only random destinations yet */