blob: 54c17b7c85fddae977d6d6ba21cd7d0ddee9d54a [file] [log] [blame]
Thomas Gleixner20c8ccb2019-06-04 10:11:32 +02001// SPDX-License-Identifier: GPL-2.0-only
Phillip Lougher5f55dbc2013-10-31 19:24:27 +00002/*
3 * Copyright (c) 2013
4 * Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougher5f55dbc2013-10-31 19:24:27 +00005 */
6
7#include <linux/fs.h>
8#include <linux/vfs.h>
9#include <linux/kernel.h>
10#include <linux/slab.h>
11#include <linux/string.h>
12#include <linux/pagemap.h>
13#include <linux/mutex.h>
14
15#include "squashfs_fs.h"
16#include "squashfs_fs_sb.h"
17#include "squashfs_fs_i.h"
18#include "squashfs.h"
19
20/* Read separately compressed datablock and memcopy into page cache */
Phillip Loughera3f94cb2018-08-02 16:45:15 +010021int squashfs_readpage_block(struct page *page, u64 block, int bsize, int expected)
Phillip Lougher5f55dbc2013-10-31 19:24:27 +000022{
23 struct inode *i = page->mapping->host;
24 struct squashfs_cache_entry *buffer = squashfs_get_datablock(i->i_sb,
25 block, bsize);
26 int res = buffer->error;
27
28 if (res)
29 ERROR("Unable to read page, block %llx, size %x\n", block,
30 bsize);
31 else
Phillip Loughera3f94cb2018-08-02 16:45:15 +010032 squashfs_copy_cache(page, buffer, expected, 0);
Phillip Lougher5f55dbc2013-10-31 19:24:27 +000033
34 squashfs_cache_put(buffer);
35 return res;
36}