mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-18 12:56:18 +07:00
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>
This commit is contained in:
parent
c1b69b1ca1
commit
878ffa9f85
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user