Patch "NTB: EPF: fix possible memory leak in pci_vntb_probe()" has been added to the 5.15-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    NTB: EPF: fix possible memory leak in pci_vntb_probe()

to the 5.15-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     ntb-epf-fix-possible-memory-leak-in-pci_vntb_probe.patch
and it can be found in the queue-5.15 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 070ca1277279ba4a14d5874e2a231becefe0c5be
Author: ruanjinjie <ruanjinjie@xxxxxxxxxx>
Date:   Wed Nov 9 17:28:52 2022 +0800

    NTB: EPF: fix possible memory leak in pci_vntb_probe()
    
    [ Upstream commit 956578e3d397e00d6254dc7b5194d28587f98518 ]
    
    As ntb_register_device() don't handle error of device_register(),
    if ntb_register_device() returns error in pci_vntb_probe(), name of kobject
    which is allocated in dev_set_name() called in device_add() is leaked.
    
    As comment of device_add() says, it should call put_device() to drop the
    reference count that was set in device_initialize()
    when it fails, so the name can be freed in kobject_cleanup().
    
    Signed-off-by: ruanjinjie <ruanjinjie@xxxxxxxxxx>
    Signed-off-by: Jon Mason <jdmason@xxxxxxxx>
    Stable-dep-of: aebfdfe39b93 ("NTB: fix possible name leak in ntb_register_device()")
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/pci/endpoint/functions/pci-epf-vntb.c b/drivers/pci/endpoint/functions/pci-epf-vntb.c
index 1466dd1904175..138742af51707 100644
--- a/drivers/pci/endpoint/functions/pci-epf-vntb.c
+++ b/drivers/pci/endpoint/functions/pci-epf-vntb.c
@@ -1249,6 +1249,7 @@ static int pci_vntb_probe(struct pci_dev *pdev, const struct pci_device_id *id)
 	return 0;
 
 err_register_dev:
+	put_device(&ndev->ntb.dev);
 	return -EINVAL;
 }
 




[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux