Whamcloud - gitweb
- make split size 128K to ensure that no split happens in recovery but still happens...
authoryury <yury>
Tue, 28 Nov 2006 07:58:05 +0000 (07:58 +0000)
committeryury <yury>
Tue, 28 Nov 2006 07:58:05 +0000 (07:58 +0000)
lustre/cmm/cmm_split.c
lustre/ptlrpc/import.c

index 8381040..27c6027 100644 (file)
@@ -42,7 +42,7 @@
 #include "mdc_internal.h"
 
 enum {
-        CMM_SPLIT_SIZE =  64 * 1024
+        CMM_SPLIT_SIZE =  128 * 1024
 };
 
 /*
index fc2cf76..4b60f96 100644 (file)
@@ -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