Unsubscribe

2023-03-14 Thread Kshitiz Mhto
On Tue, 14 Mar 2023, 11:22 pm Andrea Bolognani, wrote: > On Tue, Mar 14, 2023 at 05:52:15PM +0100, Michal Privoznik wrote: > > virnuma: Move virNumaNodesetToCPUset() our of WITH_NUMACTL > > Typo ("our" instead of "out"). > > -- > Andrea Bolognani / Red Hat / Virtualization > >

Re: [PATCH] qemu_alias: Fix backcompat console alias generation

2023-03-14 Thread Andrea Bolognani
On Tue, Mar 14, 2023 at 11:20:49AM +0100, Michal Privoznik wrote: > We have this crazy backwards compatibility when it comes to > serial and console devices. This truly is the gift that keeps on giving :/ > Basically, in same cases the very > first is just an alias to the very first > device.

Re: [PATCH v2 00/15] qemuBuildThreadContextProps: Prune .node-afinity wrt

2023-03-14 Thread Andrea Bolognani
On Tue, Mar 14, 2023 at 05:52:14PM +0100, Michal Privoznik wrote: > v2 of: > > https://listman.redhat.com/archives/libvir-list/2023-March/238536.html > > diff to v1: > - Swapped arguments in virNumaCPUSetToNodeset() > - Other small nits > - typos > > Michal Prívozník (15): > virnuma: Move

Re: [PATCH v2 01/15] virnuma: Move virNumaNodesetToCPUset() our of WITH_NUMACTL

2023-03-14 Thread Andrea Bolognani
On Tue, Mar 14, 2023 at 05:52:15PM +0100, Michal Privoznik wrote: > virnuma: Move virNumaNodesetToCPUset() our of WITH_NUMACTL Typo ("our" instead of "out"). -- Andrea Bolognani / Red Hat / Virtualization

Re: Improve default machine type selection

2023-03-14 Thread Andrea Bolognani
On Mon, Mar 13, 2023 at 02:25:01PM -0600, Jim Fehlig wrote: > If an explicit machine type is not specified in the VM config, the qemu > driver will select the first machine type in the list of machine types for > the specified accelerator. See virQEMUCapsGetPreferredMachine > >

[PATCH v2 04/15] qemuxml2argvtest: Use virnuma mock

2023-03-14 Thread Michal Privoznik
While no part of cmd line building process currently depends on a host NUMA configuration, this will change soon. Use freshly changed virnumamock from qemuxml2argvtest and make the mock read NUMA data from vircaps2xmldata which seems to have the most rich NUMA configuration. This also means, we

[PATCH v2 15/15] NEWS: Document recent thread-context bug fix

2023-03-14 Thread Michal Privoznik
Signed-off-by: Michal Privoznik Reviewed-by: Andrea Bolognani --- NEWS.rst | 7 +++ 1 file changed, 7 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index e5b304786b..5b5265996f 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -48,6 +48,13 @@ v9.2.0 (unreleased) Due to a logic bug introduced

[PATCH v2 00/15] qemuBuildThreadContextProps: Prune .node-afinity wrt

2023-03-14 Thread Michal Privoznik
v2 of: https://listman.redhat.com/archives/libvir-list/2023-March/238536.html diff to v1: - Swapped arguments in virNumaCPUSetToNodeset() - Other small nits - typos Michal Prívozník (15): virnuma: Move virNumaNodesetToCPUset() our of WITH_NUMACTL virnuma: Introduce virNumaCPUSetToNodeset()

[PATCH v2 07/15] qemuxml2argvmock: Drop virNuma* mocks

2023-03-14 Thread Michal Privoznik
Since qemuxml2argvtest is now using virnumamock, there's no need for qemuxml2argvmock to offer reimplementation of virNuma*() functions. Also, the comment about CLang and FreeBSD (introduced in v4.3.0-40-g77ac204d14) is no longer true. Looks like noinline attribute was the missing culprit.

[PATCH v2 09/15] qemu: Fix qemuDomainGetEmulatorPinInfo()

2023-03-14 Thread Michal Privoznik
The order of pinning priority (at least for emulator thread) was set by v1.2.15-rc1~58 (for cgroup code). But later, when automatic placement was implemented into qemuDomainGetEmulatorPinInfo(), the priority was not honored. Now that we have this priority code in a separate function, we can just

[PATCH v2 13/15] qemuBuildThreadContextProps: Prune .node-affinity wrt

2023-03-14 Thread Michal Privoznik
When a thread-context object is specified on the cmd line, then QEMU spawns a thread and sets its affinity to the list of NUMA nodes specified in .node-affinity attribute. And this works just fine, until the main QEMU thread itself is not restricted. Because of v5.3.0-rc1~18 we restrict the main

[PATCH v2 11/15] qemu: Add @nodemaskRet argument to qemuBuildMemoryBackendProps()

2023-03-14 Thread Michal Privoznik
While it's true that anybody who's interested in getting .host-nodes attribute value can just use virJSONValueObjectGetArray() (and that's exactly what qemuBuildThreadContextProps() is doing, btw), if somebody is interested in getting the actual virBitmap, they would have to parse the JSON array.

[PATCH v2 12/15] qemu: Add @nodemask argument to qemuBuildThreadContextProps()

2023-03-14 Thread Michal Privoznik
When building a thread-context object (inside of qemuBuildThreadContextProps()) we look at given memory-backend-* object and look for .host-nodes attribute. This works, as long as we need to just copy the attribute value into another thread-context attribute. But soon we will need to adjust it.

[PATCH v2 05/15] qemuxml2argvdata: Adjust maximum NUMA node used

2023-03-14 Thread Michal Privoznik
We have couple of qemuxml2argvtest cases where up to 8 NUMA nodes are assumed. These are used to check whether disjoint ranges of host-nodes= is generated properly. Without prejudice to the generality, we can rewrite corresponding XML files to use up to 4 NUMA nodes and still have disjoint ranges.

[PATCH v2 14/15] docs: Document memory allocation and emulator pinning limitation

2023-03-14 Thread Michal Privoznik
Signed-off-by: Michal Privoznik Reviewed-by: Andrea Bolognani --- docs/formatdomain.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/formatdomain.rst b/docs/formatdomain.rst index 4f4874eba2..27f83e254d 100644 --- a/docs/formatdomain.rst +++

[PATCH v2 10/15] qemuBuildMemoryBackendProps: Join two conditions

2023-03-14 Thread Michal Privoznik
There are two compound conditions in qemuBuildMemoryBackendProps() and each one checks for nodemask for NULL first. Join them into one bigger block. Signed-off-by: Michal Privoznik Reviewed-by: Kristina Hanicova --- src/qemu/qemu_command.c | 26 ++ 1 file changed, 14

[PATCH v2 06/15] qemuxml2argvdata: Extend vCPUs placement in memory-hotplug-dimm-addr.xml

2023-03-14 Thread Michal Privoznik
So far, the memory-hotplug-dimm-addr.xml test case pins its vCPUs onto CPUs 0-1 which correspond to NUMA node #0 (per tests/vircaps2xmldata/linux-basic/system/node/node0). Place vCPUs onto nodes #1 and #2 too so that DIMM device can continue using thread-context after future patches. This

[PATCH v2 08/15] qemu: Move cpuset preference evaluation into a separate function

2023-03-14 Thread Michal Privoznik
The set of if()-s that determines the preference in cpumask used for setting things like emulatorpin, vcpupin, etc. is going to be re-used. Separate it out into a function. You may think that this changes behaviour, but qemuProcessPrepareDomainNUMAPlacement() ensures that priv->autoCpuset is set

[PATCH v2 01/15] virnuma: Move virNumaNodesetToCPUset() our of WITH_NUMACTL

2023-03-14 Thread Michal Privoznik
Technically, there's nothing libnuma specific about virNumaNodesetToCPUset(). It just implements a generic algorithm over virNumaGetNodeCPUs() (which is then libnuma dependant). Nevertheless, there's no need to have this function living inside WITH_NUMACTL block. Any error returned from

[PATCH v2 03/15] virnumamock: Introduce virNumaGetNodeOfCPU() mock

2023-03-14 Thread Michal Privoznik
Introduce a mock of virNumaGetNodeOfCPU() because soon we will need virNumaCPUSetToNodeset() to return predictable results. Also, fill in missing symlinks in vircaps2xmldata/. Signed-off-by: Michal Privoznik Reviewed-by: Kristina Hanicova Reviewed-by: Andrea Bolognani --- src/util/virnuma.h

[PATCH v2 02/15] virnuma: Introduce virNumaCPUSetToNodeset()

2023-03-14 Thread Michal Privoznik
So far, we have a function that expands given list of NUMA nodes into list of CPUs. But soon, we are going to need the inverse - expand list of CPUs into list of NUMA nodes. Introduce virNumaCPUSetToNodeset() for that. Signed-off-by: Michal Privoznik Reviewed-by: Kristina Hanicova ---

[PULL 2/3] ps2: Don't send key release event for Lang1, Lang2 keys

2023-03-14 Thread Daniel P . Berrangé
From: Ross Lagerwall The scancodes for the Lang1 and Lang2 keys (i.e. Hangeul, Hanja) are special since they already have the 0x80 bit set which is commonly used to indicate a key release in AT set 1. Reportedly, real hardware does not send a key release scancode. So, skip sending a release for

[PULL 1/3] Add qemu qcode support for keys F13 to F24

2023-03-14 Thread Daniel P . Berrangé
From: Willem van de Velde To be able to use the function keys F13 to F24 these should be defined in de keycodemapdb and added to the qapi. The keycodemapdb is updated in its own repository, this patch enables the use of those keys within qemu. Signed-off-by: Willem van de Velde

[PULL 3/3] io/channel-tls: plug memory leakage on GSource

2023-03-14 Thread Daniel P . Berrangé
From: Matheus Tavares Bernardino This leakage can be seen through test-io-channel-tls: $ ../configure --target-list=aarch64-softmmu --enable-sanitizers $ make ./tests/unit/test-io-channel-tls $ ./tests/unit/test-io-channel-tls Indirect leak of 104 byte(s) in 1 object(s) allocated from: #0

[PULL 0/3] Misc next patches

2023-03-14 Thread Daniel P . Berrangé
The following changes since commit 5cfda4ce79dd455f1726874a555260a70f84b2ec: Merge tag 'pull-request-2023-03-13' of https://gitlab.com/thuth/qemu into staging (2023-03-13 17:09:33 +) are available in the Git repository at: https://gitlab.com/berrange/qemu tags/misc-next-pull-request

Re: [libvirt PATCH 0/2] passt-related patches

2023-03-14 Thread Laine Stump
On 3/14/23 9:36 AM, Andrea Bolognani wrote: Andrea Bolognani (2): rpm: Recommend passt-selinux news: Update for passt on SELinux/AppArmor support NEWS.rst| 6 ++ libvirt.spec.in | 1 + 2 files changed, 7 insertions(+) Reviewed-by: Laine Stump

[libvirt PATCH 2/2] news: Update for passt on SELinux/AppArmor support

2023-03-14 Thread Andrea Bolognani
Signed-off-by: Andrea Bolognani --- NEWS.rst | 6 ++ 1 file changed, 6 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 490886beb4..e5b304786b 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -35,6 +35,12 @@ v9.2.0 (unreleased) when the domain is defined, and its results are stored in the

[libvirt PATCH 1/2] rpm: Recommend passt-selinux

2023-03-14 Thread Andrea Bolognani
Now that we have SELinux support for passt, we want things to work out of the box and that requires having the passt-specific SELinux bits installed. Signed-off-by: Andrea Bolognani --- libvirt.spec.in | 1 + 1 file changed, 1 insertion(+) diff --git a/libvirt.spec.in b/libvirt.spec.in index

[libvirt PATCH 0/2] passt-related patches

2023-03-14 Thread Andrea Bolognani
Andrea Bolognani (2): rpm: Recommend passt-selinux news: Update for passt on SELinux/AppArmor support NEWS.rst| 6 ++ libvirt.spec.in | 1 + 2 files changed, 7 insertions(+) -- 2.39.2

Re: [PATCH v2 1/6] docs: java: Clean up links to source code

2023-03-14 Thread Andrea Bolognani
On Tue, Mar 14, 2023 at 01:37:32PM +0100, Peter Krempa wrote: > There is of course some functions where the mapping is less direct and using > extra classes to map complex arguments. The > -`Javadoc `__ is available online > or as > +`Javadoc

Re: [PATCH v2 6/6] docs: downloads: Point to pkg.go.dev for go module releases

2023-03-14 Thread Andrea Bolognani
On Tue, Mar 14, 2023 at 01:37:37PM +0100, Peter Krempa wrote: > Currently the 'Releases' column pointed to the generic page about the > specific go module. Change the link to point to the respective > pkg.go.dev page for the module. > > Signed-off-by: Peter Krempa > --- > docs/downloads.rst | 4

Re: [PATCH v2 5/6] docs: downloads: Don't mention releases directory of libvirt-csharp

2023-03-14 Thread Andrea Bolognani
On Tue, Mar 14, 2023 at 01:37:36PM +0100, Peter Krempa wrote: > The releases directory is empty. Don't advertise it on our downloads > page. > > Signed-off-by: Peter Krempa > --- > docs/downloads.rst | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Reviewed-by: Andrea Bolognani --

Re: [PATCH 4/6] docs: downloads: Change sources link for libvirt-ocaml

2023-03-14 Thread Peter Krempa
On Tue, Mar 14, 2023 at 08:43:48 -0400, Andrea Bolognani wrote: > On Tue, Mar 14, 2023 at 12:11:07PM +0100, Peter Krempa wrote: > > On Tue, Mar 14, 2023 at 06:36:38 -0400, Andrea Bolognani wrote: > > > Well version 0.6.1.5, which is the latest one available on > > > libvirt.org, is PGP signed by

Re: [PATCH 4/6] docs: downloads: Change sources link for libvirt-ocaml

2023-03-14 Thread Andrea Bolognani
On Tue, Mar 14, 2023 at 12:11:07PM +0100, Peter Krempa wrote: > On Tue, Mar 14, 2023 at 06:36:38 -0400, Andrea Bolognani wrote: > > Well version 0.6.1.5, which is the latest one available on > > libvirt.org, is PGP signed by Rich himself, so at some point in the > > past we clearly got this to

[PATCH v2 3/6] spec: Use 'download.libvirt.org' as source server

2023-03-14 Thread Peter Krempa
Signed-off-by: Peter Krempa Reviewed-by: Andrea Bolognani --- libvirt.spec.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvirt.spec.in b/libvirt.spec.in index e62534c31d..cdca418401 100644 --- a/libvirt.spec.in +++ b/libvirt.spec.in @@ -236,7 +236,7 @@ URL:

[PATCH v2 6/6] docs: downloads: Point to pkg.go.dev for go module releases

2023-03-14 Thread Peter Krempa
Currently the 'Releases' column pointed to the generic page about the specific go module. Change the link to point to the respective pkg.go.dev page for the module. Signed-off-by: Peter Krempa --- docs/downloads.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

[PATCH v2 5/6] docs: downloads: Don't mention releases directory of libvirt-csharp

2023-03-14 Thread Peter Krempa
The releases directory is empty. Don't advertise it on our downloads page. Signed-off-by: Peter Krempa --- docs/downloads.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/downloads.rst b/docs/downloads.rst index ecf133f00d..ab63d55c15 100644 --- a/docs/downloads.rst

[PATCH v2 4/6] docs: downloads: Drop link to sources of 'consoleproxy'

2023-03-14 Thread Peter Krempa
The directory doesn't exist. The project also doesn't have any releases on gitlab so there's nothing to replace it with. Signed-off-by: Peter Krempa Reviewed-by: Andrea Bolognani --- docs/downloads.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/downloads.rst

[PATCH v2 1/6] docs: java: Clean up links to source code

2023-03-14 Thread Peter Krempa
- drop the link to the FTP server which doesn't exist any more - change links to libvirt.org/source to download.libvirt.org - change link to the maven repository to point to download.libvirt.org - change link to javadoc to the documentation generated via gitlab job in the libvirt-java

[PATCH v2 2/6] docs: downloads: Replace 'libvirt.org/sources' by 'download.libvirt.org'

2023-03-14 Thread Peter Krempa
We split off the downloads into a new subdomain. Link directly to it instead of relying on redirects. Signed-off-by: Peter Krempa Reviewed-by: Andrea Bolognani --- docs/downloads.rst | 34 +- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git

[PATCH v2 0/6] Use 'download.libvirt.org' on our webpage

2023-03-14 Thread Peter Krempa
Note this patchset now depends on: https://gitlab.com/libvirt/libvirt-java/-/merge_requests/36 The above MR exposes freshly generated javadoc via gitlab pages. v2: - point to freshly generated javadoc - drop ocaml patch - add patch removing libvirt-csharp releases - use pkg.go.dev instead

Re: [PATCH 09/16] rpcgen: add test case for XDR serialization

2023-03-14 Thread Daniel P . Berrangé
On Thu, Mar 09, 2023 at 04:12:04PM +0100, Michal Prívozník wrote: > On 3/8/23 17:39, Daniel P. Berrangé wrote: > > Test the serialization done by libtirpc, so that when we later > > switch to our own code, we can prove wire compatibility. > > > > Signed-off-by: Daniel P. Berrangé > > --- > >

Re: [PATCH 4/6] docs: downloads: Change sources link for libvirt-ocaml

2023-03-14 Thread Peter Krempa
On Tue, Mar 14, 2023 at 06:36:38 -0400, Andrea Bolognani wrote: > On Tue, Mar 14, 2023 at 11:29:06AM +0100, Peter Krempa wrote: > > On Tue, Mar 14, 2023 at 10:14:33 +, Daniel P. Berrangé wrote: [...] > > > > The Fedora package still points to the libvirt.org server too[1], so > > > > to me

Re: [PATCH 5/6] docs: downloads: Drop link to sources of 'consoleproxy'

2023-03-14 Thread Peter Krempa
On Tue, Mar 14, 2023 at 06:15:39 -0400, Andrea Bolognani wrote: > On Tue, Mar 14, 2023 at 10:36:57AM +0100, Peter Krempa wrote: > > The directory doesn't exist. The project also doesn't have any releases > > on gitlab so there's nothing to replace it with. > > > > Signed-off-by: Peter Krempa > >

Re: [PATCH 6/6] docs: downloads: Point to gitlab for go module sources

2023-03-14 Thread Andrea Bolognani
On Tue, Mar 14, 2023 at 10:23:15AM +, Daniel P. Berrangé wrote: > On Tue, Mar 14, 2023 at 06:20:48AM -0400, Andrea Bolognani wrote: > > On Tue, Mar 14, 2023 at 10:36:58AM +0100, Peter Krempa wrote: > > >* - Go > > > -- `libvirt `__ > > > +- `gitlab

Re: [PATCH 4/6] docs: downloads: Change sources link for libvirt-ocaml

2023-03-14 Thread Andrea Bolognani
On Tue, Mar 14, 2023 at 11:29:06AM +0100, Peter Krempa wrote: > On Tue, Mar 14, 2023 at 10:14:33 +, Daniel P. Berrangé wrote: > > On Tue, Mar 14, 2023 at 06:12:33AM -0400, Andrea Bolognani wrote: > > > On Tue, Mar 14, 2023 at 10:36:56AM +0100, Peter Krempa wrote: > > > > The sources for new

Re: [PATCH 4/6] docs: downloads: Change sources link for libvirt-ocaml

2023-03-14 Thread Andrea Bolognani
On Tue, Mar 14, 2023 at 10:14:33AM +, Daniel P. Berrangé wrote: > On Tue, Mar 14, 2023 at 06:12:33AM -0400, Andrea Bolognani wrote: > > On Tue, Mar 14, 2023 at 10:36:56AM +0100, Peter Krempa wrote: > > > The sources for new libvirt-ocaml releases are hosted via gitlab. Add > > > the link.

Re: [PATCH 4/6] docs: downloads: Change sources link for libvirt-ocaml

2023-03-14 Thread Peter Krempa
On Tue, Mar 14, 2023 at 10:14:33 +, Daniel P. Berrangé wrote: > On Tue, Mar 14, 2023 at 06:12:33AM -0400, Andrea Bolognani wrote: > > On Tue, Mar 14, 2023 at 10:36:56AM +0100, Peter Krempa wrote: > > > The sources for new libvirt-ocaml releases are hosted via gitlab. Add > > > the link. Since

Re: [PATCH 6/6] docs: downloads: Point to gitlab for go module sources

2023-03-14 Thread Daniel P . Berrangé
On Tue, Mar 14, 2023 at 06:20:48AM -0400, Andrea Bolognani wrote: > On Tue, Mar 14, 2023 at 10:36:58AM +0100, Peter Krempa wrote: > >* - Go > > -- `libvirt `__ > > +- `gitlab `__ > > - `gitlab

Re: [PATCH 6/6] docs: downloads: Point to gitlab for go module sources

2023-03-14 Thread Andrea Bolognani
On Tue, Mar 14, 2023 at 10:36:58AM +0100, Peter Krempa wrote: >* - Go > -- `libvirt `__ > +- `gitlab `__ > - `gitlab `__ > - `issues

[PATCH] qemu_alias: Fix backcompat console alias generation

2023-03-14 Thread Michal Privoznik
We have this crazy backwards compatibility when it comes to serial and console devices. Basically, in same cases the very first is just an alias to the very first device. This is to be seen at various places: 1) virDomainDefFormatInternalSetRootName() - when generating domain XML, the

Re: [PATCH 5/6] docs: downloads: Drop link to sources of 'consoleproxy'

2023-03-14 Thread Andrea Bolognani
On Tue, Mar 14, 2023 at 10:36:57AM +0100, Peter Krempa wrote: > The directory doesn't exist. The project also doesn't have any releases > on gitlab so there's nothing to replace it with. > > Signed-off-by: Peter Krempa > --- > docs/downloads.rst | 2 +- > 1 file changed, 1 insertion(+), 1

Re: [PATCH 4/6] docs: downloads: Change sources link for libvirt-ocaml

2023-03-14 Thread Daniel P . Berrangé
On Tue, Mar 14, 2023 at 06:12:33AM -0400, Andrea Bolognani wrote: > On Tue, Mar 14, 2023 at 10:36:56AM +0100, Peter Krempa wrote: > > The sources for new libvirt-ocaml releases are hosted via gitlab. Add > > the link. Since old releases are not present there preserve also the old > > link. > ... >

Re: [PATCH 4/6] docs: downloads: Change sources link for libvirt-ocaml

2023-03-14 Thread Andrea Bolognani
On Tue, Mar 14, 2023 at 10:36:56AM +0100, Peter Krempa wrote: > The sources for new libvirt-ocaml releases are hosted via gitlab. Add > the link. Since old releases are not present there preserve also the old > link. ... >* - OCaml > -- `libvirt `__ > +

Re: [PATCH 3/6] spec: Use 'download.libvirt.org' as source server

2023-03-14 Thread Andrea Bolognani
On Tue, Mar 14, 2023 at 10:36:55AM +0100, Peter Krempa wrote: > Signed-off-by: Peter Krempa > --- > libvirt.spec.in | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Reviewed-by: Andrea Bolognani -- Andrea Bolognani / Red Hat / Virtualization

Re: [PATCH 2/6] docs: downloads: Replace 'libvirt.org/sources' by 'download.libvirt.org'

2023-03-14 Thread Andrea Bolognani
On Tue, Mar 14, 2023 at 10:36:54AM +0100, Peter Krempa wrote: > We split off the downloads into a new subdomain. Link directly to it > instead of relying on redirects. > > Signed-off-by: Peter Krempa > --- > docs/downloads.rst | 34 +- > 1 file changed, 17

Re: [PATCH 1/6] docs: java: Clean up links to source code

2023-03-14 Thread Andrea Bolognani
On Tue, Mar 14, 2023 at 10:36:53AM +0100, Peter Krempa wrote: > There is of course some functions where the mapping is less direct and using > extra classes to map complex arguments. The > -`Javadoc `__ is available online > or as > +`Javadoc

[PATCH 6/6] docs: downloads: Point to gitlab for go module sources

2023-03-14 Thread Peter Krempa
Currently the 'Releases' column pointed to the generic page about the specific go module. Change the link to point to the gitlab tags page. Signed-off-by: Peter Krempa --- docs/downloads.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/downloads.rst

[PATCH 5/6] docs: downloads: Drop link to sources of 'consoleproxy'

2023-03-14 Thread Peter Krempa
The directory doesn't exist. The project also doesn't have any releases on gitlab so there's nothing to replace it with. Signed-off-by: Peter Krempa --- docs/downloads.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/downloads.rst b/docs/downloads.rst index

[PATCH 1/6] docs: java: Clean up links to source code

2023-03-14 Thread Peter Krempa
- drop the link to the FTP server which doesn't exist any more - change links to libvirt.org/source to download.libvirt.org - change link to the maven repository to point to download.libvirt.org Signed-off-by: Peter Krempa --- docs/java.rst | 9 - 1 file changed, 4 insertions(+), 5

[PATCH 4/6] docs: downloads: Change sources link for libvirt-ocaml

2023-03-14 Thread Peter Krempa
The sources for new libvirt-ocaml releases are hosted via gitlab. Add the link. Since old releases are not present there preserve also the old link. Signed-off-by: Peter Krempa --- docs/downloads.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/downloads.rst

[PATCH 2/6] docs: downloads: Replace 'libvirt.org/sources' by 'download.libvirt.org'

2023-03-14 Thread Peter Krempa
We split off the downloads into a new subdomain. Link directly to it instead of relying on redirects. Signed-off-by: Peter Krempa --- docs/downloads.rst | 34 +- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/docs/downloads.rst

[PATCH 3/6] spec: Use 'download.libvirt.org' as source server

2023-03-14 Thread Peter Krempa
Signed-off-by: Peter Krempa --- libvirt.spec.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvirt.spec.in b/libvirt.spec.in index e62534c31d..cdca418401 100644 --- a/libvirt.spec.in +++ b/libvirt.spec.in @@ -236,7 +236,7 @@ URL: https://libvirt.org/ %if %(echo

[PATCH 0/6] Use 'download.libvirt.org' on our webpage

2023-03-14 Thread Peter Krempa
Peter Krempa (6): docs: java: Clean up links to source code docs: downloads: Replace 'libvirt.org/sources' by 'download.libvirt.org' spec: Use 'download.libvirt.org' as source server docs: downloads: Change sources link for libvirt-ocaml docs: downloads: Drop link to sources of

Re: [PATCH] NEWS: Mention support for custom UEFI firmwar paths in Xen

2023-03-14 Thread Michal Prívozník
On 3/13/23 21:39, Jim Fehlig wrote: > Signed-off-by: Jim Fehlig > --- > NEWS.rst | 5 + > 1 file changed, 5 insertions(+) > Reviewed-by: Michal Privoznik Michal