From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:39619) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TTreE-0001SU-HW for qemu-devel@nongnu.org; Thu, 01 Nov 2012 06:05:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TTre9-0006cS-Tt for qemu-devel@nongnu.org; Thu, 01 Nov 2012 06:05:14 -0400 Received: from mail-bk0-f45.google.com ([209.85.214.45]:46612) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TTre9-0006bw-Mu for qemu-devel@nongnu.org; Thu, 01 Nov 2012 06:05:09 -0400 Received: by mail-bk0-f45.google.com with SMTP id jf3so886401bkc.4 for ; Thu, 01 Nov 2012 03:05:08 -0700 (PDT) Date: Thu, 1 Nov 2012 11:05:06 +0100 From: Stefan Hajnoczi Message-ID: <20121101100506.GA16622@stefanha-thinkpad.redhat.com> References: <1351762795-31934-1-git-send-email-lilei@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1351762795-31934-1-git-send-email-lilei@linux.vnet.ibm.com> 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: Lei Li Cc: qemu-devel@nongnu.org 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. Stefan