net: sched: introduce shared filter blocks infrastructure
Allow qdiscs to share filter blocks among them. Each qdisc type has to use block get/put extended modifications that enable sharing. Shared blocks are tracked within each net namespace and identified by u32 index. This index is passed from user during the qdisc creation. If user passes index that is not used by any other qdisc, new block is created. If user passes index that is already used, the existing block will be re-used. Signed-off-by: Jiri Pirko <jiri@mellanox.com> Acked-by: Jamal Hadi Salim <jhs@mojatatu.com> Acked-by: David Ahern <dsahern@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
a9b19443ed
commit
4861738775
@@ -29,6 +29,7 @@ struct tcf_block_ext_info {
|
||||
enum tcf_block_binder_type binder_type;
|
||||
tcf_chain_head_change_t *chain_head_change;
|
||||
void *chain_head_change_priv;
|
||||
u32 block_index;
|
||||
};
|
||||
|
||||
struct tcf_block_cb;
|
||||
@@ -48,8 +49,14 @@ void tcf_block_put(struct tcf_block *block);
|
||||
void tcf_block_put_ext(struct tcf_block *block, struct Qdisc *q,
|
||||
struct tcf_block_ext_info *ei);
|
||||
|
||||
static inline bool tcf_block_shared(struct tcf_block *block)
|
||||
{
|
||||
return block->index;
|
||||
}
|
||||
|
||||
static inline struct Qdisc *tcf_block_q(struct tcf_block *block)
|
||||
{
|
||||
WARN_ON(tcf_block_shared(block));
|
||||
return block->q;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user