[PATCH] NEWS: Document my contributions for upcoming release

Michal Privoznik posted 1 patch 1 year, 6 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/4fac3fb8af76f3c3772972a9b297b8df1090f839.1664535189.git.mprivozn@redhat.com
There is a newer version of this series
NEWS.rst | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
[PATCH] NEWS: Document my contributions for upcoming release
Posted by Michal Privoznik 1 year, 6 months ago
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
---
 NEWS.rst | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/NEWS.rst b/NEWS.rst
index 69c5b70c2f..81c95859ff 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -25,6 +25,11 @@ v8.8.0 (unreleased)
 
 * **Improvements**
 
+  * qemu: Implement VIR_DOMAIN_STATS_CPU_TOTAL for qemu:///session
+
+    Users can now query VIR_DOMAIN_STATS_CPU_TOTAL (also known as  cpu.time)
+    statistics for session domains.
+
 * **Bug fixes**
 
   * qemu: Fix non-shared storage migration setup
@@ -33,6 +38,26 @@ v8.8.0 (unreleased)
     ( ``virsh migrate --copy-storage-all``) which was broken by a refactor of
     the code in libvirt-8.7.
 
+  * selinux: Don't ignore NVMe disks when setting image label
+
+    Libvirt did not set any SELinux label on NVMe disks and relied only on the
+    default SELinux policy. This turned out to cause problem when using
+    namespace or altered policy and thus is fixed now.
+
+  * qemu: Fix a deadlock when setting up namespace
+
+    When starting a domain, libvirt creates a mount namespace and manages
+    private /dev with only a handful nodes exposed. But when creating those a
+    deadlock inside glib might have occurred. The code was changed so that
+    libvirt does not tickle the glib bug.
+
+  * qemu: Don't build memory paths on daemon restart
+
+    When the daemon is restarted it tried to create domain private paths for
+    each mounted hugetlbfs. When this failed, the corresponding domain was
+    killed. This operation is now performed during domain startup and memory
+    hotplug and no longer leads to sudden kill of the domain.
+
 
 v8.7.0 (2022-09-01)
 ===================
-- 
2.35.1
Re: [PATCH] NEWS: Document my contributions for upcoming release
Posted by Jiri Denemark 1 year, 6 months ago
On Fri, Sep 30, 2022 at 12:53:09 +0200, Michal Privoznik wrote:
> Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
> ---
>  NEWS.rst | 25 +++++++++++++++++++++++++
>  1 file changed, 25 insertions(+)
> 
> diff --git a/NEWS.rst b/NEWS.rst
> index 69c5b70c2f..81c95859ff 100644
> --- a/NEWS.rst
> +++ b/NEWS.rst
> @@ -25,6 +25,11 @@ v8.8.0 (unreleased)
>  
>  * **Improvements**
>  
> +  * qemu: Implement VIR_DOMAIN_STATS_CPU_TOTAL for qemu:///session
> +
> +    Users can now query VIR_DOMAIN_STATS_CPU_TOTAL (also known as  cpu.time)

s/  / /

> +    statistics for session domains.
> +
>  * **Bug fixes**
>  
>    * qemu: Fix non-shared storage migration setup
...

Reviewed-by: Jiri Denemark <jdenemar@redhat.com>