Commit 8f918d3f authored by Cong Wang's avatar Cong Wang Committed by David S. Miller

net_sched: check NULL in tcf_block_put()

Callers of tcf_block_put() could pass NULL so
we can't use block->q before checking if block is
NULL or not.

tcf_block_put_ext() callers are fine, it is always
non-NULL.

Fixes: 8c4083b3 ("net: sched: add block bind/unbind notif. and extended block_get/put")
Reported-by: default avatarDave Taht <dave.taht@gmail.com>
Cc: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: default avatarCong Wang <xiyou.wangcong@gmail.com>
Reviewed-by: default avatarJiri Pirko <jiri@mellanox.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f67971e6
...@@ -340,9 +340,6 @@ void tcf_block_put_ext(struct tcf_block *block, ...@@ -340,9 +340,6 @@ void tcf_block_put_ext(struct tcf_block *block,
{ {
struct tcf_chain *chain, *tmp; struct tcf_chain *chain, *tmp;
if (!block)
return;
list_for_each_entry_safe(chain, tmp, &block->chain_list, list) list_for_each_entry_safe(chain, tmp, &block->chain_list, list)
tcf_chain_flush(chain); tcf_chain_flush(chain);
...@@ -362,6 +359,8 @@ void tcf_block_put(struct tcf_block *block) ...@@ -362,6 +359,8 @@ void tcf_block_put(struct tcf_block *block)
{ {
struct tcf_block_ext_info ei = {0, }; struct tcf_block_ext_info ei = {0, };
if (!block)
return;
tcf_block_put_ext(block, NULL, block->q, &ei); tcf_block_put_ext(block, NULL, block->q, &ei);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment