aboutsummaryrefslogtreecommitdiffstats
path: root/net/netlink
diff options
context:
space:
mode:
authorThomas Graf <tgraf@suug.ch>2007-03-22 23:27:39 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2007-04-25 22:27:27 -0700
commit33a0543cd9e090d2c6759e0ed85c3049c6efcc06 (patch)
tree1dac1a5bd688dd169d08de399be38c03adf5d7ca /net/netlink
parent[TCP] westwood: Use type safe netlink interface (diff)
downloadlinux-dev-33a0543cd9e090d2c6759e0ed85c3049c6efcc06.tar.xz
linux-dev-33a0543cd9e090d2c6759e0ed85c3049c6efcc06.zip
[NETLINK]: Remove unused groups variable
Leftover from dynamic multicast groups allocation work. Signed-off-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/netlink')
-rw-r--r--net/netlink/af_netlink.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c
index 04b72d3c1dea..8488c15f2643 100644
--- a/net/netlink/af_netlink.c
+++ b/net/netlink/af_netlink.c
@@ -396,7 +396,6 @@ static int netlink_create(struct socket *sock, int protocol)
{
struct module *module = NULL;
struct netlink_sock *nlk;
- unsigned int groups;
int err = 0;
sock->state = SS_UNCONNECTED;
@@ -418,7 +417,6 @@ static int netlink_create(struct socket *sock, int protocol)
if (nl_table[protocol].registered &&
try_module_get(nl_table[protocol].module))
module = nl_table[protocol].module;
- groups = nl_table[protocol].groups;
netlink_unlock_table();
if ((err = __netlink_create(sock, protocol)) < 0)