[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1416816819-17310-1-git-send-email-subramanian.vijay@gmail.com>
Date: Mon, 24 Nov 2014 00:13:39 -0800
From: Vijay Subramanian <subramanian.vijay@...il.com>
To: netdev@...r.kernel.org
Cc: davem@...emloft.net,
Vijay Subramanian <subramanian.vijay@...il.com>
Subject: [PATCH net_test_tools] route_bench: Fix bug in DST_ITERATE option
While setting option for dst_addr_stride, flags should be set for
FLAG_DST_ITERATE not FLAG_SRC_ITERATE.
Signed-off-by: Vijay Subramanian <subramanian.vijay@...il.com>
---
route_bench.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/route_bench.c b/route_bench.c
index eb91dcf..22cbd2a 100644
--- a/route_bench.c
+++ b/route_bench.c
@@ -292,7 +292,7 @@ int main(int argc, char **argv, char **envp)
break;
case 'e':
sscanf(optarg, "%u", &s->dst_addr_stride);
- s->flags |= FLAG_SRC_ITERATE;
+ s->flags |= FLAG_DST_ITERATE;
break;
case 'f':
s->dst_addr_limit = inet_addr(optarg);
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists