linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH v1 10/12] dyndbg: add processing of T(race) flag argument
       [not found] <20231103131011.1316396-11-lb@semihalf.com>
@ 2023-11-03 18:03 ` kernel test robot
  2023-11-04  4:33 ` kernel test robot
  1 sibling, 0 replies; 2+ messages in thread
From: kernel test robot @ 2023-11-03 18:03 UTC (permalink / raw)
  To: Łukasz Bartosik, Jason Baron, Jim Cromie, Andrew Morton,
	Kees Cook, Douglas Anderson
  Cc: oe-kbuild-all, Linux Memory Management List, Guenter Roeck,
	Yaniv Tzoreff, Benson Leung, Steven Rostedt, Vincent Whitchurch,
	Pekka Paalanen, Sean Paul, Daniel Vetter, linux-kernel, upstream

Hi Łukasz,

kernel test robot noticed the following build warnings:

[auto build test WARNING on akpm-mm/mm-everything]
[also build test WARNING on linus/master v6.6 next-20231103]
[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#_base_tree_information]

url:    https://github.com/intel-lab-lkp/linux/commits/ukasz-Bartosik/dyndbg-add-_DPRINTK_FLAGS_ENABLED/20231103-212105
base:   https://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm.git mm-everything
patch link:    https://lore.kernel.org/r/20231103131011.1316396-11-lb%40semihalf.com
patch subject: [PATCH v1 10/12] dyndbg: add processing of T(race) flag argument
config: loongarch-randconfig-002-20231103 (https://download.01.org/0day-ci/archive/20231104/202311040120.oiJ1m9Pw-lkp@intel.com/config)
compiler: loongarch64-linux-gcc (GCC) 13.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20231104/202311040120.oiJ1m9Pw-lkp@intel.com/reproduce)

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202311040120.oiJ1m9Pw-lkp@intel.com/

All warnings (new ones prefixed by >>):

>> lib/dynamic_debug.c:157:7: warning: no previous prototype for 'show_T_args' [-Wmissing-prototypes]
     157 | char *show_T_args(struct dd_ctrl *ctrl, char *p)
         |       ^~~~~~~~~~~


vim +/show_T_args +157 lib/dynamic_debug.c

   156	
 > 157	char *show_T_args(struct dd_ctrl *ctrl, char *p)
   158	{
   159		int n;
   160	
   161		n = snprintf(p, FLAG_T_ARGS_LEN, ":%u", ctrl->trace_dst);
   162		WARN_ONCE(n < 0, "printing T flag args value failed\n");
   163	
   164		return n < 0 ? p : p + n;
   165	}
   166	

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH v1 10/12] dyndbg: add processing of T(race) flag argument
       [not found] <20231103131011.1316396-11-lb@semihalf.com>
  2023-11-03 18:03 ` [PATCH v1 10/12] dyndbg: add processing of T(race) flag argument kernel test robot
@ 2023-11-04  4:33 ` kernel test robot
  1 sibling, 0 replies; 2+ messages in thread
From: kernel test robot @ 2023-11-04  4:33 UTC (permalink / raw)
  To: Łukasz Bartosik, Jason Baron, Jim Cromie, Andrew Morton,
	Kees Cook, Douglas Anderson
  Cc: oe-kbuild-all, Linux Memory Management List, Guenter Roeck,
	Yaniv Tzoreff, Benson Leung, Steven Rostedt, Vincent Whitchurch,
	Pekka Paalanen, Sean Paul, Daniel Vetter, linux-kernel, upstream

Hi Łukasz,

kernel test robot noticed the following build warnings:

[auto build test WARNING on akpm-mm/mm-everything]
[also build test WARNING on linus/master v6.6 next-20231103]
[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#_base_tree_information]

url:    https://github.com/intel-lab-lkp/linux/commits/ukasz-Bartosik/dyndbg-add-_DPRINTK_FLAGS_ENABLED/20231103-212105
base:   https://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm.git mm-everything
patch link:    https://lore.kernel.org/r/20231103131011.1316396-11-lb%40semihalf.com
patch subject: [PATCH v1 10/12] dyndbg: add processing of T(race) flag argument
config: i386-randconfig-063-20231104 (https://download.01.org/0day-ci/archive/20231104/202311041243.SboyHnXN-lkp@intel.com/config)
compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20231104/202311041243.SboyHnXN-lkp@intel.com/reproduce)

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202311041243.SboyHnXN-lkp@intel.com/

sparse warnings: (new ones prefixed by >>)
>> lib/dynamic_debug.c:157:6: sparse: sparse: symbol 'show_T_args' was not declared. Should it be static?

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-11-04  4:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20231103131011.1316396-11-lb@semihalf.com>
2023-11-03 18:03 ` [PATCH v1 10/12] dyndbg: add processing of T(race) flag argument kernel test robot
2023-11-04  4:33 ` kernel test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).