All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH v1 1/1] driver core: enable trace events (devres)
Date: Fri, 02 Apr 2021 07:44:47 +0800	[thread overview]
Message-ID: <202104020726.8p71P4AQ-lkp@intel.com> (raw)
In-Reply-To: <20210401212129.82552-1-andriy.shevchenko@linux.intel.com>

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

Hi Andy,

I love your patch! Yet something to improve:

[auto build test ERROR on driver-core/driver-core-testing]
[also build test ERROR on v5.12-rc5 next-20210401]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]

url:    https://github.com/0day-ci/linux/commits/Andy-Shevchenko/driver-core-enable-trace-events-devres/20210402-052313
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git d225ef6fda7ce9ff7d28764bd1cceea2d0215e8b
config: powerpc-randconfig-r004-20210401 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project 1c268a8ff4e90a85d0e634350b1104080614cf2b)
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # install powerpc cross compiling tool for clang build
        # apt-get install binutils-powerpc-linux-gnu
        # https://github.com/0day-ci/linux/commit/b5937c2a88864ab50f9a0e1ba3b98ddb7068279d
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Andy-Shevchenko/driver-core-enable-trace-events-devres/20210402-052313
        git checkout b5937c2a88864ab50f9a0e1ba3b98ddb7068279d
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=powerpc 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> drivers/base/devres.c:73:40: error: no member named 'name' in 'struct devres_node'
           trace_devres_log(dev, op, node, node->name, node->size);
                                           ~~~~  ^
>> drivers/base/devres.c:73:52: error: no member named 'size' in 'struct devres_node'
           trace_devres_log(dev, op, node, node->name, node->size);
                                                       ~~~~  ^
   2 errors generated.


vim +73 drivers/base/devres.c

    69	
    70	static void devres_log(struct device *dev, struct devres_node *node,
    71			       const char *op)
    72	{
  > 73		trace_devres_log(dev, op, node, node->name, node->size);
    74		devres_dbg(dev, node, op);
    75	}
    76	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

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

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
	Heikki Krogerus <heikki.krogerus@linux.intel.com>,
	Bartosz Golaszewski <bgolaszewski@baylibre.com>,
	linux-kernel@vger.kernel.org
Cc: kbuild-all@lists.01.org, clang-built-linux@googlegroups.com,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	"Rafael J. Wysocki" <rafael@kernel.org>
Subject: Re: [PATCH v1 1/1] driver core: enable trace events (devres)
Date: Fri, 2 Apr 2021 07:44:47 +0800	[thread overview]
Message-ID: <202104020726.8p71P4AQ-lkp@intel.com> (raw)
In-Reply-To: <20210401212129.82552-1-andriy.shevchenko@linux.intel.com>

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

Hi Andy,

I love your patch! Yet something to improve:

[auto build test ERROR on driver-core/driver-core-testing]
[also build test ERROR on v5.12-rc5 next-20210401]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]

url:    https://github.com/0day-ci/linux/commits/Andy-Shevchenko/driver-core-enable-trace-events-devres/20210402-052313
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git d225ef6fda7ce9ff7d28764bd1cceea2d0215e8b
config: powerpc-randconfig-r004-20210401 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project 1c268a8ff4e90a85d0e634350b1104080614cf2b)
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # install powerpc cross compiling tool for clang build
        # apt-get install binutils-powerpc-linux-gnu
        # https://github.com/0day-ci/linux/commit/b5937c2a88864ab50f9a0e1ba3b98ddb7068279d
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Andy-Shevchenko/driver-core-enable-trace-events-devres/20210402-052313
        git checkout b5937c2a88864ab50f9a0e1ba3b98ddb7068279d
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=powerpc 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> drivers/base/devres.c:73:40: error: no member named 'name' in 'struct devres_node'
           trace_devres_log(dev, op, node, node->name, node->size);
                                           ~~~~  ^
>> drivers/base/devres.c:73:52: error: no member named 'size' in 'struct devres_node'
           trace_devres_log(dev, op, node, node->name, node->size);
                                                       ~~~~  ^
   2 errors generated.


vim +73 drivers/base/devres.c

    69	
    70	static void devres_log(struct device *dev, struct devres_node *node,
    71			       const char *op)
    72	{
  > 73		trace_devres_log(dev, op, node, node->name, node->size);
    74		devres_dbg(dev, node, op);
    75	}
    76	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

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

  parent reply	other threads:[~2021-04-01 23:44 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-01 21:21 [PATCH v1 1/1] driver core: enable trace events (devres) Andy Shevchenko
2021-04-01 23:34 ` Greg Kroah-Hartman
2021-04-01 23:44 ` kernel test robot [this message]
2021-04-01 23:44   ` kernel test robot

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=202104020726.8p71P4AQ-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.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.