2 * Copyright (c) 2012 Netapp, Inc. All rights reserved.
4 #include <linux/module.h>
5 #include <linux/nfs_fs.h>
9 static struct nfs_subversion nfs_v3 = {
11 .nfs_fs = &nfs_fs_type,
12 .rpc_vers = &nfs_version3,
13 .rpc_ops = &nfs_v3_clientops,
16 int __init init_nfs_v3(void)
18 register_nfs_version(&nfs_v3);
22 void exit_nfs_v3(void)
24 unregister_nfs_version(&nfs_v3);