linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Stephen Boyd <sboyd@kernel.org>
Cc: kbuild-all@01.org, Michael Turquette <mturquette@baylibre.com>,
	Stephen Boyd <sboyd@kernel.org>,
	linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org,
	Bjorn Andersson <bjorn.andersson@linaro.org>,
	Sai Prakash Ranjan <saiprakash.ranjan@codeaurora.org>
Subject: Re: [PATCH] clk: Evict unregistered clks from parent caches
Date: Tue, 27 Aug 2019 18:28:35 +0800	[thread overview]
Message-ID: <201908271848.zrwFj4Pk%lkp@intel.com> (raw)
In-Reply-To: <20190826234311.138147-1-sboyd@kernel.org>

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

Hi Stephen,

I love your patch! Yet something to improve:

[auto build test ERROR on linus/master]
[cannot apply to v5.3-rc6 next-20190827]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]

url:    https://github.com/0day-ci/linux/commits/Stephen-Boyd/clk-Evict-unregistered-clks-from-parent-caches/20190827-165138
config: mips-allnoconfig (attached as .config)
compiler: mips-linux-gcc (GCC) 7.4.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.4.0 make.cross ARCH=mips 

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

All errors (new ones prefixed by >>):

   drivers/clk/clk.c: In function 'clk_core_evict_parent_cache':
>> drivers/clk/clk.c:3785:15: error: 'all_lists' undeclared (first use in this function); did you mean 'lists'?
     for (lists = all_lists; *lists; lists++)
                  ^~~~~~~~~
                  lists
   drivers/clk/clk.c:3785:15: note: each undeclared identifier is reported only once for each function it appears in

vim +3785 drivers/clk/clk.c

  3776	
  3777	/* Remove this clk from all parent caches */
  3778	static void clk_core_evict_parent_cache(struct clk_core *core)
  3779	{
  3780		struct hlist_head **lists;
  3781		struct clk_core *root;
  3782	
  3783		lockdep_assert_held(&prepare_lock);
  3784	
> 3785		for (lists = all_lists; *lists; lists++)
  3786			hlist_for_each_entry(root, *lists, child_node)
  3787				clk_core_evict_parent_cache_subtree(root, core);
  3788	

---
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: 6909 bytes --]

  parent reply	other threads:[~2019-08-27 10:29 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-08-26 23:43 [PATCH] clk: Evict unregistered clks from parent caches Stephen Boyd
2019-08-27  0:40 ` Bjorn Andersson
2019-08-27  3:33 ` Sai Prakash Ranjan
2019-08-27 10:28 ` kbuild test robot [this message]
2019-08-28 18:10   ` Stephen Boyd

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=201908271848.zrwFj4Pk%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=bjorn.andersson@linaro.org \
    --cc=kbuild-all@01.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mturquette@baylibre.com \
    --cc=saiprakash.ranjan@codeaurora.org \
    --cc=sboyd@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 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).