summaryrefslogtreecommitdiff
path: root/net/netlink
diff options
context:
space:
mode:
authorMariusz Kozlowski <m.kozlowski@tuxland.pl>2007-01-02 15:24:30 -0800
committerDavid S. Miller <davem@sunset.davemloft.net>2007-01-03 18:38:15 -0800
commit5e7c001c6279f38b15fef5369496fe1043765727 (patch)
tree84be64d45878d3dfd5720eafc82f46f63fdded23 /net/netlink
parent22e700502380b80cc81a44e219282762429ebe71 (diff)
[AF_NETLINK]: module_put cleanup
This patch removes redundant argument check for module_put(). Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/netlink')
-rw-r--r--net/netlink/af_netlink.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c
index 276131fe56d..383dd4e82ee 100644
--- a/net/netlink/af_netlink.c
+++ b/net/netlink/af_netlink.c
@@ -472,8 +472,7 @@ static int netlink_release(struct socket *sock)
NETLINK_URELEASE, &n);
}
- if (nlk->module)
- module_put(nlk->module);
+ module_put(nlk->module);
netlink_table_grab();
if (nlk->flags & NETLINK_KERNEL_SOCKET) {