From dcb312b511998c73277cb84bf94a129b266a37fd Mon Sep 17 00:00:00 2001 From: adilger <adilger> Date: Fri, 14 Sep 2007 21:59:37 +0000 Subject: [PATCH] Branch HEAD Disable client page cache checksumming by default. This does not affect the wire checksumming, and only adds a lot of CPU overhead that is mostly useful only for debugging rare client memory corruption vs. the more common network transfer corruption. It can be enabled at runtime via "echo 1 > $LPROC/llite/*/checksum_pages". b=13579 i=scjody i=nathan --- lustre/llite/llite_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/llite/llite_lib.c b/lustre/llite/llite_lib.c index 241bcd4a25..efdb244284 100644 --- a/lustre/llite/llite_lib.c +++ b/lustre/llite/llite_lib.c @@ -87,7 +87,7 @@ static struct ll_sb_info *ll_init_sbi(void) list_add_tail(&sbi->ll_list, &ll_super_blocks); spin_unlock(&ll_sb_lock); -#ifdef ENABLE_CHECKSUM +#ifdef ENABLE_LLITE_CHECKSUM sbi->ll_flags |= LL_SBI_CHECKSUM; #endif -- GitLab