aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/blk-cgroup.h
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2016-11-01 07:40:03 -0600
committerJens Axboe <axboe@fb.com>2016-11-01 09:43:26 -0600
commitd71d9ae14a0942fae519d890a743b12679e3d153 (patch)
treea87a14bb9719bd00b02f8ae5802518f7542f8403 /include/linux/blk-cgroup.h
parentcfq-iosched: use op_is_sync instead of opencoding it (diff)
downloadwireguard-linux-d71d9ae14a0942fae519d890a743b12679e3d153.tar.xz
wireguard-linux-d71d9ae14a0942fae519d890a743b12679e3d153.zip
blk-cgroup: use op_is_sync to check for synchronous requests
Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'include/linux/blk-cgroup.h')
-rw-r--r--include/linux/blk-cgroup.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/blk-cgroup.h b/include/linux/blk-cgroup.h
index ddaf28d0988f..01b62e7bac74 100644
--- a/include/linux/blk-cgroup.h
+++ b/include/linux/blk-cgroup.h
@@ -599,7 +599,7 @@ static inline void blkg_rwstat_add(struct blkg_rwstat *rwstat,
__percpu_counter_add(cnt, val, BLKG_STAT_CPU_BATCH);
- if (op & REQ_SYNC)
+ if (op_is_sync(op))
cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_SYNC];
else
cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_ASYNC];