[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <202511262250.jglT8Ap3-lkp@intel.com>
Date: Wed, 26 Nov 2025 22:45:20 +0800
From: kernel test robot <lkp@...el.com>
To: Abdun Nihaal <nihaal@....iitm.ac.in>, lee@...nel.org
Cc: oe-kbuild-all@...ts.linux.dev, Abdun Nihaal <nihaal@....iitm.ac.in>,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] mfd: mc13xxx-core: Fix memory leak in
mc13xxx_add_subdevice_pdata()
Hi Abdun,
kernel test robot noticed the following build errors:
[auto build test ERROR on lee-mfd/for-mfd-next]
[also build test ERROR on lee-mfd/for-mfd-fixes lee-leds/for-leds-next linus/master v6.18-rc7 next-20251126]
[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/Abdun-Nihaal/mfd-mc13xxx-core-Fix-memory-leak-in-mc13xxx_add_subdevice_pdata/20251126-012428
base: https://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git for-mfd-next
patch link: https://lore.kernel.org/r/20251125171936.98101-1-nihaal%40cse.iitm.ac.in
patch subject: [PATCH] mfd: mc13xxx-core: Fix memory leak in mc13xxx_add_subdevice_pdata()
config: i386-randconfig-141-20251126 (https://download.01.org/0day-ci/archive/20251126/202511262250.jglT8Ap3-lkp@intel.com/config)
compiler: gcc-14 (Debian 14.2.0-19) 14.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251126/202511262250.jglT8Ap3-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@...el.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202511262250.jglT8Ap3-lkp@intel.com/
All errors (new ones prefixed by >>):
drivers/mfd/mc13xxx-core.c: In function 'mc13xxx_add_subdevice_pdata':
>> drivers/mfd/mc13xxx-core.c:388:17: error: implicit declaration of function 'kfree' [-Wimplicit-function-declaration]
388 | kfree(cell.name);
| ^~~~~
vim +/kfree +388 drivers/mfd/mc13xxx-core.c
364
365 static int mc13xxx_add_subdevice_pdata(struct mc13xxx *mc13xxx,
366 const char *format, void *pdata, size_t pdata_size)
367 {
368 int ret;
369 char buf[30];
370 const char *name = mc13xxx_get_chipname(mc13xxx);
371
372 struct mfd_cell cell = {
373 .platform_data = pdata,
374 .pdata_size = pdata_size,
375 };
376
377 /* there is no asnprintf in the kernel :-( */
378 if (snprintf(buf, sizeof(buf), format, name) > sizeof(buf))
379 return -E2BIG;
380
381 cell.name = kmemdup(buf, strlen(buf) + 1, GFP_KERNEL);
382 if (!cell.name)
383 return -ENOMEM;
384
385 ret = mfd_add_devices(mc13xxx->dev, -1, &cell, 1, NULL, 0,
386 regmap_irq_get_domain(mc13xxx->irq_data));
387 if (ret)
> 388 kfree(cell.name);
389 return ret;
390 }
391
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
Powered by blists - more mailing lists