lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <202601260641.AHnz8FCz-lkp@intel.com>
Date: Mon, 26 Jan 2026 06:19:07 +0100
From: kernel test robot <lkp@...el.com>
To: Haoxiang Li <lihaoxiang@...c.iscas.ac.cn>, sathya.prakash@...adcom.com,
	sreekanth.reddy@...adcom.com, suganath-prabu.subramani@...adcom.com,
	James.Bottomley@...senpartnership.com, martin.petersen@...cle.com
Cc: oe-kbuild-all@...ts.linux.dev, MPT-FusionLinux.pdl@...adcom.com,
	linux-scsi@...r.kernel.org, linux-kernel@...r.kernel.org,
	Haoxiang Li <lihaoxiang@...c.iscas.ac.cn>
Subject: Re: [PATCH] scsi: mpt3sas: fix a potential memory leak in
 scsih_pci_slot_reset()

Hi Haoxiang,

kernel test robot noticed the following build errors:

[auto build test ERROR on jejb-scsi/for-next]
[also build test ERROR on mkp-scsi/for-next linus/master v6.19-rc7 next-20260123]
[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/Haoxiang-Li/scsi-mpt3sas-fix-a-potential-memory-leak-in-scsih_pci_slot_reset/20260126-001420
base:   https://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git for-next
patch link:    https://lore.kernel.org/r/20260125161201.2156109-1-lihaoxiang%40isrc.iscas.ac.cn
patch subject: [PATCH] scsi: mpt3sas: fix a potential memory leak in scsih_pci_slot_reset()
config: x86_64-rhel-9.4-ltp (https://download.01.org/0day-ci/archive/20260126/202601260641.AHnz8FCz-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/20260126/202601260641.AHnz8FCz-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/202601260641.AHnz8FCz-lkp@intel.com/

All errors (new ones prefixed by >>):

   drivers/scsi/mpt3sas/mpt3sas_scsih.c: In function 'scsih_pci_slot_reset':
>> drivers/scsi/mpt3sas/mpt3sas_scsih.c:12533:9: error: implicit declaration of function 'mpt3sas_base_unmap_resources'; did you mean 'mpt3sas_base_map_resources'? [-Wimplicit-function-declaration]
   12533 |         mpt3sas_base_unmap_resources(ioc);
         |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
         |         mpt3sas_base_map_resources


vim +12533 drivers/scsi/mpt3sas/mpt3sas_scsih.c

 12496	
 12497	/**
 12498	 * scsih_pci_slot_reset - Called when PCI slot has been reset.
 12499	 * @pdev: PCI device struct
 12500	 *
 12501	 * Description: This routine is called by the pci error recovery
 12502	 * code after the PCI slot has been reset, just before we
 12503	 * should resume normal operations.
 12504	 */
 12505	static pci_ers_result_t
 12506	scsih_pci_slot_reset(struct pci_dev *pdev)
 12507	{
 12508		struct Scsi_Host *shost;
 12509		struct MPT3SAS_ADAPTER *ioc;
 12510		int rc;
 12511	
 12512		if (_scsih_get_shost_and_ioc(pdev, &shost, &ioc))
 12513			return PCI_ERS_RESULT_DISCONNECT;
 12514	
 12515		ioc_info(ioc, "PCI error: slot reset callback!!\n");
 12516	
 12517		ioc->pci_error_recovery = 0;
 12518		ioc->pdev = pdev;
 12519		pci_restore_state(pdev);
 12520		rc = mpt3sas_base_map_resources(ioc);
 12521		if (rc)
 12522			return PCI_ERS_RESULT_DISCONNECT;
 12523	
 12524		ioc_info(ioc, "Issuing Hard Reset as part of PCI Slot Reset\n");
 12525		rc = mpt3sas_base_hard_reset_handler(ioc, FORCE_BIG_HAMMER);
 12526	
 12527		ioc_warn(ioc, "hard reset: %s\n",
 12528			 (rc == 0) ? "success" : "failed");
 12529	
 12530		if (!rc)
 12531			return PCI_ERS_RESULT_RECOVERED;
 12532	
 12533		mpt3sas_base_unmap_resources(ioc);
 12534		return PCI_ERS_RESULT_DISCONNECT;
 12535	}
 12536	

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

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ