qemu-stable
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-stable] [PATCH for-1.6] rdma: silly ipv6 bugfix


From: Paolo Bonzini
Subject: Re: [Qemu-stable] [PATCH for-1.6] rdma: silly ipv6 bugfix
Date: Mon, 19 Aug 2013 11:30:58 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130805 Thunderbird/17.0.8

Il 19/08/2013 04:27, address@hidden ha scritto:
> From: "Michael R. Hines" <address@hidden>
> 
> 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.

1.6 has sailed already, so the right thing to do now is to add a

Cc: address@hidden

tag before Signed-off-by.  This will ensure that the patch will be
considered for 1.6.1.

I have already CCed the mailing list on this message, so there is
nothing you need to do for this particular patch.

Paolo

> Signed-off-by: Michael R. Hines <address@hidden>
> ---
>  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;
>          }
> 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]