Netdev List
 help / color / mirror / Atom feed
From: Julia Lawall <julia.lawall@lip6.fr>
To: Tom Herbert <tom@quantonium.net>
Cc: netdev@vger.kernel.org, roopa@cumulusnetworks.com,
	rohit@quantonium.net, davem@davemloft.net, kbuild-all@01.org
Subject: Re: [PATCH v4 net-next 6/6] ila: Route notify (fwd)
Date: Sat, 16 Dec 2017 23:02:13 +0100 (CET)	[thread overview]
Message-ID: <alpine.DEB.2.20.1712162301020.17082@hadrien> (raw)

Hello,

Another tab appears to be needed on line 358.

julia

---------- Forwarded message ----------
Date: Sun, 17 Dec 2017 05:42:17 +0800
From: kbuild test robot <fengguang.wu@intel.com>
To: kbuild@01.org
Cc: Julia Lawall <julia.lawall@lip6.fr>
Subject: Re: [PATCH v4 net-next 6/6] ila: Route notify

CC: kbuild-all@01.org
In-Reply-To: <20171215182800.10248-7-tom@quantonium.net>
References: <20171215182800.10248-7-tom@quantonium.net>
TO: Tom Herbert <tom@quantonium.net>
CC: davem@davemloft.net
CC: netdev@vger.kernel.org, roopa@cumulusnetworks.com, rohit@quantonium.net, Tom Herbert <tom@quantonium.net>

Hi Tom,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on net-next/master]

url:    https://github.com/0day-ci/linux/commits/Tom-Herbert/net-ILA-notification-mechanism-and-fixes/20171217-041013
:::::: branch date: 2 hours ago
:::::: commit date: 2 hours ago

>> net/ipv6/ila/ila_lwt.c:358:2-23: code aligned with following code on line 360

# https://github.com/0day-ci/linux/commit/bdefe11e33bb3662a60476ea17663189974227a0
git remote add linux-review https://github.com/0day-ci/linux
git remote update linux-review
git checkout bdefe11e33bb3662a60476ea17663189974227a0
vim +358 net/ipv6/ila/ila_lwt.c

79ff2fc3 net/ipv6/ila/ila_lwt.c Tom Herbert     2016-10-14  347
65d7ab8d net/ipv6/ila.c         Tom Herbert     2015-08-17  348  static int ila_fill_encap_info(struct sk_buff *skb,
65d7ab8d net/ipv6/ila.c         Tom Herbert     2015-08-17  349  			       struct lwtunnel_state *lwtstate)
65d7ab8d net/ipv6/ila.c         Tom Herbert     2015-08-17  350  {
65d7ab8d net/ipv6/ila.c         Tom Herbert     2015-08-17  351  	struct ila_params *p = ila_params_lwtunnel(lwtstate);
fddb231e net/ipv6/ila/ila_lwt.c Tom Herbert     2017-11-05  352  	struct ila_lwt *ilwt = ila_lwt_lwtunnel(lwtstate);
65d7ab8d net/ipv6/ila.c         Tom Herbert     2015-08-17  353
bdefe11e net/ipv6/ila/ila_lwt.c Tom Herbert     2017-12-15  354  	if (ilwt->xlat) {
bdefe11e net/ipv6/ila/ila_lwt.c Tom Herbert     2017-12-15  355  		if (nla_put_u64_64bit(skb, ILA_ATTR_LOCATOR,
bdefe11e net/ipv6/ila/ila_lwt.c Tom Herbert     2017-12-15  356  				      (__force u64)p->locator.v64,
f13a82d8 net/ipv6/ila/ila_lwt.c Nicolas Dichtel 2016-04-25  357  				      ILA_ATTR_PAD))
65d7ab8d net/ipv6/ila.c         Tom Herbert     2015-08-17 @358  		goto nla_put_failure;
70d5aef4 net/ipv6/ila/ila_lwt.c Tom Herbert     2017-11-05  359
bdefe11e net/ipv6/ila/ila_lwt.c Tom Herbert     2017-12-15 @360  		if (nla_put_u8(skb, ILA_ATTR_CSUM_MODE,
bdefe11e net/ipv6/ila/ila_lwt.c Tom Herbert     2017-12-15  361  			       (__force u8)p->csum_mode))
bdefe11e net/ipv6/ila/ila_lwt.c Tom Herbert     2017-12-15  362  			goto nla_put_failure;
bdefe11e net/ipv6/ila/ila_lwt.c Tom Herbert     2017-12-15  363
bdefe11e net/ipv6/ila/ila_lwt.c Tom Herbert     2017-12-15  364  		if (nla_put_u8(skb, ILA_ATTR_IDENT_TYPE,
bdefe11e net/ipv6/ila/ila_lwt.c Tom Herbert     2017-12-15  365  			       (__force u8)p->ident_type))
bdefe11e net/ipv6/ila/ila_lwt.c Tom Herbert     2017-12-15  366  			goto nla_put_failure;
bdefe11e net/ipv6/ila/ila_lwt.c Tom Herbert     2017-12-15  367  	}
bdefe11e net/ipv6/ila/ila_lwt.c Tom Herbert     2017-12-15  368
bdefe11e net/ipv6/ila/ila_lwt.c Tom Herbert     2017-12-15  369  	if (nla_put_u8(skb, ILA_ATTR_HOOK_TYPE, ilwt->hook_type))
90bfe662 net/ipv6/ila/ila_lwt.c Tom Herbert     2016-04-23  370  		goto nla_put_failure;
65d7ab8d net/ipv6/ila.c         Tom Herbert     2015-08-17  371
bdefe11e net/ipv6/ila/ila_lwt.c Tom Herbert     2017-12-15  372  	if (ilwt->notify & ILA_NOTIFY_DST)
bdefe11e net/ipv6/ila/ila_lwt.c Tom Herbert     2017-12-15  373  		if (nla_put_flag(skb, ILA_ATTR_NOTIFY_DST))
70d5aef4 net/ipv6/ila/ila_lwt.c Tom Herbert     2017-11-05  374  			goto nla_put_failure;
70d5aef4 net/ipv6/ila/ila_lwt.c Tom Herbert     2017-11-05  375
bdefe11e net/ipv6/ila/ila_lwt.c Tom Herbert     2017-12-15  376  	if (ilwt->notify & ILA_NOTIFY_SRC)
bdefe11e net/ipv6/ila/ila_lwt.c Tom Herbert     2017-12-15  377  		if (nla_put_flag(skb, ILA_ATTR_NOTIFY_SRC))
fddb231e net/ipv6/ila/ila_lwt.c Tom Herbert     2017-11-05  378  			goto nla_put_failure;
fddb231e net/ipv6/ila/ila_lwt.c Tom Herbert     2017-11-05  379
65d7ab8d net/ipv6/ila.c         Tom Herbert     2015-08-17  380  	return 0;
65d7ab8d net/ipv6/ila.c         Tom Herbert     2015-08-17  381
65d7ab8d net/ipv6/ila.c         Tom Herbert     2015-08-17  382  nla_put_failure:
65d7ab8d net/ipv6/ila.c         Tom Herbert     2015-08-17  383  	return -EMSGSIZE;
65d7ab8d net/ipv6/ila.c         Tom Herbert     2015-08-17  384  }
65d7ab8d net/ipv6/ila.c         Tom Herbert     2015-08-17  385

:::::: The code at line 358 was first introduced by commit
:::::: 65d7ab8de582bc668e3dabb6ff48f750098a6e78 net: Identifier Locator Addressing module

:::::: TO: Tom Herbert <tom@herbertland.com>
:::::: CC: David S. Miller <davem@davemloft.net>

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

                 reply	other threads:[~2017-12-16 22:02 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=alpine.DEB.2.20.1712162301020.17082@hadrien \
    --to=julia.lawall@lip6.fr \
    --cc=davem@davemloft.net \
    --cc=kbuild-all@01.org \
    --cc=netdev@vger.kernel.org \
    --cc=rohit@quantonium.net \
    --cc=roopa@cumulusnetworks.com \
    --cc=tom@quantonium.net \
    /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