mirror of
https://github.com/ceph/ceph
synced 2024-12-12 22:46:21 +00:00
466c002f18
This (usually) reproduced a bug where: - we write a big file - snap it - remove it. this makes the mds cow it. - cp the snapped version. - mds syncs the head - client starts writeback - (sometimes!) client sends other caps back to the mds - mds does null flushsnap, not realizing a real one is still coming
24 lines
403 B
Bash
Executable File
24 lines
403 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
set -e
|
|
|
|
file=linux-2.6.33.tar.bz2
|
|
wget http://ceph.newdream.net/qa/$file
|
|
|
|
real=`md5sum $file | awk '{print $1}'`
|
|
|
|
for f in `seq 1 20`
|
|
do
|
|
echo $f
|
|
cp $file a
|
|
mkdir .snap/s
|
|
rm a
|
|
cp .snap/s/a /tmp/a
|
|
cur=`md5sum /tmp/a | awk '{print $1}'`
|
|
if [ "$cur" != "$real" ]; then
|
|
echo "FAIL: bad match, /tmp/a $cur != real $real"
|
|
false
|
|
fi
|
|
rmdir .snap/s
|
|
done
|
|
rm $file |