|
@@ -218,8 +218,12 @@ static void tcf_chain_flush(struct tcf_chain *chain)
|
|
|
|
|
|
static void tcf_chain_destroy(struct tcf_chain *chain)
|
|
static void tcf_chain_destroy(struct tcf_chain *chain)
|
|
{
|
|
{
|
|
|
|
+ struct tcf_block *block = chain->block;
|
|
|
|
+
|
|
list_del(&chain->list);
|
|
list_del(&chain->list);
|
|
kfree(chain);
|
|
kfree(chain);
|
|
|
|
+ if (list_empty(&block->chain_list))
|
|
|
|
+ kfree(block);
|
|
}
|
|
}
|
|
|
|
|
|
static void tcf_chain_hold(struct tcf_chain *chain)
|
|
static void tcf_chain_hold(struct tcf_chain *chain)
|
|
@@ -330,27 +334,13 @@ int tcf_block_get(struct tcf_block **p_block,
|
|
}
|
|
}
|
|
EXPORT_SYMBOL(tcf_block_get);
|
|
EXPORT_SYMBOL(tcf_block_get);
|
|
|
|
|
|
-static void tcf_block_put_final(struct work_struct *work)
|
|
|
|
-{
|
|
|
|
- struct tcf_block *block = container_of(work, struct tcf_block, work);
|
|
|
|
- struct tcf_chain *chain, *tmp;
|
|
|
|
-
|
|
|
|
- rtnl_lock();
|
|
|
|
-
|
|
|
|
- /* At this point, all the chains should have refcnt == 1. */
|
|
|
|
- list_for_each_entry_safe(chain, tmp, &block->chain_list, list)
|
|
|
|
- tcf_chain_put(chain);
|
|
|
|
- rtnl_unlock();
|
|
|
|
- kfree(block);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
/* XXX: Standalone actions are not allowed to jump to any chain, and bound
|
|
/* XXX: Standalone actions are not allowed to jump to any chain, and bound
|
|
* actions should be all removed after flushing.
|
|
* actions should be all removed after flushing.
|
|
*/
|
|
*/
|
|
void tcf_block_put_ext(struct tcf_block *block, struct Qdisc *q,
|
|
void tcf_block_put_ext(struct tcf_block *block, struct Qdisc *q,
|
|
struct tcf_block_ext_info *ei)
|
|
struct tcf_block_ext_info *ei)
|
|
{
|
|
{
|
|
- struct tcf_chain *chain;
|
|
|
|
|
|
+ struct tcf_chain *chain, *tmp;
|
|
|
|
|
|
/* Hold a refcnt for all chains, except 0, so that they don't disappear
|
|
/* Hold a refcnt for all chains, except 0, so that they don't disappear
|
|
* while we are iterating.
|
|
* while we are iterating.
|
|
@@ -364,13 +354,11 @@ void tcf_block_put_ext(struct tcf_block *block, struct Qdisc *q,
|
|
|
|
|
|
tcf_block_offload_unbind(block, q, ei);
|
|
tcf_block_offload_unbind(block, q, ei);
|
|
|
|
|
|
- INIT_WORK(&block->work, tcf_block_put_final);
|
|
|
|
- /* Wait for existing RCU callbacks to cool down, make sure their works
|
|
|
|
- * have been queued before this. We can not flush pending works here
|
|
|
|
- * because we are holding the RTNL lock.
|
|
|
|
|
|
+ /* At this point, all the chains should have refcnt >= 1. Block will be
|
|
|
|
+ * freed after all chains are gone.
|
|
*/
|
|
*/
|
|
- rcu_barrier();
|
|
|
|
- tcf_queue_work(&block->work);
|
|
|
|
|
|
+ list_for_each_entry_safe(chain, tmp, &block->chain_list, list)
|
|
|
|
+ tcf_chain_put(chain);
|
|
}
|
|
}
|
|
EXPORT_SYMBOL(tcf_block_put_ext);
|
|
EXPORT_SYMBOL(tcf_block_put_ext);
|
|
|
|
|