From: yury Date: Tue, 28 Nov 2006 07:58:05 +0000 (+0000) Subject: - make split size 128K to ensure that no split happens in recovery but still happens... X-Git-Tag: v1_8_0_110~486^2~67 X-Git-Url: https://git.whamcloud.com/gitweb?a=commitdiff_plain;h=5b661fb8887b280da9407a3e1560bb4678540601;p=fs%2Flustre-release.git - make split size 128K to ensure that no split happens in recovery but still happens in perf. tests. --- diff --git a/lustre/cmm/cmm_split.c b/lustre/cmm/cmm_split.c index 8381040..27c6027 100644 --- a/lustre/cmm/cmm_split.c +++ b/lustre/cmm/cmm_split.c @@ -42,7 +42,7 @@ #include "mdc_internal.h" enum { - CMM_SPLIT_SIZE = 64 * 1024 + CMM_SPLIT_SIZE = 128 * 1024 }; /* diff --git a/lustre/ptlrpc/import.c b/lustre/ptlrpc/import.c index fc2cf76..4b60f96 100644 --- a/lustre/ptlrpc/import.c +++ b/lustre/ptlrpc/import.c @@ -885,7 +885,7 @@ int ptlrpc_import_recovery_state_machine(struct obd_import *imp) #ifdef __KERNEL__ rc = cfs_kernel_thread(ptlrpc_invalidate_import_thread, imp, - CLONE_VM | CLONE_FILES); + CLONE_VM | CLONE_FILES); if (rc < 0) CERROR("error starting invalidate thread: %d\n", rc); else