[SCTP]: Use snmp_mib_{init,free}().
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
24e8b7e484
commit
996b1dbadc
|
@ -972,24 +972,14 @@ int sctp_register_pf(struct sctp_pf *pf, sa_family_t family)
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __init init_sctp_mibs(void)
|
static inline int init_sctp_mibs(void)
|
||||||
{
|
{
|
||||||
sctp_statistics[0] = alloc_percpu(struct sctp_mib);
|
return snmp_mib_init((void**)sctp_statistics, sizeof(struct sctp_mib));
|
||||||
if (!sctp_statistics[0])
|
|
||||||
return -ENOMEM;
|
|
||||||
sctp_statistics[1] = alloc_percpu(struct sctp_mib);
|
|
||||||
if (!sctp_statistics[1]) {
|
|
||||||
free_percpu(sctp_statistics[0]);
|
|
||||||
return -ENOMEM;
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void cleanup_sctp_mibs(void)
|
static inline void cleanup_sctp_mibs(void)
|
||||||
{
|
{
|
||||||
free_percpu(sctp_statistics[0]);
|
snmp_mib_free((void**)sctp_statistics);
|
||||||
free_percpu(sctp_statistics[1]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void sctp_v4_pf_init(void)
|
static void sctp_v4_pf_init(void)
|
||||||
|
|
Loading…
Reference in New Issue