* Claude review: Pass down hot-plug CONNECTOR ID to user-space
2026-02-17 19:00 [PATCH v7 0/2] " Nicolas Frattaroli
@ 2026-02-17 20:43 ` Claude Code Review Bot
0 siblings, 0 replies; 8+ messages in thread
From: Claude Code Review Bot @ 2026-02-17 20:43 UTC (permalink / raw)
To: dri-devel-reviews
Overall Series Review
Subject: Pass down hot-plug CONNECTOR ID to user-space
Author: Nicolas Frattaroli <nicolas.frattaroli@collabora.com>
Patches: 3
Reviewed: 2026-02-18T06:43:45.823156
---
This two-patch series adds per-connector hotplug event reporting to the DRM subsystem. Instead of sending a single global hotplug uevent (which forces userspace to re-probe all connectors), it sends individual uevents identifying the specific connector(s) that changed. The motivation is well-described: compositors like Weston can miss rapid on-off-on transitions when they have to guess which connector caused the event.
The approach is straightforward: patch 1 adds a `pending_hp` boolean to `drm_connector` that tracks whether a connector has a status change pending notification, and patch 2 converts the polling and HPD paths to iterate over connectors with `pending_hp` set and send individual events for each.
There is one bug in the series: the `delayed_event` path in `output_poll_execute` sets `changed = true` without any connector having `pending_hp` set, so the new connector-iterating loop will silently drop the hotplug notification. This is a functional regression. There is also a performance concern around `drm_client_dev_hotplug()` being invoked N times instead of once when N connectors change simultaneously.
---
Generated by Claude Code Patch Reviewer
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v9 0/2] Pass down hot-plug CONNECTOR ID to user-space
@ 2026-04-22 18:24 Nicolas Frattaroli
2026-04-22 18:24 ` [PATCH v9 1/2] drm/connector: Fix epoch_counter docs to reflect reality Nicolas Frattaroli
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Nicolas Frattaroli @ 2026-04-22 18:24 UTC (permalink / raw)
To: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Simona Vetter, Stanislav Lisovskiy, Ville Syrjälä,
Louis Chauvet, Haneen Mohammed, Melissa Wen, Daniel Stone,
Ian Forbes, Dmitry Baryshkov
Cc: linux-kernel, dri-devel, kernel, wayland-devel,
Nicolas Frattaroli, Marius Vlad
This series addresses a shortcoming whereby a hot plug event is sent
without it being passed the actual connector that caused it. This takes
into consideration both the polling path and the HPD (Hot Plug Detect)
path.
The motivation is that user-space applications such as Weston would
previously receive non-connector-specific hotplug events, and then have
to figure out themselves which connector needs to have a modeset
executed on. This notably did not work when the hotplug events came in
too fast, resulting in Weston missing an on-off-on transition of a
connector, seeing that its state was unchanged from "on" so can't be the
one that was hotplugged, and skipping reinitialising it as it looks
through the other connectors that could've caused it.
The real world implication is that on setups with slightly sketchy HDMI
connections, a brief flicker in the HPD signal could result in video
output bidding farewell entirely until a manual proper re-plug was
performed.
By sending connector specific hotplug events, this ambiguity is resolved
without any change to the user-space API. Future work should however
make the kernel explicitly request a modeset from userspace through a
more robust path, either by using link-status (nb. the userspace side
may not handle it properly at present) or by exposing the epoch counter
through the uAPI such that fragile state comparison code is no longer
needed.
This change results in potentially more hotplug events being sent than
previously, as n changed connectors at a time result in n hotplug
events, rather than just a single one.
Signed-off-by: Nicolas Frattaroli <nicolas.frattaroli@collabora.com>
---
Changes in v9:
- Get rid of the kmalloc_array by splitting the hotplug event into its
two constituent parts to avoid the deadlock.
- Link to v8: https://patch.msgid.link/20260422-hot-plug-passup-v8-0-5cfae6ba4119@collabora.com
Changes in v8:
- Drop pending_hp patch
- Add patch correcting epoch_counter documentation
- Rework implementation such that hotplug events are still sent outside
the mode_config mutex, but don't iterate through the connector list
without the lock.
- Link to v7: https://patch.msgid.link/20260415-hot-plug-passup-v7-0-9a27ef5e2428@collabora.com
Changes in v7 RESEND:
- None, other than removing the leftover diffstat from the cover letter
- Link to v7: https://lore.kernel.org/r/20260217-hot-plug-passup-v7-0-f8221b2aab51@collabora.com
Changes in v7:
- Drop the two vkms patches, as I don't want them to be blocked on
review. I still think they're correct, but they're not essential and
don't need to block this series.
- Link to v6: https://lore.kernel.org/r/20260123-hot-plug-passup-v6-0-aaaf61d960bb@collabora.com
Changes in v6:
- Rewrote cover letter to explain the motivation for this series more
plainly
- Rename "status_changed" to "pending_hp"
- Set "pending_hp" in the existing path that would also affect
epoch_counter
- No longer set the boolean in drm_helper_probe_single_connector_modes,
as it does not appear to be necessary
- Reword commits to better justify the changes
- Link to v5: https://lore.kernel.org/r/20251111162338.15141-1-marius.vlad@collabora.com/
Changes in v5:
- vkms: add support for sending the CONNECTOR ID when hot-plugging through
ConfigFS - as reported by Louis, vkms can now make use of ConfigFS to
simulate connector status.
- vkms: add a small change to ignore previous/old drm connector status
when sending out hot-plug uevent.
- Link to v4: https://lore.kernel.org/r/20251103174558.7709-1-marius.vlad@collabora.com/
Changes in v4:
- removed the "This patch" bit - Dmitry
- added a short note when the flag is set and cleared - Dmitry
- address double dead-locking detected - kbot: https://lore.kernel.org/dri-devel/202509251410.fdfbcac3-lkp@intel.com/
- virtual connectors do not seem have any kind of hotplug - added
polling in vkms - as noted by Ian
- Link to v3: https://lore.kernel.org/r/20250923083636.4749-1-marius.vlad@collabora.com/
Changes in v3:
- Address comments from Dmitry:
- guard connector status write with mode_config.mutex
- avoid setting up the connector status and immediately unset it. Do the
unset in drm_kms_helper_hotplug_event/drm_kms_helper_connector_hotplug_event
- Link to v2: https://lore.kernel.org/r/20250729165708.9947-1-marius.vlad@collabora.com/
Changes in v2:
- Address comments from Daniel:
- split patch into 2, one that introduces a bool to track connector
connection status change and a patch that uses that to be able to send
hot plug events with the proper CONNECTOR ID to udev and further pass
that down to user-space
- nuke out mutex when iterating connector list
- fix typo
- Link to v1: https://lore.kernel.org/r/20250627131751.2004-1-marius.vlad@collabora.com/
---
Nicolas Frattaroli (2):
drm/connector: Fix epoch_counter docs to reflect reality
drm: Send per-connector hotplug events
drivers/gpu/drm/drm_probe_helper.c | 37 ++++++++++++++++---------------------
include/drm/drm_connector.h | 5 ++++-
2 files changed, 20 insertions(+), 22 deletions(-)
---
base-commit: 489e26ada57ce96a2ee3e5853cfe74981ef85bbd
change-id: 20260121-hot-plug-passup-f8ed03f7c202
Best regards,
--
Nicolas Frattaroli <nicolas.frattaroli@collabora.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v9 1/2] drm/connector: Fix epoch_counter docs to reflect reality
2026-04-22 18:24 [PATCH v9 0/2] Pass down hot-plug CONNECTOR ID to user-space Nicolas Frattaroli
@ 2026-04-22 18:24 ` Nicolas Frattaroli
2026-04-22 21:22 ` Claude review: " Claude Code Review Bot
2026-04-22 18:24 ` [PATCH v9 2/2] drm: Send per-connector hotplug events Nicolas Frattaroli
2026-04-22 21:22 ` Claude review: Pass down hot-plug CONNECTOR ID to user-space Claude Code Review Bot
2 siblings, 1 reply; 8+ messages in thread
From: Nicolas Frattaroli @ 2026-04-22 18:24 UTC (permalink / raw)
To: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Simona Vetter, Stanislav Lisovskiy, Ville Syrjälä,
Louis Chauvet, Haneen Mohammed, Melissa Wen, Daniel Stone,
Ian Forbes, Dmitry Baryshkov
Cc: linux-kernel, dri-devel, kernel, wayland-devel,
Nicolas Frattaroli
Since the very day epoch_counter in drm_connector was introduced, its
documentation was not accurate. It claims it's used to detect "any other
changes [...] besides status", when in reality, it's used to detect
changes including status, as a status change also increases the epoch
counter.
Adjust the documentation to rectify this discrepancy.
Fixes: 5186421cbfe2 ("drm: Introduce epoch counter to drm_connector")
Signed-off-by: Nicolas Frattaroli <nicolas.frattaroli@collabora.com>
---
include/drm/drm_connector.h | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/include/drm/drm_connector.h b/include/drm/drm_connector.h
index 3e422a4f2e72..446385a12f4b 100644
--- a/include/drm/drm_connector.h
+++ b/include/drm/drm_connector.h
@@ -2264,7 +2264,10 @@ struct drm_connector {
*/
struct mutex edid_override_mutex;
- /** @epoch_counter: used to detect any other changes in connector, besides status */
+ /**
+ * @epoch_counter: Used to detect changes in connector. Increased when
+ * the connector, including its status, is changed.
+ */
u64 epoch_counter;
/**
--
2.53.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v9 2/2] drm: Send per-connector hotplug events
2026-04-22 18:24 [PATCH v9 0/2] Pass down hot-plug CONNECTOR ID to user-space Nicolas Frattaroli
2026-04-22 18:24 ` [PATCH v9 1/2] drm/connector: Fix epoch_counter docs to reflect reality Nicolas Frattaroli
@ 2026-04-22 18:24 ` Nicolas Frattaroli
2026-04-22 21:22 ` Claude review: " Claude Code Review Bot
2026-04-22 21:22 ` Claude review: Pass down hot-plug CONNECTOR ID to user-space Claude Code Review Bot
2 siblings, 1 reply; 8+ messages in thread
From: Nicolas Frattaroli @ 2026-04-22 18:24 UTC (permalink / raw)
To: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Simona Vetter, Stanislav Lisovskiy, Ville Syrjälä,
Louis Chauvet, Haneen Mohammed, Melissa Wen, Daniel Stone,
Ian Forbes, Dmitry Baryshkov
Cc: linux-kernel, dri-devel, kernel, wayland-devel,
Nicolas Frattaroli, Marius Vlad
Try to send per-connector hotplug events as often as possible, rather
than connector-less global hotplug events. This does result in more
hotplug events if multiple connectors changed at the same time, but
give userspace more actionable information.
Since the hotplug event needs to be sent outside of the mode_config
mutex to avoid a deadlock, the drm_client_dev_hotplug() call is split
off from the drm_sysfs_(connector_)?hotplug_event calls.
Co-developed-by: Marius Vlad <marius.vlad@collabora.com>
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Signed-off-by: Nicolas Frattaroli <nicolas.frattaroli@collabora.com>
---
drivers/gpu/drm/drm_probe_helper.c | 37 ++++++++++++++++---------------------
1 file changed, 16 insertions(+), 21 deletions(-)
diff --git a/drivers/gpu/drm/drm_probe_helper.c b/drivers/gpu/drm/drm_probe_helper.c
index d4dc8cb45bce..2daa4242ce7e 100644
--- a/drivers/gpu/drm/drm_probe_helper.c
+++ b/drivers/gpu/drm/drm_probe_helper.c
@@ -760,16 +760,12 @@ static void output_poll_execute(struct work_struct *work)
struct drm_connector *connector;
struct drm_connector_list_iter conn_iter;
enum drm_connector_status old_status;
- bool repoll = false, changed;
+ bool repoll = false, changed = false;
u64 old_epoch_counter;
if (!dev->mode_config.poll_enabled)
return;
- /* Pick up any changes detected by the probe functions. */
- changed = dev->mode_config.delayed_event;
- dev->mode_config.delayed_event = false;
-
if (!drm_kms_helper_poll) {
if (dev->mode_config.poll_running) {
drm_kms_helper_disable_hpd(dev);
@@ -836,6 +832,7 @@ static void output_poll_execute(struct work_struct *work)
connector->base.id, connector->name,
old_epoch_counter, connector->epoch_counter);
+ drm_sysfs_connector_hotplug_event(connector);
changed = true;
}
}
@@ -844,8 +841,15 @@ static void output_poll_execute(struct work_struct *work)
mutex_unlock(&dev->mode_config.mutex);
out:
+ /* Pick up any changes detected by the probe functions. */
+ if (dev->mode_config.delayed_event) {
+ dev->mode_config.delayed_event = false;
+ changed = true;
+ drm_sysfs_hotplug_event(dev);
+ }
+
if (changed)
- drm_kms_helper_hotplug_event(dev);
+ drm_client_dev_hotplug(dev);
if (repoll)
schedule_delayed_work(delayed_work, DRM_OUTPUT_POLL_PERIOD);
@@ -1081,9 +1085,9 @@ EXPORT_SYMBOL(drm_connector_helper_hpd_irq_event);
*/
bool drm_helper_hpd_irq_event(struct drm_device *dev)
{
- struct drm_connector *connector, *first_changed_connector = NULL;
struct drm_connector_list_iter conn_iter;
- int changed = 0;
+ struct drm_connector *connector;
+ bool changed = false;
if (!dev->mode_config.poll_enabled)
return false;
@@ -1096,24 +1100,15 @@ bool drm_helper_hpd_irq_event(struct drm_device *dev)
continue;
if (check_connector_changed(connector)) {
- if (!first_changed_connector) {
- drm_connector_get(connector);
- first_changed_connector = connector;
- }
-
- changed++;
+ changed = true;
+ drm_sysfs_connector_hotplug_event(connector);
}
}
drm_connector_list_iter_end(&conn_iter);
mutex_unlock(&dev->mode_config.mutex);
- if (changed == 1)
- drm_kms_helper_connector_hotplug_event(first_changed_connector);
- else if (changed > 0)
- drm_kms_helper_hotplug_event(dev);
-
- if (first_changed_connector)
- drm_connector_put(first_changed_connector);
+ if (changed)
+ drm_client_dev_hotplug(dev);
return changed;
}
--
2.53.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Claude review: Pass down hot-plug CONNECTOR ID to user-space
2026-04-22 18:24 [PATCH v9 0/2] Pass down hot-plug CONNECTOR ID to user-space Nicolas Frattaroli
2026-04-22 18:24 ` [PATCH v9 1/2] drm/connector: Fix epoch_counter docs to reflect reality Nicolas Frattaroli
2026-04-22 18:24 ` [PATCH v9 2/2] drm: Send per-connector hotplug events Nicolas Frattaroli
@ 2026-04-22 21:22 ` Claude Code Review Bot
2 siblings, 0 replies; 8+ messages in thread
From: Claude Code Review Bot @ 2026-04-22 21:22 UTC (permalink / raw)
To: dri-devel-reviews
Overall Series Review
Subject: Pass down hot-plug CONNECTOR ID to user-space
Author: Nicolas Frattaroli <nicolas.frattaroli@collabora.com>
Patches: 3
Reviewed: 2026-04-23T07:22:52.089066
---
This is a well-motivated 2-patch series at v9 that improves DRM hotplug event reporting by sending per-connector `CONNECTOR=<id>` uevents instead of generic global hotplug events. The cover letter clearly explains the real-world problem: compositors like Weston can miss rapid on-off-on HPD transitions because they can't identify which connector changed. The approach is sound — split the sysfs uevent (which is safe to call with the mutex held) from `drm_client_dev_hotplug()` (which needs to be called without mode_config locks), thus avoiding the deadlock that plagued earlier versions.
The series is clean and simple at 2 patches / net -1 lines changed. The first patch is a trivial doc fix, and the second implements the actual behavioral change. The code is a simplification over the current baseline which already had partial per-connector support (the `first_changed_connector` logic in `drm_helper_hpd_irq_event`). I have a few observations but nothing blocking.
---
Generated by Claude Code Patch Reviewer
^ permalink raw reply [flat|nested] 8+ messages in thread
* Claude review: drm/connector: Fix epoch_counter docs to reflect reality
2026-04-22 18:24 ` [PATCH v9 1/2] drm/connector: Fix epoch_counter docs to reflect reality Nicolas Frattaroli
@ 2026-04-22 21:22 ` Claude Code Review Bot
0 siblings, 0 replies; 8+ messages in thread
From: Claude Code Review Bot @ 2026-04-22 21:22 UTC (permalink / raw)
To: dri-devel-reviews
Patch Review
**Verdict: Looks good.**
This is a straightforward documentation fix. The old comment:
```c
/** @epoch_counter: used to detect any other changes in connector, besides status */
```
is replaced with:
```c
/**
* @epoch_counter: Used to detect changes in connector. Increased when
* the connector, including its status, is changed.
*/
```
The fix is correct. The `epoch_counter` is bumped in `drm_connector_set_status_locked()` (among other places), so it very much does track status changes. The Fixes tag referencing the original commit `5186421cbfe2` is appropriate since the doc was wrong from the start.
No issues.
---
Generated by Claude Code Patch Reviewer
^ permalink raw reply [flat|nested] 8+ messages in thread
* Claude review: drm: Send per-connector hotplug events
2026-04-22 18:24 ` [PATCH v9 2/2] drm: Send per-connector hotplug events Nicolas Frattaroli
@ 2026-04-22 21:22 ` Claude Code Review Bot
0 siblings, 0 replies; 8+ messages in thread
From: Claude Code Review Bot @ 2026-04-22 21:22 UTC (permalink / raw)
To: dri-devel-reviews
Patch Review
**Verdict: Looks good, with minor observations.**
**Design approach — correct and clean:**
The key insight in v9 is decomposing `drm_kms_helper_hotplug_event()` (which calls `drm_sysfs_hotplug_event()` + `drm_client_dev_hotplug()`) into its two parts. The `drm_sysfs_connector_hotplug_event()` calls are safe to make inside the `mode_config.mutex` since they only do `kobject_uevent_env()`, while `drm_client_dev_hotplug()` is deferred to after the lock is released. This avoids the deadlock from earlier versions and avoids needing a temporary allocation for connector IDs.
**`output_poll_execute` changes:**
The poll path now calls `drm_sysfs_connector_hotplug_event(connector)` inline within the loop (under the mutex), and defers the `drm_client_dev_hotplug(dev)` call to after `mutex_unlock()`:
```c
+ drm_sysfs_connector_hotplug_event(connector);
changed = true;
```
and later:
```c
+ if (dev->mode_config.delayed_event) {
+ dev->mode_config.delayed_event = false;
+ changed = true;
+ drm_sysfs_hotplug_event(dev);
+ }
+
if (changed)
- drm_kms_helper_hotplug_event(dev);
+ drm_client_dev_hotplug(dev);
```
This is correct. The `delayed_event` handling has been moved from before the lock acquisition to after the lock release in the `out:` label. This is a subtle but important change:
- **Observation 1 (minor):** In the original code, `delayed_event` was consumed before the `goto out` on `!drm_kms_helper_poll`, meaning a delayed event would still fire `drm_kms_helper_hotplug_event()`. In the new code, the `delayed_event` check is at the `out:` label, so it's also reached from that path — behavior is preserved. Good.
- **Observation 2 (minor):** In the original code, `delayed_event` was consumed before the `mutex_trylock` failure path (`goto out` with `repoll = true`). In the new code, the same applies — if the trylock fails, we still check `delayed_event` at `out:`, which is correct and actually slightly better since we don't lose the delayed event on trylock failure. In the old code, a trylock failure after consuming `delayed_event` would fire the hotplug event. The new code does the same via the `out:` label path. Correct.
- **Observation 3 (race on `delayed_event`):** The `delayed_event` flag is read and cleared without holding the `mode_config.mutex` (it's in the `out:` block after the unlock). This is the same as the original code (which also read it before acquiring the lock), so it's not a regression. The flag is set under the poll work context which is single-threaded, and races with `drm_helper_probe_single_connector_modes` setting it are benign (worst case: an extra poll cycle). Fine.
**`drm_helper_hpd_irq_event` changes:**
The old code tracked `first_changed_connector` and a `changed` count, then dispatched either `drm_kms_helper_connector_hotplug_event()` for single-connector changes or `drm_kms_helper_hotplug_event()` for multi-connector changes. The new code simply calls `drm_sysfs_connector_hotplug_event()` for each changed connector within the loop, then calls `drm_client_dev_hotplug()` once after the lock is released:
```c
if (check_connector_changed(connector)) {
- if (!first_changed_connector) {
- drm_connector_get(connector);
- first_changed_connector = connector;
- }
- changed++;
+ changed = true;
+ drm_sysfs_connector_hotplug_event(connector);
}
```
This is a nice simplification — the `first_changed_connector` / refcount dance is eliminated entirely. The `drm_sysfs_connector_hotplug_event()` call is safe under `mode_config.mutex` since it just does a `kobject_uevent_env()`.
- **Observation 4 (behavioral change in multi-connector case):** Previously, if 3 connectors changed simultaneously, userspace got 1 generic `HOTPLUG=1` uevent (without `CONNECTOR=`). Now it gets 3 separate `HOTPLUG=1 CONNECTOR=<id>` uevents plus a single `drm_client_dev_hotplug()`. This is intentional per the cover letter and is strictly better for userspace — more information, no loss of the old signal. Well-designed compositors already handle `CONNECTOR=` uevents. Older compositors that ignore `CONNECTOR=` still see `HOTPLUG=1` and re-probe everything, so backwards compatibility is maintained.
- **Observation 5 (multiple `drm_client_dev_hotplug` calls):** In both paths, `drm_client_dev_hotplug()` is called exactly once if anything changed, which is correct and avoids redundant fbdev/fbcon restores.
**No issues found.** The patch is a clean improvement that simplifies the code while providing better information to userspace. The locking split is correct — uevent delivery inside the lock, client notification outside.
---
Generated by Claude Code Patch Reviewer
^ permalink raw reply [flat|nested] 8+ messages in thread
* Claude review: Pass down hot-plug CONNECTOR ID to user-space
2026-04-22 12:35 [PATCH v8 0/2] " Nicolas Frattaroli
@ 2026-04-22 21:36 ` Claude Code Review Bot
0 siblings, 0 replies; 8+ messages in thread
From: Claude Code Review Bot @ 2026-04-22 21:36 UTC (permalink / raw)
To: dri-devel-reviews
Overall Series Review
Subject: Pass down hot-plug CONNECTOR ID to user-space
Author: Nicolas Frattaroli <nicolas.frattaroli@collabora.com>
Patches: 4
Reviewed: 2026-04-23T07:36:45.659725
---
This is a well-motivated v8 of a 2-patch series that fixes a real-world problem: userspace (Weston) missing rapid HPD on-off-on transitions because the hotplug uevent didn't identify which connector changed. The approach — collecting changed connectors into an array, then sending per-connector hotplug events outside the lock — is sound and addresses the deadlock concern from earlier versions.
The series is clean, small, and the cover letter does a good job explaining the history and trade-offs. Two concerns worth discussing: (1) a potential array bounds issue and (2) a behavioral change in `drm_helper_hpd_irq_event` return value semantics.
**Verdict**: Mostly good, one potential bug to address, otherwise minor observations.
---
---
Generated by Claude Code Patch Reviewer
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-04-22 21:36 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-22 18:24 [PATCH v9 0/2] Pass down hot-plug CONNECTOR ID to user-space Nicolas Frattaroli
2026-04-22 18:24 ` [PATCH v9 1/2] drm/connector: Fix epoch_counter docs to reflect reality Nicolas Frattaroli
2026-04-22 21:22 ` Claude review: " Claude Code Review Bot
2026-04-22 18:24 ` [PATCH v9 2/2] drm: Send per-connector hotplug events Nicolas Frattaroli
2026-04-22 21:22 ` Claude review: " Claude Code Review Bot
2026-04-22 21:22 ` Claude review: Pass down hot-plug CONNECTOR ID to user-space Claude Code Review Bot
-- strict thread matches above, loose matches on Subject: below --
2026-04-22 12:35 [PATCH v8 0/2] " Nicolas Frattaroli
2026-04-22 21:36 ` Claude review: " Claude Code Review Bot
2026-02-17 19:00 [PATCH v7 0/2] " Nicolas Frattaroli
2026-02-17 20:43 ` Claude review: " Claude Code Review Bot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox