From: Fengguang Wu <fengguang.wu@intel.com>
To: David Miller <davem@davemloft.net>
Cc: kernel-janitors@vger.kernel.org, netdev@vger.kernel.org
Subject: Re: [net-next:master 90/102] net/ipv4/route.c:1283:9: warning: unused variable 'saddr'
Date: Thu, 12 Jul 2012 14:54:44 +0000 [thread overview]
Message-ID: <20120712145444.GA20982@localhost> (raw)
In-Reply-To: <20120712.074058.753681400854318989.davem@davemloft.net>
OK!
On Thu, Jul 12, 2012 at 07:40:58AM -0700, David Miller wrote:
>
> There's not need to report these to kernel-janitors if it's a
> net-next specific issue and I'm going to fix it up 5 minutes
> after you report it.
>
> ==========
> [PATCH] ipv4: Fix warnings in ip_do_redirect() for some configurations.
>
> Reported-by: Fengguang Wu <fengguang.wu@intel.com>
> Signed-off-by: David S. Miller <davem@davemloft.net>
> ---
> net/ipv4/route.c | 10 ++++++----
> 1 file changed, 6 insertions(+), 4 deletions(-)
>
> diff --git a/net/ipv4/route.c b/net/ipv4/route.c
> index 23bbe29..9319bf1 100644
> --- a/net/ipv4/route.c
> +++ b/net/ipv4/route.c
> @@ -1275,12 +1275,9 @@ static void rt_del(unsigned int hash, struct rtable *rt)
>
> static void ip_do_redirect(struct dst_entry *dst, struct sk_buff *skb)
> {
> - const struct iphdr *iph = (const struct iphdr *) skb->data;
> __be32 new_gw = icmp_hdr(skb)->un.gateway;
> __be32 old_gw = ip_hdr(skb)->saddr;
> struct net_device *dev = skb->dev;
> - __be32 daddr = iph->daddr;
> - __be32 saddr = iph->saddr;
> struct in_device *in_dev;
> struct neighbour *n;
> struct rtable *rt;
> @@ -1336,11 +1333,16 @@ static void ip_do_redirect(struct dst_entry *dst, struct sk_buff *skb)
>
> reject_redirect:
> #ifdef CONFIG_IP_ROUTE_VERBOSE
> - if (IN_DEV_LOG_MARTIANS(in_dev))
> + if (IN_DEV_LOG_MARTIANS(in_dev)) {
> + const struct iphdr *iph = (const struct iphdr *) skb->data;
> + __be32 daddr = iph->daddr;
> + __be32 saddr = iph->saddr;
> +
> net_info_ratelimited("Redirect from %pI4 on %s about %pI4 ignored\n"
> " Advised path = %pI4 -> %pI4\n",
> &old_gw, dev->name, &new_gw,
> &saddr, &daddr);
> + }
> #endif
> ;
> }
> --
> 1.7.10.4
WARNING: multiple messages have this Message-ID (diff)
From: Fengguang Wu <fengguang.wu@intel.com>
To: David Miller <davem@davemloft.net>
Cc: kernel-janitors@vger.kernel.org, netdev@vger.kernel.org
Subject: Re: [net-next:master 90/102] net/ipv4/route.c:1283:9: warning: unused variable 'saddr'
Date: Thu, 12 Jul 2012 22:54:44 +0800 [thread overview]
Message-ID: <20120712145444.GA20982@localhost> (raw)
In-Reply-To: <20120712.074058.753681400854318989.davem@davemloft.net>
OK!
On Thu, Jul 12, 2012 at 07:40:58AM -0700, David Miller wrote:
>
> There's not need to report these to kernel-janitors if it's a
> net-next specific issue and I'm going to fix it up 5 minutes
> after you report it.
>
> ====================
> [PATCH] ipv4: Fix warnings in ip_do_redirect() for some configurations.
>
> Reported-by: Fengguang Wu <fengguang.wu@intel.com>
> Signed-off-by: David S. Miller <davem@davemloft.net>
> ---
> net/ipv4/route.c | 10 ++++++----
> 1 file changed, 6 insertions(+), 4 deletions(-)
>
> diff --git a/net/ipv4/route.c b/net/ipv4/route.c
> index 23bbe29..9319bf1 100644
> --- a/net/ipv4/route.c
> +++ b/net/ipv4/route.c
> @@ -1275,12 +1275,9 @@ static void rt_del(unsigned int hash, struct rtable *rt)
>
> static void ip_do_redirect(struct dst_entry *dst, struct sk_buff *skb)
> {
> - const struct iphdr *iph = (const struct iphdr *) skb->data;
> __be32 new_gw = icmp_hdr(skb)->un.gateway;
> __be32 old_gw = ip_hdr(skb)->saddr;
> struct net_device *dev = skb->dev;
> - __be32 daddr = iph->daddr;
> - __be32 saddr = iph->saddr;
> struct in_device *in_dev;
> struct neighbour *n;
> struct rtable *rt;
> @@ -1336,11 +1333,16 @@ static void ip_do_redirect(struct dst_entry *dst, struct sk_buff *skb)
>
> reject_redirect:
> #ifdef CONFIG_IP_ROUTE_VERBOSE
> - if (IN_DEV_LOG_MARTIANS(in_dev))
> + if (IN_DEV_LOG_MARTIANS(in_dev)) {
> + const struct iphdr *iph = (const struct iphdr *) skb->data;
> + __be32 daddr = iph->daddr;
> + __be32 saddr = iph->saddr;
> +
> net_info_ratelimited("Redirect from %pI4 on %s about %pI4 ignored\n"
> " Advised path = %pI4 -> %pI4\n",
> &old_gw, dev->name, &new_gw,
> &saddr, &daddr);
> + }
> #endif
> ;
> }
> --
> 1.7.10.4
next prev parent reply other threads:[~2012-07-12 14:54 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-12 14:34 [net-next:master 90/102] net/ipv4/route.c:1283:9: warning: unused variable 'saddr' Fengguang Wu
2012-07-12 14:34 ` Fengguang Wu
2012-07-12 14:40 ` David Miller
2012-07-12 14:40 ` David Miller
2012-07-12 14:54 ` Fengguang Wu [this message]
2012-07-12 14:54 ` Fengguang Wu
2012-07-12 15:47 ` Dan Carpenter
2012-07-12 15:47 ` Dan Carpenter
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=20120712145444.GA20982@localhost \
--to=fengguang.wu@intel.com \
--cc=davem@davemloft.net \
--cc=kernel-janitors@vger.kernel.org \
--cc=netdev@vger.kernel.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.