net: sched: cls: add extack support for delete callback
This patch adds extack support for classifier delete callback api. This prepares to handle extack support inside each specific classifier implementation. Cc: David Ahern <dsahern@gmail.com> Signed-off-by: Alexander Aring <aring@mojatatu.com> Acked-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
50a561900e
commit
571acf2106
|
@ -242,7 +242,8 @@ struct tcf_proto_ops {
|
|||
void **, bool,
|
||||
struct netlink_ext_ack *);
|
||||
int (*delete)(struct tcf_proto *tp, void *arg,
|
||||
bool *last);
|
||||
bool *last,
|
||||
struct netlink_ext_ack *);
|
||||
void (*walk)(struct tcf_proto*, struct tcf_walker *arg);
|
||||
void (*bind_class)(void *, u32, unsigned long);
|
||||
|
||||
|
|
|
@ -955,7 +955,7 @@ static int tfilter_del_notify(struct net *net, struct sk_buff *oskb,
|
|||
return -EINVAL;
|
||||
}
|
||||
|
||||
err = tp->ops->delete(tp, fh, last);
|
||||
err = tp->ops->delete(tp, fh, last, extack);
|
||||
if (err) {
|
||||
kfree_skb(skb);
|
||||
return err;
|
||||
|
|
|
@ -130,7 +130,8 @@ static void basic_destroy(struct tcf_proto *tp)
|
|||
kfree_rcu(head, rcu);
|
||||
}
|
||||
|
||||
static int basic_delete(struct tcf_proto *tp, void *arg, bool *last)
|
||||
static int basic_delete(struct tcf_proto *tp, void *arg, bool *last,
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
struct basic_head *head = rtnl_dereference(tp->root);
|
||||
struct basic_filter *f = arg;
|
||||
|
|
|
@ -295,7 +295,8 @@ static void __cls_bpf_delete(struct tcf_proto *tp, struct cls_bpf_prog *prog)
|
|||
__cls_bpf_delete_prog(prog);
|
||||
}
|
||||
|
||||
static int cls_bpf_delete(struct tcf_proto *tp, void *arg, bool *last)
|
||||
static int cls_bpf_delete(struct tcf_proto *tp, void *arg, bool *last,
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
struct cls_bpf_head *head = rtnl_dereference(tp->root);
|
||||
|
||||
|
|
|
@ -156,7 +156,8 @@ static void cls_cgroup_destroy(struct tcf_proto *tp)
|
|||
}
|
||||
}
|
||||
|
||||
static int cls_cgroup_delete(struct tcf_proto *tp, void *arg, bool *last)
|
||||
static int cls_cgroup_delete(struct tcf_proto *tp, void *arg, bool *last,
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
|
|
|
@ -575,7 +575,8 @@ err1:
|
|||
return err;
|
||||
}
|
||||
|
||||
static int flow_delete(struct tcf_proto *tp, void *arg, bool *last)
|
||||
static int flow_delete(struct tcf_proto *tp, void *arg, bool *last,
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
struct flow_head *head = rtnl_dereference(tp->root);
|
||||
struct flow_filter *f = arg;
|
||||
|
|
|
@ -985,7 +985,8 @@ errout_tb:
|
|||
return err;
|
||||
}
|
||||
|
||||
static int fl_delete(struct tcf_proto *tp, void *arg, bool *last)
|
||||
static int fl_delete(struct tcf_proto *tp, void *arg, bool *last,
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
struct cls_fl_head *head = rtnl_dereference(tp->root);
|
||||
struct cls_fl_filter *f = arg;
|
||||
|
|
|
@ -172,7 +172,8 @@ static void fw_destroy(struct tcf_proto *tp)
|
|||
kfree_rcu(head, rcu);
|
||||
}
|
||||
|
||||
static int fw_delete(struct tcf_proto *tp, void *arg, bool *last)
|
||||
static int fw_delete(struct tcf_proto *tp, void *arg, bool *last,
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
struct fw_head *head = rtnl_dereference(tp->root);
|
||||
struct fw_filter *f = arg;
|
||||
|
|
|
@ -225,7 +225,8 @@ err_exts_init:
|
|||
return err;
|
||||
}
|
||||
|
||||
static int mall_delete(struct tcf_proto *tp, void *arg, bool *last)
|
||||
static int mall_delete(struct tcf_proto *tp, void *arg, bool *last,
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
|
|
|
@ -316,7 +316,8 @@ static void route4_destroy(struct tcf_proto *tp)
|
|||
kfree_rcu(head, rcu);
|
||||
}
|
||||
|
||||
static int route4_delete(struct tcf_proto *tp, void *arg, bool *last)
|
||||
static int route4_delete(struct tcf_proto *tp, void *arg, bool *last,
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
struct route4_head *head = rtnl_dereference(tp->root);
|
||||
struct route4_filter *f = arg;
|
||||
|
|
|
@ -350,7 +350,8 @@ static void rsvp_destroy(struct tcf_proto *tp)
|
|||
kfree_rcu(data, rcu);
|
||||
}
|
||||
|
||||
static int rsvp_delete(struct tcf_proto *tp, void *arg, bool *last)
|
||||
static int rsvp_delete(struct tcf_proto *tp, void *arg, bool *last,
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
struct rsvp_head *head = rtnl_dereference(tp->root);
|
||||
struct rsvp_filter *nfp, *f = arg;
|
||||
|
|
|
@ -193,7 +193,8 @@ static void tcindex_destroy_fexts(struct rcu_head *head)
|
|||
tcf_queue_work(&f->work);
|
||||
}
|
||||
|
||||
static int tcindex_delete(struct tcf_proto *tp, void *arg, bool *last)
|
||||
static int tcindex_delete(struct tcf_proto *tp, void *arg, bool *last,
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
struct tcindex_data *p = rtnl_dereference(tp->root);
|
||||
struct tcindex_filter_result *r = arg;
|
||||
|
@ -246,7 +247,7 @@ static int tcindex_destroy_element(struct tcf_proto *tp,
|
|||
{
|
||||
bool last;
|
||||
|
||||
return tcindex_delete(tp, arg, &last);
|
||||
return tcindex_delete(tp, arg, &last, NULL);
|
||||
}
|
||||
|
||||
static void __tcindex_destroy(struct rcu_head *head)
|
||||
|
|
|
@ -672,7 +672,8 @@ static void u32_destroy(struct tcf_proto *tp)
|
|||
tp->data = NULL;
|
||||
}
|
||||
|
||||
static int u32_delete(struct tcf_proto *tp, void *arg, bool *last)
|
||||
static int u32_delete(struct tcf_proto *tp, void *arg, bool *last,
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
struct tc_u_hnode *ht = arg;
|
||||
struct tc_u_hnode *root_ht = rtnl_dereference(tp->root);
|
||||
|
|
Loading…
Reference in New Issue