Skip to content
Snippets Groups Projects
Commit 0078454f authored by Elena Gryaznova's avatar Elena Gryaznova
Browse files

b=15747

i=Tappro
test_24 and t-f client_reconnect fn fix
parent 6261575b
No related branches found
No related tags found
No related merge requests found
......@@ -586,8 +586,9 @@ test_23() { #b=4561
}
run_test 23 "client hang when close a file after mds crash"
test_24() { # bug 2248 - eviction fails writeback but app doesn't see it
test_24() { # bug 11710 details correct fsync() behavior
mkdir -p $DIR/$tdir
lfs setstripe $DIR/$tdir -s 0 -i 0 -c 1
cancel_lru_locks osc
multiop_bg_pause $DIR/$tdir/$tfile Owy_wyc || return 1
MULTI_PID=$!
......
......@@ -722,8 +722,10 @@ client_df() {
client_reconnect() {
uname -n >> $MOUNT/recon
if [ ! -z "$CLIENTS" ]; then
$PDSH $CLIENTS "df $MOUNT; uname -n >> $MOUNT/recon" > /dev/null
if [ -z "$CLIENTS" ]; then
df $MOUNT; uname -n >> $MOUNT/recon
else
do_nodes $CLIENTS "df $MOUNT; uname -n >> $MOUNT/recon" > /dev/null
fi
echo Connected clients:
cat $MOUNT/recon
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment