netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: "John W. Linville" <linville@tuxdriver.com>
Cc: kbuild-all@01.org, netdev@vger.kernel.org,
	Pravin B Shelar <pshelar@nicira.com>,
	Jesse Gross <jesse@nicira.com>, Jiri Benc <jbenc@redhat.com>,
	davem@davemloft.net, "John W. Linville" <linville@tuxdriver.com>
Subject: Re: [RFT v3] geneve: implement support for IPv6-based tunnels
Date: Thu, 1 Oct 2015 09:55:42 +0800	[thread overview]
Message-ID: <201510010922.jHqdYyV9%fengguang.wu@intel.com> (raw)
In-Reply-To: <1443638045-27229-1-git-send-email-linville@tuxdriver.com>

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

Hi John,

[auto build test results on v4.3-rc3 -- if it's inappropriate base, please ignore]

config: x86_64-randconfig-s2-10010927 (attached as .config)
reproduce:
        git checkout c1211d3ada9fc6f89f657c1d9c870de3baff506e
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All error/warnings (new ones prefixed by >>):

   drivers/net/geneve.c: In function 'geneve_rx':
>> drivers/net/geneve.c:185:3: error: 'ip6h' undeclared (first use in this function)
      ip6h = ipv6_hdr(skb); /* outer IPv6 header... */
      ^
   drivers/net/geneve.c:185:3: note: each undeclared identifier is reported only once for each function it appears in
>> drivers/net/geneve.c:189:4: error: 'addr6' undeclared (first use in this function)
       addr6 = zero_addr6;
       ^
>> drivers/net/geneve.c:189:12: error: 'zero_addr6' undeclared (first use in this function)
       addr6 = zero_addr6;
               ^
>> drivers/net/geneve.c:196:12: error: implicit declaration of function 'geneve6_lookup' [-Werror=implicit-function-declaration]
      geneve = geneve6_lookup(gs, addr6, vni);
               ^
   cc1: some warnings being treated as errors

vim +/ip6h +185 drivers/net/geneve.c

   179	
   180				addr = iph->saddr;
   181			}
   182	
   183			geneve = geneve_lookup(gs, addr, vni);
   184		} else if (sa_family == AF_INET6) {
 > 185			ip6h = ipv6_hdr(skb); /* outer IPv6 header... */
   186	
   187			if (gs->collect_md) {
   188				vni = zero_vni;
 > 189				addr6 = zero_addr6;
   190			} else {
   191				vni = gnvh->vni;
   192	
   193				addr6 = ip6h->saddr;
   194			}
   195	
 > 196			geneve = geneve6_lookup(gs, addr6, vni);
   197		}
   198		if (!geneve)
   199			goto drop;

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 26170 bytes --]

  reply	other threads:[~2015-10-01  1:56 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-24 18:34 [RFT] geneve: implement support for IPv6-based tunnels John W. Linville
2015-09-24 18:39 ` [PATCH iproute2] geneve: add support for IPv6 link partners John W. Linville
2015-11-24  0:23   ` Stephen Hemminger
2015-09-25 12:08 ` [RFT] geneve: implement support for IPv6-based tunnels Jiri Benc
2015-09-28 19:20   ` John W. Linville
2015-09-29 16:10     ` Jiri Benc
2015-09-30 17:04 ` [RFT v2] " John W. Linville
2015-09-30 18:07   ` kbuild test robot
2015-09-30 18:34   ` [RFT v3] " John W. Linville
2015-10-01  1:55     ` kbuild test robot [this message]
2015-10-01 15:38     ` Jiri Benc
2015-10-01 16:26     ` Jesse Gross
2015-10-01 20:03       ` John W. Linville
2015-10-01 21:07         ` Jesse Gross
2015-10-20 15:11     ` [PATCH v4 1/2] " John W. Linville
2015-10-20 15:11       ` [PATCH 2/2] geneve: handle ipv6 priority like ipv4 tos John W. Linville
2015-10-21  5:13         ` Jesse Gross
2015-10-20 22:55       ` [PATCH v4 1/2] geneve: implement support for IPv6-based tunnels kbuild test robot
2015-10-21  1:52       ` YOSHIFUJI Hideaki/吉藤英明
2015-10-21 18:58         ` John W. Linville
2015-10-21  5:06       ` Jesse Gross
2015-10-22 19:45       ` [PATCH v5 " John W. Linville
2015-10-22 19:45         ` [PATCH v5 2/2] geneve: handle ipv6 priority like ipv4 tos John W. Linville
2015-10-23  4:48         ` [PATCH v5 1/2] geneve: implement support for IPv6-based tunnels YOSHIFUJI Hideaki
2015-10-23 13:38           ` John W. Linville
2015-10-23 14:40         ` [PATCH v6 " John W. Linville
2015-10-23 14:40           ` [PATCH v6 2/2] geneve: handle ipv6 priority like ipv4 tos John W. Linville
2015-10-26  4:08           ` [PATCH v6 1/2] geneve: implement support for IPv6-based tunnels Jesse Gross
2015-10-26 21:01           ` [PATCH v7 1/3] " John W. Linville
2015-10-26 21:01             ` [PATCH v7 2/3] geneve: handle ipv6 priority like ipv4 tos John W. Linville
2015-10-30  3:11               ` David Miller
2015-10-26 21:01             ` [PATCH v7 3/3] geneve: add IPv6 bits to geneve_fill_metadata_dst John W. Linville
2015-10-27 12:48               ` Sergei Shtylyov
2015-10-27 13:49               ` [PATCH v8 " John W. Linville
2015-10-27 14:24                 ` Jesse Gross
2015-10-30  3:12                 ` David Miller
2015-10-30  3:11             ` [PATCH v7 1/3] geneve: implement support for IPv6-based tunnels David Miller

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=201510010922.jHqdYyV9%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=davem@davemloft.net \
    --cc=jbenc@redhat.com \
    --cc=jesse@nicira.com \
    --cc=kbuild-all@01.org \
    --cc=linville@tuxdriver.com \
    --cc=netdev@vger.kernel.org \
    --cc=pshelar@nicira.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).