diff options
author | Martin Brandenburg <martin@omnibond.com> | 2016-07-26 13:23:04 -0400 |
---|---|---|
committer | Martin Brandenburg <martin@omnibond.com> | 2016-08-02 15:38:47 -0400 |
commit | 957ee43718c5a226fa70ef5e680d037ca9156af6 (patch) | |
tree | c2d80427fd5e5120fa61aa2575e4d8e4204f5366 /fs | |
parent | 4cd8f319441a323280eaa0acf390ffb18c64d86b (diff) | |
download | linux-957ee43718c5a226fa70ef5e680d037ca9156af6.tar.gz linux-957ee43718c5a226fa70ef5e680d037ca9156af6.tar.bz2 linux-957ee43718c5a226fa70ef5e680d037ca9156af6.zip |
orangefs: Change default dcache and getattr timeout to 50 msec.
Signed-off-by: Martin Brandenburg <martin@omnibond.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/orangefs/orangefs-mod.c | 4 |
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"); |