From: Harish Chegondi <harish.chegondi@intel.com>
To: Ravi Kishore Koppuravuri <ravi.kishore.koppuravuri@intel.com>
Cc: <igt-dev@lists.freedesktop.org>, <riana.tauro@intel.com>,
<anshuman.gupta@intel.com>, <mallesh.koujalagi@intel.com>,
<raag.jadav@intel.com>, <soham.purkait@intel.com>
Subject: Re: [PATCH v3 00/10] Xe3P GPU Error Injection Test Suite with DRM RAS Netlink Support
Date: Thu, 27 Aug 2026 13:22:46 -0700 [thread overview]
Message-ID: <apCclpWH9W_qgN-6@intel.com> (raw)
In-Reply-To: <20260824164133.129138-1-ravi.kishore.koppuravuri@intel.com>
On Mon, Aug 24, 2026 at 10:11:23PM +0530, Ravi Kishore Koppuravuri wrote:
Hi Ravi,
Are there any new changes in V3 or just a rebase?
Thanks
Harish.
> This series introduces comprehensive error injection testing capabilities
> for Intel Xe3P GPUs, leveraging the DRM RAS (Reliability, Availability,
> Serviceability) Generic Netlink interface for error reporting and event
> notification.
>
> The patch series focuses on the below key areas:
>
> 1. DRM RAS Netlink Library
> Establishes the foundation by introducing a reusable DRM RAS netlink library that
> provides kernel interface abstraction for error management:
>
> - DRM RAS Generic Netlink interface initialization and socket management
> - Error counter querying for per-node error tracking
> - Error threshold configuration (get/set operations)
> - Event notification subscription via multicast groups
>
> 2. Uncorrectable Error Verification
> Implements GT Uncorrectable Unicast Walker Command Parity Error Injection:
>
> - MMIO-based error injection mechanism
> - AER (Advanced Error Reporting) recovery verification
> - Validates Xe driver error handling and recovery flows
> - Includes workload execution post-recovery for robustness testing
>
> 3. Correctable Error Verification
> Adds support for L2 Bank Correctable Error Injection with threshold monitoring:
>
> - Event notification framework for real-time error event monitoring
> - Single and multi-iteration correctable error injection tests
> - Error threshold validation (critical for detecting error saturation)
>
> IGT Test Coverage includes:
>
> - GT Uncorrectable Unicast Walker Command Parity Error
> - L2 Bank Correctable Error (single injection)
> - L2 Bank Correctable Error with threshold=1
> - L2 Bank Correctable Error (16x injections)
>
> Ravi Kishore Koppuravuri (10):
> drm-uapi/drm_ras: Add DRM RAS UAPI header
> lib/meson: Add libnl dependencies for DRM RAS support
> lib/igt_drm_netlink: Introduce DRM RAS Netlink interface library
> lib/igt_drm_netlink: add get_error_counter support
> lib/igt_drm_netlink: add get_error_threshold command support
> lib/igt_drm_netlink: add set_error_threshold command support
> tests/intel/xe_err_injection: Add GT UC Unicast GAM Walker Command
> Parity Error Injection
> lib/igt_drm_netlink: add event notify subscription and event wait
> support
> tests/intel/xe_err_injection: Add tests for L2 bank Corr err threshold
> scenarios
> tests/intel/xe_err_injection: add CRI GPU requirement check
>
> include/drm-uapi/drm_ras.h | 67 ++++
> lib/igt_drm_netlink.c | 565 ++++++++++++++++++++++++++++++
> lib/igt_drm_netlink.h | 48 +++
> lib/meson.build | 9 +
> tests/intel/xe_err_injection.c | 623 +++++++++++++++++++++++++++++++++
> tests/intel/xe_err_injection.h | 28 ++
> tests/meson.build | 1 +
> 7 files changed, 1341 insertions(+)
> create mode 100644 include/drm-uapi/drm_ras.h
> create mode 100644 lib/igt_drm_netlink.c
> create mode 100644 lib/igt_drm_netlink.h
> create mode 100644 tests/intel/xe_err_injection.c
> create mode 100644 tests/intel/xe_err_injection.h
>
> --
> 2.34.1
>
next prev parent reply other threads:[~2026-08-27 20:23 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-24 16:41 [PATCH v3 00/10] Xe3P GPU Error Injection Test Suite with DRM RAS Netlink Support Ravi Kishore Koppuravuri
2026-08-24 16:41 ` [PATCH v3 01/10] drm-uapi/drm_ras: Add DRM RAS UAPI header Ravi Kishore Koppuravuri
2026-08-31 8:43 ` Jani Nikula
2026-08-24 16:41 ` [PATCH v3 02/10] lib/meson: Add libnl dependencies for DRM RAS support Ravi Kishore Koppuravuri
2026-08-24 16:41 ` [PATCH v3 03/10] lib/igt_drm_netlink: Introduce DRM RAS Netlink interface library Ravi Kishore Koppuravuri
2026-08-31 8:46 ` Jani Nikula
2026-08-31 11:30 ` Koppuravuri, Ravi Kishore
2026-08-31 12:33 ` Jani Nikula
2026-09-01 9:41 ` Koppuravuri, Ravi Kishore
2026-08-24 16:41 ` [PATCH v3 04/10] lib/igt_drm_netlink: add get_error_counter support Ravi Kishore Koppuravuri
2026-08-31 8:48 ` Jani Nikula
2026-08-31 11:23 ` Koppuravuri, Ravi Kishore
2026-08-31 12:38 ` Jani Nikula
2026-08-31 15:58 ` Purkait, Soham
2026-09-01 9:43 ` Koppuravuri, Ravi Kishore
2026-08-24 16:41 ` [PATCH v3 05/10] lib/igt_drm_netlink: add get_error_threshold command support Ravi Kishore Koppuravuri
2026-08-24 16:41 ` [PATCH v3 06/10] lib/igt_drm_netlink: add set_error_threshold " Ravi Kishore Koppuravuri
2026-08-24 16:41 ` [PATCH v3 07/10] tests/intel/xe_err_injection: Add GT UC Unicast GAM Walker Command Parity Error Injection Ravi Kishore Koppuravuri
2026-08-26 9:18 ` Purkait, Soham
2026-08-26 13:33 ` Koppuravuri, Ravi Kishore
2026-09-01 9:44 ` Koppuravuri, Ravi Kishore
2026-08-28 3:26 ` Harish Chegondi
2026-09-01 9:45 ` Koppuravuri, Ravi Kishore
2026-08-31 8:02 ` Purkait, Soham
2026-09-01 9:46 ` Koppuravuri, Ravi Kishore
2026-08-24 16:41 ` [PATCH v3 08/10] lib/igt_drm_netlink: add event notify subscription and event wait support Ravi Kishore Koppuravuri
2026-08-24 16:41 ` [PATCH v3 09/10] tests/intel/xe_err_injection: Add tests for L2 bank Corr err threshold scenarios Ravi Kishore Koppuravuri
2026-08-24 16:41 ` [PATCH v3 10/10] tests/intel/xe_err_injection: add CRI GPU requirement check Ravi Kishore Koppuravuri
2026-08-27 20:22 ` Harish Chegondi [this message]
2026-08-28 4:03 ` [PATCH v3 00/10] Xe3P GPU Error Injection Test Suite with DRM RAS Netlink Support Koppuravuri, Ravi Kishore
2026-09-01 16:48 ` Kamil Konieczny
2026-09-02 22:02 ` ✓ i915.CI.BAT: success for Xe3P GPU Error Injection Test Suite with DRM RAS Netlink Support (rev6) Patchwork
2026-09-02 22:13 ` ✓ Xe.CI.BAT: " Patchwork
2026-09-03 13:41 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-09-03 17:00 ` ✗ i915.CI.Full: " Patchwork
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=apCclpWH9W_qgN-6@intel.com \
--to=harish.chegondi@intel.com \
--cc=anshuman.gupta@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=mallesh.koujalagi@intel.com \
--cc=raag.jadav@intel.com \
--cc=ravi.kishore.koppuravuri@intel.com \
--cc=riana.tauro@intel.com \
--cc=soham.purkait@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox