1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
#! /bin/sh
#
# Create an LKCDv9 file with a gap (missing page) and verify that
# pages beyond the gap are found, while the gap itself is not found
#
mkdir -p out || exit 99
name=$( basename "$0" )
datafile="out/${name}.data"
dumpfile="out/${name}.dump"
magic="4E 6F 4D 61 67 69 63 21"
cat >"$datafile" <<EOF
@0
00*4096
@
00*4096
# Gap is here at 0x2000
@0x3000
$magic
00*4088
@0 end
EOF
./mklkcd "$dumpfile" <<EOF
arch_name = x86_64
page_shift = 12
page_offset = 0xffff880000000000
NR_CPUS = 8
num_cpus = 1
compression = 1
DATA = $datafile
EOF
rc=$?
if [ $rc -ne 0 ]; then
echo "Cannot create lkcd file" >&2
exit $rc
fi
echo "Created LKCD dump: $dumpfile"
result=$( ./dumpdata "$dumpfile" 0x3000 8 )
rc=$?
if [ $rc -ne 0 ]; then
echo "Cannot dump beyond gap" >&2
exit $rc
fi
echo "Data beyond gap: $result"
if [ "${result% *}" != "$magic" ] ; then
echo "Wrong data found" >&2
exit 1
fi
./dumpdata "$dumpfile" 0x2000 8
rc=$?
if [ $rc -eq 0 ]; then
echo "Dumping gap should fail" >&2
exit 1
elif [ $rc -ne 1 ]; then
echo "Unexpected error" >&2
exit 1
fi
exit 0
|