Re: [PATCH 3/3] qemu: Add support for virtio device option paeg-per-vq

2021-10-09 Thread Han Han
On Wed, Oct 6, 2021 at 3:27 AM Jonathon Jongsma wrote: > On Fri, Sep 17, 2021 at 3:17 PM Jonathon Jongsma > wrote: > > > > On Thu, Sep 9, 2021 at 6:51 AM Michal Prívozník > wrote: > > > > > > On 9/6/21 4:06 PM, Han Han wrote: > > > > Re

[PATCH v2 3/3] qemu: Add support for virtio device option page-per-vq

2021-10-09 Thread Han Han
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1925363 Signed-off-by: Han Han --- src/qemu/qemu_command.c | 4 ++ src/qemu/qemu_hotplug.c | 3 +- src/qemu/qemu_validate.c | 7 .../virtio-options-controller

[PATCH v2 2/3] conf: Add page_per_vq for driver element

2021-10-09 Thread Han Han
Signed-off-by: Han Han --- docs/formatdomain.rst | 9 + docs/schemas/domaincommon.rng | 5 + src/conf/domain_conf.c| 16 src/conf/domain_conf.h| 1 + src/conf/domain_validate.c| 6 ++ 5 files changed, 37 insertions(+) diff --git a

[PATCH v2 1/3] qemu_capabilities: Add flag QEMU_CAPS_VIRTIO_PAGE_PER_VQ

2021-10-09 Thread Han Han
The qemu capability will be used for the page_per_vq option of virtio devices. Signed-off-by: Han Han --- src/qemu/qemu_capabilities.c | 6 ++ src/qemu/qemu_capabilities.h | 1 + tests/qemucapabilitiesdata/caps_2.11.0.s390x.xml | 1 + tests

[PATCH v2 0/3] Implement paeg-per-vq to virtio devices

2021-10-09 Thread Han Han
Diff from v1: - Remove some duplicated test cases - Merge some err msgs of 2 lines into one line - Rebase to latest upstream v1: https://listman.redhat.com/archives/libvir-list/2021-September/msg00087.html Han Han (3): qemu_capabilities: Add flag QEMU_CAPS_VIRTIO_PAGE_PER_VQ conf: Add

Re: [PATCH] qemuDomainChangeDiskLive: Modify 'startupPolicy' before changing source

2021-09-29 Thread Han Han
On Mon, Sep 13, 2021 at 4:10 PM Peter Krempa wrote: > On Fri, Sep 10, 2021 at 22:04:01 +0300, Nir Soffer wrote: > > On Fri, Sep 10, 2021 at 4:35 PM Peter Krempa wrote: > > > > > > We don't support all startup policies with all source types so to > > > correctly allow switching from a 'file' base

Re: [PATCH] conf: fix block type CDROM cannot support startupPolicy

2021-09-29 Thread Han Han
On Tue, Sep 28, 2021 at 10:43 AM Jie Wang wrote: > block type CDROM also support startupPolicy in the past, so > s/block/Block/ "in the past" could be more detailed. It's better if you tell from which version to which version the startupPolicy of block type cdrom is supported > let us fix it. >

[PATCH 3/3] qemu: Add support for virtio device option paeg-per-vq

2021-09-06 Thread Han Han
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1925363 Signed-off-by: Han Han --- src/qemu/qemu_command.c | 4 ++ src/qemu/qemu_hotplug.c | 3 +- src/qemu/qemu_validate.c | 8 .../virtio-options-controller

[PATCH 2/3] conf: Add page_per_vq for driver element

2021-09-06 Thread Han Han
Signed-off-by: Han Han --- docs/formatdomain.rst | 9 + docs/schemas/domaincommon.rng | 5 + src/conf/domain_conf.c| 16 src/conf/domain_conf.h| 1 + src/conf/domain_validate.c| 7 +++ 5 files changed, 38 insertions(+) diff --git

[PATCH 0/3] Implement paeg-per-vq to virtio devices

2021-09-06 Thread Han Han
t/2021-May/msg00143.html Han Han (3): qemu_capabilities: Add flag QEMU_CAPS_VIRTIO_PAGE_PER_VQ conf: Add page_per_vq for driver element qemu: Add support for virtio device option paeg-per-vq docs/formatdomain.rst | 9 + docs/schemas/domaincommon.rng

[PATCH 1/3] qemu_capabilities: Add flag QEMU_CAPS_VIRTIO_PAGE_PER_VQ

2021-09-06 Thread Han Han
The qemu capability will be used for the page_per_vq option of virtio devices. Signed-off-by: Han Han --- src/qemu/qemu_capabilities.c | 6 ++ src/qemu/qemu_capabilities.h | 1 + tests/qemucapabilitiesdata/caps_2.11.0.s390x.xml | 1 + tests

[PATCH] virsh: Fix the order of format arguments in doDump

2021-07-13 Thread Han Han
According to definition of virDomainCoreDumpFormat, the "elf" should be the first argument in VIR_ENUM_*. Fixes: 84cc4543be Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1981625 Signed-off-by: Han Han --- tools/virsh-domain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletio

Re: [PATCH v2 00/14] news update since v6.9 to v7.0

2021-06-17 Thread Han Han
ping On Mon, Jun 7, 2021 at 10:24 AM Han Han wrote: > PING+1 > > On Wed, May 26, 2021 at 4:34 PM Han Han wrote: > >> ping again :)) >> >> On Wed, May 19, 2021 at 11:09 AM Han Han wrote: >> >>> ping >>> >>> On Thu, Apr 22, 2021 at

Re: [PATCH v2 0/6] qemu: Adapt to virtio*gl* devices

2021-06-11 Thread Han Han
On Fri, Jun 11, 2021 at 4:55 PM Michal Prívozník wrote: > On 6/9/21 10:32 AM, Han Han wrote: > > Diff from v1: > > - Leave qemuBuildVirtioDevStr() unmodified > > - New patch: qemu_validate: Validate virtio*gl* devices for 3d > > accerlation > > - Use DO_TE

Re: [PATCH v2 4/6] qemu: Adapt to virtio-gpu-gl-pci device

2021-06-11 Thread Han Han
On Fri, Jun 11, 2021 at 4:55 PM Michal Prívozník wrote: > On 6/9/21 10:32 AM, Han Han wrote: > > QEMU 6.1 will add virtio-gpu-gl-pci device to replace the virgl property > > of virtio-gpu-pci device. Adapt to that change. > > > > Resolves: https://bugzilla.redhat.

Re: [PATCH v2 5/6] qemu: Adapt to virtio-vga-gl device

2021-06-11 Thread Han Han
On Fri, Jun 11, 2021 at 4:55 PM Michal Prívozník wrote: > On 6/9/21 10:32 AM, Han Han wrote: > > QEMU 6.1 will replace the virgl property of virtio-vga device to > > virtio-vga-gl device. Adapt to that update. > > > > Resolves: https://gitlab.com/libvirt/libvirt/-/is

[PATCH v2 6/6] tests: Tests for virtio-vga-gl and virtio-gpu-gl-pci device

2021-06-09 Thread Han Han
Signed-off-by: Han Han --- ...video-virtio-vga-gpu-gl.x86_64-latest.args | 35 ++ .../video-virtio-vga-gpu-gl.xml | 46 +++ tests/qemuxml2argvtest.c | 1 + .../video-virtio-vga-gpu-gl.x86_64-latest.xml | 1 + tests

[PATCH v2 4/6] qemu: Adapt to virtio-gpu-gl-pci device

2021-06-09 Thread Han Han
QEMU 6.1 will add virtio-gpu-gl-pci device to replace the virgl property of virtio-gpu-pci device. Adapt to that change. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1967356 Signed-off-by: Han Han --- src/qemu/qemu_command.c | 5 + 1 file changed, 5 insertions(+) diff --git a/src

[PATCH v2 5/6] qemu: Adapt to virtio-vga-gl device

2021-06-09 Thread Han Han
QEMU 6.1 will replace the virgl property of virtio-vga device to virtio-vga-gl device. Adapt to that update. Resolves: https://gitlab.com/libvirt/libvirt/-/issues/167 Signed-off-by: Han Han --- src/qemu/qemu_command.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/qemu

[PATCH v2 2/6] qemu_capabilities: Add QEMU_CAPS_VIRTIO_VGA_GL

2021-06-09 Thread Han Han
It will be used for virtio-vga-gl device later. Signed-off-by: Han Han --- src/qemu/qemu_capabilities.c | 2 ++ src/qemu/qemu_capabilities.h | 1 + tests/qemucapabilitiesdata/caps_6.1.0.x86_64.xml | 1 + 3 files changed, 4 insertions(+) diff --git a/src

[PATCH v2 3/6] qemu_validate: Validate virtio*gl* devices for 3d accerlation

2021-06-09 Thread Han Han
The devices virtio-gpu-gl-pci and virtio-vga-gl, aimed to replace the virgl property, are valid for 3d accerlation as well. Signed-off-by: Han Han --- src/qemu/qemu_validate.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/qemu/qemu_validate.c b/src/qemu

[PATCH v2 0/6] qemu: Adapt to virtio*gl* devices

2021-06-09 Thread Han Han
v1: https://listman.redhat.com/archives/libvir-list/2021-June/msg00181.html Han Han (6): qemu_capabilities: Add QEMU_CAPS_VIRTIO_GPU_GL_PCI qemu_capabilities: Add QEMU_CAPS_VIRTIO_VGA_GL qemu_validate: Validate virtio*gl* devices for 3d accerlation qemu: Adapt to virtio-gpu-gl-pci device

[PATCH v2 1/6] qemu_capabilities: Add QEMU_CAPS_VIRTIO_GPU_GL_PCI

2021-06-09 Thread Han Han
This flag will be used for the device virtio-gpu-gl-pci which is introduced since QEMU 6.1. Signed-off-by: Han Han --- src/qemu/qemu_capabilities.c | 2 ++ src/qemu/qemu_capabilities.h | 1 + tests/qemucapabilitiesdata/caps_6.1.0.x86_64.xml | 1 + 3 files

Re: [PATCH 5/5] tests: Tests for virtio-vga-gl and virtio-gpu-gl-pci device

2021-06-09 Thread Han Han
On Wed, Jun 9, 2021 at 2:20 PM Michal Prívozník wrote: > On 6/9/21 5:08 AM, Han Han wrote: > > On Tue, Jun 8, 2021 at 10:14 PM Michal Prívozník > > wrote: > > > >> On 6/8/21 3:15 AM, Han Han wrote: > >>> Signed-off-by: Han Han > >>> --- >

Re: [PATCH 5/5] tests: Tests for virtio-vga-gl and virtio-gpu-gl-pci device

2021-06-08 Thread Han Han
On Tue, Jun 8, 2021 at 10:14 PM Michal Prívozník wrote: > On 6/8/21 3:15 AM, Han Han wrote: > > Signed-off-by: Han Han > > --- > > .../video-virtio-vga-gpu-gl.args | 29 + > > .../video-virtio-vga-gpu-gl.xml | 34

Re: [PATCH 2/5] qemu: Adapt to virtio-gpu-gl-pci device when available

2021-06-08 Thread Han Han
On Tue, Jun 8, 2021 at 10:14 PM Michal Prívozník wrote: > On 6/8/21 3:15 AM, Han Han wrote: > > QEMU 6.1 will add virtio-gpu-gl-pci device to replace the virgl property > > of virtio-gpu-pci device. Adapt to that change. > > > > Resolves: https://bugzilla.redhat.

[PATCH 4/5] qemu: Adapt to virtio-vga-gl device

2021-06-07 Thread Han Han
QEMU 6.1 will replace the virgl property of virtio-vga device to virtio-vga-gl device. Adapt to that update. Resolves: https://gitlab.com/libvirt/libvirt/-/issues/167 Signed-off-by: Han Han --- src/qemu/qemu_command.c | 4 1 file changed, 4 insertions(+) diff --git a/src/qemu

[PATCH 3/5] qemu_capabilities: Add QEMU_CAPS_VIRTIO_VGA_GL

2021-06-07 Thread Han Han
It will be used for virtio-vga-gl device later. Signed-off-by: Han Han --- src/qemu/qemu_capabilities.c | 2 ++ src/qemu/qemu_capabilities.h | 1 + tests/qemucapabilitiesdata/caps_6.1.0.x86_64.xml | 1 + 3 files changed, 4 insertions(+) diff --git a/src

[PATCH 1/5] qemu_capabilities: Add QEMU_CAPS_VIRTIO_GPU_GL_PCI

2021-06-07 Thread Han Han
This flag will be used for the device virtio-gpu-gl-pci which is introduced since QEMU 6.1. Signed-off-by: Han Han --- src/qemu/qemu_capabilities.c | 2 ++ src/qemu/qemu_capabilities.h | 1 + tests/qemucapabilitiesdata/caps_6.1.0.x86_64.xml | 1 + 3 files

[PATCH 5/5] tests: Tests for virtio-vga-gl and virtio-gpu-gl-pci device

2021-06-07 Thread Han Han
Signed-off-by: Han Han --- .../video-virtio-vga-gpu-gl.args | 29 + .../video-virtio-vga-gpu-gl.xml | 34 +++ tests/qemuxml2argvtest.c | 6 +++ .../video-virtio-vga-gpu-gl.xml | 43 +++ tests

[PATCH 0/5] qemu: Adapt to virtio-gpu-gl-pci and virtio-vga-gl

2021-06-07 Thread Han Han
The virgl property of virtio-gpu-pci&virtio-vga will be replaced by virtio-gpu-gl-pci&virtio-vga-gl in QEMU 6.1. Adapt to that update. Resolves: https://gitlab.com/libvirt/libvirt/-/issues/167 https://bugzilla.redhat.com/show_bug.cgi?id=1967356 Han Han (5): qemu_capabilit

[PATCH 2/5] qemu: Adapt to virtio-gpu-gl-pci device when available

2021-06-07 Thread Han Han
QEMU 6.1 will add virtio-gpu-gl-pci device to replace the virgl property of virtio-gpu-pci device. Adapt to that change. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1967356 Signed-off-by: Han Han --- src/qemu/qemu_command.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion

Re: [PATCH v2 00/14] news update since v6.9 to v7.0

2021-06-06 Thread Han Han
PING+1 On Wed, May 26, 2021 at 4:34 PM Han Han wrote: > ping again :)) > > On Wed, May 19, 2021 at 11:09 AM Han Han wrote: > >> ping >> >> On Thu, Apr 22, 2021 at 11:48 AM Han Han wrote: >> >>> Diff from v1: >>> - Drop the news &

Re: [PATCH v8 0/3] qemu: Support rbd namespace

2021-06-06 Thread Han Han
PING On Wed, May 26, 2021 at 9:35 PM Han Han wrote: > Diff from v7: > - Squash a commit > - Rebase to latest code > > v7: > https://listman.redhat.com/archives/libvir-list/2020-November/msg00480.html > > Han Han (3): > qemu_capabilities: Add QEMU_CAPS_RBD_NAMESPACE

[PATCH v8 0/3] qemu: Support rbd namespace

2021-05-26 Thread Han Han
Diff from v7: - Squash a commit - Rebase to latest code v7: https://listman.redhat.com/archives/libvir-list/2020-November/msg00480.html Han Han (3): qemu_capabilities: Add QEMU_CAPS_RBD_NAMESPACE conf: Support to parse rbd namespace from source name qemu: Implement rbd namespace to the

[PATCH v8 3/3] qemu: Implement rbd namespace to the source name attribute

2021-05-26 Thread Han Han
redhat.com/show_bug.cgi?id=1816909 Signed-off-by: Han Han --- src/qemu/qemu_block.c | 1 + src/qemu/qemu_domain.c| 8 +++ ...k-network-rbd-namespace.x86_64-latest.args | 38 ++ .../disk-network-rbd-namespace.xml

[PATCH v8 2/3] conf: Support to parse rbd namespace from source name

2021-05-26 Thread Han Han
Signed-off-by: Han Han --- docs/formatdomain.rst | 16 src/conf/domain_conf.c | 47 +++--- src/conf/storage_source_conf.c | 2 ++ src/conf/storage_source_conf.h | 1 + 4 files changed, 62 insertions(+), 4 deletions(-) diff --git a/docs

[PATCH v8 1/3] qemu_capabilities: Add QEMU_CAPS_RBD_NAMESPACE

2021-05-26 Thread Han Han
The capability flag will be used for rbd namespace option. The rbd namespace is introduced since ceph Nautilus and qemu v5.0.0. Signed-off-by: Han Han --- src/qemu/qemu_capabilities.c | 2 ++ src/qemu/qemu_capabilities.h | 1 + tests

Re: [PATCH v2 00/14] news update since v6.9 to v7.0

2021-05-26 Thread Han Han
ping again :)) On Wed, May 19, 2021 at 11:09 AM Han Han wrote: > ping > > On Thu, Apr 22, 2021 at 11:48 AM Han Han wrote: > >> Diff from v1: >> - Drop the news "Introduce VIR_DOMAIN_CHECKPOINT_REDEFINE_VALIDATE flag" >> - Move the news of virt-aa

[PATCH] kbase: Fix broken link of migration doc

2021-05-24 Thread Han Han
Signed-off-by: Han Han --- docs/kbase/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kbase/index.rst b/docs/kbase/index.rst index d483ca94de..91083ee49d 100644 --- a/docs/kbase/index.rst +++ b/docs/kbase/index.rst @@ -66,4 +66,4 @@ Internals / Debugging `VM

Re: Ceph RBD Connection

2021-05-23 Thread Han Han
On Sun, May 23, 2021 at 4:33 AM Mr. Gecko wrote: > Hello, > > I setup a Ceph Cluster on my system in hopes of using it with libvirtd, > however I'm finding myself unable to have libvirtd make the connection. > > [root@server ~]# virsh pool-start "${CEPH_POOL}" > error: Failed to start pool libvir

Re: [PATCH v2 00/14] news update since v6.9 to v7.0

2021-05-18 Thread Han Han
ping On Thu, Apr 22, 2021 at 11:48 AM Han Han wrote: > Diff from v1: > - Drop the news "Introduce VIR_DOMAIN_CHECKPOINT_REDEFINE_VALIDATE flag" > - Move the news of virt-aa-helper to bug fix part > - Update some descriptions of news > > v1: > https://listman.redha

Re: How to hot plugin a new vhost-user-blk-pci device to running VM?

2021-05-17 Thread Han Han
On Mon, May 17, 2021 at 1:09 PM Liang Chaojun wrote: > > Thanks Michal and Peter for your response. I‘ m running it on qemu 5.1 > build by myself. BTW, follow Peter’s suggestion, where I can get the latest > rpms if I want to upgrade to Libvirt 7.1? As I know it seems need more than > twenty rela

Re: [libvirt PATCH 0/2] storage_driver: add support for cluster_size QCOW2 option

2021-05-16 Thread Han Han
u:object_r:virt_image_t:s0 1621224886.854657229 1621224875.045657229 1621224875.049657229 0 1.1 1024 > -- > 2.31.1 > > -- Reviewed-by: Han Han Tested-by: Han Han

Re: [PATCH] Introduce a new virDomainReloadTlsCertificates API

2021-05-10 Thread Han Han
On Sat, May 8, 2021 at 2:43 PM Zheng Yan wrote: > The new virDomainReloadTlsCertificates API is used to notify domain reload > its certificates without restart, and avoid service interruption. > > Currently, only QEMU VNC TLS certificates are supported, but parameters and > flags are also reserve

Re: [PATCH] formatdomain.rst: update slice xml in "Hard drives" part

2021-04-22 Thread Han Han
On Thu, Apr 22, 2021 at 4:50 PM “Meina wrote: > Update slice xml from block lun disk because it doesn't support storage > slice > > Signed-off-by: Meina Li > --- > docs/formatdomain.rst | 11 ++- > 1 file changed, 6 insertions(+), 5 deletions(-) > > diff --git a/docs/formatdomain.rst b/

Re: [PATCH] formatdomain.rst: update slice xml in "Hard drives" part

2021-04-22 Thread Han Han
On Thu, Apr 22, 2021 at 4:50 PM “Meina wrote: > Update slice xml from block lun disk because it doesn't support storage > slice > > Better if mentioning the bug or the commit of forbidding slice element with lun device https://bugzilla.redhat.com/show_bug.cgi?id=1820040 5d72c3ce28 qemu: domain: F

[PATCH v2 14/14] news: qemu: Add support for NFS disk protocol

2021-04-21 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 4 1 file changed, 4 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index b63d2baba2..937a03a37a 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -249,6 +249,10 @@ v7.0.0 (2021-01-15) The cpu model Snowridge is supported since QEMU 4.1. + * qemu: Add

[PATCH v2 06/14] logging: allow max_len=0 to disable log rollover

2021-04-21 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 4 1 file changed, 4 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 7a85fa29f3..884b541f7a 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -445,6 +445,10 @@ v6.9.0 (2020-11-02) For SR-IOV VF hostdev, now libvirt supports to retrieve device traffic

[PATCH v2 13/14] news: cpu_map: Add Snowridge cpu model

2021-04-21 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 4 1 file changed, 4 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 106b6ed3c6..b63d2baba2 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -245,6 +245,10 @@ v7.0.0 (2021-01-15) powered off or undefined. Add per-TPM emulator option ``persistent_state

[PATCH v2 12/14] qemu: support kvm-poll-control performance hint

2021-04-21 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 5 + 1 file changed, 5 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 55d57aa53b..106b6ed3c6 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -366,6 +366,11 @@ v6.10.0 (2020-12-01) mode of files and directories, respectively, when using accessmode

[PATCH v2 08/14] news: qemu: Introduce virtio free page reporting feature

2021-04-21 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 7 +++ 1 file changed, 7 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 4026b92b0c..c0ecc5664e 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -433,6 +433,13 @@ v6.9.0 (2020-11-02) virsh, use the option ``--validate`` for sub-commmand ``cpu-compare

[PATCH v2 10/14] news: qemu: Add 'fmode' and 'dmode' options for 9pfs

2021-04-21 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 7 +++ 1 file changed, 7 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index bc863eceb2..5b806f86d1 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -353,6 +353,13 @@ v6.10.0 (2020-12-01) ``virDomainSetVcpus()``, and ``virDomainSetVcpusFlags()`` APIs have

[PATCH v2 02/14] news: support device stats collection for SR-IOV VF hostdev

2021-04-21 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 5 + 1 file changed, 5 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index e4a98fbd75..2db7e8c27c 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -428,6 +428,11 @@ v6.9.0 (2020-11-02) Libvirt probes the underlying platform in order to fill in these SEV

[PATCH v2 11/14] news: Introduce "migrate_tls_force" to qemu.conf

2021-04-21 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 6 ++ 1 file changed, 6 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 5b806f86d1..55d57aa53b 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -335,6 +335,12 @@ v6.10.0 (2020-12-01) option is missing are now '1'. This ensures that only

[PATCH v2 00/14] news update since v6.9 to v7.0

2021-04-21 Thread Han Han
Krempa and Erik Skultety. Han Han (14): news: make SEV attrs 'cbitpos' & 'reducedPhysBits' optional news: support device stats collection for SR-IOV VF hostdev news: virt-aa-helper: allow guest to create hard links for mounted 9pfs paths news: cpu_map: Add EPYC-Rome

[PATCH v2 09/14] news: qemu: virtiofs can be used without NUMA nodes

2021-04-21 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 5 + 1 file changed, 5 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index c0ecc5664e..bc863eceb2 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -462,6 +462,11 @@ v6.9.0 (2020-11-02) avoid needless cost of host CPU cycles and improve the performance of

[PATCH v2 04/14] news: cpu_map: Add EPYC-Rome cpu model

2021-04-21 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 4 1 file changed, 4 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 0ce67a9a50..31ca073e75 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -421,6 +421,10 @@ v6.9.0 (2020-11-02) using . The node device APIs also now list and provide XML

[PATCH v2 07/14] news: qemu: Set noqueue qdisc for TAP devices

2021-04-21 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 6 ++ 1 file changed, 6 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 884b541f7a..4026b92b0c 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -449,6 +449,12 @@ v6.9.0 (2020-11-02) Set ``max_len=0`` in ``virtlogd.conf`` to disable log rollover

[PATCH v2 05/14] news: cpu: Support for XML validation in cpu comparison

2021-04-21 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 8 1 file changed, 8 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 31ca073e75..7a85fa29f3 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -425,6 +425,14 @@ v6.9.0 (2020-11-02) The EPYC-Rome is supported in QEMU since ``v5.0.0``. + * cpu

[PATCH v2 01/14] news: make SEV attrs 'cbitpos' & 'reducedPhysBits' optional

2021-04-21 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 7 +++ 1 file changed, 7 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 5f8b0ae02d..e4a98fbd75 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -421,6 +421,13 @@ v6.9.0 (2020-11-02) using . The node device APIs also now list and provide XML

[PATCH v2 03/14] news: virt-aa-helper: allow guest to create hard links for mounted 9pfs paths

2021-04-21 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 2db7e8c27c..0ce67a9a50 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -446,6 +446,8 @@ v6.9.0 (2020-11-02) ``virt-ssh-helper`` command on the remote host, and thus always used the

Re: [PATCH 0/3] tests: qemuxml2argv negative tests for hugepages and numatune

2021-04-21 Thread Han Han
On Mon, Apr 19, 2021 at 8:56 PM Michal Privoznik wrote: > On 3/30/21 8:36 AM, Han Han wrote: > > > > Han Han (3): > >tests: negative test for hugepages with anonymous memory backing > >tests: negative test for hugepages with ondemand mode > >tests:

Re: [PATCH 11/15] news: Introduce VIR_DOMAIN_CHECKPOINT_REDEFINE_VALIDATE flag

2021-04-14 Thread Han Han
On Tue, Apr 13, 2021 at 3:19 PM Peter Krempa wrote: > On Tue, Apr 13, 2021 at 15:08:41 +0800, Han Han wrote: > > Signed-off-by: Han Han > > --- > > NEWS.rst | 6 ++ > > 1 file changed, 6 insertions(+) > > > > diff --git a/NEWS.rst b/NEWS.rst

Re: [PATCH 03/15] news: virt-aa-helper: allow guest to create hard links for mounted paths

2021-04-14 Thread Han Han
On Tue, Apr 13, 2021 at 3:22 PM Peter Krempa wrote: > On Tue, Apr 13, 2021 at 15:08:33 +0800, Han Han wrote: > > Signed-off-by: Han Han > > --- > > NEWS.rst | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/NEWS.rst b/NEWS.rst > >

[PATCH 05/15] news: cpu: Support for XML validation in cpu comparison

2021-04-13 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 8 1 file changed, 8 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 1cc8ff6d73..a06e998275 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -425,6 +425,14 @@ v6.9.0 (2020-11-02) The EPYC-Rome is supported in QEMU since ``v5.0.0``. + * cpu

[PATCH 10/15] news: qemu: Add 'fmode' and 'dmode' options for 9pfs

2021-04-13 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 7 +++ 1 file changed, 7 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index b66313ce9c..24e4481874 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -353,6 +353,13 @@ v6.10.0 (2020-12-01) ``virDomainSetVcpus()``, and ``virDomainSetVcpusFlags()`` APIs have

[PATCH 06/15] news: logging: allow max_len=0 to disable log rollover

2021-04-13 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 4 1 file changed, 4 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index a06e998275..cf40de17e8 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -447,6 +447,10 @@ v6.9.0 (2020-11-02) * virt-aa-helper: allow guest to create hard links for mounted paths

[PATCH 11/15] news: Introduce VIR_DOMAIN_CHECKPOINT_REDEFINE_VALIDATE flag

2021-04-13 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 6 ++ 1 file changed, 6 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 24e4481874..fed80b6724 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -360,6 +360,12 @@ v6.10.0 (2020-12-01) mode of files and directories, respectively, when using accessmode

[PATCH 14/15] news: cpu_map: Add Snowridge cpu model

2021-04-13 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 4 1 file changed, 4 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 3e2ce2cad5..62cec81f0b 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -245,6 +245,10 @@ v7.0.0 (2021-01-15) powered off or undefined. Add per-TPM emulator option ``persistent_state

[PATCH 12/15] news: Introduce "migrate_tls_force" qemu.conf option

2021-04-13 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 5 + 1 file changed, 5 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index fed80b6724..6cf790bc25 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -335,6 +335,11 @@ v6.10.0 (2020-12-01) option is missing are now '1'. This ensures that only legitima

[PATCH 04/15] news: cpu_map: Add EPYC-Rome cpu model

2021-04-13 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 4 1 file changed, 4 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 1ac9b4c9fc..1cc8ff6d73 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -421,6 +421,10 @@ v6.9.0 (2020-11-02) using . The node device APIs also now list and provide XML

[PATCH 03/15] news: virt-aa-helper: allow guest to create hard links for mounted paths

2021-04-13 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index d95308fd94..1ac9b4c9fc 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -433,6 +433,8 @@ v6.9.0 (2020-11-02) For SR-IOV VF hostdev, now libvirt supports to retrieve device traffic

[PATCH 09/15] news: qemu: virtiofs can be used without NUMA nodes

2021-04-13 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 5 + 1 file changed, 5 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 20e8f047de..b66313ce9c 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -464,6 +464,11 @@ v6.9.0 (2020-11-02) avoid needless cost of host CPU cycles and improve the performance of

[PATCH 08/15] news: qemu: Introduce virtio free page reporting feature

2021-04-13 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 7 +++ 1 file changed, 7 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index cbdd38962e..20e8f047de 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -433,6 +433,13 @@ v6.9.0 (2020-11-02) virsh, use the option ``--validate`` for sub-commmand ``cpu-compare

[PATCH 07/15] news: qemu: Set noqueue qdisc for TAP devices

2021-04-13 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 6 ++ 1 file changed, 6 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index cf40de17e8..cbdd38962e 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -451,6 +451,12 @@ v6.9.0 (2020-11-02) Set ``max_len=0`` in ``virtlogd.conf`` to disable log rollover

[PATCH 13/15] news: qemu: support kvm-poll-control performance hint

2021-04-13 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 5 + 1 file changed, 5 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 6cf790bc25..3e2ce2cad5 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -371,6 +371,11 @@ v6.10.0 (2020-12-01) validation when redefining the checkpoint metadata. It could be used

[PATCH 15/15] news: qemu: Add support for NFS disk protocol

2021-04-13 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 4 1 file changed, 4 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 62cec81f0b..4e20f34a11 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -249,6 +249,10 @@ v7.0.0 (2021-01-15) The cpu model Snowridge is supported since QEMU 4.1. + * qemu: Add

[PATCH 02/15] news: support device stats collection for SR-IOV VF hostdev

2021-04-13 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 5 + 1 file changed, 5 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 350459266c..d95308fd94 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -428,6 +428,11 @@ v6.9.0 (2020-11-02) For these attrs of SEV, libvirt will fill them automatically right

[PATCH 01/15] news: make SEV attrs 'cbitpos' & 'reducedPhysBits' optional

2021-04-13 Thread Han Han
Signed-off-by: Han Han --- NEWS.rst | 7 +++ 1 file changed, 7 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 0a34798483..350459266c 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -421,6 +421,13 @@ v6.9.0 (2020-11-02) using . The node device APIs also now list and provide XML

[PATCH 00/15] news update since v6.9 to v7.0

2021-04-13 Thread Han Han
Han Han (15): news: make SEV attrs 'cbitpos' & 'reducedPhysBits' optional news: support device stats collection for SR-IOV VF hostdev news: virt-aa-helper: allow guest to create hard links for mounted paths news: cpu_map: Add EPYC-Rome cpu model ne

[PATCH] docs: formatnetworkport: Fix typos

2021-03-31 Thread Han Han
Signed-off-by: Han Han --- docs/formatnetworkport.html.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/formatnetworkport.html.in b/docs/formatnetworkport.html.in index 199a05f929..2d41552618 100644 --- a/docs/formatnetworkport.html.in +++ b/docs

Re: [libvirt PATCH 1/2] conf: add support for disk "rotation_rate" property

2021-03-31 Thread Han Han
On Wed, Mar 31, 2021 at 5:51 PM Daniel P. Berrangé wrote: > This lets the app expose the virtual SCSI or IDE disks as solid state > devices by setting a rate of '1', or rotational media by setting a > rate between 1025 and 65534. > > Signed-off-by: Daniel P. Berrangé > --- > docs/formatdomain.r

Re: [libvirt PATCH 2/2] qemu: implement setting of rotation rate for SCSI/IDE disks

2021-03-31 Thread Han Han
xml2xmloutdata/disk-rotation.x86_64-latest.xml > @@ -0,0 +1,55 @@ > + > + QEMUGuest1 > + c7a5fdbd-edaf-9455-926a-d65c16db1809 > + 219136 > + 219136 > + 8 > + > +hvm > + > + > + > + qemu64 > + > + > + destroy > + restart > + destroy > + > +/usr/bin/qemu-system-i386 > + > + > + > + > + > + > + > + > + > + > + > + > + > + > + > + > + > + > + > + function='0x2'/> > + > + > + function='0x0'/> > + > + > + > + function='0x1'/> > + > + > + > + > + > + function='0x0'/> > + > + > + > diff --git a/tests/qemuxml2xmltest.c b/tests/qemuxml2xmltest.c > index 4e7cce21c6..137f1871af 100644 > --- a/tests/qemuxml2xmltest.c > +++ b/tests/qemuxml2xmltest.c > @@ -525,6 +525,7 @@ mymain(void) > DO_TEST("pci-serial-dev-chardev", NONE); > > DO_TEST_CAPS_LATEST("disk-slices"); > +DO_TEST_CAPS_LATEST("disk-rotation"); > > DO_TEST("encrypted-disk", QEMU_CAPS_QCOW2_LUKS); > DO_TEST("encrypted-disk-usage", QEMU_CAPS_QCOW2_LUKS); > -- > 2.30.2 > > Tested on qemu-kvm-5.2.0-6.fc35.1.x86_64 libvirt-v7.2.0-rc2-1-ga3c8355f8b with this patch. 1. Start with IDE/SCSI/SATA disks with rotation_rate. PASS 2. Live attach/detach a SCSI disk with rotation_rate. PASS the qemu log of attaching: 103.545 > 0x7f6cf80056f0 {"execute":"blockdev-add","arguments":{"driver":"file","filename":"/tmp/sata","node-name":"libvirt-4-storage","auto-read-only":true,"discard":"unmap"},"id":"libvirt-383"} 103.547 < 0x7f6cf80056f0 {"return": {}, "id": "libvirt-383"} 103.547 > 0x7f6cf80056f0 {"execute":"blockdev-add","arguments":{"node-name":"libvirt-4-format","read-only":false,"driver":"raw","file":"libvirt-4-storage"},"id":"libvirt-384"} 103.549 < 0x7f6cf80056f0 {"return": {}, "id": "libvirt-384"} 103.549 > 0x7f6cf80056f0 {"execute":"device_add","arguments":{"driver":"scsi-hd","bus":"scsi0.0","channel":"0","scsi-id":"0","lun":"1","device_id":"drive-scsi0-0-0-1","drive":"libvirt-4-format","id":"scsi0-0-0-1","rotation_rate":"7200"},"id":"libvirt-385"} 103.602 < 0x7f6cf80056f0 {"return": {}, "id": "libvirt-385"} 103.603 > 0x7f6cf80056f0 {"execute":"qom-list","arguments":{"path":"/machine/peripheral"},"id":"libvirt-386"} 103.604 < 0x7f6cf80056f0 {"return": [{"name": "type", "type": "string"}, {"name": "input0", "type": "child"}, {"name": "sata0-0-0", "type": "child"}, {"name": "ide0-0-0", "type": "child"}, {"name": "redir1", "type": "child"}, {"name": "video0", "type": "child"}, {"name": "serial0", "type": "child"}, {"name": "balloon0", "type": "child"}, {"name": "sata0", "type": "child"}, {"name": "scsi0", "type": "child"}, 364.266 ! 0x7f6cf80056f0 {"timestamp": {"seconds": 1617242887, "microseconds": 451436}, "event": "SHUTDOWN", "data": {"guest": false, "reason": "host-signal"}} rotation_rate is mentioned in 'device_add'. -- Reviewed-by: Han Han Tested-by: Han Han

[PATCH 1/3] tests: negative test for hugepages with anonymous memory backing

2021-03-29 Thread Han Han
Signed-off-by: Han Han --- .../qemuxml2argvdata/hugepages-anonymous.err | 1 + .../qemuxml2argvdata/hugepages-anonymous.xml | 25 +++ tests/qemuxml2argvtest.c | 1 + 3 files changed, 27 insertions(+) create mode 100644 tests/qemuxml2argvdata/hugepages

[PATCH 0/3] tests: qemuxml2argv negative tests for hugepages and numatune

2021-03-29 Thread Han Han
Han Han (3): tests: negative test for hugepages with anonymous memory backing tests: negative test for hugepages with ondemand mode tests: negative test of binding memnode cellid to an nonexist guest cell .../qemuxml2argvdata/hugepages-anonymous.err | 1 + .../qemuxml2argvdata

[PATCH 3/3] tests: negative test of binding memnode cellid to an nonexist guest cell

2021-03-29 Thread Han Han
Signed-off-by: Han Han --- ...une-memnode-cellid-nonexist-guest-cell.err | 1 + ...une-memnode-cellid-nonexist-guest-cell.xml | 31 +++ tests/qemuxml2argvtest.c | 1 + 3 files changed, 33 insertions(+) create mode 100644 tests/qemuxml2argvdata/numatune

[PATCH 2/3] tests: negative test for hugepages with ondemand mode

2021-03-29 Thread Han Han
Signed-off-by: Han Han --- tests/qemuxml2argvdata/hugepages-ondemand.err | 1 + tests/qemuxml2argvdata/hugepages-ondemand.xml | 25 +++ tests/qemuxml2argvtest.c | 1 + 3 files changed, 27 insertions(+) create mode 100644 tests/qemuxml2argvdata/hugepages

[PATCH] docs: Fix broken link in migrationinternals

2021-03-25 Thread Han Han
Signed-off-by: Han Han --- docs/kbase/migrationinternals.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kbase/migrationinternals.rst b/docs/kbase/migrationinternals.rst index 2e187936a7..f7b4b5a10e 100644 --- a/docs/kbase/migrationinternals.rst +++ b/docs/kbase

Re: [libvirt PATCH] conf: allow virtio driver attributes for vhostuser disk

2021-02-06 Thread Han Han
,7 @@ > > > > - > + > > > > diff --git a/tests/qemuxml2xmloutdata/disk-vhostuser.x86_64-latest.xml > b/tests/qemuxml2xmloutdata/disk-vhostuser.x86_64-latest.xml > index 9712dc0b12..87f5ec46ac 100644 > --- a/tests/qemuxml2xmloutdata/disk-vhostuser.x86_64-latest.xml > +++ b/tests/qemuxml2xmloutdata/disk-vhostuser.x86_64-latest.xml > @@ -28,7 +28,7 @@ > function='0x0'/> > > > - > + > > > > -- > 2.29.2 > > -- Reviewed-by: Han Han Tested-by: Han Han

Re: [PATCH] qemu: Replace deprecated short-form boolean options

2021-02-03 Thread Han Han
On Tue, Jan 26, 2021 at 6:07 PM Paolo Bonzini wrote: > On 26/01/21 04:55, Han Han wrote: > > Since the commit ccd3b3b811 of QEMU, the short-form boolean options in > > qemu cmdline like "server", "nowait", "disable-ticketing" are > > deprec

Re: [PATCH] qemu: Replace deprecated short-form boolean options

2021-01-29 Thread Han Han
On Tue, Jan 26, 2021 at 6:04 PM Peter Krempa wrote: > On Tue, Jan 26, 2021 at 11:55:25 +0800, Han Han wrote: > > Since the commit ccd3b3b811 of QEMU, the short-form boolean options in > > qemu cmdline like "server", "nowait", "disable-ticketing&quo

Re: [PATCH] qemu: Replace deprecated short-form boolean options

2021-01-26 Thread Han Han
On Tue, Jan 26, 2021 at 6:07 PM Paolo Bonzini wrote: > On 26/01/21 04:55, Han Han wrote: > > Since the commit ccd3b3b811 of QEMU, the short-form boolean options in > > qemu cmdline like "server", "nowait", "disable-ticketing" are > > dep

[PATCH] virsh: Mention no effect for the --atomic flag in QEMU

2021-01-26 Thread Han Han
According to commit aa65f0f2f1, all logic connected to the VIR_DOMAIN_SNAPSHOT_CREATE_ATOMIC has been removed. Mention that in virsh manpages. Signed-off-by: Han Han --- docs/manpages/virsh.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/manpages/virsh.rst b/docs

[PATCH v2] spec: Add the man pages of split daemons

2021-01-15 Thread Han Han
/man8/virtnwfilterd.8.gz /usr/share/man/man8/virtproxyd.8.gz /usr/share/man/man8/virtqemud.8.gz /usr/share/man/man8/virtsecretd.8.gz /usr/share/man/man8/virtstoraged.8.gz /usr/share/man/man8/virtvboxd.8.gz /usr/share/man/man8/virtxend.8.gz Signed-off-by: Han Han --- Diff from v1

[PATCH] spec: Add the man pages of split daemons

2021-01-15 Thread Han Han
/man8/virtnwfilterd.8.gz /usr/share/man/man8/virtproxyd.8.gz /usr/share/man/man8/virtqemud.8.gz /usr/share/man/man8/virtsecretd.8.gz /usr/share/man/man8/virtstoraged.8.gz /usr/share/man/man8/virtvboxd.8.gz /usr/share/man/man8/virtxend.8.gz Signed-off-by: Han Han

Re: [PATCH 1/6] authz: support parsing authz devices

2021-01-14 Thread Han Han
Since authz* objects are supported since qemu 4.0(around fb5c4ebc08) so the in first patch the qemu capability flag of authz objects to check if the target qemu support this feature. And add tests for that capability. On Thu, Jan 14, 2021 at 4:39 PM Zihao Chang wrote: > support parsing authz dev

Re: [PATCH v3 3/3] qemu: suppor dirty ring feature

2021-01-13 Thread Han Han
On Wed, Jan 13, 2021 at 1:09 AM wrote: > From: Hyman > > QEMU introduced a dirty ring feature, this patch add a new > KVM feature 'dirty-ring' to set this feature for kvm guests. > > To enable the feature, libvirt add "-accel dirty-gfn-count=xxx" > to QEMU command line, the following XML needs t

Re: [PATCH 2/2] qemuDomainSetBlockIoTune: Skip monitor call for empty cdrom

2021-01-07 Thread Han Han
/117 > Signed-off-by: Peter Krempa > --- > CC: Han Han > > Please test this commit since you have the environment prepared. > > src/qemu/qemu_driver.c | 25 - > 1 file changed, 16 insertions(+), 9 deletions(-) > > diff --git a/src/qemu/qemu_dr

Re: [libvirt][PATCH v3 3/3] qemu: add parser and formatter for 'restrictive' mode in numatune

2021-01-07 Thread Han Han
On Wed, Jan 6, 2021 at 3:17 PM Luyao Zhong wrote: > Reviewed-by: Daniel Henrique Barboza > Signed-off-by: Luyao Zhong > --- > include/libvirt/libvirt-domain.h | 1 + > src/conf/numa_conf.c | 9 + > src/qemu/qemu_command.c | 6 +

<    1   2   3   4   5   6   >