ocfs2: Add xattr mount option in ocfs2_show_options()
authorSunil Mushran <sunil.mushran@oracle.com>
Fri, 5 Sep 2008 18:29:14 +0000 (11:29 -0700)
committerMark Fasheh <mfasheh@suse.com>
Tue, 14 Oct 2008 00:02:43 +0000 (17:02 -0700)
Patch adds check for [no]user_xattr in ocfs2_show_options() that completes
the list of all mount options.

Signed-off-by: Sunil Mushran <sunil.mushran@oracle.com>
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
fs/ocfs2/super.c

index 8b4c5c6..d2027ce 100644 (file)
@@ -1010,6 +1010,11 @@ static int ocfs2_show_options(struct seq_file *s, struct vfsmount *mnt)
                seq_printf(s, ",cluster_stack=%.*s", OCFS2_STACK_LABEL_LEN,
                           osb->osb_cluster_stack);
 
+       if (opts & OCFS2_MOUNT_NOUSERXATTR)
+               seq_printf(s, ",nouser_xattr");
+       else
+               seq_printf(s, ",user_xattr");
+
        if (opts & OCFS2_MOUNT_INODE64)
                seq_printf(s, ",inode64");