From 5b661fb8887b280da9407a3e1560bb4678540601 Mon Sep 17 00:00:00 2001 From: yury Date: Tue, 28 Nov 2006 07:58:05 +0000 Subject: [PATCH] - make split size 128K to ensure that no split happens in recovery but still happens in perf. tests. --- lustre/cmm/cmm_split.c | 2 +- lustre/ptlrpc/import.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 -- 1.8.3.1