Message ID | 20200310130844.30076-1-kuhn.chenqun@huawei.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | hw/scsi/megasas:Clean up some redundant code fix Clang warnings | expand |
On Tue, 10 Mar 2020 at 13:10, Chen Qun <kuhn.chenqun@huawei.com> wrote: > > Here are some redundant statements, we can clean them up. > Clang static code analyzer show warning: > hw/scsi/megasas.c:1175:32: warning: Value stored to 'max_ld_disks' during its initialization is never read > uint32_t num_ld_disks = 0, max_ld_disks = s->fw_luns; > ^~~~~~~~~~~~ ~~~~~~~~~~ > hw/scsi/megasas.c:1183:9: warning: Value stored to 'max_ld_disks' is never read > max_ld_disks = 0; > ^ ~ > > Reported-by: Euler Robot <euler.robot@huawei.com> > Signed-off-by: Chen Qun <kuhn.chenqun@huawei.com> > --- > Cc: Paolo Bonzini <pbonzini@redhat.com> > Cc: Fam Zheng <fam@euphon.net> > Cc: Hannes Reinecke <hare@suse.com> > Cc: qemu-block@nongnu.org > --- > hw/scsi/megasas.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/hw/scsi/megasas.c b/hw/scsi/megasas.c > index af18c88b65..3f982e1d3b 100644 > --- a/hw/scsi/megasas.c > +++ b/hw/scsi/megasas.c > @@ -1172,7 +1172,7 @@ static int megasas_dcmd_ld_list_query(MegasasState *s, MegasasCmd *cmd) > uint16_t flags; > struct mfi_ld_targetid_list info; > size_t dcmd_size = sizeof(info), resid; > - uint32_t num_ld_disks = 0, max_ld_disks = s->fw_luns; > + uint32_t num_ld_disks = 0, max_ld_disks; > BusChild *kid; > > /* mbox0 contains flags */ > @@ -1180,7 +1180,6 @@ static int megasas_dcmd_ld_list_query(MegasasState *s, MegasasCmd *cmd) > trace_megasas_dcmd_ld_list_query(cmd->index, flags); > if (flags != MR_LD_QUERY_TYPE_ALL && > flags != MR_LD_QUERY_TYPE_EXPOSED_TO_HOST) { > - max_ld_disks = 0; > } This doesn't look right -- your change removes the only statement in the body of this "if". I think you need to examine what the function is trying to do with the test it is doing on these flags in order to identify what the right change is... Probably this means going back to the h/w spec to identify the correct behaviour overall. thanks -- PMM
Patchew URL: https://patchew.org/QEMU/20200310130844.30076-1-kuhn.chenqun@huawei.com/ Hi, This series failed the asan build test. Please find the testing commands and their output below. If you have Docker installed, you can probably reproduce it locally. === TEST SCRIPT BEGIN === #!/bin/bash export ARCH=x86_64 make docker-image-fedora V=1 NETWORK=1 time make docker-test-debug@fedora TARGET_LIST=x86_64-softmmu J=14 NETWORK=1 === TEST SCRIPT END === PASS 1 fdc-test /x86_64/fdc/cmos PASS 2 fdc-test /x86_64/fdc/no_media_on_start PASS 3 fdc-test /x86_64/fdc/read_without_media ==6148==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 4 fdc-test /x86_64/fdc/media_change PASS 5 fdc-test /x86_64/fdc/sense_interrupt PASS 6 fdc-test /x86_64/fdc/relative_seek --- PASS 32 test-opts-visitor /visitor/opts/range/beyond PASS 33 test-opts-visitor /visitor/opts/dict/unvisited MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-coroutine -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-coroutine" ==6199==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==6199==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7fffa2918000; bottom 0x7f1ef36e1000; size: 0x00e0af237000 (965011009536) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 1 test-coroutine /basic/no-dangling-access --- PASS 12 fdc-test /x86_64/fdc/read_no_dma_19 PASS 13 fdc-test /x86_64/fdc/fuzz-registers MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/ide-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="ide-test" ==6214==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 14 test-aio /aio/timer/schedule PASS 15 test-aio /aio/coroutine/queue-chaining PASS 16 test-aio /aio-gsource/flush --- PASS 25 test-aio /aio-gsource/event/wait PASS 26 test-aio /aio-gsource/event/flush PASS 27 test-aio /aio-gsource/event/wait/no-flush-cb ==6222==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 1 ide-test /x86_64/ide/identify ==6228==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 2 ide-test /x86_64/ide/flush PASS 28 test-aio /aio-gsource/timer/schedule MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-aio-multithread -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-aio-multithread" ==6234==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 3 ide-test /x86_64/ide/bmdma/simple_rw ==6240==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 1 test-aio-multithread /aio/multi/lifecycle ==6243==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 4 ide-test /x86_64/ide/bmdma/trim PASS 2 test-aio-multithread /aio/multi/schedule ==6260==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 3 test-aio-multithread /aio/multi/mutex/contended PASS 4 test-aio-multithread /aio/multi/mutex/handoff PASS 5 test-aio-multithread /aio/multi/mutex/mcs PASS 6 test-aio-multithread /aio/multi/mutex/pthread MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-throttle -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-throttle" ==6287==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 1 test-throttle /throttle/leak_bucket PASS 2 test-throttle /throttle/compute_wait PASS 3 test-throttle /throttle/init --- MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-thread-pool -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-thread-pool" PASS 1 test-thread-pool /thread-pool/submit PASS 2 test-thread-pool /thread-pool/submit-aio ==6291==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 3 test-thread-pool /thread-pool/submit-co PASS 4 test-thread-pool /thread-pool/submit-many ==6293==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 5 test-thread-pool /thread-pool/cancel PASS 6 test-thread-pool /thread-pool/cancel-async MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-hbitmap -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-hbitmap" --- PASS 12 test-hbitmap /hbitmap/set/two-elem PASS 13 test-hbitmap /hbitmap/set/general PASS 14 test-hbitmap /hbitmap/set/twice ==6368==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 15 test-hbitmap /hbitmap/set/overlap PASS 16 test-hbitmap /hbitmap/reset/empty PASS 17 test-hbitmap /hbitmap/reset/general --- PASS 28 test-hbitmap /hbitmap/truncate/shrink/medium PASS 29 test-hbitmap /hbitmap/truncate/shrink/large PASS 30 test-hbitmap /hbitmap/meta/zero ==6374==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 31 test-hbitmap /hbitmap/meta/one PASS 32 test-hbitmap /hbitmap/meta/byte PASS 33 test-hbitmap /hbitmap/meta/word --- PASS 44 test-hbitmap /hbitmap/next_dirty_area/next_dirty_area_4 PASS 45 test-hbitmap /hbitmap/next_dirty_area/next_dirty_area_after_truncate MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-bdrv-drain -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-bdrv-drain" ==6381==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 1 test-bdrv-drain /bdrv-drain/nested PASS 2 test-bdrv-drain /bdrv-drain/multiparent PASS 3 test-bdrv-drain /bdrv-drain/set_aio_context --- PASS 41 test-bdrv-drain /bdrv-drain/bdrv_drop_intermediate/poll PASS 42 test-bdrv-drain /bdrv-drain/replace_child/mid-drain MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-bdrv-graph-mod -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-bdrv-graph-mod" ==6420==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 1 test-bdrv-graph-mod /bdrv-graph-mod/update-perm-tree PASS 2 test-bdrv-graph-mod /bdrv-graph-mod/should-update-child MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-blockjob -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-blockjob" ==6424==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 1 test-blockjob /blockjob/ids PASS 2 test-blockjob /blockjob/cancel/created PASS 3 test-blockjob /blockjob/cancel/running --- PASS 7 test-blockjob /blockjob/cancel/pending PASS 8 test-blockjob /blockjob/cancel/concluded MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-blockjob-txn -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-blockjob-txn" ==6430==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 1 test-blockjob-txn /single/success PASS 2 test-blockjob-txn /single/failure PASS 3 test-blockjob-txn /single/cancel --- PASS 6 test-blockjob-txn /pair/cancel PASS 7 test-blockjob-txn /pair/fail-cancel-race MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-block-backend -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-block-backend" ==6434==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 1 test-block-backend /block-backend/drain_aio_error PASS 2 test-block-backend /block-backend/drain_all_aio_error MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-block-iothread -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-block-iothread" ==6427==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==6441==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 1 test-block-iothread /sync-op/pread PASS 2 test-block-iothread /sync-op/pwrite PASS 3 test-block-iothread /sync-op/load_vmstate --- PASS 15 test-block-iothread /propagate/diamond PASS 16 test-block-iothread /propagate/mirror MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-image-locking -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-image-locking" ==6462==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 1 test-image-locking /image-locking/basic PASS 2 test-image-locking /image-locking/set-perm-abort MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-x86-cpuid -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-x86-cpuid" --- PASS 2 rcutorture /rcu/torture/10readers MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-rcu-list -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-rcu-list" PASS 1 test-rcu-list /rcu/qlist/single-threaded ==6520==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 2 test-rcu-list /rcu/qlist/short-few PASS 3 test-rcu-list /rcu/qlist/long-many MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-rcu-simpleq -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-rcu-simpleq" PASS 1 test-rcu-simpleq /rcu/qsimpleq/single-threaded PASS 2 test-rcu-simpleq /rcu/qsimpleq/short-few ==6586==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 3 test-rcu-simpleq /rcu/qsimpleq/long-many MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-rcu-tailq -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-rcu-tailq" PASS 1 test-rcu-tailq /rcu/qtailq/single-threaded PASS 2 test-rcu-tailq /rcu/qtailq/short-few PASS 3 test-rcu-tailq /rcu/qtailq/long-many MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-rcu-slist -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-rcu-slist" ==6625==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 1 test-rcu-slist /rcu/qslist/single-threaded PASS 2 test-rcu-slist /rcu/qslist/short-few PASS 3 test-rcu-slist /rcu/qslist/long-many --- PASS 7 test-qdist /qdist/binning/expand PASS 8 test-qdist /qdist/binning/shrink MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-qht -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-qht" ==6671==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 5 ide-test /x86_64/ide/bmdma/various_prdts ==6677==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==6677==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffe572ce000; bottom 0x7f896b798000; size: 0x0074ebb36000 (502170607616) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 6 ide-test /x86_64/ide/bmdma/no_busmaster PASS 7 ide-test /x86_64/ide/flush/nodev ==6688==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 8 ide-test /x86_64/ide/flush/empty_drive ==6693==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 9 ide-test /x86_64/ide/flush/retry_pci ==6699==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 10 ide-test /x86_64/ide/flush/retry_isa ==6705==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 11 ide-test /x86_64/ide/cdrom/pio ==6711==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 12 ide-test /x86_64/ide/cdrom/pio_large PASS 1 test-qht /qht/mode/default PASS 2 test-qht /qht/mode/resize MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-qht-par -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-qht-par" ==6717==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 13 ide-test /x86_64/ide/cdrom/dma MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/ahci-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="ahci-test" PASS 1 test-qht-par /qht/parallel/2threads-0%updates-1s ==6740==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 1 ahci-test /x86_64/ahci/sanity ==6752==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 2 test-qht-par /qht/parallel/2threads-20%updates-1s MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-bitops -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-bitops" PASS 2 ahci-test /x86_64/ahci/pci_spec --- PASS 3 test-qdev-global-props /qdev/properties/dynamic/global PASS 4 test-qdev-global-props /qdev/properties/global/subclass MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/check-qom-interface -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="check-qom-interface" ==6761==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 1 check-qom-interface /qom/interface/direct_impl PASS 2 check-qom-interface /qom/interface/intermediate_impl MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/check-qom-proplist -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="check-qom-proplist" --- PASS 18 test-qemu-opts /qemu-opts/to_qdict/filtered PASS 19 test-qemu-opts /qemu-opts/to_qdict/duplicates MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-keyval -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-keyval" ==6792==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 1 test-keyval /keyval/keyval_parse PASS 2 test-keyval /keyval/keyval_parse/list PASS 3 test-keyval /keyval/visit/bool --- PASS 4 test-crypto-hash /crypto/hash/digest PASS 5 test-crypto-hash /crypto/hash/base64 MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-crypto-hmac -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-crypto-hmac" ==6809==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 1 test-crypto-hmac /crypto/hmac/iov PASS 2 test-crypto-hmac /crypto/hmac/alloc PASS 3 test-crypto-hmac /crypto/hmac/prealloc --- PASS 15 test-crypto-secret /crypto/secret/crypt/missingiv PASS 16 test-crypto-secret /crypto/secret/crypt/badiv MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-crypto-tlscredsx509 -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-crypto-tlscredsx509" ==6832==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 6 ahci-test /x86_64/ahci/identify ==6842==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 1 test-crypto-tlscredsx509 /qcrypto/tlscredsx509/perfectserver PASS 2 test-crypto-tlscredsx509 /qcrypto/tlscredsx509/perfectclient PASS 7 ahci-test /x86_64/ahci/max PASS 3 test-crypto-tlscredsx509 /qcrypto/tlscredsx509/goodca1 ==6848==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 4 test-crypto-tlscredsx509 /qcrypto/tlscredsx509/goodca2 PASS 8 ahci-test /x86_64/ahci/reset PASS 5 test-crypto-tlscredsx509 /qcrypto/tlscredsx509/goodca3 PASS 6 test-crypto-tlscredsx509 /qcrypto/tlscredsx509/badca1 PASS 7 test-crypto-tlscredsx509 /qcrypto/tlscredsx509/badca2 PASS 8 test-crypto-tlscredsx509 /qcrypto/tlscredsx509/badca3 ==6854==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==6854==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7fff465b2000; bottom 0x7fa24bffe000; size: 0x005cfa5b4000 (399337275392) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 9 ahci-test /x86_64/ahci/io/pio/lba28/simple/zero PASS 9 test-crypto-tlscredsx509 /qcrypto/tlscredsx509/goodserver1 ==6860==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 10 test-crypto-tlscredsx509 /qcrypto/tlscredsx509/goodserver2 ==6860==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffd37d40000; bottom 0x7f915f1fe000; size: 0x006bd8b42000 (463197184000) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 10 ahci-test /x86_64/ahci/io/pio/lba28/simple/low ==6866==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==6866==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffdddd51000; bottom 0x7fdeed9fe000; size: 0x001ef0353000 (132879036416) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 11 ahci-test /x86_64/ahci/io/pio/lba28/simple/high PASS 11 test-crypto-tlscredsx509 /qcrypto/tlscredsx509/goodserver3 ==6872==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 12 test-crypto-tlscredsx509 /qcrypto/tlscredsx509/goodserver4 ==6872==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffe72ab7000; bottom 0x7feb58dfe000; size: 0x001319cb9000 (82037149696) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 12 ahci-test /x86_64/ahci/io/pio/lba28/double/zero PASS 13 test-crypto-tlscredsx509 /qcrypto/tlscredsx509/goodserver5 ==6878==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==6878==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffef65a4000; bottom 0x7fb8757fe000; size: 0x004680da6000 (302809505792) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 14 test-crypto-tlscredsx509 /qcrypto/tlscredsx509/goodserver6 --- PASS 32 test-crypto-tlscredsx509 /qcrypto/tlscredsx509/inactive1 PASS 33 test-crypto-tlscredsx509 /qcrypto/tlscredsx509/inactive2 PASS 34 test-crypto-tlscredsx509 /qcrypto/tlscredsx509/inactive3 ==6884==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==6884==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffdaf84d000; bottom 0x7f43357fe000; size: 0x00ba7a04f000 (800911060992) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 14 ahci-test /x86_64/ahci/io/pio/lba28/double/high ==6890==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==6890==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7fffdc631000; bottom 0x7fd9aa37c000; size: 0x0026322b5000 (164050456576) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 35 test-crypto-tlscredsx509 /qcrypto/tlscredsx509/chain1 --- PASS 39 test-crypto-tlscredsx509 /qcrypto/tlscredsx509/missingclient MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-crypto-tlssession -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-crypto-tlssession" PASS 15 ahci-test /x86_64/ahci/io/pio/lba28/long/zero ==6900==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 1 test-crypto-tlssession /qcrypto/tlssession/psk ==6900==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7fff6ec38000; bottom 0x7f9af97fe000; size: 0x00647543a000 (431464095744) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 16 ahci-test /x86_64/ahci/io/pio/lba28/long/low PASS 2 test-crypto-tlssession /qcrypto/tlssession/basicca ==6906==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==6906==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffdd8be9000; bottom 0x7f11abdfe000; size: 0x00ec2cdeb000 (1014365073408) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 3 test-crypto-tlssession /qcrypto/tlssession/differentca PASS 17 ahci-test /x86_64/ahci/io/pio/lba28/long/high ==6912==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 18 ahci-test /x86_64/ahci/io/pio/lba28/short/zero PASS 4 test-crypto-tlssession /qcrypto/tlssession/altname1 ==6918==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 5 test-crypto-tlssession /qcrypto/tlssession/altname2 PASS 19 ahci-test /x86_64/ahci/io/pio/lba28/short/low ==6924==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 20 ahci-test /x86_64/ahci/io/pio/lba28/short/high ==6930==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==6930==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffec3a2e000; bottom 0x7f1d41bfe000; size: 0x00e181e30000 (968546779136) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 21 ahci-test /x86_64/ahci/io/pio/lba48/simple/zero PASS 6 test-crypto-tlssession /qcrypto/tlssession/altname3 ==6936==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==6936==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffc6f854000; bottom 0x7f48cedfe000; size: 0x00b3a0a56000 (771494338560) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 22 ahci-test /x86_64/ahci/io/pio/lba48/simple/low PASS 7 test-crypto-tlssession /qcrypto/tlssession/altname4 ==6942==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 8 test-crypto-tlssession /qcrypto/tlssession/altname5 ==6942==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffc91676000; bottom 0x7fb91d3fe000; size: 0x004374278000 (289711554560) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 9 test-crypto-tlssession /qcrypto/tlssession/altname6 PASS 23 ahci-test /x86_64/ahci/io/pio/lba48/simple/high PASS 10 test-crypto-tlssession /qcrypto/tlssession/wildcard1 ==6948==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==6948==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffc5192c000; bottom 0x7f98399fe000; size: 0x006417f2e000 (429898522624) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 24 ahci-test /x86_64/ahci/io/pio/lba48/double/zero PASS 11 test-crypto-tlssession /qcrypto/tlssession/wildcard2 ==6954==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==6954==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffc5b9f7000; bottom 0x7f48e7ffe000; size: 0x00b3739f9000 (770738982912) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 25 ahci-test /x86_64/ahci/io/pio/lba48/double/low ==6960==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 12 test-crypto-tlssession /qcrypto/tlssession/wildcard3 ==6960==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffda715c000; bottom 0x7ff212bfe000; size: 0x000b9455e000 (49733296128) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 26 ahci-test /x86_64/ahci/io/pio/lba48/double/high ==6966==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 13 test-crypto-tlssession /qcrypto/tlssession/wildcard4 ==6966==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7fff917a8000; bottom 0x7f84f337c000; size: 0x007a9e42c000 (526641184768) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 14 test-crypto-tlssession /qcrypto/tlssession/wildcard5 PASS 27 ahci-test /x86_64/ahci/io/pio/lba48/long/zero PASS 15 test-crypto-tlssession /qcrypto/tlssession/wildcard6 ==6972==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==6972==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffd5ba7d000; bottom 0x7f23eebfe000; size: 0x00d96ce7f000 (933835042816) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 28 ahci-test /x86_64/ahci/io/pio/lba48/long/low PASS 16 test-crypto-tlssession /qcrypto/tlssession/cachain MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-qga -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-qga" ==6978==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==6978==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffc2e816000; bottom 0x7ff8a217c000; size: 0x00038c69a000 (15240634368) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 1 test-qga /qga/sync-delimited --- PASS 15 test-qga /qga/invalid-cmd PASS 16 test-qga /qga/invalid-args PASS 17 test-qga /qga/fsfreeze-status ==6992==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 30 ahci-test /x86_64/ahci/io/pio/lba48/short/zero PASS 18 test-qga /qga/blacklist ==7001==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 19 test-qga /qga/config PASS 20 test-qga /qga/guest-exec PASS 21 test-qga /qga/guest-exec-invalid PASS 31 ahci-test /x86_64/ahci/io/pio/lba48/short/low ==7019==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 22 test-qga /qga/guest-get-osinfo PASS 23 test-qga /qga/guest-get-host-name PASS 24 test-qga /qga/guest-get-timezone --- PASS 7 test-util-sockets /socket/fd-pass/num/bad PASS 8 test-util-sockets /socket/fd-pass/num/nocli MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-authz-simple -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-authz-simple" ==7030==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 1 test-authz-simple /authz/simple MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-authz-list -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-authz-list" PASS 33 ahci-test /x86_64/ahci/io/dma/lba28/fragmented --- PASS 4 test-authz-listfile /auth/list/explicit/deny PASS 5 test-authz-listfile /auth/list/explicit/allow MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-io-task -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-io-task" ==7053==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 1 test-io-task /crypto/task/complete PASS 2 test-io-task /crypto/task/datafree PASS 3 test-io-task /crypto/task/failure --- PASS 4 test-io-channel-socket /io/channel/socket/ipv6-sync PASS 5 test-io-channel-socket /io/channel/socket/ipv6-async PASS 34 ahci-test /x86_64/ahci/io/dma/lba28/retry ==7097==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 6 test-io-channel-socket /io/channel/socket/unix-sync PASS 35 ahci-test /x86_64/ahci/io/dma/lba28/simple/zero PASS 7 test-io-channel-socket /io/channel/socket/unix-async --- PASS 4 test-io-channel-file /io/channel/pipe/sync PASS 5 test-io-channel-file /io/channel/pipe/async MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-io-channel-tls -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-io-channel-tls" ==7108==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 36 ahci-test /x86_64/ahci/io/dma/lba28/simple/low ==7133==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 37 ahci-test /x86_64/ahci/io/dma/lba28/simple/high PASS 1 test-io-channel-tls /qio/channel/tls/basic MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-io-channel-command -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-io-channel-command" ==7139==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 1 test-io-channel-command /io/channel/command/fifo/sync PASS 2 test-io-channel-command /io/channel/command/fifo/async PASS 3 test-io-channel-command /io/channel/command/echo/sync --- PASS 8 test-crypto-ivgen /crypto/ivgen/essiv/1f2e3d4c PASS 9 test-crypto-ivgen /crypto/ivgen/essiv/1f2e3d4c5b6a7988 MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-crypto-afsplit -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-crypto-afsplit" ==7157==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 1 test-crypto-afsplit /crypto/afsplit/sha256/5 PASS 2 test-crypto-afsplit /crypto/afsplit/sha256/5000 PASS 3 test-crypto-afsplit /crypto/afsplit/sha256/big --- PASS 3 test-logging /logging/logfile_write_path PASS 4 test-logging /logging/logfile_lock_path MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-replication -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-replication" ==7182==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7193==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 40 ahci-test /x86_64/ahci/io/dma/lba28/double/high PASS 1 test-replication /replication/primary/read PASS 2 test-replication /replication/primary/write ==7201==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7201==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffdcecc1000; bottom 0x7f6f6e5fd000; size: 0x008e606c4000 (611503063040) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 41 ahci-test /x86_64/ahci/io/dma/lba28/long/zero --- PASS 4 test-replication /replication/primary/stop PASS 5 test-replication /replication/primary/do_checkpoint PASS 6 test-replication /replication/primary/get_error_all ==7208==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7208==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffdc8331000; bottom 0x7f1f76ffd000; size: 0x00de51334000 (954845052928) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 42 ahci-test /x86_64/ahci/io/dma/lba28/long/low PASS 7 test-replication /replication/secondary/read ==7215==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7215==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffe8b889000; bottom 0x7f493a97b000; size: 0x00b550f0e000 (778747043840) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 8 test-replication /replication/secondary/write PASS 43 ahci-test /x86_64/ahci/io/dma/lba28/long/high ==7222==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 44 ahci-test /x86_64/ahci/io/dma/lba28/short/zero ==7228==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 45 ahci-test /x86_64/ahci/io/dma/lba28/short/low ==7235==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 46 ahci-test /x86_64/ahci/io/dma/lba28/short/high ==7193==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffc5fbf7000; bottom 0x7fd9a6369000; size: 0x0022b988e000 (149141643264) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 ==7241==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 9 test-replication /replication/secondary/start PASS 47 ahci-test /x86_64/ahci/io/dma/lba48/simple/zero ==7264==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 48 ahci-test /x86_64/ahci/io/dma/lba48/simple/low ==7270==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 49 ahci-test /x86_64/ahci/io/dma/lba48/simple/high ==7276==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 50 ahci-test /x86_64/ahci/io/dma/lba48/double/zero PASS 10 test-replication /replication/secondary/stop ==7282==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 51 ahci-test /x86_64/ahci/io/dma/lba48/double/low ==7288==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 52 ahci-test /x86_64/ahci/io/dma/lba48/double/high ==7294==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7294==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffc4d94b000; bottom 0x7f7911d23000; size: 0x00833bc28000 (563643318272) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 53 ahci-test /x86_64/ahci/io/dma/lba48/long/zero PASS 11 test-replication /replication/secondary/continuous_replication ==7301==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7301==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffc1aafe000; bottom 0x7fc2fb3fd000; size: 0x00391f701000 (245340573696) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 54 ahci-test /x86_64/ahci/io/dma/lba48/long/low ==7308==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7308==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffe31630000; bottom 0x7f662637b000; size: 0x00980b2b5000 (653022416896) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 12 test-replication /replication/secondary/do_checkpoint PASS 55 ahci-test /x86_64/ahci/io/dma/lba48/long/high ==7315==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 13 test-replication /replication/secondary/get_error_all PASS 56 ahci-test /x86_64/ahci/io/dma/lba48/short/zero MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/test-bufferiszero -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-bufferiszero" ==7321==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 57 ahci-test /x86_64/ahci/io/dma/lba48/short/low ==7330==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 58 ahci-test /x86_64/ahci/io/dma/lba48/short/high ==7336==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 59 ahci-test /x86_64/ahci/io/ncq/simple ==7342==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 60 ahci-test /x86_64/ahci/io/ncq/retry ==7348==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 61 ahci-test /x86_64/ahci/flush/simple ==7354==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 62 ahci-test /x86_64/ahci/flush/retry ==7360==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7366==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 63 ahci-test /x86_64/ahci/flush/migrate ==7374==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7380==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 64 ahci-test /x86_64/ahci/migrate/sanity ==7388==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7394==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 65 ahci-test /x86_64/ahci/migrate/dma/simple ==7402==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7408==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 66 ahci-test /x86_64/ahci/migrate/dma/halted ==7416==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7422==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 67 ahci-test /x86_64/ahci/migrate/ncq/simple ==7430==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7436==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 68 ahci-test /x86_64/ahci/migrate/ncq/halted ==7444==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 69 ahci-test /x86_64/ahci/cdrom/eject ==7449==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 70 ahci-test /x86_64/ahci/cdrom/dma/single ==7455==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 71 ahci-test /x86_64/ahci/cdrom/dma/multi ==7461==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 72 ahci-test /x86_64/ahci/cdrom/pio/single ==7467==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7467==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7fff76038000; bottom 0x7f41b71fe000; size: 0x00bdbee3a000 (814951407616) False positive error reports may follow For details see https://github.com/google/sanitizers/issues/189 PASS 73 ahci-test /x86_64/ahci/cdrom/pio/multi ==7473==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 74 ahci-test /x86_64/ahci/cdrom/pio/bcl MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/hd-geo-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="hd-geo-test" PASS 1 hd-geo-test /x86_64/hd-geo/ide/none --- PASS 4 test-uuid /uuid/unparse PASS 5 test-uuid /uuid/unparse_strdup MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} tests/ptimer-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="ptimer-test" ==7487==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 1 ptimer-test /ptimer/set_count policy=default PASS 2 ptimer-test /ptimer/set_limit policy=default PASS 3 ptimer-test /ptimer/oneshot policy=default --- PASS 21 test-qgraph /qgraph/test_two_test_same_interface PASS 22 test-qgraph /qgraph/test_test_in_path PASS 23 test-qgraph /qgraph/test_double_edge ==7499==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 3 hd-geo-test /x86_64/hd-geo/ide/drive/mbr/blank ==7512==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 4 hd-geo-test /x86_64/hd-geo/ide/drive/mbr/lba ==7518==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 5 hd-geo-test /x86_64/hd-geo/ide/drive/mbr/chs ==7524==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 6 hd-geo-test /x86_64/hd-geo/ide/device/mbr/blank ==7530==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 7 hd-geo-test /x86_64/hd-geo/ide/device/mbr/lba ==7536==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 8 hd-geo-test /x86_64/hd-geo/ide/device/mbr/chs ==7542==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 9 hd-geo-test /x86_64/hd-geo/ide/device/user/chs ==7547==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 10 hd-geo-test /x86_64/hd-geo/ide/device/user/chst ==7553==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7557==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7561==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7565==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7569==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7573==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7577==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7581==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7584==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 11 hd-geo-test /x86_64/hd-geo/override/ide ==7591==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7595==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7599==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7603==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7607==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7611==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7615==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7619==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7622==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 12 hd-geo-test /x86_64/hd-geo/override/scsi ==7629==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7633==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7637==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7641==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7645==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7649==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7653==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7657==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7660==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 13 hd-geo-test /x86_64/hd-geo/override/scsi_2_controllers ==7667==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7671==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7675==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7679==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7682==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 14 hd-geo-test /x86_64/hd-geo/override/virtio_blk ==7689==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7693==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7696==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 15 hd-geo-test /x86_64/hd-geo/override/zero_chs ==7703==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7707==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7711==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7715==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7718==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 16 hd-geo-test /x86_64/hd-geo/override/scsi_hot_unplug ==7725==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7729==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7733==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7737==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! ==7740==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 17 hd-geo-test /x86_64/hd-geo/override/virtio_hot_unplug MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/boot-order-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="boot-order-test" PASS 1 boot-order-test /x86_64/boot-order/pc --- Could not access KVM kernel module: No such file or directory qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory qemu-system-x86_64: falling back to tcg ==7809==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! Looking for expected file 'tests/data/acpi/pc/FACP' Using expected file 'tests/data/acpi/pc/FACP' --- Could not access KVM kernel module: No such file or directory qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory qemu-system-x86_64: falling back to tcg ==7815==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! Looking for expected file 'tests/data/acpi/q35/FACP' Using expected file 'tests/data/acpi/q35/FACP' --- Could not access KVM kernel module: No such file or directory qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory qemu-system-x86_64: falling back to tcg ==7821==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! Looking for expected file 'tests/data/acpi/pc/FACP.bridge' Looking for expected file 'tests/data/acpi/pc/FACP' --- Could not access KVM kernel module: No such file or directory qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory qemu-system-x86_64: falling back to tcg ==7827==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! Looking for expected file 'tests/data/acpi/pc/FACP.ipmikcs' Looking for expected file 'tests/data/acpi/pc/FACP' --- Could not access KVM kernel module: No such file or directory qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory qemu-system-x86_64: falling back to tcg ==7833==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! Looking for expected file 'tests/data/acpi/pc/FACP.cphp' Looking for expected file 'tests/data/acpi/pc/FACP' --- Could not access KVM kernel module: No such file or directory qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory qemu-system-x86_64: falling back to tcg ==7840==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! Looking for expected file 'tests/data/acpi/pc/FACP.memhp' Looking for expected file 'tests/data/acpi/pc/FACP' --- Could not access KVM kernel module: No such file or directory qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory qemu-system-x86_64: falling back to tcg ==7846==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! Looking for expected file 'tests/data/acpi/pc/FACP.numamem' Looking for expected file 'tests/data/acpi/pc/FACP' --- Could not access KVM kernel module: No such file or directory qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory qemu-system-x86_64: falling back to tcg ==7852==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! Looking for expected file 'tests/data/acpi/pc/FACP.dimmpxm' Looking for expected file 'tests/data/acpi/pc/FACP' --- Could not access KVM kernel module: No such file or directory qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory qemu-system-x86_64: falling back to tcg ==7861==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! Looking for expected file 'tests/data/acpi/pc/FACP.acpihmat' Looking for expected file 'tests/data/acpi/pc/FACP' --- Could not access KVM kernel module: No such file or directory qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory qemu-system-x86_64: falling back to tcg ==7868==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! Looking for expected file 'tests/data/acpi/q35/FACP.bridge' Looking for expected file 'tests/data/acpi/q35/FACP' --- Could not access KVM kernel module: No such file or directory qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory qemu-system-x86_64: falling back to tcg ==7874==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! Looking for expected file 'tests/data/acpi/q35/FACP.mmio64' Looking for expected file 'tests/data/acpi/q35/FACP' --- Could not access KVM kernel module: No such file or directory qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory qemu-system-x86_64: falling back to tcg ==7880==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! Looking for expected file 'tests/data/acpi/q35/FACP.ipmibt' Looking for expected file 'tests/data/acpi/q35/FACP' --- Could not access KVM kernel module: No such file or directory qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory qemu-system-x86_64: falling back to tcg ==7886==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! Looking for expected file 'tests/data/acpi/q35/FACP.cphp' Looking for expected file 'tests/data/acpi/q35/FACP' --- Could not access KVM kernel module: No such file or directory qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory qemu-system-x86_64: falling back to tcg ==7893==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! Looking for expected file 'tests/data/acpi/q35/FACP.memhp' Looking for expected file 'tests/data/acpi/q35/FACP' --- Could not access KVM kernel module: No such file or directory qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory qemu-system-x86_64: falling back to tcg ==7899==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! Looking for expected file 'tests/data/acpi/q35/FACP.numamem' Looking for expected file 'tests/data/acpi/q35/FACP' --- Could not access KVM kernel module: No such file or directory qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory qemu-system-x86_64: falling back to tcg ==7905==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! Looking for expected file 'tests/data/acpi/q35/FACP.dimmpxm' Looking for expected file 'tests/data/acpi/q35/FACP' --- Could not access KVM kernel module: No such file or directory qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory qemu-system-x86_64: falling back to tcg ==7914==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! Looking for expected file 'tests/data/acpi/q35/FACP.acpihmat' Looking for expected file 'tests/data/acpi/q35/FACP' --- PASS 1 i440fx-test /x86_64/i440fx/defaults PASS 2 i440fx-test /x86_64/i440fx/pam PASS 3 i440fx-test /x86_64/i440fx/firmware/bios ==8006==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 4 i440fx-test /x86_64/i440fx/firmware/pflash MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/fw_cfg-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="fw_cfg-test" PASS 1 fw_cfg-test /x86_64/fw_cfg/signature --- MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/drive_del-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="drive_del-test" PASS 1 drive_del-test /x86_64/drive_del/without-dev PASS 2 drive_del-test /x86_64/drive_del/after_failed_device_add ==8099==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases! PASS 3 drive_del-test /x86_64/blockdev/drive_del_device_del MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/wdt_ib700-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="wdt_ib700-test" PASS 1 wdt_ib700-test /x86_64/wdt_ib700/pause --- dbus-daemon[8269]: Could not get password database information for UID of current process: User "???" unknown or no memory to allocate password entry ** ERROR:/tmp/qemu-test/src/tests/qtest/dbus-vmstate-test.c:114:get_connection: assertion failed (err == NULL): The connection is closed (g-io-error-quark, 18) cleaning up pid 8269 ERROR - Bail out! ERROR:/tmp/qemu-test/src/tests/qtest/dbus-vmstate-test.c:114:get_connection: assertion failed (err == NULL): The connection is closed (g-io-error-quark, 18) make: *** [/tmp/qemu-test/src/tests/Makefile.include:632: check-qtest-x86_64] Error 1 make: *** Waiting for unfinished jobs.... Traceback (most recent call last): File "./tests/docker/docker.py", line 664, in <module> --- raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command '['sudo', '-n', 'docker', 'run', '--label', 'com.qemu.instance.uuid=380d52a8e962477cb9dbbace146d0626', '-u', '1003', '--security-opt', 'seccomp=unconfined', '--rm', '-e', 'TARGET_LIST=x86_64-softmmu', '-e', 'EXTRA_CONFIGURE_OPTS=', '-e', 'V=', '-e', 'J=14', '-e', 'DEBUG=', '-e', 'SHOW_ENV=', '-e', 'CCACHE_DIR=/var/tmp/ccache', '-v', '/home/patchew2/.cache/qemu-docker-ccache:/var/tmp/ccache:z', '-v', '/var/tmp/patchew-tester-tmp-gzk061t2/src/docker-src.2020-03-10-09.30.32.12657:/var/tmp/qemu:z,ro', 'qemu:fedora', '/var/tmp/qemu/run', 'test-debug']' returned non-zero exit status 2. filter=--filter=label=com.qemu.instance.uuid=380d52a8e962477cb9dbbace146d0626 make[1]: *** [docker-run] Error 1 make[1]: Leaving directory `/var/tmp/patchew-tester-tmp-gzk061t2/src' make: *** [docker-run-test-debug@fedora] Error 2 real 28m7.793s user 0m8.603s The full log is available at http://patchew.org/logs/20200310130844.30076-1-kuhn.chenqun@huawei.com/testing.asan/?type=message. --- Email generated automatically by Patchew [https://patchew.org/]. Please send your feedback to patchew-devel@redhat.com
Le 10/03/2020 à 14:08, Chen Qun a écrit : > Here are some redundant statements, we can clean them up. > Clang static code analyzer show warning: > hw/scsi/megasas.c:1175:32: warning: Value stored to 'max_ld_disks' during its initialization is never read > uint32_t num_ld_disks = 0, max_ld_disks = s->fw_luns; > ^~~~~~~~~~~~ ~~~~~~~~~~ > hw/scsi/megasas.c:1183:9: warning: Value stored to 'max_ld_disks' is never read > max_ld_disks = 0; > ^ ~ This has been introduced by: d97ae3684863 ("megasas: fixup MFI_DCMD_LD_LIST_QUERY") And modified by: commit 3f2cd4dd47719497540fb0e0aa0635e127f2838f Author: Hannes Reinecke <hare@suse.de> Date: Wed Oct 29 13:00:07 2014 +0100 megasas: fixup device mapping Logical drives can only be addressed with the 'target_id' number; LUN numbers cannot be selected. Physical drives can be selected with both, target and LUN id. So we should disallow LUN numbers not equal to 0 when in RAID mode. Signed-off-by: Hannes Reinecke <hare@suse.de> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> ... @@ -1143,10 +1152,13 @@ static int megasas_dcmd_ld_list_query(MegasasState *s, MegasasCmd *cmd) return MFI_STAT_INVALID_PARAMETER; } dcmd_size = sizeof(uint32_t) * 2 + 3; - + max_ld_disks = cmd->iov_size - dcmd_size; if (megasas_is_jbod(s)) { max_ld_disks = 0; } + if (max_ld_disks > MFI_MAX_LD) { + max_ld_disks = MFI_MAX_LD; + } QTAILQ_FOREACH(kid, &s->bus.qbus.children, sibling) { SCSIDevice *sdev = DO_UPCAST(SCSIDevice, qdev, kid->child); ... Thanks, Laurent
Le 10/03/2020 à 14:46, Peter Maydell a écrit : > On Tue, 10 Mar 2020 at 13:10, Chen Qun <kuhn.chenqun@huawei.com> wrote: >> >> Here are some redundant statements, we can clean them up. >> Clang static code analyzer show warning: >> hw/scsi/megasas.c:1175:32: warning: Value stored to 'max_ld_disks' during its initialization is never read >> uint32_t num_ld_disks = 0, max_ld_disks = s->fw_luns; >> ^~~~~~~~~~~~ ~~~~~~~~~~ >> hw/scsi/megasas.c:1183:9: warning: Value stored to 'max_ld_disks' is never read >> max_ld_disks = 0; >> ^ ~ >> >> Reported-by: Euler Robot <euler.robot@huawei.com> >> Signed-off-by: Chen Qun <kuhn.chenqun@huawei.com> >> --- >> Cc: Paolo Bonzini <pbonzini@redhat.com> >> Cc: Fam Zheng <fam@euphon.net> >> Cc: Hannes Reinecke <hare@suse.com> >> Cc: qemu-block@nongnu.org >> --- >> hw/scsi/megasas.c | 3 +-- >> 1 file changed, 1 insertion(+), 2 deletions(-) >> >> diff --git a/hw/scsi/megasas.c b/hw/scsi/megasas.c >> index af18c88b65..3f982e1d3b 100644 >> --- a/hw/scsi/megasas.c >> +++ b/hw/scsi/megasas.c >> @@ -1172,7 +1172,7 @@ static int megasas_dcmd_ld_list_query(MegasasState *s, MegasasCmd *cmd) >> uint16_t flags; >> struct mfi_ld_targetid_list info; >> size_t dcmd_size = sizeof(info), resid; >> - uint32_t num_ld_disks = 0, max_ld_disks = s->fw_luns; >> + uint32_t num_ld_disks = 0, max_ld_disks; >> BusChild *kid; >> >> /* mbox0 contains flags */ >> @@ -1180,7 +1180,6 @@ static int megasas_dcmd_ld_list_query(MegasasState *s, MegasasCmd *cmd) >> trace_megasas_dcmd_ld_list_query(cmd->index, flags); >> if (flags != MR_LD_QUERY_TYPE_ALL && >> flags != MR_LD_QUERY_TYPE_EXPOSED_TO_HOST) { >> - max_ld_disks = 0; >> } > > This doesn't look right -- your change removes the only statement > in the body of this "if". I think you need to examine what the > function is trying to do with the test it is doing on these flags > in order to identify what the right change is... Probably this > means going back to the h/w spec to identify the correct behaviour > overall. Moreover this "if" is the only user of MR_LD_QUERY_TYPE_ALL and MR_LD_QUERY_TYPE_EXPOSED_TO_HOST. Thanks, Laurent
>-----Original Message----- >From: Peter Maydell [mailto:peter.maydell@linaro.org] >Sent: Tuesday, March 10, 2020 9:47 PM >To: Chenqun (kuhn) <kuhn.chenqun@huawei.com> >Cc: QEMU Developers <qemu-devel@nongnu.org>; QEMU Trivial <qemu- >trivial@nongnu.org>; Fam Zheng <fam@euphon.net>; Hannes Reinecke ><hare@suse.com>; Zhanghailiang <zhang.zhanghailiang@huawei.com>; >Qemu-block <qemu-block@nongnu.org>; Euler Robot ><euler.robot@huawei.com>; Paolo Bonzini <pbonzini@redhat.com> >Subject: Re: [PATCH] hw/scsi/megasas:Clean up some redundant code fix >Clang warnings > >On Tue, 10 Mar 2020 at 13:10, Chen Qun <kuhn.chenqun@huawei.com> >wrote: >> >> Here are some redundant statements, we can clean them up. >> Clang static code analyzer show warning: >> hw/scsi/megasas.c:1175:32: warning: Value stored to 'max_ld_disks' during >its initialization is never read >> uint32_t num_ld_disks = 0, max_ld_disks = s->fw_luns; >> ^~~~~~~~~~~~ ~~~~~~~~~~ >> hw/scsi/megasas.c:1183:9: warning: Value stored to 'max_ld_disks' is never >read >> max_ld_disks = 0; >> ^ ~ >> >> Reported-by: Euler Robot <euler.robot@huawei.com> >> Signed-off-by: Chen Qun <kuhn.chenqun@huawei.com> >> --- >> Cc: Paolo Bonzini <pbonzini@redhat.com> >> Cc: Fam Zheng <fam@euphon.net> >> Cc: Hannes Reinecke <hare@suse.com> >> Cc: qemu-block@nongnu.org >> --- >> hw/scsi/megasas.c | 3 +-- >> 1 file changed, 1 insertion(+), 2 deletions(-) >> >> diff --git a/hw/scsi/megasas.c b/hw/scsi/megasas.c index >> af18c88b65..3f982e1d3b 100644 >> --- a/hw/scsi/megasas.c >> +++ b/hw/scsi/megasas.c >> @@ -1172,7 +1172,7 @@ static int >megasas_dcmd_ld_list_query(MegasasState *s, MegasasCmd *cmd) >> uint16_t flags; >> struct mfi_ld_targetid_list info; >> size_t dcmd_size = sizeof(info), resid; >> - uint32_t num_ld_disks = 0, max_ld_disks = s->fw_luns; >> + uint32_t num_ld_disks = 0, max_ld_disks; >> BusChild *kid; >> >> /* mbox0 contains flags */ >> @@ -1180,7 +1180,6 @@ static int >megasas_dcmd_ld_list_query(MegasasState *s, MegasasCmd *cmd) >> trace_megasas_dcmd_ld_list_query(cmd->index, flags); >> if (flags != MR_LD_QUERY_TYPE_ALL && >> flags != MR_LD_QUERY_TYPE_EXPOSED_TO_HOST) { >> - max_ld_disks = 0; >> } > >This doesn't look right -- your change removes the only statement in the body >of this "if". I think you need to examine what the function is trying to do with >the test it is doing on these flags in order to identify what the right change is... > Ah, sorry for trouble, it is not a mistake that should happen. I should double check it next time. >Probably this means going back to the h/w spec to identify the correct >behaviour overall. > Yes, I should go back the hw spec in order to understand the behaviour overall. Thanks. Chen Qun
>-----Original Message----- >From: Laurent Vivier [mailto:laurent@vivier.eu] >Sent: Tuesday, March 10, 2020 11:01 PM >To: Chenqun (kuhn) <kuhn.chenqun@huawei.com>; qemu- >devel@nongnu.org; qemu-trivial@nongnu.org >Cc: Fam Zheng <fam@euphon.net>; Hannes Reinecke <hare@suse.com>; >Zhanghailiang <zhang.zhanghailiang@huawei.com>; qemu-block@nongnu.org; >Euler Robot <euler.robot@huawei.com>; Paolo Bonzini ><pbonzini@redhat.com> >Subject: Re: [PATCH] hw/scsi/megasas:Clean up some redundant code fix >Clang warnings > >Le 10/03/2020 à 14:08, Chen Qun a écrit : >> Here are some redundant statements, we can clean them up. >> Clang static code analyzer show warning: >> hw/scsi/megasas.c:1175:32: warning: Value stored to 'max_ld_disks' during >its initialization is never read >> uint32_t num_ld_disks = 0, max_ld_disks = s->fw_luns; >> ^~~~~~~~~~~~ ~~~~~~~~~~ >> hw/scsi/megasas.c:1183:9: warning: Value stored to 'max_ld_disks' is never >read >> max_ld_disks = 0; >> ^ ~ > >This has been introduced by: > >d97ae3684863 ("megasas: fixup MFI_DCMD_LD_LIST_QUERY") > >And modified by: > >commit 3f2cd4dd47719497540fb0e0aa0635e127f2838f > Yes, this modification makes the first piece of code(the if statement in megasas.c:1183) look meaningless and resulting in warning. Maybe we can make this piece code better, although my modification is wrong. Thanks. >Author: Hannes Reinecke <hare@suse.de> >Date: Wed Oct 29 13:00:07 2014 +0100 > > megasas: fixup device mapping > > Logical drives can only be addressed with the 'target_id' number; > LUN numbers cannot be selected. > Physical drives can be selected with both, target and LUN id. > > So we should disallow LUN numbers not equal to 0 when in > RAID mode. > > Signed-off-by: Hannes Reinecke <hare@suse.de> > Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> ... >@@ -1143,10 +1152,13 @@ static int >megasas_dcmd_ld_list_query(MegasasState *s, MegasasCmd *cmd) > return MFI_STAT_INVALID_PARAMETER; > } > dcmd_size = sizeof(uint32_t) * 2 + 3; >- >+ max_ld_disks = cmd->iov_size - dcmd_size; > if (megasas_is_jbod(s)) { > max_ld_disks = 0; > } >+ if (max_ld_disks > MFI_MAX_LD) { >+ max_ld_disks = MFI_MAX_LD; >+ } > QTAILQ_FOREACH(kid, &s->bus.qbus.children, sibling) { > SCSIDevice *sdev = DO_UPCAST(SCSIDevice, qdev, kid->child); ... > > >Thanks, >Laurent
diff --git a/hw/scsi/megasas.c b/hw/scsi/megasas.c index af18c88b65..3f982e1d3b 100644 --- a/hw/scsi/megasas.c +++ b/hw/scsi/megasas.c @@ -1172,7 +1172,7 @@ static int megasas_dcmd_ld_list_query(MegasasState *s, MegasasCmd *cmd) uint16_t flags; struct mfi_ld_targetid_list info; size_t dcmd_size = sizeof(info), resid; - uint32_t num_ld_disks = 0, max_ld_disks = s->fw_luns; + uint32_t num_ld_disks = 0, max_ld_disks; BusChild *kid; /* mbox0 contains flags */ @@ -1180,7 +1180,6 @@ static int megasas_dcmd_ld_list_query(MegasasState *s, MegasasCmd *cmd) trace_megasas_dcmd_ld_list_query(cmd->index, flags); if (flags != MR_LD_QUERY_TYPE_ALL && flags != MR_LD_QUERY_TYPE_EXPOSED_TO_HOST) { - max_ld_disks = 0; } memset(&info, 0, dcmd_size);
Here are some redundant statements, we can clean them up. Clang static code analyzer show warning: hw/scsi/megasas.c:1175:32: warning: Value stored to 'max_ld_disks' during its initialization is never read uint32_t num_ld_disks = 0, max_ld_disks = s->fw_luns; ^~~~~~~~~~~~ ~~~~~~~~~~ hw/scsi/megasas.c:1183:9: warning: Value stored to 'max_ld_disks' is never read max_ld_disks = 0; ^ ~ Reported-by: Euler Robot <euler.robot@huawei.com> Signed-off-by: Chen Qun <kuhn.chenqun@huawei.com> --- Cc: Paolo Bonzini <pbonzini@redhat.com> Cc: Fam Zheng <fam@euphon.net> Cc: Hannes Reinecke <hare@suse.com> Cc: qemu-block@nongnu.org --- hw/scsi/megasas.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)