Re: [PATCH 1/8] block: add WRITE_BG

2016-10-28 Thread Jens Axboe
On 10/27/2016 12:37 AM, Christoph Hellwig wrote: * non-volatile media on completion. + * WRITE_BGBackground write. This is for background activity like + * the periodic flush and background threshold writeback * */ #define RW_MASK

Re: [PATCH 1/8] block: add WRITE_BG

2016-10-26 Thread Christoph Hellwig
> * non-volatile media on completion. > + * WRITE_BG Background write. This is for background activity like > + * the periodic flush and background threshold writeback > * > */ > #define RW_MASK REQ_OP_WRITE > @@ -202,6 +204,7

[PATCH 1/8] block: add WRITE_BG

2016-10-26 Thread Jens Axboe
This adds a new request flag, REQ_BG, that callers can use to tell the block layer that this is background (non-urgent) IO. Signed-off-by: Jens Axboe --- include/linux/blk_types.h | 4 +++- include/linux/fs.h| 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/include/l

[PATCH 1/8] block: add WRITE_BG

2016-09-07 Thread Jens Axboe
This adds a new request flag, REQ_BG, that callers can use to tell the block layer that this is background (non-urgent) IO. Signed-off-by: Jens Axboe --- include/linux/blk_types.h | 4 +++- include/linux/fs.h| 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/include/l

Re: [PATCH 1/8] block: add WRITE_BG

2016-09-01 Thread Johannes Thumshirn
On Thu, Sep 01, 2016 at 09:55:18AM +0200, Johannes Thumshirn wrote: > On Wed, Aug 31, 2016 at 11:05:44AM -0600, Jens Axboe wrote: > > This adds a new request flag, REQ_BG, that callers can use to tell > > the block layer that this is background (non-urgent) IO. > > > > Signed-off-by: Jens Axboe >

Re: [PATCH 1/8] block: add WRITE_BG

2016-09-01 Thread Johannes Thumshirn
On Wed, Aug 31, 2016 at 11:05:44AM -0600, Jens Axboe wrote: > This adds a new request flag, REQ_BG, that callers can use to tell > the block layer that this is background (non-urgent) IO. > > Signed-off-by: Jens Axboe > --- s/WRITE_BG/REQ_BG/ in Subject? -- Johannes Thumshirn

[PATCH 1/8] block: add WRITE_BG

2016-08-31 Thread Jens Axboe
This adds a new request flag, REQ_BG, that callers can use to tell the block layer that this is background (non-urgent) IO. Signed-off-by: Jens Axboe --- include/linux/blk_types.h | 4 +++- include/linux/fs.h| 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/include/l

[PATCH 1/8] block: add WRITE_BG

2016-04-26 Thread Jens Axboe
This adds a new request flag, REQ_BG, that callers can use to tell the block layer that this is background (non-urgent) IO. No functional changes in this patch. Signed-off-by: Jens Axboe --- include/linux/blk_types.h | 4 +++- include/linux/fs.h| 4 2 files changed, 7 insertions(+)

[PATCH 1/8] block: add WRITE_BG

2016-04-17 Thread Jens Axboe
This adds a new request flag, REQ_BG, that callers can use to tell the block layer that this is background (non-urgent) IO. Signed-off-by: Jens Axboe --- include/linux/blk_types.h | 4 +++- include/linux/fs.h| 4 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/include/