On 2025-04-25 20:04:43 [+0800], Junxiao Chang wrote: > --- a/drivers/gpu/drm/i915/gt/intel_gsc.c > +++ b/drivers/gpu/drm/i915/gt/intel_gsc.c > @@ -284,7 +284,8 @@ static void gsc_irq_handler(struct intel_gt *gt, unsigned > int intf_id) > if (gt->gsc.intf[intf_id].irq < 0) > return; > > - ret = generic_handle_irq(gt->gsc.intf[intf_id].irq); > + ret = generic_handle_irq_safe(gt->gsc.intf[intf_id].irq); > +
that extra line looks odd, other than that Acked-by: Sebastian Andrzej Siewior <bige...@linutronix.de> > if (ret) > gt_err_ratelimited(gt, "error handling GSC irq: %d\n", ret); > } Sebastian