diff options
author | Pavel Shilovsky <pshilov@microsoft.com> | 2019-04-03 12:24:33 -0700 |
---|---|---|
committer | Pavel Shilovsky <pshilov@microsoft.com> | 2019-04-05 09:42:38 -0700 |
commit | b6cb671d3b0df9c8daabc6f52ad9d5e689da4f37 (patch) | |
tree | dd0e16ccd5816210755b3ced1a7ac93d3f5b37c5 | |
parent | 83c6472020afc3db0c63b65e7b67d65a61f3a12e (diff) | |
download | cifs-utils-b6cb671d3b0df9c8daabc6f52ad9d5e689da4f37.tar.gz cifs-utils-b6cb671d3b0df9c8daabc6f52ad9d5e689da4f37.tar.bz2 cifs-utils-b6cb671d3b0df9c8daabc6f52ad9d5e689da4f37.zip |
mount.cifs: add more options to help message
Signed-off-by: Pavel Shilovsky <pshilov@microsoft.com>
Reviewed-by: Paulo Alcantara <palcantara@suse.de>
-rw-r--r-- | mount.cifs.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/mount.cifs.c b/mount.cifs.c index d921fed..c6a1bd6 100644 --- a/mount.cifs.c +++ b/mount.cifs.c @@ -267,13 +267,13 @@ static int mount_usage(FILE * stream) fprintf(stream, "\n\tsep=<char>,iocharset=<codepage>,suid,nosuid,exec,noexec,serverino,"); fprintf(stream, - "\n\tmapchars,nomapchars,nolock,servernetbiosname=<SRV_RFC1001NAME>"); + "\n\tnoserverino,mapchars,nomapchars,nolock,servernetbiosname=<SRV_RFC1001NAME>"); fprintf(stream, - "\n\tdirectio,nounix,cifsacl,sec=<authentication mechanism>,sign,seal,fsc,"); + "\n\tcache=<strict|none|loose>,nounix,cifsacl,sec=<authentication mechanism>,"); fprintf(stream, - "\n\tsnapshot=<time>,nosharesock,persistenthandles,resilienthandles,rdma,"); + "\n\tsign,seal,fsc,snapshot=<time>,nosharesock,persistenthandles,resilienthandles,"); fprintf(stream, - "\n\tvers=<smb_dialect>,cruid"); + "\n\trdma,vers=<smb_dialect>,cruid"); fprintf(stream, "\n\nOptions not needed for servers supporting CIFS Unix extensions"); fprintf(stream, @@ -290,7 +290,9 @@ static int mount_usage(FILE * stream) fprintf(stream, "\n\tnointr,ignorecase,noposixpaths,noacl,prefixpath=<path>,nobrl,"); fprintf(stream, - "\n\techo_interval=<seconds>,actimeo=<seconds>,max_credits=<credits>"); + "\n\techo_interval=<seconds>,actimeo=<seconds>,max_credits=<credits>,"); + fprintf(stream, + "\n\tbsize=<size>"); fprintf(stream, "\n\nOptions are described in more detail in the manual page"); fprintf(stream, "\n\tman 8 mount.cifs\n"); |