* [f2fs-dev] [PATCH] f2fs: fix stubs when F2FS_FS_COMPRESSION is not enabled
@ 2022-06-14 17:15 Randy Dunlap
0 siblings, 0 replies; only message in thread
From: Randy Dunlap @ 2022-06-14 17:15 UTC (permalink / raw)
To: linux-kernel; +Cc: Jaegeuk Kim, Randy Dunlap, Daeho Jeong, linux-f2fs-devel
Fix build errors when F2FS_FS_COMPRESSION is not set:
../fs/f2fs/data.c: In function ‘f2fs_finish_read_bio’:
../fs/f2fs/data.c:136:5: error: too many arguments to function ‘f2fs_end_read_compressed_page’
f2fs_end_read_compressed_page(page, true, 0,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../fs/f2fs/data.c:25:0:
../fs/f2fs/f2fs.h:4228:20: note: declared here
static inline void f2fs_end_read_compressed_page(struct page *page,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../fs/f2fs/data.c:138:4: error: too many arguments to function ‘f2fs_put_page_dic’
f2fs_put_page_dic(page, in_softirq);
^~~~~~~~~~~~~~~~~
In file included from ../fs/f2fs/data.c:25:0:
../fs/f2fs/f2fs.h:4233:20: note: declared here
static inline void f2fs_put_page_dic(struct page *page)
^~~~~~~~~~~~~~~~~
../fs/f2fs/data.c: In function ‘f2fs_handle_step_decompress’:
../fs/f2fs/data.c:241:4: error: too many arguments to function ‘f2fs_end_read_compressed_page’
f2fs_end_read_compressed_page(page, PageError(page),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../fs/f2fs/data.c:25:0:
../fs/f2fs/f2fs.h:4228:20: note: declared here
static inline void f2fs_end_read_compressed_page(struct page *page,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../fs/f2fs/data.c: In function ‘f2fs_finish_read_bio’:
../fs/f2fs/data.c:138:4: error: too many arguments to function ‘f2fs_put_page_dic’
f2fs_put_page_dic(page, in_softirq);
^~~~~~~~~~~~~~~~~
In file included from ../fs/f2fs/data.c:25:0:
../fs/f2fs/f2fs.h:4234:20: note: declared here
static inline void f2fs_put_page_dic(struct page *page)
^~~~~~~~~~~~~~~~~
Fixes: 1b565702dffe ("f2fs: handle decompress only post processing in softirq")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Daeho Jeong <daehojeong@google.com>
Cc: Jaegeuk Kim <jaegeuk@kernel.org>
Cc: Chao Yu <chao@kernel.org>
Cc: linux-f2fs-devel@lists.sourceforge.net
---
fs/f2fs/f2fs.h | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
--- a/fs/f2fs/f2fs.h
+++ b/fs/f2fs/f2fs.h
@@ -4226,11 +4226,12 @@ static inline int f2fs_init_compress_mem
static inline void f2fs_destroy_compress_mempool(void) { }
static inline void f2fs_decompress_cluster(struct decompress_io_ctx *dic) { }
static inline void f2fs_end_read_compressed_page(struct page *page,
- bool failed, block_t blkaddr)
+ bool failed, block_t blkaddr,
+ bool in_softirq)
{
WARN_ON_ONCE(1);
}
-static inline void f2fs_put_page_dic(struct page *page)
+static inline void f2fs_put_page_dic(struct page *page, bool in_softirq)
{
WARN_ON_ONCE(1);
}
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2022-06-14 17:15 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-14 17:15 [f2fs-dev] [PATCH] f2fs: fix stubs when F2FS_FS_COMPRESSION is not enabled Randy Dunlap
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).