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: Ubuntu-5.2.0-15.16~35476^2~4 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=89562b777c50d100d1694db7b1b023279839b9ae;p=mirror_ubuntu-eoan-kernel.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 57e40c49d3b6..5df93fd6303f 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");