[libvirt] [PATCH v3 0/3] Support tpm-crb TPM interface for QEMU

Stefan Berger posted 3 patches 5 years, 11 months ago
Failed in applying to current master (apply log)
Test syntax-check failed
docs/formatdomain.html.in                         |  6 +++-
docs/schemas/domaincommon.rng                     |  5 +++-
src/conf/domain_conf.c                            |  5 ++--
src/conf/domain_conf.h                            |  1 +
src/qemu/qemu_capabilities.c                      |  5 ++++
src/qemu/qemu_capabilities.h                      |  1 +
src/qemu/qemu_command.c                           | 16 +++++++++-
tests/qemucapabilitiesdata/caps_2.12.0.x86_64.xml |  1 +
tests/qemuxml2argvdata/tpm-passthrough-crb.args   | 26 ++++++++++++++++
tests/qemuxml2argvdata/tpm-passthrough-crb.xml    | 32 ++++++++++++++++++++
tests/qemuxml2argvtest.c                          |  2 ++
tests/qemuxml2xmloutdata/tpm-passthrough-crb.xml  | 36 +++++++++++++++++++++++
tests/qemuxml2xmltest.c                           |  1 +
13 files changed, 131 insertions(+), 6 deletions(-)
create mode 100644 tests/qemuxml2argvdata/tpm-passthrough-crb.args
create mode 100644 tests/qemuxml2argvdata/tpm-passthrough-crb.xml
create mode 100644 tests/qemuxml2xmloutdata/tpm-passthrough-crb.xml
[libvirt] [PATCH v3 0/3] Support tpm-crb TPM interface for QEMU
Posted by Stefan Berger 5 years, 11 months ago
This patch series adds support for the recently added tpm-crb TPM
interface for QEMU (2.12).

  Stefan

Stefan Berger (3):
  tpm: Enable TPM CRB interface in the domain XML and test it
  qemu: Extend the capabilities with tpm-crb device
  tests: add test case for tpm-crb QEMU device command line

 docs/formatdomain.html.in                         |  6 +++-
 docs/schemas/domaincommon.rng                     |  5 +++-
 src/conf/domain_conf.c                            |  5 ++--
 src/conf/domain_conf.h                            |  1 +
 src/qemu/qemu_capabilities.c                      |  5 ++++
 src/qemu/qemu_capabilities.h                      |  1 +
 src/qemu/qemu_command.c                           | 16 +++++++++-
 tests/qemucapabilitiesdata/caps_2.12.0.x86_64.xml |  1 +
 tests/qemuxml2argvdata/tpm-passthrough-crb.args   | 26 ++++++++++++++++
 tests/qemuxml2argvdata/tpm-passthrough-crb.xml    | 32 ++++++++++++++++++++
 tests/qemuxml2argvtest.c                          |  2 ++
 tests/qemuxml2xmloutdata/tpm-passthrough-crb.xml  | 36 +++++++++++++++++++++++
 tests/qemuxml2xmltest.c                           |  1 +
 13 files changed, 131 insertions(+), 6 deletions(-)
 create mode 100644 tests/qemuxml2argvdata/tpm-passthrough-crb.args
 create mode 100644 tests/qemuxml2argvdata/tpm-passthrough-crb.xml
 create mode 100644 tests/qemuxml2xmloutdata/tpm-passthrough-crb.xml

-- 
2.5.5

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list
Re: [libvirt] [PATCH v3 0/3] Support tpm-crb TPM interface for QEMU
Posted by John Ferlan 5 years, 11 months ago

On 04/26/2018 01:42 PM, Stefan Berger wrote:
> This patch series adds support for the recently added tpm-crb TPM
> interface for QEMU (2.12).
> 
>   Stefan
> 
> Stefan Berger (3):
>   tpm: Enable TPM CRB interface in the domain XML and test it
>   qemu: Extend the capabilities with tpm-crb device
>   tests: add test case for tpm-crb QEMU device command line
> 
>  docs/formatdomain.html.in                         |  6 +++-
>  docs/schemas/domaincommon.rng                     |  5 +++-
>  src/conf/domain_conf.c                            |  5 ++--
>  src/conf/domain_conf.h                            |  1 +
>  src/qemu/qemu_capabilities.c                      |  5 ++++
>  src/qemu/qemu_capabilities.h                      |  1 +
>  src/qemu/qemu_command.c                           | 16 +++++++++-
>  tests/qemucapabilitiesdata/caps_2.12.0.x86_64.xml |  1 +
>  tests/qemuxml2argvdata/tpm-passthrough-crb.args   | 26 ++++++++++++++++
>  tests/qemuxml2argvdata/tpm-passthrough-crb.xml    | 32 ++++++++++++++++++++
>  tests/qemuxml2argvtest.c                          |  2 ++
>  tests/qemuxml2xmloutdata/tpm-passthrough-crb.xml  | 36 +++++++++++++++++++++++
>  tests/qemuxml2xmltest.c                           |  1 +
>  13 files changed, 131 insertions(+), 6 deletions(-)
>  create mode 100644 tests/qemuxml2argvdata/tpm-passthrough-crb.args
>  create mode 100644 tests/qemuxml2argvdata/tpm-passthrough-crb.xml
>  create mode 100644 tests/qemuxml2xmloutdata/tpm-passthrough-crb.xml
> 

This is now pushed... Next up the other parts of your changes.

John

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list
Re: [libvirt] [PATCH v3 0/3] Support tpm-crb TPM interface for QEMU
Posted by Stefan Berger 5 years, 11 months ago
On 05/03/2018 11:35 AM, John Ferlan wrote:
>
> On 04/26/2018 01:42 PM, Stefan Berger wrote:
>> This patch series adds support for the recently added tpm-crb TPM
>> interface for QEMU (2.12).
>>
>>    Stefan
>>
>> Stefan Berger (3):
>>    tpm: Enable TPM CRB interface in the domain XML and test it
>>    qemu: Extend the capabilities with tpm-crb device
>>    tests: add test case for tpm-crb QEMU device command line
>>
>>   docs/formatdomain.html.in                         |  6 +++-
>>   docs/schemas/domaincommon.rng                     |  5 +++-
>>   src/conf/domain_conf.c                            |  5 ++--
>>   src/conf/domain_conf.h                            |  1 +
>>   src/qemu/qemu_capabilities.c                      |  5 ++++
>>   src/qemu/qemu_capabilities.h                      |  1 +
>>   src/qemu/qemu_command.c                           | 16 +++++++++-
>>   tests/qemucapabilitiesdata/caps_2.12.0.x86_64.xml |  1 +
>>   tests/qemuxml2argvdata/tpm-passthrough-crb.args   | 26 ++++++++++++++++
>>   tests/qemuxml2argvdata/tpm-passthrough-crb.xml    | 32 ++++++++++++++++++++
>>   tests/qemuxml2argvtest.c                          |  2 ++
>>   tests/qemuxml2xmloutdata/tpm-passthrough-crb.xml  | 36 +++++++++++++++++++++++
>>   tests/qemuxml2xmltest.c                           |  1 +
>>   13 files changed, 131 insertions(+), 6 deletions(-)
>>   create mode 100644 tests/qemuxml2argvdata/tpm-passthrough-crb.args
>>   create mode 100644 tests/qemuxml2argvdata/tpm-passthrough-crb.xml
>>   create mode 100644 tests/qemuxml2xmloutdata/tpm-passthrough-crb.xml
>>
> This is now pushed... Next up the other parts of your changes.
I'll repost the broken up patch...

    Stefan
>
> John
>

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list