All of lore.kernel.org
 help / color / mirror / Atom feed
From: Brian Haley <brian.haley@hp.com>
To: Shan Wei <shanwei@cn.fujitsu.com>
Cc: "YOSHIFUJI Hideaki / ????" <yoshfuji@linux-ipv6.org>,
	davem@davemloft.net, netdev@vger.kernel.org
Subject: Re: [PATCH v2] IPv6: fix bug when specifying the non-exist outgoing interface
Date: Mon, 02 Jun 2008 12:26:48 -0400	[thread overview]
Message-ID: <48441F48.2080607@hp.com> (raw)
In-Reply-To: <48441C82.1070609@hp.com>

[-- Attachment #1: Type: text/plain, Size: 366 bytes --]

> I did notice a slight problem where if fl->oif is set in the caller (for 
> example via SO_BINDTODEVICE), it's ignored in datagram_send_ctl() if 
> src_info->ipi6_ifindex is zero, attached patch fixes that.

Actually, previous patch wasn't exactly correct either, I missed one 
conversion, below is ok.

-Brian

Signed-off-by: Brian Haley <brian.haley@hp.com>
---

[-- Attachment #2: datagram_send_ctl.floif.patch --]
[-- Type: text/x-diff, Size: 524 bytes --]

diff --git a/net/ipv6/datagram.c b/net/ipv6/datagram.c
index 94fa6ae..3abe181 100644
--- a/net/ipv6/datagram.c
+++ b/net/ipv6/datagram.c
@@ -541,10 +541,10 @@ int datagram_send_ctl(struct msghdr *msg, struct flowi *fl,
 				break;
 
 			if (addr_type & IPV6_ADDR_LINKLOCAL) {
-				if (!src_info->ipi6_ifindex)
+				if (!fl->oif)
 					return -EINVAL;
 				else {
-					dev = dev_get_by_index(&init_net, src_info->ipi6_ifindex);
+					dev = dev_get_by_index(&init_net, fl->oif);
 					if (!dev)
 						return -ENODEV;
 				}

  reply	other threads:[~2008-06-02 16:26 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-06-02  8:12 [PATCH] IPv6: fix bug when specifying the non-exist outgoing interface Shan Wei
2008-06-02  8:20 ` YOSHIFUJI Hideaki / 吉藤英明
2008-06-02  8:52   ` [PATCH v2] " Shan Wei
2008-06-02  8:59   ` Shan Wei
2008-06-02  9:17     ` YOSHIFUJI Hideaki / 吉藤英明
2008-06-02 16:14     ` Brian Haley
2008-06-02 16:26       ` Brian Haley [this message]
2008-06-02 16:41       ` YOSHIFUJI Hideaki / 吉藤英明
2008-06-02 16:46         ` YOSHIFUJI Hideaki / 吉藤英明
2008-06-02 16:48           ` YOSHIFUJI Hideaki / 吉藤英明
2008-06-02 17:07             ` YOSHIFUJI Hideaki / 吉藤英明
2008-06-02 17:39               ` Brian Haley
2008-06-03  4:52                 ` YOSHIFUJI Hideaki / 吉藤英明
2008-06-03  7:03                   ` Shan Wei
2008-06-03  7:04                   ` Shan Wei
2008-06-02 17:39         ` Brian Haley

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=48441F48.2080607@hp.com \
    --to=brian.haley@hp.com \
    --cc=davem@davemloft.net \
    --cc=netdev@vger.kernel.org \
    --cc=shanwei@cn.fujitsu.com \
    --cc=yoshfuji@linux-ipv6.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.