From d3635b7541cc0ccf6ca93c31df57163182612866 Mon Sep 17 00:00:00 2001 From: Ryusuke Konishi Date: Sun, 11 Feb 2024 22:55:09 +0900 Subject: [PATCH] nilfs2-kmod9 v1.17 release Signed-off-by: Ryusuke Konishi --- ChangeLog | 16 ++++++++++++++++ fs/nilfs2/super.c | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 86a4a4b..a23de84 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,19 @@ +nilfs2-kmod9-1.17 Sun Feb 11, 2024 JST + + * backport fixes for a data corruption issue, mmap-related hangs and + recovery failures, potential kernel panics, and a log writer freeze + handling issue: + - nilfs2: fix hang in nilfs_lookup_dirty_data_buffers() + - nilfs2: fix data corruption in dsync block recovery for small + block sizes + - nilfs2: fix potential bug in end_buffer_async_write + - nilfs2: add missing set_freezable() for freezable kthread + * backport a patch that replaces potentially problematic state + inconsistency checks with warning message output: + - nilfs2: switch WARN_ONs to warning output in nilfs_sufile_do_free() + * backport a kernel-doc fix: + - nilfs2: cpfile: fix some kernel-doc warnings + nilfs2-kmod9-1.16 Sun Dec 10, 2023 JST * backport fixes for problems including memory access violations due to diff --git a/fs/nilfs2/super.c b/fs/nilfs2/super.c index 69d6102..ba53946 100644 --- a/fs/nilfs2/super.c +++ b/fs/nilfs2/super.c @@ -54,7 +54,7 @@ MODULE_AUTHOR("NTT Corp."); MODULE_DESCRIPTION("A New Implementation of the Log-structured Filesystem " "(NILFS)"); MODULE_LICENSE("GPL"); -MODULE_VERSION("nilfs2-kmod9-1.16"); +MODULE_VERSION("nilfs2-kmod9-1.17"); static struct kmem_cache *nilfs_inode_cachep; struct kmem_cache *nilfs_transaction_cachep;