Type: series Message-id: 20180629162122.19376-1-peter.maydell@linaro.org Subject: [Qemu-devel] [PATCH 0/2] tcg: fix TLB miss check in get_page_addr_code() === TEST SCRIPT BEGIN === #!/bin/bash BASE=base n=1 total=$(git log --oneline $BASE.. | wc -l) failed=0 git config --local diff.renamelimit 0 git config --local diff.renames True git config --local diff.algorithm histogram commits="$(git log --format=%H --reverse $BASE..)" for c in $commits; do echo "Checking PATCH $n/$total: $(git log -n 1 --format=%s $c)..." if ! git show $c --format=email | ./scripts/checkpatch.pl --mailback -; then failed=1 echo fi n=$((n+1)) done exit $failed === TEST SCRIPT END === Updating 3c8cf5a9c21ff8782164d1def7f44bd888713384 Switched to a new branch 'test' d103ea9daf accel/tcg: Correct "is this a TLB miss" check in get_page_addr_code() 0c7b6e0f98 tcg: Define and use new tlb_hit() and tlb_hit_page() functions === OUTPUT BEGIN === Checking PATCH 1/2: tcg: Define and use new tlb_hit() and tlb_hit_page() functions... Checking PATCH 2/2: accel/tcg: Correct "is this a TLB miss" check in get_page_addr_code()... === OUTPUT END === Test command exited with code: 0