Re: [Qemu-devel] [PATCH] Move TPM passthrough specific command line options to backend structure

2013-04-10 Thread Stefan Berger
On 04/10/2013 02:51 PM, Corey Bryant wrote: On 04/02/2013 01:30 PM, Stefan Berger wrote: return 1; } +/* validate backend specific opts */ +qemu_opts_validate(opts, be->opts, &errp); +if (error_is_set(&errp)) { +qerror_report_err(errp); +error_free(

Re: [Qemu-devel] [PATCH] Move TPM passthrough specific command line options to backend structure

2013-04-10 Thread Corey Bryant
On 04/02/2013 01:30 PM, Stefan Berger wrote: Move the TPM passthrough specific command line options to the passthrough backend implementation and attach them to the backend's interface structure. Add code to tpm.c for validating the TPM command line options. Signed-off-by: Stefan Berger ---

[Qemu-devel] [PATCH] Move TPM passthrough specific command line options to backend structure

2013-04-02 Thread Stefan Berger
Move the TPM passthrough specific command line options to the passthrough backend implementation and attach them to the backend's interface structure. Add code to tpm.c for validating the TPM command line options. Signed-off-by: Stefan Berger --- tpm/tpm.c | 10 +- tpm/tp