mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 05:02:12 +00:00
6a74490dca
I can set all variables in the nfs_fill_super() function, allowing me to remove the nfs4_fill_super() function. Signed-off-by: Bryan Schumaker <bjschuma@netapp.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
27 lines
471 B
C
27 lines
471 B
C
/*
|
|
* Copyright (c) 2012 Netapp, Inc. All rights reserved.
|
|
*/
|
|
#include <linux/module.h>
|
|
#include <linux/nfs_fs.h>
|
|
#include "internal.h"
|
|
#include "nfs.h"
|
|
|
|
static struct nfs_subversion nfs_v3 = {
|
|
.owner = THIS_MODULE,
|
|
.nfs_fs = &nfs_fs_type,
|
|
.rpc_vers = &nfs_version3,
|
|
.rpc_ops = &nfs_v3_clientops,
|
|
.sops = &nfs_sops,
|
|
};
|
|
|
|
int __init init_nfs_v3(void)
|
|
{
|
|
register_nfs_version(&nfs_v3);
|
|
return 0;
|
|
}
|
|
|
|
void exit_nfs_v3(void)
|
|
{
|
|
unregister_nfs_version(&nfs_v3);
|
|
}
|