summaryrefslogtreecommitdiffstats
path: root/fs/nfs/nfs42proc.c
diff options
context:
space:
mode:
authorAnna Schumaker2014-10-23 20:00:54 +0200
committerTrond Myklebust2014-11-24 18:49:13 +0100
commit878ffa9f855e84d35d950f1abeb5a37b8435baea (patch)
treeb08c4741239a07b2a404999a45e4a6125b01e116 /fs/nfs/nfs42proc.c
parentnfs: Remove dead case from nfs4_map_errors() (diff)
downloadkernel-qcow2-linux-878ffa9f855e84d35d950f1abeb5a37b8435baea.tar.gz
kernel-qcow2-linux-878ffa9f855e84d35d950f1abeb5a37b8435baea.tar.xz
kernel-qcow2-linux-878ffa9f855e84d35d950f1abeb5a37b8435baea.zip
NFS: Use nfs_server_capable() for checknig NFS_CAP_SEEK
This should make the code easier to maintain in the future. Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com> Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'fs/nfs/nfs42proc.c')
-rw-r--r--fs/nfs/nfs42proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/nfs42proc.c b/fs/nfs/nfs42proc.c
index 0886f1db5917..056f5aafecc1 100644
--- a/fs/nfs/nfs42proc.c
+++ b/fs/nfs/nfs42proc.c
@@ -50,7 +50,7 @@ loff_t nfs42_proc_llseek(struct file *filep, loff_t offset, int whence)
struct nfs_server *server = NFS_SERVER(inode);
int status;
- if (!(server->caps & NFS_CAP_SEEK))
+ if (!nfs_server_capable(inode, NFS_CAP_SEEK))
return -ENOTSUPP;
status = nfs42_set_rw_stateid(&args.sa_stateid, filep, FMODE_READ);