Merge tag 'rproc-v6.14' of git://git.kernel.org/pub/scm/linux/kernel/git/remoteproc...
[linux.git] / fs / nfs / nfs3super.c
blob20a80478449e4306b777abebda3950d0d6ffb835
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Copyright (c) 2012 Netapp, Inc. All rights reserved.
4 */
5 #include <linux/module.h>
6 #include <linux/nfs_fs.h>
7 #include "internal.h"
8 #include "nfs3_fs.h"
9 #include "nfs.h"
11 struct nfs_subversion nfs_v3 = {
12 .owner = THIS_MODULE,
13 .nfs_fs = &nfs_fs_type,
14 .rpc_vers = &nfs_version3,
15 .rpc_ops = &nfs_v3_clientops,
16 .sops = &nfs_sops,
19 static int __init init_nfs_v3(void)
21 register_nfs_version(&nfs_v3);
22 return 0;
25 static void __exit exit_nfs_v3(void)
27 unregister_nfs_version(&nfs_v3);
30 MODULE_DESCRIPTION("NFSv3 client support");
31 MODULE_LICENSE("GPL");
33 module_init(init_nfs_v3);
34 module_exit(exit_nfs_v3);