diff options
Diffstat (limited to 'net/sunrpc/sunrpc_syms.c')
-rw-r--r-- | net/sunrpc/sunrpc_syms.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/sunrpc/sunrpc_syms.c b/net/sunrpc/sunrpc_syms.c index faaf81e97720..d85fddeb6388 100644 --- a/net/sunrpc/sunrpc_syms.c +++ b/net/sunrpc/sunrpc_syms.c | |||
@@ -138,6 +138,8 @@ EXPORT_SYMBOL(nlm_debug); | |||
138 | extern int register_rpc_pipefs(void); | 138 | extern int register_rpc_pipefs(void); |
139 | extern void unregister_rpc_pipefs(void); | 139 | extern void unregister_rpc_pipefs(void); |
140 | extern struct cache_detail ip_map_cache; | 140 | extern struct cache_detail ip_map_cache; |
141 | extern int init_socket_xprt(void); | ||
142 | extern void cleanup_socket_xprt(void); | ||
141 | 143 | ||
142 | static int __init | 144 | static int __init |
143 | init_sunrpc(void) | 145 | init_sunrpc(void) |
@@ -155,6 +157,7 @@ init_sunrpc(void) | |||
155 | rpc_proc_init(); | 157 | rpc_proc_init(); |
156 | #endif | 158 | #endif |
157 | cache_register(&ip_map_cache); | 159 | cache_register(&ip_map_cache); |
160 | init_socket_xprt(); | ||
158 | out: | 161 | out: |
159 | return err; | 162 | return err; |
160 | } | 163 | } |
@@ -162,6 +165,7 @@ out: | |||
162 | static void __exit | 165 | static void __exit |
163 | cleanup_sunrpc(void) | 166 | cleanup_sunrpc(void) |
164 | { | 167 | { |
168 | cleanup_socket_xprt(); | ||
165 | unregister_rpc_pipefs(); | 169 | unregister_rpc_pipefs(); |
166 | rpc_destroy_mempool(); | 170 | rpc_destroy_mempool(); |
167 | if (cache_unregister(&ip_map_cache)) | 171 | if (cache_unregister(&ip_map_cache)) |