mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
93e72b3c61
ll_rw_block() function has been deprecated in favor of BIO which appears to come with large performance improvements. This patch decreases boot time by close to 40% when using squashfs for the root file-system. This is observed at least in the context of starting an Android VM on Chrome OS using crosvm. The patch was tested on 4.19 as well as master. This patch is largely based on Adrien Schildknecht's patch that was originally sent as https://lkml.org/lkml/2017/9/22/814 though with some significant changes and simplifications while also taking Phillip Lougher's feedback into account, around preserving support for FILE_CACHE in particular. [akpm@linux-foundation.org: fix build error reported by Randy] Link: http://lkml.kernel.org/r/319997c2-5fc8-f889-2ea3-d913308a7c1f@infradead.org Signed-off-by: Philippe Liard <pliard@google.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Reviewed-by: Christoph Hellwig <hch@lst.de> Cc: Adrien Schildknecht <adrien+dev@schischi.me> Cc: Phillip Lougher <phillip@squashfs.org.uk> Cc: Guenter Roeck <groeck@chromium.org> Cc: Daniel Rosenberg <drosen@google.com> Link: https://chromium.googlesource.com/chromiumos/platform/crosvm Link: http://lkml.kernel.org/r/20191106074238.186023-1-pliard@google.com Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
53 lines
1.3 KiB
C
53 lines
1.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
#ifndef DECOMPRESSOR_H
|
|
#define DECOMPRESSOR_H
|
|
/*
|
|
* Squashfs - a compressed read only filesystem for Linux
|
|
*
|
|
* Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
|
|
* Phillip Lougher <phillip@squashfs.org.uk>
|
|
*
|
|
* decompressor.h
|
|
*/
|
|
|
|
#include <linux/bio.h>
|
|
|
|
struct squashfs_decompressor {
|
|
void *(*init)(struct squashfs_sb_info *, void *);
|
|
void *(*comp_opts)(struct squashfs_sb_info *, void *, int);
|
|
void (*free)(void *);
|
|
int (*decompress)(struct squashfs_sb_info *, void *,
|
|
struct bio *, int, int, struct squashfs_page_actor *);
|
|
int id;
|
|
char *name;
|
|
int supported;
|
|
};
|
|
|
|
static inline void *squashfs_comp_opts(struct squashfs_sb_info *msblk,
|
|
void *buff, int length)
|
|
{
|
|
return msblk->decompressor->comp_opts ?
|
|
msblk->decompressor->comp_opts(msblk, buff, length) : NULL;
|
|
}
|
|
|
|
#ifdef CONFIG_SQUASHFS_XZ
|
|
extern const struct squashfs_decompressor squashfs_xz_comp_ops;
|
|
#endif
|
|
|
|
#ifdef CONFIG_SQUASHFS_LZ4
|
|
extern const struct squashfs_decompressor squashfs_lz4_comp_ops;
|
|
#endif
|
|
|
|
#ifdef CONFIG_SQUASHFS_LZO
|
|
extern const struct squashfs_decompressor squashfs_lzo_comp_ops;
|
|
#endif
|
|
|
|
#ifdef CONFIG_SQUASHFS_ZLIB
|
|
extern const struct squashfs_decompressor squashfs_zlib_comp_ops;
|
|
#endif
|
|
|
|
#ifdef CONFIG_SQUASHFS_ZSTD
|
|
extern const struct squashfs_decompressor squashfs_zstd_comp_ops;
|
|
#endif
|
|
|
|
#endif
|