aboutsummaryrefslogtreecommitdiffstats
path: root/fs/orangefs
diff options
context:
space:
mode:
authorMartin Brandenburg <martin@omnibond.com>2016-07-26 13:23:04 -0400
committerMartin Brandenburg <martin@omnibond.com>2016-08-02 15:38:47 -0400
commit957ee43718c5a226fa70ef5e680d037ca9156af6 (patch)
treec2d80427fd5e5120fa61aa2575e4d8e4204f5366 /fs/orangefs
parentorangefs: Allow dcache and getattr cache time to be configured. (diff)
downloadlinux-dev-957ee43718c5a226fa70ef5e680d037ca9156af6.tar.xz
linux-dev-957ee43718c5a226fa70ef5e680d037ca9156af6.zip
orangefs: Change default dcache and getattr timeout to 50 msec.
Signed-off-by: Martin Brandenburg <martin@omnibond.com>
Diffstat (limited to 'fs/orangefs')
-rw-r--r--fs/orangefs/orangefs-mod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/orangefs/orangefs-mod.c b/fs/orangefs/orangefs-mod.c
index 1caef0aab63e..e9fd5755c05f 100644
--- a/fs/orangefs/orangefs-mod.c
+++ b/fs/orangefs/orangefs-mod.c
@@ -47,8 +47,8 @@ struct client_debug_mask client_debug_mask = { NULL, 0, 0 };
unsigned int kernel_mask_set_mod_init; /* implicitly false */
int op_timeout_secs = ORANGEFS_DEFAULT_OP_TIMEOUT_SECS;
int slot_timeout_secs = ORANGEFS_DEFAULT_SLOT_TIMEOUT_SECS;
-int dcache_timeout_msecs = 1000;
-int getattr_timeout_msecs = 1000;
+int dcache_timeout_msecs = 50;
+int getattr_timeout_msecs = 50;
MODULE_LICENSE("GPL");
MODULE_AUTHOR("ORANGEFS Development Team");