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(
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
---
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