From f987b1d6e8476cc40be5ca50bbf193d16550e39b Mon Sep 17 00:00:00 2001 From: Ryusuke Konishi Date: Mon, 27 May 2024 14:18:12 +0900 Subject: [PATCH] nilfs2-kmod8 v1.15 release Signed-off-by: Ryusuke Konishi --- ChangeLog | 19 +++++++++++++++++++ fs/nilfs2/super.c | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 435e057..7ba875d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,22 @@ +nilfs2-kmod8-1.15 Mon May 27, 2024 JST + + * backport fixes for a few issues with the log writer, including + potential use-after-free and hang issues on unmount, and potential + sync operation freezes: + - nilfs2: fix use-after-free of timer for log writer thread + - nilfs2: fix unexpected freezing of nilfs_segctor_sync() + - nilfs2: fix potential hang in nilfs_detach_log_writer() + * backport fixes for potential issues with finishing block writes in + rollforward recovery on mount: + - nilfs2: make block erasure safe in nilfs_finish_roll_forward() + - nilfs2: convert BUG_ON() in nilfs_finish_roll_forward() to + WARN_ON() + * backport a fix for one potential array out-of-bounds access issue + around the directory code: + - nilfs2: fix OOB in nilfs_set_de_type + * backport one environment-dependent build warning fix: + - nilfs2: fix out-of-range warning + nilfs2-kmod8-1.14 Sat Mar 16, 2024 JST * backport fixes for potential issues that could cause a buffer I/O diff --git a/fs/nilfs2/super.c b/fs/nilfs2/super.c index 7f344b1..6937afd 100644 --- a/fs/nilfs2/super.c +++ b/fs/nilfs2/super.c @@ -53,7 +53,7 @@ MODULE_AUTHOR("NTT Corp."); MODULE_DESCRIPTION("A New Implementation of the Log-structured Filesystem " "(NILFS)"); MODULE_LICENSE("GPL"); -MODULE_VERSION("nilfs2-kmod8-1.14"); +MODULE_VERSION("nilfs2-kmod8-1.15"); static struct kmem_cache *nilfs_inode_cachep; struct kmem_cache *nilfs_transaction_cachep;