From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:43363) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TU6mn-0004H5-I1 for qemu-devel@nongnu.org; Thu, 01 Nov 2012 22:15:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TU6kR-00023R-Ao for qemu-devel@nongnu.org; Thu, 01 Nov 2012 22:12:41 -0400 Received: from e28smtp04.in.ibm.com ([122.248.162.4]:53216) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TU6kQ-00022B-HW for qemu-devel@nongnu.org; Thu, 01 Nov 2012 22:12:39 -0400 Received: from /spool/local by e28smtp04.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 2 Nov 2012 07:42:33 +0530 Received: from d28av03.in.ibm.com (d28av03.in.ibm.com [9.184.220.65]) by d28relay03.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id qA22CVQl16908318 for ; Fri, 2 Nov 2012 07:42:31 +0530 Received: from d28av03.in.ibm.com (loopback [127.0.0.1]) by d28av03.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id qA22CUFJ022046 for ; Fri, 2 Nov 2012 13:12:31 +1100 Message-ID: <50932BDC.7020603@linux.vnet.ibm.com> Date: Fri, 02 Nov 2012 10:11:40 +0800 From: Lei Li MIME-Version: 1.0 References: <1351762795-31934-1-git-send-email-lilei@linux.vnet.ibm.com> <20121101100506.GA16622@stefanha-thinkpad.redhat.com> In-Reply-To: <20121101100506.GA16622@stefanha-thinkpad.redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] net: fix bug in net_init_socket List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Hajnoczi Cc: qemu-devel@nongnu.org On 11/01/2012 06:05 PM, Stefan Hajnoczi wrote: > On Thu, Nov 01, 2012 at 05:39:55PM +0800, Lei Li wrote: >> Fix the problem that can not delete the udp socket. >> It's caused by passing "udp" model to net_socket_udp_init, >> but we do not have "udp" model in our model list. >> Pass the right model "socket" to init function. >> >> https://bugs.launchpad.net/qemu/+bug/1073585?comments=all >> >> Signed-off-by: Lei Li >> --- >> net/socket.c | 2 +- >> 1 files changed, 1 insertions(+), 1 deletions(-) > Thanks, applied to the net tree: > https://github.com/stefanha/qemu/commits/net > > I changed the commit message from 'fix bug in net_init_socket' to 'use > "socket" model name for UDP sockets' to be more specific. Sure, thanks. :) > > Stefan > -- Lei