diff options
author | Johannes Berg <johannes.berg@intel.com> | 2014-12-22 18:56:36 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-12-27 02:20:23 -0500 |
commit | f8403a2e47afb37bcd3b7e286996d138a116c39d (patch) | |
tree | 4c3205b1d191df99969386bd52ef1ee25911a508 /net | |
parent | 02c81ab95d8718d75886d16227a10cc7774493ea (diff) | |
download | op-kernel-dev-f8403a2e47afb37bcd3b7e286996d138a116c39d.zip op-kernel-dev-f8403a2e47afb37bcd3b7e286996d138a116c39d.tar.gz |
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>
Diffstat (limited to 'net')
-rw-r--r-- | net/openvswitch/datapath.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/openvswitch/datapath.c b/net/openvswitch/datapath.c index 332b5a0..4e9a5f0 100644 --- a/net/openvswitch/datapath.c +++ b/net/openvswitch/datapath.c @@ -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, |