|
@@ -98,7 +98,7 @@ struct cls_fl_filter {
|
|
|
struct list_head list;
|
|
|
u32 handle;
|
|
|
u32 flags;
|
|
|
- unsigned int in_hw_count;
|
|
|
+ u32 in_hw_count;
|
|
|
struct rcu_work rwork;
|
|
|
struct net_device *hw_dev;
|
|
|
};
|
|
@@ -1880,6 +1880,9 @@ static int fl_dump(struct net *net, struct tcf_proto *tp, void *fh,
|
|
|
if (f->flags && nla_put_u32(skb, TCA_FLOWER_FLAGS, f->flags))
|
|
|
goto nla_put_failure;
|
|
|
|
|
|
+ if (nla_put_u32(skb, TCA_FLOWER_IN_HW_COUNT, f->in_hw_count))
|
|
|
+ goto nla_put_failure;
|
|
|
+
|
|
|
if (tcf_exts_dump(skb, &f->exts))
|
|
|
goto nla_put_failure;
|
|
|
|