From: Stefan Berger <stefanb@linux.vnet.ibm.com>
To: qemu-devel@nongnu.org
Cc: stefanb@linux.vnet.ibm.com, marcandre.lureau@redhat.com,
peter.maydell@linaro.org
Subject: [Qemu-devel] [PULL 1/5] tpm: Set the flags of the CMD_INIT command to 0
Date: Fri, 26 Jan 2018 13:49:24 -0500 [thread overview]
Message-ID: <1516992568-3139-2-git-send-email-stefanb@linux.vnet.ibm.com> (raw)
In-Reply-To: <1516992568-3139-1-git-send-email-stefanb@linux.vnet.ibm.com>
The flags of the CMD_INIT control channel command were not
initialized properly. Fix this and set to 0.
Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
hw/tpm/tpm_emulator.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/hw/tpm/tpm_emulator.c b/hw/tpm/tpm_emulator.c
index 35c78de..532d3e3 100644
--- a/hw/tpm/tpm_emulator.c
+++ b/hw/tpm/tpm_emulator.c
@@ -320,7 +320,9 @@ static int tpm_emulator_set_buffer_size(TPMBackend *tb,
static int tpm_emulator_startup_tpm(TPMBackend *tb, size_t buffersize)
{
TPMEmulator *tpm_emu = TPM_EMULATOR(tb);
- ptm_init init;
+ ptm_init init = {
+ .u.req.init_flags = 0,
+ };
ptm_res res;
if (buffersize != 0 &&
--
2.5.5
next prev parent reply other threads:[~2018-01-26 18:49 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-26 18:49 [Qemu-devel] [PULL 0/5] Merge tpm 2018/01/26 Stefan Berger
2018-01-26 18:49 ` Stefan Berger [this message]
2018-01-26 18:49 ` [Qemu-devel] [PULL 2/5] tpm: lookup cancel path under tpm device class Stefan Berger
2018-01-26 18:49 ` [Qemu-devel] [PULL 3/5] tpm: replace GThreadPool with AIO threadpool Stefan Berger
2018-01-26 18:49 ` [Qemu-devel] [PULL 4/5] tpm: report backend request error Stefan Berger
2018-01-26 18:49 ` [Qemu-devel] [PULL 5/5] tpm: add CRB device Stefan Berger
2018-01-29 11:37 ` [Qemu-devel] [PULL 0/5] Merge tpm 2018/01/26 Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1516992568-3139-2-git-send-email-stefanb@linux.vnet.ibm.com \
--to=stefanb@linux.vnet.ibm.com \
--cc=marcandre.lureau@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).