Phonet: missing rcu_dereference()
Reported-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Signed-off-by: Rémi Denis-Courmont <remi.denis-courmont@nokia.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
115924b6bd
commit
b2a5decddb
|
@ -44,7 +44,7 @@ static struct phonet_protocol *phonet_proto_get(int protocol)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
rcu_read_lock();
|
rcu_read_lock();
|
||||||
pp = proto_tab[protocol];
|
pp = rcu_dereference(proto_tab[protocol]);
|
||||||
if (pp && !try_module_get(pp->prot->owner))
|
if (pp && !try_module_get(pp->prot->owner))
|
||||||
pp = NULL;
|
pp = NULL;
|
||||||
rcu_read_unlock();
|
rcu_read_unlock();
|
||||||
|
|
Loading…
Reference in New Issue