aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorOr Gerlitz <ogerlitz@mellanox.com>2017-02-16 10:31:11 +0200
committerDavid S. Miller <davem@davemloft.net>2017-02-17 12:08:05 -0500
commit7a335adad8b06778c0876aa5a5eb8954cd835bf5 (patch)
tree9f711e1ba42bea6c1c479d35a224ec2ce3b7b1bb /net
parentnet/sched: cls_flower: Properly handle classifier flags dumping (diff)
downloadlinux-dev-7a335adad8b06778c0876aa5a5eb8954cd835bf5.tar.xz
linux-dev-7a335adad8b06778c0876aa5a5eb8954cd835bf5.zip
net/sched: cls_matchall: Dump the classifier flags
The classifier flags are not dumped to user-space, do that. Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com> Acked-by: Jiri Pirko <jiri@mellanox.com> Acked-by: Yotam Gigi <yotamg@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/sched/cls_matchall.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/net/sched/cls_matchall.c b/net/sched/cls_matchall.c
index f2141cb55562..35ef1c1be1f3 100644
--- a/net/sched/cls_matchall.c
+++ b/net/sched/cls_matchall.c
@@ -244,6 +244,9 @@ static int mall_dump(struct net *net, struct tcf_proto *tp, unsigned long fh,
nla_put_u32(skb, TCA_MATCHALL_CLASSID, head->res.classid))
goto nla_put_failure;
+ if (head->flags && nla_put_u32(skb, TCA_MATCHALL_FLAGS, head->flags))
+ goto nla_put_failure;
+
if (tcf_exts_dump(skb, &head->exts))
goto nla_put_failure;