bcache: use REQ_PRIO to indicate bio for metadata
authorColy Li <colyli@suse.de>
Mon, 8 Oct 2018 12:41:09 +0000 (20:41 +0800)
committerJens Axboe <axboe@kernel.dk>
Mon, 8 Oct 2018 14:19:40 +0000 (08:19 -0600)
commit752f66a75abad2ae40b4570b3c77b422389cffcf
treec8ca90145fc8dc948f2722a11b932aefb0b74940
parent502b291568fc7faf1ebdb2c2590f12851db0ff76
bcache: use REQ_PRIO to indicate bio for metadata

In cached_dev_cache_miss() and check_should_bypass(), REQ_META is used
to check whether a bio is for metadata request. REQ_META is used for
blktrace, the correct REQ_ flag should be REQ_PRIO. This flag means the
bio should be prior to other bio, and frequently be used to indicate
metadata io in file system code.

This patch replaces REQ_META with correct flag REQ_PRIO.

CC Adam Manzanares because he explains to me what REQ_PRIO is for.

Signed-off-by: Coly Li <colyli@suse.de>
Cc: Adam Manzanares <adam.manzanares@wdc.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/md/bcache/request.c