qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] net: cleanup before character devices


From: Jason Wang
Subject: Re: [Qemu-devel] [PATCH] net: cleanup before character devices
Date: Mon, 11 Jul 2016 19:23:29 +0800
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.8.0



On 2016年07月11日 17:18, Paolo Bonzini wrote:

On 11/07/2016 11:06, Jason Wang wrote:

On 2016年07月08日 23:27, Paolo Bonzini wrote:
Otherwise, vhost-user causes a use-after-free.

Signed-off-by: Paolo Bonzini <address@hidden>
---
   vl.c | 6 +++---
   1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/vl.c b/vl.c
index d0b9ff9..005162d 100644
--- a/vl.c
+++ b/vl.c
@@ -4327,9 +4327,6 @@ int main(int argc, char **argv, char **envp)
           qemu_opts_del(icount_opts);
       }
   -    /* clean up network at qemu process termination */
-    atexit(&net_cleanup);
-
       if (default_net) {
           QemuOptsList *net = qemu_find_opts("net");
           qemu_opts_set(net, NULL, "type", "nic", &error_abort);
@@ -4596,6 +4593,9 @@ int main(int argc, char **argv, char **envp)
   #ifdef CONFIG_TPM
       tpm_cleanup();
   #endif
+
+    /* vhost-user must be cleaned up before chardevs.  */
+    net_cleanup();
       qemu_chr_cleanup();
         return 0;
Patch does not seems to be applied on master. Which tree is this patch
based?
It's applied on top of Marc-André's character device cleanup series.

Paolo


Ok, but looks like the issue we tried to solve with commit f30dbae63a46f23116715dff8d130c7d01ff02be will appear again?




reply via email to

[Prev in Thread] Current Thread [Next in Thread]