hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/net/sunrpc/sunrpc_syms.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-only
12 /*
23 * linux/net/sunrpc/sunrpc_syms.c
34 *
....@@ -22,6 +23,7 @@
2223 #include <linux/sunrpc/rpc_pipe_fs.h>
2324 #include <linux/sunrpc/xprtsock.h>
2425
26
+#include "sunrpc.h"
2527 #include "netns.h"
2628
2729 unsigned int sunrpc_net_id;
....@@ -130,11 +132,13 @@
130132 unregister_rpc_pipefs();
131133 rpc_destroy_mempool();
132134 unregister_pernet_subsys(&sunrpc_net_ops);
135
+ auth_domain_cleanup();
133136 #if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
134137 rpc_unregister_sysctl();
135138 #endif
136139 rcu_barrier(); /* Wait for completion of call_rcu()'s */
137140 }
138141 MODULE_LICENSE("GPL");
142
+MODULE_IMPORT_NS(VFS_internal_I_am_really_a_filesystem_and_am_NOT_a_driver);
139143 fs_initcall(init_sunrpc); /* Ensure we're initialised before nfs */
140144 module_exit(cleanup_sunrpc);