qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* Re: [Qemu-devel] [PATCH] util/qemu-config: fix missing machine command line options
       [not found] <1444664181-28023-1-git-send-email-akrowiak@linux.vnet.ibm.com>
@ 2015-10-12 15:42 ` Marcel Apfelbaum
  2015-10-13 11:51   ` Cornelia Huck
  0 siblings, 1 reply; 4+ messages in thread
From: Marcel Apfelbaum @ 2015-10-12 15:42 UTC (permalink / raw)
  To: Tony Krowiak, kvm390-list; +Cc: qemu-stable, qemu-devel

On 10/12/2015 06:36 PM, Tony Krowiak wrote:
> Commit 0a7cf217 ("util/qemu-config: fix regression of
> qmp_query_command_line_options") aimed to restore parsing of global
> machine options, but missed two: "aes-key-wrap" and
> "dea-key-wrap" (which were present in the initial version of that
> patch). Let's add them to the machine_opts again.

Adding qemu-devel

Hi,

I thought I hunted them all, anyway, thanks for adding them.

Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>


>
> Fixes: 0a7cf217
> CC: Marcel Apfelbaum <marcel@redhat.com>
> CC: qemu-stable@nongnu.org
> Signed-off-by: Tony Krowiak <akrowiak@linux.vnet.ibm.com>
> ---
>   util/qemu-config.c |    8 ++++++++
>   1 files changed, 8 insertions(+), 0 deletions(-)
>
> diff --git a/util/qemu-config.c b/util/qemu-config.c
> index 5fcfd0e..687fd34 100644
> --- a/util/qemu-config.c
> +++ b/util/qemu-config.c
> @@ -219,6 +219,14 @@ static QemuOptsList machine_opts = {
>               .name = "suppress-vmdesc",
>               .type = QEMU_OPT_BOOL,
>               .help = "Set on to disable self-describing migration",
> +        },{
> +            .name = "aes-key-wrap",
> +            .type = QEMU_OPT_BOOL,
> +            .help = "enable/disable AES key wrapping using the CPACF wrapping key",
> +        },{
> +            .name = "dea-key-wrap",
> +            .type = QEMU_OPT_BOOL,
> +            .help = "enable/disable DEA key wrapping using the CPACF wrapping key",
>           },
>           { /* End of list */ }
>       }
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH] util/qemu-config: fix missing machine command line options
  2015-10-12 15:42 ` [Qemu-devel] [PATCH] util/qemu-config: fix missing machine command line options Marcel Apfelbaum
@ 2015-10-13 11:51   ` Cornelia Huck
  2015-10-13 13:46     ` Marcel Apfelbaum
  0 siblings, 1 reply; 4+ messages in thread
From: Cornelia Huck @ 2015-10-13 11:51 UTC (permalink / raw)
  To: Marcel Apfelbaum; +Cc: Tony Krowiak, qemu-stable, qemu-devel

On Mon, 12 Oct 2015 18:42:04 +0300
Marcel Apfelbaum <marcel@redhat.com> wrote:

> On 10/12/2015 06:36 PM, Tony Krowiak wrote:
> > Commit 0a7cf217 ("util/qemu-config: fix regression of
> > qmp_query_command_line_options") aimed to restore parsing of global
> > machine options, but missed two: "aes-key-wrap" and
> > "dea-key-wrap" (which were present in the initial version of that
> > patch). Let's add them to the machine_opts again.
> 
> Adding qemu-devel
> 
> Hi,
> 
> I thought I hunted them all, anyway, thanks for adding them.
> 
> Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>

Thanks.

util/qemu-config.c yields -ENOMAINTAINER; any obvious tree for this to
go through, or should I simply include this with the next batch of
s390x patches (as these are s390x options)?

> 
> 
> >
> > Fixes: 0a7cf217
> > CC: Marcel Apfelbaum <marcel@redhat.com>
> > CC: qemu-stable@nongnu.org
> > Signed-off-by: Tony Krowiak <akrowiak@linux.vnet.ibm.com>
> > ---
> >   util/qemu-config.c |    8 ++++++++
> >   1 files changed, 8 insertions(+), 0 deletions(-)
> >
> > diff --git a/util/qemu-config.c b/util/qemu-config.c
> > index 5fcfd0e..687fd34 100644
> > --- a/util/qemu-config.c
> > +++ b/util/qemu-config.c
> > @@ -219,6 +219,14 @@ static QemuOptsList machine_opts = {
> >               .name = "suppress-vmdesc",
> >               .type = QEMU_OPT_BOOL,
> >               .help = "Set on to disable self-describing migration",
> > +        },{
> > +            .name = "aes-key-wrap",
> > +            .type = QEMU_OPT_BOOL,
> > +            .help = "enable/disable AES key wrapping using the CPACF wrapping key",
> > +        },{
> > +            .name = "dea-key-wrap",
> > +            .type = QEMU_OPT_BOOL,
> > +            .help = "enable/disable DEA key wrapping using the CPACF wrapping key",
> >           },
> >           { /* End of list */ }
> >       }
> >
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH] util/qemu-config: fix missing machine command line options
  2015-10-13 11:51   ` Cornelia Huck
@ 2015-10-13 13:46     ` Marcel Apfelbaum
  2015-10-14  8:23       ` Cornelia Huck
  0 siblings, 1 reply; 4+ messages in thread
From: Marcel Apfelbaum @ 2015-10-13 13:46 UTC (permalink / raw)
  To: Cornelia Huck; +Cc: Tony Krowiak, qemu-stable, qemu-devel

On 10/13/2015 02:51 PM, Cornelia Huck wrote:
> On Mon, 12 Oct 2015 18:42:04 +0300
> Marcel Apfelbaum <marcel@redhat.com> wrote:
>
>> On 10/12/2015 06:36 PM, Tony Krowiak wrote:
>>> Commit 0a7cf217 ("util/qemu-config: fix regression of
>>> qmp_query_command_line_options") aimed to restore parsing of global
>>> machine options, but missed two: "aes-key-wrap" and
>>> "dea-key-wrap" (which were present in the initial version of that
>>> patch). Let's add them to the machine_opts again.
>>
>> Adding qemu-devel
>>
>> Hi,
>>
>> I thought I hunted them all, anyway, thanks for adding them.
>>
>> Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>
>
> Thanks.
>
> util/qemu-config.c yields -ENOMAINTAINER; any obvious tree for this to
> go through, or should I simply include this with the next batch of
> s390x patches (as these are s390x options)?
>

Just take it to your tree.
Thanks!
Marcel

>>
>>
>>>
>>> Fixes: 0a7cf217
>>> CC: Marcel Apfelbaum <marcel@redhat.com>
>>> CC: qemu-stable@nongnu.org
>>> Signed-off-by: Tony Krowiak <akrowiak@linux.vnet.ibm.com>
>>> ---
>>>    util/qemu-config.c |    8 ++++++++
>>>    1 files changed, 8 insertions(+), 0 deletions(-)
>>>
>>> diff --git a/util/qemu-config.c b/util/qemu-config.c
>>> index 5fcfd0e..687fd34 100644
>>> --- a/util/qemu-config.c
>>> +++ b/util/qemu-config.c
>>> @@ -219,6 +219,14 @@ static QemuOptsList machine_opts = {
>>>                .name = "suppress-vmdesc",
>>>                .type = QEMU_OPT_BOOL,
>>>                .help = "Set on to disable self-describing migration",
>>> +        },{
>>> +            .name = "aes-key-wrap",
>>> +            .type = QEMU_OPT_BOOL,
>>> +            .help = "enable/disable AES key wrapping using the CPACF wrapping key",
>>> +        },{
>>> +            .name = "dea-key-wrap",
>>> +            .type = QEMU_OPT_BOOL,
>>> +            .help = "enable/disable DEA key wrapping using the CPACF wrapping key",
>>>            },
>>>            { /* End of list */ }
>>>        }
>>>
>>
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH] util/qemu-config: fix missing machine command line options
  2015-10-13 13:46     ` Marcel Apfelbaum
@ 2015-10-14  8:23       ` Cornelia Huck
  0 siblings, 0 replies; 4+ messages in thread
From: Cornelia Huck @ 2015-10-14  8:23 UTC (permalink / raw)
  To: Marcel Apfelbaum; +Cc: Tony Krowiak, qemu-stable, qemu-devel

On Tue, 13 Oct 2015 16:46:29 +0300
Marcel Apfelbaum <marcel@redhat.com> wrote:

> On 10/13/2015 02:51 PM, Cornelia Huck wrote:
> > On Mon, 12 Oct 2015 18:42:04 +0300
> > Marcel Apfelbaum <marcel@redhat.com> wrote:
> >
> >> On 10/12/2015 06:36 PM, Tony Krowiak wrote:
> >>> Commit 0a7cf217 ("util/qemu-config: fix regression of
> >>> qmp_query_command_line_options") aimed to restore parsing of global
> >>> machine options, but missed two: "aes-key-wrap" and
> >>> "dea-key-wrap" (which were present in the initial version of that
> >>> patch). Let's add them to the machine_opts again.
> >>
> >> Adding qemu-devel
> >>
> >> Hi,
> >>
> >> I thought I hunted them all, anyway, thanks for adding them.
> >>
> >> Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>
> >
> > Thanks.
> >
> > util/qemu-config.c yields -ENOMAINTAINER; any obvious tree for this to
> > go through, or should I simply include this with the next batch of
> > s390x patches (as these are s390x options)?
> >
> 
> Just take it to your tree.
> Thanks!
> Marcel
> 
> >>
> >>
> >>>
> >>> Fixes: 0a7cf217

Fixed up that line to contain the subject as well and queued to my
s390-next tree.

> >>> CC: Marcel Apfelbaum <marcel@redhat.com>
> >>> CC: qemu-stable@nongnu.org
> >>> Signed-off-by: Tony Krowiak <akrowiak@linux.vnet.ibm.com>
> >>> ---
> >>>    util/qemu-config.c |    8 ++++++++
> >>>    1 files changed, 8 insertions(+), 0 deletions(-)
> >>>
> >>> diff --git a/util/qemu-config.c b/util/qemu-config.c
> >>> index 5fcfd0e..687fd34 100644
> >>> --- a/util/qemu-config.c
> >>> +++ b/util/qemu-config.c
> >>> @@ -219,6 +219,14 @@ static QemuOptsList machine_opts = {
> >>>                .name = "suppress-vmdesc",
> >>>                .type = QEMU_OPT_BOOL,
> >>>                .help = "Set on to disable self-describing migration",
> >>> +        },{
> >>> +            .name = "aes-key-wrap",
> >>> +            .type = QEMU_OPT_BOOL,
> >>> +            .help = "enable/disable AES key wrapping using the CPACF wrapping key",
> >>> +        },{
> >>> +            .name = "dea-key-wrap",
> >>> +            .type = QEMU_OPT_BOOL,
> >>> +            .help = "enable/disable DEA key wrapping using the CPACF wrapping key",
> >>>            },
> >>>            { /* End of list */ }
> >>>        }
> >>>
> >>
> >
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-10-14  8:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1444664181-28023-1-git-send-email-akrowiak@linux.vnet.ibm.com>
2015-10-12 15:42 ` [Qemu-devel] [PATCH] util/qemu-config: fix missing machine command line options Marcel Apfelbaum
2015-10-13 11:51   ` Cornelia Huck
2015-10-13 13:46     ` Marcel Apfelbaum
2015-10-14  8:23       ` Cornelia Huck

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).