diff --git a/ChangeLog b/ChangeLog index b7e14ef..d05445a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +nilfs2-kmod10-2.5 Mon Dec 23, 2024 JST + + * backport a fix for buffer head leaks that progress in GC: + - nilfs2: fix buffer head leaks in calls to truncate_inode_pages() + + * backport fixes for potential issues such as out-of-page memory access + and link counter underflow that can occur on corrupted file systems: + - nilfs2: prevent use of deleted inode + - nilfs2: fix potential out-of-bounds memory access in + nilfs_find_entry() + nilfs2-kmod10-2.4 Thu Nov 14, 2024 JST * backport fixes for null pointer dereference bugs that occur when diff --git a/fs/nilfs2/super.c b/fs/nilfs2/super.c index f0513d1..f35f6ca 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-2.4"); +MODULE_VERSION("nilfs2-kmod10-2.5"); static struct kmem_cache *nilfs_inode_cachep; struct kmem_cache *nilfs_transaction_cachep;