From 35b43c5e182e8745a039890b54371ad8b4a0db48 Mon Sep 17 00:00:00 2001 From: "Alexander.Zarochentev" Date: Wed, 3 Feb 2010 21:01:02 +0300 Subject: [PATCH] b=21264 workaround dd bus error A buggy coreutils/gettext combination workaround. Suppressing dd xfer statistic makes dd do not call gnu gettext library and avoid crashing. i=robert.read --- lustre/tests/run_dd.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lustre/tests/run_dd.sh b/lustre/tests/run_dd.sh index d50150e..d8151d8 100755 --- a/lustre/tests/run_dd.sh +++ b/lustre/tests/run_dd.sh @@ -28,7 +28,9 @@ while [ ! -e "$END_RUN_FILE" ] && $CONTINUE; do echoerr "$(date +'%F %H:%M:%S'): dd run starting" mkdir -p $TESTDIR cd $TESTDIR - dd bs=4k count=1000000 if=/dev/zero of=$TESTDIR/dd-file 1>$LOG & + # suppress dd xfer stat to workaround buggy coreutils/gettext + # combination in RHEL5 and OEL5, see BZ 21264 + dd bs=4k count=1000000 status=noxfer if=/dev/zero of=$TESTDIR/dd-file 1>$LOG & load_pid=$! wait $load_pid -- 1.8.3.1