Skip to content
Snippets Groups Projects
Commit ad01b1ca authored by Milton Miller's avatar Milton Miller Committed by Jens Axboe
Browse files

[PATCH] blktrace: fix read-ahead bit


It should be toggling the same bit on and off, fix it up.

Signed-off-by: default avatarJens Axboe <axboe@suse.de>
parent 7b30f092
No related branches found
No related tags found
No related merge requests found
...@@ -80,7 +80,7 @@ static u32 bio_act[5] __read_mostly = { 0, BLK_TC_ACT(BLK_TC_BARRIER), BLK_TC_AC ...@@ -80,7 +80,7 @@ static u32 bio_act[5] __read_mostly = { 0, BLK_TC_ACT(BLK_TC_BARRIER), BLK_TC_AC
#define trace_sync_bit(rw) \ #define trace_sync_bit(rw) \
(((rw) & (1 << BIO_RW_SYNC)) >> (BIO_RW_SYNC - 1)) (((rw) & (1 << BIO_RW_SYNC)) >> (BIO_RW_SYNC - 1))
#define trace_ahead_bit(rw) \ #define trace_ahead_bit(rw) \
(((rw) & (1 << BIO_RW_AHEAD)) << (BIO_RW_AHEAD - 0)) (((rw) & (1 << BIO_RW_AHEAD)) << (2 - BIO_RW_AHEAD))
/* /*
* The worker for the various blk_add_trace*() types. Fills out a * The worker for the various blk_add_trace*() types. Fills out a
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment