* [PATCH v7 0/6] Maintenence of devcoredump <-> GuC-Err-Capture plumbing
@ 2025-02-10 23:32 Alan Previn
2025-02-10 23:32 ` [PATCH v7 1/6] drm/xe/guc: Rename __guc_capture_parsed_output Alan Previn
` (13 more replies)
0 siblings, 14 replies; 23+ messages in thread
From: Alan Previn @ 2025-02-10 23:32 UTC (permalink / raw)
To: intel-xe
Cc: Alan Previn, dri-devel, Daniele Ceraolo Spurio, John Harrison,
Matthew Brost, Zhanjun Dong, Rodrigo Vivi
The GuC-Error-Capture is currently reaching into xe_devcoredump
structure to store its own place-holder snaphot-ptr to workaround
the race between G2H-Error-Capture-Notification vs Drm-Scheduler
triggering GuC-Submission-exec-queue-timeout/kill.
From a subsystem layering perspective, this isn't scalable as
GuC should not be manipulating contents of a global structure it
does not own when responding to an unrelated thread / callstack.
Also, part of the earlier mentioned workaround includes the
GuC-Error-Capture taking on one of the front-end functions
for xe_hw_engine_snapshot generation because of an orthogonal
debugfs-caller requesting raw dumps of engine registers without
a job. This request is better handled by GuC-Error-Capture since
there is a lot to manage for reading and printing engine
register lists and we want to avoid duplicate code or tables.
However, logically speaking, the GuC-Error-Capture output node
is really a subset of xe_hw_engine_snapshot. This is irregardless
of the fact that the majority of an engine-snapshot is the
register dumps that only the GuC-Error-Capture can do.
That said, this series intends to refactor the plumbing between
Guc-Error-Capture and xe_devcoredump (including
xe_hw_engine_snapshot) to fix the layering for future
maintenence and scalability. This is done without changing
any functionality and IP-locality (i.e. GuC-Error-Capture still owns
the single point of engine register list definition and printing).
This series ensures 'xe_devcoredump_snapshot' owns
'xe_hw_engine_snapshot generation' and the latter owns
'xe_guc_capture_snapshot' retrieval (with GuC-Error-Capture
as its helper).
Alan Previn (6):
drm/xe/guc: Rename __guc_capture_parsed_output
drm/xe/guc: Don't store capture nodes in xe_devcoredump_snapshot
drm/xe/guc: Split engine state print between xe_hw_engine vs
xe_guc_capture
drm/xe/guc: Move xe_hw_engine_snapshot creation back to xe_hw_engine.c
drm/xe/xe_hw_engine: Update xe_hw_engine capture for debugfs/gt_reset
drm/xe/guc: Update comments on GuC-Err-Capture flows
drivers/gpu/drm/xe/xe_devcoredump.c | 7 +-
drivers/gpu/drm/xe/xe_devcoredump_types.h | 6 -
drivers/gpu/drm/xe/xe_guc_capture.c | 381 ++++++++----------
drivers/gpu/drm/xe/xe_guc_capture.h | 16 +-
.../drm/xe/xe_guc_capture_snapshot_types.h | 57 +++
drivers/gpu/drm/xe/xe_guc_submit.c | 12 +-
drivers/gpu/drm/xe/xe_hw_engine.c | 114 ++++--
drivers/gpu/drm/xe/xe_hw_engine.h | 4 +-
drivers/gpu/drm/xe/xe_hw_engine_types.h | 13 +-
9 files changed, 337 insertions(+), 273 deletions(-)
create mode 100644 drivers/gpu/drm/xe/xe_guc_capture_snapshot_types.h
base-commit: f74fd53ba34551b7626193fb70c17226f06e9bf1
--
2.34.1
^ permalink raw reply [flat|nested] 23+ messages in thread
* [PATCH v7 1/6] drm/xe/guc: Rename __guc_capture_parsed_output
2025-02-10 23:32 [PATCH v7 0/6] Maintenence of devcoredump <-> GuC-Err-Capture plumbing Alan Previn
@ 2025-02-10 23:32 ` Alan Previn
2025-02-10 23:32 ` [PATCH v7 2/6] drm/xe/guc: Don't store capture nodes in xe_devcoredump_snapshot Alan Previn
` (12 subsequent siblings)
13 siblings, 0 replies; 23+ messages in thread
From: Alan Previn @ 2025-02-10 23:32 UTC (permalink / raw)
To: intel-xe
Cc: Alan Previn, dri-devel, Daniele Ceraolo Spurio, John Harrison,
Matthew Brost, Zhanjun Dong, Rodrigo Vivi
Since '__guc_capture_parsed_output *' is a handle that
is retrieved, stored and relinquished by an entity
external to GuC (i.e. xe_devcoredump), lets rename it to
something formal without the'__' prefix and export it
via give a header file.
v7: - Copyright header fix in xe_guc_capture_snapshot_types.h
(Rodrigo)
Signed-off-by: Alan Previn <alan.previn.teres.alexis@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: Zhanjun Dong <zhanjun.dong@intel.com>
---
drivers/gpu/drm/xe/xe_devcoredump_types.h | 2 +-
drivers/gpu/drm/xe/xe_guc_capture.c | 83 ++++++-------------
drivers/gpu/drm/xe/xe_guc_capture.h | 2 +-
.../drm/xe/xe_guc_capture_snapshot_types.h | 53 ++++++++++++
drivers/gpu/drm/xe/xe_hw_engine.c | 2 +-
drivers/gpu/drm/xe/xe_hw_engine_types.h | 5 --
6 files changed, 81 insertions(+), 66 deletions(-)
create mode 100644 drivers/gpu/drm/xe/xe_guc_capture_snapshot_types.h
diff --git a/drivers/gpu/drm/xe/xe_devcoredump_types.h b/drivers/gpu/drm/xe/xe_devcoredump_types.h
index 1a1d16a96b2d..c94ce21043a8 100644
--- a/drivers/gpu/drm/xe/xe_devcoredump_types.h
+++ b/drivers/gpu/drm/xe/xe_devcoredump_types.h
@@ -58,7 +58,7 @@ struct xe_devcoredump_snapshot {
* this single-node tracker works because devcoredump will always only
* produce one hw-engine capture per devcoredump event
*/
- struct __guc_capture_parsed_output *matched_node;
+ struct xe_guc_capture_snapshot *matched_node;
/** @vm: Snapshot of VM state */
struct xe_vm_snapshot *vm;
diff --git a/drivers/gpu/drm/xe/xe_guc_capture.c b/drivers/gpu/drm/xe/xe_guc_capture.c
index f6d523e4c5fe..e04c87739267 100644
--- a/drivers/gpu/drm/xe/xe_guc_capture.c
+++ b/drivers/gpu/drm/xe/xe_guc_capture.c
@@ -26,6 +26,7 @@
#include "xe_guc_ads.h"
#include "xe_guc_capture.h"
#include "xe_guc_capture_types.h"
+#include "xe_guc_capture_snapshot_types.h"
#include "xe_guc_ct.h"
#include "xe_guc_exec_queue_types.h"
#include "xe_guc_log.h"
@@ -53,40 +54,6 @@ struct __guc_capture_bufstate {
u32 wr;
};
-/*
- * struct __guc_capture_parsed_output - extracted error capture node
- *
- * A single unit of extracted error-capture output data grouped together
- * at an engine-instance level. We keep these nodes in a linked list.
- * See cachelist and outlist below.
- */
-struct __guc_capture_parsed_output {
- /*
- * A single set of 3 capture lists: a global-list
- * an engine-class-list and an engine-instance list.
- * outlist in __guc_capture_parsed_output will keep
- * a linked list of these nodes that will eventually
- * be detached from outlist and attached into to
- * xe_codedump in response to a context reset
- */
- struct list_head link;
- bool is_partial;
- u32 eng_class;
- u32 eng_inst;
- u32 guc_id;
- u32 lrca;
- u32 type;
- bool locked;
- enum xe_hw_engine_snapshot_source_id source;
- struct gcap_reg_list_info {
- u32 vfid;
- u32 num_regs;
- struct guc_mmio_reg *regs;
- } reginfo[GUC_STATE_CAPTURE_TYPE_MAX];
-#define GCAP_PARSED_REGLIST_INDEX_GLOBAL BIT(GUC_STATE_CAPTURE_TYPE_GLOBAL)
-#define GCAP_PARSED_REGLIST_INDEX_ENGCLASS BIT(GUC_STATE_CAPTURE_TYPE_ENGINE_CLASS)
-};
-
/*
* Define all device tables of GuC error capture register lists
* NOTE:
@@ -287,7 +254,7 @@ struct xe_guc_state_capture {
static void
guc_capture_remove_stale_matches_from_list(struct xe_guc_state_capture *gc,
- struct __guc_capture_parsed_output *node);
+ struct xe_guc_capture_snapshot *node);
static const struct __guc_mmio_reg_descr_group *
guc_capture_get_device_reglist(struct xe_device *xe)
@@ -841,7 +808,7 @@ static void check_guc_capture_size(struct xe_guc *guc)
}
static void
-guc_capture_add_node_to_list(struct __guc_capture_parsed_output *node,
+guc_capture_add_node_to_list(struct xe_guc_capture_snapshot *node,
struct list_head *list)
{
list_add(&node->link, list);
@@ -849,7 +816,7 @@ guc_capture_add_node_to_list(struct __guc_capture_parsed_output *node,
static void
guc_capture_add_node_to_outlist(struct xe_guc_state_capture *gc,
- struct __guc_capture_parsed_output *node)
+ struct xe_guc_capture_snapshot *node)
{
guc_capture_remove_stale_matches_from_list(gc, node);
guc_capture_add_node_to_list(node, &gc->outlist);
@@ -857,14 +824,14 @@ guc_capture_add_node_to_outlist(struct xe_guc_state_capture *gc,
static void
guc_capture_add_node_to_cachelist(struct xe_guc_state_capture *gc,
- struct __guc_capture_parsed_output *node)
+ struct xe_guc_capture_snapshot *node)
{
guc_capture_add_node_to_list(node, &gc->cachelist);
}
static void
guc_capture_free_outlist_node(struct xe_guc_state_capture *gc,
- struct __guc_capture_parsed_output *n)
+ struct xe_guc_capture_snapshot *n)
{
if (n) {
n->locked = 0;
@@ -876,9 +843,9 @@ guc_capture_free_outlist_node(struct xe_guc_state_capture *gc,
static void
guc_capture_remove_stale_matches_from_list(struct xe_guc_state_capture *gc,
- struct __guc_capture_parsed_output *node)
+ struct xe_guc_capture_snapshot *node)
{
- struct __guc_capture_parsed_output *n, *ntmp;
+ struct xe_guc_capture_snapshot *n, *ntmp;
int guc_id = node->guc_id;
list_for_each_entry_safe(n, ntmp, &gc->outlist, link) {
@@ -888,7 +855,7 @@ guc_capture_remove_stale_matches_from_list(struct xe_guc_state_capture *gc,
}
static void
-guc_capture_init_node(struct xe_guc *guc, struct __guc_capture_parsed_output *node)
+guc_capture_init_node(struct xe_guc *guc, struct xe_guc_capture_snapshot *node)
{
struct guc_mmio_reg *tmp[GUC_STATE_CAPTURE_TYPE_MAX];
int i;
@@ -1067,13 +1034,13 @@ guc_capture_log_get_register(struct xe_guc *guc, struct __guc_capture_bufstate *
return 0;
}
-static struct __guc_capture_parsed_output *
+static struct xe_guc_capture_snapshot *
guc_capture_get_prealloc_node(struct xe_guc *guc)
{
- struct __guc_capture_parsed_output *found = NULL;
+ struct xe_guc_capture_snapshot *found = NULL;
if (!list_empty(&guc->capture->cachelist)) {
- struct __guc_capture_parsed_output *n, *ntmp;
+ struct xe_guc_capture_snapshot *n, *ntmp;
/* get first avail node from the cache list */
list_for_each_entry_safe(n, ntmp, &guc->capture->cachelist, link) {
@@ -1081,7 +1048,7 @@ guc_capture_get_prealloc_node(struct xe_guc *guc)
break;
}
} else {
- struct __guc_capture_parsed_output *n, *ntmp;
+ struct xe_guc_capture_snapshot *n, *ntmp;
/*
* traverse reversed and steal back the oldest node already
@@ -1100,11 +1067,11 @@ guc_capture_get_prealloc_node(struct xe_guc *guc)
return found;
}
-static struct __guc_capture_parsed_output *
-guc_capture_clone_node(struct xe_guc *guc, struct __guc_capture_parsed_output *original,
+static struct xe_guc_capture_snapshot *
+guc_capture_clone_node(struct xe_guc *guc, struct xe_guc_capture_snapshot *original,
u32 keep_reglist_mask)
{
- struct __guc_capture_parsed_output *new;
+ struct xe_guc_capture_snapshot *new;
int i;
new = guc_capture_get_prealloc_node(guc);
@@ -1146,7 +1113,7 @@ guc_capture_extract_reglists(struct xe_guc *guc, struct __guc_capture_bufstate *
struct xe_gt *gt = guc_to_gt(guc);
struct guc_state_capture_group_header_t ghdr = {0};
struct guc_state_capture_header_t hdr = {0};
- struct __guc_capture_parsed_output *node = NULL;
+ struct xe_guc_capture_snapshot *node = NULL;
struct guc_mmio_reg *regs = NULL;
int i, numlists, numregs, ret = 0;
enum guc_state_capture_type datatype;
@@ -1439,11 +1406,11 @@ void xe_guc_capture_process(struct xe_guc *guc)
__guc_capture_process_output(guc);
}
-static struct __guc_capture_parsed_output *
+static struct xe_guc_capture_snapshot *
guc_capture_alloc_one_node(struct xe_guc *guc)
{
struct drm_device *drm = guc_to_drm(guc);
- struct __guc_capture_parsed_output *new;
+ struct xe_guc_capture_snapshot *new;
int i;
new = drmm_kzalloc(drm, sizeof(*new), GFP_KERNEL);
@@ -1468,7 +1435,7 @@ guc_capture_alloc_one_node(struct xe_guc *guc)
static void
__guc_capture_create_prealloc_nodes(struct xe_guc *guc)
{
- struct __guc_capture_parsed_output *node = NULL;
+ struct xe_guc_capture_snapshot *node = NULL;
int i;
for (i = 0; i < PREALLOC_NODES_MAX_COUNT; ++i) {
@@ -1583,7 +1550,7 @@ xe_engine_manual_capture(struct xe_hw_engine *hwe, struct xe_hw_engine_snapshot
struct xe_devcoredump *devcoredump = &xe->devcoredump;
enum guc_capture_list_class_type capture_class;
const struct __guc_mmio_reg_descr_group *list;
- struct __guc_capture_parsed_output *new;
+ struct xe_guc_capture_snapshot *new;
enum guc_state_capture_type type;
u16 guc_id = 0;
u32 lrca = 0;
@@ -1849,7 +1816,7 @@ void xe_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot, struct drm
*
* Returns: found guc-capture node ptr else NULL
*/
-struct __guc_capture_parsed_output *
+struct xe_guc_capture_snapshot *
xe_guc_capture_get_matching_and_lock(struct xe_exec_queue *q)
{
struct xe_hw_engine *hwe;
@@ -1878,7 +1845,7 @@ xe_guc_capture_get_matching_and_lock(struct xe_exec_queue *q)
}
if (guc_class <= GUC_LAST_ENGINE_CLASS) {
- struct __guc_capture_parsed_output *n, *ntmp;
+ struct xe_guc_capture_snapshot *n, *ntmp;
struct xe_guc *guc = &q->gt->uc.guc;
u16 guc_id = q->guc->id;
u32 lrca = xe_lrc_ggtt_addr(q->lrc[0]);
@@ -1931,7 +1898,7 @@ xe_engine_snapshot_capture_for_queue(struct xe_exec_queue *q)
coredump->snapshot.hwe[id] =
xe_hw_engine_snapshot_capture(hwe, q);
} else {
- struct __guc_capture_parsed_output *new;
+ struct xe_guc_capture_snapshot *new;
new = xe_guc_capture_get_matching_and_lock(q);
if (new) {
@@ -1965,7 +1932,7 @@ void xe_guc_capture_put_matched_nodes(struct xe_guc *guc)
{
struct xe_device *xe = guc_to_xe(guc);
struct xe_devcoredump *devcoredump = &xe->devcoredump;
- struct __guc_capture_parsed_output *n = devcoredump->snapshot.matched_node;
+ struct xe_guc_capture_snapshot *n = devcoredump->snapshot.matched_node;
if (n) {
guc_capture_remove_stale_matches_from_list(guc->capture, n);
diff --git a/drivers/gpu/drm/xe/xe_guc_capture.h b/drivers/gpu/drm/xe/xe_guc_capture.h
index 20a078dc4b85..046989fba3b1 100644
--- a/drivers/gpu/drm/xe/xe_guc_capture.h
+++ b/drivers/gpu/drm/xe/xe_guc_capture.h
@@ -50,7 +50,7 @@ size_t xe_guc_capture_ads_input_worst_size(struct xe_guc *guc);
const struct __guc_mmio_reg_descr_group *
xe_guc_capture_get_reg_desc_list(struct xe_gt *gt, u32 owner, u32 type,
enum guc_capture_list_class_type capture_class, bool is_ext);
-struct __guc_capture_parsed_output *xe_guc_capture_get_matching_and_lock(struct xe_exec_queue *q);
+struct xe_guc_capture_snapshot *xe_guc_capture_get_matching_and_lock(struct xe_exec_queue *q);
void xe_engine_manual_capture(struct xe_hw_engine *hwe, struct xe_hw_engine_snapshot *snapshot);
void xe_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot, struct drm_printer *p);
void xe_engine_snapshot_capture_for_queue(struct xe_exec_queue *q);
diff --git a/drivers/gpu/drm/xe/xe_guc_capture_snapshot_types.h b/drivers/gpu/drm/xe/xe_guc_capture_snapshot_types.h
new file mode 100644
index 000000000000..a5579e69da2e
--- /dev/null
+++ b/drivers/gpu/drm/xe/xe_guc_capture_snapshot_types.h
@@ -0,0 +1,53 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#ifndef _XE_GUC_CAPTURE_SNAPSHOT_TYPES_H
+#define _XE_GUC_CAPTURE_SNAPSHOT_TYPES_H
+
+#include <linux/types.h>
+#include <abi/guc_capture_abi.h>
+
+struct guc_mmio_reg;
+
+enum xe_guc_capture_snapshot_source {
+ XE_ENGINE_CAPTURE_SOURCE_MANUAL,
+ XE_ENGINE_CAPTURE_SOURCE_GUC
+};
+
+/*
+ * struct xe_guc_capture_snapshot - extracted error capture node
+ *
+ * A single unit of extracted error-capture output data grouped together
+ * at an engine-instance level. We keep these nodes in a linked list.
+ * See cachelist and outlist below.
+ */
+struct xe_guc_capture_snapshot {
+ /*
+ * A single set of 3 capture lists: a global-list
+ * an engine-class-list and an engine-instance list.
+ * outlist in xe_guc_state_capture will keep
+ * a linked list of these nodes that will eventually
+ * be detached from outlist and attached into to
+ * xe_codedump in response to a context reset
+ */
+ struct list_head link;
+ bool is_partial;
+ u32 eng_class;
+ u32 eng_inst;
+ u32 guc_id;
+ u32 lrca;
+ u32 type;
+ bool locked;
+ enum xe_guc_capture_snapshot_source source;
+ struct gcap_reg_list_info {
+ u32 vfid;
+ u32 num_regs;
+ struct guc_mmio_reg *regs;
+ } reginfo[GUC_STATE_CAPTURE_TYPE_MAX];
+#define GCAP_PARSED_REGLIST_INDEX_GLOBAL BIT(GUC_STATE_CAPTURE_TYPE_GLOBAL)
+#define GCAP_PARSED_REGLIST_INDEX_ENGCLASS BIT(GUC_STATE_CAPTURE_TYPE_ENGINE_CLASS)
+};
+
+#endif
diff --git a/drivers/gpu/drm/xe/xe_hw_engine.c b/drivers/gpu/drm/xe/xe_hw_engine.c
index fc447751fe78..a99e3160724b 100644
--- a/drivers/gpu/drm/xe/xe_hw_engine.c
+++ b/drivers/gpu/drm/xe/xe_hw_engine.c
@@ -843,7 +843,7 @@ struct xe_hw_engine_snapshot *
xe_hw_engine_snapshot_capture(struct xe_hw_engine *hwe, struct xe_exec_queue *q)
{
struct xe_hw_engine_snapshot *snapshot;
- struct __guc_capture_parsed_output *node;
+ struct xe_guc_capture_snapshot *node;
if (!xe_hw_engine_is_valid(hwe))
return NULL;
diff --git a/drivers/gpu/drm/xe/xe_hw_engine_types.h b/drivers/gpu/drm/xe/xe_hw_engine_types.h
index e4191a7a2c31..de69e2628f2f 100644
--- a/drivers/gpu/drm/xe/xe_hw_engine_types.h
+++ b/drivers/gpu/drm/xe/xe_hw_engine_types.h
@@ -152,11 +152,6 @@ struct xe_hw_engine {
struct xe_hw_engine_group *hw_engine_group;
};
-enum xe_hw_engine_snapshot_source_id {
- XE_ENGINE_CAPTURE_SOURCE_MANUAL,
- XE_ENGINE_CAPTURE_SOURCE_GUC
-};
-
/**
* struct xe_hw_engine_snapshot - Hardware engine snapshot
*
--
2.34.1
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [PATCH v7 2/6] drm/xe/guc: Don't store capture nodes in xe_devcoredump_snapshot
2025-02-10 23:32 [PATCH v7 0/6] Maintenence of devcoredump <-> GuC-Err-Capture plumbing Alan Previn
2025-02-10 23:32 ` [PATCH v7 1/6] drm/xe/guc: Rename __guc_capture_parsed_output Alan Previn
@ 2025-02-10 23:32 ` Alan Previn
2025-02-10 23:32 ` [PATCH v7 3/6] drm/xe/guc: Split engine state print between xe_hw_engine vs xe_guc_capture Alan Previn
` (11 subsequent siblings)
13 siblings, 0 replies; 23+ messages in thread
From: Alan Previn @ 2025-02-10 23:32 UTC (permalink / raw)
To: intel-xe
Cc: Alan Previn, dri-devel, Daniele Ceraolo Spurio, John Harrison,
Matthew Brost, Zhanjun Dong, Rodrigo Vivi
GuC-Err-Capture should not be storing register snapshot
nodes directly inside of the top level xe_devcoredump_snapshot
structure that it doesn't control. Furthermore, that is
is not right from a driver subsystem layering perspective.
Instead, when a matching GuC-Err-Capture register snapshot is
available, store it into xe_hw_engine_snapshot structure.
To ensure the manual snapshot can be retrieved and released
like the firmware reported snapshot nodes, replace xe_engine_manual_capture
xe_guc_capture_snapshot_store_manual_job (which generates
and stores the manual GuC-Err-Capture register snapshot
within its internal outlist).
v7:- Use xe_gt_dbg instead of xe_gt_warn when neither GuC-sourced nor
manual-sourced capture node is found during xe_hw_engine printing
because this can be valid in some code-paths such as for
gt-reset events. (John Harrison)
Signed-off-by: Alan Previn <alan.previn.teres.alexis@intel.com>
---
drivers/gpu/drm/xe/xe_devcoredump.c | 3 -
drivers/gpu/drm/xe/xe_devcoredump_types.h | 6 -
drivers/gpu/drm/xe/xe_guc_capture.c | 153 ++++++++++------------
drivers/gpu/drm/xe/xe_guc_capture.h | 9 +-
drivers/gpu/drm/xe/xe_guc_submit.c | 12 +-
drivers/gpu/drm/xe/xe_hw_engine.c | 34 +++--
drivers/gpu/drm/xe/xe_hw_engine_types.h | 8 ++
7 files changed, 104 insertions(+), 121 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_devcoredump.c b/drivers/gpu/drm/xe/xe_devcoredump.c
index 39fe485d2085..006041997550 100644
--- a/drivers/gpu/drm/xe/xe_devcoredump.c
+++ b/drivers/gpu/drm/xe/xe_devcoredump.c
@@ -149,9 +149,6 @@ static void xe_devcoredump_snapshot_free(struct xe_devcoredump_snapshot *ss)
xe_guc_ct_snapshot_free(ss->guc.ct);
ss->guc.ct = NULL;
- xe_guc_capture_put_matched_nodes(&ss->gt->uc.guc);
- ss->matched_node = NULL;
-
xe_guc_exec_queue_snapshot_free(ss->ge);
ss->ge = NULL;
diff --git a/drivers/gpu/drm/xe/xe_devcoredump_types.h b/drivers/gpu/drm/xe/xe_devcoredump_types.h
index c94ce21043a8..28486ed93314 100644
--- a/drivers/gpu/drm/xe/xe_devcoredump_types.h
+++ b/drivers/gpu/drm/xe/xe_devcoredump_types.h
@@ -53,12 +53,6 @@ struct xe_devcoredump_snapshot {
struct xe_hw_engine_snapshot *hwe[XE_NUM_HW_ENGINES];
/** @job: Snapshot of job state */
struct xe_sched_job_snapshot *job;
- /**
- * @matched_node: The matched capture node for timedout job
- * this single-node tracker works because devcoredump will always only
- * produce one hw-engine capture per devcoredump event
- */
- struct xe_guc_capture_snapshot *matched_node;
/** @vm: Snapshot of VM state */
struct xe_vm_snapshot *vm;
diff --git a/drivers/gpu/drm/xe/xe_guc_capture.c b/drivers/gpu/drm/xe/xe_guc_capture.c
index e04c87739267..f118e8dd0ecb 100644
--- a/drivers/gpu/drm/xe/xe_guc_capture.c
+++ b/drivers/gpu/drm/xe/xe_guc_capture.c
@@ -1532,35 +1532,18 @@ read_reg_to_node(struct xe_hw_engine *hwe, const struct __guc_mmio_reg_descr_gro
}
}
-/**
- * xe_engine_manual_capture - Take a manual engine snapshot from engine.
- * @hwe: Xe HW Engine.
- * @snapshot: The engine snapshot
- *
- * Take engine snapshot from engine read.
- *
- * Returns: None
- */
-void
-xe_engine_manual_capture(struct xe_hw_engine *hwe, struct xe_hw_engine_snapshot *snapshot)
+static struct xe_guc_capture_snapshot *
+guc_capture_get_manual_snapshot(struct xe_guc *guc, struct xe_hw_engine *hwe)
{
- struct xe_gt *gt = hwe->gt;
- struct xe_device *xe = gt_to_xe(gt);
- struct xe_guc *guc = >->uc.guc;
- struct xe_devcoredump *devcoredump = &xe->devcoredump;
+ struct xe_gt *gt = guc_to_gt(guc);
enum guc_capture_list_class_type capture_class;
const struct __guc_mmio_reg_descr_group *list;
struct xe_guc_capture_snapshot *new;
enum guc_state_capture_type type;
- u16 guc_id = 0;
- u32 lrca = 0;
-
- if (IS_SRIOV_VF(xe))
- return;
new = guc_capture_get_prealloc_node(guc);
if (!new)
- return;
+ return NULL;
capture_class = xe_engine_class_to_guc_capture_class(hwe->class);
for (type = GUC_STATE_CAPTURE_TYPE_GLOBAL; type < GUC_STATE_CAPTURE_TYPE_MAX; type++) {
@@ -1594,26 +1577,64 @@ xe_engine_manual_capture(struct xe_hw_engine *hwe, struct xe_hw_engine_snapshot
}
}
- if (devcoredump && devcoredump->captured) {
- struct xe_guc_submit_exec_queue_snapshot *ge = devcoredump->snapshot.ge;
+ new->eng_class = xe_engine_class_to_guc_class(hwe->class);
+ new->eng_inst = hwe->instance;
- if (ge) {
- guc_id = ge->guc.id;
- if (ge->lrc[0])
- lrca = ge->lrc[0]->context_desc;
- }
+ return new;
+}
+
+/**
+ * xe_guc_capture_snapshot_store_manual_job - Generate and store a manual engine register dump
+ * @guc: Target GuC for manual capture
+ * @q: Associated xe_exec_queue to simulate a manual capture on its behalf.
+ *
+ * Generate a manual GuC-Error-Capture snapshot of engine instance + engine class registers
+ * for the engine of the given exec queue. Stores this node in internal outlist for future
+ * retrieval with the ability to match up against the same queue.
+ *
+ * Returns: None
+ */
+void
+xe_guc_capture_snapshot_store_manual_job(struct xe_guc *guc, struct xe_exec_queue *q)
+{
+ struct xe_guc_capture_snapshot *new;
+ struct xe_gt *gt = guc_to_gt(guc);
+ struct xe_hw_engine *hwe;
+ enum xe_hw_engine_id id;
+
+ /* we don't support GuC-Error-Capture, including manual captures on VFs */
+ if (IS_SRIOV_VF(guc_to_xe(guc)))
+ return;
+
+ if (!q) {
+ xe_gt_warn(gt, "Manual GuC Error capture requested with invalid job\n");
+ return;
}
- new->eng_class = xe_engine_class_to_guc_class(hwe->class);
- new->eng_inst = hwe->instance;
- new->guc_id = guc_id;
- new->lrca = lrca;
+ /* Find hwe for the queue */
+ for_each_hw_engine(hwe, gt, id) {
+ if (hwe != q->hwe)
+ continue;
+ break;
+ }
+ if (hwe != q->hwe) {
+ xe_gt_warn(gt, "Manual GuC Error capture failed to find matching engine\n");
+ return;
+ }
+
+ new = guc_capture_get_manual_snapshot(guc, hwe);
+ if (!new)
+ return;
+
+ new->guc_id = q->guc->id;
+ new->lrca = xe_lrc_ggtt_addr(q->lrc[0]);
new->is_partial = 0;
new->locked = 1;
new->source = XE_ENGINE_CAPTURE_SOURCE_MANUAL;
guc_capture_add_node_to_outlist(guc->capture, new);
- devcoredump->snapshot.matched_node = new;
+
+ return;
}
static struct guc_mmio_reg *
@@ -1638,20 +1659,18 @@ snapshot_print_by_list_order(struct xe_hw_engine_snapshot *snapshot, struct drm_
u32 type, const struct __guc_mmio_reg_descr_group *list)
{
struct xe_gt *gt = snapshot->hwe->gt;
- struct xe_device *xe = gt_to_xe(gt);
struct xe_guc *guc = >->uc.guc;
- struct xe_devcoredump *devcoredump = &xe->devcoredump;
- struct xe_devcoredump_snapshot *devcore_snapshot = &devcoredump->snapshot;
struct gcap_reg_list_info *reginfo = NULL;
u32 i, last_value = 0;
bool is_ext, low32_ready = false;
if (!list || !list->list || list->num_regs == 0)
return;
- XE_WARN_ON(!devcore_snapshot->matched_node);
+
+ XE_WARN_ON(!snapshot->matched_node);
is_ext = list == guc->capture->extlists;
- reginfo = &devcore_snapshot->matched_node->reginfo[type];
+ reginfo = &snapshot->matched_node->reginfo[type];
/*
* loop through descriptor first and find the register in the node
@@ -1756,21 +1775,14 @@ void xe_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot, struct drm
int type;
const struct __guc_mmio_reg_descr_group *list;
enum guc_capture_list_class_type capture_class;
-
struct xe_gt *gt;
- struct xe_device *xe;
- struct xe_devcoredump *devcoredump;
- struct xe_devcoredump_snapshot *devcore_snapshot;
if (!snapshot)
return;
gt = snapshot->hwe->gt;
- xe = gt_to_xe(gt);
- devcoredump = &xe->devcoredump;
- devcore_snapshot = &devcoredump->snapshot;
- if (!devcore_snapshot->matched_node)
+ if (!snapshot->matched_node)
return;
xe_gt_assert(gt, snapshot->hwe);
@@ -1781,9 +1793,9 @@ void xe_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot, struct drm
snapshot->name ? snapshot->name : "",
snapshot->logical_instance);
drm_printf(p, "\tCapture_source: %s\n",
- devcore_snapshot->matched_node->source == XE_ENGINE_CAPTURE_SOURCE_GUC ?
+ snapshot->matched_node->source == XE_ENGINE_CAPTURE_SOURCE_GUC ?
"GuC" : "Manual");
- drm_printf(p, "\tCoverage: %s\n", grptype[devcore_snapshot->matched_node->is_partial]);
+ drm_printf(p, "\tCoverage: %s\n", grptype[snapshot->matched_node->is_partial]);
drm_printf(p, "\tForcewake: domain 0x%x, ref %d\n",
snapshot->forcewake.domain, snapshot->forcewake.ref);
drm_printf(p, "\tReserved: %s\n",
@@ -1809,6 +1821,7 @@ void xe_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot, struct drm
/**
* xe_guc_capture_get_matching_and_lock - Matching GuC capture for the queue.
* @q: The exec queue object
+ * @srctype: if the capture-node being searched was manual or from guc
*
* Search within the capture outlist for the queue, could be used for check if
* GuC capture is ready for the queue.
@@ -1817,13 +1830,13 @@ void xe_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot, struct drm
* Returns: found guc-capture node ptr else NULL
*/
struct xe_guc_capture_snapshot *
-xe_guc_capture_get_matching_and_lock(struct xe_exec_queue *q)
+xe_guc_capture_get_matching_and_lock(struct xe_exec_queue *q,
+ enum xe_guc_capture_snapshot_source srctype)
{
struct xe_hw_engine *hwe;
enum xe_hw_engine_id id;
struct xe_device *xe;
u16 guc_class = GUC_LAST_ENGINE_CLASS + 1;
- struct xe_devcoredump_snapshot *ss;
if (!q || !q->gt)
return NULL;
@@ -1832,10 +1845,6 @@ xe_guc_capture_get_matching_and_lock(struct xe_exec_queue *q)
if (xe->wedged.mode >= 2 || !xe_device_uc_enabled(xe) || IS_SRIOV_VF(xe))
return NULL;
- ss = &xe->devcoredump.snapshot;
- if (ss->matched_node && ss->matched_node->source == XE_ENGINE_CAPTURE_SOURCE_GUC)
- return ss->matched_node;
-
/* Find hwe for the queue */
for_each_hw_engine(hwe, q->gt, id) {
if (hwe != q->hwe)
@@ -1858,7 +1867,7 @@ xe_guc_capture_get_matching_and_lock(struct xe_exec_queue *q)
list_for_each_entry_safe(n, ntmp, &guc->capture->outlist, link) {
if (n->eng_class == guc_class && n->eng_inst == hwe->instance &&
n->guc_id == guc_id && n->lrca == lrca &&
- n->source == XE_ENGINE_CAPTURE_SOURCE_GUC) {
+ n->source == srctype) {
n->locked = 1;
return n;
}
@@ -1893,51 +1902,23 @@ xe_engine_snapshot_capture_for_queue(struct xe_exec_queue *q)
coredump->snapshot.hwe[id] = NULL;
continue;
}
-
- if (!coredump->snapshot.hwe[id]) {
- coredump->snapshot.hwe[id] =
- xe_hw_engine_snapshot_capture(hwe, q);
- } else {
- struct xe_guc_capture_snapshot *new;
-
- new = xe_guc_capture_get_matching_and_lock(q);
- if (new) {
- struct xe_guc *guc = &q->gt->uc.guc;
-
- /*
- * If we are in here, it means we found a fresh
- * GuC-err-capture node for this engine after
- * previously failing to find a match in the
- * early part of guc_exec_queue_timedout_job.
- * Thus we must free the manually captured node
- */
- guc_capture_free_outlist_node(guc->capture,
- coredump->snapshot.matched_node);
- coredump->snapshot.matched_node = new;
- }
- }
-
- break;
+ coredump->snapshot.hwe[id] = xe_hw_engine_snapshot_capture(hwe, q);
}
}
/*
* xe_guc_capture_put_matched_nodes - Cleanup matched nodes
* @guc: The GuC object
+ * @n: the capture node we want to free (along with stale reports from GuC)
*
* Free matched node and all nodes with the equal guc_id from
* GuC captured outlist
*/
-void xe_guc_capture_put_matched_nodes(struct xe_guc *guc)
+void xe_guc_capture_put_matched_nodes(struct xe_guc *guc, struct xe_guc_capture_snapshot *n)
{
- struct xe_device *xe = guc_to_xe(guc);
- struct xe_devcoredump *devcoredump = &xe->devcoredump;
- struct xe_guc_capture_snapshot *n = devcoredump->snapshot.matched_node;
-
if (n) {
guc_capture_remove_stale_matches_from_list(guc->capture, n);
guc_capture_free_outlist_node(guc->capture, n);
- devcoredump->snapshot.matched_node = NULL;
}
}
diff --git a/drivers/gpu/drm/xe/xe_guc_capture.h b/drivers/gpu/drm/xe/xe_guc_capture.h
index 046989fba3b1..8ac893c92f19 100644
--- a/drivers/gpu/drm/xe/xe_guc_capture.h
+++ b/drivers/gpu/drm/xe/xe_guc_capture.h
@@ -9,6 +9,7 @@
#include <linux/types.h>
#include "abi/guc_capture_abi.h"
#include "xe_guc.h"
+#include "xe_guc_capture_snapshot_types.h"
#include "xe_guc_fwif.h"
struct xe_exec_queue;
@@ -50,12 +51,14 @@ size_t xe_guc_capture_ads_input_worst_size(struct xe_guc *guc);
const struct __guc_mmio_reg_descr_group *
xe_guc_capture_get_reg_desc_list(struct xe_gt *gt, u32 owner, u32 type,
enum guc_capture_list_class_type capture_class, bool is_ext);
-struct xe_guc_capture_snapshot *xe_guc_capture_get_matching_and_lock(struct xe_exec_queue *q);
-void xe_engine_manual_capture(struct xe_hw_engine *hwe, struct xe_hw_engine_snapshot *snapshot);
+struct xe_guc_capture_snapshot *
+xe_guc_capture_get_matching_and_lock(struct xe_exec_queue *q,
+ enum xe_guc_capture_snapshot_source srctype);
+void xe_guc_capture_snapshot_store_manual_job(struct xe_guc *guc, struct xe_exec_queue *q);
void xe_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot, struct drm_printer *p);
void xe_engine_snapshot_capture_for_queue(struct xe_exec_queue *q);
void xe_guc_capture_steered_list_init(struct xe_guc *guc);
-void xe_guc_capture_put_matched_nodes(struct xe_guc *guc);
+void xe_guc_capture_put_matched_nodes(struct xe_guc *guc, struct xe_guc_capture_snapshot *n);
int xe_guc_capture_init(struct xe_guc *guc);
#endif
diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
index 913c74d6e2ae..6e33081dd7b8 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit.c
+++ b/drivers/gpu/drm/xe/xe_guc_submit.c
@@ -28,6 +28,7 @@
#include "xe_gt_printk.h"
#include "xe_guc.h"
#include "xe_guc_capture.h"
+#include "xe_guc_capture_snapshot_types.h"
#include "xe_guc_ct.h"
#include "xe_guc_exec_queue_types.h"
#include "xe_guc_id_mgr.h"
@@ -1070,14 +1071,17 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job)
* do manual capture first and decide later if we need to use it
*/
if (!exec_queue_killed(q) && !xe->devcoredump.captured &&
- !xe_guc_capture_get_matching_and_lock(q)) {
+ !xe_guc_capture_get_matching_and_lock(q, XE_ENGINE_CAPTURE_SOURCE_GUC)) {
/* take force wake before engine register manual capture */
fw_ref = xe_force_wake_get(gt_to_fw(q->gt), XE_FORCEWAKE_ALL);
if (!xe_force_wake_ref_has_domain(fw_ref, XE_FORCEWAKE_ALL))
xe_gt_info(q->gt, "failed to get forcewake for coredump capture\n");
-
- xe_engine_snapshot_capture_for_queue(q);
-
+ /*
+ * Generate a manual capture. Below function will store it
+ * in GuC Error Capture's internal link-list as if it came from GuC
+ * but with a source-type == XE_ENGINE_CAPTURE_SOURCE_MANUAL
+ */
+ xe_guc_capture_snapshot_store_manual_job(guc, q);
xe_force_wake_put(gt_to_fw(q->gt), fw_ref);
}
diff --git a/drivers/gpu/drm/xe/xe_hw_engine.c b/drivers/gpu/drm/xe/xe_hw_engine.c
index a99e3160724b..02871d319471 100644
--- a/drivers/gpu/drm/xe/xe_hw_engine.c
+++ b/drivers/gpu/drm/xe/xe_hw_engine.c
@@ -25,6 +25,7 @@
#include "xe_gt_mcr.h"
#include "xe_gt_topology.h"
#include "xe_guc_capture.h"
+#include "xe_guc_capture_snapshot_types.h"
#include "xe_hw_engine_group.h"
#include "xe_hw_fence.h"
#include "xe_irq.h"
@@ -867,22 +868,22 @@ xe_hw_engine_snapshot_capture(struct xe_hw_engine *hwe, struct xe_exec_queue *q)
return snapshot;
if (q) {
- /* If got guc capture, set source to GuC */
- node = xe_guc_capture_get_matching_and_lock(q);
- if (node) {
- struct xe_device *xe = gt_to_xe(hwe->gt);
- struct xe_devcoredump *coredump = &xe->devcoredump;
-
- coredump->snapshot.matched_node = node;
- xe_gt_dbg(hwe->gt, "Found and locked GuC-err-capture node");
- return snapshot;
+ /* First, retrieve the manual GuC-Error-Capture node if it exists */
+ node = xe_guc_capture_get_matching_and_lock(q, XE_ENGINE_CAPTURE_SOURCE_MANUAL);
+ /* Find preferred node type sourced from firmware if available */
+ snapshot->matched_node = xe_guc_capture_get_matching_and_lock(q, XE_ENGINE_CAPTURE_SOURCE_GUC);
+ if (!snapshot->matched_node) {
+ xe_gt_dbg(hwe->gt, "No fw sourced GuC-Err-Capture for queue %s", q->name);
+ snapshot->matched_node = node;
+ } else if (node) {
+ xe_gt_dbg(hwe->gt, "Found manual GuC-Err-Capture for queue %s", q->name);
+ xe_guc_capture_put_matched_nodes(&hwe->gt->uc.guc, node);
}
+ if (!snapshot->matched_node)
+ xe_gt_dbg(hwe->gt, "Can't retrieve any GuC-Err-Capture node for queue %s",
+ q->name);
}
- /* otherwise, do manual capture */
- xe_engine_manual_capture(hwe, snapshot);
- xe_gt_dbg(hwe->gt, "Proceeding with manual engine snapshot");
-
return snapshot;
}
@@ -900,12 +901,7 @@ void xe_hw_engine_snapshot_free(struct xe_hw_engine_snapshot *snapshot)
return;
gt = snapshot->hwe->gt;
- /*
- * xe_guc_capture_put_matched_nodes is called here and from
- * xe_devcoredump_snapshot_free, to cover the 2 calling paths
- * of hw_engines - debugfs and devcoredump free.
- */
- xe_guc_capture_put_matched_nodes(>->uc.guc);
+ xe_guc_capture_put_matched_nodes(>->uc.guc, snapshot->matched_node);
kfree(snapshot->name);
kfree(snapshot);
diff --git a/drivers/gpu/drm/xe/xe_hw_engine_types.h b/drivers/gpu/drm/xe/xe_hw_engine_types.h
index de69e2628f2f..de1f82c11bcf 100644
--- a/drivers/gpu/drm/xe/xe_hw_engine_types.h
+++ b/drivers/gpu/drm/xe/xe_hw_engine_types.h
@@ -152,6 +152,7 @@ struct xe_hw_engine {
struct xe_hw_engine_group *hw_engine_group;
};
+struct xe_guc_capture_snapshot;
/**
* struct xe_hw_engine_snapshot - Hardware engine snapshot
*
@@ -175,6 +176,13 @@ struct xe_hw_engine_snapshot {
u32 mmio_base;
/** @kernel_reserved: Engine reserved, can't be used by userspace */
bool kernel_reserved;
+ /**
+ * @matched_node: GuC Capture snapshot:
+ * The matched capture node for the timedout job
+ * this single-node tracker works because devcoredump will always only
+ * produce one hw-engine capture per devcoredump event
+ */
+ struct xe_guc_capture_snapshot *matched_node;
};
#endif
--
2.34.1
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [PATCH v7 3/6] drm/xe/guc: Split engine state print between xe_hw_engine vs xe_guc_capture
2025-02-10 23:32 [PATCH v7 0/6] Maintenence of devcoredump <-> GuC-Err-Capture plumbing Alan Previn
2025-02-10 23:32 ` [PATCH v7 1/6] drm/xe/guc: Rename __guc_capture_parsed_output Alan Previn
2025-02-10 23:32 ` [PATCH v7 2/6] drm/xe/guc: Don't store capture nodes in xe_devcoredump_snapshot Alan Previn
@ 2025-02-10 23:32 ` Alan Previn
2025-02-11 22:48 ` Dong, Zhanjun
2025-02-10 23:32 ` [PATCH v7 4/6] drm/xe/guc: Move xe_hw_engine_snapshot creation back to xe_hw_engine.c Alan Previn
` (10 subsequent siblings)
13 siblings, 1 reply; 23+ messages in thread
From: Alan Previn @ 2025-02-10 23:32 UTC (permalink / raw)
To: intel-xe
Cc: Alan Previn, dri-devel, Daniele Ceraolo Spurio, John Harrison,
Matthew Brost, Zhanjun Dong, Rodrigo Vivi
Relocate the xe_engine_snapshot_print function from xe_guc_capture.c
into xe_hw_engine.c but split out the GuC-Err-Capture register printing
portion out into a separate helper inside xe_guc_capture.c so that
we can have a clear separation between printing the general engine info
vs GuC-Err-Capture node's register list.
v7: - Fix function name to respect "xe_hw_engine" name space. (Rodrigo)
- Remove additional newline in engine dump (Jose Souza) +
ensure changes didn't break mesa's aubinator tool (Rodrigo)
Signed-off-by: Alan Previn <alan.previn.teres.alexis@intel.com>
---
drivers/gpu/drm/xe/xe_devcoredump.c | 2 +-
drivers/gpu/drm/xe/xe_guc_capture.c | 79 +++++++++++++----------------
drivers/gpu/drm/xe/xe_guc_capture.h | 4 +-
drivers/gpu/drm/xe/xe_hw_engine.c | 29 ++++++++++-
drivers/gpu/drm/xe/xe_hw_engine.h | 1 +
5 files changed, 67 insertions(+), 48 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_devcoredump.c b/drivers/gpu/drm/xe/xe_devcoredump.c
index 006041997550..7a4610d2ea4f 100644
--- a/drivers/gpu/drm/xe/xe_devcoredump.c
+++ b/drivers/gpu/drm/xe/xe_devcoredump.c
@@ -128,7 +128,7 @@ static ssize_t __xe_devcoredump_read(char *buffer, size_t count,
drm_puts(&p, "\n**** HW Engines ****\n");
for (i = 0; i < XE_NUM_HW_ENGINES; i++)
if (ss->hwe[i])
- xe_engine_snapshot_print(ss->hwe[i], &p);
+ xe_hw_engine_snapshot_print(ss->hwe[i], &p);
drm_puts(&p, "\n**** VM state ****\n");
xe_vm_snapshot_print(ss->vm, &p);
diff --git a/drivers/gpu/drm/xe/xe_guc_capture.c b/drivers/gpu/drm/xe/xe_guc_capture.c
index f118e8dd0ecb..76c20ff97864 100644
--- a/drivers/gpu/drm/xe/xe_guc_capture.c
+++ b/drivers/gpu/drm/xe/xe_guc_capture.c
@@ -917,9 +917,10 @@ guc_capture_init_node(struct xe_guc *guc, struct xe_guc_capture_snapshot *node)
* --------------------
* --> xe_devcoredump_read->
* L--> xxx_snapshot_print
- * L--> xe_engine_snapshot_print
- * Print register lists values saved at
- * guc->capture->outlist
+ * L--> xe_hw_engine_print --> xe_hw_engine_snapshot_print
+ * L--> xe_guc_capture_snapshot_print
+ * Print register lists values saved in matching
+ * node from guc->capture->outlist
*
*/
@@ -1655,22 +1656,16 @@ guc_capture_find_reg(struct gcap_reg_list_info *reginfo, u32 addr, u32 flags)
}
static void
-snapshot_print_by_list_order(struct xe_hw_engine_snapshot *snapshot, struct drm_printer *p,
- u32 type, const struct __guc_mmio_reg_descr_group *list)
+print_noderegs_by_list_order(struct xe_guc *guc, struct gcap_reg_list_info *reginfo,
+ const struct __guc_mmio_reg_descr_group *list, struct drm_printer *p)
{
- struct xe_gt *gt = snapshot->hwe->gt;
- struct xe_guc *guc = >->uc.guc;
- struct gcap_reg_list_info *reginfo = NULL;
- u32 i, last_value = 0;
+ u32 last_value, i;
bool is_ext, low32_ready = false;
if (!list || !list->list || list->num_regs == 0)
return;
- XE_WARN_ON(!snapshot->matched_node);
-
is_ext = list == guc->capture->extlists;
- reginfo = &snapshot->matched_node->reginfo[type];
/*
* loop through descriptor first and find the register in the node
@@ -1740,8 +1735,8 @@ snapshot_print_by_list_order(struct xe_hw_engine_snapshot *snapshot, struct drm_
group = FIELD_GET(GUC_REGSET_STEERING_GROUP, reg_desc->flags);
instance = FIELD_GET(GUC_REGSET_STEERING_INSTANCE, reg_desc->flags);
- dss = xe_gt_mcr_steering_info_to_dss_id(gt, group, instance);
-
+ dss = xe_gt_mcr_steering_info_to_dss_id(guc_to_gt(guc), group,
+ instance);
drm_printf(p, "\t%s[%u]: 0x%08x\n", reg_desc->regname, dss, value);
} else {
drm_printf(p, "\t%s: 0x%08x\n", reg_desc->regname, value);
@@ -1760,13 +1755,18 @@ snapshot_print_by_list_order(struct xe_hw_engine_snapshot *snapshot, struct drm_
}
/**
- * xe_engine_snapshot_print - Print out a given Xe HW Engine snapshot.
- * @snapshot: Xe HW Engine snapshot object.
+ * xe_guc_capture_snapshot_print - Print out a the contents of a provided Guc-Err-Capture node
+ * @guc : Target GuC for operation.
+ * @node: GuC Error Capture register dump node.
* @p: drm_printer where it will be printed out.
*
- * This function prints out a given Xe HW Engine snapshot object.
+ * This function prints out a register dump of a GuC-Err-Capture node that was retrieved
+ * earlier either by GuC-FW reporting or by manual capture depending on how the
+ * caller (typically xe_hw_engine_snapshot) was invoked and used.
*/
-void xe_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot, struct drm_printer *p)
+
+void xe_guc_capture_snapshot_print(struct xe_guc *guc, struct xe_guc_capture_snapshot *node,
+ struct drm_printer *p)
{
const char *grptype[GUC_STATE_CAPTURE_GROUP_TYPE_MAX] = {
"full-capture",
@@ -1774,45 +1774,36 @@ void xe_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot, struct drm
};
int type;
const struct __guc_mmio_reg_descr_group *list;
- enum guc_capture_list_class_type capture_class;
struct xe_gt *gt;
- if (!snapshot)
+ if (!guc)
return;
-
- gt = snapshot->hwe->gt;
-
- if (!snapshot->matched_node)
+ gt = guc_to_gt(guc);
+ if (!node) {
+ xe_gt_warn(gt, "GuC Capture printing without node!\n");
return;
+ }
+ if (!p) {
+ xe_gt_warn(gt, "GuC Capture printing without printer!\n");
+ return;
+ }
- xe_gt_assert(gt, snapshot->hwe);
-
- capture_class = xe_engine_class_to_guc_capture_class(snapshot->hwe->class);
-
- drm_printf(p, "%s (physical), logical instance=%d\n",
- snapshot->name ? snapshot->name : "",
- snapshot->logical_instance);
drm_printf(p, "\tCapture_source: %s\n",
- snapshot->matched_node->source == XE_ENGINE_CAPTURE_SOURCE_GUC ?
+ node->source == XE_ENGINE_CAPTURE_SOURCE_GUC ?
"GuC" : "Manual");
- drm_printf(p, "\tCoverage: %s\n", grptype[snapshot->matched_node->is_partial]);
- drm_printf(p, "\tForcewake: domain 0x%x, ref %d\n",
- snapshot->forcewake.domain, snapshot->forcewake.ref);
- drm_printf(p, "\tReserved: %s\n",
- str_yes_no(snapshot->kernel_reserved));
+ drm_printf(p, "\tCoverage: %s\n", grptype[node->is_partial]);
for (type = GUC_STATE_CAPTURE_TYPE_GLOBAL; type < GUC_STATE_CAPTURE_TYPE_MAX; type++) {
list = xe_guc_capture_get_reg_desc_list(gt, GUC_CAPTURE_LIST_INDEX_PF, type,
- capture_class, false);
- snapshot_print_by_list_order(snapshot, p, type, list);
+ node->eng_class, false);
+ print_noderegs_by_list_order(guc, &node->reginfo[type], list, p);
}
- if (capture_class == GUC_CAPTURE_LIST_CLASS_RENDER_COMPUTE) {
+ if (node->eng_class == GUC_CAPTURE_LIST_CLASS_RENDER_COMPUTE) {
+ type = GUC_STATE_CAPTURE_TYPE_ENGINE_CLASS;
list = xe_guc_capture_get_reg_desc_list(gt, GUC_CAPTURE_LIST_INDEX_PF,
- GUC_STATE_CAPTURE_TYPE_ENGINE_CLASS,
- capture_class, true);
- snapshot_print_by_list_order(snapshot, p, GUC_STATE_CAPTURE_TYPE_ENGINE_CLASS,
- list);
+ type, node->eng_class, true);
+ print_noderegs_by_list_order(guc, &node->reginfo[type], list, p);
}
drm_puts(p, "\n");
diff --git a/drivers/gpu/drm/xe/xe_guc_capture.h b/drivers/gpu/drm/xe/xe_guc_capture.h
index 8ac893c92f19..e67589ab4342 100644
--- a/drivers/gpu/drm/xe/xe_guc_capture.h
+++ b/drivers/gpu/drm/xe/xe_guc_capture.h
@@ -15,7 +15,6 @@
struct xe_exec_queue;
struct xe_guc;
struct xe_hw_engine;
-struct xe_hw_engine_snapshot;
static inline enum guc_capture_list_class_type xe_guc_class_to_capture_class(u16 class)
{
@@ -55,7 +54,8 @@ struct xe_guc_capture_snapshot *
xe_guc_capture_get_matching_and_lock(struct xe_exec_queue *q,
enum xe_guc_capture_snapshot_source srctype);
void xe_guc_capture_snapshot_store_manual_job(struct xe_guc *guc, struct xe_exec_queue *q);
-void xe_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot, struct drm_printer *p);
+void xe_guc_capture_snapshot_print(struct xe_guc *guc, struct xe_guc_capture_snapshot *node,
+ struct drm_printer *p);
void xe_engine_snapshot_capture_for_queue(struct xe_exec_queue *q);
void xe_guc_capture_steered_list_init(struct xe_guc *guc);
void xe_guc_capture_put_matched_nodes(struct xe_guc *guc, struct xe_guc_capture_snapshot *n);
diff --git a/drivers/gpu/drm/xe/xe_hw_engine.c b/drivers/gpu/drm/xe/xe_hw_engine.c
index 02871d319471..c980a5c84a8b 100644
--- a/drivers/gpu/drm/xe/xe_hw_engine.c
+++ b/drivers/gpu/drm/xe/xe_hw_engine.c
@@ -907,6 +907,33 @@ void xe_hw_engine_snapshot_free(struct xe_hw_engine_snapshot *snapshot)
kfree(snapshot);
}
+/**
+ * xe_hw_engine_snapshot_print - Print out a given Xe HW Engine snapshot.
+ * @snapshot: Xe HW Engine snapshot object.
+ * @p: drm_printer where it will be printed out.
+ *
+ * This function prints out a given Xe HW Engine snapshot object.
+ */
+void xe_hw_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot, struct drm_printer *p)
+{
+ struct xe_gt *gt;
+
+ if (!snapshot)
+ return;
+
+ gt = snapshot->hwe->gt;
+
+ drm_printf(p, "%s (physical), logical instance=%d\n",
+ snapshot->name ? snapshot->name : "",
+ snapshot->logical_instance);
+ drm_printf(p, "\tForcewake: domain 0x%x, ref %d\n",
+ snapshot->forcewake.domain, snapshot->forcewake.ref);
+ drm_printf(p, "\tReserved: %s\n",
+ str_yes_no(snapshot->kernel_reserved));
+
+ xe_guc_capture_snapshot_print(>->uc.guc, snapshot->matched_node, p);
+}
+
/**
* xe_hw_engine_print - Xe HW Engine Print.
* @hwe: Hardware Engine.
@@ -919,7 +946,7 @@ void xe_hw_engine_print(struct xe_hw_engine *hwe, struct drm_printer *p)
struct xe_hw_engine_snapshot *snapshot;
snapshot = xe_hw_engine_snapshot_capture(hwe, NULL);
- xe_engine_snapshot_print(snapshot, p);
+ xe_hw_engine_snapshot_print(snapshot, p);
xe_hw_engine_snapshot_free(snapshot);
}
diff --git a/drivers/gpu/drm/xe/xe_hw_engine.h b/drivers/gpu/drm/xe/xe_hw_engine.h
index 6b5f9fa2a594..069b32aa7423 100644
--- a/drivers/gpu/drm/xe/xe_hw_engine.h
+++ b/drivers/gpu/drm/xe/xe_hw_engine.h
@@ -58,6 +58,7 @@ u32 xe_hw_engine_mask_per_class(struct xe_gt *gt,
struct xe_hw_engine_snapshot *
xe_hw_engine_snapshot_capture(struct xe_hw_engine *hwe, struct xe_exec_queue *q);
void xe_hw_engine_snapshot_free(struct xe_hw_engine_snapshot *snapshot);
+void xe_hw_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot, struct drm_printer *p);
void xe_hw_engine_print(struct xe_hw_engine *hwe, struct drm_printer *p);
void xe_hw_engine_setup_default_lrc_state(struct xe_hw_engine *hwe);
--
2.34.1
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [PATCH v7 4/6] drm/xe/guc: Move xe_hw_engine_snapshot creation back to xe_hw_engine.c
2025-02-10 23:32 [PATCH v7 0/6] Maintenence of devcoredump <-> GuC-Err-Capture plumbing Alan Previn
` (2 preceding siblings ...)
2025-02-10 23:32 ` [PATCH v7 3/6] drm/xe/guc: Split engine state print between xe_hw_engine vs xe_guc_capture Alan Previn
@ 2025-02-10 23:32 ` Alan Previn
2025-02-12 17:19 ` Dong, Zhanjun
2025-02-10 23:32 ` [PATCH v7 5/6] drm/xe/xe_hw_engine: Update xe_hw_engine capture for debugfs/gt_reset Alan Previn
` (9 subsequent siblings)
13 siblings, 1 reply; 23+ messages in thread
From: Alan Previn @ 2025-02-10 23:32 UTC (permalink / raw)
To: intel-xe
Cc: Alan Previn, dri-devel, Daniele Ceraolo Spurio, John Harrison,
Matthew Brost, Zhanjun Dong, Rodrigo Vivi
xe_devcoredump calls xe_engine_snapshot_capture_for_queue() to allocate
and populate the xe_hw_engine_snapshot structure. Move that function
back into xe_hw_engine.c since it doesn't make sense for
GuC-Err-Capture to allocate a structure it doesn't own.
v7: Rename function to respect "xe_hw_engine" namespace (Rodrigo)
Signed-off-by: Alan Previn <alan.previn.teres.alexis@intel.com>
---
drivers/gpu/drm/xe/xe_devcoredump.c | 2 +-
drivers/gpu/drm/xe/xe_guc_capture.c | 30 -----------------------
drivers/gpu/drm/xe/xe_guc_capture.h | 1 -
drivers/gpu/drm/xe/xe_hw_engine.c | 38 ++++++++++++++++++++++++++---
drivers/gpu/drm/xe/xe_hw_engine.h | 3 +--
5 files changed, 36 insertions(+), 38 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_devcoredump.c b/drivers/gpu/drm/xe/xe_devcoredump.c
index 7a4610d2ea4f..6cbb4fce8ef2 100644
--- a/drivers/gpu/drm/xe/xe_devcoredump.c
+++ b/drivers/gpu/drm/xe/xe_devcoredump.c
@@ -311,7 +311,7 @@ static void devcoredump_snapshot(struct xe_devcoredump *coredump,
ss->job = xe_sched_job_snapshot_capture(job);
ss->vm = xe_vm_snapshot_capture(q->vm);
- xe_engine_snapshot_capture_for_queue(q);
+ xe_hw_engine_snapshot_capture_for_queue(q);
queue_work(system_unbound_wq, &ss->work);
diff --git a/drivers/gpu/drm/xe/xe_guc_capture.c b/drivers/gpu/drm/xe/xe_guc_capture.c
index 76c20ff97864..ff16bed86b77 100644
--- a/drivers/gpu/drm/xe/xe_guc_capture.c
+++ b/drivers/gpu/drm/xe/xe_guc_capture.c
@@ -1867,36 +1867,6 @@ xe_guc_capture_get_matching_and_lock(struct xe_exec_queue *q,
return NULL;
}
-/**
- * xe_engine_snapshot_capture_for_queue - Take snapshot of associated engine
- * @q: The exec queue object
- *
- * Take snapshot of associated HW Engine
- *
- * Returns: None.
- */
-void
-xe_engine_snapshot_capture_for_queue(struct xe_exec_queue *q)
-{
- struct xe_device *xe = gt_to_xe(q->gt);
- struct xe_devcoredump *coredump = &xe->devcoredump;
- struct xe_hw_engine *hwe;
- enum xe_hw_engine_id id;
- u32 adj_logical_mask = q->logical_mask;
-
- if (IS_SRIOV_VF(xe))
- return;
-
- for_each_hw_engine(hwe, q->gt, id) {
- if (hwe->class != q->hwe->class ||
- !(BIT(hwe->logical_instance) & adj_logical_mask)) {
- coredump->snapshot.hwe[id] = NULL;
- continue;
- }
- coredump->snapshot.hwe[id] = xe_hw_engine_snapshot_capture(hwe, q);
- }
-}
-
/*
* xe_guc_capture_put_matched_nodes - Cleanup matched nodes
* @guc: The GuC object
diff --git a/drivers/gpu/drm/xe/xe_guc_capture.h b/drivers/gpu/drm/xe/xe_guc_capture.h
index e67589ab4342..77ee35a3f205 100644
--- a/drivers/gpu/drm/xe/xe_guc_capture.h
+++ b/drivers/gpu/drm/xe/xe_guc_capture.h
@@ -56,7 +56,6 @@ xe_guc_capture_get_matching_and_lock(struct xe_exec_queue *q,
void xe_guc_capture_snapshot_store_manual_job(struct xe_guc *guc, struct xe_exec_queue *q);
void xe_guc_capture_snapshot_print(struct xe_guc *guc, struct xe_guc_capture_snapshot *node,
struct drm_printer *p);
-void xe_engine_snapshot_capture_for_queue(struct xe_exec_queue *q);
void xe_guc_capture_steered_list_init(struct xe_guc *guc);
void xe_guc_capture_put_matched_nodes(struct xe_guc *guc, struct xe_guc_capture_snapshot *n);
int xe_guc_capture_init(struct xe_guc *guc);
diff --git a/drivers/gpu/drm/xe/xe_hw_engine.c b/drivers/gpu/drm/xe/xe_hw_engine.c
index c980a5c84a8b..fef01d2086a8 100644
--- a/drivers/gpu/drm/xe/xe_hw_engine.c
+++ b/drivers/gpu/drm/xe/xe_hw_engine.c
@@ -830,7 +830,7 @@ void xe_hw_engine_handle_irq(struct xe_hw_engine *hwe, u16 intr_vec)
}
/**
- * xe_hw_engine_snapshot_capture - Take a quick snapshot of the HW Engine.
+ * hw_engine_snapshot_capture - Take a quick snapshot of the HW Engine.
* @hwe: Xe HW Engine.
* @q: The exec queue object.
*
@@ -840,8 +840,8 @@ void xe_hw_engine_handle_irq(struct xe_hw_engine *hwe, u16 intr_vec)
* Returns: a Xe HW Engine snapshot object that must be freed by the
* caller, using `xe_hw_engine_snapshot_free`.
*/
-struct xe_hw_engine_snapshot *
-xe_hw_engine_snapshot_capture(struct xe_hw_engine *hwe, struct xe_exec_queue *q)
+static struct xe_hw_engine_snapshot *
+hw_engine_snapshot_capture(struct xe_hw_engine *hwe, struct xe_exec_queue *q)
{
struct xe_hw_engine_snapshot *snapshot;
struct xe_guc_capture_snapshot *node;
@@ -887,6 +887,36 @@ xe_hw_engine_snapshot_capture(struct xe_hw_engine *hwe, struct xe_exec_queue *q)
return snapshot;
}
+/**
+ * xe_hw_engine_snapshot_capture_for_queue - Take snapshot of associated engine
+ * @q: The exec queue object
+ *
+ * Take snapshot of associated HW Engine
+ *
+ * Returns: None.
+ */
+void
+xe_hw_engine_snapshot_capture_for_queue(struct xe_exec_queue *q)
+{
+ struct xe_device *xe = gt_to_xe(q->gt);
+ struct xe_devcoredump *coredump = &xe->devcoredump;
+ struct xe_hw_engine *hwe;
+ enum xe_hw_engine_id id;
+ u32 adj_logical_mask = q->logical_mask;
+
+ if (IS_SRIOV_VF(xe))
+ return;
+
+ for_each_hw_engine(hwe, q->gt, id) {
+ if (hwe->class != q->hwe->class ||
+ !(BIT(hwe->logical_instance) & adj_logical_mask)) {
+ coredump->snapshot.hwe[id] = NULL;
+ continue;
+ }
+ coredump->snapshot.hwe[id] = hw_engine_snapshot_capture(hwe, q);
+ }
+}
+
/**
* xe_hw_engine_snapshot_free - Free all allocated objects for a given snapshot.
* @snapshot: Xe HW Engine snapshot object.
@@ -945,7 +975,7 @@ void xe_hw_engine_print(struct xe_hw_engine *hwe, struct drm_printer *p)
{
struct xe_hw_engine_snapshot *snapshot;
- snapshot = xe_hw_engine_snapshot_capture(hwe, NULL);
+ snapshot = hw_engine_snapshot_capture(hwe, NULL);
xe_hw_engine_snapshot_print(snapshot, p);
xe_hw_engine_snapshot_free(snapshot);
}
diff --git a/drivers/gpu/drm/xe/xe_hw_engine.h b/drivers/gpu/drm/xe/xe_hw_engine.h
index 069b32aa7423..74f6ea0c8d3e 100644
--- a/drivers/gpu/drm/xe/xe_hw_engine.h
+++ b/drivers/gpu/drm/xe/xe_hw_engine.h
@@ -55,8 +55,7 @@ void xe_hw_engine_handle_irq(struct xe_hw_engine *hwe, u16 intr_vec);
void xe_hw_engine_enable_ring(struct xe_hw_engine *hwe);
u32 xe_hw_engine_mask_per_class(struct xe_gt *gt,
enum xe_engine_class engine_class);
-struct xe_hw_engine_snapshot *
-xe_hw_engine_snapshot_capture(struct xe_hw_engine *hwe, struct xe_exec_queue *q);
+void xe_hw_engine_snapshot_capture_for_queue(struct xe_exec_queue *q);
void xe_hw_engine_snapshot_free(struct xe_hw_engine_snapshot *snapshot);
void xe_hw_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot, struct drm_printer *p);
void xe_hw_engine_print(struct xe_hw_engine *hwe, struct drm_printer *p);
--
2.34.1
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [PATCH v7 5/6] drm/xe/xe_hw_engine: Update xe_hw_engine capture for debugfs/gt_reset
2025-02-10 23:32 [PATCH v7 0/6] Maintenence of devcoredump <-> GuC-Err-Capture plumbing Alan Previn
` (3 preceding siblings ...)
2025-02-10 23:32 ` [PATCH v7 4/6] drm/xe/guc: Move xe_hw_engine_snapshot creation back to xe_hw_engine.c Alan Previn
@ 2025-02-10 23:32 ` Alan Previn
2025-02-11 17:34 ` Teres Alexis, Alan Previn
2025-02-10 23:32 ` [PATCH v7 6/6] drm/xe/guc: Update comments on GuC-Err-Capture flows Alan Previn
` (8 subsequent siblings)
13 siblings, 1 reply; 23+ messages in thread
From: Alan Previn @ 2025-02-10 23:32 UTC (permalink / raw)
To: intel-xe
Cc: Alan Previn, dri-devel, Daniele Ceraolo Spurio, John Harrison,
Matthew Brost, Zhanjun Dong, Rodrigo Vivi
xe_hw_engine_print is called by debugfs to do an immediate raw
dump of the engine registers. It depends on hw_engine_snapshot_capture
that assumes a prior capture with a matching job is ready for printing.
However, for the debugfs case, there is no prior job so ensure
hw_engine_snapshot_capture can also invoke GuC-Err-Capture for
an immediate jobless snapshot.
Additionally, because there are valid cases where raw-jobless
register dumps + printings are done such as gt-reset events,
let's differentiate manual captures that were attached to a
job vs late manual raw captures that are jobless.
v7:- Fix mismatch func name vs comment (kernel robot)
- Differentiate between early manual captures that have a
job association vs raw manual captures that may not have
a job association like in gt-reset events. (John Harrison).
Signed-off-by: Alan Previn <alan.previn.teres.alexis@intel.com>
---
drivers/gpu/drm/xe/xe_guc_capture.c | 37 +++++++++++++++++--
drivers/gpu/drm/xe/xe_guc_capture.h | 2 +
.../drm/xe/xe_guc_capture_snapshot_types.h | 6 ++-
drivers/gpu/drm/xe/xe_guc_submit.c | 2 +-
drivers/gpu/drm/xe/xe_hw_engine.c | 17 +++++++--
5 files changed, 55 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_guc_capture.c b/drivers/gpu/drm/xe/xe_guc_capture.c
index ff16bed86b77..746d3b21b18b 100644
--- a/drivers/gpu/drm/xe/xe_guc_capture.c
+++ b/drivers/gpu/drm/xe/xe_guc_capture.c
@@ -1584,6 +1584,32 @@ guc_capture_get_manual_snapshot(struct xe_guc *guc, struct xe_hw_engine *hwe)
return new;
}
+/**
+ * xe_guc_capture_snapshot_manual_hwe - Generate and get manual engine register dump
+ * @guc: Target GuC for manual capture
+ * @hwe: The engine instance to capture from
+ *
+ * Generate a manual GuC-Error-Capture snapshot of engine instance + engine class registers
+ * without any queue association. This capture node is not stored in outlist or cachelist,
+ * Returns: New capture node and caller must "put"
+ */
+struct xe_guc_capture_snapshot *
+xe_guc_capture_snapshot_manual_hwe(struct xe_guc *guc, struct xe_hw_engine *hwe)
+{
+ struct xe_guc_capture_snapshot *new;
+
+ new = guc_capture_get_manual_snapshot(guc, hwe);
+ if (!new)
+ return NULL;
+
+ new->guc_id = 0;
+ new->lrca = 0;
+ new->is_partial = 0;
+ new->source = XE_ENGINE_CAPTURE_SOURCE_MANUAL_RAW;
+
+ return new;
+}
+
/**
* xe_guc_capture_snapshot_store_manual_job - Generate and store a manual engine register dump
* @guc: Target GuC for manual capture
@@ -1631,7 +1657,7 @@ xe_guc_capture_snapshot_store_manual_job(struct xe_guc *guc, struct xe_exec_queu
new->lrca = xe_lrc_ggtt_addr(q->lrc[0]);
new->is_partial = 0;
new->locked = 1;
- new->source = XE_ENGINE_CAPTURE_SOURCE_MANUAL;
+ new->source = XE_ENGINE_CAPTURE_SOURCE_MANUAL_JOB;
guc_capture_add_node_to_outlist(guc->capture, new);
@@ -1772,6 +1798,11 @@ void xe_guc_capture_snapshot_print(struct xe_guc *guc, struct xe_guc_capture_sna
"full-capture",
"partial-capture"
};
+ const char *srctype[XE_ENGINE_CAPTURE_SOURCE_GUC + 1] = {
+ "Manual-Job",
+ "Manual-Raw",
+ "GuC"
+ };
int type;
const struct __guc_mmio_reg_descr_group *list;
struct xe_gt *gt;
@@ -1788,9 +1819,7 @@ void xe_guc_capture_snapshot_print(struct xe_guc *guc, struct xe_guc_capture_sna
return;
}
- drm_printf(p, "\tCapture_source: %s\n",
- node->source == XE_ENGINE_CAPTURE_SOURCE_GUC ?
- "GuC" : "Manual");
+ drm_printf(p, "\tCapture_source: %s\n", srctype[node->source]);
drm_printf(p, "\tCoverage: %s\n", grptype[node->is_partial]);
for (type = GUC_STATE_CAPTURE_TYPE_GLOBAL; type < GUC_STATE_CAPTURE_TYPE_MAX; type++) {
diff --git a/drivers/gpu/drm/xe/xe_guc_capture.h b/drivers/gpu/drm/xe/xe_guc_capture.h
index 77ee35a3f205..5df4b5579d2b 100644
--- a/drivers/gpu/drm/xe/xe_guc_capture.h
+++ b/drivers/gpu/drm/xe/xe_guc_capture.h
@@ -54,6 +54,8 @@ struct xe_guc_capture_snapshot *
xe_guc_capture_get_matching_and_lock(struct xe_exec_queue *q,
enum xe_guc_capture_snapshot_source srctype);
void xe_guc_capture_snapshot_store_manual_job(struct xe_guc *guc, struct xe_exec_queue *q);
+struct xe_guc_capture_snapshot *
+xe_guc_capture_snapshot_manual_hwe(struct xe_guc *guc, struct xe_hw_engine *hwe);
void xe_guc_capture_snapshot_print(struct xe_guc *guc, struct xe_guc_capture_snapshot *node,
struct drm_printer *p);
void xe_guc_capture_steered_list_init(struct xe_guc *guc);
diff --git a/drivers/gpu/drm/xe/xe_guc_capture_snapshot_types.h b/drivers/gpu/drm/xe/xe_guc_capture_snapshot_types.h
index a5579e69da2e..43f1cf046732 100644
--- a/drivers/gpu/drm/xe/xe_guc_capture_snapshot_types.h
+++ b/drivers/gpu/drm/xe/xe_guc_capture_snapshot_types.h
@@ -12,7 +12,11 @@
struct guc_mmio_reg;
enum xe_guc_capture_snapshot_source {
- XE_ENGINE_CAPTURE_SOURCE_MANUAL,
+ /* KMD captured engine registers when job timeout is detected */
+ XE_ENGINE_CAPTURE_SOURCE_MANUAL_JOB,
+ /* KMD captured raw engine registers without any job association */
+ XE_ENGINE_CAPTURE_SOURCE_MANUAL_RAW,
+ /* GUC-FW captured engine registers before workload was killed */
XE_ENGINE_CAPTURE_SOURCE_GUC
};
diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
index 6e33081dd7b8..4d7530e8bf63 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit.c
+++ b/drivers/gpu/drm/xe/xe_guc_submit.c
@@ -1079,7 +1079,7 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job)
/*
* Generate a manual capture. Below function will store it
* in GuC Error Capture's internal link-list as if it came from GuC
- * but with a source-type == XE_ENGINE_CAPTURE_SOURCE_MANUAL
+ * but with a source-type == XE_ENGINE_CAPTURE_SOURCE_MANUAL_JOB
*/
xe_guc_capture_snapshot_store_manual_job(guc, q);
xe_force_wake_put(gt_to_fw(q->gt), fw_ref);
diff --git a/drivers/gpu/drm/xe/xe_hw_engine.c b/drivers/gpu/drm/xe/xe_hw_engine.c
index fef01d2086a8..d0ed0639ae08 100644
--- a/drivers/gpu/drm/xe/xe_hw_engine.c
+++ b/drivers/gpu/drm/xe/xe_hw_engine.c
@@ -832,7 +832,7 @@ void xe_hw_engine_handle_irq(struct xe_hw_engine *hwe, u16 intr_vec)
/**
* hw_engine_snapshot_capture - Take a quick snapshot of the HW Engine.
* @hwe: Xe HW Engine.
- * @q: The exec queue object.
+ * @q: The exec queue object. (can be NULL for debugfs engine-register dump)
*
* This can be printed out in a later stage like during dev_coredump
* analysis.
@@ -845,9 +845,11 @@ hw_engine_snapshot_capture(struct xe_hw_engine *hwe, struct xe_exec_queue *q)
{
struct xe_hw_engine_snapshot *snapshot;
struct xe_guc_capture_snapshot *node;
+ struct xe_guc *guc;
if (!xe_hw_engine_is_valid(hwe))
return NULL;
+ guc = &hwe->gt->uc.guc;
snapshot = kzalloc(sizeof(*snapshot), GFP_ATOMIC);
@@ -869,7 +871,7 @@ hw_engine_snapshot_capture(struct xe_hw_engine *hwe, struct xe_exec_queue *q)
if (q) {
/* First, retrieve the manual GuC-Error-Capture node if it exists */
- node = xe_guc_capture_get_matching_and_lock(q, XE_ENGINE_CAPTURE_SOURCE_MANUAL);
+ node = xe_guc_capture_get_matching_and_lock(q, XE_ENGINE_CAPTURE_SOURCE_MANUAL_JOB);
/* Find preferred node type sourced from firmware if available */
snapshot->matched_node = xe_guc_capture_get_matching_and_lock(q, XE_ENGINE_CAPTURE_SOURCE_GUC);
if (!snapshot->matched_node) {
@@ -877,13 +879,22 @@ hw_engine_snapshot_capture(struct xe_hw_engine *hwe, struct xe_exec_queue *q)
snapshot->matched_node = node;
} else if (node) {
xe_gt_dbg(hwe->gt, "Found manual GuC-Err-Capture for queue %s", q->name);
- xe_guc_capture_put_matched_nodes(&hwe->gt->uc.guc, node);
+ xe_guc_capture_put_matched_nodes(guc, node);
}
if (!snapshot->matched_node)
xe_gt_dbg(hwe->gt, "Can't retrieve any GuC-Err-Capture node for queue %s",
q->name);
}
+ if (!snapshot->matched_node) {
+ /*
+ * Fallback path - do an immediate jobless manual engine capture.
+ * This will happen when debugfs is triggered to force an engine dump.
+ */
+ snapshot->matched_node = xe_guc_capture_snapshot_manual_hwe(guc, hwe);
+ xe_gt_dbg(hwe->gt, "Fallback to jobless-manual-err-capture node");
+ }
+
return snapshot;
}
--
2.34.1
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [PATCH v7 6/6] drm/xe/guc: Update comments on GuC-Err-Capture flows
2025-02-10 23:32 [PATCH v7 0/6] Maintenence of devcoredump <-> GuC-Err-Capture plumbing Alan Previn
` (4 preceding siblings ...)
2025-02-10 23:32 ` [PATCH v7 5/6] drm/xe/xe_hw_engine: Update xe_hw_engine capture for debugfs/gt_reset Alan Previn
@ 2025-02-10 23:32 ` Alan Previn
2025-02-11 23:09 ` Dong, Zhanjun
2025-02-11 0:38 ` ✓ CI.Patch_applied: success for Maintenence of devcoredump <-> GuC-Err-Capture plumbing Patchwork
` (7 subsequent siblings)
13 siblings, 1 reply; 23+ messages in thread
From: Alan Previn @ 2025-02-10 23:32 UTC (permalink / raw)
To: intel-xe
Cc: Alan Previn, dri-devel, Daniele Ceraolo Spurio, John Harrison,
Matthew Brost, Zhanjun Dong, Rodrigo Vivi
Update the comments on GuC-Err-Capture flows with the
updated function names.
Signed-off-by: Alan Previn <alan.previn.teres.alexis@intel.com>
---
drivers/gpu/drm/xe/xe_guc_capture.c | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_guc_capture.c b/drivers/gpu/drm/xe/xe_guc_capture.c
index 746d3b21b18b..15f9b08ff7bb 100644
--- a/drivers/gpu/drm/xe/xe_guc_capture.c
+++ b/drivers/gpu/drm/xe/xe_guc_capture.c
@@ -905,22 +905,25 @@ guc_capture_init_node(struct xe_guc *guc, struct xe_guc_capture_snapshot *node)
* list. This list is used for matchup and printout by xe_devcoredump_read
* and xe_engine_snapshot_print, (when user invokes the devcoredump sysfs).
*
- * GUC --> notify context reset:
- * -----------------------------
+ * DRM Scheduler job-timeout OR GuC-notify guc-id reset:
+ * -----------------------------------------------------
* --> guc_exec_queue_timedout_job
- * L--> xe_devcoredump
+ * L--> xe_guc_capture_snapshot_store_manual_job (if GuC didn't report an
+ * error capture node for this job)
+ * L--> xe_devcoredump
* L--> devcoredump_snapshot
- * --> xe_hw_engine_snapshot_capture
- * --> xe_engine_manual_capture(For manual capture)
+ * --> xe_engine_snapshot_capture_for_queue
*
- * User Sysfs / Debugfs
- * --------------------
- * --> xe_devcoredump_read->
+ * User Devcoredump Sysfs
+ * ----------------------
+ * --> xe_devcoredump_read-> (user cats devcoredump)
* L--> xxx_snapshot_print
* L--> xe_hw_engine_print --> xe_hw_engine_snapshot_print
* L--> xe_guc_capture_snapshot_print
* Print register lists values saved in matching
* node from guc->capture->outlist
+ * --> xe_devcoredump_free (when user clears the dump)
+ * L--> xe_devcoredump_snapshot_free --> xe_guc_capture_put_matched_nodes
*
*/
--
2.34.1
^ permalink raw reply related [flat|nested] 23+ messages in thread
* ✓ CI.Patch_applied: success for Maintenence of devcoredump <-> GuC-Err-Capture plumbing
2025-02-10 23:32 [PATCH v7 0/6] Maintenence of devcoredump <-> GuC-Err-Capture plumbing Alan Previn
` (5 preceding siblings ...)
2025-02-10 23:32 ` [PATCH v7 6/6] drm/xe/guc: Update comments on GuC-Err-Capture flows Alan Previn
@ 2025-02-11 0:38 ` Patchwork
2025-02-11 0:38 ` ✗ CI.checkpatch: warning " Patchwork
` (6 subsequent siblings)
13 siblings, 0 replies; 23+ messages in thread
From: Patchwork @ 2025-02-11 0:38 UTC (permalink / raw)
To: Alan Previn; +Cc: intel-xe
== Series Details ==
Series: Maintenence of devcoredump <-> GuC-Err-Capture plumbing
URL : https://patchwork.freedesktop.org/series/144634/
State : success
== Summary ==
=== Applying kernel patches on branch 'drm-tip' with base: ===
Base commit: 2fc58ab10139 drm-tip: 2025y-02m-10d-21h-24m-23s UTC integration manifest
=== git am output follows ===
Applying: drm/xe/guc: Rename __guc_capture_parsed_output
Applying: drm/xe/guc: Don't store capture nodes in xe_devcoredump_snapshot
Applying: drm/xe/guc: Split engine state print between xe_hw_engine vs xe_guc_capture
Applying: drm/xe/guc: Move xe_hw_engine_snapshot creation back to xe_hw_engine.c
Applying: drm/xe/xe_hw_engine: Update xe_hw_engine capture for debugfs/gt_reset
Applying: drm/xe/guc: Update comments on GuC-Err-Capture flows
^ permalink raw reply [flat|nested] 23+ messages in thread
* ✗ CI.checkpatch: warning for Maintenence of devcoredump <-> GuC-Err-Capture plumbing
2025-02-10 23:32 [PATCH v7 0/6] Maintenence of devcoredump <-> GuC-Err-Capture plumbing Alan Previn
` (6 preceding siblings ...)
2025-02-11 0:38 ` ✓ CI.Patch_applied: success for Maintenence of devcoredump <-> GuC-Err-Capture plumbing Patchwork
@ 2025-02-11 0:38 ` Patchwork
2025-02-11 0:39 ` ✓ CI.KUnit: success " Patchwork
` (5 subsequent siblings)
13 siblings, 0 replies; 23+ messages in thread
From: Patchwork @ 2025-02-11 0:38 UTC (permalink / raw)
To: Alan Previn; +Cc: intel-xe
== Series Details ==
Series: Maintenence of devcoredump <-> GuC-Err-Capture plumbing
URL : https://patchwork.freedesktop.org/series/144634/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
22f9cda3436b4fe965b5c5f31d2f2c1bcb483189
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit efa69c95b2ef0a89fdcf33cb39297b3323aa35d8
Author: Alan Previn <alan.previn.teres.alexis@intel.com>
Date: Mon Feb 10 15:32:54 2025 -0800
drm/xe/guc: Update comments on GuC-Err-Capture flows
Update the comments on GuC-Err-Capture flows with the
updated function names.
Signed-off-by: Alan Previn <alan.previn.teres.alexis@intel.com>
+ /mt/dim checkpatch 2fc58ab10139895686001c7e1ee247f15226abc4 drm-intel
6afe7023a85c drm/xe/guc: Rename __guc_capture_parsed_output
-:282: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#282:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 301 lines checked
102df79fce37 drm/xe/guc: Don't store capture nodes in xe_devcoredump_snapshot
-:430: WARNING:LONG_LINE: line length of 111 exceeds 100 columns
#430: FILE: drivers/gpu/drm/xe/xe_hw_engine.c:874:
+ snapshot->matched_node = xe_guc_capture_get_matching_and_lock(q, XE_ENGINE_CAPTURE_SOURCE_GUC);
total: 0 errors, 1 warnings, 0 checks, 413 lines checked
2886b373bcbb drm/xe/guc: Split engine state print between xe_hw_engine vs xe_guc_capture
366f9e811e25 drm/xe/guc: Move xe_hw_engine_snapshot creation back to xe_hw_engine.c
8c6b1bf11f1e drm/xe/xe_hw_engine: Update xe_hw_engine capture for debugfs/gt_reset
efa69c95b2ef drm/xe/guc: Update comments on GuC-Err-Capture flows
^ permalink raw reply [flat|nested] 23+ messages in thread
* ✓ CI.KUnit: success for Maintenence of devcoredump <-> GuC-Err-Capture plumbing
2025-02-10 23:32 [PATCH v7 0/6] Maintenence of devcoredump <-> GuC-Err-Capture plumbing Alan Previn
` (7 preceding siblings ...)
2025-02-11 0:38 ` ✗ CI.checkpatch: warning " Patchwork
@ 2025-02-11 0:39 ` Patchwork
2025-02-11 0:56 ` ✓ CI.Build: " Patchwork
` (4 subsequent siblings)
13 siblings, 0 replies; 23+ messages in thread
From: Patchwork @ 2025-02-11 0:39 UTC (permalink / raw)
To: Alan Previn; +Cc: intel-xe
== Series Details ==
Series: Maintenence of devcoredump <-> GuC-Err-Capture plumbing
URL : https://patchwork.freedesktop.org/series/144634/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[00:38:29] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[00:38:33] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
156 | u64 ioread64_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
163 | u64 ioread64_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
170 | u64 ioread64be_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
178 | u64 ioread64be_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
[00:38:59] Starting KUnit Kernel (1/1)...
[00:38:59] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[00:38:59] ================== guc_buf (11 subtests) ===================
[00:38:59] [PASSED] test_smallest
[00:38:59] [PASSED] test_largest
[00:38:59] [PASSED] test_granular
[00:38:59] [PASSED] test_unique
[00:38:59] [PASSED] test_overlap
[00:38:59] [PASSED] test_reusable
[00:38:59] [PASSED] test_too_big
[00:38:59] [PASSED] test_flush
[00:38:59] [PASSED] test_lookup
[00:38:59] [PASSED] test_data
[00:38:59] [PASSED] test_class
[00:38:59] ===================== [PASSED] guc_buf =====================
[00:38:59] =================== guc_dbm (7 subtests) ===================
[00:38:59] [PASSED] test_empty
[00:38:59] [PASSED] test_default
[00:38:59] ======================== test_size ========================
[00:38:59] [PASSED] 4
[00:38:59] [PASSED] 8
[00:38:59] [PASSED] 32
[00:38:59] [PASSED] 256
[00:38:59] ==================== [PASSED] test_size ====================
[00:38:59] ======================= test_reuse ========================
[00:38:59] [PASSED] 4
[00:38:59] [PASSED] 8
[00:38:59] [PASSED] 32
[00:38:59] [PASSED] 256
[00:38:59] =================== [PASSED] test_reuse ====================
[00:38:59] =================== test_range_overlap ====================
[00:38:59] [PASSED] 4
[00:38:59] [PASSED] 8
[00:38:59] [PASSED] 32
[00:38:59] [PASSED] 256
[00:38:59] =============== [PASSED] test_range_overlap ================
[00:38:59] =================== test_range_compact ====================
[00:38:59] [PASSED] 4
[00:38:59] [PASSED] 8
[00:38:59] [PASSED] 32
[00:38:59] [PASSED] 256
[00:38:59] =============== [PASSED] test_range_compact ================
[00:38:59] ==================== test_range_spare =====================
[00:38:59] [PASSED] 4
[00:38:59] [PASSED] 8
[00:38:59] [PASSED] 32
[00:38:59] [PASSED] 256
[00:38:59] ================ [PASSED] test_range_spare =================
[00:38:59] ===================== [PASSED] guc_dbm =====================
[00:38:59] =================== guc_idm (6 subtests) ===================
[00:38:59] [PASSED] bad_init
[00:38:59] [PASSED] no_init
[00:38:59] [PASSED] init_fini
[00:38:59] [PASSED] check_used
[00:38:59] [PASSED] check_quota
[00:38:59] [PASSED] check_all
[00:38:59] ===================== [PASSED] guc_idm =====================
[00:38:59] ================== no_relay (3 subtests) ===================
[00:38:59] [PASSED] xe_drops_guc2pf_if_not_ready
[00:38:59] [PASSED] xe_drops_guc2vf_if_not_ready
[00:38:59] [PASSED] xe_rejects_send_if_not_ready
[00:38:59] ==================== [PASSED] no_relay =====================
[00:38:59] ================== pf_relay (14 subtests) ==================
[00:38:59] [PASSED] pf_rejects_guc2pf_too_short
[00:38:59] [PASSED] pf_rejects_guc2pf_too_long
[00:38:59] [PASSED] pf_rejects_guc2pf_no_payload
[00:38:59] [PASSED] pf_fails_no_payload
[00:38:59] [PASSED] pf_fails_bad_origin
[00:38:59] [PASSED] pf_fails_bad_type
[00:38:59] [PASSED] pf_txn_reports_error
[00:38:59] [PASSED] pf_txn_sends_pf2guc
[00:38:59] [PASSED] pf_sends_pf2guc
[00:38:59] [SKIPPED] pf_loopback_nop
[00:38:59] [SKIPPED] pf_loopback_echo
[00:38:59] [SKIPPED] pf_loopback_fail
[00:38:59] [SKIPPED] pf_loopback_busy
[00:38:59] [SKIPPED] pf_loopback_retry
[00:38:59] ==================== [PASSED] pf_relay =====================
[00:38:59] ================== vf_relay (3 subtests) ===================
[00:38:59] [PASSED] vf_rejects_guc2vf_too_short
[00:38:59] [PASSED] vf_rejects_guc2vf_too_long
[00:38:59] [PASSED] vf_rejects_guc2vf_no_payload
[00:38:59] ==================== [PASSED] vf_relay =====================
[00:38:59] ================= pf_service (11 subtests) =================
[00:38:59] [PASSED] pf_negotiate_any
[00:38:59] [PASSED] pf_negotiate_base_match
[00:38:59] [PASSED] pf_negotiate_base_newer
[00:38:59] [PASSED] pf_negotiate_base_next
[00:38:59] [SKIPPED] pf_negotiate_base_older
[00:38:59] [PASSED] pf_negotiate_base_prev
[00:38:59] [PASSED] pf_negotiate_latest_match
[00:38:59] [PASSED] pf_negotiate_latest_newer
[00:38:59] [PASSED] pf_negotiate_latest_next
[00:38:59] [SKIPPED] pf_negotiate_latest_older
[00:38:59] [SKIPPED] pf_negotiate_latest_prev
[00:38:59] =================== [PASSED] pf_service ====================
[00:38:59] ===================== lmtt (1 subtest) =====================
[00:38:59] ======================== test_ops =========================
[00:38:59] [PASSED] 2-level
[00:38:59] [PASSED] multi-level
[00:38:59] ==================== [PASSED] test_ops =====================
[00:38:59] ====================== [PASSED] lmtt =======================
[00:38:59] =================== xe_mocs (2 subtests) ===================
[00:38:59] ================ xe_live_mocs_kernel_kunit ================
[00:38:59] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[00:38:59] ================ xe_live_mocs_reset_kunit =================
[00:38:59] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[00:38:59] ==================== [SKIPPED] xe_mocs =====================
[00:38:59] ================= xe_migrate (2 subtests) ==================
[00:38:59] ================= xe_migrate_sanity_kunit =================
[00:38:59] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[00:38:59] ================== xe_validate_ccs_kunit ==================
[00:38:59] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[00:38:59] =================== [SKIPPED] xe_migrate ===================
[00:38:59] ================== xe_dma_buf (1 subtest) ==================
[00:38:59] ==================== xe_dma_buf_kunit =====================
[00:38:59] ================ [SKIPPED] xe_dma_buf_kunit ================
[00:38:59] =================== [SKIPPED] xe_dma_buf ===================
[00:38:59] ================= xe_bo_shrink (1 subtest) =================
[00:38:59] =================== xe_bo_shrink_kunit ====================
[00:38:59] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[00:38:59] ================== [SKIPPED] xe_bo_shrink ==================
[00:38:59] ==================== xe_bo (2 subtests) ====================
[00:38:59] ================== xe_ccs_migrate_kunit ===================
[00:38:59] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
stty: 'standard input': Inappropriate ioctl for device
[00:38:59] ==================== xe_bo_evict_kunit ====================
[00:38:59] =============== [SKIPPED] xe_bo_evict_kunit ================
[00:38:59] ===================== [SKIPPED] xe_bo ======================
[00:38:59] ==================== args (11 subtests) ====================
[00:38:59] [PASSED] count_args_test
[00:38:59] [PASSED] call_args_example
[00:38:59] [PASSED] call_args_test
[00:38:59] [PASSED] drop_first_arg_example
[00:38:59] [PASSED] drop_first_arg_test
[00:38:59] [PASSED] first_arg_example
[00:38:59] [PASSED] first_arg_test
[00:38:59] [PASSED] last_arg_example
[00:38:59] [PASSED] last_arg_test
[00:38:59] [PASSED] pick_arg_example
[00:38:59] [PASSED] sep_comma_example
[00:38:59] ====================== [PASSED] args =======================
[00:38:59] =================== xe_pci (2 subtests) ====================
[00:38:59] [PASSED] xe_gmdid_graphics_ip
[00:38:59] [PASSED] xe_gmdid_media_ip
[00:38:59] ===================== [PASSED] xe_pci ======================
[00:38:59] =================== xe_rtp (2 subtests) ====================
[00:38:59] =============== xe_rtp_process_to_sr_tests ================
[00:38:59] [PASSED] coalesce-same-reg
[00:38:59] [PASSED] no-match-no-add
[00:38:59] [PASSED] match-or
[00:38:59] [PASSED] match-or-xfail
[00:38:59] [PASSED] no-match-no-add-multiple-rules
[00:38:59] [PASSED] two-regs-two-entries
[00:38:59] [PASSED] clr-one-set-other
[00:38:59] [PASSED] set-field
[00:38:59] [PASSED] conflict-duplicate
[00:38:59] [PASSED] conflict-not-disjoint
[00:38:59] [PASSED] conflict-reg-type
[00:38:59] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[00:38:59] ================== xe_rtp_process_tests ===================
[00:38:59] [PASSED] active1
[00:38:59] [PASSED] active2
[00:38:59] [PASSED] active-inactive
[00:38:59] [PASSED] inactive-active
[00:38:59] [PASSED] inactive-1st_or_active-inactive
[00:38:59] [PASSED] inactive-2nd_or_active-inactive
[00:38:59] [PASSED] inactive-last_or_active-inactive
[00:38:59] [PASSED] inactive-no_or_active-inactive
[00:38:59] ============== [PASSED] xe_rtp_process_tests ===============
[00:38:59] ===================== [PASSED] xe_rtp ======================
[00:38:59] ==================== xe_wa (1 subtest) =====================
[00:38:59] ======================== xe_wa_gt =========================
[00:38:59] [PASSED] TIGERLAKE (B0)
[00:38:59] [PASSED] DG1 (A0)
[00:38:59] [PASSED] DG1 (B0)
[00:38:59] [PASSED] ALDERLAKE_S (A0)
[00:38:59] [PASSED] ALDERLAKE_S (B0)
[00:38:59] [PASSED] ALDERLAKE_S (C0)
[00:38:59] [PASSED] ALDERLAKE_S (D0)
[00:38:59] [PASSED] ALDERLAKE_P (A0)
[00:38:59] [PASSED] ALDERLAKE_P (B0)
[00:38:59] [PASSED] ALDERLAKE_P (C0)
[00:38:59] [PASSED] ALDERLAKE_S_RPLS (D0)
[00:38:59] [PASSED] ALDERLAKE_P_RPLU (E0)
[00:38:59] [PASSED] DG2_G10 (C0)
[00:38:59] [PASSED] DG2_G11 (B1)
[00:38:59] [PASSED] DG2_G12 (A1)
[00:38:59] [PASSED] METEORLAKE (g:A0, m:A0)
[00:38:59] [PASSED] METEORLAKE (g:A0, m:A0)
[00:38:59] [PASSED] METEORLAKE (g:A0, m:A0)
[00:38:59] [PASSED] LUNARLAKE (g:A0, m:A0)
[00:38:59] [PASSED] LUNARLAKE (g:B0, m:A0)
[00:38:59] [PASSED] BATTLEMAGE (g:A0, m:A1)
[00:38:59] ==================== [PASSED] xe_wa_gt =====================
[00:38:59] ====================== [PASSED] xe_wa ======================
[00:38:59] ============================================================
[00:38:59] Testing complete. Ran 133 tests: passed: 117, skipped: 16
[00:38:59] Elapsed time: 30.335s total, 4.196s configuring, 25.872s building, 0.256s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[00:39:00] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[00:39:01] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
156 | u64 ioread64_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
163 | u64 ioread64_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
170 | u64 ioread64be_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
178 | u64 ioread64be_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
[00:39:22] Starting KUnit Kernel (1/1)...
[00:39:22] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[00:39:23] =========== drm_validate_clone_mode (2 subtests) ===========
[00:39:23] ============== drm_test_check_in_clone_mode ===============
[00:39:23] [PASSED] in_clone_mode
[00:39:23] [PASSED] not_in_clone_mode
[00:39:23] ========== [PASSED] drm_test_check_in_clone_mode ===========
[00:39:23] =============== drm_test_check_valid_clones ===============
[00:39:23] [PASSED] not_in_clone_mode
[00:39:23] [PASSED] valid_clone
[00:39:23] [PASSED] invalid_clone
[00:39:23] =========== [PASSED] drm_test_check_valid_clones ===========
[00:39:23] ============= [PASSED] drm_validate_clone_mode =============
[00:39:23] ============= drm_validate_modeset (1 subtest) =============
[00:39:23] [PASSED] drm_test_check_connector_changed_modeset
[00:39:23] ============== [PASSED] drm_validate_modeset ===============
[00:39:23] ================== drm_buddy (7 subtests) ==================
[00:39:23] [PASSED] drm_test_buddy_alloc_limit
[00:39:23] [PASSED] drm_test_buddy_alloc_optimistic
[00:39:23] [PASSED] drm_test_buddy_alloc_pessimistic
[00:39:23] [PASSED] drm_test_buddy_alloc_pathological
[00:39:23] [PASSED] drm_test_buddy_alloc_contiguous
[00:39:23] [PASSED] drm_test_buddy_alloc_clear
[00:39:23] [PASSED] drm_test_buddy_alloc_range_bias
[00:39:23] ==================== [PASSED] drm_buddy ====================
[00:39:23] ============= drm_cmdline_parser (40 subtests) =============
[00:39:23] [PASSED] drm_test_cmdline_force_d_only
[00:39:23] [PASSED] drm_test_cmdline_force_D_only_dvi
[00:39:23] [PASSED] drm_test_cmdline_force_D_only_hdmi
[00:39:23] [PASSED] drm_test_cmdline_force_D_only_not_digital
[00:39:23] [PASSED] drm_test_cmdline_force_e_only
[00:39:23] [PASSED] drm_test_cmdline_res
[00:39:23] [PASSED] drm_test_cmdline_res_vesa
[00:39:23] [PASSED] drm_test_cmdline_res_vesa_rblank
[00:39:23] [PASSED] drm_test_cmdline_res_rblank
[00:39:23] [PASSED] drm_test_cmdline_res_bpp
[00:39:23] [PASSED] drm_test_cmdline_res_refresh
[00:39:23] [PASSED] drm_test_cmdline_res_bpp_refresh
[00:39:23] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[00:39:23] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[00:39:23] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[00:39:23] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[00:39:23] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[00:39:23] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[00:39:23] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[00:39:23] [PASSED] drm_test_cmdline_res_margins_force_on
[00:39:23] [PASSED] drm_test_cmdline_res_vesa_margins
[00:39:23] [PASSED] drm_test_cmdline_name
[00:39:23] [PASSED] drm_test_cmdline_name_bpp
[00:39:23] [PASSED] drm_test_cmdline_name_option
[00:39:23] [PASSED] drm_test_cmdline_name_bpp_option
[00:39:23] [PASSED] drm_test_cmdline_rotate_0
[00:39:23] [PASSED] drm_test_cmdline_rotate_90
[00:39:23] [PASSED] drm_test_cmdline_rotate_180
[00:39:23] [PASSED] drm_test_cmdline_rotate_270
[00:39:23] [PASSED] drm_test_cmdline_hmirror
[00:39:23] [PASSED] drm_test_cmdline_vmirror
[00:39:23] [PASSED] drm_test_cmdline_margin_options
[00:39:23] [PASSED] drm_test_cmdline_multiple_options
[00:39:23] [PASSED] drm_test_cmdline_bpp_extra_and_option
[00:39:23] [PASSED] drm_test_cmdline_extra_and_option
[00:39:23] [PASSED] drm_test_cmdline_freestanding_options
[00:39:23] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[00:39:23] [PASSED] drm_test_cmdline_panel_orientation
[00:39:23] ================ drm_test_cmdline_invalid =================
[00:39:23] [PASSED] margin_only
[00:39:23] [PASSED] interlace_only
[00:39:23] [PASSED] res_missing_x
[00:39:23] [PASSED] res_missing_y
[00:39:23] [PASSED] res_bad_y
[00:39:23] [PASSED] res_missing_y_bpp
[00:39:23] [PASSED] res_bad_bpp
[00:39:23] [PASSED] res_bad_refresh
[00:39:23] [PASSED] res_bpp_refresh_force_on_off
[00:39:23] [PASSED] res_invalid_mode
[00:39:23] [PASSED] res_bpp_wrong_place_mode
[00:39:23] [PASSED] name_bpp_refresh
[00:39:23] [PASSED] name_refresh
[00:39:23] [PASSED] name_refresh_wrong_mode
[00:39:23] [PASSED] name_refresh_invalid_mode
[00:39:23] [PASSED] rotate_multiple
[00:39:23] [PASSED] rotate_invalid_val
[00:39:23] [PASSED] rotate_truncated
[00:39:23] [PASSED] invalid_option
[00:39:23] [PASSED] invalid_tv_option
[00:39:23] [PASSED] truncated_tv_option
[00:39:23] ============ [PASSED] drm_test_cmdline_invalid =============
[00:39:23] =============== drm_test_cmdline_tv_options ===============
[00:39:23] [PASSED] NTSC
[00:39:23] [PASSED] NTSC_443
[00:39:23] [PASSED] NTSC_J
[00:39:23] [PASSED] PAL
[00:39:23] [PASSED] PAL_M
[00:39:23] [PASSED] PAL_N
[00:39:23] [PASSED] SECAM
[00:39:23] [PASSED] MONO_525
[00:39:23] [PASSED] MONO_625
[00:39:23] =========== [PASSED] drm_test_cmdline_tv_options ===========
[00:39:23] =============== [PASSED] drm_cmdline_parser ================
[00:39:23] ========== drmm_connector_hdmi_init (20 subtests) ==========
[00:39:23] [PASSED] drm_test_connector_hdmi_init_valid
[00:39:23] [PASSED] drm_test_connector_hdmi_init_bpc_8
[00:39:23] [PASSED] drm_test_connector_hdmi_init_bpc_10
[00:39:23] [PASSED] drm_test_connector_hdmi_init_bpc_12
[00:39:23] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[00:39:23] [PASSED] drm_test_connector_hdmi_init_bpc_null
[00:39:23] [PASSED] drm_test_connector_hdmi_init_formats_empty
[00:39:23] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[00:39:23] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[00:39:23] [PASSED] supported_formats=0x9 yuv420_allowed=1
[00:39:23] [PASSED] supported_formats=0x9 yuv420_allowed=0
[00:39:23] [PASSED] supported_formats=0x3 yuv420_allowed=1
[00:39:23] [PASSED] supported_formats=0x3 yuv420_allowed=0
[00:39:23] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[00:39:23] [PASSED] drm_test_connector_hdmi_init_null_ddc
[00:39:23] [PASSED] drm_test_connector_hdmi_init_null_product
[00:39:23] [PASSED] drm_test_connector_hdmi_init_null_vendor
[00:39:23] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[00:39:23] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[00:39:23] [PASSED] drm_test_connector_hdmi_init_product_valid
[00:39:23] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[00:39:23] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[00:39:23] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[00:39:23] ========= drm_test_connector_hdmi_init_type_valid =========
[00:39:23] [PASSED] HDMI-A
[00:39:23] [PASSED] HDMI-B
[00:39:23] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[00:39:23] ======== drm_test_connector_hdmi_init_type_invalid ========
[00:39:23] [PASSED] Unknown
[00:39:23] [PASSED] VGA
[00:39:23] [PASSED] DVI-I
[00:39:23] [PASSED] DVI-D
[00:39:23] [PASSED] DVI-A
[00:39:23] [PASSED] Composite
[00:39:23] [PASSED] SVIDEO
[00:39:23] [PASSED] LVDS
[00:39:23] [PASSED] Component
[00:39:23] [PASSED] DIN
[00:39:23] [PASSED] DP
[00:39:23] [PASSED] TV
[00:39:23] [PASSED] eDP
[00:39:23] [PASSED] Virtual
[00:39:23] [PASSED] DSI
[00:39:23] [PASSED] DPI
[00:39:23] [PASSED] Writeback
[00:39:23] [PASSED] SPI
[00:39:23] [PASSED] USB
[00:39:23] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[00:39:23] ============ [PASSED] drmm_connector_hdmi_init =============
[00:39:23] ============= drmm_connector_init (3 subtests) =============
[00:39:23] [PASSED] drm_test_drmm_connector_init
[00:39:23] [PASSED] drm_test_drmm_connector_init_null_ddc
[00:39:23] ========= drm_test_drmm_connector_init_type_valid =========
[00:39:23] [PASSED] Unknown
[00:39:23] [PASSED] VGA
[00:39:23] [PASSED] DVI-I
[00:39:23] [PASSED] DVI-D
[00:39:23] [PASSED] DVI-A
[00:39:23] [PASSED] Composite
[00:39:23] [PASSED] SVIDEO
[00:39:23] [PASSED] LVDS
[00:39:23] [PASSED] Component
[00:39:23] [PASSED] DIN
[00:39:23] [PASSED] DP
[00:39:23] [PASSED] HDMI-A
[00:39:23] [PASSED] HDMI-B
[00:39:23] [PASSED] TV
[00:39:23] [PASSED] eDP
[00:39:23] [PASSED] Virtual
[00:39:23] [PASSED] DSI
[00:39:23] [PASSED] DPI
[00:39:23] [PASSED] Writeback
[00:39:23] [PASSED] SPI
[00:39:23] [PASSED] USB
[00:39:23] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[00:39:23] =============== [PASSED] drmm_connector_init ===============
[00:39:23] ========= drm_connector_dynamic_init (6 subtests) ==========
[00:39:23] [PASSED] drm_test_drm_connector_dynamic_init
[00:39:23] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[00:39:23] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[00:39:23] [PASSED] drm_test_drm_connector_dynamic_init_properties
[00:39:23] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[00:39:23] [PASSED] Unknown
[00:39:23] [PASSED] VGA
[00:39:23] [PASSED] DVI-I
[00:39:23] [PASSED] DVI-D
[00:39:23] [PASSED] DVI-A
[00:39:23] [PASSED] Composite
[00:39:23] [PASSED] SVIDEO
[00:39:23] [PASSED] LVDS
[00:39:23] [PASSED] Component
[00:39:23] [PASSED] DIN
[00:39:23] [PASSED] DP
[00:39:23] [PASSED] HDMI-A
[00:39:23] [PASSED] HDMI-B
[00:39:23] [PASSED] TV
[00:39:23] [PASSED] eDP
[00:39:23] [PASSED] Virtual
[00:39:23] [PASSED] DSI
[00:39:23] [PASSED] DPI
[00:39:23] [PASSED] Writeback
[00:39:23] [PASSED] SPI
[00:39:23] [PASSED] USB
[00:39:23] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[00:39:23] ======== drm_test_drm_connector_dynamic_init_name =========
[00:39:23] [PASSED] Unknown
[00:39:23] [PASSED] VGA
[00:39:23] [PASSED] DVI-I
[00:39:23] [PASSED] DVI-D
[00:39:23] [PASSED] DVI-A
[00:39:23] [PASSED] Composite
[00:39:23] [PASSED] SVIDEO
[00:39:23] [PASSED] LVDS
[00:39:23] [PASSED] Component
[00:39:23] [PASSED] DIN
[00:39:23] [PASSED] DP
[00:39:23] [PASSED] HDMI-A
[00:39:23] [PASSED] HDMI-B
[00:39:23] [PASSED] TV
[00:39:23] [PASSED] eDP
[00:39:23] [PASSED] Virtual
[00:39:23] [PASSED] DSI
[00:39:23] [PASSED] DPI
[00:39:23] [PASSED] Writeback
[00:39:23] [PASSED] SPI
[00:39:23] [PASSED] USB
[00:39:23] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[00:39:23] =========== [PASSED] drm_connector_dynamic_init ============
[00:39:23] ==== drm_connector_dynamic_register_early (4 subtests) =====
[00:39:23] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[00:39:23] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[00:39:23] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[00:39:23] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[00:39:23] ====== [PASSED] drm_connector_dynamic_register_early =======
[00:39:23] ======= drm_connector_dynamic_register (7 subtests) ========
[00:39:23] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[00:39:23] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[00:39:23] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[00:39:23] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[00:39:23] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[00:39:23] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[00:39:23] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[00:39:23] ========= [PASSED] drm_connector_dynamic_register ==========
[00:39:23] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[00:39:23] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[00:39:23] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[00:39:23] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[00:39:23] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[00:39:23] ========== drm_test_get_tv_mode_from_name_valid ===========
[00:39:23] [PASSED] NTSC
[00:39:23] [PASSED] NTSC-443
[00:39:23] [PASSED] NTSC-J
[00:39:23] [PASSED] PAL
[00:39:23] [PASSED] PAL-M
[00:39:23] [PASSED] PAL-N
[00:39:23] [PASSED] SECAM
[00:39:23] [PASSED] Mono
[00:39:23] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[00:39:23] [PASSED] drm_test_get_tv_mode_from_name_truncated
[00:39:23] ============ [PASSED] drm_get_tv_mode_from_name ============
[00:39:23] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[00:39:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[00:39:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[00:39:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[00:39:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[00:39:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[00:39:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[00:39:23] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[00:39:23] [PASSED] VIC 96
[00:39:23] [PASSED] VIC 97
[00:39:23] [PASSED] VIC 101
[00:39:23] [PASSED] VIC 102
[00:39:23] [PASSED] VIC 106
[00:39:23] [PASSED] VIC 107
[00:39:23] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[00:39:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[00:39:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[00:39:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[00:39:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[00:39:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[00:39:23] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[00:39:23] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[00:39:23] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[00:39:23] [PASSED] Automatic
[00:39:23] [PASSED] Full
[00:39:23] [PASSED] Limited 16:235
[00:39:23] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[00:39:23] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[00:39:23] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[00:39:23] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[00:39:23] === drm_test_drm_hdmi_connector_get_output_format_name ====
[00:39:23] [PASSED] RGB
[00:39:23] [PASSED] YUV 4:2:0
[00:39:23] [PASSED] YUV 4:2:2
[00:39:23] [PASSED] YUV 4:4:4
[00:39:23] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[00:39:23] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[00:39:23] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[00:39:23] ============= drm_damage_helper (21 subtests) ==============
[00:39:23] [PASSED] drm_test_damage_iter_no_damage
[00:39:23] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[00:39:23] [PASSED] drm_test_damage_iter_no_damage_src_moved
[00:39:23] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[00:39:23] [PASSED] drm_test_damage_iter_no_damage_not_visible
[00:39:23] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[00:39:23] [PASSED] drm_test_damage_iter_no_damage_no_fb
[00:39:23] [PASSED] drm_test_damage_iter_simple_damage
[00:39:23] [PASSED] drm_test_damage_iter_single_damage
[00:39:23] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[00:39:23] [PASSED] drm_test_damage_iter_single_damage_outside_src
[00:39:23] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[00:39:23] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[00:39:23] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[00:39:23] [PASSED] drm_test_damage_iter_single_damage_src_moved
[00:39:23] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[00:39:23] [PASSED] drm_test_damage_iter_damage
[00:39:23] [PASSED] drm_test_damage_iter_damage_one_intersect
[00:39:23] [PASSED] drm_test_damage_iter_damage_one_outside
[00:39:23] [PASSED] drm_test_damage_iter_damage_src_moved
[00:39:23] [PASSED] drm_test_damage_iter_damage_not_visible
[00:39:23] ================ [PASSED] drm_damage_helper ================
[00:39:23] ============== drm_dp_mst_helper (3 subtests) ==============
[00:39:23] ============== drm_test_dp_mst_calc_pbn_mode ==============
[00:39:23] [PASSED] Clock 154000 BPP 30 DSC disabled
[00:39:23] [PASSED] Clock 234000 BPP 30 DSC disabled
[00:39:23] [PASSED] Clock 297000 BPP 24 DSC disabled
[00:39:23] [PASSED] Clock 332880 BPP 24 DSC enabled
[00:39:23] [PASSED] Clock 324540 BPP 24 DSC enabled
[00:39:23] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[00:39:23] ============== drm_test_dp_mst_calc_pbn_div ===============
[00:39:23] [PASSED] Link rate 2000000 lane count 4
[00:39:23] [PASSED] Link rate 2000000 lane count 2
[00:39:23] [PASSED] Link rate 2000000 lane count 1
[00:39:23] [PASSED] Link rate 1350000 lane count 4
[00:39:23] [PASSED] Link rate 1350000 lane count 2
[00:39:23] [PASSED] Link rate 1350000 lane count 1
[00:39:23] [PASSED] Link rate 1000000 lane count 4
[00:39:23] [PASSED] Link rate 1000000 lane count 2
[00:39:23] [PASSED] Link rate 1000000 lane count 1
[00:39:23] [PASSED] Link rate 810000 lane count 4
[00:39:23] [PASSED] Link rate 810000 lane count 2
[00:39:23] [PASSED] Link rate 810000 lane count 1
[00:39:23] [PASSED] Link rate 540000 lane count 4
[00:39:23] [PASSED] Link rate 540000 lane count 2
[00:39:23] [PASSED] Link rate 540000 lane count 1
[00:39:23] [PASSED] Link rate 270000 lane count 4
[00:39:23] [PASSED] Link rate 270000 lane count 2
[00:39:23] [PASSED] Link rate 270000 lane count 1
[00:39:23] [PASSED] Link rate 162000 lane count 4
[00:39:23] [PASSED] Link rate 162000 lane count 2
[00:39:23] [PASSED] Link rate 162000 lane count 1
[00:39:23] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[00:39:23] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[00:39:23] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[00:39:23] [PASSED] DP_POWER_UP_PHY with port number
[00:39:23] [PASSED] DP_POWER_DOWN_PHY with port number
[00:39:23] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[00:39:23] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[00:39:23] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[00:39:23] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[00:39:23] [PASSED] DP_QUERY_PAYLOAD with port number
[00:39:23] [PASSED] DP_QUERY_PAYLOAD with VCPI
[00:39:23] [PASSED] DP_REMOTE_DPCD_READ with port number
[00:39:23] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[00:39:23] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[00:39:23] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[00:39:23] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[00:39:23] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[00:39:23] [PASSED] DP_REMOTE_I2C_READ with port number
[00:39:23] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[00:39:23] [PASSED] DP_REMOTE_I2C_READ with transactions array
[00:39:23] [PASSED] DP_REMOTE_I2C_WRITE with port number
[00:39:23] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[00:39:23] [PASSED] DP_REMOTE_I2C_WRITE with data array
[00:39:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[00:39:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[00:39:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[00:39:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[00:39:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[00:39:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[00:39:23] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[00:39:23] ================ [PASSED] drm_dp_mst_helper ================
[00:39:23] ================== drm_exec (7 subtests) ===================
[00:39:23] [PASSED] sanitycheck
[00:39:23] [PASSED] test_lock
[00:39:23] [PASSED] test_lock_unlock
[00:39:23] [PASSED] test_duplicates
[00:39:23] [PASSED] test_prepare
[00:39:23] [PASSED] test_prepare_array
[00:39:23] [PASSED] test_multiple_loops
[00:39:23] ==================== [PASSED] drm_exec =====================
[00:39:23] =========== drm_format_helper_test (17 subtests) ===========
[00:39:23] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[00:39:23] [PASSED] single_pixel_source_buffer
[00:39:23] [PASSED] single_pixel_clip_rectangle
[00:39:23] [PASSED] well_known_colors
[00:39:23] [PASSED] destination_pitch
[00:39:23] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[00:39:23] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[00:39:23] [PASSED] single_pixel_source_buffer
[00:39:23] [PASSED] single_pixel_clip_rectangle
[00:39:23] [PASSED] well_known_colors
[00:39:23] [PASSED] destination_pitch
[00:39:23] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[00:39:23] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[00:39:23] [PASSED] single_pixel_source_buffer
[00:39:23] [PASSED] single_pixel_clip_rectangle
[00:39:23] [PASSED] well_known_colors
[00:39:23] [PASSED] destination_pitch
[00:39:23] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[00:39:23] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[00:39:23] [PASSED] single_pixel_source_buffer
[00:39:23] [PASSED] single_pixel_clip_rectangle
[00:39:23] [PASSED] well_known_colors
[00:39:23] [PASSED] destination_pitch
[00:39:23] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[00:39:23] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[00:39:23] [PASSED] single_pixel_source_buffer
[00:39:23] [PASSED] single_pixel_clip_rectangle
[00:39:23] [PASSED] well_known_colors
[00:39:23] [PASSED] destination_pitch
[00:39:23] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[00:39:23] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[00:39:23] [PASSED] single_pixel_source_buffer
[00:39:23] [PASSED] single_pixel_clip_rectangle
[00:39:23] [PASSED] well_known_colors
[00:39:23] [PASSED] destination_pitch
[00:39:23] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[00:39:23] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[00:39:23] [PASSED] single_pixel_source_buffer
[00:39:23] [PASSED] single_pixel_clip_rectangle
[00:39:23] [PASSED] well_known_colors
[00:39:23] [PASSED] destination_pitch
[00:39:23] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[00:39:23] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[00:39:23] [PASSED] single_pixel_source_buffer
[00:39:23] [PASSED] single_pixel_clip_rectangle
[00:39:23] [PASSED] well_known_colors
[00:39:23] [PASSED] destination_pitch
[00:39:23] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[00:39:23] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[00:39:23] [PASSED] single_pixel_source_buffer
[00:39:23] [PASSED] single_pixel_clip_rectangle
[00:39:23] [PASSED] well_known_colors
[00:39:23] [PASSED] destination_pitch
[00:39:23] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[00:39:23] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[00:39:23] [PASSED] single_pixel_source_buffer
[00:39:23] [PASSED] single_pixel_clip_rectangle
[00:39:23] [PASSED] well_known_colors
[00:39:23] [PASSED] destination_pitch
[00:39:23] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[00:39:23] ============== drm_test_fb_xrgb8888_to_mono ===============
[00:39:23] [PASSED] single_pixel_source_buffer
[00:39:23] [PASSED] single_pixel_clip_rectangle
[00:39:23] [PASSED] well_known_colors
[00:39:23] [PASSED] destination_pitch
[00:39:23] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[00:39:23] ==================== drm_test_fb_swab =====================
[00:39:23] [PASSED] single_pixel_source_buffer
[00:39:23] [PASSED] single_pixel_clip_rectangle
[00:39:23] [PASSED] well_known_colors
[00:39:23] [PASSED] destination_pitch
[00:39:23] ================ [PASSED] drm_test_fb_swab =================
[00:39:23] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[00:39:23] [PASSED] single_pixel_source_buffer
[00:39:23] [PASSED] single_pixel_clip_rectangle
[00:39:23] [PASSED] well_known_colors
[00:39:23] [PASSED] destination_pitch
[00:39:23] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[00:39:23] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[00:39:23] [PASSED] single_pixel_source_buffer
[00:39:23] [PASSED] single_pixel_clip_rectangle
[00:39:23] [PASSED] well_known_colors
[00:39:23] [PASSED] destination_pitch
[00:39:23] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[00:39:23] ================= drm_test_fb_clip_offset =================
[00:39:23] [PASSED] pass through
[00:39:23] [PASSED] horizontal offset
[00:39:23] [PASSED] vertical offset
[00:39:23] [PASSED] horizontal and vertical offset
[00:39:23] [PASSED] horizontal offset (custom pitch)
[00:39:23] [PASSED] vertical offset (custom pitch)
[00:39:23] [PASSED] horizontal and vertical offset (custom pitch)
[00:39:23] ============= [PASSED] drm_test_fb_clip_offset =============
[00:39:23] ============== drm_test_fb_build_fourcc_list ==============
[00:39:23] [PASSED] no native formats
[00:39:23] [PASSED] XRGB8888 as native format
[00:39:23] [PASSED] remove duplicates
[00:39:23] [PASSED] convert alpha formats
[00:39:23] [PASSED] random formats
[00:39:23] ========== [PASSED] drm_test_fb_build_fourcc_list ==========
[00:39:23] =================== drm_test_fb_memcpy ====================
[00:39:23] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[00:39:23] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[00:39:23] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[00:39:23] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[00:39:23] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[00:39:23] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[00:39:23] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[00:39:23] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[00:39:23] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[00:39:23] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[00:39:23] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[00:39:23] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[00:39:23] =============== [PASSED] drm_test_fb_memcpy ================
[00:39:23] ============= [PASSED] drm_format_helper_test ==============
[00:39:23] ================= drm_format (18 subtests) =================
[00:39:23] [PASSED] drm_test_format_block_width_invalid
[00:39:23] [PASSED] drm_test_format_block_width_one_plane
[00:39:23] [PASSED] drm_test_format_block_width_two_plane
[00:39:23] [PASSED] drm_test_format_block_width_three_plane
[00:39:23] [PASSED] drm_test_format_block_width_tiled
[00:39:23] [PASSED] drm_test_format_block_height_invalid
[00:39:23] [PASSED] drm_test_format_block_height_one_plane
[00:39:23] [PASSED] drm_test_format_block_height_two_plane
[00:39:23] [PASSED] drm_test_format_block_height_three_plane
[00:39:23] [PASSED] drm_test_format_block_height_tiled
[00:39:23] [PASSED] drm_test_format_min_pitch_invalid
[00:39:23] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[00:39:23] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[00:39:23] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[00:39:23] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[00:39:23] [PASSED] drm_test_format_min_pitch_two_plane
[00:39:23] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[00:39:23] [PASSED] drm_test_format_min_pitch_tiled
[00:39:23] =================== [PASSED] drm_format ====================
[00:39:23] ============== drm_framebuffer (10 subtests) ===============
[00:39:23] ========== drm_test_framebuffer_check_src_coords ==========
[00:39:23] [PASSED] Success: source fits into fb
[00:39:23] [PASSED] Fail: overflowing fb with x-axis coordinate
[00:39:23] [PASSED] Fail: overflowing fb with y-axis coordinate
[00:39:23] [PASSED] Fail: overflowing fb with source width
[00:39:23] [PASSED] Fail: overflowing fb with source height
[00:39:23] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[00:39:23] [PASSED] drm_test_framebuffer_cleanup
[00:39:23] =============== drm_test_framebuffer_create ===============
[00:39:23] [PASSED] ABGR8888 normal sizes
[00:39:23] [PASSED] ABGR8888 max sizes
[00:39:23] [PASSED] ABGR8888 pitch greater than min required
[00:39:23] [PASSED] ABGR8888 pitch less than min required
[00:39:23] [PASSED] ABGR8888 Invalid width
[00:39:23] [PASSED] ABGR8888 Invalid buffer handle
[00:39:23] [PASSED] No pixel format
[00:39:23] [PASSED] ABGR8888 Width 0
[00:39:23] [PASSED] ABGR8888 Height 0
[00:39:23] [PASSED] ABGR8888 Out of bound height * pitch combination
[00:39:23] [PASSED] ABGR8888 Large buffer offset
[00:39:23] [PASSED] ABGR8888 Buffer offset for inexistent plane
[00:39:23] [PASSED] ABGR8888 Invalid flag
[00:39:23] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[00:39:23] [PASSED] ABGR8888 Valid buffer modifier
[00:39:23] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[00:39:23] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[00:39:23] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[00:39:23] [PASSED] NV12 Normal sizes
[00:39:23] [PASSED] NV12 Max sizes
[00:39:23] [PASSED] NV12 Invalid pitch
[00:39:23] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[00:39:23] [PASSED] NV12 different modifier per-plane
[00:39:23] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[00:39:23] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[00:39:23] [PASSED] NV12 Modifier for inexistent plane
[00:39:23] [PASSED] NV12 Handle for inexistent plane
[00:39:23] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[00:39:23] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[00:39:23] [PASSED] YVU420 Normal sizes
[00:39:23] [PASSED] YVU420 Max sizes
[00:39:23] [PASSED] YVU420 Invalid pitch
[00:39:23] [PASSED] YVU420 Different pitches
[00:39:23] [PASSED] YVU420 Different buffer offsets/pitches
[00:39:23] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[00:39:23] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[00:39:23] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[00:39:23] [PASSED] YVU420 Valid modifier
[00:39:23] [PASSED] YVU420 Different modifiers per plane
[00:39:23] [PASSED] YVU420 Modifier for inexistent plane
[00:39:23] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[00:39:23] [PASSED] X0L2 Normal sizes
[00:39:23] [PASSED] X0L2 Max sizes
[00:39:23] [PASSED] X0L2 Invalid pitch
[00:39:23] [PASSED] X0L2 Pitch greater than minimum required
[00:39:23] [PASSED] X0L2 Handle for inexistent plane
[00:39:23] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[00:39:23] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[00:39:23] [PASSED] X0L2 Valid modifier
[00:39:23] [PASSED] X0L2 Modifier for inexistent plane
[00:39:23] =========== [PASSED] drm_test_framebuffer_create ===========
[00:39:23] [PASSED] drm_test_framebuffer_free
[00:39:23] [PASSED] drm_test_framebuffer_init
[00:39:23] [PASSED] drm_test_framebuffer_init_bad_format
[00:39:23] [PASSED] drm_test_framebuffer_init_dev_mismatch
[00:39:23] [PASSED] drm_test_framebuffer_lookup
[00:39:23] [PASSED] drm_test_framebuffer_lookup_inexistent
[00:39:23] [PASSED] drm_test_framebuffer_modifiers_not_supported
[00:39:23] ================= [PASSED] drm_framebuffer =================
[00:39:23] ================ drm_gem_shmem (8 subtests) ================
[00:39:23] [PASSED] drm_gem_shmem_test_obj_create
[00:39:23] [PASSED] drm_gem_shmem_test_obj_create_private
[00:39:23] [PASSED] drm_gem_shmem_test_pin_pages
[00:39:23] [PASSED] drm_gem_shmem_test_vmap
[00:39:23] [PASSED] drm_gem_shmem_test_get_pages_sgt
[00:39:23] [PASSED] drm_gem_shmem_test_get_sg_table
[00:39:23] [PASSED] drm_gem_shmem_test_madvise
[00:39:23] [PASSED] drm_gem_shmem_test_purge
[00:39:23] ================== [PASSED] drm_gem_shmem ==================
[00:39:23] === drm_atomic_helper_connector_hdmi_check (23 subtests) ===
[00:39:23] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[00:39:23] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[00:39:23] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[00:39:23] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[00:39:23] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[00:39:23] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[00:39:23] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[00:39:23] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[00:39:23] [PASSED] drm_test_check_disable_connector
[00:39:23] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[00:39:23] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback
[00:39:23] [PASSED] drm_test_check_max_tmds_rate_format_fallback
[00:39:23] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[00:39:23] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[00:39:23] [PASSED] drm_test_check_output_bpc_dvi
[00:39:23] [PASSED] drm_test_check_output_bpc_format_vic_1
[00:39:23] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[00:39:23] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[00:39:23] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[00:39:23] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[00:39:23] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[00:39:23] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[00:39:23] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[00:39:23] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[00:39:23] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[00:39:23] [PASSED] drm_test_check_broadcast_rgb_value
[00:39:23] [PASSED] drm_test_check_bpc_8_value
[00:39:23] [PASSED] drm_test_check_bpc_10_value
[00:39:23] [PASSED] drm_test_check_bpc_12_value
[00:39:23] [PASSED] drm_test_check_format_value
[00:39:23] [PASSED] drm_test_check_tmds_char_value
[00:39:23] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[00:39:23] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[00:39:23] [PASSED] drm_test_check_mode_valid
[00:39:23] [PASSED] drm_test_check_mode_valid_reject
[00:39:23] [PASSED] drm_test_check_mode_valid_reject_rate
[00:39:23] [PASSED] drm_test_check_mode_valid_reject_max_clock
[00:39:23] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[00:39:23] ================= drm_managed (2 subtests) =================
[00:39:23] [PASSED] drm_test_managed_release_action
[00:39:23] [PASSED] drm_test_managed_run_action
[00:39:23] =================== [PASSED] drm_managed ===================
[00:39:23] =================== drm_mm (6 subtests) ====================
[00:39:23] [PASSED] drm_test_mm_init
[00:39:23] [PASSED] drm_test_mm_debug
[00:39:23] [PASSED] drm_test_mm_align32
[00:39:23] [PASSED] drm_test_mm_align64
[00:39:23] [PASSED] drm_test_mm_lowest
[00:39:23] [PASSED] drm_test_mm_highest
[00:39:23] ===================== [PASSED] drm_mm ======================
[00:39:23] ============= drm_modes_analog_tv (5 subtests) =============
[00:39:23] [PASSED] drm_test_modes_analog_tv_mono_576i
[00:39:23] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[00:39:23] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[00:39:23] [PASSED] drm_test_modes_analog_tv_pal_576i
[00:39:23] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[00:39:23] =============== [PASSED] drm_modes_analog_tv ===============
[00:39:23] ============== drm_plane_helper (2 subtests) ===============
[00:39:23] =============== drm_test_check_plane_state ================
[00:39:23] [PASSED] clipping_simple
[00:39:23] [PASSED] clipping_rotate_reflect
[00:39:23] [PASSED] positioning_simple
[00:39:23] [PASSED] upscaling
[00:39:23] [PASSED] downscaling
[00:39:23] [PASSED] rounding1
[00:39:23] [PASSED] rounding2
[00:39:23] [PASSED] rounding3
[00:39:23] [PASSED] rounding4
[00:39:23] =========== [PASSED] drm_test_check_plane_state ============
[00:39:23] =========== drm_test_check_invalid_plane_state ============
[00:39:23] [PASSED] positioning_invalid
[00:39:23] [PASSED] upscaling_invalid
[00:39:23] [PASSED] downscaling_invalid
[00:39:23] ======= [PASSED] drm_test_check_invalid_plane_state ========
[00:39:23] ================ [PASSED] drm_plane_helper =================
[00:39:23] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[00:39:23] ====== drm_test_connector_helper_tv_get_modes_check =======
[00:39:23] [PASSED] None
[00:39:23] [PASSED] PAL
[00:39:23] [PASSED] NTSC
[00:39:23] [PASSED] Both, NTSC Default
[00:39:23] [PASSED] Both, PAL Default
[00:39:23] [PASSED] Both, NTSC Default, with PAL on command-line
[00:39:23] [PASSED] Both, PAL Default, with NTSC on command-line
[00:39:23] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[00:39:23] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[00:39:23] ================== drm_rect (9 subtests) ===================
[00:39:23] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[00:39:23] [PASSED] drm_test_rect_clip_scaled_not_clipped
[00:39:23] [PASSED] drm_test_rect_clip_scaled_clipped
[00:39:23] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[00:39:23] ================= drm_test_rect_intersect =================
[00:39:23] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[00:39:23] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[00:39:23] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[00:39:23] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[00:39:23] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[00:39:23] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[00:39:23] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[00:39:23] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[00:39:23] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[00:39:23] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[00:39:23] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[00:39:23] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[00:39:23] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[00:39:23] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[00:39:23] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[00:39:23] ============= [PASSED] drm_test_rect_intersect =============
[00:39:23] ================ drm_test_rect_calc_hscale ================
[00:39:23] [PASSED] normal use
[00:39:23] [PASSED] out of max range
[00:39:23] [PASSED] out of min range
[00:39:23] [PASSED] zero dst
[00:39:23] [PASSED] negative src
[00:39:23] [PASSED] negative dst
[00:39:23] ============ [PASSED] drm_test_rect_calc_hscale ============
[00:39:23] ================ drm_test_rect_calc_vscale ================
[00:39:23] [PASSED] normal use
[00:39:23] [PASSED] out of max range
[00:39:23] [PASSED] out of min range
[00:39:23] [PASSED] zero dst
[00:39:23] [PASSED] negative src
[00:39:23] [PASSED] negative dst
[00:39:23] ============ [PASSED] drm_test_rect_calc_vscale ============
[00:39:23] ================== drm_test_rect_rotate ===================
[00:39:23] [PASSED] reflect-x
[00:39:23] [PASSED] reflect-y
[00:39:23] [PASSED] rotate-0
[00:39:23] [PASSED] rotate-90
[00:39:23] [PASSED] rotate-180
[00:39:23] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[00:39:23] ============== [PASSED] drm_test_rect_rotate ===============
[00:39:23] ================ drm_test_rect_rotate_inv =================
[00:39:23] [PASSED] reflect-x
[00:39:23] [PASSED] reflect-y
[00:39:23] [PASSED] rotate-0
[00:39:23] [PASSED] rotate-90
[00:39:23] [PASSED] rotate-180
[00:39:23] [PASSED] rotate-270
[00:39:23] ============ [PASSED] drm_test_rect_rotate_inv =============
[00:39:23] ==================== [PASSED] drm_rect =====================
[00:39:23] ============================================================
[00:39:23] Testing complete. Ran 598 tests: passed: 598
[00:39:23] Elapsed time: 23.070s total, 1.682s configuring, 21.220s building, 0.138s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[00:39:23] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[00:39:24] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json ARCH=um O=.kunit --jobs=48
[00:39:32] Starting KUnit Kernel (1/1)...
[00:39:32] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[00:39:32] ================= ttm_device (5 subtests) ==================
[00:39:32] [PASSED] ttm_device_init_basic
[00:39:32] [PASSED] ttm_device_init_multiple
[00:39:32] [PASSED] ttm_device_fini_basic
[00:39:32] [PASSED] ttm_device_init_no_vma_man
[00:39:32] ================== ttm_device_init_pools ==================
[00:39:32] [PASSED] No DMA allocations, no DMA32 required
[00:39:32] [PASSED] DMA allocations, DMA32 required
[00:39:32] [PASSED] No DMA allocations, DMA32 required
[00:39:32] [PASSED] DMA allocations, no DMA32 required
[00:39:32] ============== [PASSED] ttm_device_init_pools ==============
[00:39:32] =================== [PASSED] ttm_device ====================
[00:39:32] ================== ttm_pool (8 subtests) ===================
[00:39:32] ================== ttm_pool_alloc_basic ===================
[00:39:32] [PASSED] One page
[00:39:32] [PASSED] More than one page
[00:39:32] [PASSED] Above the allocation limit
[00:39:32] [PASSED] One page, with coherent DMA mappings enabled
[00:39:32] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[00:39:32] ============== [PASSED] ttm_pool_alloc_basic ===============
[00:39:32] ============== ttm_pool_alloc_basic_dma_addr ==============
[00:39:32] [PASSED] One page
[00:39:32] [PASSED] More than one page
[00:39:32] [PASSED] Above the allocation limit
[00:39:32] [PASSED] One page, with coherent DMA mappings enabled
[00:39:32] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[00:39:32] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[00:39:32] [PASSED] ttm_pool_alloc_order_caching_match
[00:39:32] [PASSED] ttm_pool_alloc_caching_mismatch
[00:39:32] [PASSED] ttm_pool_alloc_order_mismatch
[00:39:32] [PASSED] ttm_pool_free_dma_alloc
[00:39:32] [PASSED] ttm_pool_free_no_dma_alloc
[00:39:32] [PASSED] ttm_pool_fini_basic
[00:39:32] ==================== [PASSED] ttm_pool =====================
[00:39:32] ================ ttm_resource (8 subtests) =================
[00:39:32] ================= ttm_resource_init_basic =================
[00:39:32] [PASSED] Init resource in TTM_PL_SYSTEM
[00:39:32] [PASSED] Init resource in TTM_PL_VRAM
[00:39:32] [PASSED] Init resource in a private placement
[00:39:32] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[00:39:32] ============= [PASSED] ttm_resource_init_basic =============
[00:39:32] [PASSED] ttm_resource_init_pinned
[00:39:32] [PASSED] ttm_resource_fini_basic
[00:39:32] [PASSED] ttm_resource_manager_init_basic
[00:39:32] [PASSED] ttm_resource_manager_usage_basic
[00:39:32] [PASSED] ttm_resource_manager_set_used_basic
[00:39:32] [PASSED] ttm_sys_man_alloc_basic
[00:39:32] [PASSED] ttm_sys_man_free_basic
[00:39:32] ================== [PASSED] ttm_resource ===================
[00:39:32] =================== ttm_tt (15 subtests) ===================
[00:39:32] ==================== ttm_tt_init_basic ====================
[00:39:32] [PASSED] Page-aligned size
[00:39:32] [PASSED] Extra pages requested
[00:39:32] ================ [PASSED] ttm_tt_init_basic ================
[00:39:32] [PASSED] ttm_tt_init_misaligned
[00:39:32] [PASSED] ttm_tt_fini_basic
[00:39:32] [PASSED] ttm_tt_fini_sg
[00:39:32] [PASSED] ttm_tt_fini_shmem
[00:39:32] [PASSED] ttm_tt_create_basic
[00:39:32] [PASSED] ttm_tt_create_invalid_bo_type
[00:39:32] [PASSED] ttm_tt_create_ttm_exists
[00:39:32] [PASSED] ttm_tt_create_failed
[00:39:32] [PASSED] ttm_tt_destroy_basic
[00:39:32] [PASSED] ttm_tt_populate_null_ttm
[00:39:32] [PASSED] ttm_tt_populate_populated_ttm
[00:39:32] [PASSED] ttm_tt_unpopulate_basic
[00:39:32] [PASSED] ttm_tt_unpopulate_empty_ttm
[00:39:32] [PASSED] ttm_tt_swapin_basic
[00:39:32] ===================== [PASSED] ttm_tt ======================
[00:39:32] =================== ttm_bo (14 subtests) ===================
[00:39:32] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[00:39:32] [PASSED] Cannot be interrupted and sleeps
[00:39:32] [PASSED] Cannot be interrupted, locks straight away
[00:39:32] [PASSED] Can be interrupted, sleeps
[00:39:32] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[00:39:32] [PASSED] ttm_bo_reserve_locked_no_sleep
[00:39:32] [PASSED] ttm_bo_reserve_no_wait_ticket
[00:39:32] [PASSED] ttm_bo_reserve_double_resv
[00:39:32] [PASSED] ttm_bo_reserve_interrupted
[00:39:32] [PASSED] ttm_bo_reserve_deadlock
[00:39:32] [PASSED] ttm_bo_unreserve_basic
[00:39:32] [PASSED] ttm_bo_unreserve_pinned
[00:39:32] [PASSED] ttm_bo_unreserve_bulk
[00:39:32] [PASSED] ttm_bo_put_basic
[00:39:32] [PASSED] ttm_bo_put_shared_resv
[00:39:32] [PASSED] ttm_bo_pin_basic
[00:39:32] [PASSED] ttm_bo_pin_unpin_resource
[00:39:32] [PASSED] ttm_bo_multiple_pin_one_unpin
[00:39:32] ===================== [PASSED] ttm_bo ======================
[00:39:32] ============== ttm_bo_validate (22 subtests) ===============
[00:39:32] ============== ttm_bo_init_reserved_sys_man ===============
[00:39:32] [PASSED] Buffer object for userspace
[00:39:32] [PASSED] Kernel buffer object
[00:39:32] [PASSED] Shared buffer object
[00:39:32] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[00:39:32] ============== ttm_bo_init_reserved_mock_man ==============
[00:39:32] [PASSED] Buffer object for userspace
[00:39:32] [PASSED] Kernel buffer object
[00:39:32] [PASSED] Shared buffer object
[00:39:32] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[00:39:32] [PASSED] ttm_bo_init_reserved_resv
[00:39:32] ================== ttm_bo_validate_basic ==================
[00:39:32] [PASSED] Buffer object for userspace
[00:39:32] [PASSED] Kernel buffer object
[00:39:32] [PASSED] Shared buffer object
[00:39:32] ============== [PASSED] ttm_bo_validate_basic ==============
[00:39:32] [PASSED] ttm_bo_validate_invalid_placement
[00:39:32] ============= ttm_bo_validate_same_placement ==============
[00:39:32] [PASSED] System manager
[00:39:32] [PASSED] VRAM manager
[00:39:32] ========= [PASSED] ttm_bo_validate_same_placement ==========
[00:39:32] [PASSED] ttm_bo_validate_failed_alloc
[00:39:32] [PASSED] ttm_bo_validate_pinned
[00:39:32] [PASSED] ttm_bo_validate_busy_placement
[00:39:32] ================ ttm_bo_validate_multihop =================
[00:39:32] [PASSED] Buffer object for userspace
[00:39:32] [PASSED] Kernel buffer object
[00:39:32] [PASSED] Shared buffer object
[00:39:32] ============ [PASSED] ttm_bo_validate_multihop =============
[00:39:32] ========== ttm_bo_validate_no_placement_signaled ==========
[00:39:32] [PASSED] Buffer object in system domain, no page vector
[00:39:32] [PASSED] Buffer object in system domain with an existing page vector
[00:39:32] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[00:39:32] ======== ttm_bo_validate_no_placement_not_signaled ========
[00:39:32] [PASSED] Buffer object for userspace
[00:39:32] [PASSED] Kernel buffer object
[00:39:32] [PASSED] Shared buffer object
[00:39:32] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[00:39:32] [PASSED] ttm_bo_validate_move_fence_signaled
[00:39:32] ========= ttm_bo_validate_move_fence_not_signaled =========
[00:39:32] [PASSED] Waits for GPU
[00:39:32] [PASSED] Tries to lock straight away
[00:39:33] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[00:39:33] [PASSED] ttm_bo_validate_swapout
[00:39:33] [PASSED] ttm_bo_validate_happy_evict
[00:39:33] [PASSED] ttm_bo_validate_all_pinned_evict
[00:39:33] [PASSED] ttm_bo_validate_allowed_only_evict
[00:39:33] [PASSED] ttm_bo_validate_deleted_evict
[00:39:33] [PASSED] ttm_bo_validate_busy_domain_evict
[00:39:33] [PASSED] ttm_bo_validate_evict_gutting
[00:39:33] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[00:39:33] ================= [PASSED] ttm_bo_validate =================
[00:39:33] ============================================================
[00:39:33] Testing complete. Ran 102 tests: passed: 102
[00:39:33] Elapsed time: 9.965s total, 1.677s configuring, 7.670s building, 0.528s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 23+ messages in thread
* ✓ CI.Build: success for Maintenence of devcoredump <-> GuC-Err-Capture plumbing
2025-02-10 23:32 [PATCH v7 0/6] Maintenence of devcoredump <-> GuC-Err-Capture plumbing Alan Previn
` (8 preceding siblings ...)
2025-02-11 0:39 ` ✓ CI.KUnit: success " Patchwork
@ 2025-02-11 0:56 ` Patchwork
2025-02-11 0:57 ` ✗ CI.Hooks: failure " Patchwork
` (3 subsequent siblings)
13 siblings, 0 replies; 23+ messages in thread
From: Patchwork @ 2025-02-11 0:56 UTC (permalink / raw)
To: Alan Previn; +Cc: intel-xe
== Series Details ==
Series: Maintenence of devcoredump <-> GuC-Err-Capture plumbing
URL : https://patchwork.freedesktop.org/series/144634/
State : success
== Summary ==
lib/modules/6.14.0-rc2-xe+/kernel/arch/x86/events/amd/
lib/modules/6.14.0-rc2-xe+/kernel/arch/x86/events/amd/amd-uncore.ko
lib/modules/6.14.0-rc2-xe+/kernel/arch/x86/events/rapl.ko
lib/modules/6.14.0-rc2-xe+/kernel/arch/x86/kvm/
lib/modules/6.14.0-rc2-xe+/kernel/arch/x86/kvm/kvm.ko
lib/modules/6.14.0-rc2-xe+/kernel/arch/x86/kvm/kvm-intel.ko
lib/modules/6.14.0-rc2-xe+/kernel/arch/x86/kvm/kvm-amd.ko
lib/modules/6.14.0-rc2-xe+/kernel/kernel/
lib/modules/6.14.0-rc2-xe+/kernel/kernel/kheaders.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/
lib/modules/6.14.0-rc2-xe+/kernel/crypto/ecrdsa_generic.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/xcbc.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/serpent_generic.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/aria_generic.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/crypto_simd.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/adiantum.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/tcrypt.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/crypto_engine.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/zstd.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/asymmetric_keys/
lib/modules/6.14.0-rc2-xe+/kernel/crypto/asymmetric_keys/pkcs7_test_key.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/asymmetric_keys/pkcs8_key_parser.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/des_generic.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/xctr.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/authenc.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/sm4_generic.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/camellia_generic.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/sm3.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/pcrypt.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/aegis128.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/af_alg.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/algif_aead.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/cmac.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/sm3_generic.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/aes_ti.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/chacha_generic.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/poly1305_generic.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/nhpoly1305.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/crc32_generic.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/essiv.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/ccm.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/wp512.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/streebog_generic.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/authencesn.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/echainiv.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/lrw.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/cryptd.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/crypto_user.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/algif_hash.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/polyval-generic.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/hctr2.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/842.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/pcbc.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/ansi_cprng.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/cast6_generic.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/twofish_common.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/twofish_generic.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/lz4hc.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/blowfish_generic.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/md4.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/chacha20poly1305.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/curve25519-generic.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/lz4.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/rmd160.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/algif_skcipher.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/cast5_generic.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/fcrypt.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/ecdsa_generic.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/sm4.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/cast_common.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/blowfish_common.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/michael_mic.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/async_tx/
lib/modules/6.14.0-rc2-xe+/kernel/crypto/async_tx/async_xor.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/async_tx/async_tx.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/async_tx/async_memcpy.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/async_tx/async_pq.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/async_tx/async_raid6_recov.ko
lib/modules/6.14.0-rc2-xe+/kernel/crypto/algif_rng.ko
lib/modules/6.14.0-rc2-xe+/kernel/block/
lib/modules/6.14.0-rc2-xe+/kernel/block/bfq.ko
lib/modules/6.14.0-rc2-xe+/kernel/block/kyber-iosched.ko
lib/modules/6.14.0-rc2-xe+/build
lib/modules/6.14.0-rc2-xe+/modules.alias.bin
lib/modules/6.14.0-rc2-xe+/modules.builtin
lib/modules/6.14.0-rc2-xe+/modules.softdep
lib/modules/6.14.0-rc2-xe+/modules.alias
lib/modules/6.14.0-rc2-xe+/modules.order
lib/modules/6.14.0-rc2-xe+/modules.symbols
lib/modules/6.14.0-rc2-xe+/modules.dep.bin
+ mv kernel-nodebug.tar.gz ..
+ cd ..
+ rm -rf archive
++ date +%s
+ echo -e '\e[0Ksection_end:1739235354:package_x86_64_nodebug\r\e[0K'
^[[0Ksection_end:1739235354:package_x86_64_nodebug
^[[0K
+ sync
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 23+ messages in thread
* ✗ CI.Hooks: failure for Maintenence of devcoredump <-> GuC-Err-Capture plumbing
2025-02-10 23:32 [PATCH v7 0/6] Maintenence of devcoredump <-> GuC-Err-Capture plumbing Alan Previn
` (9 preceding siblings ...)
2025-02-11 0:56 ` ✓ CI.Build: " Patchwork
@ 2025-02-11 0:57 ` Patchwork
2025-02-11 0:58 ` ✗ CI.checksparse: warning " Patchwork
` (2 subsequent siblings)
13 siblings, 0 replies; 23+ messages in thread
From: Patchwork @ 2025-02-11 0:57 UTC (permalink / raw)
To: Alan Previn; +Cc: intel-xe
== Series Details ==
Series: Maintenence of devcoredump <-> GuC-Err-Capture plumbing
URL : https://patchwork.freedesktop.org/series/144634/
State : failure
== Summary ==
run-parts: executing /workspace/ci/hooks/00-showenv
+ export
+ grep -Ei '(^|\W)CI_'
declare -x CI_KERNEL_BUILD_DIR="/workspace/kernel/build64-default"
declare -x CI_KERNEL_SRC_DIR="/workspace/kernel"
declare -x CI_TOOLS_SRC_DIR="/workspace/ci"
declare -x CI_WORKSPACE_DIR="/workspace"
run-parts: executing /workspace/ci/hooks/10-build-W1
+ SRC_DIR=/workspace/kernel
+ RESTORE_DISPLAY_CONFIG=0
+ '[' -n /workspace/kernel/build64-default ']'
+ BUILD_DIR=/workspace/kernel/build64-default
+ cd /workspace/kernel
++ nproc
+ make -j48 O=/workspace/kernel/build64-default modules_prepare
make[1]: Entering directory '/workspace/kernel/build64-default'
GEN Makefile
mkdir -p /workspace/kernel/build64-default/tools/objtool && make O=/workspace/kernel/build64-default subdir=tools/objtool --no-print-directory -C objtool
CALL ../scripts/checksyscalls.sh
INSTALL libsubcmd_headers
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/exec-cmd.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/help.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/pager.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/parse-options.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/run-command.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/sigchain.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/subcmd-config.o
LD /workspace/kernel/build64-default/tools/objtool/libsubcmd/libsubcmd-in.o
AR /workspace/kernel/build64-default/tools/objtool/libsubcmd/libsubcmd.a
CC /workspace/kernel/build64-default/tools/objtool/weak.o
CC /workspace/kernel/build64-default/tools/objtool/check.o
CC /workspace/kernel/build64-default/tools/objtool/special.o
CC /workspace/kernel/build64-default/tools/objtool/builtin-check.o
CC /workspace/kernel/build64-default/tools/objtool/elf.o
CC /workspace/kernel/build64-default/tools/objtool/objtool.o
CC /workspace/kernel/build64-default/tools/objtool/orc_gen.o
CC /workspace/kernel/build64-default/tools/objtool/orc_dump.o
CC /workspace/kernel/build64-default/tools/objtool/arch/x86/special.o
CC /workspace/kernel/build64-default/tools/objtool/libstring.o
CC /workspace/kernel/build64-default/tools/objtool/libctype.o
CC /workspace/kernel/build64-default/tools/objtool/arch/x86/decode.o
CC /workspace/kernel/build64-default/tools/objtool/str_error_r.o
CC /workspace/kernel/build64-default/tools/objtool/arch/x86/orc.o
CC /workspace/kernel/build64-default/tools/objtool/librbtree.o
LD /workspace/kernel/build64-default/tools/objtool/arch/x86/objtool-in.o
LD /workspace/kernel/build64-default/tools/objtool/objtool-in.o
LINK /workspace/kernel/build64-default/tools/objtool/objtool
make[1]: Leaving directory '/workspace/kernel/build64-default'
++ nproc
+ make -j48 O=/workspace/kernel/build64-default W=1 drivers/gpu/drm/xe
make[1]: Entering directory '/workspace/kernel/build64-default'
make[2]: Nothing to be done for 'drivers/gpu/drm/xe'.
make[1]: Leaving directory '/workspace/kernel/build64-default'
run-parts: executing /workspace/ci/hooks/11-build-32b
+++ realpath /workspace/ci/hooks/11-build-32b
++ dirname /workspace/ci/hooks/11-build-32b
+ THIS_SCRIPT_DIR=/workspace/ci/hooks
+ SRC_DIR=/workspace/kernel
+ TOOLS_SRC_DIR=/workspace/ci
+ '[' -n /workspace/kernel/build64-default ']'
+ BUILD_DIR=/workspace/kernel/build64-default
+ BUILD_DIR=/workspace/kernel/build64-default/build32
+ cd /workspace/kernel
+ mkdir -p /workspace/kernel/build64-default/build32
++ nproc
+ make -j48 ARCH=i386 O=/workspace/kernel/build64-default/build32 defconfig
make[1]: Entering directory '/workspace/kernel/build64-default/build32'
GEN Makefile
HOSTCC scripts/basic/fixdep
HOSTCC scripts/kconfig/conf.o
HOSTCC scripts/kconfig/confdata.o
HOSTCC scripts/kconfig/expr.o
LEX scripts/kconfig/lexer.lex.c
YACC scripts/kconfig/parser.tab.[ch]
HOSTCC scripts/kconfig/menu.o
HOSTCC scripts/kconfig/preprocess.o
HOSTCC scripts/kconfig/symbol.o
HOSTCC scripts/kconfig/util.o
HOSTCC scripts/kconfig/lexer.lex.o
HOSTCC scripts/kconfig/parser.tab.o
HOSTLD scripts/kconfig/conf
*** Default configuration is based on 'i386_defconfig'
#
# configuration written to .config
#
make[1]: Leaving directory '/workspace/kernel/build64-default/build32'
+ cd /workspace/kernel/build64-default/build32
+ /workspace/kernel/scripts/kconfig/merge_config.sh .config /workspace/ci/kernel/fragments/10-xe.fragment
Using .config as base
Merging /workspace/ci/kernel/fragments/10-xe.fragment
Value of CONFIG_DRM_XE is redefined by fragment /workspace/ci/kernel/fragments/10-xe.fragment:
Previous value: # CONFIG_DRM_XE is not set
New value: CONFIG_DRM_XE=m
GEN Makefile
WARNING: unmet direct dependencies detected for FB_IOMEM_HELPERS
Depends on [n]: HAS_IOMEM [=y] && FB_CORE [=n]
Selected by [m]:
- DRM_XE_DISPLAY [=y] && HAS_IOMEM [=y] && DRM [=y] && DRM_XE [=m] && DRM_XE [=m]=m [=m] && HAS_IOPORT [=y]
#
# configuration written to .config
#
Value requested for CONFIG_HAVE_UID16 not in final .config
Requested value: CONFIG_HAVE_UID16=y
Actual value:
Value requested for CONFIG_UID16 not in final .config
Requested value: CONFIG_UID16=y
Actual value:
Value requested for CONFIG_X86_32 not in final .config
Requested value: CONFIG_X86_32=y
Actual value:
Value requested for CONFIG_OUTPUT_FORMAT not in final .config
Requested value: CONFIG_OUTPUT_FORMAT="elf32-i386"
Actual value: CONFIG_OUTPUT_FORMAT="elf64-x86-64"
Value requested for CONFIG_ARCH_MMAP_RND_BITS_MIN not in final .config
Requested value: CONFIG_ARCH_MMAP_RND_BITS_MIN=8
Actual value: CONFIG_ARCH_MMAP_RND_BITS_MIN=28
Value requested for CONFIG_ARCH_MMAP_RND_BITS_MAX not in final .config
Requested value: CONFIG_ARCH_MMAP_RND_BITS_MAX=16
Actual value: CONFIG_ARCH_MMAP_RND_BITS_MAX=32
Value requested for CONFIG_PGTABLE_LEVELS not in final .config
Requested value: CONFIG_PGTABLE_LEVELS=2
Actual value: CONFIG_PGTABLE_LEVELS=5
Value requested for CONFIG_X86_BIGSMP not in final .config
Requested value: # CONFIG_X86_BIGSMP is not set
Actual value:
Value requested for CONFIG_X86_INTEL_QUARK not in final .config
Requested value: # CONFIG_X86_INTEL_QUARK is not set
Actual value:
Value requested for CONFIG_X86_RDC321X not in final .config
Requested value: # CONFIG_X86_RDC321X is not set
Actual value:
Value requested for CONFIG_X86_32_NON_STANDARD not in final .config
Requested value: # CONFIG_X86_32_NON_STANDARD is not set
Actual value:
Value requested for CONFIG_X86_32_IRIS not in final .config
Requested value: # CONFIG_X86_32_IRIS is not set
Actual value:
Value requested for CONFIG_M486SX not in final .config
Requested value: # CONFIG_M486SX is not set
Actual value:
Value requested for CONFIG_M486 not in final .config
Requested value: # CONFIG_M486 is not set
Actual value:
Value requested for CONFIG_M586 not in final .config
Requested value: # CONFIG_M586 is not set
Actual value:
Value requested for CONFIG_M586TSC not in final .config
Requested value: # CONFIG_M586TSC is not set
Actual value:
Value requested for CONFIG_M586MMX not in final .config
Requested value: # CONFIG_M586MMX is not set
Actual value:
Value requested for CONFIG_M686 not in final .config
Requested value: CONFIG_M686=y
Actual value:
Value requested for CONFIG_MPENTIUMII not in final .config
Requested value: # CONFIG_MPENTIUMII is not set
Actual value:
Value requested for CONFIG_MPENTIUMIII not in final .config
Requested value: # CONFIG_MPENTIUMIII is not set
Actual value:
Value requested for CONFIG_MPENTIUMM not in final .config
Requested value: # CONFIG_MPENTIUMM is not set
Actual value:
Value requested for CONFIG_MPENTIUM4 not in final .config
Requested value: # CONFIG_MPENTIUM4 is not set
Actual value:
Value requested for CONFIG_MK6 not in final .config
Requested value: # CONFIG_MK6 is not set
Actual value:
Value requested for CONFIG_MK7 not in final .config
Requested value: # CONFIG_MK7 is not set
Actual value:
Value requested for CONFIG_MCRUSOE not in final .config
Requested value: # CONFIG_MCRUSOE is not set
Actual value:
Value requested for CONFIG_MEFFICEON not in final .config
Requested value: # CONFIG_MEFFICEON is not set
Actual value:
Value requested for CONFIG_MWINCHIPC6 not in final .config
Requested value: # CONFIG_MWINCHIPC6 is not set
Actual value:
Value requested for CONFIG_MWINCHIP3D not in final .config
Requested value: # CONFIG_MWINCHIP3D is not set
Actual value:
Value requested for CONFIG_MELAN not in final .config
Requested value: # CONFIG_MELAN is not set
Actual value:
Value requested for CONFIG_MGEODEGX1 not in final .config
Requested value: # CONFIG_MGEODEGX1 is not set
Actual value:
Value requested for CONFIG_MGEODE_LX not in final .config
Requested value: # CONFIG_MGEODE_LX is not set
Actual value:
Value requested for CONFIG_MCYRIXIII not in final .config
Requested value: # CONFIG_MCYRIXIII is not set
Actual value:
Value requested for CONFIG_MVIAC3_2 not in final .config
Requested value: # CONFIG_MVIAC3_2 is not set
Actual value:
Value requested for CONFIG_MVIAC7 not in final .config
Requested value: # CONFIG_MVIAC7 is not set
Actual value:
Value requested for CONFIG_X86_GENERIC not in final .config
Requested value: # CONFIG_X86_GENERIC is not set
Actual value:
Value requested for CONFIG_X86_INTERNODE_CACHE_SHIFT not in final .config
Requested value: CONFIG_X86_INTERNODE_CACHE_SHIFT=5
Actual value: CONFIG_X86_INTERNODE_CACHE_SHIFT=6
Value requested for CONFIG_X86_L1_CACHE_SHIFT not in final .config
Requested value: CONFIG_X86_L1_CACHE_SHIFT=5
Actual value: CONFIG_X86_L1_CACHE_SHIFT=6
Value requested for CONFIG_X86_USE_PPRO_CHECKSUM not in final .config
Requested value: CONFIG_X86_USE_PPRO_CHECKSUM=y
Actual value:
Value requested for CONFIG_X86_MINIMUM_CPU_FAMILY not in final .config
Requested value: CONFIG_X86_MINIMUM_CPU_FAMILY=6
Actual value: CONFIG_X86_MINIMUM_CPU_FAMILY=64
Value requested for CONFIG_CPU_SUP_TRANSMETA_32 not in final .config
Requested value: CONFIG_CPU_SUP_TRANSMETA_32=y
Actual value:
Value requested for CONFIG_CPU_SUP_VORTEX_32 not in final .config
Requested value: CONFIG_CPU_SUP_VORTEX_32=y
Actual value:
Value requested for CONFIG_HPET_TIMER not in final .config
Requested value: # CONFIG_HPET_TIMER is not set
Actual value: CONFIG_HPET_TIMER=y
Value requested for CONFIG_NR_CPUS_RANGE_END not in final .config
Requested value: CONFIG_NR_CPUS_RANGE_END=8
Actual value: CONFIG_NR_CPUS_RANGE_END=512
Value requested for CONFIG_NR_CPUS_DEFAULT not in final .config
Requested value: CONFIG_NR_CPUS_DEFAULT=8
Actual value: CONFIG_NR_CPUS_DEFAULT=64
Value requested for CONFIG_X86_ANCIENT_MCE not in final .config
Requested value: # CONFIG_X86_ANCIENT_MCE is not set
Actual value:
Value requested for CONFIG_X86_LEGACY_VM86 not in final .config
Requested value: # CONFIG_X86_LEGACY_VM86 is not set
Actual value:
Value requested for CONFIG_X86_ESPFIX32 not in final .config
Requested value: CONFIG_X86_ESPFIX32=y
Actual value:
Value requested for CONFIG_TOSHIBA not in final .config
Requested value: # CONFIG_TOSHIBA is not set
Actual value:
Value requested for CONFIG_X86_REBOOTFIXUPS not in final .config
Requested value: # CONFIG_X86_REBOOTFIXUPS is not set
Actual value:
Value requested for CONFIG_MICROCODE_INITRD32 not in final .config
Requested value: CONFIG_MICROCODE_INITRD32=y
Actual value:
Value requested for CONFIG_NOHIGHMEM not in final .config
Requested value: # CONFIG_NOHIGHMEM is not set
Actual value:
Value requested for CONFIG_HIGHMEM4G not in final .config
Requested value: CONFIG_HIGHMEM4G=y
Actual value:
Value requested for CONFIG_HIGHMEM64G not in final .config
Requested value: # CONFIG_HIGHMEM64G is not set
Actual value:
Value requested for CONFIG_VMSPLIT_3G not in final .config
Requested value: CONFIG_VMSPLIT_3G=y
Actual value:
Value requested for CONFIG_VMSPLIT_3G_OPT not in final .config
Requested value: # CONFIG_VMSPLIT_3G_OPT is not set
Actual value:
Value requested for CONFIG_VMSPLIT_2G not in final .config
Requested value: # CONFIG_VMSPLIT_2G is not set
Actual value:
Value requested for CONFIG_VMSPLIT_2G_OPT not in final .config
Requested value: # CONFIG_VMSPLIT_2G_OPT is not set
Actual value:
Value requested for CONFIG_VMSPLIT_1G not in final .config
Requested value: # CONFIG_VMSPLIT_1G is not set
Actual value:
Value requested for CONFIG_PAGE_OFFSET not in final .config
Requested value: CONFIG_PAGE_OFFSET=0xC0000000
Actual value:
Value requested for CONFIG_HIGHMEM not in final .config
Requested value: CONFIG_HIGHMEM=y
Actual value:
Value requested for CONFIG_X86_PAE not in final .config
Requested value: # CONFIG_X86_PAE is not set
Actual value:
Value requested for CONFIG_ARCH_FLATMEM_ENABLE not in final .config
Requested value: CONFIG_ARCH_FLATMEM_ENABLE=y
Actual value:
Value requested for CONFIG_ARCH_SELECT_MEMORY_MODEL not in final .config
Requested value: CONFIG_ARCH_SELECT_MEMORY_MODEL=y
Actual value:
Value requested for CONFIG_ILLEGAL_POINTER_VALUE not in final .config
Requested value: CONFIG_ILLEGAL_POINTER_VALUE=0
Actual value: CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
Value requested for CONFIG_HIGHPTE not in final .config
Requested value: # CONFIG_HIGHPTE is not set
Actual value:
Value requested for CONFIG_COMPAT_VDSO not in final .config
Requested value: # CONFIG_COMPAT_VDSO is not set
Actual value:
Value requested for CONFIG_FUNCTION_PADDING_CFI not in final .config
Requested value: CONFIG_FUNCTION_PADDING_CFI=0
Actual value: CONFIG_FUNCTION_PADDING_CFI=11
Value requested for CONFIG_FUNCTION_PADDING_BYTES not in final .config
Requested value: CONFIG_FUNCTION_PADDING_BYTES=4
Actual value: CONFIG_FUNCTION_PADDING_BYTES=16
Value requested for CONFIG_APM not in final .config
Requested value: # CONFIG_APM is not set
Actual value:
Value requested for CONFIG_X86_POWERNOW_K6 not in final .config
Requested value: # CONFIG_X86_POWERNOW_K6 is not set
Actual value:
Value requested for CONFIG_X86_POWERNOW_K7 not in final .config
Requested value: # CONFIG_X86_POWERNOW_K7 is not set
Actual value:
Value requested for CONFIG_X86_GX_SUSPMOD not in final .config
Requested value: # CONFIG_X86_GX_SUSPMOD is not set
Actual value:
Value requested for CONFIG_X86_SPEEDSTEP_ICH not in final .config
Requested value: # CONFIG_X86_SPEEDSTEP_ICH is not set
Actual value:
Value requested for CONFIG_X86_SPEEDSTEP_SMI not in final .config
Requested value: # CONFIG_X86_SPEEDSTEP_SMI is not set
Actual value:
Value requested for CONFIG_X86_CPUFREQ_NFORCE2 not in final .config
Requested value: # CONFIG_X86_CPUFREQ_NFORCE2 is not set
Actual value:
Value requested for CONFIG_X86_LONGRUN not in final .config
Requested value: # CONFIG_X86_LONGRUN is not set
Actual value:
Value requested for CONFIG_X86_LONGHAUL not in final .config
Requested value: # CONFIG_X86_LONGHAUL is not set
Actual value:
Value requested for CONFIG_X86_E_POWERSAVER not in final .config
Requested value: # CONFIG_X86_E_POWERSAVER is not set
Actual value:
Value requested for CONFIG_PCI_GOBIOS not in final .config
Requested value: # CONFIG_PCI_GOBIOS is not set
Actual value:
Value requested for CONFIG_PCI_GOMMCONFIG not in final .config
Requested value: # CONFIG_PCI_GOMMCONFIG is not set
Actual value:
Value requested for CONFIG_PCI_GODIRECT not in final .config
Requested value: # CONFIG_PCI_GODIRECT is not set
Actual value:
Value requested for CONFIG_PCI_GOANY not in final .config
Requested value: CONFIG_PCI_GOANY=y
Actual value:
Value requested for CONFIG_PCI_BIOS not in final .config
Requested value: CONFIG_PCI_BIOS=y
Actual value:
Value requested for CONFIG_ISA not in final .config
Requested value: # CONFIG_ISA is not set
Actual value:
Value requested for CONFIG_SCx200 not in final .config
Requested value: # CONFIG_SCx200 is not set
Actual value:
Value requested for CONFIG_OLPC not in final .config
Requested value: # CONFIG_OLPC is not set
Actual value:
Value requested for CONFIG_ALIX not in final .config
Requested value: # CONFIG_ALIX is not set
Actual value:
Value requested for CONFIG_NET5501 not in final .config
Requested value: # CONFIG_NET5501 is not set
Actual value:
Value requested for CONFIG_GEOS not in final .config
Requested value: # CONFIG_GEOS is not set
Actual value:
Value requested for CONFIG_COMPAT_32 not in final .config
Requested value: CONFIG_COMPAT_32=y
Actual value:
Value requested for CONFIG_HAVE_ATOMIC_IOMAP not in final .config
Requested value: CONFIG_HAVE_ATOMIC_IOMAP=y
Actual value:
Value requested for CONFIG_ARCH_32BIT_OFF_T not in final .config
Requested value: CONFIG_ARCH_32BIT_OFF_T=y
Actual value:
Value requested for CONFIG_ARCH_WANT_IPC_PARSE_VERSION not in final .config
Requested value: CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y
Actual value:
Value requested for CONFIG_MODULES_USE_ELF_REL not in final .config
Requested value: CONFIG_MODULES_USE_ELF_REL=y
Actual value:
Value requested for CONFIG_ARCH_MMAP_RND_BITS not in final .config
Requested value: CONFIG_ARCH_MMAP_RND_BITS=8
Actual value: CONFIG_ARCH_MMAP_RND_BITS=28
Value requested for CONFIG_CLONE_BACKWARDS not in final .config
Requested value: CONFIG_CLONE_BACKWARDS=y
Actual value:
Value requested for CONFIG_OLD_SIGSUSPEND3 not in final .config
Requested value: CONFIG_OLD_SIGSUSPEND3=y
Actual value:
Value requested for CONFIG_OLD_SIGACTION not in final .config
Requested value: CONFIG_OLD_SIGACTION=y
Actual value:
Value requested for CONFIG_ARCH_SPLIT_ARG64 not in final .config
Requested value: CONFIG_ARCH_SPLIT_ARG64=y
Actual value:
Value requested for CONFIG_FUNCTION_ALIGNMENT not in final .config
Requested value: CONFIG_FUNCTION_ALIGNMENT=4
Actual value: CONFIG_FUNCTION_ALIGNMENT=16
Value requested for CONFIG_SELECT_MEMORY_MODEL not in final .config
Requested value: CONFIG_SELECT_MEMORY_MODEL=y
Actual value:
Value requested for CONFIG_FLATMEM_MANUAL not in final .config
Requested value: CONFIG_FLATMEM_MANUAL=y
Actual value:
Value requested for CONFIG_SPARSEMEM_MANUAL not in final .config
Requested value: # CONFIG_SPARSEMEM_MANUAL is not set
Actual value:
Value requested for CONFIG_FLATMEM not in final .config
Requested value: CONFIG_FLATMEM=y
Actual value:
Value requested for CONFIG_SPARSEMEM_STATIC not in final .config
Requested value: CONFIG_SPARSEMEM_STATIC=y
Actual value:
Value requested for CONFIG_BOUNCE not in final .config
Requested value: CONFIG_BOUNCE=y
Actual value:
Value requested for CONFIG_KMAP_LOCAL not in final .config
Requested value: CONFIG_KMAP_LOCAL=y
Actual value:
Value requested for CONFIG_HOTPLUG_PCI_COMPAQ not in final .config
Requested value: # CONFIG_HOTPLUG_PCI_COMPAQ is not set
Actual value:
Value requested for CONFIG_HOTPLUG_PCI_IBM not in final .config
Requested value: # CONFIG_HOTPLUG_PCI_IBM is not set
Actual value:
Value requested for CONFIG_EFI_CAPSULE_QUIRK_QUARK_CSH not in final .config
Requested value: CONFIG_EFI_CAPSULE_QUIRK_QUARK_CSH=y
Actual value:
Value requested for CONFIG_PCH_PHUB not in final .config
Requested value: # CONFIG_PCH_PHUB is not set
Actual value:
Value requested for CONFIG_SCSI_NSP32 not in final .config
Requested value: # CONFIG_SCSI_NSP32 is not set
Actual value:
Value requested for CONFIG_PATA_CS5520 not in final .config
Requested value: # CONFIG_PATA_CS5520 is not set
Actual value:
Value requested for CONFIG_PATA_CS5530 not in final .config
Requested value: # CONFIG_PATA_CS5530 is not set
Actual value:
Value requested for CONFIG_PATA_CS5535 not in final .config
Requested value: # CONFIG_PATA_CS5535 is not set
Actual value:
Value requested for CONFIG_PATA_CS5536 not in final .config
Requested value: # CONFIG_PATA_CS5536 is not set
Actual value:
Value requested for CONFIG_PATA_SC1200 not in final .config
Requested value: # CONFIG_PATA_SC1200 is not set
Actual value:
Value requested for CONFIG_PCH_GBE not in final .config
Requested value: # CONFIG_PCH_GBE is not set
Actual value:
Value requested for CONFIG_INPUT_WISTRON_BTNS not in final .config
Requested value: # CONFIG_INPUT_WISTRON_BTNS is not set
Actual value:
Value requested for CONFIG_SERIAL_TIMBERDALE not in final .config
Requested value: # CONFIG_SERIAL_TIMBERDALE is not set
Actual value:
Value requested for CONFIG_SERIAL_PCH_UART not in final .config
Requested value: # CONFIG_SERIAL_PCH_UART is not set
Actual value:
Value requested for CONFIG_HW_RANDOM_GEODE not in final .config
Requested value: CONFIG_HW_RANDOM_GEODE=y
Actual value:
Value requested for CONFIG_SONYPI not in final .config
Requested value: # CONFIG_SONYPI is not set
Actual value:
Value requested for CONFIG_PC8736x_GPIO not in final .config
Requested value: # CONFIG_PC8736x_GPIO is not set
Actual value:
Value requested for CONFIG_NSC_GPIO not in final .config
Requested value: # CONFIG_NSC_GPIO is not set
Actual value:
Value requested for CONFIG_I2C_EG20T not in final .config
Requested value: # CONFIG_I2C_EG20T is not set
Actual value:
Value requested for CONFIG_SCx200_ACB not in final .config
Requested value: # CONFIG_SCx200_ACB is not set
Actual value:
Value requested for CONFIG_PTP_1588_CLOCK_PCH not in final .config
Requested value: # CONFIG_PTP_1588_CLOCK_PCH is not set
Actual value:
Value requested for CONFIG_SBC8360_WDT not in final .config
Requested value: # CONFIG_SBC8360_WDT is not set
Actual value:
Value requested for CONFIG_SBC7240_WDT not in final .config
Requested value: # CONFIG_SBC7240_WDT is not set
Actual value:
Value requested for CONFIG_MFD_CS5535 not in final .config
Requested value: # CONFIG_MFD_CS5535 is not set
Actual value:
Value requested for CONFIG_AGP_ALI not in final .config
Requested value: # CONFIG_AGP_ALI is not set
Actual value:
Value requested for CONFIG_AGP_ATI not in final .config
Requested value: # CONFIG_AGP_ATI is not set
Actual value:
Value requested for CONFIG_AGP_AMD not in final .config
Requested value: # CONFIG_AGP_AMD is not set
Actual value:
Value requested for CONFIG_AGP_NVIDIA not in final .config
Requested value: # CONFIG_AGP_NVIDIA is not set
Actual value:
Value requested for CONFIG_AGP_SWORKS not in final .config
Requested value: # CONFIG_AGP_SWORKS is not set
Actual value:
Value requested for CONFIG_AGP_EFFICEON not in final .config
Requested value: # CONFIG_AGP_EFFICEON is not set
Actual value:
Value requested for CONFIG_SND_CS5530 not in final .config
Requested value: # CONFIG_SND_CS5530 is not set
Actual value:
Value requested for CONFIG_SND_CS5535AUDIO not in final .config
Requested value: # CONFIG_SND_CS5535AUDIO is not set
Actual value:
Value requested for CONFIG_SND_SIS7019 not in final .config
Requested value: # CONFIG_SND_SIS7019 is not set
Actual value:
Value requested for CONFIG_LEDS_OT200 not in final .config
Requested value: # CONFIG_LEDS_OT200 is not set
Actual value:
Value requested for CONFIG_PCH_DMA not in final .config
Requested value: # CONFIG_PCH_DMA is not set
Actual value:
Value requested for CONFIG_CLKSRC_I8253 not in final .config
Requested value: CONFIG_CLKSRC_I8253=y
Actual value:
Value requested for CONFIG_MAILBOX not in final .config
Requested value: # CONFIG_MAILBOX is not set
Actual value: CONFIG_MAILBOX=y
Value requested for CONFIG_CRYPTO_SERPENT_SSE2_586 not in final .config
Requested value: # CONFIG_CRYPTO_SERPENT_SSE2_586 is not set
Actual value:
Value requested for CONFIG_CRYPTO_TWOFISH_586 not in final .config
Requested value: # CONFIG_CRYPTO_TWOFISH_586 is not set
Actual value:
Value requested for CONFIG_CRYPTO_DEV_GEODE not in final .config
Requested value: # CONFIG_CRYPTO_DEV_GEODE is not set
Actual value:
Value requested for CONFIG_CRYPTO_DEV_HIFN_795X not in final .config
Requested value: # CONFIG_CRYPTO_DEV_HIFN_795X is not set
Actual value:
Value requested for CONFIG_CRYPTO_LIB_POLY1305_RSIZE not in final .config
Requested value: CONFIG_CRYPTO_LIB_POLY1305_RSIZE=1
Actual value: CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11
Value requested for CONFIG_AUDIT_GENERIC not in final .config
Requested value: CONFIG_AUDIT_GENERIC=y
Actual value:
Value requested for CONFIG_GENERIC_VDSO_32 not in final .config
Requested value: CONFIG_GENERIC_VDSO_32=y
Actual value:
Value requested for CONFIG_DEBUG_KMAP_LOCAL not in final .config
Requested value: # CONFIG_DEBUG_KMAP_LOCAL is not set
Actual value:
Value requested for CONFIG_DEBUG_HIGHMEM not in final .config
Requested value: # CONFIG_DEBUG_HIGHMEM is not set
Actual value:
Value requested for CONFIG_HAVE_DEBUG_STACKOVERFLOW not in final .config
Requested value: CONFIG_HAVE_DEBUG_STACKOVERFLOW=y
Actual value:
Value requested for CONFIG_DEBUG_STACKOVERFLOW not in final .config
Requested value: # CONFIG_DEBUG_STACKOVERFLOW is not set
Actual value:
Value requested for CONFIG_HAVE_FUNCTION_GRAPH_TRACER not in final .config
Requested value: CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
Actual value:
Value requested for CONFIG_HAVE_FUNCTION_GRAPH_FREGS not in final .config
Requested value: CONFIG_HAVE_FUNCTION_GRAPH_FREGS=y
Actual value:
Value requested for CONFIG_HAVE_FTRACE_GRAPH_FUNC not in final .config
Requested value: CONFIG_HAVE_FTRACE_GRAPH_FUNC=y
Actual value:
Value requested for CONFIG_DRM_KUNIT_TEST not in final .config
Requested value: CONFIG_DRM_KUNIT_TEST=m
Actual value:
Value requested for CONFIG_DRM_XE_WERROR not in final .config
Requested value: CONFIG_DRM_XE_WERROR=y
Actual value:
Value requested for CONFIG_DRM_XE_DEBUG not in final .config
Requested value: CONFIG_DRM_XE_DEBUG=y
Actual value:
Value requested for CONFIG_DRM_XE_DEBUG_MEM not in final .config
Requested value: CONFIG_DRM_XE_DEBUG_MEM=y
Actual value:
Value requested for CONFIG_DRM_XE_KUNIT_TEST not in final .config
Requested value: CONFIG_DRM_XE_KUNIT_TEST=m
Actual value:
++ nproc
+ make -j48 ARCH=i386 olddefconfig
GEN Makefile
WARNING: unmet direct dependencies detected for FB_IOMEM_HELPERS
Depends on [n]: HAS_IOMEM [=y] && FB_CORE [=n]
Selected by [m]:
- DRM_XE_DISPLAY [=y] && HAS_IOMEM [=y] && DRM [=y] && DRM_XE [=m] && DRM_XE [=m]=m [=m] && HAS_IOPORT [=y]
#
# configuration written to .config
#
++ nproc
+ make -j48 ARCH=i386
SYNC include/config/auto.conf.cmd
GEN Makefile
WARNING: unmet direct dependencies detected for FB_IOMEM_HELPERS
Depends on [n]: HAS_IOMEM [=y] && FB_CORE [=n]
Selected by [m]:
- DRM_XE_DISPLAY [=y] && HAS_IOMEM [=y] && DRM [=y] && DRM_XE [=m] && DRM_XE [=m]=m [=m] && HAS_IOPORT [=y]
WARNING: unmet direct dependencies detected for FB_IOMEM_HELPERS
Depends on [n]: HAS_IOMEM [=y] && FB_CORE [=n]
Selected by [m]:
- DRM_XE_DISPLAY [=y] && HAS_IOMEM [=y] && DRM [=y] && DRM_XE [=m] && DRM_XE [=m]=m [=m] && HAS_IOPORT [=y]
WARNING: unmet direct dependencies detected for FB_IOMEM_HELPERS
Depends on [n]: HAS_IOMEM [=y] && FB_CORE [=n]
Selected by [m]:
- DRM_XE_DISPLAY [=y] && HAS_IOMEM [=y] && DRM [=y] && DRM_XE [=m] && DRM_XE [=m]=m [=m] && HAS_IOPORT [=y]
GEN Makefile
WRAP arch/x86/include/generated/uapi/asm/bpf_perf_event.h
WRAP arch/x86/include/generated/uapi/asm/errno.h
SYSHDR arch/x86/include/generated/uapi/asm/unistd_32.h
WRAP arch/x86/include/generated/uapi/asm/fcntl.h
WRAP arch/x86/include/generated/uapi/asm/ioctl.h
WRAP arch/x86/include/generated/uapi/asm/ioctls.h
SYSHDR arch/x86/include/generated/uapi/asm/unistd_64.h
SYSHDR arch/x86/include/generated/uapi/asm/unistd_x32.h
UPD include/generated/uapi/linux/version.h
WRAP arch/x86/include/generated/uapi/asm/ipcbuf.h
SYSTBL arch/x86/include/generated/asm/syscalls_32.h
WRAP arch/x86/include/generated/uapi/asm/param.h
WRAP arch/x86/include/generated/uapi/asm/poll.h
WRAP arch/x86/include/generated/uapi/asm/resource.h
WRAP arch/x86/include/generated/uapi/asm/socket.h
WRAP arch/x86/include/generated/uapi/asm/sockios.h
WRAP arch/x86/include/generated/uapi/asm/termbits.h
WRAP arch/x86/include/generated/uapi/asm/termios.h
WRAP arch/x86/include/generated/uapi/asm/types.h
UPD include/generated/compile.h
HOSTCC arch/x86/tools/relocs_32.o
HOSTCC arch/x86/tools/relocs_64.o
HOSTCC arch/x86/tools/relocs_common.o
WRAP arch/x86/include/generated/asm/early_ioremap.h
WRAP arch/x86/include/generated/asm/fprobe.h
WRAP arch/x86/include/generated/asm/mcs_spinlock.h
WRAP arch/x86/include/generated/asm/mmzone.h
WRAP arch/x86/include/generated/asm/irq_regs.h
HOSTCC scripts/kallsyms
WRAP arch/x86/include/generated/asm/kmap_size.h
WRAP arch/x86/include/generated/asm/local64.h
HOSTCC scripts/sorttable
WRAP arch/x86/include/generated/asm/mmiowb.h
HOSTCC scripts/asn1_compiler
WRAP arch/x86/include/generated/asm/module.lds.h
WRAP arch/x86/include/generated/asm/rwonce.h
HOSTCC scripts/selinux/mdp/mdp
HOSTLD arch/x86/tools/relocs
UPD include/config/kernel.release
UPD include/generated/utsrelease.h
CC scripts/mod/empty.o
HOSTCC scripts/mod/mk_elfconfig
CC scripts/mod/devicetable-offsets.s
UPD scripts/mod/devicetable-offsets.h
MKELF scripts/mod/elfconfig.h
HOSTCC scripts/mod/modpost.o
HOSTCC scripts/mod/file2alias.o
HOSTCC scripts/mod/sumversion.o
HOSTCC scripts/mod/symsearch.o
HOSTLD scripts/mod/modpost
CC kernel/bounds.s
CHKSHA1 /workspace/kernel/include/linux/atomic/atomic-arch-fallback.h
CHKSHA1 /workspace/kernel/include/linux/atomic/atomic-instrumented.h
CHKSHA1 /workspace/kernel/include/linux/atomic/atomic-long.h
UPD include/generated/timeconst.h
UPD include/generated/bounds.h
CC arch/x86/kernel/asm-offsets.s
UPD include/generated/asm-offsets.h
CALL /workspace/kernel/scripts/checksyscalls.sh
LDS scripts/module.lds
HOSTCC usr/gen_init_cpio
CC init/main.o
CC certs/system_keyring.o
CC init/do_mounts.o
CC init/do_mounts_initrd.o
UPD init/utsversion-tmp.h
CC init/initramfs.o
CC security/commoncap.o
CC ipc/util.o
CC mm/filemap.o
CC arch/x86/realmode/init.o
CC init/calibrate.o
CC security/lsm_syscalls.o
CC io_uring/io_uring.o
CC mm/mempool.o
AS arch/x86/entry/entry.o
CC ipc/msgutil.o
CC block/bdev.o
CC ipc/msg.o
AS arch/x86/lib/atomic64_cx8_32.o
AR arch/x86/crypto/built-in.a
AR arch/x86/net/built-in.a
CC arch/x86/power/cpu.o
CC security/keys/gc.o
CC arch/x86/video/video-common.o
HOSTCC security/selinux/genheaders
CC block/partitions/core.o
CC arch/x86/pci/i386.o
AR arch/x86/entry/vsyscall/built-in.a
CC fs/nfs_common/nfsacl.o
CC security/integrity/iint.o
CC arch/x86/events/amd/core.o
CC fs/iomap/trace.o
AS arch/x86/realmode/rm/header.o
CC fs/quota/dquot.o
CC arch/x86/power/hibernate_32.o
CC arch/x86/mm/pat/set_memory.o
AR virt/lib/built-in.a
AS arch/x86/lib/checksum_32.o
CC net/core/sock.o
AR arch/x86/platform/atom/built-in.a
CC fs/notify/dnotify/dnotify.o
AR drivers/cache/built-in.a
CC arch/x86/virt/svm/cmdline.o
AR sound/i2c/other/built-in.a
CC lib/math/div64.o
CC arch/x86/kernel/fpu/init.o
CC arch/x86/lib/cmdline.o
CC sound/core/seq/seq.o
AR virt/built-in.a
AR sound/i2c/built-in.a
AR drivers/irqchip/built-in.a
AR arch/x86/platform/ce4100/built-in.a
CC arch/x86/entry/vdso/vma.o
AS arch/x86/realmode/rm/trampoline_32.o
CC block/fops.o
CC fs/proc/task_mmu.o
CC arch/x86/platform/efi/memmap.o
AR arch/x86/platform/geode/built-in.a
CC arch/x86/mm/pat/memtype.o
AR drivers/bus/mhi/built-in.a
CC kernel/sched/core.o
AR sound/drivers/opl3/built-in.a
AR arch/x86/platform/iris/built-in.a
AR drivers/bus/built-in.a
AS arch/x86/realmode/rm/stack.o
AR sound/drivers/opl4/built-in.a
AS arch/x86/realmode/rm/reboot.o
AR drivers/pwm/built-in.a
CC crypto/asymmetric_keys/asymmetric_type.o
AR sound/drivers/mpu401/built-in.a
CC arch/x86/mm/pat/memtype_interval.o
AS arch/x86/realmode/rm/wakeup_asm.o
AR sound/drivers/vx/built-in.a
AR drivers/leds/trigger/built-in.a
AR sound/drivers/pcsp/built-in.a
AR drivers/leds/blink/built-in.a
AR sound/drivers/built-in.a
CC arch/x86/realmode/rm/wakemain.o
AS arch/x86/lib/cmpxchg8b_emu.o
AR arch/x86/virt/svm/built-in.a
AR drivers/leds/simple/built-in.a
CC fs/quota/quota_v2.o
CC drivers/leds/led-core.o
AR arch/x86/virt/vmx/built-in.a
AR arch/x86/virt/built-in.a
CC arch/x86/lib/cpu.o
CC kernel/sched/fair.o
CC lib/math/gcd.o
GEN security/selinux/flask.h security/selinux/av_permissions.h
CC security/selinux/avc.o
CC arch/x86/realmode/rm/video-mode.o
CC lib/math/lcm.o
CC lib/math/int_log.o
CC arch/x86/kernel/fpu/bugs.o
AS arch/x86/realmode/rm/copy.o
GEN usr/initramfs_data.cpio
AS arch/x86/realmode/rm/bioscall.o
COPY usr/initramfs_inc_data
AS usr/initramfs_data.o
HOSTCC certs/extract-cert
CC arch/x86/realmode/rm/regs.o
AR usr/built-in.a
CC lib/math/int_pow.o
CC kernel/sched/build_policy.o
CC sound/core/seq/seq_lock.o
CC arch/x86/kernel/fpu/core.o
CC arch/x86/realmode/rm/video-vga.o
CC lib/math/int_sqrt.o
CC lib/math/reciprocal_div.o
CC arch/x86/realmode/rm/video-vesa.o
CC arch/x86/lib/delay.o
CC ipc/sem.o
CC net/core/request_sock.o
CC arch/x86/realmode/rm/video-bios.o
CC lib/math/rational.o
CERT certs/x509_certificate_list
CERT certs/signing_key.x509
AR arch/x86/video/built-in.a
AS certs/system_certificates.o
CC arch/x86/pci/init.o
PASYMS arch/x86/realmode/rm/pasyms.h
AR certs/built-in.a
CC security/integrity/integrity_audit.o
CC fs/nfs_common/grace.o
CC arch/x86/platform/intel/iosf_mbi.o
CC init/init_task.o
CC kernel/locking/mutex.o
LDS arch/x86/realmode/rm/realmode.lds
CC drivers/leds/led-class.o
CC sound/core/sound.o
CC arch/x86/entry/vdso/extable.o
LD arch/x86/realmode/rm/realmode.elf
CC fs/iomap/iter.o
RELOCS arch/x86/realmode/rm/realmode.relocs
OBJCOPY arch/x86/realmode/rm/realmode.bin
CC sound/core/seq/seq_clientmgr.o
AS arch/x86/realmode/rmpiggy.o
CC sound/core/init.o
CC sound/core/memory.o
AR arch/x86/realmode/built-in.a
CC security/keys/key.o
CC fs/iomap/buffered-io.o
AR fs/notify/dnotify/built-in.a
CC kernel/locking/semaphore.o
CC fs/notify/inotify/inotify_fsnotify.o
CC arch/x86/platform/efi/quirks.o
AR fs/notify/fanotify/built-in.a
CC crypto/asymmetric_keys/restrict.o
CC crypto/api.o
AS arch/x86/lib/getuser.o
AS arch/x86/power/hibernate_asm_32.o
GEN arch/x86/lib/inat-tables.c
CC arch/x86/lib/insn-eval.o
CC arch/x86/power/hibernate.o
CC block/partitions/msdos.o
CC fs/notify/fsnotify.o
AR lib/math/built-in.a
CC lib/crypto/mpi/generic_mpih-lshift.o
CC lib/zlib_inflate/inffast.o
CC fs/notify/notification.o
CC lib/crypto/mpi/generic_mpih-mul1.o
CC lib/crypto/memneq.o
CC kernel/locking/rwsem.o
CC block/partitions/efi.o
CC lib/zlib_inflate/inflate.o
CC arch/x86/events/amd/lbr.o
CC drivers/leds/led-triggers.o
CC crypto/asymmetric_keys/signature.o
CC kernel/power/qos.o
CC arch/x86/kernel/cpu/mce/core.o
CC arch/x86/pci/pcbios.o
CC fs/notify/inotify/inotify_user.o
AR arch/x86/mm/pat/built-in.a
CC arch/x86/mm/init.o
CC arch/x86/kernel/cpu/mtrr/mtrr.o
CC arch/x86/mm/init_32.o
CC sound/core/seq/seq_memory.o
CC fs/nfs_common/common.o
AR security/integrity/built-in.a
CC lib/zlib_inflate/infutil.o
AR arch/x86/platform/intel/built-in.a
CC fs/kernfs/mount.o
CC arch/x86/platform/efi/efi.o
CC init/version.o
CC fs/sysfs/file.o
CC fs/devpts/inode.o
LDS arch/x86/entry/vdso/vdso32/vdso32.lds
AR arch/x86/power/built-in.a
AS arch/x86/entry/vdso/vdso32/note.o
CC fs/netfs/buffered_read.o
AS arch/x86/entry/vdso/vdso32/system_call.o
CC fs/netfs/buffered_write.o
CC fs/notify/group.o
AS arch/x86/entry/vdso/vdso32/sigreturn.o
CC arch/x86/kernel/fpu/regset.o
CC arch/x86/entry/vdso/vdso32/vclock_gettime.o
CC fs/netfs/direct_read.o
CC lib/crypto/mpi/generic_mpih-mul2.o
AR init/built-in.a
CC crypto/asymmetric_keys/public_key.o
CC arch/x86/mm/fault.o
CC ipc/shm.o
CC ipc/syscall.o
CC arch/x86/lib/insn.o
CC security/min_addr.o
CC lib/crypto/utils.o
CC block/bio.o
CC fs/proc/inode.o
CC security/keys/keyring.o
CC security/keys/keyctl.o
CC security/selinux/hooks.o
CC lib/zlib_inflate/inftrees.o
AR drivers/leds/built-in.a
CC net/ethernet/eth.o
CC fs/quota/quota_tree.o
CC arch/x86/pci/mmconfig_32.o
CC kernel/locking/percpu-rwsem.o
CC drivers/pci/msi/pcidev_msi.o
CC lib/zlib_inflate/inflate_syms.o
AR block/partitions/built-in.a
CC arch/x86/kernel/cpu/mce/severity.o
CC arch/x86/pci/direct.o
CC arch/x86/lib/kaslr.o
CC arch/x86/events/amd/ibs.o
AR fs/nfs_common/built-in.a
CC arch/x86/pci/mmconfig-shared.o
CC arch/x86/pci/fixup.o
CC arch/x86/kernel/cpu/mtrr/if.o
CC lib/crypto/mpi/generic_mpih-mul3.o
AR fs/devpts/built-in.a
CC sound/core/seq/seq_queue.o
CC arch/x86/pci/acpi.o
CC fs/sysfs/dir.o
AR fs/notify/inotify/built-in.a
CC fs/kernfs/inode.o
CC fs/kernfs/dir.o
CC arch/x86/entry/vdso/vdso32/vgetcpu.o
CC arch/x86/lib/memcpy_32.o
AS arch/x86/lib/memmove_32.o
CC fs/notify/mark.o
CC kernel/power/main.o
CC arch/x86/pci/legacy.o
CC lib/crypto/mpi/generic_mpih-rshift.o
ASN.1 crypto/asymmetric_keys/x509.asn1.[ch]
ASN.1 crypto/asymmetric_keys/x509_akid.asn1.[ch]
CC arch/x86/pci/irq.o
CC crypto/asymmetric_keys/x509_loader.o
CC arch/x86/lib/misc.o
HOSTCC arch/x86/entry/vdso/vdso2c
CC arch/x86/kernel/fpu/signal.o
AR lib/zlib_inflate/built-in.a
CC arch/x86/lib/pc-conf-reg.o
CC arch/x86/kernel/fpu/xstate.o
CC crypto/cipher.o
CC arch/x86/platform/efi/efi_32.o
AR sound/isa/ad1816a/built-in.a
AR sound/isa/ad1848/built-in.a
AR sound/pci/ac97/built-in.a
AR sound/isa/cs423x/built-in.a
AR sound/pci/ali5451/built-in.a
AR sound/isa/es1688/built-in.a
AR sound/pci/asihpi/built-in.a
CC crypto/asymmetric_keys/x509_public_key.o
AR sound/isa/galaxy/built-in.a
AS arch/x86/lib/putuser.o
AR sound/pci/au88x0/built-in.a
AR sound/isa/gus/built-in.a
AR sound/pci/aw2/built-in.a
AR sound/isa/msnd/built-in.a
CC fs/proc/root.o
AR sound/pci/ctxfi/built-in.a
AS arch/x86/lib/retpoline.o
AR sound/isa/opti9xx/built-in.a
AR sound/pci/ca0106/built-in.a
AR sound/isa/sb/built-in.a
AR sound/pci/cs46xx/built-in.a
AR sound/isa/wavefront/built-in.a
CC arch/x86/lib/string_32.o
AR sound/pci/cs5535audio/built-in.a
AR sound/isa/wss/built-in.a
CC kernel/locking/spinlock.o
AR sound/pci/lola/built-in.a
AR sound/isa/built-in.a
CC fs/netfs/direct_write.o
AR sound/pci/lx6464es/built-in.a
CC lib/zlib_deflate/deflate.o
CC drivers/pci/msi/api.o
CC lib/lzo/lzo1x_compress.o
AR sound/pci/echoaudio/built-in.a
CC crypto/compress.o
AR sound/pci/emu10k1/built-in.a
CC arch/x86/lib/strstr_32.o
CC sound/pci/hda/hda_bind.o
CC arch/x86/lib/usercopy.o
CC fs/iomap/direct-io.o
CC lib/lz4/lz4_decompress.o
CC arch/x86/entry/vdso/vdso32-setup.o
CC arch/x86/kernel/cpu/mtrr/generic.o
CC fs/sysfs/symlink.o
CC io_uring/opdef.o
CC lib/crypto/mpi/generic_mpih-sub1.o
CC lib/crypto/chacha.o
CC fs/quota/quota.o
CC lib/crypto/aes.o
CC block/elevator.o
CC arch/x86/mm/ioremap.o
CC fs/iomap/fiemap.o
CC arch/x86/lib/usercopy_32.o
CC kernel/locking/osq_lock.o
CC sound/core/seq/seq_fifo.o
CC arch/x86/kernel/cpu/mtrr/cleanup.o
CC net/core/skbuff.o
VDSO arch/x86/entry/vdso/vdso32.so.dbg
CC security/keys/permission.o
CC fs/iomap/seek.o
AR sound/pci/ice1712/built-in.a
CC security/security.o
CC fs/kernfs/file.o
CC ipc/ipc_sysctl.o
CC mm/oom_kill.o
CC sound/core/control.o
OBJCOPY arch/x86/entry/vdso/vdso32.so
VDSO2C arch/x86/entry/vdso/vdso-image-32.c
CC arch/x86/entry/vdso/vdso-image-32.o
ASN.1 crypto/asymmetric_keys/pkcs7.asn1.[ch]
CC crypto/asymmetric_keys/pkcs7_trust.o
AS arch/x86/platform/efi/efi_stub_32.o
CC arch/x86/kernel/cpu/mce/genpool.o
CC arch/x86/platform/efi/runtime-map.o
CC lib/lzo/lzo1x_decompress_safe.o
CC fs/notify/fdinfo.o
CC security/selinux/selinuxfs.o
CC security/selinux/netlink.o
CC kernel/locking/qspinlock.o
CC arch/x86/events/amd/uncore.o
CC arch/x86/lib/msr-smp.o
AR net/ethernet/built-in.a
CC kernel/power/console.o
CC kernel/printk/printk.o
CC fs/proc/base.o
AR arch/x86/entry/vdso/built-in.a
AS arch/x86/entry/entry_32.o
CC drivers/pci/msi/msi.o
CC fs/netfs/iterator.o
CC sound/pci/hda/hda_codec.o
CC arch/x86/entry/syscall_32.o
CC fs/sysfs/mount.o
CC lib/crypto/mpi/generic_mpih-add1.o
CC crypto/asymmetric_keys/pkcs7_verify.o
CC arch/x86/pci/common.o
CC arch/x86/kernel/cpu/microcode/core.o
CC lib/zlib_deflate/deftree.o
AR net/802/built-in.a
AR arch/x86/kernel/fpu/built-in.a
CC kernel/irq/irqdesc.o
CC kernel/rcu/update.o
CC kernel/irq/handle.o
CC ipc/mqueue.o
CC arch/x86/kernel/cpu/cacheinfo.o
CC arch/x86/lib/cache-smp.o
CC sound/core/seq/seq_prioq.o
AR lib/lzo/built-in.a
CC drivers/video/console/dummycon.o
AR drivers/idle/built-in.a
CC sound/core/seq/seq_timer.o
CC drivers/pci/pcie/portdrv.o
CC kernel/locking/rtmutex_api.o
CC security/keys/process_keys.o
CC arch/x86/kernel/cpu/mce/intel.o
CC arch/x86/lib/crc32-glue.o
AR drivers/pci/pwrctrl/built-in.a
CC io_uring/kbuf.o
CC sound/core/seq/seq_system.o
CC arch/x86/mm/extable.o
AR fs/notify/built-in.a
CC drivers/pci/pcie/rcec.o
CC arch/x86/kernel/cpu/mtrr/amd.o
CC fs/iomap/swapfile.o
AR arch/x86/platform/efi/built-in.a
AR arch/x86/platform/intel-mid/built-in.a
CC crypto/asymmetric_keys/x509.asn1.o
AR arch/x86/platform/intel-quark/built-in.a
CC crypto/asymmetric_keys/x509_akid.asn1.o
AR arch/x86/platform/olpc/built-in.a
AR arch/x86/platform/scx200/built-in.a
CC crypto/asymmetric_keys/x509_cert_parser.o
AR arch/x86/platform/ts5500/built-in.a
AR arch/x86/platform/uv/built-in.a
AR arch/x86/platform/built-in.a
CC kernel/power/process.o
CC kernel/power/suspend.o
CC arch/x86/kernel/cpu/microcode/intel.o
CC fs/kernfs/symlink.o
CC lib/crypto/mpi/mpicoder.o
AR lib/lz4/built-in.a
AS arch/x86/lib/crc32-pclmul.o
CC block/blk-core.o
CC net/core/datagram.o
CC fs/quota/kqid.o
CC fs/netfs/locking.o
CC lib/zlib_deflate/deflate_syms.o
CC arch/x86/lib/msr.o
CC fs/sysfs/group.o
CC net/sched/sch_generic.o
CC kernel/irq/manage.o
CC drivers/video/console/vgacon.o
CC kernel/irq/spurious.o
CC arch/x86/pci/early.o
CC arch/x86/events/intel/core.o
CC drivers/pci/msi/irqdomain.o
CC arch/x86/kernel/cpu/mce/amd.o
CC arch/x86/events/zhaoxin/core.o
CC arch/x86/kernel/cpu/mtrr/cyrix.o
AR arch/x86/events/amd/built-in.a
CC lib/crypto/mpi/mpi-add.o
CC arch/x86/entry/common.o
CC sound/core/seq/seq_ports.o
AR lib/zlib_deflate/built-in.a
AR kernel/livepatch/built-in.a
CC sound/core/misc.o
AS arch/x86/entry/thunk.o
CC kernel/rcu/sync.o
CC crypto/asymmetric_keys/pkcs7.asn1.o
CC mm/fadvise.o
CC drivers/pci/pcie/bwctrl.o
CC crypto/asymmetric_keys/pkcs7_parser.o
AR fs/iomap/built-in.a
CC fs/quota/netlink.o
CC sound/pci/hda/hda_jack.o
AR drivers/char/ipmi/built-in.a
CC kernel/power/hibernate.o
CC arch/x86/mm/mmap.o
CC kernel/sched/build_utility.o
CC sound/core/device.o
CC kernel/locking/qrwlock.o
CC net/core/stream.o
AR fs/kernfs/built-in.a
CC kernel/irq/resend.o
CC arch/x86/kernel/cpu/scattered.o
CC arch/x86/kernel/cpu/topology_common.o
CC lib/zstd/zstd_decompress_module.o
CC security/keys/request_key.o
AS arch/x86/lib/msr-reg.o
CC ipc/namespace.o
CC arch/x86/kernel/cpu/microcode/amd.o
CC fs/netfs/main.o
CC io_uring/rsrc.o
AR fs/sysfs/built-in.a
CC arch/x86/pci/bus_numa.o
CC net/sched/sch_mq.o
CC arch/x86/kernel/cpu/mtrr/centaur.o
CC arch/x86/kernel/cpu/mce/threshold.o
CC arch/x86/lib/msr-reg-export.o
CC sound/pci/hda/hda_auto_parser.o
CC lib/crypto/mpi/mpi-bit.o
AR crypto/asymmetric_keys/built-in.a
CC net/netlink/af_netlink.o
CC crypto/algapi.o
CC kernel/power/snapshot.o
CC arch/x86/events/intel/bts.o
AR drivers/pci/msi/built-in.a
CC block/blk-sysfs.o
CC lib/zstd/decompress/huf_decompress.o
AR kernel/locking/built-in.a
CC fs/netfs/misc.o
CC net/netlink/genetlink.o
CC arch/x86/pci/amd_bus.o
AS arch/x86/lib/hweight.o
CC arch/x86/lib/iomem.o
CC fs/ext4/balloc.o
CC drivers/pci/pcie/aspm.o
CC fs/proc/generic.o
CC security/keys/request_key_auth.o
CC sound/core/seq/seq_info.o
CC arch/x86/mm/pgtable.o
AR arch/x86/entry/built-in.a
AR sound/pci/korg1212/built-in.a
AR drivers/video/console/built-in.a
CC crypto/scatterwalk.o
AR arch/x86/events/zhaoxin/built-in.a
CC drivers/video/backlight/backlight.o
CC arch/x86/kernel/acpi/boot.o
CC mm/maccess.o
CC ipc/mq_sysctl.o
AR fs/quota/built-in.a
AR sound/pci/mixart/built-in.a
CC arch/x86/kernel/apic/apic.o
CC arch/x86/kernel/cpu/mtrr/legacy.o
CC kernel/printk/printk_safe.o
CC security/selinux/nlmsgtab.o
AR sound/ppc/built-in.a
CC arch/x86/lib/atomic64_32.o
CC net/core/scm.o
CC kernel/irq/chip.o
CC arch/x86/lib/inat.o
CC sound/core/seq/seq_dummy.o
CC kernel/irq/dummychip.o
CC kernel/dma/mapping.o
AR sound/arm/built-in.a
CC lib/zstd/decompress/zstd_ddict.o
CC drivers/pci/pcie/pme.o
CC lib/crypto/mpi/mpi-cmp.o
AR ipc/built-in.a
AR arch/x86/lib/built-in.a
CC fs/proc/array.o
AR arch/x86/lib/lib.a
CC arch/x86/kernel/cpu/topology_ext.o
AR arch/x86/kernel/cpu/microcode/built-in.a
CC sound/core/info.o
CC net/netlink/policy.o
AR drivers/video/fbdev/core/built-in.a
AR drivers/video/fbdev/omap/built-in.a
CC drivers/video/aperture.o
AR drivers/video/fbdev/omap2/omapfb/dss/built-in.a
AR drivers/video/fbdev/omap2/omapfb/displays/built-in.a
CC kernel/dma/direct.o
AR drivers/video/fbdev/omap2/omapfb/built-in.a
CC security/keys/user_defined.o
AR drivers/video/fbdev/omap2/built-in.a
AR arch/x86/kernel/cpu/mtrr/built-in.a
AR drivers/video/fbdev/built-in.a
CC drivers/acpi/acpica/dsargs.o
CC security/selinux/netif.o
CC drivers/acpi/acpica/dscontrol.o
AR arch/x86/pci/built-in.a
AR net/bpf/built-in.a
CC fs/proc/fd.o
CC arch/x86/kernel/kprobes/core.o
CC security/selinux/netnode.o
CC kernel/rcu/srcutree.o
AR arch/x86/kernel/cpu/mce/built-in.a
CC net/sched/sch_frag.o
CC mm/page-writeback.o
CC arch/x86/mm/physaddr.o
AR sound/pci/nm256/built-in.a
CC fs/netfs/objects.o
CC kernel/entry/common.o
CC net/ethtool/ioctl.o
CC block/blk-flush.o
CC security/selinux/netport.o
CC drivers/pci/hotplug/pci_hotplug_core.o
CC kernel/printk/nbcon.o
AR drivers/video/backlight/built-in.a
CC sound/pci/hda/hda_sysfs.o
CC io_uring/notif.o
CC security/selinux/status.o
CC arch/x86/kernel/cpu/topology_amd.o
CC kernel/power/swap.o
AR sound/core/seq/built-in.a
CC arch/x86/mm/tlb.o
CC drivers/pci/hotplug/acpi_pcihp.o
CC drivers/acpi/acpica/dsdebug.o
CC crypto/proc.o
CC lib/crypto/mpi/mpi-sub-ui.o
CC arch/x86/kernel/acpi/sleep.o
CC fs/netfs/read_collect.o
CC lib/zstd/decompress/zstd_decompress.o
CC security/keys/proc.o
CC kernel/irq/devres.o
AR drivers/pci/pcie/built-in.a
CC lib/xz/xz_dec_syms.o
CC kernel/irq/kexec.o
CC net/sched/sch_api.o
CC fs/netfs/read_pgpriv2.o
CC drivers/acpi/acpica/dsfield.o
CC drivers/video/cmdline.o
CC arch/x86/kernel/cpu/common.o
CC kernel/dma/ops_helpers.o
CC sound/core/isadma.o
CC net/netfilter/core.o
CC sound/core/vmaster.o
CC kernel/module/main.o
CC net/netfilter/nf_log.o
CC fs/proc/proc_tty.o
CC lib/xz/xz_dec_stream.o
CC kernel/entry/syscall_user_dispatch.o
CC sound/pci/hda/hda_controller.o
CC fs/ext4/bitmap.o
CC arch/x86/kernel/kprobes/opt.o
CC crypto/aead.o
CC block/blk-settings.o
CC arch/x86/kernel/cpu/rdrand.o
CC kernel/irq/autoprobe.o
CC lib/crypto/mpi/mpi-div.o
AR drivers/pci/hotplug/built-in.a
CC kernel/printk/printk_ringbuffer.o
CC fs/jbd2/transaction.o
AR drivers/pci/controller/dwc/built-in.a
AR drivers/pci/controller/mobiveil/built-in.a
CC kernel/printk/sysctl.o
AR drivers/pci/controller/plda/built-in.a
AR drivers/pci/controller/built-in.a
CC security/lsm_audit.o
AR drivers/pci/switch/built-in.a
CC lib/dim/dim.o
CC drivers/pci/access.o
CC arch/x86/kernel/apic/apic_common.o
CC kernel/irq/irqdomain.o
CC drivers/acpi/acpica/dsinit.o
CC drivers/acpi/acpica/dsmethod.o
CC kernel/rcu/tree.o
CC fs/ext4/block_validity.o
AS arch/x86/kernel/acpi/wakeup_32.o
CC security/keys/sysctl.o
CC arch/x86/kernel/acpi/cstate.o
CC net/core/gen_stats.o
CC io_uring/tctx.o
CC lib/crypto/mpi/mpi-mod.o
CC lib/zstd/decompress/zstd_decompress_block.o
CC security/selinux/ss/ebitmap.o
CC arch/x86/mm/cpu_entry_area.o
CC lib/xz/xz_dec_lzma2.o
CC sound/core/ctljack.o
CC net/ipv4/netfilter/nf_defrag_ipv4.o
CC drivers/video/nomodeset.o
CC drivers/video/hdmi.o
CC lib/crypto/arc4.o
CC lib/dim/net_dim.o
CC fs/proc/cmdline.o
CC drivers/pci/bus.o
AR kernel/entry/built-in.a
CC net/ethtool/common.o
CC security/device_cgroup.o
AR net/netlink/built-in.a
CC arch/x86/kernel/apic/apic_noop.o
CC arch/x86/events/core.o
CC kernel/power/user.o
CC drivers/acpi/acpica/dsmthdat.o
CC drivers/pnp/pnpacpi/core.o
CC arch/x86/events/intel/ds.o
AR drivers/amba/built-in.a
LDS arch/x86/kernel/vmlinux.lds
CC fs/netfs/read_retry.o
CC security/keys/keyctl_pkey.o
CC net/ethtool/netlink.o
AR arch/x86/kernel/acpi/built-in.a
AR kernel/printk/built-in.a
CC net/core/gen_estimator.o
CC kernel/module/strict_rwx.o
AR arch/x86/kernel/kprobes/built-in.a
CC arch/x86/events/intel/knc.o
CC lib/xz/xz_dec_bcj.o
CC sound/core/jack.o
CC arch/x86/kernel/apic/ipi.o
CC block/blk-ioc.o
CC crypto/geniv.o
CC mm/folio-compat.o
CC kernel/dma/remap.o
CC drivers/pci/probe.o
CC lib/crypto/mpi/mpi-mul.o
CC net/ipv4/netfilter/nf_reject_ipv4.o
CC drivers/pnp/core.o
CC arch/x86/mm/maccess.o
CC lib/crypto/gf128mul.o
CC fs/proc/consoles.o
CC drivers/acpi/acpica/dsobject.o
CC fs/ext4/dir.o
AR kernel/sched/built-in.a
CC block/blk-map.o
CC lib/zstd/zstd_common_module.o
CC arch/x86/kernel/cpu/match.o
CC io_uring/filetable.o
CC net/netfilter/nf_queue.o
AR drivers/video/built-in.a
CC kernel/module/kmod.o
CC arch/x86/mm/pgprot.o
CC net/sched/sch_blackhole.o
CC fs/jbd2/commit.o
CC kernel/irq/proc.o
CC sound/pci/hda/hda_proc.o
AR lib/xz/built-in.a
CC kernel/power/poweroff.o
CC drivers/pnp/pnpacpi/rsparser.o
CC fs/jbd2/recovery.o
CC fs/jbd2/checkpoint.o
CC fs/ext4/ext4_jbd2.o
AR security/keys/built-in.a
CC mm/readahead.o
CC lib/dim/rdma_dim.o
CC drivers/acpi/acpica/dsopcode.o
CC arch/x86/kernel/apic/vector.o
CC sound/core/hwdep.o
AR kernel/dma/built-in.a
CC kernel/time/time.o
CC kernel/time/timer.o
CC security/selinux/ss/hashtab.o
CC lib/crypto/mpi/mpih-cmp.o
CC security/selinux/ss/symtab.o
CC net/xfrm/xfrm_policy.o
CC fs/proc/cpuinfo.o
AR kernel/power/built-in.a
CC net/xfrm/xfrm_state.o
CC net/core/net_namespace.o
CC arch/x86/kernel/cpu/bugs.o
CC kernel/time/hrtimer.o
CC kernel/time/sleep_timeout.o
CC drivers/pci/host-bridge.o
CC net/xfrm/xfrm_hash.o
CC kernel/module/tree_lookup.o
AR sound/sh/built-in.a
CC fs/netfs/read_single.o
CC fs/netfs/rolling_buffer.o
CC fs/ramfs/inode.o
CC arch/x86/mm/pgtable_32.o
CC crypto/lskcipher.o
CC kernel/time/timekeeping.o
CC fs/proc/devices.o
AR lib/dim/built-in.a
CC net/ipv4/netfilter/ip_tables.o
CC mm/swap.o
CC drivers/acpi/acpica/dspkginit.o
CC security/selinux/ss/sidtab.o
CC io_uring/rw.o
CC net/ipv4/netfilter/iptable_filter.o
CC kernel/irq/migration.o
CC net/ipv4/netfilter/iptable_mangle.o
CC net/ethtool/bitset.o
CC block/blk-merge.o
CC lib/fonts/fonts.o
CC lib/argv_split.o
CC lib/crypto/mpi/mpih-div.o
CC net/ipv4/route.o
CC net/sched/cls_api.o
CC drivers/acpi/acpica/dsutils.o
CC sound/core/timer.o
CC kernel/module/kallsyms.o
AR drivers/pnp/pnpacpi/built-in.a
CC drivers/pnp/card.o
CC fs/ext4/extents.o
CC fs/netfs/write_collect.o
CC mm/truncate.o
CC fs/hugetlbfs/inode.o
CC block/blk-timeout.o
AR drivers/clk/actions/built-in.a
CC sound/pci/hda/hda_hwdep.o
AR drivers/clk/analogbits/built-in.a
CC net/netfilter/nf_sockopt.o
AR drivers/clk/bcm/built-in.a
CC lib/fonts/font_8x16.o
CC arch/x86/mm/iomap_32.o
AR drivers/clk/imgtec/built-in.a
CC fs/proc/interrupts.o
CC kernel/irq/cpuhotplug.o
AR drivers/clk/imx/built-in.a
CC block/blk-lib.o
AR drivers/clk/ingenic/built-in.a
CC arch/x86/kernel/apic/init.o
AR drivers/clk/mediatek/built-in.a
CC fs/jbd2/revoke.o
AR drivers/clk/microchip/built-in.a
CC fs/ramfs/file-mmu.o
CC sound/pci/hda/hda_intel.o
AR drivers/clk/mstar/built-in.a
CC arch/x86/events/intel/lbr.o
AR drivers/clk/mvebu/built-in.a
CC lib/zstd/common/debug.o
AR drivers/clk/ralink/built-in.a
CC drivers/pci/remove.o
AR drivers/clk/renesas/built-in.a
CC lib/zstd/common/entropy_common.o
AR drivers/clk/socfpga/built-in.a
CC arch/x86/kernel/apic/hw_nmi.o
AR drivers/clk/sophgo/built-in.a
AR drivers/clk/sprd/built-in.a
CC lib/bug.o
AR drivers/clk/starfive/built-in.a
AR drivers/clk/sunxi-ng/built-in.a
CC drivers/acpi/acpica/dswexec.o
AR drivers/clk/ti/built-in.a
AR drivers/clk/versatile/built-in.a
AR drivers/clk/xilinx/built-in.a
AR drivers/clk/built-in.a
CC lib/buildid.o
CC crypto/skcipher.o
CC lib/zstd/common/error_private.o
CC lib/zstd/common/fse_decompress.o
AR lib/fonts/built-in.a
CC lib/clz_tab.o
CC arch/x86/mm/hugetlbpage.o
CC kernel/futex/core.o
CC net/core/secure_seq.o
CC security/selinux/ss/avtab.o
CC fs/proc/loadavg.o
CC drivers/pnp/driver.o
CC net/ethtool/strset.o
CC kernel/irq/pm.o
CC block/blk-mq.o
CC lib/crypto/mpi/mpih-mul.o
CC kernel/module/procfs.o
CC lib/cmdline.o
CC io_uring/net.o
CC net/sched/act_api.o
CC drivers/acpi/acpica/dswload.o
CC arch/x86/kernel/apic/io_apic.o
CC net/netfilter/utils.o
CC arch/x86/kernel/cpu/aperfmperf.o
AR fs/ramfs/built-in.a
CC fs/ext4/extents_status.o
CC lib/crypto/mpi/mpi-pow.o
AR drivers/acpi/pmic/built-in.a
AR sound/synth/emux/built-in.a
AR sound/usb/misc/built-in.a
AR sound/synth/built-in.a
AR sound/usb/usx2y/built-in.a
CC mm/vmscan.o
CC kernel/cgroup/cgroup.o
AR sound/usb/caiaq/built-in.a
CC drivers/pci/pci.o
CC drivers/pci/pci-driver.o
AR sound/usb/6fire/built-in.a
AR sound/usb/hiface/built-in.a
CC arch/x86/events/intel/p4.o
AR sound/usb/bcd2000/built-in.a
AR sound/usb/built-in.a
CC lib/zstd/common/zstd_common.o
AR sound/pci/oxygen/built-in.a
CC io_uring/poll.o
AR sound/pci/pcxhr/built-in.a
CC io_uring/eventfd.o
CC kernel/futex/syscalls.o
CC arch/x86/events/intel/p6.o
CC kernel/time/ntp.o
CC fs/jbd2/journal.o
CC net/sched/sch_fifo.o
AR lib/zstd/built-in.a
CC fs/netfs/write_issue.o
AR sound/firewire/built-in.a
CC kernel/trace/trace_clock.o
CC lib/crypto/mpi/mpiutil.o
CC mm/shrinker.o
CC arch/x86/mm/dump_pagetables.o
CC net/ipv4/netfilter/ipt_REJECT.o
CC fs/netfs/write_retry.o
CC drivers/acpi/acpica/dswload2.o
CC fs/proc/meminfo.o
CC drivers/pnp/resource.o
CC kernel/module/sysfs.o
CC kernel/trace/ring_buffer.o
CC sound/core/hrtimer.o
CC kernel/irq/msi.o
CC net/netfilter/nfnetlink.o
CC crypto/seqiv.o
CC fs/ext4/file.o
CC arch/x86/kernel/cpu/cpuid-deps.o
CC arch/x86/kernel/apic/msi.o
CC kernel/rcu/rcu_segcblist.o
AR fs/hugetlbfs/built-in.a
CC kernel/irq/affinity.o
CC net/ethtool/linkinfo.o
CC drivers/acpi/acpica/dswscope.o
AR sound/pci/hda/built-in.a
AS arch/x86/kernel/head_32.o
AR sound/pci/riptide/built-in.a
AR lib/crypto/mpi/built-in.a
AR sound/pci/rme9652/built-in.a
CC lib/crypto/blake2s.o
CC net/ethtool/linkmodes.o
AR sound/pci/trident/built-in.a
AR sound/pci/ymfpci/built-in.a
CC net/core/flow_dissector.o
AR sound/pci/vx222/built-in.a
CC arch/x86/events/probe.o
CC security/selinux/ss/policydb.o
AR sound/pci/built-in.a
CC drivers/acpi/dptf/int340x_thermal.o
CC net/ipv4/inetpeer.o
CC kernel/time/clocksource.o
CC sound/core/pcm.o
CC arch/x86/kernel/cpu/umwait.o
CC arch/x86/mm/highmem_32.o
CC kernel/futex/pi.o
CC arch/x86/events/intel/pt.o
MKCAP arch/x86/kernel/cpu/capflags.c
CC fs/proc/stat.o
CC drivers/acpi/acpica/dswstate.o
AR kernel/module/built-in.a
CC fs/proc/uptime.o
CC net/xfrm/xfrm_input.o
CC lib/cpumask.o
CC net/unix/af_unix.o
CC lib/crypto/blake2s-generic.o
AR kernel/rcu/built-in.a
CC io_uring/uring_cmd.o
CC net/ipv6/netfilter/ip6_tables.o
CC arch/x86/events/utils.o
CC kernel/irq/matrix.o
CC [M] net/ipv4/netfilter/iptable_nat.o
CC crypto/echainiv.o
CC arch/x86/kernel/apic/probe_32.o
AR drivers/acpi/dptf/built-in.a
CC kernel/bpf/core.o
CC drivers/pnp/manager.o
CC crypto/ahash.o
AR fs/netfs/built-in.a
CC kernel/events/core.o
CC drivers/acpi/acpica/evevent.o
CC drivers/acpi/x86/apple.o
CC kernel/events/ring_buffer.o
CC kernel/time/jiffies.o
CC net/sched/cls_cgroup.o
CC sound/core/pcm_native.o
CC kernel/fork.o
CC security/selinux/ss/services.o
AR arch/x86/mm/built-in.a
CC net/core/sysctl_net_core.o
CC lib/crypto/sha1.o
CC kernel/futex/requeue.o
CC net/unix/garbage.o
CC drivers/acpi/x86/cmos_rtc.o
CC fs/proc/util.o
AR arch/x86/kernel/apic/built-in.a
CC kernel/time/timer_list.o
CC kernel/futex/waitwake.o
CC drivers/dma/dw/core.o
CC net/unix/sysctl_net_unix.o
CC net/netfilter/nfnetlink_log.o
AR drivers/soc/apple/built-in.a
AR drivers/soc/aspeed/built-in.a
CC lib/crypto/sha256.o
AR drivers/soc/bcm/built-in.a
CC net/ethtool/rss.o
AR drivers/soc/fsl/built-in.a
AR drivers/soc/fujitsu/built-in.a
AR drivers/soc/imx/built-in.a
AR drivers/soc/hisilicon/built-in.a
CC drivers/dma/dw/dw.o
AR drivers/soc/ixp4xx/built-in.a
AR drivers/soc/loongson/built-in.a
CC drivers/pci/search.o
AR drivers/soc/mediatek/built-in.a
AR drivers/soc/microchip/built-in.a
CC drivers/acpi/acpica/evgpe.o
AR drivers/soc/nuvoton/built-in.a
CC arch/x86/events/rapl.o
AR drivers/soc/pxa/built-in.a
AR drivers/soc/amlogic/built-in.a
CC drivers/pnp/support.o
CC mm/shmem.o
AR drivers/soc/qcom/built-in.a
AR drivers/soc/renesas/built-in.a
CC mm/util.o
AR drivers/soc/rockchip/built-in.a
CC kernel/events/callchain.o
AR drivers/soc/sunxi/built-in.a
AR drivers/soc/ti/built-in.a
CC arch/x86/events/intel/uncore.o
AR drivers/soc/versatile/built-in.a
AR drivers/soc/xilinx/built-in.a
AR drivers/soc/built-in.a
CC net/packet/af_packet.o
CC arch/x86/kernel/head32.o
CC fs/proc/version.o
CC drivers/acpi/x86/lpss.o
AR sound/sparc/built-in.a
CC crypto/shash.o
CC io_uring/openclose.o
CC crypto/akcipher.o
AR net/ipv4/netfilter/built-in.a
CC net/ipv4/protocol.o
CC drivers/virtio/virtio.o
CC drivers/acpi/acpica/evgpeblk.o
AR lib/crypto/built-in.a
CC lib/ctype.o
CC kernel/time/timeconv.o
AR kernel/irq/built-in.a
CC lib/dec_and_lock.o
CC block/blk-mq-tag.o
AR kernel/futex/built-in.a
CC drivers/pnp/interface.o
AR fs/jbd2/built-in.a
CC sound/core/pcm_lib.o
CC arch/x86/events/msr.o
CC drivers/tty/vt/vt_ioctl.o
CC lib/decompress.o
CC mm/mmzone.o
CC kernel/events/hw_breakpoint.o
CC lib/decompress_bunzip2.o
CC net/xfrm/xfrm_output.o
CC net/sched/ematch.o
CC drivers/tty/vt/vc_screen.o
CC drivers/pci/rom.o
CC drivers/tty/hvc/hvc_console.o
CC fs/proc/softirqs.o
CC drivers/tty/serial/8250/8250_core.o
CC kernel/time/timecounter.o
CC fs/ext4/fsmap.o
AR drivers/tty/ipwireless/built-in.a
CC net/xfrm/xfrm_sysctl.o
CC drivers/acpi/acpica/evgpeinit.o
CC drivers/tty/serial/8250/8250_platform.o
CC drivers/dma/dw/idma32.o
CC net/ethtool/linkstate.o
CC kernel/time/alarmtimer.o
CC net/ipv6/netfilter/ip6table_filter.o
CC drivers/tty/serial/8250/8250_pnp.o
CC net/core/dev.o
CC drivers/dma/hsu/hsu.o
CC drivers/tty/serial/8250/8250_rsa.o
CC drivers/acpi/x86/s2idle.o
CC drivers/tty/serial/8250/8250_port.o
CC drivers/pnp/quirks.o
CC drivers/virtio/virtio_ring.o
CC kernel/trace/trace.o
CC arch/x86/kernel/cpu/powerflags.o
CC drivers/acpi/acpica/evgpeutil.o
CC io_uring/sqpoll.o
CC net/netfilter/nf_conntrack_core.o
CC net/ipv4/ip_input.o
CC crypto/sig.o
CC block/blk-stat.o
CC drivers/pnp/system.o
CC drivers/tty/serial/serial_core.o
CC fs/proc/namespaces.o
CC fs/proc/self.o
CC drivers/pci/setup-res.o
CC drivers/tty/serial/8250/8250_dma.o
CC lib/decompress_inflate.o
CC drivers/dma/dw/acpi.o
CC drivers/tty/serial/8250/8250_dwlib.o
AR net/unix/built-in.a
CC drivers/tty/serial/serial_base_bus.o
CC drivers/acpi/acpica/evglock.o
CC drivers/tty/vt/selection.o
AR drivers/tty/hvc/built-in.a
CC kernel/cgroup/rstat.o
CC drivers/acpi/x86/utils.o
CC block/blk-mq-sysfs.o
CC arch/x86/events/intel/uncore_nhmex.o
CC fs/ext4/fsync.o
CC arch/x86/events/intel/uncore_snb.o
AR net/sched/built-in.a
CC sound/core/pcm_misc.o
CC drivers/acpi/x86/blacklist.o
AR drivers/dma/hsu/built-in.a
CC net/ipv6/netfilter/ip6table_mangle.o
CC drivers/virtio/virtio_anchor.o
CC security/selinux/ss/conditional.o
CC net/ethtool/debug.o
CC security/selinux/ss/mls.o
CC drivers/tty/serial/serial_ctrl.o
AR drivers/pnp/built-in.a
CC arch/x86/events/intel/uncore_snbep.o
CC drivers/tty/serial/8250/8250_pcilib.o
CC drivers/acpi/tables.o
CC kernel/time/posix-timers.o
AR kernel/bpf/built-in.a
CC drivers/acpi/acpica/evhandler.o
CC lib/decompress_unlz4.o
AR sound/spi/built-in.a
CC net/xfrm/xfrm_replay.o
CC lib/decompress_unlzma.o
CC drivers/tty/vt/keyboard.o
CC crypto/kpp.o
CC fs/proc/thread_self.o
CC kernel/trace/trace_output.o
CC kernel/cgroup/namespace.o
CC fs/ext4/hash.o
CC drivers/pci/irq.o
AR drivers/dma/dw/built-in.a
AR drivers/dma/idxd/built-in.a
AR drivers/dma/amd/built-in.a
CC drivers/virtio/virtio_pci_modern_dev.o
CC mm/vmstat.o
AR drivers/dma/mediatek/built-in.a
AR drivers/dma/qcom/built-in.a
CC fs/ext4/ialloc.o
AR drivers/dma/stm32/built-in.a
AR drivers/dma/ti/built-in.a
AR drivers/dma/xilinx/built-in.a
CC drivers/dma/dmaengine.o
CC drivers/char/hw_random/core.o
AR drivers/acpi/x86/built-in.a
CC drivers/char/agp/backend.o
CC drivers/char/mem.o
CC lib/decompress_unlzo.o
CC net/xfrm/xfrm_device.o
CC drivers/acpi/acpica/evmisc.o
CC net/ethtool/wol.o
CC block/blk-mq-cpumap.o
CC sound/core/pcm_memory.o
CC block/blk-mq-sched.o
ASN.1 crypto/rsapubkey.asn1.[ch]
CC drivers/acpi/acpica/evregion.o
CC drivers/tty/tty_io.o
CC kernel/exec_domain.o
CC fs/proc/proc_sysctl.o
CC net/ipv4/ip_fragment.o
CC drivers/pci/vpd.o
CC lib/decompress_unxz.o
CC io_uring/xattr.o
CC net/netfilter/nf_conntrack_standalone.o
AR drivers/iommu/amd/built-in.a
AR drivers/iommu/intel/built-in.a
CC arch/x86/kernel/ebda.o
AR sound/parisc/built-in.a
CC io_uring/nop.o
CC fs/fat/cache.o
AR drivers/iommu/arm/arm-smmu/built-in.a
CC block/ioctl.o
AR drivers/iommu/arm/arm-smmu-v3/built-in.a
CC kernel/cgroup/cgroup-v1.o
AR drivers/iommu/arm/built-in.a
ASN.1 crypto/rsaprivkey.asn1.[ch]
AR drivers/iommu/iommufd/built-in.a
CC crypto/rsa.o
AR drivers/iommu/riscv/built-in.a
CC drivers/iommu/iommu.o
CC net/ethtool/features.o
CC fs/fat/dir.o
CC drivers/acpi/acpica/evrgnini.o
CC net/ipv6/netfilter/nf_defrag_ipv6_hooks.o
CC drivers/acpi/acpica/evsci.o
CC drivers/virtio/virtio_pci_legacy_dev.o
CC drivers/acpi/osi.o
CC drivers/tty/serial/8250/8250_early.o
CC drivers/char/hw_random/intel-rng.o
CC net/ethtool/privflags.o
CC drivers/char/agp/generic.o
CC fs/isofs/namei.o
CC sound/core/memalloc.o
CC fs/nfs/client.o
CC security/selinux/ss/context.o
CC kernel/time/posix-cpu-timers.o
CC lib/decompress_unzstd.o
AR sound/pcmcia/vx/built-in.a
AR net/packet/built-in.a
AR sound/pcmcia/pdaudiocf/built-in.a
AR sound/mips/built-in.a
AR sound/pcmcia/built-in.a
CC net/ipv6/af_inet6.o
CC net/ipv4/ip_forward.o
CC fs/exportfs/expfs.o
CC fs/isofs/inode.o
CC drivers/tty/vt/vt.o
CC net/ipv4/ip_options.o
CC crypto/rsa_helper.o
CC drivers/acpi/acpica/evxface.o
CC net/xfrm/xfrm_nat_keepalive.o
CC fs/isofs/dir.o
CC io_uring/fs.o
CC drivers/dma/virt-dma.o
CC drivers/tty/serial/8250/8250_exar.o
CC net/ipv6/netfilter/nf_conntrack_reasm.o
CC drivers/pci/setup-bus.o
CC arch/x86/kernel/platform-quirks.o
COPY drivers/tty/vt/defkeymap.c
CC mm/backing-dev.o
CC drivers/dma/acpi-dma.o
CC kernel/trace/trace_seq.o
CC drivers/virtio/virtio_pci_modern.o
CC kernel/trace/trace_stat.o
CC drivers/char/random.o
AR drivers/gpu/host1x/built-in.a
CC drivers/char/hw_random/amd-rng.o
CC crypto/rsa-pkcs1pad.o
AR drivers/gpu/vga/built-in.a
CC lib/dump_stack.o
CC block/genhd.o
AR net/dsa/built-in.a
AR drivers/gpu/drm/tests/built-in.a
CC io_uring/splice.o
AR drivers/gpu/drm/arm/built-in.a
AR drivers/gpu/drm/clients/built-in.a
CC arch/x86/kernel/cpu/topology.o
CC drivers/gpu/drm/display/drm_display_helper_mod.o
CC drivers/acpi/acpica/evxfevnt.o
CC net/netfilter/nf_conntrack_expect.o
CC net/xfrm/xfrm_algo.o
AR fs/exportfs/built-in.a
CC net/xfrm/xfrm_user.o
CC net/sunrpc/auth_gss/auth_gss.o
AR sound/soc/built-in.a
CC net/ethtool/rings.o
CC drivers/connector/cn_queue.o
CC arch/x86/events/intel/uncore_discovery.o
CC drivers/char/agp/isoch.o
CC fs/proc/proc_net.o
CC crypto/rsassa-pkcs1.o
CC kernel/cgroup/freezer.o
CC sound/core/pcm_timer.o
CC drivers/virtio/virtio_pci_common.o
CC security/selinux/netlabel.o
CC drivers/acpi/osl.o
CC drivers/char/misc.o
CC kernel/panic.o
CC drivers/gpu/drm/display/drm_dp_dual_mode_helper.o
CC fs/ext4/indirect.o
CC drivers/acpi/acpica/evxfgpe.o
CC net/core/dev_addr_lists.o
AR drivers/dma/built-in.a
CC drivers/char/agp/amd64-agp.o
CC drivers/char/hw_random/geode-rng.o
CC kernel/time/posix-clock.o
CC fs/fat/fatent.o
CC lib/earlycpio.o
CC arch/x86/kernel/cpu/proc.o
CC drivers/gpu/drm/ttm/ttm_tt.o
AR net/wireless/tests/built-in.a
CC net/wireless/core.o
CC fs/isofs/util.o
CC lib/extable.o
CC drivers/pci/vc.o
CC drivers/tty/serial/8250/8250_lpss.o
CC drivers/gpu/drm/display/drm_dp_helper.o
CC drivers/gpu/drm/ttm/ttm_bo.o
CC io_uring/sync.o
CC mm/mm_init.o
CC net/ipv4/ip_output.o
CC drivers/acpi/acpica/evxfregn.o
CC drivers/iommu/iommu-traces.o
CC crypto/acompress.o
CC sound/core/seq_device.o
CC fs/nfs/dir.o
CC kernel/trace/trace_printk.o
CC net/ipv4/ip_sockglue.o
CC net/ipv6/netfilter/nf_reject_ipv6.o
CC net/ipv4/inet_hashtables.o
CC fs/proc/kcore.o
CC lib/flex_proportions.o
CC drivers/char/hw_random/via-rng.o
CC arch/x86/events/intel/cstate.o
CC drivers/connector/connector.o
CC block/ioprio.o
CC drivers/pci/mmap.o
CC net/sunrpc/clnt.o
CC fs/isofs/rock.o
CC net/ethtool/channels.o
CC fs/lockd/clntlock.o
CC arch/x86/kernel/cpu/feat_ctl.o
CC kernel/cgroup/legacy_freezer.o
CC drivers/virtio/virtio_pci_legacy.o
CC net/netfilter/nf_conntrack_helper.o
CC drivers/acpi/acpica/exconcat.o
CC kernel/cpu.o
CC kernel/time/itimer.o
CC drivers/char/agp/intel-agp.o
AR sound/atmel/built-in.a
CC net/wireless/sysfs.o
CC fs/lockd/clntproc.o
CC drivers/tty/serial/8250/8250_mid.o
CC drivers/connector/cn_proc.o
CC block/badblocks.o
CC lib/idr.o
CC lib/iomem_copy.o
AR drivers/char/hw_random/built-in.a
CC net/wireless/radiotap.o
AR sound/core/built-in.a
CC sound/hda/hda_bus_type.o
AR security/selinux/built-in.a
CC fs/fat/file.o
AR security/built-in.a
CC io_uring/msg_ring.o
CC net/ipv4/inet_timewait_sock.o
CC kernel/cgroup/pids.o
CC arch/x86/kernel/cpu/intel.o
CC drivers/acpi/acpica/exconfig.o
CC net/ipv6/anycast.o
CC drivers/gpu/drm/ttm/ttm_bo_util.o
CC crypto/scompress.o
CC drivers/pci/devres.o
CC kernel/trace/pid_list.o
CC drivers/tty/vt/consolemap.o
CC drivers/iommu/iommu-sysfs.o
CC kernel/trace/trace_sched_switch.o
CC drivers/virtio/virtio_pci_admin_legacy_io.o
CC fs/proc/vmcore.o
AR arch/x86/events/intel/built-in.a
AR arch/x86/events/built-in.a
CC drivers/gpu/drm/ttm/ttm_bo_vm.o
CC drivers/iommu/dma-iommu.o
CC lib/irq_regs.o
CC kernel/events/uprobes.o
CC drivers/acpi/acpica/exconvrt.o
CC drivers/char/agp/intel-gtt.o
CC fs/isofs/export.o
CC mm/percpu.o
CC fs/ext4/inline.o
CC drivers/char/virtio_console.o
CC drivers/tty/serial/8250/8250_pci.o
CC net/sunrpc/auth_gss/gss_mech_switch.o
CC lib/is_single_threaded.o
CC kernel/time/clockevents.o
CC sound/hda/hdac_bus.o
CC net/ethtool/coalesce.o
CC kernel/cgroup/rdma.o
CC arch/x86/kernel/cpu/tsx.o
CC net/ipv6/netfilter/ip6t_ipv6header.o
CC net/netfilter/nf_conntrack_proto.o
CC block/blk-rq-qos.o
CC io_uring/advise.o
CC fs/nfs/file.o
CC drivers/acpi/acpica/excreate.o
CC fs/nfs/getroot.o
CC fs/nfs/inode.o
AR drivers/connector/built-in.a
CC net/sunrpc/xprt.o
CC fs/fat/inode.o
CC drivers/virtio/virtio_input.o
CC lib/klist.o
CC drivers/gpu/drm/display/drm_dp_mst_topology.o
CC net/ipv6/ip6_output.o
AR net/xfrm/built-in.a
CC arch/x86/kernel/process_32.o
CC crypto/algboss.o
CC drivers/pci/proc.o
CC fs/isofs/joliet.o
CC arch/x86/kernel/cpu/intel_epb.o
CC kernel/exit.o
HOSTCC drivers/tty/vt/conmakehash
CC drivers/gpu/drm/ttm/ttm_module.o
CC fs/lockd/clntxdr.o
CC fs/nfs/super.o
CC net/ipv6/netfilter/ip6t_REJECT.o
CC kernel/time/tick-common.o
CC drivers/acpi/acpica/exdebug.o
AR net/mac80211/tests/built-in.a
CC net/mac80211/main.o
CC net/netlabel/netlabel_user.o
CC lib/kobject.o
CC kernel/cgroup/cpuset.o
CC fs/proc/kmsg.o
CC drivers/tty/vt/defkeymap.o
CC sound/hda/hdac_device.o
CC kernel/trace/trace_nop.o
CC net/ipv4/inet_connection_sock.o
AR drivers/char/agp/built-in.a
CC net/rfkill/core.o
CC block/disk-events.o
CONMK drivers/tty/vt/consolemap_deftbl.c
CC drivers/tty/vt/consolemap_deftbl.o
CC arch/x86/kernel/cpu/amd.o
AR drivers/tty/vt/built-in.a
CC drivers/tty/serial/8250/8250_pericom.o
CC net/sunrpc/auth_gss/svcauth_gss.o
CC io_uring/epoll.o
CC drivers/acpi/acpica/exdump.o
CC drivers/gpu/drm/ttm/ttm_execbuf_util.o
CC io_uring/statx.o
CC net/wireless/util.o
CC fs/isofs/compress.o
CC drivers/virtio/virtio_dma_buf.o
CC net/ethtool/pause.o
CC drivers/iommu/iova.o
CC fs/proc/page.o
CC net/mac80211/status.o
CC kernel/time/tick-broadcast.o
CC drivers/char/hpet.o
CC fs/nfs/io.o
CC lib/kobject_uevent.o
CC drivers/gpu/drm/i915/i915_config.o
CC crypto/testmgr.o
CC drivers/pci/pci-sysfs.o
CC drivers/acpi/acpica/exfield.o
CC fs/ext4/inode.o
CC fs/lockd/host.o
CC kernel/trace/blktrace.o
CC net/netfilter/nf_conntrack_proto_generic.o
AR kernel/events/built-in.a
CC net/sunrpc/socklib.o
CC drivers/gpu/drm/i915/i915_driver.o
CC drivers/acpi/utils.o
CC drivers/tty/serial/serial_port.o
CC block/blk-ia-ranges.o
CC net/rfkill/input.o
CC net/netlabel/netlabel_kapi.o
AR drivers/tty/serial/8250/built-in.a
CC crypto/cmac.o
CC drivers/gpu/drm/ttm/ttm_range_manager.o
AR net/ipv6/netfilter/built-in.a
CC arch/x86/kernel/cpu/hygon.o
CC drivers/pci/slot.o
CC fs/fat/misc.o
CC sound/hda/hdac_sysfs.o
CC drivers/acpi/acpica/exfldio.o
AR drivers/virtio/built-in.a
CC drivers/acpi/acpica/exmisc.o
CC drivers/acpi/acpica/exmutex.o
CC net/sunrpc/xprtsock.o
CC io_uring/timeout.o
CC drivers/tty/serial/earlycon.o
CC net/core/dst.o
CC mm/slab_common.o
AR fs/isofs/built-in.a
CC kernel/time/tick-broadcast-hrtimer.o
AR fs/proc/built-in.a
CC lib/logic_pio.o
CC net/ipv4/tcp.o
CC drivers/char/nvram.o
CC net/mac80211/driver-ops.o
AR drivers/iommu/built-in.a
CC arch/x86/kernel/signal.o
CC net/ipv6/ip6_input.o
CC drivers/pci/pci-acpi.o
CC arch/x86/kernel/cpu/centaur.o
CC net/ethtool/eee.o
CC fs/ext4/ioctl.o
CC crypto/hmac.o
AR drivers/gpu/drm/renesas/rcar-du/built-in.a
AR net/rfkill/built-in.a
AR drivers/gpu/drm/renesas/rz-du/built-in.a
CC fs/lockd/svc.o
AR drivers/gpu/drm/renesas/built-in.a
CC net/mac80211/sta_info.o
CC drivers/acpi/acpica/exnames.o
CC fs/nls/nls_base.o
CC net/netfilter/nf_conntrack_proto_tcp.o
In file included from /workspace/kernel/drivers/gpu/drm/i915/display/intel_bw.h:12,
from /workspace/kernel/drivers/gpu/drm/i915/i915_driver.c:50:
/workspace/kernel/drivers/gpu/drm/i915/display/intel_display_power.h: In function ‘intel_display_power_put’:
/workspace/kernel/drivers/gpu/drm/i915/display/intel_display_power.h:228:43: error: passing argument 1 of ‘intel_display_power_put_unchecked’ from incompatible pointer type [-Werror=incompatible-pointer-types]
228 | intel_display_power_put_unchecked(display, domain);
| ^~~~~~~
| |
| struct intel_display *
/workspace/kernel/drivers/gpu/drm/i915/display/intel_display_power.h:220:65: note: expected ‘struct drm_i915_private *’ but argument is of type ‘struct intel_display *’
220 | void intel_display_power_put_unchecked(struct drm_i915_private *dev_priv,
| ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~
CC mm/compaction.o
CC drivers/gpu/drm/i915/i915_drm_client.o
CC kernel/time/tick-oneshot.o
CC block/early-lookup.o
CC drivers/gpu/drm/ttm/ttm_resource.o
CC net/ipv4/tcp_input.o
CC crypto/crypto_null.o
AR drivers/tty/serial/built-in.a
CC drivers/tty/n_tty.o
CC sound/hda/hdac_regmap.o
CC fs/fat/nfs.o
CC lib/maple_tree.o
CC drivers/gpu/drm/display/drm_dsc_helper.o
CC arch/x86/kernel/cpu/transmeta.o
CC mm/show_mem.o
CC drivers/gpu/drm/display/drm_hdcp_helper.o
CC kernel/cgroup/misc.o
CC drivers/acpi/acpica/exoparg1.o
CC kernel/cgroup/debug.o
CC kernel/time/tick-sched.o
CC fs/nls/nls_cp437.o
CC kernel/time/timer_migration.o
AR drivers/char/built-in.a
CC drivers/gpu/drm/display/drm_hdmi_helper.o
CC net/wireless/reg.o
CC net/ipv4/tcp_output.o
CC fs/nfs/direct.o
CC io_uring/fdinfo.o
CC mm/interval_tree.o
CC net/sunrpc/auth_gss/gss_rpc_upcall.o
CC net/netlabel/netlabel_domainhash.o
CC net/mac80211/wep.o
cc1: all warnings being treated as errors
CC kernel/trace/trace_events.o
CC crypto/md5.o
make[6]: *** [/workspace/kernel/scripts/Makefile.build:207: drivers/gpu/drm/i915/i915_driver.o] Error 1
make[6]: *** Waiting for unfinished jobs....
CC crypto/sha256_generic.o
In file included from /workspace/kernel/drivers/gpu/drm/i915/display/intel_display_core.h:23,
from /workspace/kernel/drivers/gpu/drm/i915/i915_drv.h:40,
from /workspace/kernel/drivers/gpu/drm/i915/gt/intel_context.h:14,
from /workspace/kernel/drivers/gpu/drm/i915/gem/i915_gem_context.h:12,
from /workspace/kernel/drivers/gpu/drm/i915/i915_drm_client.c:14:
/workspace/kernel/drivers/gpu/drm/i915/display/intel_display_power.h: In function ‘intel_display_power_put’:
/workspace/kernel/drivers/gpu/drm/i915/display/intel_display_power.h:228:43: error: passing argument 1 of ‘intel_display_power_put_unchecked’ from incompatible pointer type [-Werror=incompatible-pointer-types]
228 | intel_display_power_put_unchecked(display, domain);
| ^~~~~~~
| |
| struct intel_display *
/workspace/kernel/drivers/gpu/drm/i915/display/intel_display_power.h:220:65: note: expected ‘struct drm_i915_private *’ but argument is of type ‘struct intel_display *’
220 | void intel_display_power_put_unchecked(struct drm_i915_private *dev_priv,
| ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~
CC net/ethtool/tsinfo.o
CC fs/nls/nls_ascii.o
CC block/bounce.o
CC net/core/netevent.o
CC drivers/acpi/acpica/exoparg2.o
CC arch/x86/kernel/cpu/zhaoxin.o
CC fs/ext4/mballoc.o
CC drivers/pci/iomap.o
CC fs/lockd/svclock.o
CC drivers/gpu/drm/ttm/ttm_pool.o
CC sound/hda/hdac_controller.o
CC fs/fat/namei_vfat.o
CC drivers/acpi/reboot.o
CC kernel/time/vsyscall.o
AR sound/x86/built-in.a
CC drivers/acpi/acpica/exoparg3.o
CC kernel/softirq.o
cc1: all warnings being treated as errors
AR drivers/gpu/drm/omapdrm/built-in.a
CC mm/list_lru.o
make[6]: *** [/workspace/kernel/scripts/Makefile.build:207: drivers/gpu/drm/i915/i915_drm_client.o] Error 1
make[5]: *** [/workspace/kernel/scripts/Makefile.build:465: drivers/gpu/drm/i915] Error 2
CC fs/nls/nls_iso8859-1.o
make[5]: *** Waiting for unfinished jobs....
CC fs/ext4/migrate.o
CC drivers/gpu/drm/display/drm_scdc_helper.o
CC io_uring/cancel.o
AR kernel/cgroup/built-in.a
CC fs/nfs/pagelist.o
CC arch/x86/kernel/cpu/vortex.o
CC arch/x86/kernel/cpu/perfctr-watchdog.o
CC drivers/pci/quirks.o
CC net/ipv6/addrconf.o
CC crypto/sha512_generic.o
CC net/ethtool/cabletest.o
CC arch/x86/kernel/signal_32.o
CC net/sunrpc/auth_gss/gss_rpc_xdr.o
CC drivers/acpi/acpica/exoparg6.o
CC fs/nls/nls_utf8.o
CC arch/x86/kernel/cpu/vmware.o
AR fs/unicode/built-in.a
CC drivers/acpi/nvs.o
CC lib/memcat_p.o
CC net/ethtool/tunnels.o
CC drivers/tty/tty_ioctl.o
CC net/core/neighbour.o
CC kernel/trace/trace_export.o
CC fs/lockd/svcshare.o
CC net/netfilter/nf_conntrack_proto_udp.o
CC fs/fat/namei_msdos.o
CC sound/hda/hdac_stream.o
CC net/ipv6/addrlabel.o
AR fs/nls/built-in.a
CC drivers/acpi/acpica/exprep.o
CC block/bsg.o
CC net/wireless/scan.o
CC kernel/time/timekeeping_debug.o
CC net/netlabel/netlabel_addrlist.o
CC net/9p/mod.o
CC drivers/gpu/drm/ttm/ttm_device.o
CC net/wireless/nl80211.o
CC kernel/time/namespace.o
AR drivers/gpu/drm/display/built-in.a
CC net/mac80211/aead_api.o
CC io_uring/waitid.o
CC fs/nfs/read.o
CC kernel/resource.o
CC crypto/sha3_generic.o
CC net/sunrpc/auth_gss/trace.o
CC fs/autofs/init.o
CC arch/x86/kernel/cpu/hypervisor.o
CC drivers/acpi/acpica/exregion.o
CC net/sunrpc/sched.o
CC net/dns_resolver/dns_key.o
CC net/ipv6/route.o
CC net/handshake/alert.o
CC arch/x86/kernel/cpu/mshyperv.o
CC block/blk-cgroup.o
CC drivers/pci/pci-label.o
CC mm/workingset.o
CC net/9p/client.o
CC net/netlabel/netlabel_mgmt.o
CC drivers/tty/tty_ldisc.o
CC drivers/base/power/sysfs.o
CC drivers/base/firmware_loader/builtin/main.o
CC drivers/acpi/wakeup.o
CC net/ipv6/ip6_fib.o
CC kernel/trace/trace_event_perf.o
CC net/ipv4/tcp_timer.o
CC crypto/ecb.o
CC drivers/acpi/acpica/exresnte.o
CC drivers/gpu/drm/ttm/ttm_sys_manager.o
AR fs/fat/built-in.a
CC crypto/cbc.o
AR kernel/time/built-in.a
CC net/netlabel/netlabel_unlabeled.o
CC fs/lockd/svcproc.o
CC sound/hda/array.o
CC fs/autofs/inode.o
CC net/ethtool/fec.o
CC net/dns_resolver/dns_query.o
AR drivers/base/firmware_loader/builtin/built-in.a
CC net/netfilter/nf_conntrack_proto_icmp.o
CC drivers/base/firmware_loader/main.o
CC io_uring/register.o
CC net/ipv6/ipv6_sockglue.o
CC lib/nmi_backtrace.o
CC drivers/acpi/acpica/exresolv.o
AR sound/xen/built-in.a
AR sound/virtio/built-in.a
CC crypto/ctr.o
CC sound/sound_core.o
CC net/core/rtnetlink.o
CC drivers/base/power/generic_ops.o
CC fs/nfs/symlink.o
CC kernel/sysctl.o
CC drivers/gpu/drm/ttm/ttm_agp_backend.o
CC net/sunrpc/auth_gss/gss_krb5_mech.o
CC drivers/acpi/sleep.o
CC mm/debug.o
CC arch/x86/kernel/cpu/debugfs.o
CC arch/x86/kernel/cpu/bus_lock.o
CC drivers/tty/tty_buffer.o
CC fs/lockd/svcsubs.o
CC drivers/pci/vgaarb.o
CC drivers/acpi/acpica/exresop.o
CC sound/hda/hdmi_chmap.o
CC net/mac80211/wpa.o
CC fs/autofs/root.o
CC kernel/trace/trace_events_filter.o
CC net/handshake/genl.o
CC drivers/base/power/common.o
CC crypto/gcm.o
AR net/dns_resolver/built-in.a
CC fs/autofs/symlink.o
CC net/sunrpc/auth.o
CC net/9p/error.o
CC block/blk-ioprio.o
CC io_uring/truncate.o
AR drivers/gpu/drm/ttm/built-in.a
make[4]: *** [/workspace/kernel/scripts/Makefile.build:465: drivers/gpu/drm] Error 2
make[3]: *** [/workspace/kernel/scripts/Makefile.build:465: drivers/gpu] Error 2
make[3]: *** Waiting for unfinished jobs....
CC fs/lockd/mon.o
CC net/ipv6/ndisc.o
CC net/ethtool/eeprom.o
AR drivers/base/firmware_loader/built-in.a
CC net/sunrpc/auth_gss/gss_krb5_seal.o
CC drivers/acpi/acpica/exserial.o
CC net/sunrpc/auth_null.o
CC sound/hda/trace.o
CC mm/gup.o
CC mm/mmap_lock.o
CC drivers/tty/tty_port.o
CC fs/autofs/waitq.o
CC kernel/capability.o
CC drivers/base/power/qos.o
CC net/netlabel/netlabel_cipso_v4.o
CC net/netfilter/nf_conntrack_extend.o
CC fs/nfs/unlink.o
CC net/9p/protocol.o
CC drivers/base/power/runtime.o
CC arch/x86/kernel/cpu/capflags.o
AR arch/x86/kernel/cpu/built-in.a
CC net/handshake/netlink.o
CC drivers/acpi/acpica/exstore.o
CC fs/autofs/expire.o
CC arch/x86/kernel/traps.o
CC lib/objpool.o
CC net/ethtool/stats.o
CC io_uring/memmap.o
CC drivers/tty/tty_mutex.o
CC net/ipv6/udp.o
CC block/blk-iolatency.o
AR drivers/pci/built-in.a
CC net/9p/trans_common.o
CC net/wireless/mlme.o
CC net/ipv4/tcp_ipv4.o
CC net/mac80211/scan.o
CC net/devres.o
CC crypto/ccm.o
CC mm/highmem.o
CC net/sunrpc/auth_tls.o
CC drivers/acpi/acpica/exstoren.o
CC kernel/ptrace.o
CC net/wireless/ibss.o
CC sound/hda/hdac_component.o
CC net/wireless/sme.o
CC net/sunrpc/auth_gss/gss_krb5_unseal.o
CC net/wireless/chan.o
CC net/netfilter/nf_conntrack_acct.o
CC net/sunrpc/auth_gss/gss_krb5_wrap.o
CC net/core/utils.o
CC fs/lockd/trace.o
CC drivers/base/power/wakeirq.o
CC fs/lockd/xdr.o
CC drivers/tty/tty_ldsem.o
CC kernel/trace/trace_events_trigger.o
CC mm/memory.o
CC drivers/acpi/acpica/exstorob.o
CC net/9p/trans_fd.o
CC net/socket.o
CC fs/autofs/dev-ioctl.o
CC io_uring/alloc_cache.o
CC fs/ext4/mmp.o
CC crypto/aes_generic.o
CC drivers/base/power/main.o
CC kernel/user.o
CC arch/x86/kernel/idt.o
CC io_uring/io-wq.o
CC net/handshake/request.o
CC net/netlabel/netlabel_calipso.o
CC mm/mincore.o
CC drivers/acpi/acpica/exsystem.o
CC drivers/acpi/acpica/extrace.o
CC net/9p/trans_virtio.o
CC net/core/link_watch.o
CC net/ethtool/phc_vclocks.o
CC sound/hda/hdac_i915.o
CC fs/nfs/write.o
CC drivers/tty/tty_baudrate.o
CC kernel/signal.o
CC block/blk-iocost.o
CC block/mq-deadline.o
CC arch/x86/kernel/irq.o
CC kernel/trace/trace_eprobe.o
CC lib/plist.o
CC net/ipv6/udplite.o
CC lib/radix-tree.o
CC drivers/acpi/acpica/exutils.o
CC net/mac80211/offchannel.o
CC fs/lockd/clnt4xdr.o
CC net/netfilter/nf_conntrack_seqadj.o
AR fs/autofs/built-in.a
CC fs/ext4/move_extent.o
CC drivers/base/regmap/regmap.o
CC arch/x86/kernel/irq_32.o
CC net/sunrpc/auth_gss/gss_krb5_crypto.o
CC net/sysctl_net.o
CC drivers/acpi/acpica/hwacpi.o
CC drivers/base/regmap/regcache.o
CC crypto/authenc.o
CC net/handshake/tlshd.o
CC net/ipv4/tcp_minisocks.o
CC net/ipv6/raw.o
CC drivers/tty/tty_jobctrl.o
CC drivers/acpi/device_sysfs.o
CC sound/hda/intel-dsp-config.o
CC drivers/acpi/device_pm.o
CC net/ethtool/mm.o
CC net/wireless/ethtool.o
CC drivers/acpi/acpica/hwesleep.o
AR net/netlabel/built-in.a
CC block/kyber-iosched.o
CC io_uring/futex.o
CC sound/last.o
CC net/sunrpc/auth_gss/gss_krb5_keys.o
CC fs/ext4/namei.o
CC net/netfilter/nf_conntrack_proto_icmpv6.o
CC kernel/sys.o
CC drivers/acpi/acpica/hwgpe.o
CC arch/x86/kernel/dumpstack_32.o
AR net/9p/built-in.a
CC net/wireless/mesh.o
CC lib/ratelimit.o
CC drivers/base/power/wakeup.o
CC sound/hda/intel-nhlt.o
CC drivers/tty/n_null.o
CC crypto/authencesn.o
CC fs/9p/vfs_super.o
CC net/ipv4/tcp_cong.o
CC net/core/filter.o
CC net/mac80211/ht.o
CC lib/rbtree.o
CC net/handshake/trace.o
CC net/sunrpc/auth_unix.o
CC lib/seq_buf.o
CC fs/lockd/xdr4.o
CC kernel/trace/trace_kprobe.o
AR drivers/base/test/built-in.a
CC drivers/base/component.o
AR fs/hostfs/built-in.a
CC arch/x86/kernel/time.o
CC net/wireless/ap.o
CC fs/ext4/page-io.o
CC drivers/acpi/acpica/hwregs.o
CC block/blk-mq-debugfs.o
CC kernel/umh.o
CC net/ethtool/module.o
CC drivers/tty/pty.o
CC fs/lockd/svc4proc.o
CC arch/x86/kernel/ioport.o
CC net/ipv6/icmp.o
CC fs/ext4/readpage.o
CC drivers/base/power/wakeup_stats.o
CC sound/hda/intel-sdw-acpi.o
CC net/mac80211/agg-tx.o
CC io_uring/napi.o
CC fs/nfs/namespace.o
CC fs/debugfs/inode.o
CC fs/lockd/procfs.o
CC drivers/base/core.o
CC lib/siphash.o
CC fs/9p/vfs_inode.o
CC drivers/acpi/acpica/hwsleep.o
CC drivers/base/regmap/regcache-rbtree.o
AR net/sunrpc/auth_gss/built-in.a
CC kernel/trace/error_report-traces.o
CC fs/ext4/resize.o
CC drivers/acpi/proc.o
CC block/blk-pm.o
CC crypto/lzo.o
AR sound/hda/built-in.a
AR sound/built-in.a
CC drivers/tty/tty_audit.o
CC net/netfilter/nf_conntrack_netlink.o
CC net/mac80211/agg-rx.o
CC net/ipv6/mcast.o
CC drivers/base/power/trace.o
CC drivers/acpi/acpica/hwvalid.o
CC lib/string.o
CC fs/tracefs/inode.o
CC arch/x86/kernel/dumpstack.o
CC net/mac80211/vht.o
CC block/holder.o
CC net/ethtool/cmis_fw_update.o
CC drivers/base/regmap/regcache-flat.o
CC fs/nfs/mount_clnt.o
CC drivers/base/bus.o
CC net/sunrpc/svc.o
CC fs/debugfs/file.o
CC fs/nfs/nfstrace.o
CC [M] fs/efivarfs/inode.o
CC fs/open.o
CC lib/timerqueue.o
AR net/handshake/built-in.a
CC crypto/lzo-rle.o
CC net/ipv4/tcp_metrics.o
CC [M] fs/efivarfs/file.o
CC net/core/sock_diag.o
CC drivers/acpi/acpica/hwxface.o
CC lib/union_find.o
CC net/ethtool/cmis_cdb.o
CC net/wireless/trace.o
AR fs/lockd/built-in.a
CC net/mac80211/he.o
CC drivers/acpi/acpica/hwxfsleep.o
CC lib/vsprintf.o
CC mm/mlock.o
CC fs/ext4/super.o
CC net/ethtool/pse-pd.o
CC drivers/tty/sysrq.o
CC [M] fs/efivarfs/super.o
CC arch/x86/kernel/nmi.o
CC fs/9p/vfs_inode_dotl.o
CC drivers/base/regmap/regcache-maple.o
CC kernel/trace/power-traces.o
AR block/built-in.a
CC kernel/workqueue.o
CC fs/ext4/symlink.o
AR drivers/base/power/built-in.a
AR io_uring/built-in.a
CC fs/tracefs/event_inode.o
CC fs/read_write.o
CC net/ethtool/plca.o
CC net/ipv6/reassembly.o
CC drivers/base/dd.o
CC drivers/base/regmap/regmap-debugfs.o
CC drivers/acpi/acpica/hwpci.o
CC net/wireless/ocb.o
CC net/ipv4/tcp_fastopen.o
CC kernel/trace/rpm-traces.o
CC drivers/acpi/bus.o
CC net/sunrpc/svcsock.o
CC crypto/rng.o
CC lib/win_minmax.o
CC fs/nfs/export.o
CC kernel/pid.o
CC fs/9p/vfs_addr.o
CC drivers/acpi/acpica/nsaccess.o
AR fs/debugfs/built-in.a
CC mm/mmap.o
CC fs/ext4/sysfs.o
CC net/ipv4/tcp_rate.o
CC [M] fs/efivarfs/vars.o
CC arch/x86/kernel/ldt.o
CC kernel/trace/trace_dynevent.o
CC net/ipv4/tcp_recovery.o
AR drivers/tty/built-in.a
CC net/netfilter/nf_conntrack_ftp.o
CC net/sunrpc/svcauth.o
CC net/wireless/pmsr.o
CC mm/mmu_gather.o
CC net/netfilter/nf_conntrack_irc.o
CC kernel/trace/trace_probe.o
AR drivers/base/regmap/built-in.a
CC net/core/dev_ioctl.o
AR fs/tracefs/built-in.a
CC kernel/task_work.o
CC drivers/base/syscore.o
CC drivers/base/driver.o
CC drivers/acpi/acpica/nsalloc.o
CC crypto/drbg.o
CC net/ipv4/tcp_ulp.o
CC drivers/acpi/glue.o
CC net/ethtool/phy.o
CC net/mac80211/s1g.o
CC crypto/jitterentropy.o
CC kernel/extable.o
CC net/sunrpc/svcauth_unix.o
CC drivers/base/class.o
CC net/netfilter/nf_conntrack_sip.o
CC fs/9p/vfs_file.o
CC net/core/tso.o
CC lib/xarray.o
CC drivers/acpi/acpica/nsarguments.o
GEN net/wireless/shipped-certs.c
CC fs/nfs/sysfs.o
CC net/ethtool/tsconfig.o
CC kernel/trace/trace_uprobe.o
LD [M] fs/efivarfs/efivarfs.o
CC net/mac80211/ibss.o
CC mm/mprotect.o
CC drivers/acpi/acpica/nsconvert.o
CC drivers/acpi/scan.o
CC arch/x86/kernel/setup.o
CC kernel/trace/rethook.o
CC net/core/sock_reuseport.o
CC net/ipv6/tcp_ipv6.o
CC net/sunrpc/addr.o
CC fs/ext4/xattr.o
CC lib/lockref.o
CC fs/9p/vfs_dir.o
CC net/ipv4/tcp_offload.o
CC net/netfilter/nf_nat_core.o
CC net/core/fib_notifier.o
CC fs/ext4/xattr_hurd.o
CC crypto/jitterentropy-kcapi.o
CC mm/mremap.o
CC mm/msync.o
CC net/netfilter/nf_nat_proto.o
CC drivers/base/platform.o
CC lib/bcd.o
CC drivers/acpi/acpica/nsdump.o
CC arch/x86/kernel/x86_init.o
CC net/mac80211/iface.o
CC drivers/acpi/mipi-disco-img.o
CC fs/file_table.o
CC lib/sort.o
CC net/netfilter/nf_nat_helper.o
CC lib/parser.o
CC arch/x86/kernel/i8259.o
CC arch/x86/kernel/irqinit.o
CC arch/x86/kernel/jump_label.o
CC crypto/ghash-generic.o
CC drivers/acpi/acpica/nseval.o
CC net/mac80211/link.o
CC mm/page_vma_mapped.o
CC net/ipv4/tcp_plb.o
CC fs/9p/vfs_dentry.o
AR net/ethtool/built-in.a
CC fs/super.o
CC net/wireless/shipped-certs.o
CC net/netfilter/nf_nat_masquerade.o
CC arch/x86/kernel/irq_work.o
CC net/mac80211/rate.o
CC net/mac80211/michael.o
CC net/mac80211/tkip.o
CC lib/debug_locks.o
CC drivers/acpi/resource.o
CC fs/nfs/fs_context.o
CC net/ipv6/ping.o
CC crypto/hash_info.o
CC drivers/acpi/acpica/nsinit.o
CC net/netfilter/nf_nat_ftp.o
CC crypto/rsapubkey.asn1.o
CC arch/x86/kernel/probe_roms.o
CC net/core/xdp.o
CC kernel/params.o
CC crypto/rsaprivkey.asn1.o
AR crypto/built-in.a
CC lib/random32.o
CC net/core/flow_offload.o
CC drivers/base/cpu.o
CC lib/bust_spinlocks.o
CC fs/9p/v9fs.o
CC net/ipv4/datagram.o
CC net/netfilter/nf_nat_irc.o
CC net/sunrpc/rpcb_clnt.o
CC fs/9p/fid.o
CC net/ipv4/raw.o
CC drivers/acpi/acpi_processor.o
CC drivers/acpi/acpica/nsload.o
CC net/sunrpc/timer.o
CC kernel/kthread.o
CC net/core/gro.o
CC mm/pagewalk.o
CC fs/9p/xattr.o
CC drivers/base/firmware.o
AR kernel/trace/built-in.a
CC net/ipv6/exthdrs.o
CC fs/char_dev.o
CC drivers/acpi/acpica/nsnames.o
CC arch/x86/kernel/sys_ia32.o
CC net/ipv6/datagram.o
CC drivers/base/init.o
CC arch/x86/kernel/ksysfs.o
CC lib/kasprintf.o
CC net/mac80211/aes_cmac.o
CC mm/pgtable-generic.o
CC net/sunrpc/xdr.o
CC fs/stat.o
CC kernel/sys_ni.o
CC fs/exec.o
CC fs/pipe.o
CC net/core/netdev-genl.o
CC fs/ext4/xattr_trusted.o
CC net/ipv6/ip6_flowlabel.o
CC drivers/acpi/acpica/nsobject.o
CC fs/nfs/nfsroot.o
CC lib/bitmap.o
CC mm/rmap.o
CC drivers/acpi/processor_core.o
CC net/core/netdev-genl-gen.o
CC arch/x86/kernel/bootflag.o
AR fs/9p/built-in.a
CC fs/nfs/sysctl.o
CC net/mac80211/aes_gmac.o
CC drivers/acpi/acpica/nsparse.o
CC drivers/base/map.o
CC net/sunrpc/sunrpc_syms.o
CC arch/x86/kernel/e820.o
CC lib/scatterlist.o
CC fs/namei.o
CC kernel/nsproxy.o
CC net/netfilter/nf_nat_sip.o
CC net/ipv4/udp.o
CC net/sunrpc/cache.o
CC net/mac80211/fils_aead.o
CC drivers/base/devres.o
CC net/core/gso.o
CC kernel/notifier.o
CC net/ipv4/udplite.o
CC net/sunrpc/rpc_pipe.o
CC lib/list_sort.o
CC drivers/acpi/acpica/nspredef.o
CC lib/uuid.o
CC net/netfilter/x_tables.o
CC drivers/acpi/processor_pdc.o
CC lib/iov_iter.o
CC fs/fcntl.o
CC net/core/net-sysfs.o
CC fs/ext4/xattr_user.o
CC fs/ext4/fast_commit.o
CC mm/vmalloc.o
CC drivers/acpi/ec.o
CC drivers/base/attribute_container.o
CC net/ipv6/inet6_connection_sock.o
CC net/sunrpc/sysfs.o
CC drivers/acpi/acpica/nsprepkg.o
CC mm/vma.o
CC net/netfilter/xt_tcpudp.o
CC drivers/acpi/dock.o
CC lib/clz_ctz.o
CC kernel/ksysfs.o
CC arch/x86/kernel/pci-dma.o
CC net/ipv6/udp_offload.o
CC net/ipv4/udp_offload.o
CC fs/nfs/nfs3super.o
CC kernel/cred.o
CC drivers/base/transport_class.o
CC lib/bsearch.o
CC arch/x86/kernel/quirks.o
CC drivers/acpi/pci_root.o
CC fs/ioctl.o
CC drivers/acpi/acpica/nsrepair.o
CC net/ipv4/arp.o
CC net/core/hotdata.o
CC fs/nfs/nfs3client.o
CC fs/readdir.o
CC lib/find_bit.o
CC net/mac80211/cfg.o
CC net/core/netdev_rx_queue.o
CC kernel/reboot.o
CC drivers/base/topology.o
CC mm/process_vm_access.o
CC arch/x86/kernel/kdebugfs.o
CC net/sunrpc/svc_xprt.o
CC fs/ext4/orphan.o
CC net/ipv6/seg6.o
CC drivers/acpi/acpica/nsrepair2.o
CC drivers/acpi/pci_link.o
CC lib/llist.o
CC net/ipv4/icmp.o
CC kernel/async.o
CC net/mac80211/ethtool.o
CC net/core/net-procfs.o
CC mm/page_alloc.o
CC arch/x86/kernel/alternative.o
CC net/netfilter/xt_CONNSECMARK.o
CC drivers/base/container.o
CC net/ipv6/fib6_notifier.o
CC net/sunrpc/xprtmultipath.o
CC net/ipv4/devinet.o
CC kernel/range.o
CC drivers/acpi/acpica/nssearch.o
CC drivers/acpi/acpica/nsutils.o
CC kernel/smpboot.o
CC net/ipv6/rpl.o
CC fs/select.o
CC fs/nfs/nfs3proc.o
CC net/netfilter/xt_NFLOG.o
CC lib/lwq.o
CC mm/page_frag_cache.o
CC net/sunrpc/stats.o
CC fs/ext4/acl.o
CC net/ipv6/ioam6.o
CC drivers/acpi/acpica/nswalk.o
CC net/sunrpc/sysctl.o
CC fs/nfs/nfs3xdr.o
CC drivers/base/property.o
CC net/ipv6/sysctl_net_ipv6.o
CC drivers/base/cacheinfo.o
CC net/ipv4/af_inet.o
CC arch/x86/kernel/i8253.o
CC fs/nfs/nfs3acl.o
CC fs/dcache.o
CC drivers/acpi/pci_irq.o
CC kernel/ucount.o
CC net/mac80211/rx.o
CC fs/ext4/xattr_security.o
CC net/core/netpoll.o
CC mm/init-mm.o
CC net/netfilter/xt_SECMARK.o
CC kernel/regset.o
CC drivers/acpi/acpica/nsxfeval.o
CC arch/x86/kernel/hw_breakpoint.o
CC drivers/base/swnode.o
CC fs/nfs/nfs4proc.o
CC arch/x86/kernel/tsc.o
CC lib/memweight.o
CC drivers/acpi/acpi_apd.o
CC net/ipv6/xfrm6_policy.o
CC net/ipv4/igmp.o
CC mm/memblock.o
CC drivers/acpi/acpi_platform.o
CC fs/inode.o
CC drivers/acpi/acpica/nsxfname.o
CC lib/kfifo.o
CC lib/percpu-refcount.o
CC drivers/base/auxiliary.o
CC kernel/ksyms_common.o
CC net/ipv4/fib_frontend.o
CC fs/nfs/nfs4xdr.o
CC drivers/base/devtmpfs.o
CC drivers/acpi/acpi_pnp.o
CC fs/attr.o
CC mm/slub.o
CC lib/rhashtable.o
CC kernel/groups.o
CC net/ipv4/fib_semantics.o
CC arch/x86/kernel/tsc_msr.o
CC net/ipv6/xfrm6_state.o
CC fs/nfs/nfs4state.o
CC drivers/acpi/acpica/nsxfobj.o
CC drivers/acpi/acpica/psargs.o
CC net/netfilter/xt_TCPMSS.o
CC arch/x86/kernel/io_delay.o
CC net/mac80211/spectmgmt.o
CC drivers/base/module.o
CC fs/bad_inode.o
CC fs/nfs/nfs4renewd.o
CC net/ipv6/xfrm6_input.o
CC mm/madvise.o
CC arch/x86/kernel/rtc.o
CC drivers/acpi/acpica/psloop.o
CC lib/base64.o
CC arch/x86/kernel/resource.o
CC net/core/fib_rules.o
CC net/netfilter/xt_conntrack.o
CC net/ipv4/fib_trie.o
CC fs/file.o
CC drivers/base/auxiliary_sysfs.o
AS arch/x86/kernel/irqflags.o
CC net/mac80211/tx.o
CC drivers/acpi/acpica/psobject.o
CC net/netfilter/xt_policy.o
CC net/core/net-traces.o
CC mm/page_io.o
CC net/ipv4/fib_notifier.o
CC mm/swap_state.o
CC drivers/acpi/power.o
CC drivers/acpi/event.o
AR net/sunrpc/built-in.a
AR fs/ext4/built-in.a
CC fs/nfs/nfs4super.o
CC kernel/kcmp.o
CC drivers/acpi/acpica/psopcode.o
CC net/mac80211/key.o
CC net/ipv4/inet_fragment.o
CC net/core/selftests.o
CC fs/nfs/nfs4file.o
CC net/ipv4/ping.o
CC kernel/freezer.o
CC net/ipv6/xfrm6_output.o
CC fs/filesystems.o
CC drivers/base/devcoredump.o
CC mm/swapfile.o
CC arch/x86/kernel/static_call.o
CC mm/swap_slots.o
CC lib/once.o
CC arch/x86/kernel/process.o
CC lib/refcount.o
CC fs/namespace.o
CC drivers/acpi/acpica/psopinfo.o
CC net/mac80211/util.o
CC net/netfilter/xt_state.o
CC lib/rcuref.o
CC kernel/profile.o
CC arch/x86/kernel/ptrace.o
CC mm/dmapool.o
CC drivers/acpi/acpica/psparse.o
CC net/ipv6/xfrm6_protocol.o
CC arch/x86/kernel/tls.o
CC lib/usercopy.o
CC net/ipv4/ip_tunnel_core.o
CC drivers/acpi/evged.o
CC fs/nfs/delegation.o
CC [M] net/netfilter/nf_log_syslog.o
CC drivers/base/platform-msi.o
CC net/ipv6/netfilter.o
CC [M] net/netfilter/xt_mark.o
CC net/core/ptp_classifier.o
CC fs/seq_file.o
CC kernel/stacktrace.o
CC fs/nfs/nfs4idmap.o
CC [M] net/netfilter/xt_nat.o
CC mm/hugetlb.o
CC fs/xattr.o
CC arch/x86/kernel/step.o
CC drivers/acpi/acpica/psscope.o
CC lib/errseq.o
CC arch/x86/kernel/i8237.o
CC lib/bucket_locks.o
CC net/mac80211/parse.o
CC net/ipv4/gre_offload.o
CC drivers/base/physical_location.o
CC kernel/dma.o
CC [M] net/netfilter/xt_LOG.o
CC net/ipv6/proc.o
CC fs/nfs/callback.o
CC mm/mmu_notifier.o
CC lib/generic-radix-tree.o
CC drivers/acpi/acpica/pstree.o
CC fs/libfs.o
CC drivers/base/trace.o
CC drivers/acpi/sysfs.o
CC net/ipv4/metrics.o
CC net/ipv4/netlink.o
CC [M] net/netfilter/xt_MASQUERADE.o
CC fs/nfs/callback_xdr.o
CC arch/x86/kernel/stacktrace.o
CC mm/migrate.o
CC arch/x86/kernel/reboot.o
CC net/ipv4/nexthop.o
CC net/core/netprio_cgroup.o
CC net/ipv6/syncookies.o
CC net/mac80211/wme.o
CC lib/bitmap-str.o
CC drivers/acpi/acpica/psutils.o
CC kernel/smp.o
CC fs/fs-writeback.o
CC mm/page_counter.o
CC fs/nfs/callback_proc.o
CC net/core/netclassid_cgroup.o
CC net/ipv4/udp_tunnel_stub.o
CC arch/x86/kernel/msr.o
AR net/wireless/built-in.a
CC drivers/acpi/property.o
CC mm/hugetlb_cgroup.o
CC mm/early_ioremap.o
CC [M] net/netfilter/xt_addrtype.o
CC drivers/acpi/acpica/pswalk.o
CC drivers/acpi/debugfs.o
CC net/mac80211/chan.o
CC arch/x86/kernel/cpuid.o
CC net/ipv6/calipso.o
AR drivers/base/built-in.a
CC fs/pnode.o
CC kernel/uid16.o
CC mm/secretmem.o
CC lib/string_helpers.o
CC arch/x86/kernel/early-quirks.o
CC net/mac80211/trace.o
CC net/core/dst_cache.o
CC lib/hexdump.o
CC arch/x86/kernel/smp.o
CC lib/kstrtox.o
CC arch/x86/kernel/smpboot.o
CC drivers/acpi/acpi_lpat.o
CC drivers/acpi/acpica/psxface.o
CC fs/splice.o
CC net/mac80211/mlme.o
CC mm/hmm.o
CC kernel/kallsyms.o
CC arch/x86/kernel/tsc_sync.o
CC drivers/acpi/acpi_pcc.o
CC arch/x86/kernel/setup_percpu.o
CC fs/nfs/nfs4namespace.o
CC lib/iomap.o
CC drivers/acpi/acpica/rsaddr.o
CC drivers/acpi/acpica/rscalc.o
CC fs/sync.o
CC arch/x86/kernel/mpparse.o
CC kernel/acct.o
CC net/mac80211/tdls.o
CC net/ipv6/ah6.o
CC fs/utimes.o
CC drivers/acpi/ac.o
CC kernel/vmcore_info.o
CC net/core/gro_cells.o
CC mm/memfd.o
CC net/mac80211/ocb.o
CC arch/x86/kernel/trace_clock.o
CC lib/iomap_copy.o
CC net/core/failover.o
CC arch/x86/kernel/trace.o
CC drivers/acpi/acpica/rscreate.o
CC fs/nfs/nfs4getroot.o
CC mm/ptdump.o
CC arch/x86/kernel/rethook.o
CC kernel/elfcorehdr.o
CC net/mac80211/airtime.o
CC drivers/acpi/button.o
CC net/ipv6/esp6.o
CC drivers/acpi/acpica/rsdumpinfo.o
CC net/mac80211/eht.o
CC net/ipv6/sit.o
CC drivers/acpi/fan_core.o
CC arch/x86/kernel/vmcore_info_32.o
CC fs/nfs/nfs4client.o
AR net/netfilter/built-in.a
CC mm/execmem.o
CC lib/devres.o
CC net/ipv4/ip_tunnel.o
CC net/ipv4/sysctl_net_ipv4.o
CC kernel/crash_reserve.o
CC net/ipv4/proc.o
CC lib/check_signature.o
CC net/mac80211/led.o
CC drivers/acpi/acpica/rsinfo.o
CC fs/nfs/nfs4session.o
CC arch/x86/kernel/machine_kexec_32.o
CC drivers/acpi/fan_attr.o
CC net/ipv6/addrconf_core.o
CC drivers/acpi/fan_hwmon.o
CC kernel/kexec_core.o
CC fs/nfs/dns_resolve.o
CC kernel/crash_core.o
AS arch/x86/kernel/relocate_kernel_32.o
CC net/ipv4/fib_rules.o
CC net/mac80211/pm.o
CC drivers/acpi/acpica/rsio.o
CC kernel/kexec.o
CC net/ipv6/exthdrs_core.o
CC drivers/acpi/acpi_video.o
CC fs/d_path.o
CC lib/interval_tree.o
CC fs/nfs/nfs4trace.o
CC net/ipv4/ipmr.o
CC net/mac80211/rc80211_minstrel_ht.o
CC fs/nfs/nfs4sysctl.o
CC kernel/utsname.o
CC net/ipv6/ip6_checksum.o
CC net/mac80211/wbrf.o
AR net/core/built-in.a
CC kernel/pid_namespace.o
CC fs/stack.o
CC kernel/stop_machine.o
CC drivers/acpi/acpica/rsirq.o
CC lib/assoc_array.o
CC lib/bitrev.o
CC arch/x86/kernel/crash_dump_32.o
CC fs/fs_struct.o
CC net/ipv4/ipmr_base.o
AR mm/built-in.a
CC arch/x86/kernel/crash.o
CC drivers/acpi/acpica/rslist.o
CC fs/statfs.o
CC drivers/acpi/video_detect.o
CC net/ipv4/syncookies.o
CC net/ipv6/ip6_icmp.o
CC fs/fs_pin.o
CC drivers/acpi/acpica/rsmemory.o
CC drivers/acpi/processor_driver.o
CC net/ipv4/tunnel4.o
CC arch/x86/kernel/module.o
CC fs/nsfs.o
CC kernel/audit.o
CC arch/x86/kernel/doublefault_32.o
CC arch/x86/kernel/early_printk.o
CC net/ipv4/ipconfig.o
CC drivers/acpi/processor_thermal.o
CC kernel/auditfilter.o
CC net/ipv6/output_core.o
CC lib/crc-ccitt.o
CC net/ipv6/protocol.o
CC drivers/acpi/acpica/rsmisc.o
CC net/ipv4/netfilter.o
CC drivers/acpi/processor_idle.o
CC drivers/acpi/acpica/rsserial.o
CC net/ipv4/tcp_cubic.o
CC drivers/acpi/acpica/rsutils.o
CC kernel/auditsc.o
CC fs/fs_types.o
CC arch/x86/kernel/hpet.o
CC drivers/acpi/processor_throttling.o
CC lib/crc16.o
CC drivers/acpi/acpica/rsxface.o
CC net/ipv4/tcp_sigpool.o
CC arch/x86/kernel/amd_nb.o
HOSTCC lib/gen_crc32table
CC drivers/acpi/processor_perflib.o
CC kernel/audit_watch.o
CC net/ipv4/cipso_ipv4.o
CC arch/x86/kernel/amd_node.o
CC net/ipv4/xfrm4_policy.o
CC net/ipv4/xfrm4_state.o
CC kernel/audit_fsnotify.o
CC drivers/acpi/acpica/tbdata.o
CC net/ipv6/ip6_offload.o
CC fs/fs_context.o
CC net/ipv6/tcpv6_offload.o
CC net/ipv4/xfrm4_input.o
CC drivers/acpi/container.o
CC drivers/acpi/thermal_lib.o
CC kernel/audit_tree.o
CC drivers/acpi/thermal.o
CC lib/xxhash.o
CC fs/fs_parser.o
CC net/ipv4/xfrm4_output.o
CC fs/fsopen.o
CC arch/x86/kernel/kvm.o
CC arch/x86/kernel/kvmclock.o
CC drivers/acpi/acpica/tbfadt.o
CC arch/x86/kernel/paravirt.o
CC drivers/acpi/nhlt.o
CC kernel/kprobes.o
CC lib/genalloc.o
CC fs/init.o
CC net/ipv6/exthdrs_offload.o
CC arch/x86/kernel/pvclock.o
CC arch/x86/kernel/pcspeaker.o
CC fs/kernel_read_file.o
CC kernel/seccomp.o
CC lib/percpu_counter.o
CC lib/audit.o
CC drivers/acpi/acpica/tbfind.o
CC drivers/acpi/acpi_memhotplug.o
CC net/ipv6/inet6_hashtables.o
CC net/ipv4/xfrm4_protocol.o
CC net/ipv6/mcast_snoop.o
CC lib/syscall.o
CC kernel/relay.o
CC drivers/acpi/ioapic.o
CC arch/x86/kernel/check.o
CC fs/mnt_idmapping.o
CC fs/remap_range.o
CC lib/errname.o
CC kernel/utsname_sysctl.o
CC arch/x86/kernel/uprobes.o
CC fs/pidfs.o
CC lib/nlattr.o
CC drivers/acpi/battery.o
CC drivers/acpi/acpica/tbinstal.o
CC drivers/acpi/bgrt.o
CC kernel/delayacct.o
CC drivers/acpi/acpica/tbprint.o
CC fs/buffer.o
CC arch/x86/kernel/perf_regs.o
CC kernel/taskstats.o
CC drivers/acpi/acpica/tbutils.o
CC lib/cpu_rmap.o
CC drivers/acpi/spcr.o
CC arch/x86/kernel/tracepoint.o
CC fs/mpage.o
CC lib/dynamic_queue_limits.o
CC kernel/tsacct.o
CC fs/proc_namespace.o
CC fs/direct-io.o
CC drivers/acpi/acpica/tbxface.o
CC drivers/acpi/acpica/tbxfload.o
CC lib/glob.o
CC kernel/tracepoint.o
CC fs/eventpoll.o
CC arch/x86/kernel/itmt.o
CC lib/strncpy_from_user.o
CC arch/x86/kernel/umip.o
CC kernel/irq_work.o
CC drivers/acpi/acpica/tbxfroot.o
CC lib/strnlen_user.o
CC fs/anon_inodes.o
CC arch/x86/kernel/unwind_frame.o
CC fs/signalfd.o
CC kernel/static_call.o
CC lib/net_utils.o
CC drivers/acpi/acpica/utaddress.o
CC drivers/acpi/acpica/utalloc.o
CC kernel/padata.o
CC fs/timerfd.o
CC kernel/jump_label.o
CC drivers/acpi/acpica/utascii.o
CC lib/sg_pool.o
CC kernel/context_tracking.o
CC fs/eventfd.o
CC lib/stackdepot.o
CC drivers/acpi/acpica/utbuffer.o
CC kernel/iomem.o
CC fs/aio.o
CC lib/asn1_decoder.o
GEN lib/oid_registry_data.c
CC kernel/rseq.o
CC fs/locks.o
CC fs/binfmt_misc.o
CC fs/binfmt_script.o
CC drivers/acpi/acpica/utcksum.o
AR net/ipv4/built-in.a
CC drivers/acpi/acpica/utcopy.o
CC lib/ucs2_string.o
CC fs/binfmt_elf.o
CC drivers/acpi/acpica/utexcep.o
CC drivers/acpi/acpica/utdebug.o
CC drivers/acpi/acpica/utdecode.o
AR fs/nfs/built-in.a
CC drivers/acpi/acpica/utdelete.o
CC lib/sbitmap.o
CC fs/mbcache.o
CC fs/posix_acl.o
CC lib/group_cpus.o
CC fs/coredump.o
CC drivers/acpi/acpica/uterror.o
CC fs/drop_caches.o
CC lib/fw_table.o
CC fs/sysctls.o
CC fs/fhandle.o
CC drivers/acpi/acpica/uteval.o
AR net/ipv6/built-in.a
CC drivers/acpi/acpica/utglobal.o
AR lib/lib.a
GEN lib/crc32table.h
CC drivers/acpi/acpica/uthex.o
AR arch/x86/kernel/built-in.a
CC lib/oid_registry.o
CC drivers/acpi/acpica/utids.o
CC lib/crc32.o
CC drivers/acpi/acpica/utinit.o
AR arch/x86/built-in.a
CC drivers/acpi/acpica/utlock.o
CC drivers/acpi/acpica/utmath.o
CC drivers/acpi/acpica/utmisc.o
CC drivers/acpi/acpica/utmutex.o
CC drivers/acpi/acpica/utnonansi.o
CC drivers/acpi/acpica/utobject.o
CC drivers/acpi/acpica/utosi.o
CC drivers/acpi/acpica/utownerid.o
CC drivers/acpi/acpica/utpredef.o
CC drivers/acpi/acpica/utresdecode.o
CC drivers/acpi/acpica/utresrc.o
CC drivers/acpi/acpica/utstate.o
CC drivers/acpi/acpica/utstring.o
CC drivers/acpi/acpica/utstrsuppt.o
CC drivers/acpi/acpica/utstrtoul64.o
CC drivers/acpi/acpica/utxface.o
CC drivers/acpi/acpica/utxfinit.o
CC drivers/acpi/acpica/utxferror.o
CC drivers/acpi/acpica/utxfmutex.o
AR drivers/acpi/acpica/built-in.a
AR kernel/built-in.a
AR drivers/acpi/built-in.a
AR lib/built-in.a
make[2]: *** [/workspace/kernel/scripts/Makefile.build:465: drivers] Error 2
make[2]: *** Waiting for unfinished jobs....
AR fs/built-in.a
AR net/mac80211/built-in.a
AR net/built-in.a
make[1]: *** [/workspace/kernel/Makefile:1994: .] Error 2
make: *** [/workspace/kernel/Makefile:251: __sub-make] Error 2
run-parts: /workspace/ci/hooks/11-build-32b exited with return code 2
^ permalink raw reply [flat|nested] 23+ messages in thread
* ✗ CI.checksparse: warning for Maintenence of devcoredump <-> GuC-Err-Capture plumbing
2025-02-10 23:32 [PATCH v7 0/6] Maintenence of devcoredump <-> GuC-Err-Capture plumbing Alan Previn
` (10 preceding siblings ...)
2025-02-11 0:57 ` ✗ CI.Hooks: failure " Patchwork
@ 2025-02-11 0:58 ` Patchwork
2025-02-11 1:18 ` ✓ Xe.CI.BAT: success " Patchwork
2025-02-11 13:01 ` ✗ Xe.CI.Full: failure " Patchwork
13 siblings, 0 replies; 23+ messages in thread
From: Patchwork @ 2025-02-11 0:58 UTC (permalink / raw)
To: Alan Previn; +Cc: intel-xe
== Series Details ==
Series: Maintenence of devcoredump <-> GuC-Err-Capture plumbing
URL : https://patchwork.freedesktop.org/series/144634/
State : warning
== Summary ==
+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast 2fc58ab10139895686001c7e1ee247f15226abc4
Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3)
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 23+ messages in thread
* ✓ Xe.CI.BAT: success for Maintenence of devcoredump <-> GuC-Err-Capture plumbing
2025-02-10 23:32 [PATCH v7 0/6] Maintenence of devcoredump <-> GuC-Err-Capture plumbing Alan Previn
` (11 preceding siblings ...)
2025-02-11 0:58 ` ✗ CI.checksparse: warning " Patchwork
@ 2025-02-11 1:18 ` Patchwork
2025-02-11 13:01 ` ✗ Xe.CI.Full: failure " Patchwork
13 siblings, 0 replies; 23+ messages in thread
From: Patchwork @ 2025-02-11 1:18 UTC (permalink / raw)
To: Alan Previn; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 3002 bytes --]
== Series Details ==
Series: Maintenence of devcoredump <-> GuC-Err-Capture plumbing
URL : https://patchwork.freedesktop.org/series/144634/
State : success
== Summary ==
CI Bug Log - changes from xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4_BAT -> xe-pw-144634v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 8)
------------------------------
Missing (1): bat-adlp-vm
Known issues
------------
Here are the changes found in xe-pw-144634v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/bat-adlp-vf/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/bat-adlp-vf/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
#### Possible fixes ####
* igt@xe_intel_bb@intel-bb-blit-y:
- bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3970]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/bat-adlp-vf/igt@xe_intel_bb@intel-bb-blit-y.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/bat-adlp-vf/igt@xe_intel_bb@intel-bb-blit-y.html
* igt@xe_live_ktest@xe_migrate:
- bat-adlp-vf: [SKIP][5] ([Intel XE#1192]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
#### Warnings ####
* igt@xe_live_ktest@xe_bo:
- bat-adlp-vf: [SKIP][7] ([Intel XE#1192]) -> [SKIP][8] ([Intel XE#2229] / [Intel XE#455])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
Build changes
-------------
* Linux: xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4 -> xe-pw-144634v1
IGT_8228: 8228
xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4: 2fc58ab10139895686001c7e1ee247f15226abc4
xe-pw-144634v1: 144634v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/index.html
[-- Attachment #2: Type: text/html, Size: 3966 bytes --]
^ permalink raw reply [flat|nested] 23+ messages in thread
* ✗ Xe.CI.Full: failure for Maintenence of devcoredump <-> GuC-Err-Capture plumbing
2025-02-10 23:32 [PATCH v7 0/6] Maintenence of devcoredump <-> GuC-Err-Capture plumbing Alan Previn
` (12 preceding siblings ...)
2025-02-11 1:18 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2025-02-11 13:01 ` Patchwork
2025-02-13 0:56 ` Teres Alexis, Alan Previn
13 siblings, 1 reply; 23+ messages in thread
From: Patchwork @ 2025-02-11 13:01 UTC (permalink / raw)
To: Alan Previn; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 71062 bytes --]
== Series Details ==
Series: Maintenence of devcoredump <-> GuC-Err-Capture plumbing
URL : https://patchwork.freedesktop.org/series/144634/
State : failure
== Summary ==
CI Bug Log - changes from xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4_full -> xe-pw-144634v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-144634v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-144634v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-144634v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2-set2: NOTRUN -> [SKIP][1] +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a6:
- shard-dg2-set2: [PASS][2] -> [FAIL][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-434/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a6.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-435/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a6.html
* igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a2:
- shard-dg2-set2: NOTRUN -> [FAIL][4]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-432/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a2.html
* igt@kms_rmfb@rmfb-ioctl:
- shard-adlp: [PASS][5] -> [DMESG-WARN][6] +6 other tests dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-adlp-8/igt@kms_rmfb@rmfb-ioctl.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-adlp-2/igt@kms_rmfb@rmfb-ioctl.html
* igt@xe_pm@s2idle-exec-after:
- shard-dg2-set2: [PASS][7] -> [ABORT][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-466/igt@xe_pm@s2idle-exec-after.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-432/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-bmg: [PASS][9] -> [INCOMPLETE][10] +1 other test incomplete
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-5/igt@xe_pm_residency@toggle-gt-c6.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-2/igt@xe_pm_residency@toggle-gt-c6.html
Known issues
------------
Here are the changes found in xe-pw-144634v1_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#3767]) +7 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2370])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#316])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2327])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-0:
- shard-bmg: [PASS][15] -> [INCOMPLETE][16] ([Intel XE#3225])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-8/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-1/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +5 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +4 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [PASS][19] -> [SKIP][20] ([Intel XE#2314] / [Intel XE#2894])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: [PASS][21] -> [SKIP][22] ([Intel XE#2191])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-432/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2314] / [Intel XE#2894])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#367])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#367])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#2907])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#455] / [Intel XE#787]) +40 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#3442])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][29] ([Intel XE#1033]) +13 other tests dmesg-warn
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2652] / [Intel XE#787]) +11 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#787]) +121 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2887]) +4 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][33] -> [INCOMPLETE][34] ([Intel XE#4010])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [PASS][35] -> [INCOMPLETE][36] ([Intel XE#1727] / [Intel XE#3124] / [Intel XE#4010])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][37] -> [INCOMPLETE][38] ([Intel XE#3113] / [Intel XE#4010])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [PASS][39] -> [INCOMPLETE][40] ([Intel XE#3124] / [Intel XE#4010])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][41] -> [DMESG-WARN][42] ([Intel XE#1727] / [Intel XE#3113])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#314]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-434/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2325])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@ctm-max:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#306])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2252]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#373]) +6 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_color@ctm-0-50@pipe-d-dp-2:
- shard-bmg: NOTRUN -> [DMESG-WARN][48] ([Intel XE#4172]) +10 other tests dmesg-warn
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@kms_color@ctm-0-50@pipe-d-dp-2.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][49] ([Intel XE#1178]) +2 other tests fail
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@legacy@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][50] ([Intel XE#1178]) +1 other test fail
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-434/igt@kms_content_protection@legacy@pipe-a-dp-4.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][51] ([Intel XE#4172])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2320]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2321])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#455]) +8 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#309])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#2291]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2286])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dp_aux_dev:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#3009])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-basic:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2244])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ad-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][61] ([Intel XE#2882]) +4 other tests fail
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][62] ([Intel XE#3321]) +1 other test fail
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2-set2: [PASS][63] -> [SKIP][64] ([Intel XE#310]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-463/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2316])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#2316]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-8/igt@kms_flip@2x-plain-flip-fb-recreate.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#310]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-bmg: [PASS][69] -> [FAIL][70] ([Intel XE#2882] / [Intel XE#3098])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-8/igt@kms_flip@2x-plain-flip-ts-check.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-1/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@2x-plain-flip-ts-check@ab-dp2-hdmi-a3:
- shard-bmg: [PASS][71] -> [FAIL][72] ([Intel XE#3098])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-8/igt@kms_flip@2x-plain-flip-ts-check@ab-dp2-hdmi-a3.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-1/igt@kms_flip@2x-plain-flip-ts-check@ab-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp4:
- shard-dg2-set2: [PASS][73] -> [FAIL][74] ([Intel XE#301] / [Intel XE#3321]) +3 other tests fail
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3:
- shard-bmg: [PASS][75] -> [FAIL][76] ([Intel XE#3321])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
- shard-dg2-set2: [PASS][77] -> [FAIL][78] ([Intel XE#301]) +5 other tests fail
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend@c-dp4:
- shard-dg2-set2: [PASS][79] -> [INCOMPLETE][80] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-466/igt@kms_flip@flip-vs-suspend@c-dp4.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-434/igt@kms_flip@flip-vs-suspend@c-dp4.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1:
- shard-lnl: [PASS][81] -> [FAIL][82] ([Intel XE#886]) +5 other tests fail
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-lnl-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-lnl-1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a6:
- shard-dg2-set2: [PASS][83] -> [FAIL][84] ([Intel XE#886])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-434/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a6.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-435/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a6.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-dg2-set2: [PASS][85] -> [FAIL][86] ([Intel XE#2882]) +1 other test fail
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-435/igt@kms_flip@plain-flip-ts-check-interruptible.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-432/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible@b-dp2:
- shard-bmg: [PASS][87] -> [FAIL][88] ([Intel XE#2882]) +2 other tests fail
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-1/igt@kms_flip@plain-flip-ts-check-interruptible@b-dp2.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-5/igt@kms_flip@plain-flip-ts-check-interruptible@b-dp2.html
* igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2:
- shard-dg2-set2: NOTRUN -> [FAIL][89] ([Intel XE#2882]) +1 other test fail
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-432/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2293]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x:
- shard-adlp: [PASS][92] -> [DMESG-FAIL][93] ([Intel XE#1033]) +1 other test dmesg-fail
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x.html
* igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2311]) +7 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#4141]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-dg2-set2: [PASS][96] -> [SKIP][97] ([Intel XE#656]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#651]) +8 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#656]) +13 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2312]) +3 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2313]) +7 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#653]) +6 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#605])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#2925])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2763]) +14 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#870])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#3309])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2499])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#836])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#1489]) +3 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#1489])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr@fbc-pr-sprite-blt:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@kms_psr@fbc-pr-sprite-blt.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#3414])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-433/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@cursor-rotation-180:
- shard-adlp: [PASS][116] -> [DMESG-WARN][117] ([Intel XE#4173]) +6 other tests dmesg-warn
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-adlp-8/igt@kms_rotation_crc@cursor-rotation-180.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-adlp-2/igt@kms_rotation_crc@cursor-rotation-180.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#3414] / [Intel XE#3904])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2330])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2413])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2426])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-dg2-set2: [PASS][122] -> [ABORT][123] ([Intel XE#2625] / [Intel XE#4057])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-466/igt@kms_vblank@ts-continuation-dpms-suspend.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-432/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [ABORT][124] ([Intel XE#2625] / [Intel XE#4057])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-432/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-dp-2.html
* igt@kms_vrr@cmrr:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#2168])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_vrr@cmrr.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [PASS][126] -> [SKIP][127] ([Intel XE#1499])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-7/igt@kms_vrr@negative-basic.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-6/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#756])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1126])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_drm_fdinfo@utilization-single-full-load-isolation:
- shard-bmg: [PASS][130] -> [DMESG-WARN][131] ([Intel XE#4172]) +18 other tests dmesg-warn
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-6/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-2/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html
* igt@xe_eudebug@basic-vm-bind:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2905]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@xe_eudebug@basic-vm-bind.html
* igt@xe_eudebug_online@resume-dss:
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#2905]) +3 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@xe_eudebug_online@resume-dss.html
* igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-invalidate:
- shard-dg2-set2: [PASS][134] -> [DMESG-WARN][135] ([Intel XE#1033]) +1 other test dmesg-warn
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-435/igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-invalidate.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-436/igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null:
- shard-dg2-set2: [PASS][136] -> [SKIP][137] ([Intel XE#1392]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-435/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2322]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
* igt@xe_exec_fault_mode@once-bindexecqueue-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#288]) +10 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@xe_exec_fault_mode@once-bindexecqueue-rebind.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#2360])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#2229])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_live_ktest@xe_mocs:
- shard-bmg: [PASS][142] -> [SKIP][143] ([Intel XE#1192])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-5/igt@xe_live_ktest@xe_mocs.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-2/igt@xe_live_ktest@xe_mocs.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#512])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@xe_mmap@small-bar.html
* igt@xe_oa@disabled-read-error:
- shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#2541] / [Intel XE#3573]) +3 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-433/igt@xe_oa@disabled-read-error.html
* igt@xe_pm@d3cold-basic:
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2284])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@s4-mocs:
- shard-dg2-set2: NOTRUN -> [ABORT][147] ([Intel XE#4268])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@xe_pm@s4-mocs.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#579])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#944])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#3342])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#4273])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@xe_sriov_flr@flr-twice.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: [SKIP][152] ([Intel XE#2191]) -> [PASS][153] +1 other test pass
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-433/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
- shard-bmg: [SKIP][154] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][155]
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-dg2-set2: [SKIP][156] ([Intel XE#309]) -> [PASS][157] +5 other tests pass
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-464/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-435/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][158] ([Intel XE#2291]) -> [PASS][159] +3 other tests pass
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2-set2: [DMESG-WARN][160] ([Intel XE#1033]) -> [PASS][161] +3 other tests pass
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-434/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-433/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [SKIP][162] ([Intel XE#2316]) -> [PASS][163] +5 other tests pass
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-dg2-set2: [SKIP][164] ([Intel XE#310]) -> [PASS][165] +4 other tests pass
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-464/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-436/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@d-dp2:
- shard-bmg: [FAIL][166] ([Intel XE#3321]) -> [PASS][167] +1 other test pass
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank@d-dp2.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank@d-dp2.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-adlp: [FAIL][168] ([Intel XE#2882]) -> [PASS][169]
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-adlp-8/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-adlp-2/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a1:
- shard-adlp: [FAIL][170] ([Intel XE#886]) -> [PASS][171]
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-adlp-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a1.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-adlp-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1:
- shard-lnl: [FAIL][172] ([Intel XE#886]) -> [PASS][173]
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-lnl-1/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-lnl-5/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y:
- shard-adlp: [DMESG-FAIL][174] ([Intel XE#1033]) -> [PASS][175]
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move:
- shard-dg2-set2: [SKIP][176] ([Intel XE#656]) -> [PASS][177] +6 other tests pass
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-dg2-set2: [ABORT][178] ([Intel XE#2625]) -> [PASS][179]
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-suspend.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][180] ([Intel XE#1503]) -> [PASS][181]
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-2/igt@kms_hdr@invalid-hdr.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2-set2: [ABORT][182] ([Intel XE#2625] / [Intel XE#4080]) -> [PASS][183]
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-d:
- shard-bmg: [DMESG-WARN][184] ([Intel XE#4172]) -> [PASS][185] +3 other tests pass
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-d.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-d.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2-set2: [SKIP][186] ([Intel XE#836]) -> [PASS][187] +1 other test pass
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-464/igt@kms_pm_rpm@modeset-non-lpsp.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_rotation_crc@primary-x-tiled-reflect-x-180:
- shard-dg2-set2: [INCOMPLETE][188] ([Intel XE#4170]) -> [PASS][189]
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-463/igt@kms_rotation_crc@primary-x-tiled-reflect-x-180.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_rotation_crc@primary-x-tiled-reflect-x-180.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [SKIP][190] ([Intel XE#1435]) -> [PASS][191]
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-2/igt@kms_setmode@clone-exclusive-crtc.html
- shard-dg2-set2: [SKIP][192] ([Intel XE#455]) -> [PASS][193] +2 other tests pass
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-464/igt@kms_setmode@clone-exclusive-crtc.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-434/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [FAIL][194] ([Intel XE#899]) -> [PASS][195] +2 other tests pass
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute:
- shard-lnl: [FAIL][196] ([Intel XE#4278]) -> [PASS][197] +1 other test pass
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-lnl-8/igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-lnl-8/igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][198] ([Intel XE#1392]) -> [PASS][199] +2 other tests pass
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_reset@cm-gt-reset:
- shard-bmg: [INCOMPLETE][200] -> [PASS][201]
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-6/igt@xe_exec_reset@cm-gt-reset.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@xe_exec_reset@cm-gt-reset.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- shard-dg2-set2: [DMESG-WARN][202] -> [PASS][203]
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-464/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-bmg: [SKIP][204] ([Intel XE#1192]) -> [PASS][205]
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-6/igt@xe_live_ktest@xe_dma_buf.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_module_load@reload:
- shard-adlp: [DMESG-WARN][206] ([Intel XE#4173]) -> [PASS][207]
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-adlp-8/igt@xe_module_load@reload.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-adlp-8/igt@xe_module_load@reload.html
#### Warnings ####
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][208] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][209] ([Intel XE#787]) +9 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-6.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [DMESG-WARN][210] ([Intel XE#1033]) -> [INCOMPLETE][211] ([Intel XE#4010])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [DMESG-WARN][212] ([Intel XE#1033]) -> [INCOMPLETE][213] ([Intel XE#1727] / [Intel XE#4010])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_content_protection@legacy:
- shard-bmg: [SKIP][214] ([Intel XE#2341]) -> [FAIL][215] ([Intel XE#1178])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-6/igt@kms_content_protection@legacy.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-2/igt@kms_content_protection@legacy.html
- shard-dg2-set2: [SKIP][216] ([Intel XE#455]) -> [FAIL][217] ([Intel XE#1178]) +1 other test fail
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-464/igt@kms_content_protection@legacy.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-434/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [SKIP][218] ([Intel XE#2341]) -> [DMESG-FAIL][219] ([Intel XE#4172])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm:
- shard-bmg: [DMESG-FAIL][220] ([Intel XE#4172]) -> [SKIP][221] ([Intel XE#2341])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-7/igt@kms_content_protection@srm.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-6/igt@kms_content_protection@srm.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-bmg: [INCOMPLETE][222] ([Intel XE#2049]) -> [SKIP][223] ([Intel XE#2316])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-8/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-bmg: [SKIP][224] ([Intel XE#2316]) -> [FAIL][225] ([Intel XE#2882])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-8/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [SKIP][226] ([Intel XE#2316]) -> [FAIL][227] ([Intel XE#3321])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-bmg: [DMESG-WARN][228] ([Intel XE#4172]) -> [SKIP][229] ([Intel XE#2316]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-7/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-bmg: [DMESG-FAIL][230] ([Intel XE#4172]) -> [DMESG-WARN][231] ([Intel XE#4172])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-dg2-set2: [DMESG-WARN][232] ([Intel XE#1033]) -> [DMESG-FAIL][233] ([Intel XE#1033]) +1 other test dmesg-fail
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-434/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-435/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
- shard-bmg: [DMESG-WARN][234] ([Intel XE#4172]) -> [DMESG-FAIL][235] ([Intel XE#4172])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-6/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-lnl: [FAIL][236] ([Intel XE#3149] / [Intel XE#886]) -> [FAIL][237] ([Intel XE#886])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-lnl-1/igt@kms_flip@plain-flip-ts-check-interruptible.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-lnl-5/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][238] ([Intel XE#2311]) -> [SKIP][239] ([Intel XE#2312]) +13 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][240] ([Intel XE#2312]) -> [SKIP][241] ([Intel XE#2311]) +16 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render:
- shard-dg2-set2: [SKIP][242] ([Intel XE#651]) -> [SKIP][243] ([Intel XE#656])
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][244] ([Intel XE#4141]) -> [SKIP][245] ([Intel XE#2312]) +6 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][246] ([Intel XE#2312]) -> [SKIP][247] ([Intel XE#4141]) +6 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg2-set2: [SKIP][248] ([Intel XE#656]) -> [SKIP][249] ([Intel XE#651]) +10 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][250] ([Intel XE#2312]) -> [SKIP][251] ([Intel XE#2313]) +15 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][252] ([Intel XE#2313]) -> [SKIP][253] ([Intel XE#2312]) +14 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][254] ([Intel XE#656]) -> [SKIP][255] ([Intel XE#653]) +14 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-dg2-set2: [SKIP][256] ([Intel XE#653]) -> [SKIP][257] ([Intel XE#656]) +7 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@xe_peer2peer@write:
- shard-dg2-set2: [FAIL][258] ([Intel XE#1173]) -> [SKIP][259] ([Intel XE#1061])
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-435/igt@xe_peer2peer@write.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-432/igt@xe_peer2peer@write.html
* igt@xe_pm@s3-basic:
- shard-dg2-set2: [ABORT][260] ([Intel XE#1033] / [Intel XE#1794]) -> [DMESG-WARN][261] ([Intel XE#1033] / [Intel XE#569])
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4/shard-dg2-432/igt@xe_pm@s3-basic.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/shard-dg2-464/igt@xe_pm@s3-basic.html
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010
[Intel XE#4057]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4057
[Intel XE#4080]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4080
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4170]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4170
[Intel XE#4172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4278
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4 -> xe-pw-144634v1
IGT_8228: 8228
xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4: 2fc58ab10139895686001c7e1ee247f15226abc4
xe-pw-144634v1: 144634v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/index.html
[-- Attachment #2: Type: text/html, Size: 83170 bytes --]
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [PATCH v7 5/6] drm/xe/xe_hw_engine: Update xe_hw_engine capture for debugfs/gt_reset
2025-02-10 23:32 ` [PATCH v7 5/6] drm/xe/xe_hw_engine: Update xe_hw_engine capture for debugfs/gt_reset Alan Previn
@ 2025-02-11 17:34 ` Teres Alexis, Alan Previn
2025-02-12 18:24 ` Dong, Zhanjun
0 siblings, 1 reply; 23+ messages in thread
From: Teres Alexis, Alan Previn @ 2025-02-11 17:34 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org
Cc: dri-devel@lists.freedesktop.org, Harrison, John C, Brost, Matthew,
Dong, Zhanjun, Ceraolo Spurio, Daniele, Vivi, Rodrigo
On Mon, 2025-02-10 at 15:32 -0800, Teres Alexis, Alan Previn wrote:
> xe_hw_engine_print is called by debugfs to do an immediate raw
> --- a/drivers/gpu/drm/xe/xe_guc_capture_snapshot_types.h
> +++ b/drivers/gpu/drm/xe/xe_guc_capture_snapshot_types.h
> @@ -12,7 +12,11 @@
> struct guc_mmio_reg;
>
> enum xe_guc_capture_snapshot_source {
> - XE_ENGINE_CAPTURE_SOURCE_MANUAL,
> + /* KMD captured engine registers when job timeout is detected */
> + XE_ENGINE_CAPTURE_SOURCE_MANUAL_JOB,
> + /* KMD captured raw engine registers without any job association */
> + XE_ENGINE_CAPTURE_SOURCE_MANUAL_RAW,
> + /* GUC-FW captured engine registers before workload was killed */
> XE_ENGINE_CAPTURE_SOURCE_GUC
> };
>
alan: some offline feedback was given to rename the enum to match:
"enum xe_guc_capture_snapshot_source" -> "enum xe_engine_capture_source"
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [PATCH v7 3/6] drm/xe/guc: Split engine state print between xe_hw_engine vs xe_guc_capture
2025-02-10 23:32 ` [PATCH v7 3/6] drm/xe/guc: Split engine state print between xe_hw_engine vs xe_guc_capture Alan Previn
@ 2025-02-11 22:48 ` Dong, Zhanjun
2025-02-12 18:50 ` Teres Alexis, Alan Previn
0 siblings, 1 reply; 23+ messages in thread
From: Dong, Zhanjun @ 2025-02-11 22:48 UTC (permalink / raw)
To: Alan Previn, intel-xe
Cc: dri-devel, Daniele Ceraolo Spurio, John Harrison, Matthew Brost,
Rodrigo Vivi
On 2025-02-10 6:32 p.m., Alan Previn wrote:
> Relocate the xe_engine_snapshot_print function from xe_guc_capture.c
> into xe_hw_engine.c but split out the GuC-Err-Capture register printing
> portion out into a separate helper inside xe_guc_capture.c so that
> we can have a clear separation between printing the general engine info
> vs GuC-Err-Capture node's register list.
>
> v7: - Fix function name to respect "xe_hw_engine" name space. (Rodrigo)
> - Remove additional newline in engine dump (Jose Souza) +
> ensure changes didn't break mesa's aubinator tool (Rodrigo)
>
> Signed-off-by: Alan Previn <alan.previn.teres.alexis@intel.com>
> ---
> drivers/gpu/drm/xe/xe_devcoredump.c | 2 +-
> drivers/gpu/drm/xe/xe_guc_capture.c | 79 +++++++++++++----------------
> drivers/gpu/drm/xe/xe_guc_capture.h | 4 +-
> drivers/gpu/drm/xe/xe_hw_engine.c | 29 ++++++++++-
> drivers/gpu/drm/xe/xe_hw_engine.h | 1 +
> 5 files changed, 67 insertions(+), 48 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_devcoredump.c b/drivers/gpu/drm/xe/xe_devcoredump.c
> index 006041997550..7a4610d2ea4f 100644
> --- a/drivers/gpu/drm/xe/xe_devcoredump.c
> +++ b/drivers/gpu/drm/xe/xe_devcoredump.c
> @@ -128,7 +128,7 @@ static ssize_t __xe_devcoredump_read(char *buffer, size_t count,
> drm_puts(&p, "\n**** HW Engines ****\n");
> for (i = 0; i < XE_NUM_HW_ENGINES; i++)
> if (ss->hwe[i])
> - xe_engine_snapshot_print(ss->hwe[i], &p);
> + xe_hw_engine_snapshot_print(ss->hwe[i], &p);
>
> drm_puts(&p, "\n**** VM state ****\n");
> xe_vm_snapshot_print(ss->vm, &p);
> diff --git a/drivers/gpu/drm/xe/xe_guc_capture.c b/drivers/gpu/drm/xe/xe_guc_capture.c
> index f118e8dd0ecb..76c20ff97864 100644
> --- a/drivers/gpu/drm/xe/xe_guc_capture.c
> +++ b/drivers/gpu/drm/xe/xe_guc_capture.c
> @@ -917,9 +917,10 @@ guc_capture_init_node(struct xe_guc *guc, struct xe_guc_capture_snapshot *node)
> * --------------------
> * --> xe_devcoredump_read->
> * L--> xxx_snapshot_print
> - * L--> xe_engine_snapshot_print
> - * Print register lists values saved at
> - * guc->capture->outlist
> + * L--> xe_hw_engine_print --> xe_hw_engine_snapshot_print
> + * L--> xe_guc_capture_snapshot_print
> + * Print register lists values saved in matching
> + * node from guc->capture->outlist
> *
> */
>
> @@ -1655,22 +1656,16 @@ guc_capture_find_reg(struct gcap_reg_list_info *reginfo, u32 addr, u32 flags)
> }
>
> static void
> -snapshot_print_by_list_order(struct xe_hw_engine_snapshot *snapshot, struct drm_printer *p,
> - u32 type, const struct __guc_mmio_reg_descr_group *list)
> +print_noderegs_by_list_order(struct xe_guc *guc, struct gcap_reg_list_info *reginfo,
> + const struct __guc_mmio_reg_descr_group *list, struct drm_printer *p)
> {
> - struct xe_gt *gt = snapshot->hwe->gt;
> - struct xe_guc *guc = >->uc.guc;
> - struct gcap_reg_list_info *reginfo = NULL;
> - u32 i, last_value = 0;
> + u32 last_value, i;
> bool is_ext, low32_ready = false;
>
> if (!list || !list->list || list->num_regs == 0)
> return;
>
> - XE_WARN_ON(!snapshot->matched_node);
> -
> is_ext = list == guc->capture->extlists;
> - reginfo = &snapshot->matched_node->reginfo[type];
>
> /*
> * loop through descriptor first and find the register in the node
> @@ -1740,8 +1735,8 @@ snapshot_print_by_list_order(struct xe_hw_engine_snapshot *snapshot, struct drm_
>
> group = FIELD_GET(GUC_REGSET_STEERING_GROUP, reg_desc->flags);
> instance = FIELD_GET(GUC_REGSET_STEERING_INSTANCE, reg_desc->flags);
> - dss = xe_gt_mcr_steering_info_to_dss_id(gt, group, instance);
> -
> + dss = xe_gt_mcr_steering_info_to_dss_id(guc_to_gt(guc), group,
> + instance);
> drm_printf(p, "\t%s[%u]: 0x%08x\n", reg_desc->regname, dss, value);
> } else {
> drm_printf(p, "\t%s: 0x%08x\n", reg_desc->regname, value);
> @@ -1760,13 +1755,18 @@ snapshot_print_by_list_order(struct xe_hw_engine_snapshot *snapshot, struct drm_
> }
>
> /**
> - * xe_engine_snapshot_print - Print out a given Xe HW Engine snapshot.
> - * @snapshot: Xe HW Engine snapshot object.
> + * xe_guc_capture_snapshot_print - Print out a the contents of a provided Guc-Err-Capture node
> + * @guc : Target GuC for operation.
> + * @node: GuC Error Capture register dump node.
> * @p: drm_printer where it will be printed out.
> *
> - * This function prints out a given Xe HW Engine snapshot object.
> + * This function prints out a register dump of a GuC-Err-Capture node that was retrieved
> + * earlier either by GuC-FW reporting or by manual capture depending on how the
> + * caller (typically xe_hw_engine_snapshot) was invoked and used.
> */
> -void xe_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot, struct drm_printer *p)
> +
> +void xe_guc_capture_snapshot_print(struct xe_guc *guc, struct xe_guc_capture_snapshot *node,
> + struct drm_printer *p)
> {
> const char *grptype[GUC_STATE_CAPTURE_GROUP_TYPE_MAX] = {
> "full-capture",
> @@ -1774,45 +1774,36 @@ void xe_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot, struct drm
> };
> int type;
> const struct __guc_mmio_reg_descr_group *list;
> - enum guc_capture_list_class_type capture_class;
> struct xe_gt *gt;
>
> - if (!snapshot)
> + if (!guc)
> return;
> -
> - gt = snapshot->hwe->gt;
> -
> - if (!snapshot->matched_node)
> + gt = guc_to_gt(guc);
> + if (!node) {
node was called snapshot befrore.
> + xe_gt_warn(gt, "GuC Capture printing without node!\n");
> return;
> + }
> + if (!p) {
New printer pointer check, good.
> + xe_gt_warn(gt, "GuC Capture printing without printer!\n");
> + return;
> + }
>
> - xe_gt_assert(gt, snapshot->hwe);
> -
> - capture_class = xe_engine_class_to_guc_capture_class(snapshot->hwe->class);
> -
> - drm_printf(p, "%s (physical), logical instance=%d\n",
> - snapshot->name ? snapshot->name : "",
> - snapshot->logical_instance);
> drm_printf(p, "\tCapture_source: %s\n",
> - snapshot->matched_node->source == XE_ENGINE_CAPTURE_SOURCE_GUC ?
> + node->source == XE_ENGINE_CAPTURE_SOURCE_GUC ?
> "GuC" : "Manual");
> - drm_printf(p, "\tCoverage: %s\n", grptype[snapshot->matched_node->is_partial]);
> - drm_printf(p, "\tForcewake: domain 0x%x, ref %d\n",
> - snapshot->forcewake.domain, snapshot->forcewake.ref);
> - drm_printf(p, "\tReserved: %s\n",
> - str_yes_no(snapshot->kernel_reserved));
> + drm_printf(p, "\tCoverage: %s\n", grptype[node->is_partial]);
Yes, I see the printout order was changed:
vcs0 (physical), logical instance=0
Capture_source: GuC
Coverage: full-capture
Forcewake: domain 0x8, ref 1
Reserved: no
FORCEWAKE_GT: 0x00000000
to:
vcs0 (physical), logical instance=0
Forcewake: domain 0x8, ref 1
Reserved: no
Capture_source: GuC
Coverage: full-capture
FORCEWAKE_GT: 0x00000000
The xe_exec_capture igt test can handle this change, as long as it not
cause other tools stop working, I'm fine.
Reviewed-by: Zhanjun Dong <zhanjun.dong@intel.com>
>
> for (type = GUC_STATE_CAPTURE_TYPE_GLOBAL; type < GUC_STATE_CAPTURE_TYPE_MAX; type++) {
> list = xe_guc_capture_get_reg_desc_list(gt, GUC_CAPTURE_LIST_INDEX_PF, type,
> - capture_class, false);
> - snapshot_print_by_list_order(snapshot, p, type, list);
> + node->eng_class, false);
> + print_noderegs_by_list_order(guc, &node->reginfo[type], list, p);
> }
>
> - if (capture_class == GUC_CAPTURE_LIST_CLASS_RENDER_COMPUTE) {
> + if (node->eng_class == GUC_CAPTURE_LIST_CLASS_RENDER_COMPUTE) {
> + type = GUC_STATE_CAPTURE_TYPE_ENGINE_CLASS;
> list = xe_guc_capture_get_reg_desc_list(gt, GUC_CAPTURE_LIST_INDEX_PF,
> - GUC_STATE_CAPTURE_TYPE_ENGINE_CLASS,
> - capture_class, true);
> - snapshot_print_by_list_order(snapshot, p, GUC_STATE_CAPTURE_TYPE_ENGINE_CLASS,
> - list);
> + type, node->eng_class, true);
> + print_noderegs_by_list_order(guc, &node->reginfo[type], list, p);
> }
>
> drm_puts(p, "\n");
> diff --git a/drivers/gpu/drm/xe/xe_guc_capture.h b/drivers/gpu/drm/xe/xe_guc_capture.h
> index 8ac893c92f19..e67589ab4342 100644
> --- a/drivers/gpu/drm/xe/xe_guc_capture.h
> +++ b/drivers/gpu/drm/xe/xe_guc_capture.h
> @@ -15,7 +15,6 @@
> struct xe_exec_queue;
> struct xe_guc;
> struct xe_hw_engine;
> -struct xe_hw_engine_snapshot;
>
> static inline enum guc_capture_list_class_type xe_guc_class_to_capture_class(u16 class)
> {
> @@ -55,7 +54,8 @@ struct xe_guc_capture_snapshot *
> xe_guc_capture_get_matching_and_lock(struct xe_exec_queue *q,
> enum xe_guc_capture_snapshot_source srctype);
> void xe_guc_capture_snapshot_store_manual_job(struct xe_guc *guc, struct xe_exec_queue *q);
> -void xe_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot, struct drm_printer *p);
> +void xe_guc_capture_snapshot_print(struct xe_guc *guc, struct xe_guc_capture_snapshot *node,
> + struct drm_printer *p);
> void xe_engine_snapshot_capture_for_queue(struct xe_exec_queue *q);
> void xe_guc_capture_steered_list_init(struct xe_guc *guc);
> void xe_guc_capture_put_matched_nodes(struct xe_guc *guc, struct xe_guc_capture_snapshot *n);
> diff --git a/drivers/gpu/drm/xe/xe_hw_engine.c b/drivers/gpu/drm/xe/xe_hw_engine.c
> index 02871d319471..c980a5c84a8b 100644
> --- a/drivers/gpu/drm/xe/xe_hw_engine.c
> +++ b/drivers/gpu/drm/xe/xe_hw_engine.c
> @@ -907,6 +907,33 @@ void xe_hw_engine_snapshot_free(struct xe_hw_engine_snapshot *snapshot)
> kfree(snapshot);
> }
>
> +/**
> + * xe_hw_engine_snapshot_print - Print out a given Xe HW Engine snapshot.
> + * @snapshot: Xe HW Engine snapshot object.
> + * @p: drm_printer where it will be printed out.
> + *
> + * This function prints out a given Xe HW Engine snapshot object.
> + */
> +void xe_hw_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot, struct drm_printer *p)
> +{
> + struct xe_gt *gt;
> +
> + if (!snapshot)
> + return;
> +
> + gt = snapshot->hwe->gt;
> +
> + drm_printf(p, "%s (physical), logical instance=%d\n",
> + snapshot->name ? snapshot->name : "",
> + snapshot->logical_instance);
> + drm_printf(p, "\tForcewake: domain 0x%x, ref %d\n",
> + snapshot->forcewake.domain, snapshot->forcewake.ref);
> + drm_printf(p, "\tReserved: %s\n",
> + str_yes_no(snapshot->kernel_reserved));
> +
> + xe_guc_capture_snapshot_print(>->uc.guc, snapshot->matched_node, p);
> +}
> +
> /**
> * xe_hw_engine_print - Xe HW Engine Print.
> * @hwe: Hardware Engine.
> @@ -919,7 +946,7 @@ void xe_hw_engine_print(struct xe_hw_engine *hwe, struct drm_printer *p)
> struct xe_hw_engine_snapshot *snapshot;
>
> snapshot = xe_hw_engine_snapshot_capture(hwe, NULL);
> - xe_engine_snapshot_print(snapshot, p);
> + xe_hw_engine_snapshot_print(snapshot, p);
> xe_hw_engine_snapshot_free(snapshot);
> }
>
> diff --git a/drivers/gpu/drm/xe/xe_hw_engine.h b/drivers/gpu/drm/xe/xe_hw_engine.h
> index 6b5f9fa2a594..069b32aa7423 100644
> --- a/drivers/gpu/drm/xe/xe_hw_engine.h
> +++ b/drivers/gpu/drm/xe/xe_hw_engine.h
> @@ -58,6 +58,7 @@ u32 xe_hw_engine_mask_per_class(struct xe_gt *gt,
> struct xe_hw_engine_snapshot *
> xe_hw_engine_snapshot_capture(struct xe_hw_engine *hwe, struct xe_exec_queue *q);
> void xe_hw_engine_snapshot_free(struct xe_hw_engine_snapshot *snapshot);
> +void xe_hw_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot, struct drm_printer *p);
> void xe_hw_engine_print(struct xe_hw_engine *hwe, struct drm_printer *p);
> void xe_hw_engine_setup_default_lrc_state(struct xe_hw_engine *hwe);
>
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [PATCH v7 6/6] drm/xe/guc: Update comments on GuC-Err-Capture flows
2025-02-10 23:32 ` [PATCH v7 6/6] drm/xe/guc: Update comments on GuC-Err-Capture flows Alan Previn
@ 2025-02-11 23:09 ` Dong, Zhanjun
2025-02-12 18:54 ` Teres Alexis, Alan Previn
0 siblings, 1 reply; 23+ messages in thread
From: Dong, Zhanjun @ 2025-02-11 23:09 UTC (permalink / raw)
To: Alan Previn, intel-xe
Cc: dri-devel, Daniele Ceraolo Spurio, John Harrison, Matthew Brost,
Rodrigo Vivi
On 2025-02-10 6:32 p.m., Alan Previn wrote:
> Update the comments on GuC-Err-Capture flows with the
> updated function names.
>
> Signed-off-by: Alan Previn <alan.previn.teres.alexis@intel.com>
> ---
> drivers/gpu/drm/xe/xe_guc_capture.c | 19 +++++++++++--------
> 1 file changed, 11 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_guc_capture.c b/drivers/gpu/drm/xe/xe_guc_capture.c
> index 746d3b21b18b..15f9b08ff7bb 100644
> --- a/drivers/gpu/drm/xe/xe_guc_capture.c
> +++ b/drivers/gpu/drm/xe/xe_guc_capture.c
> @@ -905,22 +905,25 @@ guc_capture_init_node(struct xe_guc *guc, struct xe_guc_capture_snapshot *node)
> * list. This list is used for matchup and printout by xe_devcoredump_read
> * and xe_engine_snapshot_print, (when user invokes the devcoredump sysfs).
> *
> - * GUC --> notify context reset:
> - * -----------------------------
> + * DRM Scheduler job-timeout OR GuC-notify guc-id reset:
> + * -----------------------------------------------------
> * --> guc_exec_queue_timedout_job
> - * L--> xe_devcoredump
> + * L--> xe_guc_capture_snapshot_store_manual_job (if GuC didn't report an
> + * error capture node for this job)
> + * L--> xe_devcoredump
> * L--> devcoredump_snapshot
> - * --> xe_hw_engine_snapshot_capture
> - * --> xe_engine_manual_capture(For manual capture)
> + * --> xe_engine_snapshot_capture_for_queue
> *
> - * User Sysfs / Debugfs
> - * --------------------
> - * --> xe_devcoredump_read->
> + * User Devcoredump Sysfs
> + * ----------------------
> + * --> xe_devcoredump_read-> (user cats devcoredump)
> * L--> xxx_snapshot_print
> * L--> xe_hw_engine_print --> xe_hw_engine_snapshot_print
> * L--> xe_guc_capture_snapshot_print
L--> hw_engine_snapshot_capture
xe_guc_capture_snapshot_manual_hwe
// The new function which do manual capture without job
And, for debugfs, it did not calls xe_devcoredump_read...
instead, by "hw_engines". Shall we mention debugfs call
xe_hw_engine_print directly?
Other than that, LGTM
Reviewed-by: Zhanjun Dong <zhanjun.dong@intel.com>
> * Print register lists values saved in matching
> * node from guc->capture->outlist
> + * --> xe_devcoredump_free (when user clears the dump)
> + * L--> xe_devcoredump_snapshot_free --> xe_guc_capture_put_matched_nodes
> *
> */
>
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [PATCH v7 4/6] drm/xe/guc: Move xe_hw_engine_snapshot creation back to xe_hw_engine.c
2025-02-10 23:32 ` [PATCH v7 4/6] drm/xe/guc: Move xe_hw_engine_snapshot creation back to xe_hw_engine.c Alan Previn
@ 2025-02-12 17:19 ` Dong, Zhanjun
0 siblings, 0 replies; 23+ messages in thread
From: Dong, Zhanjun @ 2025-02-12 17:19 UTC (permalink / raw)
To: Alan Previn, intel-xe
Cc: dri-devel, Daniele Ceraolo Spurio, John Harrison, Matthew Brost,
Rodrigo Vivi
LGTM
Reviewed-by: Zhanjun Dong <zhanjun.dong@intel.com>
On 2025-02-10 6:32 p.m., Alan Previn wrote:
> xe_devcoredump calls xe_engine_snapshot_capture_for_queue() to allocate
> and populate the xe_hw_engine_snapshot structure. Move that function
> back into xe_hw_engine.c since it doesn't make sense for
> GuC-Err-Capture to allocate a structure it doesn't own.
>
> v7: Rename function to respect "xe_hw_engine" namespace (Rodrigo)
>
> Signed-off-by: Alan Previn <alan.previn.teres.alexis@intel.com>
> ---
> drivers/gpu/drm/xe/xe_devcoredump.c | 2 +-
> drivers/gpu/drm/xe/xe_guc_capture.c | 30 -----------------------
> drivers/gpu/drm/xe/xe_guc_capture.h | 1 -
> drivers/gpu/drm/xe/xe_hw_engine.c | 38 ++++++++++++++++++++++++++---
> drivers/gpu/drm/xe/xe_hw_engine.h | 3 +--
> 5 files changed, 36 insertions(+), 38 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_devcoredump.c b/drivers/gpu/drm/xe/xe_devcoredump.c
> index 7a4610d2ea4f..6cbb4fce8ef2 100644
> --- a/drivers/gpu/drm/xe/xe_devcoredump.c
> +++ b/drivers/gpu/drm/xe/xe_devcoredump.c
> @@ -311,7 +311,7 @@ static void devcoredump_snapshot(struct xe_devcoredump *coredump,
> ss->job = xe_sched_job_snapshot_capture(job);
> ss->vm = xe_vm_snapshot_capture(q->vm);
>
> - xe_engine_snapshot_capture_for_queue(q);
> + xe_hw_engine_snapshot_capture_for_queue(q);
>
> queue_work(system_unbound_wq, &ss->work);
>
> diff --git a/drivers/gpu/drm/xe/xe_guc_capture.c b/drivers/gpu/drm/xe/xe_guc_capture.c
> index 76c20ff97864..ff16bed86b77 100644
> --- a/drivers/gpu/drm/xe/xe_guc_capture.c
> +++ b/drivers/gpu/drm/xe/xe_guc_capture.c
> @@ -1867,36 +1867,6 @@ xe_guc_capture_get_matching_and_lock(struct xe_exec_queue *q,
> return NULL;
> }
>
> -/**
> - * xe_engine_snapshot_capture_for_queue - Take snapshot of associated engine
> - * @q: The exec queue object
> - *
> - * Take snapshot of associated HW Engine
> - *
> - * Returns: None.
> - */
> -void
> -xe_engine_snapshot_capture_for_queue(struct xe_exec_queue *q)
> -{
> - struct xe_device *xe = gt_to_xe(q->gt);
> - struct xe_devcoredump *coredump = &xe->devcoredump;
> - struct xe_hw_engine *hwe;
> - enum xe_hw_engine_id id;
> - u32 adj_logical_mask = q->logical_mask;
> -
> - if (IS_SRIOV_VF(xe))
> - return;
> -
> - for_each_hw_engine(hwe, q->gt, id) {
> - if (hwe->class != q->hwe->class ||
> - !(BIT(hwe->logical_instance) & adj_logical_mask)) {
> - coredump->snapshot.hwe[id] = NULL;
> - continue;
> - }
> - coredump->snapshot.hwe[id] = xe_hw_engine_snapshot_capture(hwe, q);
> - }
> -}
> -
> /*
> * xe_guc_capture_put_matched_nodes - Cleanup matched nodes
> * @guc: The GuC object
> diff --git a/drivers/gpu/drm/xe/xe_guc_capture.h b/drivers/gpu/drm/xe/xe_guc_capture.h
> index e67589ab4342..77ee35a3f205 100644
> --- a/drivers/gpu/drm/xe/xe_guc_capture.h
> +++ b/drivers/gpu/drm/xe/xe_guc_capture.h
> @@ -56,7 +56,6 @@ xe_guc_capture_get_matching_and_lock(struct xe_exec_queue *q,
> void xe_guc_capture_snapshot_store_manual_job(struct xe_guc *guc, struct xe_exec_queue *q);
> void xe_guc_capture_snapshot_print(struct xe_guc *guc, struct xe_guc_capture_snapshot *node,
> struct drm_printer *p);
> -void xe_engine_snapshot_capture_for_queue(struct xe_exec_queue *q);
> void xe_guc_capture_steered_list_init(struct xe_guc *guc);
> void xe_guc_capture_put_matched_nodes(struct xe_guc *guc, struct xe_guc_capture_snapshot *n);
> int xe_guc_capture_init(struct xe_guc *guc);
> diff --git a/drivers/gpu/drm/xe/xe_hw_engine.c b/drivers/gpu/drm/xe/xe_hw_engine.c
> index c980a5c84a8b..fef01d2086a8 100644
> --- a/drivers/gpu/drm/xe/xe_hw_engine.c
> +++ b/drivers/gpu/drm/xe/xe_hw_engine.c
> @@ -830,7 +830,7 @@ void xe_hw_engine_handle_irq(struct xe_hw_engine *hwe, u16 intr_vec)
> }
>
> /**
> - * xe_hw_engine_snapshot_capture - Take a quick snapshot of the HW Engine.
> + * hw_engine_snapshot_capture - Take a quick snapshot of the HW Engine.
> * @hwe: Xe HW Engine.
> * @q: The exec queue object.
> *
> @@ -840,8 +840,8 @@ void xe_hw_engine_handle_irq(struct xe_hw_engine *hwe, u16 intr_vec)
> * Returns: a Xe HW Engine snapshot object that must be freed by the
> * caller, using `xe_hw_engine_snapshot_free`.
> */
> -struct xe_hw_engine_snapshot *
> -xe_hw_engine_snapshot_capture(struct xe_hw_engine *hwe, struct xe_exec_queue *q)
> +static struct xe_hw_engine_snapshot *
> +hw_engine_snapshot_capture(struct xe_hw_engine *hwe, struct xe_exec_queue *q)
> {
> struct xe_hw_engine_snapshot *snapshot;
> struct xe_guc_capture_snapshot *node;
> @@ -887,6 +887,36 @@ xe_hw_engine_snapshot_capture(struct xe_hw_engine *hwe, struct xe_exec_queue *q)
> return snapshot;
> }
>
> +/**
> + * xe_hw_engine_snapshot_capture_for_queue - Take snapshot of associated engine
> + * @q: The exec queue object
> + *
> + * Take snapshot of associated HW Engine
> + *
> + * Returns: None.
> + */
> +void
> +xe_hw_engine_snapshot_capture_for_queue(struct xe_exec_queue *q)
> +{
> + struct xe_device *xe = gt_to_xe(q->gt);
> + struct xe_devcoredump *coredump = &xe->devcoredump;
> + struct xe_hw_engine *hwe;
> + enum xe_hw_engine_id id;
> + u32 adj_logical_mask = q->logical_mask;
> +
> + if (IS_SRIOV_VF(xe))
> + return;
> +
> + for_each_hw_engine(hwe, q->gt, id) {
> + if (hwe->class != q->hwe->class ||
> + !(BIT(hwe->logical_instance) & adj_logical_mask)) {
> + coredump->snapshot.hwe[id] = NULL;
> + continue;
> + }
> + coredump->snapshot.hwe[id] = hw_engine_snapshot_capture(hwe, q);
> + }
> +}
> +
> /**
> * xe_hw_engine_snapshot_free - Free all allocated objects for a given snapshot.
> * @snapshot: Xe HW Engine snapshot object.
> @@ -945,7 +975,7 @@ void xe_hw_engine_print(struct xe_hw_engine *hwe, struct drm_printer *p)
> {
> struct xe_hw_engine_snapshot *snapshot;
>
> - snapshot = xe_hw_engine_snapshot_capture(hwe, NULL);
> + snapshot = hw_engine_snapshot_capture(hwe, NULL);
> xe_hw_engine_snapshot_print(snapshot, p);
> xe_hw_engine_snapshot_free(snapshot);
> }
> diff --git a/drivers/gpu/drm/xe/xe_hw_engine.h b/drivers/gpu/drm/xe/xe_hw_engine.h
> index 069b32aa7423..74f6ea0c8d3e 100644
> --- a/drivers/gpu/drm/xe/xe_hw_engine.h
> +++ b/drivers/gpu/drm/xe/xe_hw_engine.h
> @@ -55,8 +55,7 @@ void xe_hw_engine_handle_irq(struct xe_hw_engine *hwe, u16 intr_vec);
> void xe_hw_engine_enable_ring(struct xe_hw_engine *hwe);
> u32 xe_hw_engine_mask_per_class(struct xe_gt *gt,
> enum xe_engine_class engine_class);
> -struct xe_hw_engine_snapshot *
> -xe_hw_engine_snapshot_capture(struct xe_hw_engine *hwe, struct xe_exec_queue *q);
> +void xe_hw_engine_snapshot_capture_for_queue(struct xe_exec_queue *q);
> void xe_hw_engine_snapshot_free(struct xe_hw_engine_snapshot *snapshot);
> void xe_hw_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot, struct drm_printer *p);
> void xe_hw_engine_print(struct xe_hw_engine *hwe, struct drm_printer *p);
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [PATCH v7 5/6] drm/xe/xe_hw_engine: Update xe_hw_engine capture for debugfs/gt_reset
2025-02-11 17:34 ` Teres Alexis, Alan Previn
@ 2025-02-12 18:24 ` Dong, Zhanjun
0 siblings, 0 replies; 23+ messages in thread
From: Dong, Zhanjun @ 2025-02-12 18:24 UTC (permalink / raw)
To: Teres Alexis, Alan Previn, intel-xe@lists.freedesktop.org
Cc: dri-devel@lists.freedesktop.org, Harrison, John C, Brost, Matthew,
Ceraolo Spurio, Daniele, Vivi, Rodrigo
If rename is the only change in next revision, that's fine to me.
Reviewed-by: Zhanjun Dong <zhanjun.dong@intel.com>
On 2025-02-11 12:34 p.m., Teres Alexis, Alan Previn wrote:
> On Mon, 2025-02-10 at 15:32 -0800, Teres Alexis, Alan Previn wrote:
>> xe_hw_engine_print is called by debugfs to do an immediate raw
>> --- a/drivers/gpu/drm/xe/xe_guc_capture_snapshot_types.h
>> +++ b/drivers/gpu/drm/xe/xe_guc_capture_snapshot_types.h
>> @@ -12,7 +12,11 @@
>> struct guc_mmio_reg;
>>
>> enum xe_guc_capture_snapshot_source {
>> - XE_ENGINE_CAPTURE_SOURCE_MANUAL,
>> + /* KMD captured engine registers when job timeout is detected */
>> + XE_ENGINE_CAPTURE_SOURCE_MANUAL_JOB,
>> + /* KMD captured raw engine registers without any job association */
>> + XE_ENGINE_CAPTURE_SOURCE_MANUAL_RAW,
>> + /* GUC-FW captured engine registers before workload was killed */
>> XE_ENGINE_CAPTURE_SOURCE_GUC
>> };
>>
> alan: some offline feedback was given to rename the enum to match:
> "enum xe_guc_capture_snapshot_source" -> "enum xe_engine_capture_source"
>
>
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [PATCH v7 3/6] drm/xe/guc: Split engine state print between xe_hw_engine vs xe_guc_capture
2025-02-11 22:48 ` Dong, Zhanjun
@ 2025-02-12 18:50 ` Teres Alexis, Alan Previn
0 siblings, 0 replies; 23+ messages in thread
From: Teres Alexis, Alan Previn @ 2025-02-12 18:50 UTC (permalink / raw)
To: Dong, Zhanjun, intel-xe@lists.freedesktop.org
Cc: dri-devel@lists.freedesktop.org, Harrison, John C, Brost, Matthew,
Ceraolo Spurio, Daniele, Vivi, Rodrigo
On Tue, 2025-02-11 at 17:48 -0500, Dong, Zhanjun wrote:
>
>
> On 2025-02-10 6:32 p.m., Alan Previn wrote:
> > Relocate the xe_engine_snapshot_print function from xe_guc_capture.c
> > into xe_hw_engine.c but split out the GuC-Err-Capture register printing
> > portion out into a separate helper inside xe_guc_capture.c so that
> > we can have a clear separation between printing the general engine info
> > vs GuC-Err-Capture node's register list.
> >
> > v7: - Fix function name to respect "xe_hw_engine" name space. (Rodrigo)
> > - Remove additional newline in engine dump (Jose Souza) +
> > ensure changes didn't break mesa's aubinator tool (Rodrigo)
> >
> > Signed-off-by: Alan Previn <alan.previn.teres.alexis@intel.com>
> > ---
> > drivers/gpu/drm/xe/xe_devcoredump.c | 2 +-
> > drivers/gpu/drm/xe/xe_guc_capture.c | 79 +++++++++++++----------------
> > drivers/gpu/drm/xe/xe_guc_capture.h | 4 +-
> > drivers/gpu/drm/xe/xe_hw_engine.c | 29 ++++++++++-
> > drivers/gpu/drm/xe/xe_hw_engine.h | 1 +
> > 5 files changed, 67 insertions(+), 48 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_devcoredump.c b/drivers/gpu/drm/xe/xe_devcoredump.c
> > index 006041997550..7a4610d2ea4f 100644
> > --- a/drivers/gpu/drm/xe/xe_devcoredump.c
> > +++ b/drivers/gpu/drm/xe/xe_devcoredump.c
> > @@ -128,7 +128,7 @@ static ssize_t __xe_devcoredump_read(char *buffer, size_t count,
> > drm_puts(&p, "\n**** HW Engines ****\n");
> > for (i = 0; i < XE_NUM_HW_ENGINES; i++)
> > if (ss->hwe[i])
> > - xe_engine_snapshot_print(ss->hwe[i], &p);
> > + xe_hw_engine_snapshot_print(ss->hwe[i], &p);
> >
> > drm_puts(&p, "\n**** VM state ****\n");
> > xe_vm_snapshot_print(ss->vm, &p);
> > diff --git a/drivers/gpu/drm/xe/xe_guc_capture.c b/drivers/gpu/drm/xe/xe_guc_capture.c
> > index f118e8dd0ecb..76c20ff97864 100644
> > --- a/drivers/gpu/drm/xe/xe_guc_capture.c
> > +++ b/drivers/gpu/drm/xe/xe_guc_capture.c
> > @@ -917,9 +917,10 @@ guc_capture_init_node(struct xe_guc *guc, struct xe_guc_capture_snapshot *node)
> > * --------------------
> > * --> xe_devcoredump_read->
> > * L--> xxx_snapshot_print
> > - * L--> xe_engine_snapshot_print
> > - * Print register lists values saved at
> > - * guc->capture->outlist
> > + * L--> xe_hw_engine_print --> xe_hw_engine_snapshot_print
> > + * L--> xe_guc_capture_snapshot_print
> > + * Print register lists values saved in matching
> > + * node from guc->capture->outlist
> > *
> > */
> >
> > @@ -1655,22 +1656,16 @@ guc_capture_find_reg(struct gcap_reg_list_info *reginfo, u32 addr, u32 flags)
> > }
> >
> > static void
> > -snapshot_print_by_list_order(struct xe_hw_engine_snapshot *snapshot, struct drm_printer *p,
> > - u32 type, const struct __guc_mmio_reg_descr_group *list)
> > +print_noderegs_by_list_order(struct xe_guc *guc, struct gcap_reg_list_info *reginfo,
> > + const struct __guc_mmio_reg_descr_group *list, struct drm_printer *p)
> > {
> > - struct xe_gt *gt = snapshot->hwe->gt;
> > - struct xe_guc *guc = >->uc.guc;
> > - struct gcap_reg_list_info *reginfo = NULL;
> > - u32 i, last_value = 0;
> > + u32 last_value, i;
> > bool is_ext, low32_ready = false;
> >
> > if (!list || !list->list || list->num_regs == 0)
> > return;
> >
> > - XE_WARN_ON(!snapshot->matched_node);
> > -
> > is_ext = list == guc->capture->extlists;
> > - reginfo = &snapshot->matched_node->reginfo[type];
> >
> > /*
> > * loop through descriptor first and find the register in the node
> > @@ -1740,8 +1735,8 @@ snapshot_print_by_list_order(struct xe_hw_engine_snapshot *snapshot, struct drm_
> >
> > group = FIELD_GET(GUC_REGSET_STEERING_GROUP, reg_desc->flags);
> > instance = FIELD_GET(GUC_REGSET_STEERING_INSTANCE, reg_desc->flags);
> > - dss = xe_gt_mcr_steering_info_to_dss_id(gt, group, instance);
> > -
> > + dss = xe_gt_mcr_steering_info_to_dss_id(guc_to_gt(guc), group,
> > + instance);
> > drm_printf(p, "\t%s[%u]: 0x%08x\n", reg_desc->regname, dss, value);
> > } else {
> > drm_printf(p, "\t%s: 0x%08x\n", reg_desc->regname, value);
> > @@ -1760,13 +1755,18 @@ snapshot_print_by_list_order(struct xe_hw_engine_snapshot *snapshot, struct drm_
> > }
> >
> > /**
> > - * xe_engine_snapshot_print - Print out a given Xe HW Engine snapshot.
> > - * @snapshot: Xe HW Engine snapshot object.
> > + * xe_guc_capture_snapshot_print - Print out a the contents of a provided Guc-Err-Capture node
> > + * @guc : Target GuC for operation.
> > + * @node: GuC Error Capture register dump node.
> > * @p: drm_printer where it will be printed out.
> > *
> > - * This function prints out a given Xe HW Engine snapshot object.
> > + * This function prints out a register dump of a GuC-Err-Capture node that was retrieved
> > + * earlier either by GuC-FW reporting or by manual capture depending on how the
> > + * caller (typically xe_hw_engine_snapshot) was invoked and used.
> > */
> > -void xe_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot, struct drm_printer *p)
> > +
> > +void xe_guc_capture_snapshot_print(struct xe_guc *guc, struct xe_guc_capture_snapshot *node,
> > + struct drm_printer *p)
> > {
> > const char *grptype[GUC_STATE_CAPTURE_GROUP_TYPE_MAX] = {
> > "full-capture",
> > @@ -1774,45 +1774,36 @@ void xe_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot, struct drm
> > };
> > int type;
> > const struct __guc_mmio_reg_descr_group *list;
> > - enum guc_capture_list_class_type capture_class;
> > struct xe_gt *gt;
> >
> > - if (!snapshot)
> > + if (!guc)
> > return;
> > -
> > - gt = snapshot->hwe->gt;
> > -
> > - if (!snapshot->matched_node)
> > + gt = guc_to_gt(guc);
> > + if (!node) {
> node was called snapshot befrore.
alan: yes i did - previously snapshot was one-level up of xe_hw_engine that included other things
alongside the matching node from guc-err-capture but with this patch i wanted to streamline this
this helper since it only needs access to the node and nothing else.
> > + xe_gt_warn(gt, "GuC Capture printing without node!\n");
> > return;
> > + }
> > + if (!p) {
> New printer pointer check, good.
> > + xe_gt_warn(gt, "GuC Capture printing without printer!\n");
> > + return;
> > + }
> >
> > - xe_gt_assert(gt, snapshot->hwe);
> > -
> > - capture_class = xe_engine_class_to_guc_capture_class(snapshot->hwe->class);
> > -
> > - drm_printf(p, "%s (physical), logical instance=%d\n",
> > - snapshot->name ? snapshot->name : "",
> > - snapshot->logical_instance);
> > drm_printf(p, "\tCapture_source: %s\n",
> > - snapshot->matched_node->source == XE_ENGINE_CAPTURE_SOURCE_GUC ?
> > + node->source == XE_ENGINE_CAPTURE_SOURCE_GUC ?
> > "GuC" : "Manual");
> > - drm_printf(p, "\tCoverage: %s\n", grptype[snapshot->matched_node->is_partial]);
> > - drm_printf(p, "\tForcewake: domain 0x%x, ref %d\n",
> > - snapshot->forcewake.domain, snapshot->forcewake.ref);
> > - drm_printf(p, "\tReserved: %s\n",
> > - str_yes_no(snapshot->kernel_reserved));
> > + drm_printf(p, "\tCoverage: %s\n", grptype[node->is_partial]);
> Yes, I see the printout order was changed:
> vcs0 (physical), logical instance=0
> Capture_source: GuC
> Coverage: full-capture
> Forcewake: domain 0x8, ref 1
> Reserved: no
> FORCEWAKE_GT: 0x00000000
> to:
> vcs0 (physical), logical instance=0
> Forcewake: domain 0x8, ref 1
> Reserved: no
> Capture_source: GuC
> Coverage: full-capture
> FORCEWAKE_GT: 0x00000000
> The xe_exec_capture igt test can handle this change, as long as it not
> cause other tools stop working, I'm fine.
>
> Reviewed-by: Zhanjun Dong <zhanjun.dong@intel.com>
alan: Thanks for the RB and yes - we tested it with mesa tool also.
alan:snip
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [PATCH v7 6/6] drm/xe/guc: Update comments on GuC-Err-Capture flows
2025-02-11 23:09 ` Dong, Zhanjun
@ 2025-02-12 18:54 ` Teres Alexis, Alan Previn
0 siblings, 0 replies; 23+ messages in thread
From: Teres Alexis, Alan Previn @ 2025-02-12 18:54 UTC (permalink / raw)
To: Dong, Zhanjun, intel-xe@lists.freedesktop.org
Cc: dri-devel@lists.freedesktop.org, Harrison, John C, Brost, Matthew,
Ceraolo Spurio, Daniele, Vivi, Rodrigo
On Tue, 2025-02-11 at 18:09 -0500, Dong, Zhanjun wrote:
>
> >
alan:snip
> > *
> > - * User Sysfs / Debugfs
> > - * --------------------
> > - * --> xe_devcoredump_read->
> > + * User Devcoredump Sysfs
> > + * ----------------------
> > + * --> xe_devcoredump_read-> (user cats devcoredump)
> > * L--> xxx_snapshot_print
> > * L--> xe_hw_engine_print --> xe_hw_engine_snapshot_print
> > * L--> xe_guc_capture_snapshot_print
> L--> hw_engine_snapshot_capture
> xe_guc_capture_snapshot_manual_hwe
> // The new function which do manual capture without job
> And, for debugfs, it did not calls xe_devcoredump_read...
> instead, by "hw_engines". Shall we mention debugfs call
> xe_hw_engine_print directly?
>
> Other than that, LGTM
> Reviewed-by: Zhanjun Dong <zhanjun.dong@intel.com>
>
alan: thanks - i will add a new section to differentiate
"User->sysfs devcore dump" vs "User->debugfs engine dump" - both with similiar endpoints ending with
xe_hw_engine_snapshot_print->xe_guc_capture_snapshot_print
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: ✗ Xe.CI.Full: failure for Maintenence of devcoredump <-> GuC-Err-Capture plumbing
2025-02-11 13:01 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-02-13 0:56 ` Teres Alexis, Alan Previn
0 siblings, 0 replies; 23+ messages in thread
From: Teres Alexis, Alan Previn @ 2025-02-13 0:56 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org
On Tue, 2025-02-11 at 13:01 +0000, Patchwork wrote:
> Patch Details
> Series: Maintenence of devcoredump <-> GuC-Err-Capture plumbing URL: https://patchwork.freedesktop.org/series/144634/
> State: failure Details: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144634v1/index.html
> CI Bug Log - changes from xe-2635-2fc58ab10139895686001c7e1ee247f15226abc4_full -> xe-pw-144634v1_fullSummaryFAILURE
> Serious unknown changes coming with xe-pw-144634v1_full absolutely need to be
> verified manually.
> If you think the reported changes have nothing to do with the changes
> introduced in xe-pw-144634v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
> to document this new failure mode, which will reduce false positives in CI.
> Participating hosts (4 -> 4)No changes in participating hosts
> Possible new issuesHere are the unknown changes that may have been introduced in xe-pw-144634v1_full:
> IGT changesPossible regressions * igt@kms_dp_linktrain_fallback@dp-fallback:shard-dg2-set2: NOTRUN -> SKIP +1 other
> test skip
> * igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a6:shard-dg2-set2: PASS -> FAIL
> * igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a2:shard-dg2-set2: NOTRUN -> FAIL
> * igt@kms_rmfb@rmfb-ioctl:shard-adlp: PASS -> DMESG-WARN +6 other tests dmesg-warn
> * igt@xe_pm@s2idle-exec-after:shard-dg2-set2: PASS -> ABORT
> * igt@xe_pm_residency@toggle-gt-c6:shard-bmg: PASS -> INCOMPLETE +1 other test incomplete
checked out all of them and they all seem unrelated. mostly display related issues.
alan:snip
^ permalink raw reply [flat|nested] 23+ messages in thread
end of thread, other threads:[~2025-02-13 0:56 UTC | newest]
Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-10 23:32 [PATCH v7 0/6] Maintenence of devcoredump <-> GuC-Err-Capture plumbing Alan Previn
2025-02-10 23:32 ` [PATCH v7 1/6] drm/xe/guc: Rename __guc_capture_parsed_output Alan Previn
2025-02-10 23:32 ` [PATCH v7 2/6] drm/xe/guc: Don't store capture nodes in xe_devcoredump_snapshot Alan Previn
2025-02-10 23:32 ` [PATCH v7 3/6] drm/xe/guc: Split engine state print between xe_hw_engine vs xe_guc_capture Alan Previn
2025-02-11 22:48 ` Dong, Zhanjun
2025-02-12 18:50 ` Teres Alexis, Alan Previn
2025-02-10 23:32 ` [PATCH v7 4/6] drm/xe/guc: Move xe_hw_engine_snapshot creation back to xe_hw_engine.c Alan Previn
2025-02-12 17:19 ` Dong, Zhanjun
2025-02-10 23:32 ` [PATCH v7 5/6] drm/xe/xe_hw_engine: Update xe_hw_engine capture for debugfs/gt_reset Alan Previn
2025-02-11 17:34 ` Teres Alexis, Alan Previn
2025-02-12 18:24 ` Dong, Zhanjun
2025-02-10 23:32 ` [PATCH v7 6/6] drm/xe/guc: Update comments on GuC-Err-Capture flows Alan Previn
2025-02-11 23:09 ` Dong, Zhanjun
2025-02-12 18:54 ` Teres Alexis, Alan Previn
2025-02-11 0:38 ` ✓ CI.Patch_applied: success for Maintenence of devcoredump <-> GuC-Err-Capture plumbing Patchwork
2025-02-11 0:38 ` ✗ CI.checkpatch: warning " Patchwork
2025-02-11 0:39 ` ✓ CI.KUnit: success " Patchwork
2025-02-11 0:56 ` ✓ CI.Build: " Patchwork
2025-02-11 0:57 ` ✗ CI.Hooks: failure " Patchwork
2025-02-11 0:58 ` ✗ CI.checksparse: warning " Patchwork
2025-02-11 1:18 ` ✓ Xe.CI.BAT: success " Patchwork
2025-02-11 13:01 ` ✗ Xe.CI.Full: failure " Patchwork
2025-02-13 0:56 ` Teres Alexis, Alan Previn
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox