diff options
| author | Dmitry Torokhov <[email protected]> | 2017-09-04 09:22:54 -0700 | 
|---|---|---|
| committer | Dmitry Torokhov <[email protected]> | 2017-09-04 09:22:54 -0700 | 
| commit | a6cbfa1e6d38c4b3ab0ce7e3aea4bb4e744f24b8 (patch) | |
| tree | 8960e571a398b5d32e72bdb9c89ce965daa870ab /fs/xfs/xfs_buf.h | |
| parent | f5308d1b83eba20e69df5e0926ba7257c8dd9074 (diff) | |
| parent | 08d6ac9ee5fedd82040bc878705981b67a116a3f (diff) | |
Merge branch 'next' into for-linus
Prepare input updates for 4.14 merge window.
Diffstat (limited to 'fs/xfs/xfs_buf.h')
| -rw-r--r-- | fs/xfs/xfs_buf.h | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/xfs/xfs_buf.h b/fs/xfs/xfs_buf.h index 8d1d44f87ce9..1508121f29f2 100644 --- a/fs/xfs/xfs_buf.h +++ b/fs/xfs/xfs_buf.h @@ -63,7 +63,6 @@ typedef enum {  #define _XBF_KMEM	 (1 << 21)/* backed by heap memory */  #define _XBF_DELWRI_Q	 (1 << 22)/* buffer on a delwri queue */  #define _XBF_COMPOUND	 (1 << 23)/* compound buffer */ -#define _XBF_IN_FLIGHT	 (1 << 25) /* I/O in flight, for accounting purposes */  typedef unsigned int xfs_buf_flags_t; @@ -84,14 +83,14 @@ typedef unsigned int xfs_buf_flags_t;  	{ _XBF_PAGES,		"PAGES" }, \  	{ _XBF_KMEM,		"KMEM" }, \  	{ _XBF_DELWRI_Q,	"DELWRI_Q" }, \ -	{ _XBF_COMPOUND,	"COMPOUND" }, \ -	{ _XBF_IN_FLIGHT,	"IN_FLIGHT" } +	{ _XBF_COMPOUND,	"COMPOUND" }  /*   * Internal state flags.   */  #define XFS_BSTATE_DISPOSE	 (1 << 0)	/* buffer being discarded */ +#define XFS_BSTATE_IN_FLIGHT	 (1 << 1)	/* I/O in flight */  /*   * The xfs_buftarg contains 2 notions of "sector size" -  |