[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <52B043D9.9090808@huawei.com>
Date: Tue, 17 Dec 2013 20:30:17 +0800
From: Wang Weidong <wangweidong1@...wei.com>
To: <gerrit@....abdn.ac.uk>, David Miller <davem@...emloft.net>
CC: <dccp@...r.kernel.org>, <netdev@...r.kernel.org>
Subject: [PATCH net-next] dccp: add check request_moduls in setup_jprobe
when register_jprobe failed, we will try request_module. But some
time request_module will failed such as the dccp is not exist. so
check the request_module for avoiding do register_jprobe again.
Signed-off-by: Wang Weidong <wangweidong1@...wei.com>
---
net/dccp/probe.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/net/dccp/probe.c b/net/dccp/probe.c
index 4c6bdf9..53158d2 100644
--- a/net/dccp/probe.c
+++ b/net/dccp/probe.c
@@ -157,9 +157,12 @@ static __init int setup_jprobe(void)
int ret = register_jprobe(&dccp_send_probe);
if (ret) {
- request_module("dccp");
+ if (request_module("dccp"))
+ goto out;
ret = register_jprobe(&dccp_send_probe);
}
+
+out:
return ret;
}
--
1.7.12
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists