All of lore.kernel.org
 help / color / mirror / Atom feed
* [sashal-stable:pending-5.4 284/288] fs/dlm/lockspace.c:412:9: error: implicit declaration of function 'dlm_midcomms_stop'; did you mean 'dlm_lowcomms_stop'?
@ 2023-03-08 20:50 kernel test robot
  0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2023-03-08 20:50 UTC (permalink / raw)
  To: Sasha Levin; +Cc: oe-kbuild-all

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/sashal/linux-stable.git pending-5.4
head:   22fb0d195f4cb39540659d23b38a609244bfb80a
commit: 313fab3d31360a5b17c8d592a6fb3c97a00cfde9 [284/288] fs: dlm: start midcomms before scand
config: x86_64-randconfig-a015 (https://download.01.org/0day-ci/archive/20230309/202303090455.a2yJHImD-lkp@intel.com/config)
compiler: gcc-11 (Debian 11.3.0-8) 11.3.0
reproduce (this is a W=1 build):
        # https://git.kernel.org/pub/scm/linux/kernel/git/sashal/linux-stable.git/commit/?id=313fab3d31360a5b17c8d592a6fb3c97a00cfde9
        git remote add sashal-stable https://git.kernel.org/pub/scm/linux/kernel/git/sashal/linux-stable.git
        git fetch --no-tags sashal-stable pending-5.4
        git checkout 313fab3d31360a5b17c8d592a6fb3c97a00cfde9
        # save the config file
        mkdir build_dir && cp config build_dir/.config
        make W=1 O=build_dir ARCH=x86_64 olddefconfig
        make W=1 O=build_dir ARCH=x86_64 SHELL=/bin/bash fs/dlm/

If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202303090455.a2yJHImD-lkp@intel.com/

All errors (new ones prefixed by >>):

   fs/dlm/lockspace.c: In function 'threads_start':
>> fs/dlm/lockspace.c:412:9: error: implicit declaration of function 'dlm_midcomms_stop'; did you mean 'dlm_lowcomms_stop'? [-Werror=implicit-function-declaration]
     412 |         dlm_midcomms_stop();
         |         ^~~~~~~~~~~~~~~~~
         |         dlm_lowcomms_stop
   cc1: some warnings being treated as errors


vim +412 fs/dlm/lockspace.c

   391	
   392	static int threads_start(void)
   393	{
   394		int error;
   395	
   396		/* Thread for sending/receiving messages for all lockspace's */
   397		error = dlm_lowcomms_start();
   398		if (error) {
   399			log_print("cannot start dlm midcomms %d", error);
   400			goto fail;
   401		}
   402	
   403		error = dlm_scand_start();
   404		if (error) {
   405			log_print("cannot start dlm_scand thread %d", error);
   406			goto midcomms_fail;
   407		}
   408	
   409		return 0;
   410	
   411	 midcomms_fail:
 > 412		dlm_midcomms_stop();
   413	 fail:
   414		return error;
   415	}
   416	

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

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

only message in thread, other threads:[~2023-03-08 20:51 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-08 20:50 [sashal-stable:pending-5.4 284/288] fs/dlm/lockspace.c:412:9: error: implicit declaration of function 'dlm_midcomms_stop'; did you mean 'dlm_lowcomms_stop'? 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.