On Mon, Aug 31, 2020 at 7:12 PM Vivek Goyal <vgoyal@xxxxxxxxxx> wrote: > > On Sun, Aug 30, 2020 at 11:28:03PM +0300, Amir Goldstein wrote: > > [..] > > @@ -1079,21 +1090,29 @@ static void ovl_workdir_cleanup_recurse(struct path *path, int level) > > continue; > > if (p->len == 2 && p->name[1] == '.') > > continue; > > + } else if (incompat) { > > + pr_warn("overlay with incompat feature '%.*s' cannot be mounted\n", > > + p->len, p->name); > > + err = -EEXIST; > > + break; > > Hi Amir, > > Should above be pr_err() instead of pr_warn()? > Sure. I suppose Miklos can fix that on commit... Thanks, Amir.