aboutsummaryrefslogtreecommitdiffstats
path: root/block/blk-core.c
diff options
context:
space:
mode:
authorJens Axboe <jens.axboe@oracle.com>2008-08-08 05:04:44 -0400
committerJens Axboe <jens.axboe@oracle.com>2008-10-09 02:56:00 -0400
commita9c701e594669dd49fed448c27c64f20cfacc8a7 (patch)
treef5524a3612ccbfa758a2b9808111297d7ba17698 /block/blk-core.c
parent7a67f63b3233ff28e753854fe27891c44f8588ae (diff)
block: use bio_has_data() to check for data carrying bio
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'block/blk-core.c')
-rw-r--r--block/blk-core.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/block/blk-core.c b/block/blk-core.c
index 2cba5ef97b2b..54e442ba44aa 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -1490,10 +1490,7 @@ void submit_bio(int rw, struct bio *bio)
1490 * If it's a regular read/write or a barrier with data attached, 1490 * If it's a regular read/write or a barrier with data attached,
1491 * go through the normal accounting stuff before submission. 1491 * go through the normal accounting stuff before submission.
1492 */ 1492 */
1493 if (!bio_empty_barrier(bio)) { 1493 if (bio_has_data(bio)) {
1494
1495 BIO_BUG_ON(!bio->bi_size);
1496 BIO_BUG_ON(!bio->bi_io_vec);
1497 1494
1498 if (rw & WRITE) { 1495 if (rw & WRITE) {
1499 count_vm_events(PGPGOUT, count); 1496 count_vm_events(PGPGOUT, count);