Re: [PATCH] locking bug in fib_semantics.c
From: Jarek Poplawski <hidden>
Date: 2006-08-24 11:04:36
On 23-08-2006 20:31, Stephen Hemminger wrote:
On Tue, 22 Aug 2006 12:35:56 +0200 Jarek Poplawski [off-list ref] wrote:
...
quoted
I've found it at last but on that occasion I've got some doubt according to rcu_read_lock and rcu_call treatment: isn't it "illegal to block while in an RCU read-side section"? And I think it takes place in:No, it is perfectly okay for a cpu to acquire a lock while in an RCU section, it just can't acquire a mutex/semaphore that will put it to sleep. That is caught by the might_sleep() check.
Then I've wrongly understood it can't sleep while in RCU and that enabled bh can make it sleep.
quoted
fib_lookup(): from tb_insert (fn_hash_insert() or fn_trie_insert()), fib_create_info(), fib_check_nh() fn_trie_lookup(): like above, inet_addr_type(), tb_lookup() fib_rule_put(): like #1 above or #2 after tb_lookup(), fib_res_put() Shouldn't there be _bh also?fib_rule_put only does something if refcount == 1 in which case it is safe.
It's like above. I've thought (wrongly): fib_rule_put() calls call_rcu() and is made to sleep. Thanks for explaining: now I can peacefully go... to sleep! Jarek P.