From: brian Date: Fri, 24 Mar 2006 18:06:20 +0000 (+0000) Subject: strace that update_oldconfig to see why make oldconfig is timing out the expect script. X-Git-Tag: 1.4.10~335 X-Git-Url: https://git.whamcloud.com/gitweb?a=commitdiff_plain;h=26a6d80572ed171526ab3527d1a5ed3a5d18721e;p=fs%2Flustre-release.git strace that update_oldconfig to see why make oldconfig is timing out the expect script. --- diff --git a/build/lmake b/build/lmake index 1b58e4e..13264d7 100755 --- a/build/lmake +++ b/build/lmake @@ -382,7 +382,8 @@ depend_kernel() # new items conservatively. QA will get notified on anything newly added # for them to review and adjust accordingly. local logfile=$(mktemp /tmp/XXXXXX) - timed_run 300 $TOPDIR/build/update_oldconfig $logfile + #timed_run 300 $TOPDIR/build/update_oldconfig $logfile + strace -f -o update_oldconfig.strace $TOPDIR/build/update_oldconfig $logfile local RC=${PIPESTATUS[0]} if [ $RC -eq 143 ]; then fatal 1 "update_oldconfig timed out" @@ -390,6 +391,8 @@ depend_kernel() # dump the log cat $logfile rm -f $logfile + cat update_oldconfig.strace + rm -f update_oldconfig.strace fatal 1 "update_oldconfig failed: $RC. See log above." fi rm -f $logfile