]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
misc: pci_endpoint_test: Fix to support > 10 pci-endpoint-test devices
authorKishon Vijay Abraham I <kishon@ti.com>
Tue, 17 Mar 2020 10:01:57 +0000 (15:31 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 8 Apr 2020 07:10:00 +0000 (09:10 +0200)
commit 6b443e5c80b67a7b8a85b33d052d655ef9064e90 upstream.

Adding more than 10 pci-endpoint-test devices results in
"kobject_add_internal failed for pci-endpoint-test.1 with -EEXIST, don't
try to register things with the same name in the same directory". This
is because commit 2c156ac71c6b ("misc: Add host side PCI driver for PCI
test function device") limited the length of the "name" to 20 characters.
Change the length of the name to 24 in order to support upto 10000
pci-endpoint-test devices.

Fixes: 2c156ac71c6b ("misc: Add host side PCI driver for PCI test function device")
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Cc: stable@vger.kernel.org # v4.14+
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/pci_endpoint_test.c

index a5e317073d95d1718af18ebb09e5d5194004943b..f4b66eb19271f09790937225db06fc72225f0779 100644 (file)
@@ -633,7 +633,7 @@ static int pci_endpoint_test_probe(struct pci_dev *pdev,
 {
        int err;
        int id;
-       char name[20];
+       char name[24];
        enum pci_barno bar;
        void __iomem *base;
        struct device *dev = &pdev->dev;