All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-trivial] [PATCH for-1.6] rdma: silly ipv6 bugfix
@ 2013-08-19  2:27 mrhines
  2013-08-19  9:30 ` Paolo Bonzini
  2013-09-01 15:04 ` Michael Tokarev
  0 siblings, 2 replies; 4+ messages in thread
From: mrhines @ 2013-08-19  2:27 UTC (permalink / raw)
  To: qemu-trivial; +Cc: yamahata, aliguori, quintela, owasserm, mrhines, pbonzini

From: "Michael R. Hines" <mrhines@us.ibm.com>

My bad - but it's very important for us to warn the user that
IPv6 is broken on RoCE in linux right now, until linux releases
a fixed version.

Signed-off-by: Michael R. Hines <mrhines@us.ibm.com>
---
 migration-rdma.c |    8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/migration-rdma.c b/migration-rdma.c
index 3d1266f..f5e75d6 100644
--- a/migration-rdma.c
+++ b/migration-rdma.c
@@ -920,9 +920,11 @@ static int qemu_rdma_resolve_host(RDMAContext *rdma, Error **errp)
         ret = rdma_resolve_addr(rdma->cm_id, NULL, e->ai_dst_addr,
                 RDMA_RESOLVE_TIMEOUT_MS);
         if (!ret) {
-            ret = qemu_rdma_broken_ipv6_kernel(errp, rdma->cm_id->verbs);
-            if (ret) {
-                continue;
+            if (e->ai_family == AF_INET6) {
+                ret = qemu_rdma_broken_ipv6_kernel(errp, rdma->cm_id->verbs);
+                if (ret) {
+                    continue;
+                }
             }
             goto route;
         }
-- 
1.7.10.4



^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-09-01 15:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-19  2:27 [Qemu-trivial] [PATCH for-1.6] rdma: silly ipv6 bugfix mrhines
2013-08-19  9:30 ` Paolo Bonzini
2013-08-19 12:34   ` Michael R. Hines
2013-09-01 15:04 ` Michael Tokarev

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.