2019-07-31 15:57:31 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2018-07-26 12:21:47 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017-2018 HUAWEI, Inc.
|
|
|
|
* http://www.huawei.com/
|
|
|
|
* Created by Gao Xiang <gaoxiang25@huawei.com>
|
|
|
|
*/
|
|
|
|
#include "internal.h"
|
|
|
|
#include <linux/prefetch.h>
|
|
|
|
|
2018-07-26 12:21:55 +00:00
|
|
|
#include <trace/events/erofs.h>
|
|
|
|
|
2018-07-26 12:21:47 +00:00
|
|
|
static inline void read_endio(struct bio *bio)
|
|
|
|
{
|
2019-03-25 03:40:09 +00:00
|
|
|
struct super_block *const sb = bio->bi_private;
|
2018-07-26 12:21:47 +00:00
|
|
|
struct bio_vec *bvec;
|
2019-03-25 03:40:09 +00:00
|
|
|
blk_status_t err = bio->bi_status;
|
2019-02-15 11:13:19 +00:00
|
|
|
struct bvec_iter_all iter_all;
|
2018-07-26 12:21:47 +00:00
|
|
|
|
2019-03-25 03:40:09 +00:00
|
|
|
if (time_to_inject(EROFS_SB(sb), FAULT_READ_IO)) {
|
|
|
|
erofs_show_injection_info(FAULT_READ_IO);
|
|
|
|
err = BLK_STS_IOERR;
|
|
|
|
}
|
|
|
|
|
2019-04-25 07:03:00 +00:00
|
|
|
bio_for_each_segment_all(bvec, bio, iter_all) {
|
2018-07-26 12:21:47 +00:00
|
|
|
struct page *page = bvec->bv_page;
|
|
|
|
|
|
|
|
/* page is already locked */
|
2018-09-18 14:27:28 +00:00
|
|
|
DBG_BUGON(PageUptodate(page));
|
2018-07-26 12:21:47 +00:00
|
|
|
|
|
|
|
if (unlikely(err))
|
|
|
|
SetPageError(page);
|
|
|
|
else
|
|
|
|
SetPageUptodate(page);
|
|
|
|
|
|
|
|
unlock_page(page);
|
|
|
|
/* page could be reclaimed now */
|
|
|
|
}
|
|
|
|
bio_put(bio);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* prio -- true is used for dir */
|
2018-08-21 14:49:30 +00:00
|
|
|
struct page *__erofs_get_meta_page(struct super_block *sb,
|
2018-11-05 19:48:38 +00:00
|
|
|
erofs_blk_t blkaddr, bool prio, bool nofail)
|
2018-07-26 12:21:47 +00:00
|
|
|
{
|
2018-08-21 14:49:30 +00:00
|
|
|
struct inode *const bd_inode = sb->s_bdev->bd_inode;
|
|
|
|
struct address_space *const mapping = bd_inode->i_mapping;
|
|
|
|
/* prefer retrying in the allocator to blindly looping below */
|
|
|
|
const gfp_t gfp = mapping_gfp_constraint(mapping, ~__GFP_FS) |
|
|
|
|
(nofail ? __GFP_NOFAIL : 0);
|
|
|
|
unsigned int io_retries = nofail ? EROFS_IO_MAX_RETRIES_NOFAIL : 0;
|
2018-07-26 12:21:47 +00:00
|
|
|
struct page *page;
|
2018-08-21 14:49:30 +00:00
|
|
|
int err;
|
2018-07-26 12:21:47 +00:00
|
|
|
|
|
|
|
repeat:
|
2018-08-21 14:49:30 +00:00
|
|
|
page = find_or_create_page(mapping, blkaddr, gfp);
|
2018-11-05 19:49:05 +00:00
|
|
|
if (unlikely(!page)) {
|
2018-08-21 14:49:30 +00:00
|
|
|
DBG_BUGON(nofail);
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
}
|
|
|
|
DBG_BUGON(!PageLocked(page));
|
2018-07-26 12:21:47 +00:00
|
|
|
|
|
|
|
if (!PageUptodate(page)) {
|
|
|
|
struct bio *bio;
|
|
|
|
|
2019-03-25 03:40:09 +00:00
|
|
|
bio = erofs_grab_bio(sb, blkaddr, 1, sb, read_endio, nofail);
|
2018-08-21 14:49:30 +00:00
|
|
|
if (IS_ERR(bio)) {
|
|
|
|
DBG_BUGON(nofail);
|
|
|
|
err = PTR_ERR(bio);
|
|
|
|
goto err_out;
|
|
|
|
}
|
2018-08-21 14:49:29 +00:00
|
|
|
|
2018-07-26 12:21:47 +00:00
|
|
|
err = bio_add_page(bio, page, PAGE_SIZE, 0);
|
2018-08-21 14:49:30 +00:00
|
|
|
if (unlikely(err != PAGE_SIZE)) {
|
|
|
|
err = -EFAULT;
|
|
|
|
goto err_out;
|
|
|
|
}
|
2018-07-26 12:21:47 +00:00
|
|
|
|
|
|
|
__submit_bio(bio, REQ_OP_READ,
|
2018-11-05 19:48:38 +00:00
|
|
|
REQ_META | (prio ? REQ_PRIO : 0));
|
2018-07-26 12:21:47 +00:00
|
|
|
|
|
|
|
lock_page(page);
|
|
|
|
|
2018-08-21 14:49:30 +00:00
|
|
|
/* this page has been truncated by others */
|
2018-07-26 12:21:47 +00:00
|
|
|
if (unlikely(page->mapping != mapping)) {
|
2018-08-21 14:49:30 +00:00
|
|
|
unlock_repeat:
|
2018-07-26 12:21:47 +00:00
|
|
|
unlock_page(page);
|
|
|
|
put_page(page);
|
|
|
|
goto repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* more likely a read error */
|
|
|
|
if (unlikely(!PageUptodate(page))) {
|
2018-08-21 14:49:30 +00:00
|
|
|
if (io_retries) {
|
|
|
|
--io_retries;
|
|
|
|
goto unlock_repeat;
|
|
|
|
}
|
|
|
|
err = -EIO;
|
|
|
|
goto err_out;
|
2018-07-26 12:21:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return page;
|
2018-08-21 14:49:30 +00:00
|
|
|
|
|
|
|
err_out:
|
|
|
|
unlock_page(page);
|
|
|
|
put_page(page);
|
|
|
|
return ERR_PTR(err);
|
2018-07-26 12:21:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int erofs_map_blocks_flatmode(struct inode *inode,
|
2018-11-05 19:48:38 +00:00
|
|
|
struct erofs_map_blocks *map,
|
|
|
|
int flags)
|
2018-07-26 12:21:47 +00:00
|
|
|
{
|
2018-09-18 14:27:28 +00:00
|
|
|
int err = 0;
|
2018-07-26 12:21:47 +00:00
|
|
|
erofs_blk_t nblocks, lastblk;
|
|
|
|
u64 offset = map->m_la;
|
|
|
|
struct erofs_vnode *vi = EROFS_V(inode);
|
|
|
|
|
2018-07-26 12:21:55 +00:00
|
|
|
trace_erofs_map_blocks_flatmode_enter(inode, map, flags);
|
2018-07-26 12:21:47 +00:00
|
|
|
|
|
|
|
nblocks = DIV_ROUND_UP(inode->i_size, PAGE_SIZE);
|
2019-06-24 07:22:51 +00:00
|
|
|
lastblk = nblocks - is_inode_flat_inline(inode);
|
2018-07-26 12:21:47 +00:00
|
|
|
|
|
|
|
if (unlikely(offset >= inode->i_size)) {
|
|
|
|
/* leave out-of-bound access unmapped */
|
|
|
|
map->m_flags = 0;
|
|
|
|
map->m_plen = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* there is no hole in flatmode */
|
|
|
|
map->m_flags = EROFS_MAP_MAPPED;
|
|
|
|
|
|
|
|
if (offset < blknr_to_addr(lastblk)) {
|
|
|
|
map->m_pa = blknr_to_addr(vi->raw_blkaddr) + map->m_la;
|
|
|
|
map->m_plen = blknr_to_addr(lastblk) - offset;
|
2019-06-24 07:22:51 +00:00
|
|
|
} else if (is_inode_flat_inline(inode)) {
|
2018-07-26 12:21:47 +00:00
|
|
|
/* 2 - inode inline B: inode, [xattrs], inline last blk... */
|
|
|
|
struct erofs_sb_info *sbi = EROFS_SB(inode->i_sb);
|
|
|
|
|
|
|
|
map->m_pa = iloc(sbi, vi->nid) + vi->inode_isize +
|
|
|
|
vi->xattr_isize + erofs_blkoff(map->m_la);
|
|
|
|
map->m_plen = inode->i_size - offset;
|
|
|
|
|
2019-08-14 10:37:03 +00:00
|
|
|
/* inline data should be located in one meta block */
|
2018-09-18 14:27:28 +00:00
|
|
|
if (erofs_blkoff(map->m_pa) + map->m_plen > PAGE_SIZE) {
|
2019-08-14 10:37:03 +00:00
|
|
|
errln("inline data cross block boundary @ nid %llu",
|
|
|
|
vi->nid);
|
2018-09-18 14:27:28 +00:00
|
|
|
DBG_BUGON(1);
|
2019-08-14 10:37:03 +00:00
|
|
|
err = -EFSCORRUPTED;
|
2018-09-18 14:27:28 +00:00
|
|
|
goto err_out;
|
|
|
|
}
|
|
|
|
|
2018-07-26 12:21:47 +00:00
|
|
|
map->m_flags |= EROFS_MAP_META;
|
|
|
|
} else {
|
|
|
|
errln("internal error @ nid: %llu (size %llu), m_la 0x%llx",
|
2018-11-05 19:48:38 +00:00
|
|
|
vi->nid, inode->i_size, map->m_la);
|
2018-09-18 14:27:28 +00:00
|
|
|
DBG_BUGON(1);
|
|
|
|
err = -EIO;
|
|
|
|
goto err_out;
|
2018-07-26 12:21:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
map->m_llen = map->m_plen;
|
2018-09-18 14:27:28 +00:00
|
|
|
|
|
|
|
err_out:
|
2018-07-26 12:21:55 +00:00
|
|
|
trace_erofs_map_blocks_flatmode_exit(inode, map, flags, 0);
|
2018-09-18 14:27:28 +00:00
|
|
|
return err;
|
2018-07-26 12:21:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int erofs_map_blocks(struct inode *inode,
|
2018-11-05 19:48:38 +00:00
|
|
|
struct erofs_map_blocks *map, int flags)
|
2018-07-26 12:21:47 +00:00
|
|
|
{
|
2018-07-26 12:21:58 +00:00
|
|
|
if (unlikely(is_inode_layout_compression(inode))) {
|
2019-01-15 01:42:21 +00:00
|
|
|
int err = z_erofs_map_blocks_iter(inode, map, flags);
|
2018-07-26 12:21:47 +00:00
|
|
|
|
2019-01-15 01:42:21 +00:00
|
|
|
if (map->mpage) {
|
|
|
|
put_page(map->mpage);
|
|
|
|
map->mpage = NULL;
|
|
|
|
}
|
2018-07-26 12:21:58 +00:00
|
|
|
return err;
|
|
|
|
}
|
2018-07-26 12:21:47 +00:00
|
|
|
return erofs_map_blocks_flatmode(inode, map, flags);
|
|
|
|
}
|
|
|
|
|
2018-11-05 19:48:38 +00:00
|
|
|
static inline struct bio *erofs_read_raw_page(struct bio *bio,
|
|
|
|
struct address_space *mapping,
|
|
|
|
struct page *page,
|
|
|
|
erofs_off_t *last_block,
|
|
|
|
unsigned int nblocks,
|
|
|
|
bool ra)
|
2018-07-26 12:21:47 +00:00
|
|
|
{
|
2019-03-25 03:40:09 +00:00
|
|
|
struct inode *const inode = mapping->host;
|
|
|
|
struct super_block *const sb = inode->i_sb;
|
2018-07-26 12:21:47 +00:00
|
|
|
erofs_off_t current_block = (erofs_off_t)page->index;
|
|
|
|
int err;
|
|
|
|
|
2018-09-18 14:27:28 +00:00
|
|
|
DBG_BUGON(!nblocks);
|
2018-07-26 12:21:47 +00:00
|
|
|
|
|
|
|
if (PageUptodate(page)) {
|
|
|
|
err = 0;
|
|
|
|
goto has_updated;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* note that for readpage case, bio also equals to NULL */
|
2018-11-05 19:49:05 +00:00
|
|
|
if (bio &&
|
2018-11-05 19:48:38 +00:00
|
|
|
/* not continuous */
|
|
|
|
*last_block + 1 != current_block) {
|
2018-07-26 12:21:47 +00:00
|
|
|
submit_bio_retry:
|
|
|
|
__submit_bio(bio, REQ_OP_READ, 0);
|
|
|
|
bio = NULL;
|
|
|
|
}
|
|
|
|
|
2018-11-05 19:49:05 +00:00
|
|
|
if (!bio) {
|
2018-07-26 12:21:47 +00:00
|
|
|
struct erofs_map_blocks map = {
|
|
|
|
.m_la = blknr_to_addr(current_block),
|
|
|
|
};
|
2018-07-26 12:22:00 +00:00
|
|
|
erofs_blk_t blknr;
|
2018-09-10 19:41:14 +00:00
|
|
|
unsigned int blkoff;
|
2018-07-26 12:21:47 +00:00
|
|
|
|
|
|
|
err = erofs_map_blocks(inode, &map, EROFS_GET_BLOCKS_RAW);
|
|
|
|
if (unlikely(err))
|
|
|
|
goto err_out;
|
|
|
|
|
|
|
|
/* zero out the holed page */
|
|
|
|
if (unlikely(!(map.m_flags & EROFS_MAP_MAPPED))) {
|
|
|
|
zero_user_segment(page, 0, PAGE_SIZE);
|
|
|
|
SetPageUptodate(page);
|
|
|
|
|
|
|
|
/* imply err = 0, see erofs_map_blocks */
|
|
|
|
goto has_updated;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* for RAW access mode, m_plen must be equal to m_llen */
|
2018-09-18 14:27:28 +00:00
|
|
|
DBG_BUGON(map.m_plen != map.m_llen);
|
2018-07-26 12:21:47 +00:00
|
|
|
|
2018-07-26 12:22:00 +00:00
|
|
|
blknr = erofs_blknr(map.m_pa);
|
|
|
|
blkoff = erofs_blkoff(map.m_pa);
|
|
|
|
|
2018-07-26 12:21:47 +00:00
|
|
|
/* deal with inline page */
|
|
|
|
if (map.m_flags & EROFS_MAP_META) {
|
|
|
|
void *vsrc, *vto;
|
|
|
|
struct page *ipage;
|
|
|
|
|
2018-09-18 14:27:28 +00:00
|
|
|
DBG_BUGON(map.m_plen > PAGE_SIZE);
|
2018-07-26 12:21:47 +00:00
|
|
|
|
2018-07-26 12:22:00 +00:00
|
|
|
ipage = erofs_get_meta_page(inode->i_sb, blknr, 0);
|
2018-07-26 12:21:47 +00:00
|
|
|
|
|
|
|
if (IS_ERR(ipage)) {
|
|
|
|
err = PTR_ERR(ipage);
|
|
|
|
goto err_out;
|
|
|
|
}
|
|
|
|
|
|
|
|
vsrc = kmap_atomic(ipage);
|
|
|
|
vto = kmap_atomic(page);
|
2018-07-26 12:22:00 +00:00
|
|
|
memcpy(vto, vsrc + blkoff, map.m_plen);
|
2018-07-26 12:21:47 +00:00
|
|
|
memset(vto + map.m_plen, 0, PAGE_SIZE - map.m_plen);
|
|
|
|
kunmap_atomic(vto);
|
|
|
|
kunmap_atomic(vsrc);
|
|
|
|
flush_dcache_page(page);
|
|
|
|
|
|
|
|
SetPageUptodate(page);
|
|
|
|
/* TODO: could we unlock the page earlier? */
|
|
|
|
unlock_page(ipage);
|
|
|
|
put_page(ipage);
|
|
|
|
|
|
|
|
/* imply err = 0, see erofs_map_blocks */
|
|
|
|
goto has_updated;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* pa must be block-aligned for raw reading */
|
2018-09-18 14:27:28 +00:00
|
|
|
DBG_BUGON(erofs_blkoff(map.m_pa));
|
2018-07-26 12:21:47 +00:00
|
|
|
|
|
|
|
/* max # of continuous pages */
|
|
|
|
if (nblocks > DIV_ROUND_UP(map.m_plen, PAGE_SIZE))
|
|
|
|
nblocks = DIV_ROUND_UP(map.m_plen, PAGE_SIZE);
|
|
|
|
if (nblocks > BIO_MAX_PAGES)
|
|
|
|
nblocks = BIO_MAX_PAGES;
|
|
|
|
|
2019-03-25 03:40:09 +00:00
|
|
|
bio = erofs_grab_bio(sb, blknr, nblocks, sb,
|
|
|
|
read_endio, false);
|
2018-08-21 14:49:29 +00:00
|
|
|
if (IS_ERR(bio)) {
|
|
|
|
err = PTR_ERR(bio);
|
|
|
|
bio = NULL;
|
|
|
|
goto err_out;
|
|
|
|
}
|
2018-07-26 12:21:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
err = bio_add_page(bio, page, PAGE_SIZE, 0);
|
|
|
|
/* out of the extent or bio is full */
|
|
|
|
if (err < PAGE_SIZE)
|
|
|
|
goto submit_bio_retry;
|
|
|
|
|
|
|
|
*last_block = current_block;
|
|
|
|
|
|
|
|
/* shift in advance in case of it followed by too many gaps */
|
2019-04-12 09:53:14 +00:00
|
|
|
if (bio->bi_iter.bi_size >= bio->bi_max_vecs * PAGE_SIZE) {
|
2018-07-26 12:21:47 +00:00
|
|
|
/* err should reassign to 0 after submitting */
|
|
|
|
err = 0;
|
|
|
|
goto submit_bio_out;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bio;
|
|
|
|
|
|
|
|
err_out:
|
|
|
|
/* for sync reading, set page error immediately */
|
|
|
|
if (!ra) {
|
|
|
|
SetPageError(page);
|
|
|
|
ClearPageUptodate(page);
|
|
|
|
}
|
|
|
|
has_updated:
|
|
|
|
unlock_page(page);
|
|
|
|
|
|
|
|
/* if updated manually, continuous pages has a gap */
|
2018-11-05 19:49:05 +00:00
|
|
|
if (bio)
|
2018-07-26 12:21:47 +00:00
|
|
|
submit_bio_out:
|
|
|
|
__submit_bio(bio, REQ_OP_READ, 0);
|
|
|
|
|
|
|
|
return unlikely(err) ? ERR_PTR(err) : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* since we dont have write or truncate flows, so no inode
|
|
|
|
* locking needs to be held at the moment.
|
|
|
|
*/
|
|
|
|
static int erofs_raw_access_readpage(struct file *file, struct page *page)
|
|
|
|
{
|
|
|
|
erofs_off_t last_block;
|
|
|
|
struct bio *bio;
|
|
|
|
|
2018-07-26 12:21:55 +00:00
|
|
|
trace_erofs_readpage(page, true);
|
|
|
|
|
2018-07-26 12:21:47 +00:00
|
|
|
bio = erofs_read_raw_page(NULL, page->mapping,
|
2018-11-05 19:48:38 +00:00
|
|
|
page, &last_block, 1, false);
|
2018-07-26 12:21:47 +00:00
|
|
|
|
|
|
|
if (IS_ERR(bio))
|
|
|
|
return PTR_ERR(bio);
|
|
|
|
|
2018-09-18 14:27:28 +00:00
|
|
|
DBG_BUGON(bio); /* since we have only one bio -- must be NULL */
|
2018-07-26 12:21:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int erofs_raw_access_readpages(struct file *filp,
|
2018-11-05 19:48:38 +00:00
|
|
|
struct address_space *mapping,
|
|
|
|
struct list_head *pages,
|
|
|
|
unsigned int nr_pages)
|
2018-07-26 12:21:47 +00:00
|
|
|
{
|
|
|
|
erofs_off_t last_block;
|
|
|
|
struct bio *bio = NULL;
|
|
|
|
gfp_t gfp = readahead_gfp_mask(mapping);
|
2018-07-26 12:21:55 +00:00
|
|
|
struct page *page = list_last_entry(pages, struct page, lru);
|
|
|
|
|
|
|
|
trace_erofs_readpages(mapping->host, page, nr_pages, true);
|
2018-07-26 12:21:47 +00:00
|
|
|
|
|
|
|
for (; nr_pages; --nr_pages) {
|
2018-07-26 12:21:55 +00:00
|
|
|
page = list_entry(pages->prev, struct page, lru);
|
2018-07-26 12:21:47 +00:00
|
|
|
|
|
|
|
prefetchw(&page->flags);
|
|
|
|
list_del(&page->lru);
|
|
|
|
|
|
|
|
if (!add_to_page_cache_lru(page, mapping, page->index, gfp)) {
|
|
|
|
bio = erofs_read_raw_page(bio, mapping, page,
|
2018-11-05 19:48:38 +00:00
|
|
|
&last_block, nr_pages, true);
|
2018-07-26 12:21:47 +00:00
|
|
|
|
|
|
|
/* all the page errors are ignored when readahead */
|
|
|
|
if (IS_ERR(bio)) {
|
|
|
|
pr_err("%s, readahead error at page %lu of nid %llu\n",
|
2018-11-05 19:48:38 +00:00
|
|
|
__func__, page->index,
|
|
|
|
EROFS_V(mapping->host)->nid);
|
2018-07-26 12:21:47 +00:00
|
|
|
|
|
|
|
bio = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* pages could still be locked */
|
|
|
|
put_page(page);
|
|
|
|
}
|
2018-09-18 14:27:28 +00:00
|
|
|
DBG_BUGON(!list_empty(pages));
|
2018-07-26 12:21:47 +00:00
|
|
|
|
|
|
|
/* the rare case (end in gaps) */
|
2018-11-05 19:49:05 +00:00
|
|
|
if (unlikely(bio))
|
2018-07-26 12:21:47 +00:00
|
|
|
__submit_bio(bio, REQ_OP_READ, 0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-16 09:32:56 +00:00
|
|
|
static int erofs_get_block(struct inode *inode, sector_t iblock,
|
|
|
|
struct buffer_head *bh, int create)
|
|
|
|
{
|
|
|
|
struct erofs_map_blocks map = {
|
|
|
|
.m_la = iblock << 9,
|
|
|
|
};
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = erofs_map_blocks(inode, &map, EROFS_GET_BLOCKS_RAW);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
if (map.m_flags & EROFS_MAP_MAPPED)
|
|
|
|
bh->b_blocknr = erofs_blknr(map.m_pa);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static sector_t erofs_bmap(struct address_space *mapping, sector_t block)
|
|
|
|
{
|
|
|
|
struct inode *inode = mapping->host;
|
|
|
|
|
|
|
|
if (is_inode_flat_inline(inode)) {
|
|
|
|
erofs_blk_t blks = i_size_read(inode) >> LOG_BLOCK_SIZE;
|
|
|
|
|
|
|
|
if (block >> LOG_SECTORS_PER_BLOCK >= blks)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return generic_block_bmap(mapping, block, erofs_get_block);
|
|
|
|
}
|
|
|
|
|
2018-07-26 12:21:47 +00:00
|
|
|
/* for uncompressed (aligned) files and raw access for other files */
|
|
|
|
const struct address_space_operations erofs_raw_access_aops = {
|
|
|
|
.readpage = erofs_raw_access_readpage,
|
|
|
|
.readpages = erofs_raw_access_readpages,
|
2019-07-16 09:32:56 +00:00
|
|
|
.bmap = erofs_bmap,
|
2018-07-26 12:21:47 +00:00
|
|
|
};
|
|
|
|
|