All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jim Fehlig <jfehlig@suse.com>
To: "Ján Tomko" <jtomko@redhat.com>
Cc: libvir-list@redhat.com, xen-devel@lists.xen.org
Subject: Re: [libvirt] [PATCH V2 0/4] Extend <hap> to a tristate
Date: Mon, 21 Mar 2016 09:45:32 -0600	[thread overview]
Message-ID: <56F0171C.2040301@suse.com> (raw)
In-Reply-To: <20160321124917.GA24713@dnr.brq.redhat.com>

On 03/21/2016 06:49 AM, Ján Tomko wrote:
> On Mon, Feb 29, 2016 at 09:00:44PM -0700, Jim Fehlig wrote:
>> An expanded V2 of
>>
>> https://www.redhat.com/archives/libvir-list/2016-February/msg00140.html
>>
>> In V2, the <hap> feature is extended with a state='on|off' attribute to
>> allow differentiating the 'on' and 'off' states with not set (or hypervisor
>> default).
>>
>> Obviously post 1.3.2 material. See individual patches for details.
>>
>> Jim Fehlig (4):
>>   conf: add 'state' attribute to <hap> feature
>>   xenconfig: change 'hap' setting to align with Xen behavior
>>   Xen drivers: show hap enabled by default in capabilities
>>   libxl: support enabling and disabling <hap> feature
>>
>>  docs/formatdomain.html.in                          |  6 ++-
>>  docs/schemas/domaincommon.rng                      |  6 ++-
>>  src/conf/domain_conf.c                             |  4 +-
>>  src/libxl/libxl_conf.c                             | 20 ++++++--
>>  src/xen/xen_hypervisor.c                           |  2 +-
>>  src/xenconfig/xen_common.c                         | 14 ++---
>>  .../test-disk-positional-parms-full.cfg            |  1 -
>>  .../test-disk-positional-parms-partial.cfg         |  1 -
>>  ...est-fullvirt-direct-kernel-boot-bogus-extra.cfg |  1 -
>>  .../test-fullvirt-direct-kernel-boot-extra.cfg     |  1 -
>>  .../test-fullvirt-direct-kernel-boot.cfg           |  1 -
>>  tests/xlconfigdata/test-fullvirt-multiusb.cfg      |  1 -
>>  tests/xlconfigdata/test-fullvirt-nohap.cfg         | 26 ++++++++++
>>  tests/xlconfigdata/test-fullvirt-nohap.xml         | 59 ++++++++++++++++++++++
>>  tests/xlconfigdata/test-new-disk.cfg               |  1 -
>>  tests/xlconfigdata/test-rbd-multihost-noauth.cfg   |  1 -
>>  tests/xlconfigdata/test-spice-features.cfg         |  1 -
>>  tests/xlconfigdata/test-spice.cfg                  |  1 -
>>  tests/xlconfigdata/test-vif-rate.cfg               |  1 -
>>  tests/xlconfigtest.c                               |  1 +
>>  tests/xmconfigdata/test-escape-paths.cfg           |  1 -
>>  .../xmconfigdata/test-fullvirt-default-feature.cfg |  1 -
>>  tests/xmconfigdata/test-fullvirt-force-hpet.cfg    |  1 -
>>  tests/xmconfigdata/test-fullvirt-force-nohpet.cfg  |  1 -
>>  tests/xmconfigdata/test-fullvirt-localtime.cfg     |  1 -
>>  tests/xmconfigdata/test-fullvirt-net-netfront.cfg  |  1 -
>>  tests/xmconfigdata/test-fullvirt-new-cdrom.cfg     |  1 -
>>  tests/xmconfigdata/test-fullvirt-nohap.cfg         | 28 ++++++++++
>>  tests/xmconfigdata/test-fullvirt-nohap.xml         | 51 +++++++++++++++++++
>>  tests/xmconfigdata/test-fullvirt-parallel-tcp.cfg  |  1 -
>>  .../test-fullvirt-serial-dev-2-ports.cfg           |  1 -
>>  .../test-fullvirt-serial-dev-2nd-port.cfg          |  1 -
>>  tests/xmconfigdata/test-fullvirt-serial-file.cfg   |  1 -
>>  tests/xmconfigdata/test-fullvirt-serial-null.cfg   |  1 -
>>  tests/xmconfigdata/test-fullvirt-serial-pipe.cfg   |  1 -
>>  tests/xmconfigdata/test-fullvirt-serial-pty.cfg    |  1 -
>>  tests/xmconfigdata/test-fullvirt-serial-stdio.cfg  |  1 -
>>  .../test-fullvirt-serial-tcp-telnet.cfg            |  1 -
>>  tests/xmconfigdata/test-fullvirt-serial-tcp.cfg    |  1 -
>>  tests/xmconfigdata/test-fullvirt-serial-udp.cfg    |  1 -
>>  tests/xmconfigdata/test-fullvirt-serial-unix.cfg   |  1 -
>>  tests/xmconfigdata/test-fullvirt-sound.cfg         |  1 -
>>  tests/xmconfigdata/test-fullvirt-usbmouse.cfg      |  1 -
>>  tests/xmconfigdata/test-fullvirt-usbtablet.cfg     |  1 -
>>  tests/xmconfigdata/test-fullvirt-utc.cfg           |  1 -
>>  tests/xmconfigdata/test-no-source-cdrom.cfg        |  1 -
>>  tests/xmconfigdata/test-pci-devs.cfg               |  1 -
>>  tests/xmconfigtest.c                               |  1 +
>>  48 files changed, 202 insertions(+), 52 deletions(-)
>>  create mode 100644 tests/xlconfigdata/test-fullvirt-nohap.cfg
>>  create mode 100644 tests/xlconfigdata/test-fullvirt-nohap.xml
>>  create mode 100755 tests/xmconfigdata/test-fullvirt-nohap.cfg
>>  create mode 100644 tests/xmconfigdata/test-fullvirt-nohap.xml
>>
> ACK series

Thanks a lot for taking a look, much appreciated! Pushed now.

Regards,
Jim


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

      reply	other threads:[~2016-03-21 15:45 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-01  4:00 [PATCH V2 0/4] Extend <hap> to a tristate Jim Fehlig
2016-03-01  4:00 ` [PATCH V2 1/4] conf: add 'state' attribute to <hap> feature Jim Fehlig
2016-03-08 16:37   ` [libvirt] " Joao Martins
2016-03-08 20:21     ` Jim Fehlig
2016-03-01  4:00 ` [PATCH V2 2/4] xenconfig: change 'hap' setting to align with Xen behavior Jim Fehlig
2016-03-08 16:37   ` [libvirt] " Joao Martins
2016-03-01  4:00 ` [PATCH V2 3/4] Xen drivers: show hap enabled by default in capabilities Jim Fehlig
2016-03-08 16:37   ` [libvirt] " Joao Martins
2016-03-01  4:00 ` [PATCH V2 4/4] libxl: support enabling and disabling <hap> feature Jim Fehlig
2016-03-08 16:37   ` [libvirt] " Joao Martins
2016-03-08  4:02 ` [libvirt] [PATCH V2 0/4] Extend <hap> to a tristate Jim Fehlig
     [not found] ` <56DE4ED8.4060905@suse.com>
2016-03-16 21:06   ` Jim Fehlig
2016-03-21 12:49 ` Ján Tomko
2016-03-21 15:45   ` Jim Fehlig [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=56F0171C.2040301@suse.com \
    --to=jfehlig@suse.com \
    --cc=jtomko@redhat.com \
    --cc=libvir-list@redhat.com \
    --cc=xen-devel@lists.xen.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.