mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [GIT PATCH] PCI fix for 2.6.25-rc5 git tree
@ 2008-03-13 17:24 Greg KH
  2008-03-13 17:25 ` [PATCH 1/1] PCI: fix issue with busses registering multiple times in sysfs Greg Kroah-Hartman
  0 siblings, 1 reply; 2+ messages in thread
From: Greg KH @ 2008-03-13 17:24 UTC (permalink / raw)
  To: Linus Torvalds, Andrew Morton
  Cc: linux-kernel, linux-pci, pcihpd-discuss, Guennadi Liakhovetski

Here is one PCI fix for your 2.6.25-rc5 git tree.

It fixes the duplicate sysfs entry problem as reported by Guennadi
Liakhovetski, now the machine can be properly shut down :)

The problem is also in 2.6.24 and earlier, but there we only get the
warning of a message saying that a link could not be created.  I'll send
a patch for -stable after this goes in as it will not directly apply
there.

Please pull from:
	master.kernel.org:/pub/scm/linux/kernel/git/gregkh/pci-2.6.git/

thanks,

greg k-h


-------------

 drivers/pci/bus.c   |    6 +++++-
 include/linux/pci.h |    1 +
 2 files changed, 6 insertions(+), 1 deletions(-)

---------------

Greg Kroah-Hartman (1):
      PCI: fix issue with busses registering multiple times in sysfs


^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH 1/1] PCI: fix issue with busses registering multiple times in sysfs
  2008-03-13 17:24 [GIT PATCH] PCI fix for 2.6.25-rc5 git tree Greg KH
@ 2008-03-13 17:25 ` Greg Kroah-Hartman
  0 siblings, 0 replies; 2+ messages in thread
From: Greg Kroah-Hartman @ 2008-03-13 17:25 UTC (permalink / raw)
  To: linux-pci
  Cc: linux-kernel, Greg Kroah-Hartman, Linus Torvalds, Guennadi Liakhovetski

PCI busses can be registered multiple times, so we need to detect if we
have registered our bus structure in sysfs already.  If so, don't do it
again.

Thanks to Guennadi Liakhovetski <g.liakhovetski@gmx.de> for reporting
the problem, and to Linus for poking me to get me to believe that it was
a real problem.

Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
---
 drivers/pci/bus.c   |    6 +++++-
 include/linux/pci.h |    1 +
 2 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/drivers/pci/bus.c b/drivers/pci/bus.c
index 6a9403d..d708358 100644
--- a/drivers/pci/bus.c
+++ b/drivers/pci/bus.c
@@ -143,14 +143,18 @@ void pci_bus_add_devices(struct pci_bus *bus)
 			/* register the bus with sysfs as the parent is now
 			 * properly registered. */
 			child_bus = dev->subordinate;
+			if (child_bus->is_added)
+				continue;
 			child_bus->dev.parent = child_bus->bridge;
 			retval = device_register(&child_bus->dev);
 			if (retval)
 				dev_err(&dev->dev, "Error registering pci_bus,"
 					" continuing...\n");
-			else
+			else {
+				child_bus->is_added = 1;
 				retval = device_create_file(&child_bus->dev,
 							&dev_attr_cpuaffinity);
+			}
 			if (retval)
 				dev_err(&dev->dev, "Error creating cpuaffinity"
 					" file, continuing...\n");
diff --git a/include/linux/pci.h b/include/linux/pci.h
index 38eff19..9010f54 100644
--- a/include/linux/pci.h
+++ b/include/linux/pci.h
@@ -278,6 +278,7 @@ struct pci_bus {
 	struct device		dev;
 	struct bin_attribute	*legacy_io; /* legacy I/O for this bus */
 	struct bin_attribute	*legacy_mem; /* legacy mem */
+	unsigned int		is_added:1;
 };
 
 #define pci_bus_b(n)	list_entry(n, struct pci_bus, node)
-- 
1.5.4.3


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-03-13 17:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-03-13 17:24 [GIT PATCH] PCI fix for 2.6.25-rc5 git tree Greg KH
2008-03-13 17:25 ` [PATCH 1/1] PCI: fix issue with busses registering multiple times in sysfs Greg Kroah-Hartman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome