Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'zonefs-6.9-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs

Pull zonefs fix from Damien Le Moal:

- Suppress a coccicheck warning using str_plural()

* tag 'zonefs-6.9-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs:
zonefs: Use str_plural() to fix Coccinelle warning

+1 -1
+1 -1
fs/zonefs/super.c
··· 1048 1048 zonefs_info(sb, "Zone group \"%s\" has %u file%s\n", 1049 1049 zonefs_zgroup_name(ztype), 1050 1050 zgroup->g_nr_zones, 1051 - zgroup->g_nr_zones > 1 ? "s" : ""); 1051 + str_plural(zgroup->g_nr_zones)); 1052 1052 1053 1053 return 0; 1054 1054 }