David Mulder
47eae704ae
- Update to cifs-utils 6.8. + document more mount options + man pages now generated from RST files + add python-docutils build dependency + update keyring to check tarball signature - Add typo corrections, better doc and configure fixes from upstream + add 0001-docs-cleanup-rst-formating.patch + add 0002-mount.cifs.rst-document-new-no-handlecache-mount-opt.patch + add 0003-manpage-update-mount.cifs-manpage-with-info-about-rd.patch + add 0004-checkopts-add-python-script-to-cross-check-mount-opt.patch + add 0005-mount.cifs.rst-document-missing-options-correct-wron.patch + add 0006-cifs-utils-support-rst2man-3.patch + add 0007-checkopts-report-duplicated-options-in-man-page.patch + add 0008-mount.cifs.rst-more-cleanups.patch + add 0009-mount.cifs.rst-document-vers-3-mount-option.patch + add 0010-mount.cifs.rst-document-vers-3.02-mount-option.patch - Cleanup spec file * assume SUSE vendor and SLE >= 11 OBS-URL: https://build.opensuse.org/request/show/634977 OBS-URL: https://build.opensuse.org/package/show/network:samba:STABLE/cifs-utils?expand=0&rev=153
38 lines
1.2 KiB
Diff
38 lines
1.2 KiB
Diff
From bfcbfaa27a6bcfea3d463e793feff5a983f344a5 Mon Sep 17 00:00:00 2001
|
|
From: Aurelien Aptel <aaptel@suse.com>
|
|
Date: Tue, 15 May 2018 10:40:48 +0200
|
|
Subject: [PATCH 02/10] mount.cifs.rst: document new (no)handlecache mount
|
|
option
|
|
|
|
Signed-off-by: Aurelien Aptel <aaptel@suse.com>
|
|
Reviewed-by: Steve French <smfrench@gmail.com>
|
|
Reviewed-by: Pavel Shilovsky <piastryyy@gmail.com>
|
|
---
|
|
mount.cifs.rst | 10 ++++++++++
|
|
1 file changed, 10 insertions(+)
|
|
|
|
diff --git a/mount.cifs.rst b/mount.cifs.rst
|
|
index c0f0bdb..405c459 100644
|
|
--- a/mount.cifs.rst
|
|
+++ b/mount.cifs.rst
|
|
@@ -237,6 +237,16 @@ cache=arg
|
|
The default in kernels prior to 3.7 was ``loose``. As of kernel 3.7 the
|
|
default is ``strict``.
|
|
|
|
+handlecache
|
|
+ (default) In SMB2 and above, the client often has to open the root
|
|
+ of the share (empty path) in various places during mount, path
|
|
+ revalidation and the statfs(2) system call. This option cuts
|
|
+ redundant round trip traffic (opens and closes) by simply keeping
|
|
+ the directory handle for the root around once opened.
|
|
+
|
|
+nohandlecache
|
|
+ Disable caching of the share root directory handle.
|
|
+
|
|
directio
|
|
Do not do inode data caching on files opened on this mount. This
|
|
precludes mmaping files on this mount. In some cases with fast
|
|
--
|
|
2.13.7
|
|
|