From 31d7102ce02d25a7b1214d8d6c690cadddd16554 Mon Sep 17 00:00:00 2001 From: yangsheng Date: Mon, 24 Nov 2008 03:41:51 +0000 Subject: [PATCH] Branch b1_8_gate b=17630 i=green, adilger Disable NFS export when the THREAD_SIZE < 8192. --- lustre/llite/llite_lib.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lustre/llite/llite_lib.c b/lustre/llite/llite_lib.c index 6eb9cb7..cc4eb1b 100644 --- a/lustre/llite/llite_lib.c +++ b/lustre/llite/llite_lib.c @@ -472,7 +472,9 @@ static int client_common_fill_super(struct super_block *sb, sbi->ll_rootino = rootfid.id; sb->s_op = &lustre_super_operations; +#if THREAD_SIZE >= 8192 sb->s_export_op = &lustre_export_operations; +#endif /* make root inode * XXX: move this to after cbd setup? */ -- 1.8.3.1