Re: [PATCH] docs: fix list term highlighting in URI docs

2025-06-09 Thread Pavel Hrdina via Devel
On Mon, Jun 09, 2025 at 04:18:06PM +0100, Daniel P. Berrangé via Devel wrote: > From: Daniel P. Berrangé > > Having a blank line between the term and its definition prevents the RST > to HTML convertor highlighting 'pkipath' correctly. > > Signed-off-by: Daniel P. Berrangé > --- > docs/uri.rst

Ever imagined about owning a piece

2025-06-09 Thread jrjwthzk--- via Devel
Ever imagined about owning a piece of land that is adjacent to your existing property? What if you've been using it openly and without interruption for years, even though the title isn't officially in your name? This https://www.canadaescortshub.com

[PATCH] docs: fix list term highlighting in URI docs

2025-06-09 Thread Daniel P . Berrangé via Devel
From: Daniel P. Berrangé Having a blank line between the term and its definition prevents the RST to HTML convertor highlighting 'pkipath' correctly. Signed-off-by: Daniel P. Berrangé --- docs/uri.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/uri.rst b/docs/uri.rst index 1d2c68f5

Re: [PATCH] nvme: Fix more missing enum switches for VIR_DOMAIN_DISK_BUS_NVME

2025-06-09 Thread Ján Tomko via Devel
On a Monday in 2025, Martin Kletzander via Devel wrote: From: Martin Kletzander Signed-off-by: Martin Kletzander --- So it turned out there were more places, but some even in code that was compiling on my machine and in the CI, but was not found. Not sure why, but I went through all the place

[PATCH 2/2] NEWS: Mention cainfo_path parameter in esx driver

2025-06-09 Thread Martin Kletzander via Devel
From: Martin Kletzander Signed-off-by: Martin Kletzander --- NEWS.rst | 5 + 1 file changed, 5 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 2559aaf7e031..a831c76be5b0 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -39,6 +39,11 @@ v11.5.0 (unreleased) that it is the controller which u

[PATCH 1/2] esx: Allow specifying different CA bundle for remote connections

2025-06-09 Thread Martin Kletzander via Devel
From: Martin Kletzander Add new URI parameter which allows for using non-system CA certificates to verify remote peers. Signed-off-by: Martin Kletzander --- docs/drvesx.rst| 16 ++-- src/esx/esx_util.c | 4 src/esx/esx_util.h | 1 + src/esx/esx_vi.c | 3 +++ 4 files c

[PATCH 0/2] esx: Allow specifying different CA bundle for remote connections

2025-06-09 Thread Martin Kletzander via Devel
**El Blurbo aquí** Martin Kletzander (2): esx: Allow specifying different CA bundle for remote connections NEWS: Mention cainfo_path parameter in esx driver NEWS.rst | 5 + docs/drvesx.rst| 16 ++-- src/esx/esx_util.c | 4 src/esx/esx_util.h | 1 + src/e

[PATCH] nvme: Fix more missing enum switches for VIR_DOMAIN_DISK_BUS_NVME

2025-06-09 Thread Martin Kletzander via Devel
From: Martin Kletzander Signed-off-by: Martin Kletzander --- So it turned out there were more places, but some even in code that was compiling on my machine and in the CI, but was not found. Not sure why, but I went through all the places again from scratch, hopefully this time that's all. Pus

Re: [PATCH 0/3] Drop unnecessary build dependencies

2025-06-09 Thread Michal Prívozník via Devel
On 6/5/25 18:40, Andrea Bolognani via Devel wrote: > We've recently stopped checking for the presence of several > commands at build time. That means we don't need them in the > RPM or CI build environment either. > > Test pipeline: https://gitlab.com/abologna/libvirt/-/pipelines/1855622714 > > A

[PATCH] bhyve: Fix build after introduction of emulated NVMe disks

2025-06-09 Thread Martin Kletzander via Devel
From: Martin Kletzander Somehow I missed one switch over disk bus enum. Signed-off-by: Martin Kletzander --- Pushed under the 'build-breaker' rule. src/bhyve/bhyve_command.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bhyve/bhyve_command.c b/src/bhyve/bhyve_command.c index 916d699

Re: [PATCH] docs: outline bug expectations wrt automated tools / AI agents

2025-06-09 Thread Daniel P . Berrangé via Devel
On Mon, Jun 09, 2025 at 03:06:00PM +0200, Michal Prívozník wrote: > On 6/6/25 10:52, Daniel P. Berrangé via Devel wrote: > > From: Daniel P. Berrangé > > > > Bug reports from automated tools and AI agents are time consuming > > > Maybe orthogonal topic, but should we also discourage (if not ban

Re: Can you have a brief look? [Was: Support for emulated NVMe disks in VMX and QEMU]

2025-06-09 Thread Martin Kletzander via Devel
[Adding the list to Cc] On Fri, Jun 06, 2025 at 12:19:16PM +0800, Honglei Wang wrote: Hi Martin, Thanks for following up — yes, I saw your previous email and just had a chance to review the patches. The series looks good to me overall, and I’m fine with the Signed-off-by trailers you added — t

Re: [PATCH] docs: outline bug expectations wrt automated tools / AI agents

2025-06-09 Thread Michal Prívozník via Devel
On 6/6/25 10:52, Daniel P. Berrangé via Devel wrote: > From: Daniel P. Berrangé > > Bug reports from automated tools and AI agents are time consuming Maybe orthogonal topic, but should we also discourage (if not ban) people from sending patches generated by AI tools? For instance Gentoo has don

Re: [PATCH v3 2/2] virt-aa-helper: Allow SR-IOV VF PCI for hostdev networks

2025-06-09 Thread Michal Prívozník via Devel
On 6/9/25 13:59, Tim Small via Devel wrote: > From: Tim Small > > Add check for networks which were previously > neglected (as opposed to explicit PCI hostdev devices), so that they can > be granted the necessary permissions for PCI device access. The network > type lookup in-turn requires the h

Re: [PATCH v3 1/2] virt-aa-helper: refactor for readability

2025-06-09 Thread Michal Prívozník via Devel
On 6/9/25 13:59, Tim Small via Devel wrote: > From: Tim Small > > Signed-off-by: Tim Small > --- > > Changes since earlier patch versions: > > Since V2: > . Fix missing from line in patch body > . Add this narrative > > Since V1: > . Formatting - ref Peter Krempa's feedback > > src/security

[PATCH v3 1/2] virt-aa-helper: refactor for readability

2025-06-09 Thread Tim Small via Devel
From: Tim Small Signed-off-by: Tim Small --- Changes since earlier patch versions: Since V2: . Fix missing from line in patch body . Add this narrative Since V1: . Formatting - ref Peter Krempa's feedback src/security/virt-aa-helper.c | 8 1 file changed, 4 insertions(+), 4 deletio

[PATCH v3 2/2] virt-aa-helper: Allow SR-IOV VF PCI for hostdev networks

2025-06-09 Thread Tim Small via Devel
From: Tim Small Add check for networks which were previously neglected (as opposed to explicit PCI hostdev devices), so that they can be granted the necessary permissions for PCI device access. The network type lookup in-turn requires the helper to read libvirt.conf See https://bugs.debian.org/

[PATCH v3 0/2] Fix forward type=hostdev nets for apparmor

2025-06-09 Thread Tim Small via Devel
Fixes a bug whereby apparmor permissions aren't granted to allow a PCI SR-IOV virtual function to be used in a kvm guest when the VF is defined via a forward type='hostdev' network (as per the 'hostdev' option documented here: https://libvirt.org/formatnetwork.html#connectivity ). Downstream bug h

Re: [PATCH] qemu.conf: Improve docs for 'dynamic_ownership' option

2025-06-09 Thread Michal Prívozník via Devel
On 6/6/25 10:05, Peter Krempa via Devel wrote: > From: Peter Krempa > > Add a note that the user/group can be overriden or relabelling disabled > using per-vm/disk elements instead of disabling it globally. > > Add a note that read-only image labels are not restored. > > Closes: https://gitlab

Re: [PATCH] nodedev: add nodedev name to mdevctl unsupport msg

2025-06-09 Thread Michal Prívozník via Devel
On 6/6/25 11:16, Boris Fiuczynski wrote: > Let's add the nodedev name to improve the error message for the user. > > Signed-off-by: Boris Fiuczynski > --- > src/node_device/node_device_driver.c | 16 ++-- > 1 file changed, 10 insertions(+), 6 deletions(-) > > diff --git a/src/node_d

Create a new thread in Devel

2025-06-09 Thread fb54j7qe--- via Devel
https://www.canadatopescorts.com/ Create a new thread in Devel

Re: [PATCH 1/1] Initial CH migrate API

2025-06-09 Thread Michal Prívozník via Devel
On 5/20/25 13:12, Stefan Kober wrote: > --- > src/ch/ch_conf.h | 4 + > src/ch/ch_domain.h| 2 + > src/ch/ch_driver.c| 362 +- > src/ch/ch_monitor.c | 156 + > src/ch/ch_monitor.h

Re: [PATCH] ci: refresh with 'lcitool manifest'

2025-06-09 Thread Andrea Bolognani via Devel
On Mon, Jun 09, 2025 at 09:38:51AM +0200, Michal Privoznik via Devel wrote: > - Replace Alpine 3.21 with 3.22 > > Signed-off-by: Michal Privoznik > --- > > Green pipeline: > > https://gitlab.com/MichalPrivoznik/libvirt/-/pipelines/1860029940 > > ci/buildenv/{alpine-321.sh => alpine-322.sh}

Re: [PATCH v5 0/3] Fix virtio console port assignment issue

2025-06-09 Thread Peter Krempa via Devel
On Fri, Jun 06, 2025 at 08:57:31 -0400, Cam Miller wrote: > I see patch 3/3 as a reply in this email thread, but don't see 1 or 2. Is > this problem only on my > end, or did you forgot to send some of the patches in this version? I did receive them via email and they are present in archives: Sub

Re: [PATCH v5 0/3] Fix virtio console port assignment issue

2025-06-09 Thread Cam Miller
I see patch 3/3 as a reply in this email thread, but don't see 1 or 2. Is this problem only on my end, or did you forgot to send some of the patches in this version? On 6/5/25 20:09, Aaron M. Brown wrote: > Changelog: > --- > v5: > - Added xml tests to tests/qemuxmlconfdata > - Fixed virito ->

Re: [PATCH v5 2/3] virDomainVirtioSerialAddrAssign: Fix virtio console port auto assignment on vioserial bus

2025-06-09 Thread Peter Krempa via Devel
On Thu, Jun 05, 2025 at 20:09:23 -0400, Aaron M. Brown wrote: > This change fixes an issue with virtio console port assignment on vioserial > buses. > Currently, when trying to autoassign a virtio console device, the device > cannot be > assigned to a port greater than 0 on vioserial buses. > You

Re: [PATCH v5 1/3] qemuxmlconftest: Add console-virtio-vioserial tests

2025-06-09 Thread Peter Krempa via Devel
On Thu, Jun 05, 2025 at 20:09:22 -0400, Aaron M. Brown wrote: Please describe the configuration that this is testing in the commit messsage. > Signed-off-by: Aaron M. Brown > --- > ...onsole-virtio-vioserial.x86_64-latest.args | 44 + > ...console-virtio-vioserial.x86_64-latest.xml

[PATCH] ci: refresh with 'lcitool manifest'

2025-06-09 Thread Michal Privoznik via Devel
From: Michal Privoznik - Replace Alpine 3.21 with 3.22 Signed-off-by: Michal Privoznik --- Green pipeline: https://gitlab.com/MichalPrivoznik/libvirt/-/pipelines/1860029940 ci/buildenv/{alpine-321.sh => alpine-322.sh} | 0 .../{alpine-321.Dockerfile => alpine-322.Dockerfile}