From mboxrd@z Thu Jan 1 00:00:00 1970 From: Brian Haley Subject: Re: [PATCH] net: ipv6 bind to device issue Date: Tue, 20 Apr 2010 14:13:39 -0400 Message-ID: <4BCDEED3.7040901@hp.com> References: <1271767572-5282-1-git-send-email-jolsa@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: davem@davemloft.net, kuznet@ms2.inr.ac.ru, pekkas@netcore.fi, jmorris@namei.org, yoshfuji@linux-ipv6.org, kaber@trash.net, eric.dumazet@gmail.com, netdev@vger.kernel.org To: Jiri Olsa Return-path: Received: from g5t0007.atlanta.hp.com ([15.192.0.44]:39055 "EHLO g5t0007.atlanta.hp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752746Ab0DTSOh (ORCPT ); Tue, 20 Apr 2010 14:14:37 -0400 In-Reply-To: <1271767572-5282-1-git-send-email-jolsa@redhat.com> Sender: netdev-owner@vger.kernel.org List-ID: Jiri Olsa wrote: > diff --git a/net/ipv6/route.c b/net/ipv6/route.c > index c2438e8..7bf7717 100644 > --- a/net/ipv6/route.c > +++ b/net/ipv6/route.c > @@ -815,7 +815,7 @@ struct dst_entry * ip6_route_output(struct net *net, struct sock *sk, > { > int flags = 0; > > - if (rt6_need_strict(&fl->fl6_dst)) > + if (rt6_need_strict(&fl->fl6_dst) || fl->oif) > flags |= RT6_LOOKUP_F_IFACE; > > if (!ipv6_addr_any(&fl->fl6_src)) Actually, looking at this again, we might want to swap the order here since fl->oif should be filled-in for most link-local and multicast requests calling this: if (fl->oif || rt6_need_strict(&fl->fl6_dst)) Just a thought, but it potentially saves a call to determine the scope of the address. -Brian