summaryrefslogtreecommitdiffstats
path: root/fs/squashfs/block.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/squashfs/block.c')
-rw-r--r--fs/squashfs/block.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/squashfs/block.c b/fs/squashfs/block.c
index 2c2618410d51..ce62a380314f 100644
--- a/fs/squashfs/block.c
+++ b/fs/squashfs/block.c
@@ -124,7 +124,7 @@ int squashfs_read_data(struct super_block *sb, u64 index, int length,
124 goto block_release; 124 goto block_release;
125 bytes += msblk->devblksize; 125 bytes += msblk->devblksize;
126 } 126 }
127 ll_rw_block(READ, b, bh); 127 ll_rw_block(REQ_OP_READ, 0, b, bh);
128 } else { 128 } else {
129 /* 129 /*
130 * Metadata block. 130 * Metadata block.
@@ -156,7 +156,7 @@ int squashfs_read_data(struct super_block *sb, u64 index, int length,
156 goto block_release; 156 goto block_release;
157 bytes += msblk->devblksize; 157 bytes += msblk->devblksize;
158 } 158 }
159 ll_rw_block(READ, b - 1, bh + 1); 159 ll_rw_block(REQ_OP_READ, 0, b - 1, bh + 1);
160 } 160 }
161 161
162 for (i = 0; i < b; i++) { 162 for (i = 0; i < b; i++) {