Re: [Qemu-devel] [PATCH] net: fix bug in net_init_socket

2012-11-01 Thread Lei Li
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

Re: [Qemu-devel] [PATCH] net: fix bug in net_init_socket

2012-11-01 Thread Stefan Hajnoczi
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.launchpa

[Qemu-devel] [PATCH] net: fix bug in net_init_socket

2012-11-01 Thread Lei Li
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 --- ne