* [PATCH i-g-t 0/2] tests/intel/xe_debugfs: Add debugfs entry
@ 2026-06-16 5:13 Sobin Thomas
2026-06-16 5:13 ` [PATCH i-g-t 1/2] tests/intel/xe_debugfs: Add debugfs optional entry validation Sobin Thomas
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Sobin Thomas @ 2026-06-16 5:13 UTC (permalink / raw)
To: igt-dev; +Cc: piotr.piorkowski, kamil.konieczny, Sobin Thomas
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Extend the root-dir subtest to validate additional Xe debugfs
entries. Optional entries are those that may not be present on all
platforms or configurations — their absence is not treated as a failure.
Validate:
Patch 1 adds validation for optional debugfs entries
Patch 2 adds non-empty validation for existing entries that
are expected to always provide content.
Sobin Thomas (2):
tests/intel/xe_debugfs: Add debugfs optional entry validation
tests/intel/xe_debugfs: Add checks for existing root dir entries
tests/intel/xe_debugfs.c | 187 +++++++++++++++++++++++++++++++++++++--
1 file changed, 178 insertions(+), 9 deletions(-)
--
2.52.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH i-g-t 1/2] tests/intel/xe_debugfs: Add debugfs optional entry validation
2026-06-16 5:13 [PATCH i-g-t 0/2] tests/intel/xe_debugfs: Add debugfs entry Sobin Thomas
@ 2026-06-16 5:13 ` Sobin Thomas
2026-06-16 5:13 ` [PATCH i-g-t 2/2] tests/intel/xe_debugfs: Add checks for existing root dir entries Sobin Thomas
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Sobin Thomas @ 2026-06-16 5:13 UTC (permalink / raw)
To: igt-dev; +Cc: piotr.piorkowski, kamil.konieczny, Sobin Thomas
Extend the root-dir subtest to validate additional optional Xe debugfs
entries. Optional entries are those that may not be present on all
platforms or configurations — their absence is not treated as a failure.
Validate:
- dgfx_pkg_residencies: Counter reads are non empty
- dgfx_pcie_link_residencies: PCIE LINK string content
- sriov_info: entry is non-empty
- workarounds: entry is non-empty
- atomic_svm_timeslice_ms: integer read/write
- poor_man_system_atomic_support: boolean read/write
- disable_late_binding: boolean read/write
v2: Fixed the optional file check and added fail count.
Replaced igt_debug with igt_info in few places (kamil)
v3: Removed uniused condition params and restored has_vram() usage.
Used igt_info() for validation failure logs.
Kept only new optional debugfs entries in this patch. (kamil)
Signed-off-by: Sobin Thomas <sobin.thomas@intel.com>
---
tests/intel/xe_debugfs.c | 177 ++++++++++++++++++++++++++++++++++++++-
1 file changed, 173 insertions(+), 4 deletions(-)
diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c
index 587e3e785..d7a204a09 100644
--- a/tests/intel/xe_debugfs.c
+++ b/tests/intel/xe_debugfs.c
@@ -39,11 +39,23 @@ IGT_TEST_DESCRIPTION("Validate Xe debugfs devnodes and their contents");
__m && ((__i) = __builtin_ctz(__m), 1); \
__m &= __m - 1)
+/* Validation types for debugfs read tests */
+enum debugfs_validate_type {
+ VALIDATE_NONE, /* Just check file exists */
+ VALIDATE_NON_EMPTY, /* Just check buffer is not empty */
+ VALIDATE_CONTAINS_STR, /* Check buffer contains expected string */
+ VALIDATE_INT_GE_ZERO, /* Parse as integer, verify >= 0 */
+ VALIDATE_BOOL, /* Check bool value (0 or 1) */
+};
+
struct check_entry {
const char *name_fmt;
int mode;
bool (*condition)(struct xe_device *xe_dev);
unsigned int (*iter_mask)(struct xe_device *xe_dev);
+ bool optional;
+ enum debugfs_validate_type validate;
+ const char *expected_str;
};
static unsigned int gt_iter_mask(struct xe_device *xe_dev)
@@ -131,6 +143,110 @@ static bool find_not_tested_files(int dir_fd, struct igt_list_head *hit_entries)
return found_not_tested;
}
+/* Validate that debugfs buffer is non-empty or contains expected string */
+static bool validate_string(int dirfd, const char *file_name, const char *expected_str)
+{
+ char buf[4096];
+ int ret = 0;
+
+ ret = igt_sysfs_read(dirfd, file_name, buf, sizeof(buf) - 1);
+ if (ret < 0)
+ return false;
+ buf[ret] = '\0';
+
+ /* Check for empty buffer */
+ if (strlen(buf) == 0) {
+ igt_warn("Empty output from %s\n", file_name);
+ return false;
+ }
+
+ /* If expecting specific string, verify it's present */
+ if (expected_str && !strstr(buf, expected_str)) {
+ igt_info("Expected '%s' not found in %s\n", expected_str, file_name);
+ return false;
+ }
+
+ if (expected_str)
+ igt_info("Successfully read %s: found '%s'\n", file_name, expected_str);
+ else
+ igt_info("Successfully read %s: %zd bytes\n%s\n", file_name, strlen(buf), buf);
+
+ return true;
+}
+
+static const char *mode_to_str(int mode)
+{
+ switch (mode & O_ACCMODE) {
+ case O_RDONLY: return "RO";
+ case O_WRONLY: return "WO";
+ case O_RDWR: return "RW";
+ default: return "UNKNOWN";
+ }
+}
+
+static bool validate_bool_file(int dirfd, const char *file_name, int mode)
+{
+ int orig_val = 0, read_val = 0, test_val = 0;
+
+ if (igt_sysfs_scanf(dirfd, file_name, "%d", &orig_val) != 1 ||
+ (orig_val != 0 && orig_val != 1))
+ return false;
+
+ if (mode == O_RDWR) {
+ test_val = (orig_val == 0) ? 1 : 0;
+
+ if (igt_sysfs_printf(dirfd, file_name, "%d", test_val) < 0)
+ return false;
+
+ if (igt_sysfs_scanf(dirfd, file_name, "%d", &read_val) != 1 || read_val != test_val)
+ return false;
+
+ /* Restore original value */
+ if (igt_sysfs_printf(dirfd, file_name, "%d", orig_val) < 0) {
+ igt_warn("Failed to restore original value for %s\n", file_name);
+ return false;
+ }
+ }
+
+ igt_info("Successfully validated %s bool %s\n", mode_to_str(mode), file_name);
+ return true;
+}
+
+static bool validate_int_file(int dirfd, const char *file_name, int mode)
+{
+ int orig_val = 0, new_val = 0, read_val = 0;
+
+ if (igt_sysfs_scanf(dirfd, file_name, "%d", &orig_val) != 1)
+ return false;
+
+ if (orig_val < 0)
+ return false;
+
+ if (mode == O_RDWR) {
+ new_val = orig_val + 1;
+ if (new_val < 0)
+ new_val = orig_val - 1;
+ if (igt_sysfs_printf(dirfd, file_name, "%d", new_val) < 0)
+ return false;
+ if (igt_sysfs_scanf(dirfd, file_name, "%d", &read_val) != 1)
+ return false;
+ if (read_val != new_val)
+ return false;
+ /* Restore original value */
+ if (igt_sysfs_printf(dirfd, file_name, "%d", orig_val) < 0) {
+ igt_warn("Failed to restore original value for %s\n", file_name);
+ return false;
+ }
+
+ igt_info("Successfully validated writing int %s: %d\n",
+ file_name, new_val);
+ } else {
+ igt_info("Successfully validated reading int %s: %d\n",
+ file_name, orig_val);
+ }
+ return true;
+}
+
static bool file_in_dir_exists(int dirfd, const char *file_name, int mode)
{
int fd = openat(dirfd, file_name, mode);
@@ -139,10 +255,39 @@ static bool file_in_dir_exists(int dirfd, const char *file_name, int mode)
close(fd);
return true;
}
-
return false;
}
+static bool validate_debugfs_file(int dirfd, const char *file_name, int mode,
+ enum debugfs_validate_type validate, const char *expected_str)
+{
+ bool result = true;
+
+ if (validate == VALIDATE_NONE)
+ return true;
+
+ switch (validate) {
+ case VALIDATE_NON_EMPTY:
+ result = validate_string(dirfd, file_name, NULL);
+ break;
+ case VALIDATE_CONTAINS_STR:
+ result = validate_string(dirfd, file_name, expected_str);
+ break;
+ case VALIDATE_INT_GE_ZERO:
+ result = validate_int_file(dirfd, file_name, mode);
+ break;
+ case VALIDATE_BOOL:
+ result = validate_bool_file(dirfd, file_name, mode);
+ break;
+ default:
+ igt_warn("Unknown validate type %d for %s\n", validate, file_name);
+ result = false;
+ break;
+ }
+
+ return result;
+}
+
/*
* Return: negative error code on failure, or number of missing files
*/
@@ -151,6 +296,7 @@ static int debugfs_validate_entries(struct xe_device *xe_dev, int dir_fd,
{
struct igt_list_head hit_entries;
int missing_count = 0;
+ int fail_count = 0;
int err = 0;
IGT_INIT_LIST_HEAD(&hit_entries);
@@ -210,9 +356,22 @@ static int debugfs_validate_entries(struct xe_device *xe_dev, int dir_fd,
}
if (!file_in_dir_exists(dir_fd, entry->name, check->mode)) {
- igt_warn("Missing debugfs file: %s\n", entry->name);
- missing_count++;
+ if (check->optional) {
+ igt_info("Optional entry %s not found (skipped)\n",
+ entry->name);
+ } else {
+ igt_info("Missing debugfs file: %s\n",
+ entry->name);
+ missing_count++;
+ }
+ } else {
+ if (!validate_debugfs_file(dir_fd, entry->name, check->mode,
+ check->validate, check->expected_str)) {
+ igt_info("Fail at debugfs file: %s\n", entry->name);
+ fail_count++;
+ }
}
+
}
}
@@ -229,7 +388,10 @@ out:
}
}
- return (err < 0) ? err : missing_count;
+ if (fail_count || missing_count)
+ igt_warn("Fails: %d missing debugfs file(s): %d\n", fail_count, missing_count);
+
+ return (err < 0) ? err : (missing_count + fail_count);
}
/**
@@ -240,6 +402,7 @@ static void test_root_dir(struct xe_device *xe_dev)
{
const struct check_entry expected_files[] = {
{ "clients", O_RDONLY },
+ { "disable_late_binding", O_RDWR, .optional = true, .validate = VALIDATE_BOOL },
{ "forcewake_all", O_WRONLY },
{ "gem_names", O_RDONLY },
{ "gt%u", O_RDONLY, NULL, gt_iter_mask }, /* gt0, gt1, ... */
@@ -247,6 +410,12 @@ static void test_root_dir(struct xe_device *xe_dev)
{ "info", O_RDONLY },
{ "name", O_RDONLY },
{ "tile%u", O_RDONLY, NULL, tile_iter_mask }, /* tile0, tile1, ... */
+ { "poor_man_system_atomic_support", O_RDWR, .optional = true, .validate = VALIDATE_BOOL },
+ { "dgfx_pkg_residencies", O_RDONLY, .optional = true, .validate = VALIDATE_NON_EMPTY },
+ { "dgfx_pcie_link_residencies", O_RDONLY, .optional = true, .validate = VALIDATE_CONTAINS_STR, .expected_str = "PCIE LINK" },
+ { "sriov_info", O_RDONLY, .optional = true, .validate = VALIDATE_NON_EMPTY },
+ { "workarounds", O_RDONLY, .optional = true, .validate = VALIDATE_NON_EMPTY },
+ { "atomic_svm_timeslice_ms", O_RDWR, .optional = true, .validate = VALIDATE_INT_GE_ZERO },
};
int debugfs_fd = igt_debugfs_dir(xe_dev->fd);
int missing_count;
--
2.52.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH i-g-t 2/2] tests/intel/xe_debugfs: Add checks for existing root dir entries
2026-06-16 5:13 [PATCH i-g-t 0/2] tests/intel/xe_debugfs: Add debugfs entry Sobin Thomas
2026-06-16 5:13 ` [PATCH i-g-t 1/2] tests/intel/xe_debugfs: Add debugfs optional entry validation Sobin Thomas
@ 2026-06-16 5:13 ` Sobin Thomas
2026-06-16 6:40 ` ✓ Xe.CI.BAT: success for tests/intel/xe_debugfs: Add debugfs entry Patchwork
2026-06-16 6:46 ` ✓ i915.CI.BAT: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Sobin Thomas @ 2026-06-16 5:13 UTC (permalink / raw)
To: igt-dev; +Cc: piotr.piorkowski, kamil.konieczny, Sobin Thomas
Add non-empty validation for existing root-dir debugfs entries
Validate:
- clients: entry is non empty
- gtt_mm: entry is non empty
- info: entry is non empty
- name: entry is non empty
Signed-off-by: Sobin Thomas <sobin.thomas@intel.com>
---
tests/intel/xe_debugfs.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c
index d7a204a09..3697d481d 100644
--- a/tests/intel/xe_debugfs.c
+++ b/tests/intel/xe_debugfs.c
@@ -401,14 +401,14 @@ out:
static void test_root_dir(struct xe_device *xe_dev)
{
const struct check_entry expected_files[] = {
- { "clients", O_RDONLY },
+ { "clients", O_RDONLY, .validate = VALIDATE_NON_EMPTY },
{ "disable_late_binding", O_RDWR, .optional = true, .validate = VALIDATE_BOOL },
{ "forcewake_all", O_WRONLY },
{ "gem_names", O_RDONLY },
{ "gt%u", O_RDONLY, NULL, gt_iter_mask }, /* gt0, gt1, ... */
- { "gtt_mm", O_RDONLY },
- { "info", O_RDONLY },
- { "name", O_RDONLY },
+ { "gtt_mm", O_RDONLY, .validate = VALIDATE_NON_EMPTY },
+ { "info", O_RDONLY, .validate = VALIDATE_NON_EMPTY },
+ { "name", O_RDONLY, .validate = VALIDATE_NON_EMPTY },
{ "tile%u", O_RDONLY, NULL, tile_iter_mask }, /* tile0, tile1, ... */
{ "poor_man_system_atomic_support", O_RDWR, .optional = true, .validate = VALIDATE_BOOL },
{ "dgfx_pkg_residencies", O_RDONLY, .optional = true, .validate = VALIDATE_NON_EMPTY },
--
2.52.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_debugfs: Add debugfs entry
2026-06-16 5:13 [PATCH i-g-t 0/2] tests/intel/xe_debugfs: Add debugfs entry Sobin Thomas
2026-06-16 5:13 ` [PATCH i-g-t 1/2] tests/intel/xe_debugfs: Add debugfs optional entry validation Sobin Thomas
2026-06-16 5:13 ` [PATCH i-g-t 2/2] tests/intel/xe_debugfs: Add checks for existing root dir entries Sobin Thomas
@ 2026-06-16 6:40 ` Patchwork
2026-06-16 6:46 ` ✓ i915.CI.BAT: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-06-16 6:40 UTC (permalink / raw)
To: Sobin Thomas; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 771 bytes --]
== Series Details ==
Series: tests/intel/xe_debugfs: Add debugfs entry
URL : https://patchwork.freedesktop.org/series/168563/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8965_BAT -> XEIGTPW_15374_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8965 -> IGTPW_15374
IGTPW_15374: 15374
IGT_8965: 8965
xe-5261-c585a0a7e48a48aca80f7c0acb7294c7bf301bb7: c585a0a7e48a48aca80f7c0acb7294c7bf301bb7
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15374/index.html
[-- Attachment #2: Type: text/html, Size: 1316 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/xe_debugfs: Add debugfs entry
2026-06-16 5:13 [PATCH i-g-t 0/2] tests/intel/xe_debugfs: Add debugfs entry Sobin Thomas
` (2 preceding siblings ...)
2026-06-16 6:40 ` ✓ Xe.CI.BAT: success for tests/intel/xe_debugfs: Add debugfs entry Patchwork
@ 2026-06-16 6:46 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-06-16 6:46 UTC (permalink / raw)
To: Sobin Thomas; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5403 bytes --]
== Series Details ==
Series: tests/intel/xe_debugfs: Add debugfs entry
URL : https://patchwork.freedesktop.org/series/168563/
State : success
== Summary ==
CI Bug Log - changes from IGT_8965 -> IGTPW_15374
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15374/index.html
Participating hosts (41 -> 40)
------------------------------
Additional (1): fi-tgl-1115g4
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_15374 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- fi-tgl-1115g4: NOTRUN -> [SKIP][1] ([i915#15931])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15374/fi-tgl-1115g4/igt@dmabuf@all-tests.html
* igt@gem_huc_copy@huc-copy:
- fi-tgl-1115g4: NOTRUN -> [SKIP][2] ([i915#2190])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15374/fi-tgl-1115g4/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-engines:
- fi-tgl-1115g4: NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15374/fi-tgl-1115g4/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@intel_hwmon@hwmon-read:
- fi-tgl-1115g4: NOTRUN -> [SKIP][4] ([i915#7707]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15374/fi-tgl-1115g4/igt@intel_hwmon@hwmon-read.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- fi-tgl-1115g4: NOTRUN -> [SKIP][5] ([i915#4103]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15374/fi-tgl-1115g4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dsc@dsc-basic:
- fi-tgl-1115g4: NOTRUN -> [SKIP][6] ([i915#16361])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15374/fi-tgl-1115g4/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- fi-tgl-1115g4: NOTRUN -> [SKIP][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15374/fi-tgl-1115g4/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- fi-tgl-1115g4: NOTRUN -> [SKIP][8] ([i915#12343] / [i915#9812])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15374/fi-tgl-1115g4/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-page-flip:
- fi-tgl-1115g4: NOTRUN -> [SKIP][9] ([i915#9732]) +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15374/fi-tgl-1115g4/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- fi-tgl-1115g4: NOTRUN -> [SKIP][10] ([i915#3555])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15374/fi-tgl-1115g4/igt@kms_setmode@basic-clone-single-crtc.html
#### Possible fixes ####
* igt@i915_selftest@live@sanitycheck:
- fi-kbl-7567u: [DMESG-WARN][11] ([i915#13735]) -> [PASS][12] +79 other tests pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8965/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15374/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
* igt@kms_busy@basic@flip:
- fi-kbl-7567u: [DMESG-WARN][13] ([i915#13735] / [i915#180]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8965/fi-kbl-7567u/igt@kms_busy@basic@flip.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15374/fi-kbl-7567u/igt@kms_busy@basic@flip.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-kbl-7567u: [DMESG-WARN][15] ([i915#13735] / [i915#15673] / [i915#180]) -> [PASS][16] +52 other tests pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8965/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15374/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
[i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
[i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8965 -> IGTPW_15374
CI-20190529: 20190529
CI_DRM_18683: c585a0a7e48a48aca80f7c0acb7294c7bf301bb7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15374: 15374
IGT_8965: 8965
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15374/index.html
[-- Attachment #2: Type: text/html, Size: 6551 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-06-16 6:46 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-16 5:13 [PATCH i-g-t 0/2] tests/intel/xe_debugfs: Add debugfs entry Sobin Thomas
2026-06-16 5:13 ` [PATCH i-g-t 1/2] tests/intel/xe_debugfs: Add debugfs optional entry validation Sobin Thomas
2026-06-16 5:13 ` [PATCH i-g-t 2/2] tests/intel/xe_debugfs: Add checks for existing root dir entries Sobin Thomas
2026-06-16 6:40 ` ✓ Xe.CI.BAT: success for tests/intel/xe_debugfs: Add debugfs entry Patchwork
2026-06-16 6:46 ` ✓ i915.CI.BAT: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox