Statistics
| Branch: | Revision:

root / migration-rdma.c @ f6049f44

History | View | Annotate | Download (98.5 kB)

# Date Author Comment
66988941 08/05/2013 07:47 pm Michael R. Hines

rdma: correct newlines in error statements

Don't print newlines on the error_setg() function,
but still allow newlines on fprintf().

Signed-off-by: Michael R. Hines <>
Message-id: ...

44b59494 08/05/2013 07:47 pm Isaku Yamahata

rdma: don't use negative index to array

Reviewed-by: Michael R. Hines <>
Signed-off-by: Isaku Yamahata <>
Signed-off-by: Michael R. Hines <>
Message-id: ...

1f22364b 08/05/2013 07:47 pm Isaku Yamahata

rdma: qemu_rdma_post_send_control uses wrongly RDMA_WRID_MAX

RDMA_WRID_CONTROL should be used. And remove related work around.

Reviewed-by: Michael R. Hines <>
Signed-off-by: Isaku Yamahata <>
Signed-off-by: Michael R. Hines <>...

87772639 08/05/2013 07:47 pm Isaku Yamahata

rdma: use RDMA_WRID_READY

Reviewed-by: Michael R. Hines <>
Signed-off-by: Isaku Yamahata <>
Signed-off-by: Michael R. Hines <>
Message-id: ...

e1d0fb37 08/05/2013 07:47 pm Isaku Yamahata

rdma: memory leak RDMAContext::host

It is allocated by g_strdup(), so needs to be freed.

Reviewed-by: Michael R. Hines <>
Signed-off-by: Isaku Yamahata <>
Signed-off-by: Michael R. Hines <>...

b58c8552 08/05/2013 07:47 pm Michael R. Hines

rdma: bugfix: make IPv6 support work

RDMA does not use sockets, so we cannot use many of the socket
helper functions, but we do use inet_parse() which gives
RDMA all the necessary details of the connection parameters.

However, when testing with libvirt, a simple IPv6 migration test failed...

8cd31adc 08/05/2013 07:47 pm Michael R. Hines

rdma: forgot to turn off the debugging flag

Ooops. We forgot to turn off the flag.

Signed-off-by: Michael R. Hines <>
Message-id:
Signed-off-by: Anthony Liguori <>

52f35022 07/27/2013 10:22 am Stefan Weil

misc: Fix new typos in comments and strings

All these typos were found by codespell.

sould -> should
emperical -> empirical
intialization -> initialization
successfuly -> successfully
gaurantee -> guarantee

Fix also another error (before before) in the same context....

2da776db 07/23/2013 12:12 pm Michael R. Hines

rdma: core logic

Code that does need to be visible is kept
well contained inside this file and this is the only
new additional file to the entire patch.

This file includes the entire protocol and interfaces
required to perform RDMA migration.

Also, the configure and Makefile modifications to link...