diff --git a/ChangeLog b/ChangeLog index 5fc049b..ca2ef10 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +nilfs2-kmod10-1.1 Thu Sep 5, 2024 JST + + * backport upstream bug fixes for issues such as memory access + violations or invalid pointer dereferencing due to missing exclusive + controls in the sysfs interface, a use-after-free bug in an error + path of recovery during mount, and hangs and metadata block loss + due to insufficient cleanup after log writer errors: + - nilfs2: fix state management in error path of log writing function + - nilfs2: fix missing cleanup on rollforward recovery error + - nilfs2: protect references to superblock parameters exposed in + sysfs + nilfs2-kmod10-1.0 Tue Aug 20, 2024 JST * add kern_feature.h header file diff --git a/fs/nilfs2/super.c b/fs/nilfs2/super.c index 8caec54..3aaa709 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-kmod10-1.0"); +MODULE_VERSION("nilfs2-kmod10-1.1"); static struct kmem_cache *nilfs_inode_cachep; struct kmem_cache *nilfs_transaction_cachep;