From: Giuseppe Scrivano Date: Thu, 4 Mar 2021 16:45:15 +0000 (+0100) Subject: ovl: show "userxattr" in the mount data X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=321b46b904816241044e177c1d6282ad20f17416;p=linux.git ovl: show "userxattr" in the mount data This was missed when adding the option. Signed-off-by: Giuseppe Scrivano Reviewed-by: Vivek Goyal Fixes: 2d2f2d7322ff ("ovl: user xattr") Signed-off-by: Miklos Szeredi --- diff --git a/fs/overlayfs/super.c b/fs/overlayfs/super.c index 4a60bcc0eea39..a33b31bf7e05d 100644 --- a/fs/overlayfs/super.c +++ b/fs/overlayfs/super.c @@ -380,6 +380,8 @@ static int ovl_show_options(struct seq_file *m, struct dentry *dentry) ofs->config.metacopy ? "on" : "off"); if (ofs->config.ovl_volatile) seq_puts(m, ",volatile"); + if (ofs->config.userxattr) + seq_puts(m, ",userxattr"); return 0; }