|
@@ -318,6 +318,25 @@ remove_store(struct device *dev, struct device_attribute *dummy,
|
|
|
count = ret;
|
|
|
return count;
|
|
|
}
|
|
|
+
|
|
|
+static ssize_t
|
|
|
+dev_bus_rescan_store(struct device *dev, struct device_attribute *attr,
|
|
|
+ const char *buf, size_t count)
|
|
|
+{
|
|
|
+ unsigned long val;
|
|
|
+ struct pci_bus *bus = to_pci_bus(dev);
|
|
|
+
|
|
|
+ if (strict_strtoul(buf, 0, &val) < 0)
|
|
|
+ return -EINVAL;
|
|
|
+
|
|
|
+ if (val) {
|
|
|
+ mutex_lock(&pci_remove_rescan_mutex);
|
|
|
+ pci_rescan_bus(bus);
|
|
|
+ mutex_unlock(&pci_remove_rescan_mutex);
|
|
|
+ }
|
|
|
+ return count;
|
|
|
+}
|
|
|
+
|
|
|
#endif
|
|
|
|
|
|
struct device_attribute pci_dev_attrs[] = {
|
|
@@ -347,6 +366,13 @@ struct device_attribute pci_dev_attrs[] = {
|
|
|
__ATTR_NULL,
|
|
|
};
|
|
|
|
|
|
+struct device_attribute pcibus_dev_attrs[] = {
|
|
|
+#ifdef CONFIG_HOTPLUG
|
|
|
+ __ATTR(rescan, (S_IWUSR|S_IWGRP), NULL, dev_bus_rescan_store),
|
|
|
+#endif
|
|
|
+ __ATTR_NULL,
|
|
|
+};
|
|
|
+
|
|
|
static ssize_t
|
|
|
boot_vga_show(struct device *dev, struct device_attribute *attr, char *buf)
|
|
|
{
|