sctp: fix missing label when PROC_FS=n
Fix missing label when CONFIG_PROC_FS=n: net/sctp/protocol.c: In function 'sctp_proc_init': net/sctp/protocol.c:106: error: label 'out_nomem' used but not defined make[3]: *** [net/sctp/protocol.o] Error 1 Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
40a914fa72
commit
157653ce79
1 changed files with 3 additions and 2 deletions
|
@ -139,11 +139,12 @@ static __init int sctp_proc_init(void)
|
||||||
}
|
}
|
||||||
out_free_percpu:
|
out_free_percpu:
|
||||||
percpu_counter_destroy(&sctp_sockets_allocated);
|
percpu_counter_destroy(&sctp_sockets_allocated);
|
||||||
out_nomem:
|
|
||||||
return -ENOMEM;
|
|
||||||
#else
|
#else
|
||||||
return 0;
|
return 0;
|
||||||
#endif /* CONFIG_PROC_FS */
|
#endif /* CONFIG_PROC_FS */
|
||||||
|
|
||||||
|
out_nomem:
|
||||||
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Clean up the proc fs entry for the SCTP protocol.
|
/* Clean up the proc fs entry for the SCTP protocol.
|
||||||
|
|
Loading…
Reference in a new issue