<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Word 12 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:SimSun;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:SimSun;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        text-align:justify;
        text-justify:inter-ideograph;
        font-size:10.5pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
p.MsoPlainText, li.MsoPlainText, div.MsoPlainText
        {mso-style-priority:99;
        mso-style-link:"\7EAF\6587\672C Char";
        margin:0cm;
        margin-bottom:.0001pt;
        font-size:10.5pt;
        font-family:"Calibri","sans-serif";}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
span.Char
        {mso-style-name:"\7EAF\6587\672C Char";
        mso-style-priority:99;
        mso-style-link:\7EAF\6587\672C;
        font-family:"Calibri","sans-serif";}
.MsoChpDefault
        {mso-style-type:export-only;}
/* Page Definitions */
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:72.0pt 90.0pt 72.0pt 90.0pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="ZH-CN" link="blue" vlink="purple" style="text-justify-trim:punctuation">
<div class="WordSection1">
<p class="MsoNormal"><span lang="EN-US">When I shutdown a vm, I found sockets which act as UNIX domain socket server were not deleted. When I add the following code, it work out.<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US"><o:p> </o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">Signed-off-by: WangYufei <<a href="mailto:james.wangyufei@huawei.com">james.wangyufei@huawei.com</a>><o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">---<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">src/qemu/qemu_process.c |    7 +++++++<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">1 files changed, 7 insertions(+), 0 deletions(-)<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US"><o:p> </o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">diff --git a/src/qemu/qemu_process.c b/src/qemu/qemu_process.c<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">index 3d5e8f6..e794f37 100644<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">--- a/src/qemu/qemu_process.c<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">+++ b/src/qemu/qemu_process.c<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">@@ -4086,6 +4086,13 @@ void qemuProcessStop(virQEMUDriverPtr driver,<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">         priv->monConfig = NULL;<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">     }<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US"><o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">+    /* remove socket which acts as UNIX domain socket server */<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">+    for (i = 0; i < vm->def->nchannels; i++) {<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">+        if ((vm->def->channels[i]->source.type == VIR_DOMAIN_CHR_TYPE_UNIX) &&<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">+            vm->def->channels[i]->source.data.nix.listen)<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">+            unlink(vm->def->channels[i]->source.data.nix.path);<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">+    }<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">+<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">     /* shut it off for sure */<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">     ignore_value(qemuProcessKill(vm,<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">                                  VIR_QEMU_PROCESS_KILL_FORCE|<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">-- <o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">1.7.3.1.msysgit.0<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US"><o:p> </o:p></span></p>
<p class="MsoPlainText"><span lang="EN-US">Best Regards,<o:p></o:p></span></p>
<p class="MsoPlainText"><span lang="EN-US">-WangYufei<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US"><o:p> </o:p></span></p>
</div>
</body>
</html>