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
|
#! /bin/sh
#
# Create an LKCDv9 with unordered data and verify that the data from
# the out-of-order page can be read.
#
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
00*4096
# Fill the gap here:
@0x2000
$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" 0x2000 8 )
rc=$?
if [ $rc -ne 0 ]; then
echo "Cannot read data" >&2
exit $rc
fi
echo "Data: $result"
if [ "${result% *}" != "$magic" ] ; then
echo "Wrong data found" >&2
exit 1
fi
exit 0
|