mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-21 22:21:21 +00:00
genetlink: pass only network namespace to genl_has_listeners()
There's no point to force the caller to know about the internal genl_sock to use inside struct net, just have them pass the network namespace. This doesn't really change code generation since it's an inline, but makes the caller less magic - there's never any reason to pass another socket. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
02c81ab95d
commit
f8403a2e47
2 changed files with 3 additions and 4 deletions
|
@ -83,8 +83,7 @@ static bool ovs_must_notify(struct genl_family *family, struct genl_info *info,
|
|||
unsigned int group)
|
||||
{
|
||||
return info->nlhdr->nlmsg_flags & NLM_F_ECHO ||
|
||||
genl_has_listeners(family, genl_info_net(info)->genl_sock,
|
||||
group);
|
||||
genl_has_listeners(family, genl_info_net(info), group);
|
||||
}
|
||||
|
||||
static void ovs_notify(struct genl_family *family,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue