From mboxrd@z Thu Jan 1 00:00:00 1970 From: "David J. Wilder" Subject: Re: [PATCH] link-local address fix for rdma_resolve_addr Date: Wed, 14 Oct 2009 12:33:17 -0700 Message-ID: <1255548798.5111.24.camel@wilder.ibm.com> References: <1255471781.14513.7.camel@wilder.ibm.com> <20091013231234.GK5191@obsidianresearch.com> <1255537437.14513.28.camel@wilder.ibm.com> <20091014170155.GL5191@obsidianresearch.com> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20091014170155.GL5191-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: ewg-bounces-ZwoEplunGu1OwGhvXhtEPSCwEArCW2h5@public.gmane.org Errors-To: ewg-bounces-ZwoEplunGu1OwGhvXhtEPSCwEArCW2h5@public.gmane.org To: Jason Gunthorpe Cc: linux-rdma , sean.hefty-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org, wilder-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org, ewg-ZwoEplunGu1OwGhvXhtEPSCwEArCW2h5@public.gmane.org List-Id: linux-rdma@vger.kernel.org On Wed, 2009-10-14 at 11:01 -0600, Jason Gunthorpe wrote: > On Wed, Oct 14, 2009 at 09:23:57AM -0700, David J. Wilder wrote: > > > This new patch should closely emulate tcp_ipv6.c. when both source and > > destination scope_ids are given with link-local address. > > Maybe like this: > > fl.oif = 0; > > if (ipv6_addr_type(&src_in->sin6_addr) & IPV6_ADDR_LINKLOCAL) { > if (!src_in->sin6_scope_id) > return -EINVAL; > fl.oif = src_in->sin6scope_id; > } > if (ipv6_addr_type(&dst_in->sin6_addr) & IPV6_ADDR_LINKLOCAL){ > if (dst_in.sin6_scope_id) { > if (fl.oif && fl.oif != dst_in.sin6_scope_id) > return -EINVAL; > fl.oif = dst_in.sin6_scope_id; > } > if (!fl.oif) > return -EINVAL; > } > > > src and dest have to be tested seperately, the TCPv6 versions don't > require them to be both link local. Hum.. this change is not working with rping. The src address has been filled in already with a link-local address and no scope_id so it is returning -EINVAL. Another bug I guess.... I am doing some more debug.