[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <e2365d5f-aabb-a631-1338-1e32f8c9bea6@infradead.org>
Date: Fri, 9 Nov 2018 09:58:44 -0800
From: Randy Dunlap <rdunlap@...radead.org>
To: LKML <linux-kernel@...r.kernel.org>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>
Cc: kbuild test robot <lkp@...el.com>,
Gao Xiang <gaoxiang25@...wei.com>,
Chao Yu <yuchao0@...wei.com>, linux-erofs@...ts.ozlabs.org
Subject: [PATCH] staging: erofs: select LZ4_DECOMPRESS to fix build error
From: Randy Dunlap <rdunlap@...radead.org>
EROFS Data Compression support uses LZ4 decompression, so it
should select LZ4_DECOMPRESS to prevent this build error:
drivers/staging/erofs/unzip_vle_lz4.o: In function `z_erofs_unzip_lz4':
drivers/staging/erofs/unzip_vle_lz4.c:18: undefined reference to `LZ4_decompress_safe_partial'
Signed-off-by: Randy Dunlap <rdunlap@...radead.org>
Reported-by: kbuild test robot <lkp@...el.com>
Cc: Gao Xiang <gaoxiang25@...wei.com>
Cc: Chao Yu <yuchao0@...wei.com>
Cc: linux-erofs@...ts.ozlabs.org
---
drivers/staging/erofs/Kconfig | 1 +
1 file changed, 1 insertion(+)
--- linux-next-20181109.orig/drivers/staging/erofs/Kconfig
+++ linux-next-20181109/drivers/staging/erofs/Kconfig
@@ -90,6 +90,7 @@ config EROFS_FS_IO_MAX_RETRIES
config EROFS_FS_ZIP
bool "EROFS Data Compresssion Support"
depends on EROFS_FS
+ select LZ4_DECOMPRESS
help
Currently we support VLE Compression only.
Play at your own risk.
Powered by blists - more mailing lists