.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * linux/net/sunrpc/sunrpc_syms.c |
---|
3 | 4 | * |
---|
.. | .. |
---|
22 | 23 | #include <linux/sunrpc/rpc_pipe_fs.h> |
---|
23 | 24 | #include <linux/sunrpc/xprtsock.h> |
---|
24 | 25 | |
---|
| 26 | +#include "sunrpc.h" |
---|
25 | 27 | #include "netns.h" |
---|
26 | 28 | |
---|
27 | 29 | unsigned int sunrpc_net_id; |
---|
.. | .. |
---|
130 | 132 | unregister_rpc_pipefs(); |
---|
131 | 133 | rpc_destroy_mempool(); |
---|
132 | 134 | unregister_pernet_subsys(&sunrpc_net_ops); |
---|
| 135 | + auth_domain_cleanup(); |
---|
133 | 136 | #if IS_ENABLED(CONFIG_SUNRPC_DEBUG) |
---|
134 | 137 | rpc_unregister_sysctl(); |
---|
135 | 138 | #endif |
---|
136 | 139 | rcu_barrier(); /* Wait for completion of call_rcu()'s */ |
---|
137 | 140 | } |
---|
138 | 141 | MODULE_LICENSE("GPL"); |
---|
| 142 | +MODULE_IMPORT_NS(VFS_internal_I_am_really_a_filesystem_and_am_NOT_a_driver); |
---|
139 | 143 | fs_initcall(init_sunrpc); /* Ensure we're initialised before nfs */ |
---|
140 | 144 | module_exit(cleanup_sunrpc); |
---|