All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] drm/xe/pf: Do not return an error for unrecognized VF events
@ 2026-06-24  9:56 Michał Winiarski
  2026-06-24  9:56 ` [PATCH 2/3] drm/xe/pf: Add support for VF Pause abort event Michał Winiarski
                   ` (6 more replies)
  0 siblings, 7 replies; 9+ messages in thread
From: Michał Winiarski @ 2026-06-24  9:56 UTC (permalink / raw)
  To: intel-xe; +Cc: Michal Wajdeczko, Michał Winiarski

Notifications about VF state are generally not considered critical
enough to warrant PF GT-level error and subsequent reset.
Convert the error to dmesg log.

Reported-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Michał Winiarski <michal.winiarski@intel.com>
---
 drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c b/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c
index 058585f063a93..65f015d0ede51 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c
@@ -1973,7 +1973,7 @@ static int pf_handle_vf_event(struct xe_gt *gt, u32 vfid, u32 eventid)
 	case GUC_PF_NOTIFY_VF_FIXUP_DONE:
 		break;
 	default:
-		return -ENOPKG;
+		xe_gt_sriov_notice(gt, "unrecognized VF%u event %#x\n", vfid, eventid);
 	}
 	return 0;
 }
-- 
2.54.0


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

end of thread, other threads:[~2026-06-24 13:32 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-24  9:56 [PATCH 1/3] drm/xe/pf: Do not return an error for unrecognized VF events Michał Winiarski
2026-06-24  9:56 ` [PATCH 2/3] drm/xe/pf: Add support for VF Pause abort event Michał Winiarski
2026-06-24  9:56 ` [PATCH 3/3] drm/xe/pf: Add the definition of VF resfix " Michał Winiarski
2026-06-24 12:02   ` K V P, Satyanarayana
2026-06-24 10:02 ` ✗ CI.checkpatch: warning for series starting with [1/3] drm/xe/pf: Do not return an error for unrecognized VF events Patchwork
2026-06-24 10:03 ` ✓ CI.KUnit: success " Patchwork
2026-06-24 11:59 ` [PATCH 1/3] " K V P, Satyanarayana
2026-06-24 12:19 ` ✓ Xe.CI.BAT: success for series starting with [1/3] " Patchwork
2026-06-24 13:32 ` ✗ Xe.CI.FULL: failure " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.