netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Ka-Cheong Poon <ka-cheong.poon@oracle.com>
Cc: kbuild-all@01.org, netdev@vger.kernel.org,
	santosh.shilimkar@oracle.com, davem@davemloft.net,
	sowmini.varadhan@oracle.com, rds-devel@oss.oracle.com
Subject: Re: [PATCH v3 net-next 2/3] rds: Enable RDS IPv6 support
Date: Mon, 16 Jul 2018 17:52:41 +0800	[thread overview]
Message-ID: <201807161703.cFGtwU1v%fengguang.wu@intel.com> (raw)
In-Reply-To: <af9138b7eba7460470a39f53fdd0b58c57fe9ce4.1531477918.git.ka-cheong.poon@oracle.com>

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

Hi Ka-Cheong,

Thank you for the patch! Yet something to improve:

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

url:    https://github.com/0day-ci/linux/commits/Ka-Cheong-Poon/rds-Changing-IP-address-internal-representation-to-struct-in6_addr/20180716-011408
config: powerpc-allmodconfig (attached as .config)
compiler: powerpc64-linux-gnu-gcc (Debian 7.2.0-11) 7.2.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        GCC_VERSION=7.2.0 make.cross ARCH=powerpc 

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

   In file included from include/linux/printk.h:332:0,
                    from include/linux/kernel.h:14,
                    from net/rds/tcp_listen.c:33:
   net/rds/tcp_listen.c: In function 'rds_tcp_accept_one':
>> include/linux/dynamic_debug.h:124:1: error: expected expression before 'do'
    do {        \
    ^
   include/linux/printk.h:336:2: note: in expansion of macro 'dynamic_pr_debug'
     dynamic_pr_debug(fmt, ##__VA_ARGS__)
     ^~~~~~~~~~~~~~~~
>> net/rds/rds.h:41:32: note: in expansion of macro 'pr_debug'
    #define rdsdebug(fmt, args...) pr_debug("%s(): " fmt, __func__ , ##args)
                                   ^~~~~~~~
>> net/rds/tcp_listen.c:170:2: note: in expansion of macro 'rdsdebug'
     rdsdebug("accepted tcp %pI6c:%u -> %pI6c:%u\n",
     ^~~~~~~~

vim +/pr_debug +41 net/rds/rds.h

8cbd9606 Andy Grover        2009-04-01  39  
ff57087f shamir rabinovitch 2016-10-27  40  #ifdef RDS_DEBUG
39de8281 Andy Grover        2009-02-24 @41  #define rdsdebug(fmt, args...) pr_debug("%s(): " fmt, __func__ , ##args)
39de8281 Andy Grover        2009-02-24  42  #else
39de8281 Andy Grover        2009-02-24  43  /* sigh, pr_debug() causes unused variable warnings */
b9075fa9 Joe Perches        2011-10-31  44  static inline __printf(1, 2)
b9075fa9 Joe Perches        2011-10-31  45  void rdsdebug(char *fmt, ...)
39de8281 Andy Grover        2009-02-24  46  {
39de8281 Andy Grover        2009-02-24  47  }
39de8281 Andy Grover        2009-02-24  48  #endif
39de8281 Andy Grover        2009-02-24  49  

:::::: The code at line 41 was first introduced by commit
:::::: 39de8281791c4a01abcb0d32879530ffa5863c01 RDS: Main header file

:::::: TO: Andy Grover <andy.grover@oracle.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

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 57634 bytes --]

  reply	other threads:[~2018-07-16 10:20 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-13 11:02 [PATCH v3 net-next 0/3] rds: IPv6 support Ka-Cheong Poon
2018-07-13 11:02 ` [PATCH v3 net-next 1/3] rds: Changing IP address internal representation to struct in6_addr Ka-Cheong Poon
2018-07-13 11:02 ` [PATCH v3 net-next 2/3] rds: Enable RDS IPv6 support Ka-Cheong Poon
2018-07-16  9:52   ` kbuild test robot [this message]
2018-07-13 11:02 ` [PATCH v3 net-next 3/3] rds: Extend RDS API for " Ka-Cheong Poon
2018-07-13 11:18   ` 吉藤英明
2018-07-13 21:25   ` David Miller
2018-07-13 22:00     ` Santosh Shilimkar
2018-07-13 23:27       ` David Miller
2018-07-13 23:31         ` Santosh Shilimkar
2018-07-16 16:20 ` [PATCH v3 net-next 0/3] rds: " Sowmini Varadhan
2018-07-17  5:32   ` Ka-Cheong Poon
2018-07-17 11:27     ` Sowmini Varadhan
2018-07-18  7:19       ` Ka-Cheong Poon
2018-07-18 10:33         ` Sowmini Varadhan
2018-07-18 17:31           ` David Miller
2018-07-19  3:10             ` Ka-Cheong Poon
2018-07-18 17:42 ` Santosh Shilimkar

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=201807161703.cFGtwU1v%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=davem@davemloft.net \
    --cc=ka-cheong.poon@oracle.com \
    --cc=kbuild-all@01.org \
    --cc=netdev@vger.kernel.org \
    --cc=rds-devel@oss.oracle.com \
    --cc=santosh.shilimkar@oracle.com \
    --cc=sowmini.varadhan@oracle.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).