aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/pktgen.c
diff options
context:
space:
mode:
authorMathias Krause <minipli@googlemail.com>2014-02-21 21:38:36 +0100
committerDavid S. Miller <davem@davemloft.net>2014-02-24 18:54:26 -0500
commit72f8e06f3ea022d9002b825d57b9d897b9dbe6be (patch)
treeb06c2ce520f4cb8b0b697727015746da7275fe27 /net/core/pktgen.c
parentpktgen: simplify error handling in pgctrl_write() (diff)
downloadlinux-dev-72f8e06f3ea022d9002b825d57b9d897b9dbe6be.tar.xz
linux-dev-72f8e06f3ea022d9002b825d57b9d897b9dbe6be.zip
pktgen: document all supported flags
The documentation misses a few of the supported flags. Fix this. Also respect the dependency to CONFIG_XFRM for the IPSEC flag. Cc: Fan Du <fan.du@windriver.com> Cc: "David S. Miller" <davem@davemloft.net> Signed-off-by: Mathias Krause <minipli@googlemail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/pktgen.c')
-rw-r--r--net/core/pktgen.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/net/core/pktgen.c b/net/core/pktgen.c
index 53c30971172a..d0dac57291af 100644
--- a/net/core/pktgen.c
+++ b/net/core/pktgen.c
@@ -1247,7 +1247,13 @@ static ssize_t pktgen_if_write(struct file *file,
"Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
f,
"IPSRC_RND, IPDST_RND, UDPSRC_RND, UDPDST_RND, "
- "MACSRC_RND, MACDST_RND, TXSIZE_RND, IPV6, MPLS_RND, VID_RND, SVID_RND, FLOW_SEQ, IPSEC, NODE_ALLOC\n");
+ "MACSRC_RND, MACDST_RND, TXSIZE_RND, IPV6, "
+ "MPLS_RND, VID_RND, SVID_RND, FLOW_SEQ, "
+ "QUEUE_MAP_RND, QUEUE_MAP_CPU, UDPCSUM, "
+#ifdef CONFIG_XFRM
+ "IPSEC, "
+#endif
+ "NODE_ALLOC\n");
return count;
}
sprintf(pg_result, "OK: flags=0x%x", pkt_dev->flags);