summaryrefslogtreecommitdiffstats
path: root/backends
diff options
context:
space:
mode:
authorAmarnath Valluri2017-09-29 13:10:18 +0200
committerStefan Berger2017-10-13 13:34:33 +0200
commitd0c519bdffa303d141727369e55b157c45b03147 (patch)
tree38bf6a6972e325939be0eb176e42a01dafca0f9a /backends
parenttpm-backend: Add new API to read backend TpmInfo (diff)
downloadqemu-d0c519bdffa303d141727369e55b157c45b03147.tar.gz
qemu-d0c519bdffa303d141727369e55b157c45b03147.tar.xz
qemu-d0c519bdffa303d141727369e55b157c45b03147.zip
tpm-backend: Move realloc_buffer() implementation to tpm-tis model
buffer reallocation is very unlikely to be backend specific. Hence move inside the tis. Signed-off-by: Amarnath Valluri <amarnath.valluri@intel.com> Reviewed-by: Stefan Berger <stefanb@linux.vnet.ibm.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
Diffstat (limited to 'backends')
-rw-r--r--backends/tpm.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/backends/tpm.c b/backends/tpm.c
index de313c9d5a..37c84b7c66 100644
--- a/backends/tpm.c
+++ b/backends/tpm.c
@@ -80,15 +80,6 @@ bool tpm_backend_had_startup_error(TPMBackend *s)
return s->had_startup_error;
}
-size_t tpm_backend_realloc_buffer(TPMBackend *s, TPMSizedBuffer *sb)
-{
- TPMBackendClass *k = TPM_BACKEND_GET_CLASS(s);
-
- assert(k->ops->realloc_buffer);
-
- return k->ops->realloc_buffer(sb);
-}
-
void tpm_backend_deliver_request(TPMBackend *s)
{
g_thread_pool_push(s->thread_pool, (gpointer)TPM_BACKEND_CMD_PROCESS_CMD,