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" 10 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, 17 #ifdef CONFIG_NFS_V3_ACL 18 .xattr = nfs3_xattr_handlers, 19 #endif 20 }; 21 22 static int __init init_nfs_v3(void) 23 { 24 register_nfs_version(&nfs_v3); 25 return 0; 26 } 27 28 static void __exit exit_nfs_v3(void) 29 { 30 unregister_nfs_version(&nfs_v3); 31 } 32 33 MODULE_LICENSE("GPL"); 34 35 module_init(init_nfs_v3); 36 module_exit(exit_nfs_v3); 37