ovl: show "userxattr" in the mount data
authorGiuseppe Scrivano <gscrivan@redhat.com>
Thu, 4 Mar 2021 16:45:15 +0000 (17:45 +0100)
committerMiklos Szeredi <mszeredi@redhat.com>
Mon, 12 Apr 2021 10:00:37 +0000 (12:00 +0200)
This was missed when adding the option.

Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Reviewed-by: Vivek Goyal <vgoyal@redhat.com>
Fixes: 2d2f2d7322ff ("ovl: user xattr")
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
fs/overlayfs/super.c

index 4a60bcc..a33b31b 100644 (file)
@@ -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;
 }