All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Jacob Pan <jacob.jun.pan@linux.intel.com>
Cc: kbuild-all@01.org, Peter Zijlstra <peterz@infradead.org>,
	Ingo Molnar <mingo@redhat.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	LKML <linux-kernel@vger.kernel.org>,
	Linux PM <linux-pm@vger.kernel.org>,
	Arjan van de Ven <arjan@linux.intel.com>,
	Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>,
	Len Brown <lenb@kernel.org>,
	Rafael Wysocki <rafael.j.wysocki@intel.com>,
	Eduardo Valentin <edubezval@gmail.com>,
	Zhang Rui <rui.zhang@intel.com>, Petr Mladek <pmladek@suse.com>,
	Sebastian Andrzej Siewior <bigeasy@linutronix.de>,
	Jacob Pan <jacob.jun.pan@linux.intel.com>
Subject: Re: [PATCH v4 2/2] cpuidle: allow setting deepest idle
Date: Tue, 29 Nov 2016 08:59:27 +0800	[thread overview]
Message-ID: <201611290846.PLw3cMGf%fengguang.wu@intel.com> (raw)
In-Reply-To: <1480368809-23685-3-git-send-email-jacob.jun.pan@linux.intel.com>

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

Hi Jacob,

[auto build test ERROR on tip/sched/core]
[also build test ERROR on v4.9-rc7 next-20161128]
[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/Jacob-Pan/Stop-sched-tick-in-idle-injection-task/20161129-062641
config: sh-sh7785lcr_32bit_defconfig (attached as .config)
compiler: sh4-linux-gnu-gcc (Debian 6.1.1-9) 6.1.1 20160705
reproduce:
        wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        make.cross ARCH=sh 

All errors (new ones prefixed by >>):

   kernel/built-in.o: In function `cpuidle_idle_call':
>> kernel/sched/idle.c:197: undefined reference to `cpuidle_find_deepest_state'

vim +197 kernel/sched/idle.c

37352273 Peter Zijlstra 2014-04-11  191  exit_idle:
8ca3c642 Daniel Lezcano 2014-03-03  192  	__current_set_polling();
8ca3c642 Daniel Lezcano 2014-03-03  193  
a1d028bd Daniel Lezcano 2014-03-03  194  	/*
37352273 Peter Zijlstra 2014-04-11  195  	 * It is up to the idle functions to reenable local interrupts
a1d028bd Daniel Lezcano 2014-03-03  196  	 */
c8cc7d4d Daniel Lezcano 2014-03-03 @197  	if (WARN_ON_ONCE(irqs_disabled()))
c8cc7d4d Daniel Lezcano 2014-03-03  198  		local_irq_enable();
c8cc7d4d Daniel Lezcano 2014-03-03  199  
c8cc7d4d Daniel Lezcano 2014-03-03  200  	rcu_idle_exit();

:::::: The code at line 197 was first introduced by commit
:::::: c8cc7d4de7a4f2fb1f8774ec2de5b49c46c42e64 sched/idle: Reorganize the idle loop

:::::: TO: Daniel Lezcano <daniel.lezcano@linaro.org>
:::::: CC: Ingo Molnar <mingo@kernel.org>

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

WARNING: multiple messages have this Message-ID (diff)
From: kbuild test robot <lkp@intel.com>
Cc: kbuild-all@01.org, Peter Zijlstra <peterz@infradead.org>,
	Ingo Molnar <mingo@redhat.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	LKML <linux-kernel@vger.kernel.org>,
	Linux PM <linux-pm@vger.kernel.org>,
	Arjan van de Ven <arjan@linux.intel.com>,
	Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>,
	Len Brown <lenb@kernel.org>,
	Rafael Wysocki <rafael.j.wysocki@intel.com>,
	Eduardo Valentin <edubezval@gmail.com>,
	Zhang Rui <rui.zhang@intel.com>, Petr Mladek <pmladek@suse.com>,
	Sebastian Andrzej Siewior <bigeasy@linutronix.de>,
	Jacob Pan <jacob.jun.pan@linux.intel.com>
Subject: Re: [PATCH v4 2/2] cpuidle: allow setting deepest idle
Date: Tue, 29 Nov 2016 08:59:27 +0800	[thread overview]
Message-ID: <201611290846.PLw3cMGf%fengguang.wu@intel.com> (raw)
In-Reply-To: <1480368809-23685-3-git-send-email-jacob.jun.pan@linux.intel.com>

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

Hi Jacob,

[auto build test ERROR on tip/sched/core]
[also build test ERROR on v4.9-rc7 next-20161128]
[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/Jacob-Pan/Stop-sched-tick-in-idle-injection-task/20161129-062641
config: sh-sh7785lcr_32bit_defconfig (attached as .config)
compiler: sh4-linux-gnu-gcc (Debian 6.1.1-9) 6.1.1 20160705
reproduce:
        wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        make.cross ARCH=sh 

All errors (new ones prefixed by >>):

   kernel/built-in.o: In function `cpuidle_idle_call':
>> kernel/sched/idle.c:197: undefined reference to `cpuidle_find_deepest_state'

vim +197 kernel/sched/idle.c

37352273 Peter Zijlstra 2014-04-11  191  exit_idle:
8ca3c642 Daniel Lezcano 2014-03-03  192  	__current_set_polling();
8ca3c642 Daniel Lezcano 2014-03-03  193  
a1d028bd Daniel Lezcano 2014-03-03  194  	/*
37352273 Peter Zijlstra 2014-04-11  195  	 * It is up to the idle functions to reenable local interrupts
a1d028bd Daniel Lezcano 2014-03-03  196  	 */
c8cc7d4d Daniel Lezcano 2014-03-03 @197  	if (WARN_ON_ONCE(irqs_disabled()))
c8cc7d4d Daniel Lezcano 2014-03-03  198  		local_irq_enable();
c8cc7d4d Daniel Lezcano 2014-03-03  199  
c8cc7d4d Daniel Lezcano 2014-03-03  200  	rcu_idle_exit();

:::::: The code at line 197 was first introduced by commit
:::::: c8cc7d4de7a4f2fb1f8774ec2de5b49c46c42e64 sched/idle: Reorganize the idle loop

:::::: TO: Daniel Lezcano <daniel.lezcano@linaro.org>
:::::: CC: Ingo Molnar <mingo@kernel.org>

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

  parent reply	other threads:[~2016-11-29  0:59 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-28 21:33 [PATCH v4 0/2] Stop sched tick in idle injection task Jacob Pan
2016-11-28 21:33 ` [PATCH v4 1/2] idle: add support for tasks that inject idle Jacob Pan
2016-11-28 21:39   ` Rafael J. Wysocki
2016-11-28 21:46     ` Jacob Pan
2016-11-28 22:22       ` Rafael J. Wysocki
2016-11-28 23:18   ` kbuild test robot
2016-11-28 23:18     ` kbuild test robot
2016-11-28 23:22   ` Rafael J. Wysocki
2016-11-29  0:33     ` Jacob Pan
2016-11-29  0:39       ` Jacob Pan
2016-11-29  0:45         ` Rafael J. Wysocki
2016-11-28 21:33 ` [PATCH v4 2/2] cpuidle: allow setting deepest idle Jacob Pan
2016-11-28 23:12   ` kbuild test robot
2016-11-28 23:12     ` kbuild test robot
2016-11-28 23:19   ` Rafael J. Wysocki
2016-11-29  0:59   ` kbuild test robot [this message]
2016-11-29  0:59     ` kbuild 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=201611290846.PLw3cMGf%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=arjan@linux.intel.com \
    --cc=bigeasy@linutronix.de \
    --cc=edubezval@gmail.com \
    --cc=jacob.jun.pan@linux.intel.com \
    --cc=kbuild-all@01.org \
    --cc=lenb@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=peterz@infradead.org \
    --cc=pmladek@suse.com \
    --cc=rafael.j.wysocki@intel.com \
    --cc=rui.zhang@intel.com \
    --cc=srinivas.pandruvada@linux.intel.com \
    --cc=tglx@linutronix.de \
    /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.