diff options
author | Mike Christie <mchristi@redhat.com> | 2016-06-05 15:31:44 -0400 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2016-06-07 15:41:38 -0400 |
commit | dfec8a14fc9043039e3c04807caf39dc71102816 (patch) | |
tree | 306adbd461707daf2ba64766964c534ff7ce4a8c /fs/isofs | |
parent | 2a222ca992c35aee1e83af428f3dd26a3f5d5d94 (diff) |
fs: have ll_rw_block users pass in op and flags separately
This has ll_rw_block users pass in the operation and flags separately,
so ll_rw_block can setup the bio op and bi_rw flags on the bio that
is submitted.
Signed-off-by: Mike Christie <mchristi@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Hannes Reinecke <hare@suse.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'fs/isofs')
-rw-r--r-- | fs/isofs/compress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/isofs/compress.c b/fs/isofs/compress.c index 2e4e834d1a98..2ce5b75ee9a5 100644 --- a/fs/isofs/compress.c +++ b/fs/isofs/compress.c | |||
@@ -81,7 +81,7 @@ static loff_t zisofs_uncompress_block(struct inode *inode, loff_t block_start, | |||
81 | blocknum = block_start >> bufshift; | 81 | blocknum = block_start >> bufshift; |
82 | memset(bhs, 0, (needblocks + 1) * sizeof(struct buffer_head *)); | 82 | memset(bhs, 0, (needblocks + 1) * sizeof(struct buffer_head *)); |
83 | haveblocks = isofs_get_blocks(inode, blocknum, bhs, needblocks); | 83 | haveblocks = isofs_get_blocks(inode, blocknum, bhs, needblocks); |
84 | ll_rw_block(READ, haveblocks, bhs); | 84 | ll_rw_block(REQ_OP_READ, 0, haveblocks, bhs); |
85 | 85 | ||
86 | curbh = 0; | 86 | curbh = 0; |
87 | curpage = 0; | 87 | curpage = 0; |