Re: [Qemu-devel] IPv6 support for TCP migrations

2011-05-04 Thread Nicholas Thomas
On Wed, 2011-05-04 at 11:13 +0100, Daniel P. Berrange wrote: > On Wed, May 04, 2011 at 09:39:02AM +0100, n...@bytemark.co.uk wrote: > > Hi, > > > > Currently migration-tcp.c uses the IPv4-only socket functions, making > > migrations over IPv6 impossible. Following is a tentative patch that > > sw

Re: [Qemu-devel] IPv6 support for TCP migrations

2011-05-04 Thread Daniel P. Berrange
On Wed, May 04, 2011 at 09:39:02AM +0100, n...@bytemark.co.uk wrote: > Hi, > > Currently migration-tcp.c uses the IPv4-only socket functions, making > migrations over IPv6 impossible. Following is a tentative patch that switches > it to use inet_connect() and inet_listen(). > > However, the patc

[Qemu-devel] IPv6 support for TCP migrations

2011-05-04 Thread nick
Hi, Currently migration-tcp.c uses the IPv4-only socket functions, making migrations over IPv6 impossible. Following is a tentative patch that switches it to use inet_connect() and inet_listen(). However, the patch loses the non-blocking connect() behaviour seen with the previous code. I'm not s