All of lore.kernel.org
 help / color / mirror / Atom feed
* [jfern:rcu-segcb 3/10] kernel/rcu/tree_plugin.h:792:57: error: too few arguments to function call, expected 4, have 3
@ 2020-06-24 18:54 kernel test robot
  0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2020-06-24 18:54 UTC (permalink / raw)
  To: kbuild-all

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

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/jfern/linux.git rcu-segcb
head:   039f56b3996656cf3a0bdc306fcd09fc02fe3fbb
commit: 94e6141197fc434bf1fcccfa862129e4958fb6e0 [3/10] rcu/trace: Add name of the source for gp_seq
config: x86_64-allyesconfig (attached as .config)
compiler: clang version 11.0.0 (https://github.com/llvm/llvm-project 1d4c87335d5236ea1f35937e1014980ba961ae34)
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 x86_64 cross compiling tool for clang build
        # apt-get install binutils-x86-64-linux-gnu
        git checkout 94e6141197fc434bf1fcccfa862129e4958fb6e0
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64 

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

   In file included from kernel/rcu/tree.c:4456:
>> kernel/rcu/tree_plugin.h:792:57: error: too few arguments to function call, expected 4, have 3
                                  __this_cpu_read(rcu_data.gp_seq), TPS("cpuqs"));
                                                                                ^
   include/trace/events/rcu.h:69:1: note: 'trace_rcu_grace_period' declared here
   TRACE_EVENT_RCU(rcu_grace_period,
   ^
   include/trace/events/rcu.h:11:25: note: expanded from macro 'TRACE_EVENT_RCU'
   #define TRACE_EVENT_RCU TRACE_EVENT
                           ^
   include/linux/tracepoint.h:512:2: note: expanded from macro 'TRACE_EVENT'
           DECLARE_TRACE(name, PARAMS(proto), PARAMS(args))
           ^
   include/linux/tracepoint.h:376:2: note: expanded from macro 'DECLARE_TRACE'
           __DECLARE_TRACE(name, PARAMS(proto), PARAMS(args),              \
           ^
   include/linux/tracepoint.h:232:21: note: expanded from macro '__DECLARE_TRACE'
           static inline void trace_##name(proto)                          \
                              ^
   <scratch space>:15:1: note: expanded from here
   trace_rcu_grace_period
   ^
   1 error generated.

vim +792 kernel/rcu/tree_plugin.h

f41d911f8c49a5 kernel/rcutree_plugin.h  Paul E. McKenney          2009-08-22  779  
45975c7d21a1c0 kernel/rcu/tree_plugin.h Paul E. McKenney          2018-07-02  780  /*
90326f0521a880 kernel/rcu/tree_plugin.h Sebastian Andrzej Siewior 2019-10-15  781   * Note a quiescent state for PREEMPTION=n.  Because we do not need to know
45975c7d21a1c0 kernel/rcu/tree_plugin.h Paul E. McKenney          2018-07-02  782   * how many quiescent states passed, just if there was at least one since
45975c7d21a1c0 kernel/rcu/tree_plugin.h Paul E. McKenney          2018-07-02  783   * the start of the grace period, this just sets a flag.  The caller must
45975c7d21a1c0 kernel/rcu/tree_plugin.h Paul E. McKenney          2018-07-02  784   * have disabled preemption.
45975c7d21a1c0 kernel/rcu/tree_plugin.h Paul E. McKenney          2018-07-02  785   */
45975c7d21a1c0 kernel/rcu/tree_plugin.h Paul E. McKenney          2018-07-02  786  static void rcu_qs(void)
d28139c4e96713 kernel/rcu/tree_plugin.h Paul E. McKenney          2018-06-28  787  {
45975c7d21a1c0 kernel/rcu/tree_plugin.h Paul E. McKenney          2018-07-02  788  	RCU_LOCKDEP_WARN(preemptible(), "rcu_qs() invoked with preemption enabled!!!");
45975c7d21a1c0 kernel/rcu/tree_plugin.h Paul E. McKenney          2018-07-02  789  	if (!__this_cpu_read(rcu_data.cpu_no_qs.s))
45975c7d21a1c0 kernel/rcu/tree_plugin.h Paul E. McKenney          2018-07-02  790  		return;
45975c7d21a1c0 kernel/rcu/tree_plugin.h Paul E. McKenney          2018-07-02  791  	trace_rcu_grace_period(TPS("rcu_sched"),
45975c7d21a1c0 kernel/rcu/tree_plugin.h Paul E. McKenney          2018-07-02 @792  			       __this_cpu_read(rcu_data.gp_seq), TPS("cpuqs"));
45975c7d21a1c0 kernel/rcu/tree_plugin.h Paul E. McKenney          2018-07-02  793  	__this_cpu_write(rcu_data.cpu_no_qs.b.norm, false);
45975c7d21a1c0 kernel/rcu/tree_plugin.h Paul E. McKenney          2018-07-02  794  	if (!__this_cpu_read(rcu_data.cpu_no_qs.b.exp))
45975c7d21a1c0 kernel/rcu/tree_plugin.h Paul E. McKenney          2018-07-02  795  		return;
45975c7d21a1c0 kernel/rcu/tree_plugin.h Paul E. McKenney          2018-07-02  796  	__this_cpu_write(rcu_data.cpu_no_qs.b.exp, false);
63d4c8c97948b0 kernel/rcu/tree_plugin.h Paul E. McKenney          2018-07-03  797  	rcu_report_exp_rdp(this_cpu_ptr(&rcu_data));
d28139c4e96713 kernel/rcu/tree_plugin.h Paul E. McKenney          2018-06-28  798  }
d28139c4e96713 kernel/rcu/tree_plugin.h Paul E. McKenney          2018-06-28  799  

:::::: The code at line 792 was first introduced by commit
:::::: 45975c7d21a1c0aba97e3d8007e2a7c123145748 rcu: Define RCU-sched API in terms of RCU for Tree RCU PREEMPT builds

:::::: TO: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
:::::: CC: Paul E. McKenney <paulmck@linux.vnet.ibm.com>

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

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-06-24 18:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-24 18:54 [jfern:rcu-segcb 3/10] kernel/rcu/tree_plugin.h:792:57: error: too few arguments to function call, expected 4, have 3 kernel test robot

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.