[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:
YOSHIFUJI Hideaki 2008-04-10 03:50:13 -07:00 committed by David S. Miller
parent 24e8b7e484
commit 996b1dbadc
1 changed files with 4 additions and 14 deletions

View File

@ -972,24 +972,14 @@ int sctp_register_pf(struct sctp_pf *pf, sa_family_t family)
return 1;
}
static int __init init_sctp_mibs(void)
static inline int init_sctp_mibs(void)
{
sctp_statistics[0] = alloc_percpu(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;
return snmp_mib_init((void**)sctp_statistics, sizeof(struct sctp_mib));
}
static void cleanup_sctp_mibs(void)
static inline void cleanup_sctp_mibs(void)
{
free_percpu(sctp_statistics[0]);
free_percpu(sctp_statistics[1]);
snmp_mib_free((void**)sctp_statistics);
}
static void sctp_v4_pf_init(void)