[NET]: Remove unused "mibalign" argument for snmp_mib_init().
With fixes from Arnaldo Carvalho de Melo. Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
971b893e79
commit
c69bce20dd
@@ -256,16 +256,13 @@ static void addrconf_mod_timer(struct inet6_ifaddr *ifp,
|
||||
static int snmp6_alloc_dev(struct inet6_dev *idev)
|
||||
{
|
||||
if (snmp_mib_init((void **)idev->stats.ipv6,
|
||||
sizeof(struct ipstats_mib),
|
||||
__alignof__(struct ipstats_mib)) < 0)
|
||||
sizeof(struct ipstats_mib)) < 0)
|
||||
goto err_ip;
|
||||
if (snmp_mib_init((void **)idev->stats.icmpv6,
|
||||
sizeof(struct icmpv6_mib),
|
||||
__alignof__(struct icmpv6_mib)) < 0)
|
||||
sizeof(struct icmpv6_mib)) < 0)
|
||||
goto err_icmp;
|
||||
if (snmp_mib_init((void **)idev->stats.icmpv6msg,
|
||||
sizeof(struct icmpv6msg_mib),
|
||||
__alignof__(struct icmpv6msg_mib)) < 0)
|
||||
sizeof(struct icmpv6msg_mib)) < 0)
|
||||
goto err_icmpmsg;
|
||||
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user