diff --git a/ChangeLog b/ChangeLog index de378c5..489aecd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +nilfs2-kmod10-2.1 Fri Oct 18, 2024 JST + + * backport an upstream fix for a problem where a directory search could + loop for a long time on a broken filesystem, which could result in a + large amount of error logs being output in bursts: + - nilfs2: propagate directory read errors from nilfs_find_entry() + + * backport one page->folio conversion patch for mount time recovery + implementation: + - nilfs2: Use a folio in nilfs_recover_dsync_blocks() + nilfs2-kmod10-2.0 Sun Sep 22, 2024 JST * backport upstream changes to add support for common ioctls for diff --git a/fs/nilfs2/super.c b/fs/nilfs2/super.c index 18bb7c2..e498697 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.0"); +MODULE_VERSION("nilfs2-kmod10-2.1"); static struct kmem_cache *nilfs_inode_cachep; struct kmem_cache *nilfs_transaction_cachep;