提交 416c51e1 编写于 作者: E Eric Dumazet 提交者: David S. Miller

netns: remove one sparse warning

net/core/net_namespace.c:227:18: warning: incorrect type in argument 1
(different address spaces)
net/core/net_namespace.c:227:18:    expected void const *<noident>
net/core/net_namespace.c:227:18:    got struct net_generic [noderef]
<asn:4>*gen

We can use rcu_access_pointer() here as read-side access to the pointer
was removed at least one grace period ago.
Signed-off-by: NEric Dumazet <edumazet@google.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 cc9c668a
......@@ -224,7 +224,7 @@ static void net_free(struct net *net)
return;
}
#endif
kfree(net->gen);
kfree(rcu_access_pointer(net->gen));
kmem_cache_free(net_cachep, net);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册