On Mon, Jan 27, 2020 at 5:26 PM Damien Le Moal <Damien.LeMoal@xxxxxxx> wrote: > > Yes, good catch. Furthermore, since this array is used only in > zonefs_create_zgroup(), I moved its declaration on-stack in that function. What? Making it _local_ to that function makes sense, but not on stack. Please keep it "static const char *[]" so that it isn't copied onto the stack. Linus