Lines Matching defs:tcf_proto_ops
252 struct tcf_proto_ops { struct
253 struct list_head head;
254 char kind[IFNAMSIZ];
256 int (*classify)(struct sk_buff *,
259 int (*init)(struct tcf_proto*);
260 void (*destroy)(struct tcf_proto *tp,
263 void* (*get)(struct tcf_proto*, u32 handle);
264 int (*change)(struct net *net, struct sk_buff *,
269 int (*delete)(struct tcf_proto *tp, void *arg,
272 void (*walk)(struct tcf_proto*, struct tcf_walker *arg);
273 int (*reoffload)(struct tcf_proto *tp, bool add,
276 void (*bind_class)(void *, u32, unsigned long,
278 void * (*tmplt_create)(struct net *net,
282 void (*tmplt_destroy)(void *tmplt_priv);
308 const struct tcf_proto_ops *ops; argument