]> git.baikalelectronics.ru Git - kernel.git/commit
bcache: use op_is_write instead of checking for REQ_WRITE
authorMike Christie <mchristi@redhat.com>
Sun, 5 Jun 2016 19:31:47 +0000 (14:31 -0500)
committerJens Axboe <axboe@fb.com>
Tue, 7 Jun 2016 19:41:38 +0000 (13:41 -0600)
commitbd71b9d8a80115d6fa9ea524233c6d27ff9d8847
treec39ae14478ad516b0a01a975181833f30a483f63
parent9ac20b49de7c076654e68f6f7c39e14f26bfd959
bcache: use op_is_write instead of checking for REQ_WRITE

We currently set REQ_WRITE/WRITE for all non READ IOs
like discard, flush, writesame, etc. In the next patches where we
no longer set up the op as a bitmap, we will not be able to
detect a operation direction like writesame by testing if REQ_WRITE is
set.

This has bcache use the op_is_write helper which will do the right
thing.

Signed-off-by: Mike Christie <mchristi@redhat.com>
Reviewed-by: Hannes Reinecke <hare@suse.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
drivers/md/bcache/io.c
drivers/md/bcache/request.c