public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: zhouchuangao <zhouchuangao@vivo.com>,
	Ingo Molnar <mingo@redhat.com>,
	Peter Zijlstra <peterz@infradead.org>,
	Juri Lelli <juri.lelli@redhat.com>,
	Vincent Guittot <vincent.guittot@linaro.org>,
	Dietmar Eggemann <dietmar.eggemann@arm.com>,
	Steven Rostedt <rostedt@goodmis.org>,
	Ben Segall <bsegall@google.com>, Mel Gorman <mgorman@suse.de>,
	Daniel Bristot de Oliveira <bristot@redhat.com>,
	linux-kernel@vger.kernel.org
Cc: kbuild-all@lists.01.org
Subject: Re: [PATCH] kernel/sched/core: Print the time when the process entered the D state
Date: Fri, 9 Jul 2021 14:53:47 +0800	[thread overview]
Message-ID: <202107091445.OafKnBIs-lkp@intel.com> (raw)
In-Reply-To: <1625807160-112041-1-git-send-email-zhouchuangao@vivo.com>

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

Hi zhouchuangao,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on tip/sched/core]
[also build test ERROR on tip/master linux/master linus/master v5.13 next-20210709]
[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/zhouchuangao/kernel-sched-core-Print-the-time-when-the-process-entered-the-D-state/20210709-130636
base:   https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git 031e3bd8986fffe31e1ddbf5264cccfe30c9abd7
config: i386-tinyconfig (attached as .config)
compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
reproduce (this is a W=1 build):
        # https://github.com/0day-ci/linux/commit/287f10f679a0c30c4ac57abb8a36e698619554d5
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review zhouchuangao/kernel-sched-core-Print-the-time-when-the-process-entered-the-D-state/20210709-130636
        git checkout 287f10f679a0c30c4ac57abb8a36e698619554d5
        # save the attached .config to linux build tree
        mkdir build_dir
        make W=1 O=build_dir ARCH=i386 SHELL=/bin/bash kernel/sched/

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 >>):

   kernel/sched/core.c: In function 'ttwu_stat':
   kernel/sched/core.c:3267:13: warning: variable 'rq' set but not used [-Wunused-but-set-variable]
    3267 |  struct rq *rq;
         |             ^~
   In file included from include/linux/kernel.h:17,
                    from arch/x86/include/asm/percpu.h:27,
                    from arch/x86/include/asm/current.h:6,
                    from include/linux/sched.h:12,
                    from include/linux/kthread.h:6,
                    from include/trace/events/sched.h:8,
                    from kernel/sched/core.c:10:
   kernel/sched/core.c: In function 'sched_show_task':
>> kernel/sched/core.c:8158:16: error: 'struct sched_info' has no member named 'last_arrival'
    8158 |   p->sched_info.last_arrival);
         |                ^
   include/linux/printk.h:385:26: note: in definition of macro 'pr_cont'
     385 |  printk(KERN_CONT fmt, ##__VA_ARGS__)
         |                          ^~~~~~~~~~~


vim +8158 kernel/sched/core.c

  8134	
  8135	void sched_show_task(struct task_struct *p)
  8136	{
  8137		unsigned long free = 0;
  8138		int ppid;
  8139	
  8140		if (!try_get_task_stack(p))
  8141			return;
  8142	
  8143		pr_info("task:%-15.15s state:%c", p->comm, task_state_to_char(p));
  8144	
  8145		if (task_is_running(p))
  8146			pr_cont("  running task    ");
  8147	#ifdef CONFIG_DEBUG_STACK_USAGE
  8148		free = stack_not_used(p);
  8149	#endif
  8150		ppid = 0;
  8151		rcu_read_lock();
  8152		if (pid_alive(p))
  8153			ppid = task_pid_nr(rcu_dereference(p->real_parent));
  8154		rcu_read_unlock();
  8155		pr_cont(" stack:%5lu pid:%5d ppid:%6d flags:0x%08lx sched:%llu\n",
  8156			free, task_pid_nr(p), ppid,
  8157			(unsigned long)task_thread_info(p)->flags,
> 8158			p->sched_info.last_arrival);
  8159	
  8160		print_worker_info(KERN_INFO, p);
  8161		print_stop_info(KERN_INFO, p);
  8162		show_stack(p, NULL, KERN_INFO);
  8163		put_task_stack(p);
  8164	}
  8165	EXPORT_SYMBOL_GPL(sched_show_task);
  8166	

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

  reply	other threads:[~2021-07-09  6:54 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-09  5:05 [PATCH] kernel/sched/core: Print the time when the process entered the D state zhouchuangao
2021-07-09  6:53 ` kernel test robot [this message]
2021-07-09  7:48 ` kernel test robot
2021-07-09  9:46 ` Peter Zijlstra

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=202107091445.OafKnBIs-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=bristot@redhat.com \
    --cc=bsegall@google.com \
    --cc=dietmar.eggemann@arm.com \
    --cc=juri.lelli@redhat.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mgorman@suse.de \
    --cc=mingo@redhat.com \
    --cc=peterz@infradead.org \
    --cc=rostedt@goodmis.org \
    --cc=vincent.guittot@linaro.org \
    --cc=zhouchuangao@vivo.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