Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2012 Netapp, Inc. All rights reserved. |
| 3 | */ |
| 4 | #include <linux/module.h> |
| 5 | #include <linux/nfs_fs.h> |
| 6 | #include "internal.h" |
| 7 | #include "nfs.h" |
| 8 | |
| 9 | static struct nfs_subversion nfs_v3 = { |
| 10 | .owner = THIS_MODULE, |
| 11 | .nfs_fs = &nfs_fs_type, |
| 12 | .rpc_vers = &nfs_version3, |
| 13 | .rpc_ops = &nfs_v3_clientops, |
Bryan Schumaker | 6a74490 | 2012-07-30 16:05:20 -0400 | [diff] [blame] | 14 | .sops = &nfs_sops, |
Christoph Hellwig | 013cdf1 | 2013-12-20 05:16:53 -0800 | [diff] [blame] | 15 | #ifdef CONFIG_NFS_V3_ACL |
| 16 | .xattr = nfs3_xattr_handlers, |
| 17 | #endif |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 18 | }; |
| 19 | |
Bryan Schumaker | 1c606fb | 2012-07-30 16:05:24 -0400 | [diff] [blame] | 20 | static int __init init_nfs_v3(void) |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 21 | { |
| 22 | register_nfs_version(&nfs_v3); |
| 23 | return 0; |
| 24 | } |
| 25 | |
Bryan Schumaker | 1c606fb | 2012-07-30 16:05:24 -0400 | [diff] [blame] | 26 | static void __exit exit_nfs_v3(void) |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 27 | { |
| 28 | unregister_nfs_version(&nfs_v3); |
| 29 | } |
Bryan Schumaker | 1c606fb | 2012-07-30 16:05:24 -0400 | [diff] [blame] | 30 | |
| 31 | MODULE_LICENSE("GPL"); |
| 32 | |
| 33 | module_init(init_nfs_v3); |
| 34 | module_exit(exit_nfs_v3); |