linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [mcgrof-next:20210708-block-fixes-v2 19/89] drivers/block/z2ram.c:339:3: error: implicit declaration of function 'blk_cleaup_disk'; did you mean 'blk_cleanup_disk'?
@ 2021-07-15 11:37 kernel test robot
  0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2021-07-15 11:37 UTC (permalink / raw)
  To: Luis Chamberlain; +Cc: kbuild-all, linux-kernel

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

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux-next.git 20210708-block-fixes-v2
head:   db0174e39de7dc941f158ce53ee3af95b1635b62
commit: 9a3284fe5f9c6d8eb4f86f92329edcdb5921c8f8 [19/89] z2ram: add error handling support for add_disk()
config: m68k-allmodconfig (attached as .config)
compiler: m68k-linux-gcc (GCC) 10.3.0
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
        # https://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux-next.git/commit/?id=9a3284fe5f9c6d8eb4f86f92329edcdb5921c8f8
        git remote add mcgrof-next https://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux-next.git
        git fetch --no-tags mcgrof-next 20210708-block-fixes-v2
        git checkout 9a3284fe5f9c6d8eb4f86f92329edcdb5921c8f8
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-10.3.0 make.cross ARCH=m68k 

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

   drivers/block/z2ram.c: In function 'z2ram_register_disk':
>> drivers/block/z2ram.c:339:3: error: implicit declaration of function 'blk_cleaup_disk'; did you mean 'blk_cleanup_disk'? [-Werror=implicit-function-declaration]
     339 |   blk_cleaup_disk(disk);
         |   ^~~~~~~~~~~~~~~
         |   blk_cleanup_disk
   cc1: some warnings being treated as errors


vim +339 drivers/block/z2ram.c

   317	
   318	static int z2ram_register_disk(int minor)
   319	{
   320		struct gendisk *disk;
   321		int err;
   322	
   323		disk = blk_mq_alloc_disk(&tag_set, NULL);
   324		if (IS_ERR(disk))
   325			return PTR_ERR(disk);
   326	
   327		disk->major = Z2RAM_MAJOR;
   328		disk->first_minor = minor;
   329		disk->minors = 1;
   330		disk->fops = &z2_fops;
   331		if (minor)
   332			sprintf(disk->disk_name, "z2ram%d", minor);
   333		else
   334			sprintf(disk->disk_name, "z2ram");
   335	
   336		z2ram_gendisk[minor] = disk;
   337		err = add_disk(disk);
   338		if (err)
 > 339			blk_cleaup_disk(disk);
   340		return err;
   341	}
   342	

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

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

only message in thread, other threads:[~2021-07-15 11:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-15 11:37 [mcgrof-next:20210708-block-fixes-v2 19/89] drivers/block/z2ram.c:339:3: error: implicit declaration of function 'blk_cleaup_disk'; did you mean 'blk_cleanup_disk'? 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).