Whamcloud - gitweb
git://git.whamcloud.com
/
fs
/
lustre-release.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b62386b
)
Before trying to insmod a .o module, try to modprobe one from the current
author
buffalo-pull
<buffalo-pull>
Fri, 18 Jun 2004 13:22:51 +0000
(13:22 +0000)
committer
buffalo-pull
<buffalo-pull>
Fri, 18 Jun 2004 13:22:51 +0000
(13:22 +0000)
kernel.
Also, try to insmod a .ko module if a .o module fails, for kernel 2.6.
lustre/tests/run-llog.sh
patch
|
blob
|
history
diff --git
a/lustre/tests/run-llog.sh
b/lustre/tests/run-llog.sh
index
5d46e2b
..
31e9d6a
100644
(file)
--- a/
lustre/tests/run-llog.sh
+++ b/
lustre/tests/run-llog.sh
@@
-5,7
+5,7
@@
TMP=${TMP:-/tmp}
MDS=`ls /proc/fs/lustre/mds | grep -v num_refs | head -1`
[ -z "$MDS" ] && echo "no MDS available, skipping llog test" && exit 0
-
insmod ../obdclass/llog_test.
o || exit 1
+
modprobe llog_test || insmod ../obdclass/llog_test.o || insmod ../obdclass/llog_test.k
o || exit 1
lctl modules > $TMP/ogdb-`hostname`
echo "NOW reload debugging syms.."