public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Dmitry Safonov <dima@arista.com>
Cc: kbuild-all@lists.01.org, linux-kernel@vger.kernel.org,
	Linux Memory Management List <linux-mm@kvack.org>
Subject: Re: [PATCHv2 50/50] kernel: Rename show_stack_loglvl() => show_stack()
Date: Tue, 17 Mar 2020 10:54:28 +0800	[thread overview]
Message-ID: <202003171027.FLcr5k3M%lkp@intel.com> (raw)
In-Reply-To: <20200316143916.195608-51-dima@arista.com>

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

Hi Dmitry,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on arm64/for-next/core]
[also build test ERROR on ia64/next linus/master v5.6-rc6 next-20200316]
[cannot apply to tip/x86/core]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Dmitry-Safonov/Add-log-level-to-show_stack/20200317-080358
base:   https://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git for-next/core
config: sparc-allyesconfig (attached as .config)
compiler: sparc64-linux-gcc (GCC) 9.2.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=9.2.0 make.cross ARCH=sparc 

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

All errors (new ones prefixed by >>):

>> arch/sparc/kernel/traps_64.c:2455:6: error: conflicting types for 'show_stack'
    2455 | void show_stack(struct task_struct *tsk, unsigned long *_ksp)
         |      ^~~~~~~~~~
   In file included from arch/sparc/kernel/traps_64.c:14:
   include/linux/sched/debug.h:33:13: note: previous declaration of 'show_stack' was here
      33 | extern void show_stack(struct task_struct *task, unsigned long *sp,
         |             ^~~~~~~~~~

vim +/show_stack +2455 arch/sparc/kernel/traps_64.c

^1da177e4c3f41 arch/sparc64/kernel/traps.c  Linus Torvalds          2005-04-16  2454  
^1da177e4c3f41 arch/sparc64/kernel/traps.c  Linus Torvalds          2005-04-16 @2455  void show_stack(struct task_struct *tsk, unsigned long *_ksp)
^1da177e4c3f41 arch/sparc64/kernel/traps.c  Linus Torvalds          2005-04-16  2456  {
c6fee0810df4e0 arch/sparc/kernel/traps_64.c David S. Miller         2011-02-26  2457  	unsigned long fp, ksp;
c1f193a7aed1b4 arch/sparc64/kernel/traps.c  David S. Miller         2007-07-30  2458  	struct thread_info *tp;
^1da177e4c3f41 arch/sparc64/kernel/traps.c  Linus Torvalds          2005-04-16  2459  	int count = 0;
667f0cee3e0321 arch/sparc/kernel/traps_64.c David S. Miller         2010-04-21  2460  #ifdef CONFIG_FUNCTION_GRAPH_TRACER
667f0cee3e0321 arch/sparc/kernel/traps_64.c David S. Miller         2010-04-21  2461  	int graph = 0;
667f0cee3e0321 arch/sparc/kernel/traps_64.c David S. Miller         2010-04-21  2462  #endif
^1da177e4c3f41 arch/sparc64/kernel/traps.c  Linus Torvalds          2005-04-16  2463  
^1da177e4c3f41 arch/sparc64/kernel/traps.c  Linus Torvalds          2005-04-16  2464  	ksp = (unsigned long) _ksp;
c1f193a7aed1b4 arch/sparc64/kernel/traps.c  David S. Miller         2007-07-30  2465  	if (!tsk)
c1f193a7aed1b4 arch/sparc64/kernel/traps.c  David S. Miller         2007-07-30  2466  		tsk = current;
c1f193a7aed1b4 arch/sparc64/kernel/traps.c  David S. Miller         2007-07-30  2467  	tp = task_thread_info(tsk);
c1f193a7aed1b4 arch/sparc64/kernel/traps.c  David S. Miller         2007-07-30  2468  	if (ksp == 0UL) {
c1f193a7aed1b4 arch/sparc64/kernel/traps.c  David S. Miller         2007-07-30  2469  		if (tsk == current)
c1f193a7aed1b4 arch/sparc64/kernel/traps.c  David S. Miller         2007-07-30  2470  			asm("mov %%fp, %0" : "=r" (ksp));
c1f193a7aed1b4 arch/sparc64/kernel/traps.c  David S. Miller         2007-07-30  2471  		else
c1f193a7aed1b4 arch/sparc64/kernel/traps.c  David S. Miller         2007-07-30  2472  			ksp = tp->ksp;
c1f193a7aed1b4 arch/sparc64/kernel/traps.c  David S. Miller         2007-07-30  2473  	}
^1da177e4c3f41 arch/sparc64/kernel/traps.c  Linus Torvalds          2005-04-16  2474  	if (tp == current_thread_info())
^1da177e4c3f41 arch/sparc64/kernel/traps.c  Linus Torvalds          2005-04-16  2475  		flushw_all();
^1da177e4c3f41 arch/sparc64/kernel/traps.c  Linus Torvalds          2005-04-16  2476  
^1da177e4c3f41 arch/sparc64/kernel/traps.c  Linus Torvalds          2005-04-16  2477  	fp = ksp + STACK_BIAS;
^1da177e4c3f41 arch/sparc64/kernel/traps.c  Linus Torvalds          2005-04-16  2478  
4fe3ebec122f23 arch/sparc64/kernel/traps.c  David S. Miller         2008-07-17  2479  	printk("Call Trace:\n");
^1da177e4c3f41 arch/sparc64/kernel/traps.c  Linus Torvalds          2005-04-16  2480  	do {
14d2c68baa659c arch/sparc64/kernel/traps.c  David S. Miller         2008-05-21  2481  		struct sparc_stackf *sf;
77c664fa586240 arch/sparc64/kernel/traps.c  David S. Miller         2008-04-24  2482  		struct pt_regs *regs;
77c664fa586240 arch/sparc64/kernel/traps.c  David S. Miller         2008-04-24  2483  		unsigned long pc;
77c664fa586240 arch/sparc64/kernel/traps.c  David S. Miller         2008-04-24  2484  
4f70f7a91bffdc arch/sparc64/kernel/traps.c  David S. Miller         2008-08-12  2485  		if (!kstack_valid(tp, fp))
^1da177e4c3f41 arch/sparc64/kernel/traps.c  Linus Torvalds          2005-04-16  2486  			break;
14d2c68baa659c arch/sparc64/kernel/traps.c  David S. Miller         2008-05-21  2487  		sf = (struct sparc_stackf *) fp;
14d2c68baa659c arch/sparc64/kernel/traps.c  David S. Miller         2008-05-21  2488  		regs = (struct pt_regs *) (sf + 1);
77c664fa586240 arch/sparc64/kernel/traps.c  David S. Miller         2008-04-24  2489  
4f70f7a91bffdc arch/sparc64/kernel/traps.c  David S. Miller         2008-08-12  2490  		if (kstack_is_trap_frame(tp, regs)) {
14d2c68baa659c arch/sparc64/kernel/traps.c  David S. Miller         2008-05-21  2491  			if (!(regs->tstate & TSTATE_PRIV))
14d2c68baa659c arch/sparc64/kernel/traps.c  David S. Miller         2008-05-21  2492  				break;
77c664fa586240 arch/sparc64/kernel/traps.c  David S. Miller         2008-04-24  2493  			pc = regs->tpc;
77c664fa586240 arch/sparc64/kernel/traps.c  David S. Miller         2008-04-24  2494  			fp = regs->u_regs[UREG_I6] + STACK_BIAS;
77c664fa586240 arch/sparc64/kernel/traps.c  David S. Miller         2008-04-24  2495  		} else {
14d2c68baa659c arch/sparc64/kernel/traps.c  David S. Miller         2008-05-21  2496  			pc = sf->callers_pc;
14d2c68baa659c arch/sparc64/kernel/traps.c  David S. Miller         2008-05-21  2497  			fp = (unsigned long)sf->fp + STACK_BIAS;
77c664fa586240 arch/sparc64/kernel/traps.c  David S. Miller         2008-04-24  2498  		}
77c664fa586240 arch/sparc64/kernel/traps.c  David S. Miller         2008-04-24  2499  
4fe3ebec122f23 arch/sparc64/kernel/traps.c  David S. Miller         2008-07-17  2500  		printk(" [%016lx] %pS\n", pc, (void *) pc);
667f0cee3e0321 arch/sparc/kernel/traps_64.c David S. Miller         2010-04-21  2501  #ifdef CONFIG_FUNCTION_GRAPH_TRACER
667f0cee3e0321 arch/sparc/kernel/traps_64.c David S. Miller         2010-04-21  2502  		if ((pc + 8UL) == (unsigned long) &return_to_handler) {
945626db0961d8 arch/sparc/kernel/traps_64.c Steven Rostedt (VMware  2018-12-07  2503) 			struct ftrace_ret_stack *ret_stack;
945626db0961d8 arch/sparc/kernel/traps_64.c Steven Rostedt (VMware  2018-12-07  2504) 			ret_stack = ftrace_graph_get_ret_stack(tsk, graph);
945626db0961d8 arch/sparc/kernel/traps_64.c Steven Rostedt (VMware  2018-12-07  2505) 			if (ret_stack) {
945626db0961d8 arch/sparc/kernel/traps_64.c Steven Rostedt (VMware  2018-12-07  2506) 				pc = ret_stack->ret;
667f0cee3e0321 arch/sparc/kernel/traps_64.c David S. Miller         2010-04-21  2507  				printk(" [%016lx] %pS\n", pc, (void *) pc);
667f0cee3e0321 arch/sparc/kernel/traps_64.c David S. Miller         2010-04-21  2508  				graph++;
667f0cee3e0321 arch/sparc/kernel/traps_64.c David S. Miller         2010-04-21  2509  			}
667f0cee3e0321 arch/sparc/kernel/traps_64.c David S. Miller         2010-04-21  2510  		}
667f0cee3e0321 arch/sparc/kernel/traps_64.c David S. Miller         2010-04-21  2511  #endif
^1da177e4c3f41 arch/sparc64/kernel/traps.c  Linus Torvalds          2005-04-16  2512  	} while (++count < 16);
^1da177e4c3f41 arch/sparc64/kernel/traps.c  Linus Torvalds          2005-04-16  2513  }
^1da177e4c3f41 arch/sparc64/kernel/traps.c  Linus Torvalds          2005-04-16  2514  

:::::: The code at line 2455 was first introduced by commit
:::::: 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 Linux-2.6.12-rc2

:::::: TO: Linus Torvalds <torvalds@ppc970.osdl.org>
:::::: CC: Linus Torvalds <torvalds@ppc970.osdl.org>

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

      reply	other threads:[~2020-03-17  2:55 UTC|newest]

Thread overview: 58+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20200316143916.195608-1-dima@arista.com>
2020-03-16 14:38 ` [PATCHv2 01/50] kallsyms/printk: Add loglvl to print_ip_sym() Dmitry Safonov
2020-03-16 15:29   ` Joe Perches
2020-04-17 22:59     ` Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 02/50] alpha: Add show_stack_loglvl() Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 03/50] arc: " Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 04/50] arm/asm: Add loglvl to c_backtrace() Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 05/50] arm: Add loglvl to unwind_backtrace() Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 06/50] arm: Add loglvl to dump_backtrace() Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 07/50] arm: Wire up dump_backtrace_{entry,stm} Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 08/50] arm: Add show_stack_loglvl() Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 09/50] arm64: Add loglvl to dump_backtrace() Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 10/50] arm64: Add show_stack_loglvl() Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 11/50] c6x: " Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 12/50] csky: " Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 13/50] h8300: " Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 14/50] hexagon: " Dmitry Safonov
2020-03-17 15:34   ` Brian Cain
2020-03-16 14:38 ` [PATCHv2 15/50] ia64: Pass log level as arg into ia64_do_show_stack() Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 16/50] ia64: Add show_stack_loglvl() Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 17/50] m68k: " Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 18/50] microblaze: Add loglvl to microblaze_unwind_inner() Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 19/50] microblaze: Add loglvl to microblaze_unwind() Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 20/50] microblaze: Add show_stack_loglvl() Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 21/50] mips: " Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 22/50] nds32: " Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 23/50] nios2: " Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 24/50] openrisc: " Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 25/50] parisc: " Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 26/50] powerpc: " Dmitry Safonov
2020-03-19  4:03   ` Michael Ellerman
2020-03-16 14:38 ` [PATCHv2 27/50] riscv: " Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 28/50] s390: " Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 29/50] sh: Add loglvl to dump_mem() Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 30/50] sh: Remove needless printk() Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 31/50] sh: Add loglvl to printk_address() Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 32/50] sh: Add loglvl to show_trace() Dmitry Safonov
2020-03-16 14:38 ` [PATCHv2 33/50] sh: Add show_stack_loglvl() Dmitry Safonov
2020-03-16 14:39 ` [PATCHv2 34/50] sparc: " Dmitry Safonov
2020-03-16 14:39 ` [PATCHv2 35/50] um/sysrq: Remove needless variable sp Dmitry Safonov
2020-03-16 14:39 ` [PATCHv2 36/50] um: Add show_stack_loglvl() Dmitry Safonov
2020-03-16 14:39 ` [PATCHv2 37/50] unicore32: Remove unused pmode argument in c_backtrace() Dmitry Safonov
2020-03-16 14:39 ` [PATCHv2 38/50] unicore32: Add loglvl to c_backtrace() Dmitry Safonov
2020-03-16 14:39 ` [PATCHv2 39/50] unicore32: Add show_stack_loglvl() Dmitry Safonov
2020-03-16 14:39 ` [PATCHv2 40/50] x86: Add missing const qualifiers for log_lvl Dmitry Safonov
2020-03-16 14:39 ` [PATCHv2 41/50] x86: Add show_stack_loglvl() Dmitry Safonov
2020-03-16 14:39 ` [PATCHv2 42/50] xtensa: Add loglvl to show_trace() Dmitry Safonov
2020-03-16 14:39 ` [PATCHv2 43/50] xtensa: Add show_stack_loglvl() Dmitry Safonov
2020-03-16 14:39 ` [PATCHv2 44/50] sysrq: Use show_stack_loglvl() Dmitry Safonov
2020-03-16 14:39 ` [PATCHv2 45/50] x86/amd_gart: Print stacktrace for a leak with KERN_ERR Dmitry Safonov
2020-03-16 14:39 ` [PATCHv2 46/50] power: Use show_stack_loglvl() Dmitry Safonov
2020-03-18 12:54   ` Rafael J. Wysocki
2020-03-16 14:39 ` [PATCHv2 47/50] kdb: Don't play with console_loglevel Dmitry Safonov
2020-03-17  0:06   ` Doug Anderson
2020-03-17 16:00   ` Daniel Thompson
2020-03-16 14:39 ` [PATCHv2 48/50] sched: Print stack trace with KERN_INFO Dmitry Safonov
2020-03-16 14:39 ` [PATCHv2 49/50] kernel: Use show_stack_loglvl() Dmitry Safonov
2020-03-16 14:39 ` [PATCHv2 50/50] kernel: Rename show_stack_loglvl() => show_stack() Dmitry Safonov
2020-03-17  2:54   ` kbuild test robot [this message]

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=202003171027.FLcr5k3M%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=dima@arista.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.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