mirror of
https://github.com/torvalds/linux.git
synced 2024-12-28 22:02:28 +00:00
sctp: loading sctp when load sctp_probe
when I modprobe sctp_probe, it failed with "FATAL: ". I found that sctp should load before sctp_probe register jprobe. So I add a sctp_setup_jprobe for loading 'sctp' when first failed to register jprobe, just do this similar to dccp_probe. v2: add MODULE_SOFTDEP and check of request_module, as suggested by Neil Signed-off-by: Wang Weidong <wangweidong1@huawei.com> Acked-by: Neil Horman <nhorman@tuxdriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
319e2e3f63
commit
9bd7d20c45
@ -38,6 +38,7 @@
|
|||||||
#include <net/sctp/sctp.h>
|
#include <net/sctp/sctp.h>
|
||||||
#include <net/sctp/sm.h>
|
#include <net/sctp/sm.h>
|
||||||
|
|
||||||
|
MODULE_SOFTDEP("pre: sctp");
|
||||||
MODULE_AUTHOR("Wei Yongjun <yjwei@cn.fujitsu.com>");
|
MODULE_AUTHOR("Wei Yongjun <yjwei@cn.fujitsu.com>");
|
||||||
MODULE_DESCRIPTION("SCTP snooper");
|
MODULE_DESCRIPTION("SCTP snooper");
|
||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
@ -182,6 +183,20 @@ static struct jprobe sctp_recv_probe = {
|
|||||||
.entry = jsctp_sf_eat_sack,
|
.entry = jsctp_sf_eat_sack,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static __init int sctp_setup_jprobe(void)
|
||||||
|
{
|
||||||
|
int ret = register_jprobe(&sctp_recv_probe);
|
||||||
|
|
||||||
|
if (ret) {
|
||||||
|
if (request_module("sctp"))
|
||||||
|
goto out;
|
||||||
|
ret = register_jprobe(&sctp_recv_probe);
|
||||||
|
}
|
||||||
|
|
||||||
|
out:
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
static __init int sctpprobe_init(void)
|
static __init int sctpprobe_init(void)
|
||||||
{
|
{
|
||||||
int ret = -ENOMEM;
|
int ret = -ENOMEM;
|
||||||
@ -202,7 +217,7 @@ static __init int sctpprobe_init(void)
|
|||||||
&sctpprobe_fops))
|
&sctpprobe_fops))
|
||||||
goto free_kfifo;
|
goto free_kfifo;
|
||||||
|
|
||||||
ret = register_jprobe(&sctp_recv_probe);
|
ret = sctp_setup_jprobe();
|
||||||
if (ret)
|
if (ret)
|
||||||
goto remove_proc;
|
goto remove_proc;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user