From 91c8099c1a1a66f9aee468af1aeb3baf0c74368d Mon Sep 17 00:00:00 2001 From: Elena Gryaznova Date: Fri, 26 Nov 2010 11:08:35 +0300 Subject: [PATCH] b=24020 lustre doesn't start with ext4 based ldiskfs. i=Andrew.Perepechko load jbd2 module in load modules --- lustre/tests/test-framework.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lustre/tests/test-framework.sh b/lustre/tests/test-framework.sh index 6788dbb..ac78020 100644 --- a/lustre/tests/test-framework.sh +++ b/lustre/tests/test-framework.sh @@ -348,7 +348,8 @@ load_modules_local() { load_module mgc/mgc if ! client_only; then grep -q crc16 /proc/kallsyms || { modprobe crc16 2>/dev/null || true; } - grep -q jbd /proc/kallsyms || { modprobe jbd 2>/dev/null || true; } + grep -q -w jbd /proc/kallsyms || { modprobe jbd 2>/dev/null || true; } + grep -q -w jbd2 /proc/kallsyms || { modprobe jbd2 2>/dev/null || true; } [ "$FSTYPE" = "ldiskfs" ] && load_module ../ldiskfs/ldiskfs/ldiskfs load_module mgs/mgs load_module mds/mds -- 1.8.3.1