diff options
author | John Snow <jsnow@redhat.com> | 2015-02-25 18:06:35 -0500 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2015-03-10 14:02:23 +0100 |
commit | 4a42f6d408079830099dbffc1b0cb2869db69215 (patch) | |
tree | d8fcc4b152f7982aa835a282127facc04e3d660c | |
parent | baca2b9e3a94be1690fc4a842a97b64a4c8f892c (diff) | |
download | qemu-4a42f6d408079830099dbffc1b0cb2869db69215.zip qemu-4a42f6d408079830099dbffc1b0cb2869db69215.tar.gz qemu-4a42f6d408079830099dbffc1b0cb2869db69215.tar.bz2 |
libqos/ahci: Zero-fill AHCI headers
Even though it's just the reserved space, make sure they're zeroes.
Signed-off-by: John Snow <jsnow@redhat.com>
Message-id: 1424905602-24715-2-git-send-email-jsnow@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rw-r--r-- | tests/libqos/ahci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libqos/ahci.c b/tests/libqos/ahci.c index a6105c7..9dc505c 100644 --- a/tests/libqos/ahci.c +++ b/tests/libqos/ahci.c @@ -487,7 +487,7 @@ void ahci_get_command_header(AHCIQState *ahci, uint8_t port, void ahci_set_command_header(AHCIQState *ahci, uint8_t port, uint8_t slot, AHCICommandHeader *cmd) { - AHCICommandHeader tmp; + AHCICommandHeader tmp = { .flags = 0 }; uint64_t ba = ahci->port[port].clb; ba += slot * sizeof(AHCICommandHeader); |