diff options
author | Alexander Aring <aring@mojatatu.com> | 2018-02-15 10:54:53 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-02-16 15:44:41 -0500 |
commit | b7b347fa3cd496ad5b4cbcc8ea2931847c4d0d78 (patch) | |
tree | c9d4c0488379716767247f69b2aaa0f457fa3763 /include/net/act_api.h | |
parent | 66dede2d6b2340235ca212532275446d7bb010fe (diff) | |
download | linux-stable-b7b347fa3cd496ad5b4cbcc8ea2931847c4d0d78.tar.gz linux-stable-b7b347fa3cd496ad5b4cbcc8ea2931847c4d0d78.tar.bz2 linux-stable-b7b347fa3cd496ad5b4cbcc8ea2931847c4d0d78.zip |
net: sched: act: fix code style
This patch is used by subsequent patches. It fixes code style issues
caught by checkpatch.
Signed-off-by: Alexander Aring <aring@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/act_api.h')
-rw-r--r-- | include/net/act_api.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/net/act_api.h b/include/net/act_api.h index 6ed9692f20bd..32ef544f4ddc 100644 --- a/include/net/act_api.h +++ b/include/net/act_api.h @@ -87,12 +87,13 @@ struct tc_action_ops { struct tcf_result *); int (*dump)(struct sk_buff *, struct tc_action *, int, int); void (*cleanup)(struct tc_action *); - int (*lookup)(struct net *, struct tc_action **, u32); + int (*lookup)(struct net *net, struct tc_action **a, u32 index); int (*init)(struct net *net, struct nlattr *nla, struct nlattr *est, struct tc_action **act, int ovr, int bind); int (*walk)(struct net *, struct sk_buff *, - struct netlink_callback *, int, const struct tc_action_ops *); + struct netlink_callback *, int, + const struct tc_action_ops *); void (*stats_update)(struct tc_action *, u64, u32, u64); struct net_device *(*get_dev)(const struct tc_action *a); }; |