… > +++ b/fs/zonefs/super.c … > +static const char *zgroups_name[ZONEFS_ZTYPE_MAX] = { "cnv", "seq" }; Can this array be treated as immutable? How do you think about to use the following code variant? +static const char const *zgroups_name[ZONEFS_ZTYPE_MAX] = { "cnv", "seq" }; Regards, Markus