diff options
Diffstat (limited to 'include/linux/nfs_xdr.h')
| -rw-r--r-- | include/linux/nfs_xdr.h | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/nfs_xdr.h b/include/linux/nfs_xdr.h index 78b101e487e..7e371f7df9c 100644 --- a/include/linux/nfs_xdr.h +++ b/include/linux/nfs_xdr.h @@ -50,6 +50,7 @@ struct nfs_fattr {  	} du;  	struct nfs_fsid		fsid;  	__u64			fileid; +	__u64			mounted_on_fileid;  	struct timespec		atime;  	struct timespec		mtime;  	struct timespec		ctime; @@ -83,6 +84,7 @@ struct nfs_fattr {  #define NFS_ATTR_FATTR_PRECHANGE	(1U << 18)  #define NFS_ATTR_FATTR_V4_REFERRAL	(1U << 19)	/* NFSv4 referral */  #define NFS_ATTR_FATTR_MOUNTPOINT	(1U << 20)	/* Treat as mountpoint */ +#define NFS_ATTR_FATTR_MOUNTED_ON_FILEID		(1U << 21)  #define NFS_ATTR_FATTR (NFS_ATTR_FATTR_TYPE \  		| NFS_ATTR_FATTR_MODE \ @@ -231,6 +233,7 @@ struct nfs4_layoutget {  	struct nfs4_layoutget_args args;  	struct nfs4_layoutget_res res;  	struct pnfs_layout_segment **lsegpp; +	gfp_t gfp_flags;  };  struct nfs4_getdeviceinfo_args {  |