Commit 2c04ddb7 authored by Thomas Graf's avatar Thomas Graf Committed by David S. Miller

[GENETLINK]: Fix adjustment of number of multicast groups

The current calculation of the maximum number of genetlink
multicast groups seems odd, fix it.
Signed-off-by: default avatarThomas Graf <tgraf@suug.ch>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 79dc4386
...@@ -184,7 +184,7 @@ int genl_register_mc_group(struct genl_family *family, ...@@ -184,7 +184,7 @@ int genl_register_mc_group(struct genl_family *family,
} }
err = netlink_change_ngroups(genl_sock, err = netlink_change_ngroups(genl_sock,
sizeof(unsigned long) * NETLINK_GENERIC); mc_groups_longs * BITS_PER_LONG);
if (err) if (err)
goto out; goto out;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment