diff options
| author | Michael Ellerman <mpe@ellerman.id.au> | 2017-07-31 20:20:29 +1000 | 
|---|---|---|
| committer | Michael Ellerman <mpe@ellerman.id.au> | 2017-07-31 20:20:29 +1000 | 
| commit | bb272221e9db79f13d454e1f3fb6b05013be985e (patch) | |
| tree | 36f4acc50e3fabac71fadd34c720c0a6011db470 /include/linux/nfs_page.h | |
| parent | 253fd51e2f533552ae35a0c661705da6c4842c1b (diff) | |
| parent | 5771a8c08880cdca3bfb4a3fc6d309d6bba20877 (diff) | |
Merge tag 'v4.13-rc1' into fixes
The fixes branch is based off a random pre-rc1 commit, because we had
some fixes that needed to go in before rc1 was released.
However we now need to fix some code that went in after that point, but
before rc1, so merge rc1 to get that code into fixes so we can fix it!
Diffstat (limited to 'include/linux/nfs_page.h')
| -rw-r--r-- | include/linux/nfs_page.h | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/nfs_page.h b/include/linux/nfs_page.h index 247cc3d3498f..d67b67ae6c8b 100644 --- a/include/linux/nfs_page.h +++ b/include/linux/nfs_page.h @@ -33,6 +33,8 @@ enum {  	PG_UPTODATE,		/* page group sync bit in read path */  	PG_WB_END,		/* page group sync bit in write path */  	PG_REMOVE,		/* page group sync bit in write path */ +	PG_CONTENDED1,		/* Is someone waiting for a lock? */ +	PG_CONTENDED2,		/* Is someone waiting for a lock? */  };  struct nfs_inode; @@ -93,8 +95,8 @@ struct nfs_pageio_descriptor {  	const struct rpc_call_ops *pg_rpc_callops;  	const struct nfs_pgio_completion_ops *pg_completion_ops;  	struct pnfs_layout_segment *pg_lseg; +	struct nfs_io_completion *pg_io_completion;  	struct nfs_direct_req	*pg_dreq; -	void			*pg_layout_private;  	unsigned int		pg_bsize;	/* default bsize for mirrors */  	u32			pg_mirror_count;  | 
