diff options
Diffstat (limited to 'drivers/net/pppox.c')
-rw-r--r-- | drivers/net/pppox.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/net/pppox.c b/drivers/net/pppox.c index 3f8115db4d54..f3e47d0c2b3c 100644 --- a/drivers/net/pppox.c +++ b/drivers/net/pppox.c | |||
@@ -31,6 +31,7 @@ | |||
31 | #include <linux/ppp_defs.h> | 31 | #include <linux/ppp_defs.h> |
32 | #include <linux/if_ppp.h> | 32 | #include <linux/if_ppp.h> |
33 | #include <linux/ppp_channel.h> | 33 | #include <linux/ppp_channel.h> |
34 | #include <linux/kmod.h> | ||
34 | 35 | ||
35 | #include <net/sock.h> | 36 | #include <net/sock.h> |
36 | 37 | ||
@@ -114,6 +115,13 @@ static int pppox_create(struct socket *sock, int protocol) | |||
114 | goto out; | 115 | goto out; |
115 | 116 | ||
116 | rc = -EPROTONOSUPPORT; | 117 | rc = -EPROTONOSUPPORT; |
118 | #ifdef CONFIG_KMOD | ||
119 | if (!pppox_protos[protocol]) { | ||
120 | char buffer[32]; | ||
121 | sprintf(buffer, "pppox-proto-%d", protocol); | ||
122 | request_module(buffer); | ||
123 | } | ||
124 | #endif | ||
117 | if (!pppox_protos[protocol] || | 125 | if (!pppox_protos[protocol] || |
118 | !try_module_get(pppox_protos[protocol]->owner)) | 126 | !try_module_get(pppox_protos[protocol]->owner)) |
119 | goto out; | 127 | goto out; |