diff options
author | Suresh Jayaraman <sjayaraman@suse.com> | 2011-10-12 02:22:01 -0400 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2011-10-13 00:42:09 -0400 |
commit | c9c4708fdf63d26e3fdfc65bba9e82e654cae285 (patch) | |
tree | 15e567830032cf66aceb73402e8ea63d7cb5141e /fs | |
parent | e75047344ea415760b2508a6fa29c0288c7b6b68 (diff) |
cifs: update README about the kernel module parameters
Reported-by: Alexander Swen <alex@swen.nu>
Cc: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Suresh Jayaraman <sjayaraman@suse.de>
Signed-off-by: Steve French <smfrench@gmail.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cifs/README | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/fs/cifs/README b/fs/cifs/README index c5c2c5e5f0f2..95b37a1d58f2 100644 --- a/fs/cifs/README +++ b/fs/cifs/README | |||
@@ -745,4 +745,18 @@ installed and something like the following lines should be added to the | |||
745 | create cifs.spnego * * /usr/local/sbin/cifs.upcall %k | 745 | create cifs.spnego * * /usr/local/sbin/cifs.upcall %k |
746 | create dns_resolver * * /usr/local/sbin/cifs.upcall %k | 746 | create dns_resolver * * /usr/local/sbin/cifs.upcall %k |
747 | 747 | ||
748 | CIFS kernel module parameters | ||
749 | ============================= | ||
750 | These module parameters can be specified or modified either during the time of | ||
751 | module loading or during the runtime by using the interface | ||
752 | /proc/module/cifs/parameters/<param> | ||
753 | |||
754 | i.e. echo "value" > /proc/module/cifs/parameters/<param> | ||
755 | |||
756 | 1. echo_retries - The number of echo attempts before giving up and | ||
757 | reconnecting to the server. The default is 5. The value 0 | ||
758 | means never reconnect. | ||
759 | |||
760 | 2. enable_oplocks - Enable or disable oplocks. Oplocks are enabled by default. | ||
761 | [Y/y/1]. To disable use any of [N/n/0]. | ||
748 | 762 | ||