summaryrefslogtreecommitdiffstats
path: root/fs/nfsd/vfs.c
diff options
context:
space:
mode:
authorChristoph Hellwig2014-05-28 10:46:32 +0200
committerJ. Bruce Fields2014-05-30 23:32:27 +0200
commitb52bd7bccca57b2bbe837d14a0bf3e45279459a8 (patch)
tree0c815d914a4117b33e0daafe9754a5c9570afe9e /fs/nfsd/vfs.c
parentnfsd: getattr for FATTR4_WORD0_FILES_AVAIL needs the statfs buffer (diff)
downloadkernel-qcow2-linux-b52bd7bccca57b2bbe837d14a0bf3e45279459a8.tar.gz
kernel-qcow2-linux-b52bd7bccca57b2bbe837d14a0bf3e45279459a8.tar.xz
kernel-qcow2-linux-b52bd7bccca57b2bbe837d14a0bf3e45279459a8.zip
nfsd: remove unused function nfsd_read_file
Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/vfs.c')
-rw-r--r--fs/nfsd/vfs.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c
index b7d35a4afefb..140c496f612c 100644
--- a/fs/nfsd/vfs.c
+++ b/fs/nfsd/vfs.c
@@ -1026,26 +1026,6 @@ __be32 nfsd_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
return err;
}
-/* As above, but use the provided file descriptor. */
-__be32
-nfsd_read_file(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
- loff_t offset, struct kvec *vec, int vlen,
- unsigned long *count)
-{
- __be32 err;
-
- if (file) {
- err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
- NFSD_MAY_READ|NFSD_MAY_OWNER_OVERRIDE);
- if (err)
- goto out;
- err = nfsd_vfs_read(rqstp, file, offset, vec, vlen, count);
- } else /* Note file may still be NULL in NFSv4 special stateid case: */
- err = nfsd_read(rqstp, fhp, offset, vec, vlen, count);
-out:
- return err;
-}
-
/*
* Write data to a file.
* The stable flag requests synchronous writes.