Re: [Qemu-devel] [PATCH 1/2] migration: Fix fd protocol for incoming defer

2019-05-28 Thread Juan Quintela
Yury Kotov wrote: > Currently, incoming migration through fd supports only command-line case: > E.g. > fork(); > fd = open(); > exec("qemu ... -incoming fd:%d", fd); > > It's possible to use add-fd commands to pass fd for migration, but it's > invalid case. add-fd works with fdset but

[Qemu-devel] [PATCH 1/2] migration: Fix fd protocol for incoming defer

2019-05-27 Thread Yury Kotov
Currently, incoming migration through fd supports only command-line case: E.g. fork(); fd = open(); exec("qemu ... -incoming fd:%d", fd); It's possible to use add-fd commands to pass fd for migration, but it's invalid case. add-fd works with fdset but not with particular fds. To work