Linux s390 Architecture development
 help / color / mirror / Atom feed
* [PATCH v6 0/1] PCI: hotplug: Add 'uevent' sysfs attribute to trigger slot events
@ 2026-08-07 18:01 Ramesh Errabolu
  2026-08-07 18:01 ` [PATCH v6 1/1] " Ramesh Errabolu
  0 siblings, 1 reply; 3+ messages in thread
From: Ramesh Errabolu @ 2026-08-07 18:01 UTC (permalink / raw)
  To: linux-pci
  Cc: linux-kernel, linux-s390, driver-core, Bjorn Helgaas,
	Lukas Wunner, Krzysztof Wilczyński, Leon Romanovsky,
	Niklas Schnelle, Peter Oberparleiter, Matthew Rosato, Gerd Bayer,
	Heiko Carstens, Vasily Gorbik, Alexander Gordeev, Farhan Ali,
	Ramesh Errabolu

Hi all,

This patch adds support for synthesizing PCI hotplug slot
uevents via a sysfs attribute.

The patch has been rebased on top of the current upstream
development branch and addresses the feedback received
during previous review rounds. In particular, the unnecessary
".show = NULL" assignment noted during review has been removed.

The Reviewed-by and Tested-by tags from the previous revision
have been retained.

I'd appreciate any additional feedback. Please let me know
if further changes are needed.

Thanks,
Ramesh Errabolu

Changes in v6:
- Remove unnecessary .show = NULL as suggested by Bjorn Helgaas
- Rebase onto the latest upstream development branch

Ramesh Errabolu (1):
  PCI: hotplug: Add 'uevent' sysfs attribute to trigger slot events

 drivers/pci/hotplug/pci_hotplug_core.c | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

-- 
2.43.0


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

* [PATCH v6 1/1] PCI: hotplug: Add 'uevent' sysfs attribute to trigger slot events
  2026-08-07 18:01 [PATCH v6 0/1] PCI: hotplug: Add 'uevent' sysfs attribute to trigger slot events Ramesh Errabolu
@ 2026-08-07 18:01 ` Ramesh Errabolu
  2026-08-07 18:14   ` sashiko-bot
  0 siblings, 1 reply; 3+ messages in thread
From: Ramesh Errabolu @ 2026-08-07 18:01 UTC (permalink / raw)
  To: linux-pci
  Cc: linux-kernel, linux-s390, driver-core, Bjorn Helgaas,
	Lukas Wunner, Krzysztof Wilczyński, Leon Romanovsky,
	Niklas Schnelle, Peter Oberparleiter, Matthew Rosato, Gerd Bayer,
	Heiko Carstens, Vasily Gorbik, Alexander Gordeev, Farhan Ali,
	Ramesh Errabolu

Add a write-only 'uevent' sysfs attribute for synthesizing
uevents for a PCI slot. This extends the existing uevent
support which emits a KOBJ_ADD uevent in pci_hp_add() with
the ability to replay such uevents for cold plugged devices.
As such events are only emitted by hotplug capable PCI slots
so is the support for synthesizing them.

The change was validated by manually triggering 'add' uevent
for a specific hotplug PCI slot:

    $ echo "add $(uuidgen)" | sudo tee   \
                /sys/bus/pci/slots/<slot-id>/uevent

Signed-off-by: Ramesh Errabolu <ramesh@linux.ibm.com>
Reviewed-by: Niklas Schnelle <schnelle@linux.ibm.com>
Tested-by: Niklas Schnelle <schnelle@linux.ibm.com>
---
 drivers/pci/hotplug/pci_hotplug_core.c | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/drivers/pci/hotplug/pci_hotplug_core.c b/drivers/pci/hotplug/pci_hotplug_core.c
index fadcf98a8a66..bc8fa2f903b5 100644
--- a/drivers/pci/hotplug/pci_hotplug_core.c
+++ b/drivers/pci/hotplug/pci_hotplug_core.c
@@ -173,12 +173,26 @@ static ssize_t presence_read_file(struct pci_slot *pci_slot, char *buf)
 
 static struct pci_slot_attribute hotplug_slot_attr_presence = {
 	.attr = {.name = "adapter", .mode = S_IFREG | S_IRUGO},
 	.show = presence_read_file,
 };
 
+static ssize_t uevent_write_file(struct pci_slot *slot,
+				 const char *buf, size_t len)
+{
+	int rc;
+
+	rc = kobject_synth_uevent(&slot->kobj, buf, len);
+	return rc ? rc : len;
+}
+
+static struct pci_slot_attribute hotplug_slot_attr_uevent = {
+	.attr = {.name = "uevent", .mode = S_IFREG | 0200},
+	.store = uevent_write_file
+};
+
 static ssize_t test_write_file(struct pci_slot *pci_slot, const char *buf,
 			       size_t count)
 {
 	struct hotplug_slot *slot = pci_slot->hotplug;
 	unsigned long ltest;
 	u32 test;
@@ -251,12 +265,17 @@ static int fs_add_slot(struct hotplug_slot *slot, struct pci_slot *pci_slot)
 		if (retval)
 			dev_err(&pci_slot->bus->dev,
 				"Error creating sysfs link (%d)\n", retval);
 		kobject_put(kobj);
 	}
 
+	retval = sysfs_create_file(&pci_slot->kobj,
+				   &hotplug_slot_attr_uevent.attr);
+	if (retval)
+		goto exit_uevent;
+
 	if (has_power_file(slot)) {
 		retval = sysfs_create_file(&pci_slot->kobj,
 					   &hotplug_slot_attr_power.attr);
 		if (retval)
 			goto exit_power;
 	}
@@ -303,19 +322,24 @@ static int fs_add_slot(struct hotplug_slot *slot, struct pci_slot *pci_slot)
 		sysfs_remove_file(&pci_slot->kobj,
 				  &hotplug_slot_attr_attention.attr);
 exit_attention:
 	if (has_power_file(slot))
 		sysfs_remove_file(&pci_slot->kobj, &hotplug_slot_attr_power.attr);
 exit_power:
+	sysfs_remove_file(&pci_slot->kobj,
+			  &hotplug_slot_attr_uevent.attr);
+exit_uevent:
 	sysfs_remove_link(&pci_slot->kobj, "module");
 exit:
 	return retval;
 }
 
 static void fs_remove_slot(struct hotplug_slot *slot, struct pci_slot *pci_slot)
 {
+	sysfs_remove_file(&pci_slot->kobj, &hotplug_slot_attr_uevent.attr);
+
 	if (has_power_file(slot))
 		sysfs_remove_file(&pci_slot->kobj, &hotplug_slot_attr_power.attr);
 
 	if (has_attention_file(slot))
 		sysfs_remove_file(&pci_slot->kobj,
 				  &hotplug_slot_attr_attention.attr);
-- 
2.43.0


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

* Re: [PATCH v6 1/1] PCI: hotplug: Add 'uevent' sysfs attribute to trigger slot events
  2026-08-07 18:01 ` [PATCH v6 1/1] " Ramesh Errabolu
@ 2026-08-07 18:14   ` sashiko-bot
  0 siblings, 0 replies; 3+ messages in thread
From: sashiko-bot @ 2026-08-07 18:14 UTC (permalink / raw)
  To: Ramesh Errabolu
  Cc: Vasily Gorbik, linux-s390, Alexander Gordeev, linux-pci,
	Heiko Carstens

> Add a write-only 'uevent' sysfs attribute for synthesizing
> uevents for a PCI slot. This extends the existing uevent
> support which emits a KOBJ_ADD uevent in pci_hp_add() with
> the ability to replay such uevents for cold plugged devices.
> As such events are only emitted by hotplug capable PCI slots
> so is the support for synthesizing them.
> 
> The change was validated by manually triggering 'add' uevent
> for a specific hotplug PCI slot:
> 
>     $ echo "add $(uuidgen)" | sudo tee   \
>                 /sys/bus/pci/slots/<slot-id>/uevent
> 
> Signed-off-by: Ramesh Errabolu <ramesh@linux.ibm.com>

Sashiko has reviewed this patch and found no issues. It looks great!

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260807180127.62471-2-ramesh@linux.ibm.com?part=1


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

end of thread, other threads:[~2026-08-07 18:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-07 18:01 [PATCH v6 0/1] PCI: hotplug: Add 'uevent' sysfs attribute to trigger slot events Ramesh Errabolu
2026-08-07 18:01 ` [PATCH v6 1/1] " Ramesh Errabolu
2026-08-07 18:14   ` sashiko-bot

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