Loading fs/squashfs/block.c +3 −4 Original line number Diff line number Diff line Loading @@ -49,8 +49,7 @@ static int copy_bio_to_actor(struct bio *bio, bytes_to_copy = min_t(int, bytes_to_copy, req_length - copied_bytes); memcpy(actor_addr + actor_offset, page_address(bvec->bv_page) + bvec->bv_offset + offset, memcpy(actor_addr + actor_offset, bvec_virt(bvec) + offset, bytes_to_copy); actor_offset += bytes_to_copy; Loading Loading @@ -177,7 +176,7 @@ int squashfs_read_data(struct super_block *sb, u64 index, int length, goto out_free_bio; } /* Extract the length of the metadata block */ data = page_address(bvec->bv_page) + bvec->bv_offset; data = bvec_virt(bvec); length = data[offset]; if (offset < bvec->bv_len - 1) { length |= data[offset + 1] << 8; Loading @@ -186,7 +185,7 @@ int squashfs_read_data(struct super_block *sb, u64 index, int length, res = -EIO; goto out_free_bio; } data = page_address(bvec->bv_page) + bvec->bv_offset; data = bvec_virt(bvec); length |= data[0] << 8; } bio_free_pages(bio); Loading fs/squashfs/lz4_wrapper.c +1 −1 Original line number Diff line number Diff line Loading @@ -101,7 +101,7 @@ static int lz4_uncompress(struct squashfs_sb_info *msblk, void *strm, while (bio_next_segment(bio, &iter_all)) { int avail = min(bytes, ((int)bvec->bv_len) - offset); data = page_address(bvec->bv_page) + bvec->bv_offset; data = bvec_virt(bvec); memcpy(buff, data + offset, avail); buff += avail; bytes -= avail; Loading fs/squashfs/lzo_wrapper.c +1 −1 Original line number Diff line number Diff line Loading @@ -76,7 +76,7 @@ static int lzo_uncompress(struct squashfs_sb_info *msblk, void *strm, while (bio_next_segment(bio, &iter_all)) { int avail = min(bytes, ((int)bvec->bv_len) - offset); data = page_address(bvec->bv_page) + bvec->bv_offset; data = bvec_virt(bvec); memcpy(buff, data + offset, avail); buff += avail; bytes -= avail; Loading fs/squashfs/xz_wrapper.c +1 −1 Original line number Diff line number Diff line Loading @@ -146,7 +146,7 @@ static int squashfs_xz_uncompress(struct squashfs_sb_info *msblk, void *strm, } avail = min(length, ((int)bvec->bv_len) - offset); data = page_address(bvec->bv_page) + bvec->bv_offset; data = bvec_virt(bvec); length -= avail; stream->buf.in = data + offset; stream->buf.in_size = avail; Loading fs/squashfs/zlib_wrapper.c +1 −1 Original line number Diff line number Diff line Loading @@ -76,7 +76,7 @@ static int zlib_uncompress(struct squashfs_sb_info *msblk, void *strm, } avail = min(length, ((int)bvec->bv_len) - offset); data = page_address(bvec->bv_page) + bvec->bv_offset; data = bvec_virt(bvec); length -= avail; stream->next_in = data + offset; stream->avail_in = avail; Loading Loading
fs/squashfs/block.c +3 −4 Original line number Diff line number Diff line Loading @@ -49,8 +49,7 @@ static int copy_bio_to_actor(struct bio *bio, bytes_to_copy = min_t(int, bytes_to_copy, req_length - copied_bytes); memcpy(actor_addr + actor_offset, page_address(bvec->bv_page) + bvec->bv_offset + offset, memcpy(actor_addr + actor_offset, bvec_virt(bvec) + offset, bytes_to_copy); actor_offset += bytes_to_copy; Loading Loading @@ -177,7 +176,7 @@ int squashfs_read_data(struct super_block *sb, u64 index, int length, goto out_free_bio; } /* Extract the length of the metadata block */ data = page_address(bvec->bv_page) + bvec->bv_offset; data = bvec_virt(bvec); length = data[offset]; if (offset < bvec->bv_len - 1) { length |= data[offset + 1] << 8; Loading @@ -186,7 +185,7 @@ int squashfs_read_data(struct super_block *sb, u64 index, int length, res = -EIO; goto out_free_bio; } data = page_address(bvec->bv_page) + bvec->bv_offset; data = bvec_virt(bvec); length |= data[0] << 8; } bio_free_pages(bio); Loading
fs/squashfs/lz4_wrapper.c +1 −1 Original line number Diff line number Diff line Loading @@ -101,7 +101,7 @@ static int lz4_uncompress(struct squashfs_sb_info *msblk, void *strm, while (bio_next_segment(bio, &iter_all)) { int avail = min(bytes, ((int)bvec->bv_len) - offset); data = page_address(bvec->bv_page) + bvec->bv_offset; data = bvec_virt(bvec); memcpy(buff, data + offset, avail); buff += avail; bytes -= avail; Loading
fs/squashfs/lzo_wrapper.c +1 −1 Original line number Diff line number Diff line Loading @@ -76,7 +76,7 @@ static int lzo_uncompress(struct squashfs_sb_info *msblk, void *strm, while (bio_next_segment(bio, &iter_all)) { int avail = min(bytes, ((int)bvec->bv_len) - offset); data = page_address(bvec->bv_page) + bvec->bv_offset; data = bvec_virt(bvec); memcpy(buff, data + offset, avail); buff += avail; bytes -= avail; Loading
fs/squashfs/xz_wrapper.c +1 −1 Original line number Diff line number Diff line Loading @@ -146,7 +146,7 @@ static int squashfs_xz_uncompress(struct squashfs_sb_info *msblk, void *strm, } avail = min(length, ((int)bvec->bv_len) - offset); data = page_address(bvec->bv_page) + bvec->bv_offset; data = bvec_virt(bvec); length -= avail; stream->buf.in = data + offset; stream->buf.in_size = avail; Loading
fs/squashfs/zlib_wrapper.c +1 −1 Original line number Diff line number Diff line Loading @@ -76,7 +76,7 @@ static int zlib_uncompress(struct squashfs_sb_info *msblk, void *strm, } avail = min(length, ((int)bvec->bv_len) - offset); data = page_address(bvec->bv_page) + bvec->bv_offset; data = bvec_virt(bvec); length -= avail; stream->next_in = data + offset; stream->avail_in = avail; Loading