aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHadar Hen Zion <hadarh@mellanox.com>2016-12-01 14:06:36 +0200
committerDavid S. Miller <davem@davemloft.net>2016-12-02 13:28:36 -0500
commit255cb30425c0ced57d6d85f3e7cddb99b9576046 (patch)
tree757ac8b0039f730754d70d633eafe1fdd3bb87e5 /include
parentnet/sched: cls_flower: Provide a filter to replace/destroy hardware filter functions (diff)
downloadlinux-dev-255cb30425c0ced57d6d85f3e7cddb99b9576046.tar.xz
linux-dev-255cb30425c0ced57d6d85f3e7cddb99b9576046.zip
net/sched: act_mirred: Add new tc_action_ops get_dev()
Adding support to a new tc_action_ops. get_dev is a general option which allows to get the underline device when trying to offload a tc rule. In case of mirred action the returned device is the mirred (egress) device. Signed-off-by: Hadar Hen Zion <hadarh@mellanox.com> Reviewed-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/net/act_api.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/act_api.h b/include/net/act_api.h
index d8eae87ea778..9dddf77a69cc 100644
--- a/include/net/act_api.h
+++ b/include/net/act_api.h
@@ -119,6 +119,8 @@ struct tc_action_ops {
int (*walk)(struct net *, struct sk_buff *,
struct netlink_callback *, int, const struct tc_action_ops *);
void (*stats_update)(struct tc_action *, u64, u32, u64);
+ int (*get_dev)(const struct tc_action *a, struct net *net,
+ struct net_device **mirred_dev);
};
struct tc_action_net {