diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2010-12-14 14:58:49 (GMT) |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2010-12-16 17:37:25 (GMT) |
commit | b43cd8c153f6902100ed50c1f7e11a470c73a73f (patch) | |
tree | 9d7f5b185eb1e6c1a904ab03bd8fb60abaf677a0 | |
parent | 98eb2b4f9323bcf2a46476576d3155758cb0a473 (diff) | |
download | linux-fsl-qoriq-b43cd8c153f6902100ed50c1f7e11a470c73a73f.tar.xz |
NFS: Remove unused UMNT response data structure
Clean up.
The UMNT request has a NULL response. There's no need to set up a
mountres structure for it.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
-rw-r--r-- | fs/nfs/mount_clnt.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/nfs/mount_clnt.c b/fs/nfs/mount_clnt.c index c82547e..97c3ec7 100644 --- a/fs/nfs/mount_clnt.c +++ b/fs/nfs/mount_clnt.c @@ -236,10 +236,8 @@ void nfs_umount(const struct nfs_mount_request *info) .authflavor = RPC_AUTH_UNIX, .flags = RPC_CLNT_CREATE_NOPING, }; - struct mountres result; struct rpc_message msg = { .rpc_argp = info->dirpath, - .rpc_resp = &result, }; struct rpc_clnt *clnt; int status; |