[PATCH for 7.9.0] NEWS: Document my bugfixes for v7.9.0

Michal Privoznik posted 1 patch 2 years, 5 months ago
Test syntax-check failed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/1ef7048ec74b67f7af80063b5f12421b08d816fd.1635512551.git.mprivozn@redhat.com
NEWS.rst | 15 +++++++++++++++
1 file changed, 15 insertions(+)
[PATCH for 7.9.0] NEWS: Document my bugfixes for v7.9.0
Posted by Michal Privoznik 2 years, 5 months ago
There are two bugs I fixed worth mentioning in the 7.9.0 release
notes.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
---
 NEWS.rst | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/NEWS.rst b/NEWS.rst
index 1d2d31430f..1bb6897abd 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -86,6 +86,21 @@ v7.9.0 (unreleased)
     qemu-5.2.0, regardless of qemu version and failed in qemu-5.1.0. This
     release fixes the bug.
 
+ * Don't enter endless loop when unable to accept new clients
+
+   If libvirtd (or any other daemon) hit the ulimit for maximum number of open
+   files but there are still client connections pending then libvirtd (or
+   corresponding split daemon) would enter an endless loop from which it would
+   never recover. This behaviour is now fixed.
+
+ * qemu: Run secondary driver hooks in split daemon mode
+
+   Because of a bug in implementation it may happen that hooks from secondary
+   drivers were not called in all cases, for instance a network hook wasn't
+   called upon removal of interface after domain shut off itself. With this
+   release the bug is fixed.
+
+
 v7.8.0 (2021-10-01)
 ===================
 
-- 
2.32.0

Re: [PATCH for 7.9.0] NEWS: Document my bugfixes for v7.9.0
Posted by Jiri Denemark 2 years, 5 months ago
On Fri, Oct 29, 2021 at 15:02:44 +0200, Michal Privoznik wrote:
> There are two bugs I fixed worth mentioning in the 7.9.0 release
> notes.
> 
> Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
> ---
>  NEWS.rst | 15 +++++++++++++++
>  1 file changed, 15 insertions(+)
> 
> diff --git a/NEWS.rst b/NEWS.rst
> index 1d2d31430f..1bb6897abd 100644
> --- a/NEWS.rst
> +++ b/NEWS.rst
> @@ -86,6 +86,21 @@ v7.9.0 (unreleased)
>      qemu-5.2.0, regardless of qemu version and failed in qemu-5.1.0. This
>      release fixes the bug.
>  
> + * Don't enter endless loop when unable to accept new clients
> +
> +   If libvirtd (or any other daemon) hit the ulimit for maximum number of open
> +   files but there are still client connections pending then libvirtd (or
> +   corresponding split daemon) would enter an endless loop from which it would
> +   never recover. This behaviour is now fixed.
> +
> + * qemu: Run secondary driver hooks in split daemon mode
> +
> +   Because of a bug in implementation it may happen that hooks from secondary
> +   drivers were not called in all cases, for instance a network hook wasn't
> +   called upon removal of interface after domain shut off itself. With this
> +   release the bug is fixed.
> +
> +
>  v7.8.0 (2021-10-01)
>  ===================

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