diff --git a/ChangeLog b/ChangeLog index 7f2c7c4..013dbe2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,19 @@ +nilfs2-kmod9-1.14 Wed Oct 4, 2023 JST + + * fix build issues on newer RHEL 9 kernels (RHEL_RELEASE >= 370): + - Allow switching between new and old blkdev_{get_by_*,put}() + - Allow to remove sb->s_mode for newer kernels + - Support blk_mode_t type and sb_open_mode() helper introduction + * backport one fix for a potential user-after-free issue in a + GC-related routine: + - nilfs2: fix potential use after free in + nilfs_gccache_submit_read_data() + * allow use of a safer timer shutdown routine: + - Allow to use timer_shutdown_sync() + - treewide: Convert del_timer*() to timer_shutdown*() + * one minor build compatibility improvement: + - Add missing definitions for when RHEL_RELEASE_N cannot be obtained + nilfs2-kmod9-1.13 Mon Sep 4, 2023 JST * backport fixes for user-after-free read, general protection fault, diff --git a/fs/nilfs2/super.c b/fs/nilfs2/super.c index 77cb821..f8dcbc6 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.13"); +MODULE_VERSION("nilfs2-kmod9-1.14"); static struct kmem_cache *nilfs_inode_cachep; struct kmem_cache *nilfs_transaction_cachep;