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: clang-built-linux@googlegroups.com, 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 15:48:11 +0800	[thread overview]
Message-ID: <202107091508.dpvHyKE2-lkp@intel.com> (raw)
In-Reply-To: <1625807160-112041-1-git-send-email-zhouchuangao@vivo.com>

[-- Attachment #1: Type: text/plain, Size: 4199 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: riscv-randconfig-r022-20210709 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project 8d69635ed9ecf36fd0ca85906bfde17949671cbe)
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 riscv cross compiling tool for clang build
        # apt-get install binutils-riscv64-linux-gnu
        # 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
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross O=build_dir ARCH=riscv 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:3201:6: warning: no previous prototype for function 'sched_set_stop_task' [-Wmissing-prototypes]
   void sched_set_stop_task(int cpu, struct task_struct *stop)
        ^
   kernel/sched/core.c:3201:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
   void sched_set_stop_task(int cpu, struct task_struct *stop)
   ^
   static 
   kernel/sched/core.c:6049:35: warning: no previous prototype for function 'schedule_user' [-Wmissing-prototypes]
   asmlinkage __visible void __sched schedule_user(void)
                                     ^
   kernel/sched/core.c:6049:22: note: declare 'static' if the function is not intended to be used outside of this translation unit
   asmlinkage __visible void __sched schedule_user(void)
                        ^
                        static 
>> kernel/sched/core.c:8158:17: error: no member named 'last_arrival' in 'struct sched_info'
                   p->sched_info.last_arrival);
                   ~~~~~~~~~~~~~ ^
   include/linux/printk.h:385:26: note: expanded from macro 'pr_cont'
           printk(KERN_CONT fmt, ##__VA_ARGS__)
                                   ^~~~~~~~~~~
   2 warnings and 1 error generated.


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

  parent reply	other threads:[~2021-07-09  7:48 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
2021-07-09  7:48 ` kernel test robot [this message]
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=202107091508.dpvHyKE2-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=bristot@redhat.com \
    --cc=bsegall@google.com \
    --cc=clang-built-linux@googlegroups.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