From: Steve French Date: Mon, 19 May 2008 22:26:42 +0000 (+0000) Subject: [CIFS] add missing seq_printf to cifs_show_options for hard mount option X-Git-Tag: v2.6.26-rc4~89^2~4 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=89562b777c50d100d1694db7b1b023279839b9ae;p=linux-2.6-omap-h63xx.git [CIFS] add missing seq_printf to cifs_show_options for hard mount option Also Kari Hurtta noticed a missing check in the same function which is now fixed. CC: Kari Hurtta Signed-off-by: Steve French --- diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index 57e40c49d3b..5df93fd6303 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -360,7 +360,10 @@ cifs_show_options(struct seq_file *s, struct vfsmount *m) } if (cifs_sb->tcon->seal) seq_printf(s, ",seal"); + if (cifs_sb->tcon->nocase) seq_printf(s, ",nocase"); + if (cifs_sb->tcon->retry) + seq_printf(s, ",hard"); } if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS) seq_printf(s, ",posixpaths");