Messages in this thread |  | | Subject | Re: [PATCH v10 1/2] fs: New zonefs file system | From | Markus Elfring <> | Date | Tue, 4 Feb 2020 10:46:31 +0100 |
| |
… > +++ 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
|  |