mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 01:22:07 +00:00
1c6dcbe5ce
The SEEK operation is used when an application makes an lseek call with either the SEEK_HOLE or SEEK_DATA flags set. I fall back on nfs_file_llseek() if the server does not have SEEK support. Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com> Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
15 lines
316 B
C
15 lines
316 B
C
/*
|
|
* Copyright (c) 2014 Anna Schumaker <Anna.Schumaker@Netapp.com>
|
|
*/
|
|
|
|
#ifndef __LINUX_FS_NFS_NFS4_2_H
|
|
#define __LINUX_FS_NFS_NFS4_2_H
|
|
|
|
/* nfs4.2proc.c */
|
|
loff_t nfs42_proc_llseek(struct file *, loff_t, int);
|
|
|
|
/* nfs4.2xdr.h */
|
|
extern struct rpc_procinfo nfs4_2_procedures[];
|
|
|
|
#endif /* __LINUX_FS_NFS_NFS4_2_H */
|