* [PATCH v5 00/11] Updates for drm/xe/configfs
@ 2025-07-29 11:42 Michal Wajdeczko
2025-07-29 11:42 ` [PATCH v5 01/11] drm/xe: Simplify module initialization code Michal Wajdeczko
` (13 more replies)
0 siblings, 14 replies; 29+ messages in thread
From: Michal Wajdeczko @ 2025-07-29 11:42 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko
v4: https://patchwork.freedesktop.org/series/151773/#rev5
v5: separate mutex_destroy/pr_err changes (Rodrigo)
drop use mutex from xe_configfs subsystem (Rodrigo)
Michal Wajdeczko (11):
drm/xe: Simplify module initialization code
drm/xe: Print module init abort code
drm/xe/configfs: Destroy xe_configfs.su_mutex on exit/error
drm/xe/configfs: Drop redundant init() error message
drm/xe/configfs: Rename struct xe_config_device
drm/xe/configfs: Rename configfs_find_group() helper
drm/xe/configfs: Reintroduce struct xe_config_device
drm/xe/configfs: Keep default device config settings together
drm/xe/configfs: Check if device was preconfigured
drm/xe/configfs: Only allow configurations for supported devices
drm/xe/configfs: Allow adding configurations for future VFs
drivers/gpu/drm/xe/xe_configfs.c | 140 ++++++++++++++++++++++++-------
drivers/gpu/drm/xe/xe_configfs.h | 2 +
drivers/gpu/drm/xe/xe_module.c | 29 +++----
drivers/gpu/drm/xe/xe_pci.c | 3 +
4 files changed, 125 insertions(+), 49 deletions(-)
--
2.47.1
^ permalink raw reply [flat|nested] 29+ messages in thread
* [PATCH v5 01/11] drm/xe: Simplify module initialization code
2025-07-29 11:42 [PATCH v5 00/11] Updates for drm/xe/configfs Michal Wajdeczko
@ 2025-07-29 11:42 ` Michal Wajdeczko
2025-07-29 11:42 ` [PATCH v5 02/11] drm/xe: Print module init abort code Michal Wajdeczko
` (12 subsequent siblings)
13 siblings, 0 replies; 29+ messages in thread
From: Michal Wajdeczko @ 2025-07-29 11:42 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lucas De Marchi, Rodrigo Vivi, John Harrison
There is no need to have extra checks and WARN() in the helpers
as instead of an index of the entry with function pointers, we
can pass pointer to the entry which we prepare directly in the
main loop, that is guaranteed to be valid.
add/remove: 0/0 grow/shrink: 0/4 up/down: 0/-180 (-180)
Function old new delta
xe_exit 109 79 -30
cleanup_module 109 79 -30
xe_init 248 188 -60
init_module 248 188 -60
Total: Before=2774145, After=2773965, chg -0.01%
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: John Harrison <John.C.Harrison@Intel.com>
---
v2: use clearer pointer logic (John)
---
drivers/gpu/drm/xe/xe_module.c | 27 ++++++++++-----------------
1 file changed, 10 insertions(+), 17 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_module.c b/drivers/gpu/drm/xe/xe_module.c
index d9391bd08194..cfed36361613 100644
--- a/drivers/gpu/drm/xe/xe_module.c
+++ b/drivers/gpu/drm/xe/xe_module.c
@@ -135,24 +135,17 @@ static const struct init_funcs init_funcs[] = {
},
};
-static int __init xe_call_init_func(unsigned int i)
+static int __init xe_call_init_func(const struct init_funcs *func)
{
- if (WARN_ON(i >= ARRAY_SIZE(init_funcs)))
- return 0;
- if (!init_funcs[i].init)
- return 0;
-
- return init_funcs[i].init();
+ if (func->init)
+ return func->init();
+ return 0;
}
-static void xe_call_exit_func(unsigned int i)
+static void xe_call_exit_func(const struct init_funcs *func)
{
- if (WARN_ON(i >= ARRAY_SIZE(init_funcs)))
- return;
- if (!init_funcs[i].exit)
- return;
-
- init_funcs[i].exit();
+ if (func->exit)
+ func->exit();
}
static int __init xe_init(void)
@@ -160,10 +153,10 @@ static int __init xe_init(void)
int err, i;
for (i = 0; i < ARRAY_SIZE(init_funcs); i++) {
- err = xe_call_init_func(i);
+ err = xe_call_init_func(init_funcs + i);
if (err) {
while (i--)
- xe_call_exit_func(i);
+ xe_call_exit_func(init_funcs + i);
return err;
}
}
@@ -176,7 +169,7 @@ static void __exit xe_exit(void)
int i;
for (i = ARRAY_SIZE(init_funcs) - 1; i >= 0; i--)
- xe_call_exit_func(i);
+ xe_call_exit_func(init_funcs + i);
}
module_init(xe_init);
--
2.47.1
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [PATCH v5 02/11] drm/xe: Print module init abort code
2025-07-29 11:42 [PATCH v5 00/11] Updates for drm/xe/configfs Michal Wajdeczko
2025-07-29 11:42 ` [PATCH v5 01/11] drm/xe: Simplify module initialization code Michal Wajdeczko
@ 2025-07-29 11:42 ` Michal Wajdeczko
2025-07-29 11:42 ` [PATCH v5 03/11] drm/xe/configfs: Destroy xe_configfs.su_mutex on exit/error Michal Wajdeczko
` (11 subsequent siblings)
13 siblings, 0 replies; 29+ messages in thread
From: Michal Wajdeczko @ 2025-07-29 11:42 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lucas De Marchi, Rodrigo Vivi
We should provide a hint to the user why the module refused to
load. This will also allow us to drop individual error messages
from init steps.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
drivers/gpu/drm/xe/xe_module.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_module.c b/drivers/gpu/drm/xe/xe_module.c
index cfed36361613..d08338fc3bc1 100644
--- a/drivers/gpu/drm/xe/xe_module.c
+++ b/drivers/gpu/drm/xe/xe_module.c
@@ -155,6 +155,8 @@ static int __init xe_init(void)
for (i = 0; i < ARRAY_SIZE(init_funcs); i++) {
err = xe_call_init_func(init_funcs + i);
if (err) {
+ pr_info("%s: module_init aborted at %ps %pe\n",
+ DRIVER_NAME, init_funcs[i].init, ERR_PTR(err));
while (i--)
xe_call_exit_func(init_funcs + i);
return err;
--
2.47.1
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [PATCH v5 03/11] drm/xe/configfs: Destroy xe_configfs.su_mutex on exit/error
2025-07-29 11:42 [PATCH v5 00/11] Updates for drm/xe/configfs Michal Wajdeczko
2025-07-29 11:42 ` [PATCH v5 01/11] drm/xe: Simplify module initialization code Michal Wajdeczko
2025-07-29 11:42 ` [PATCH v5 02/11] drm/xe: Print module init abort code Michal Wajdeczko
@ 2025-07-29 11:42 ` Michal Wajdeczko
2025-07-29 21:31 ` Rodrigo Vivi
2025-08-05 12:49 ` Lucas De Marchi
2025-07-29 11:42 ` [PATCH v5 04/11] drm/xe/configfs: Drop redundant init() error message Michal Wajdeczko
` (10 subsequent siblings)
13 siblings, 2 replies; 29+ messages in thread
From: Michal Wajdeczko @ 2025-07-29 11:42 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lucas De Marchi, Rodrigo Vivi
While mutex_destroy() is NOP when CONFIG_DEBUG_MUTEXES is not
enabled, we should still call it.
While around, drop a traling line.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
v2: remove pr_err in separate patch (Rodrigo)
---
drivers/gpu/drm/xe/xe_configfs.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
index 36e2b45b305f..56fbf4c1c37f 100644
--- a/drivers/gpu/drm/xe/xe_configfs.c
+++ b/drivers/gpu/drm/xe/xe_configfs.c
@@ -401,6 +401,7 @@ int __init xe_configfs_init(void)
if (ret) {
pr_err("Error %d while registering %s subsystem\n",
ret, root->cg_item.ci_namebuf);
+ mutex_destroy(&xe_configfs.su_mutex);
return ret;
}
@@ -410,5 +411,5 @@ int __init xe_configfs_init(void)
void __exit xe_configfs_exit(void)
{
configfs_unregister_subsystem(&xe_configfs);
+ mutex_destroy(&xe_configfs.su_mutex);
}
-
--
2.47.1
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [PATCH v5 04/11] drm/xe/configfs: Drop redundant init() error message
2025-07-29 11:42 [PATCH v5 00/11] Updates for drm/xe/configfs Michal Wajdeczko
` (2 preceding siblings ...)
2025-07-29 11:42 ` [PATCH v5 03/11] drm/xe/configfs: Destroy xe_configfs.su_mutex on exit/error Michal Wajdeczko
@ 2025-07-29 11:42 ` Michal Wajdeczko
2025-07-29 17:58 ` John Harrison
2025-08-05 12:55 ` Lucas De Marchi
2025-07-29 11:42 ` [PATCH v5 05/11] drm/xe/configfs: Rename struct xe_config_device Michal Wajdeczko
` (9 subsequent siblings)
13 siblings, 2 replies; 29+ messages in thread
From: Michal Wajdeczko @ 2025-07-29 11:42 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lucas De Marchi, Rodrigo Vivi
There is no need to print separate error message since we will
also print one in xe_init(). Also drop temporary variable, which
was likely just taken from the example code.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
drivers/gpu/drm/xe/xe_configfs.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
index 56fbf4c1c37f..6aa0531bcf76 100644
--- a/drivers/gpu/drm/xe/xe_configfs.c
+++ b/drivers/gpu/drm/xe/xe_configfs.c
@@ -392,15 +392,12 @@ u64 xe_configfs_get_engines_allowed(struct pci_dev *pdev)
int __init xe_configfs_init(void)
{
- struct config_group *root = &xe_configfs.su_group;
int ret;
- config_group_init(root);
+ config_group_init(&xe_configfs.su_group);
mutex_init(&xe_configfs.su_mutex);
ret = configfs_register_subsystem(&xe_configfs);
if (ret) {
- pr_err("Error %d while registering %s subsystem\n",
- ret, root->cg_item.ci_namebuf);
mutex_destroy(&xe_configfs.su_mutex);
return ret;
}
--
2.47.1
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [PATCH v5 05/11] drm/xe/configfs: Rename struct xe_config_device
2025-07-29 11:42 [PATCH v5 00/11] Updates for drm/xe/configfs Michal Wajdeczko
` (3 preceding siblings ...)
2025-07-29 11:42 ` [PATCH v5 04/11] drm/xe/configfs: Drop redundant init() error message Michal Wajdeczko
@ 2025-07-29 11:42 ` Michal Wajdeczko
2025-07-29 11:42 ` [PATCH v5 06/11] drm/xe/configfs: Rename configfs_find_group() helper Michal Wajdeczko
` (8 subsequent siblings)
13 siblings, 0 replies; 29+ messages in thread
From: Michal Wajdeczko @ 2025-07-29 11:42 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lucas De Marchi, Rodrigo Vivi
Rename it to struct xe_config_group_device to better match its
purpose. It will also help us to reintroduce in the upcoming patch
the same struct name but this time to hold only configuration data.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
v2: rebased
---
drivers/gpu/drm/xe/xe_configfs.c | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
index 6aa0531bcf76..d69b5f248e59 100644
--- a/drivers/gpu/drm/xe/xe_configfs.c
+++ b/drivers/gpu/drm/xe/xe_configfs.c
@@ -85,7 +85,7 @@
* rmdir /sys/kernel/config/xe/0000:03:00.0/
*/
-struct xe_config_device {
+struct xe_config_group_device {
struct config_group group;
bool survivability_mode;
@@ -113,21 +113,21 @@ static const struct engine_info engine_info[] = {
{ .cls = "gsccs", .mask = XE_HW_ENGINE_GSCCS_MASK },
};
-static struct xe_config_device *to_xe_config_device(struct config_item *item)
+static struct xe_config_group_device *to_xe_config_group_device(struct config_item *item)
{
- return container_of(to_config_group(item), struct xe_config_device, group);
+ return container_of(to_config_group(item), struct xe_config_group_device, group);
}
static ssize_t survivability_mode_show(struct config_item *item, char *page)
{
- struct xe_config_device *dev = to_xe_config_device(item);
+ struct xe_config_group_device *dev = to_xe_config_group_device(item);
return sprintf(page, "%d\n", dev->survivability_mode);
}
static ssize_t survivability_mode_store(struct config_item *item, const char *page, size_t len)
{
- struct xe_config_device *dev = to_xe_config_device(item);
+ struct xe_config_group_device *dev = to_xe_config_group_device(item);
bool survivability_mode;
int ret;
@@ -144,7 +144,7 @@ static ssize_t survivability_mode_store(struct config_item *item, const char *pa
static ssize_t engines_allowed_show(struct config_item *item, char *page)
{
- struct xe_config_device *dev = to_xe_config_device(item);
+ struct xe_config_group_device *dev = to_xe_config_group_device(item);
char *p = page;
for (size_t i = 0; i < ARRAY_SIZE(engine_info); i++) {
@@ -199,7 +199,7 @@ static bool lookup_engine_mask(const char *pattern, u64 *mask)
static ssize_t engines_allowed_store(struct config_item *item, const char *page,
size_t len)
{
- struct xe_config_device *dev = to_xe_config_device(item);
+ struct xe_config_group_device *dev = to_xe_config_group_device(item);
size_t patternlen, p;
u64 mask, val = 0;
@@ -237,7 +237,7 @@ static struct configfs_attribute *xe_config_device_attrs[] = {
static void xe_config_device_release(struct config_item *item)
{
- struct xe_config_device *dev = to_xe_config_device(item);
+ struct xe_config_group_device *dev = to_xe_config_group_device(item);
mutex_destroy(&dev->lock);
kfree(dev);
@@ -257,7 +257,7 @@ static struct config_group *xe_config_make_device_group(struct config_group *gro
const char *name)
{
unsigned int domain, bus, slot, function;
- struct xe_config_device *dev;
+ struct xe_config_group_device *dev;
struct pci_dev *pdev;
char canonical[16];
int ret;
@@ -309,7 +309,7 @@ static struct configfs_subsystem xe_configfs = {
},
};
-static struct xe_config_device *configfs_find_group(struct pci_dev *pdev)
+static struct xe_config_group_device *configfs_find_group(struct pci_dev *pdev)
{
struct config_item *item;
@@ -320,7 +320,7 @@ static struct xe_config_device *configfs_find_group(struct pci_dev *pdev)
if (!item)
return NULL;
- return to_xe_config_device(item);
+ return to_xe_config_group_device(item);
}
/**
@@ -334,7 +334,7 @@ static struct xe_config_device *configfs_find_group(struct pci_dev *pdev)
*/
bool xe_configfs_get_survivability_mode(struct pci_dev *pdev)
{
- struct xe_config_device *dev = configfs_find_group(pdev);
+ struct xe_config_group_device *dev = configfs_find_group(pdev);
bool mode;
if (!dev)
@@ -355,7 +355,7 @@ bool xe_configfs_get_survivability_mode(struct pci_dev *pdev)
*/
void xe_configfs_clear_survivability_mode(struct pci_dev *pdev)
{
- struct xe_config_device *dev = configfs_find_group(pdev);
+ struct xe_config_group_device *dev = configfs_find_group(pdev);
if (!dev)
return;
@@ -378,7 +378,7 @@ void xe_configfs_clear_survivability_mode(struct pci_dev *pdev)
*/
u64 xe_configfs_get_engines_allowed(struct pci_dev *pdev)
{
- struct xe_config_device *dev = configfs_find_group(pdev);
+ struct xe_config_group_device *dev = configfs_find_group(pdev);
u64 engines_allowed;
if (!dev)
--
2.47.1
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [PATCH v5 06/11] drm/xe/configfs: Rename configfs_find_group() helper
2025-07-29 11:42 [PATCH v5 00/11] Updates for drm/xe/configfs Michal Wajdeczko
` (4 preceding siblings ...)
2025-07-29 11:42 ` [PATCH v5 05/11] drm/xe/configfs: Rename struct xe_config_device Michal Wajdeczko
@ 2025-07-29 11:42 ` Michal Wajdeczko
2025-07-29 11:42 ` [PATCH v5 07/11] drm/xe/configfs: Reintroduce struct xe_config_device Michal Wajdeczko
` (7 subsequent siblings)
13 siblings, 0 replies; 29+ messages in thread
From: Michal Wajdeczko @ 2025-07-29 11:42 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lucas De Marchi, Rodrigo Vivi
This helper name shouldn't suggest that it iss a part of the core
configfs API family. While around switch to use different helper
to release a reference.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
drivers/gpu/drm/xe/xe_configfs.c | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
index d69b5f248e59..acdee616d118 100644
--- a/drivers/gpu/drm/xe/xe_configfs.c
+++ b/drivers/gpu/drm/xe/xe_configfs.c
@@ -309,7 +309,7 @@ static struct configfs_subsystem xe_configfs = {
},
};
-static struct xe_config_group_device *configfs_find_group(struct pci_dev *pdev)
+static struct xe_config_group_device *find_xe_config_group_device(struct pci_dev *pdev)
{
struct config_item *item;
@@ -334,14 +334,14 @@ static struct xe_config_group_device *configfs_find_group(struct pci_dev *pdev)
*/
bool xe_configfs_get_survivability_mode(struct pci_dev *pdev)
{
- struct xe_config_group_device *dev = configfs_find_group(pdev);
+ struct xe_config_group_device *dev = find_xe_config_group_device(pdev);
bool mode;
if (!dev)
return false;
mode = dev->survivability_mode;
- config_item_put(&dev->group.cg_item);
+ config_group_put(&dev->group);
return mode;
}
@@ -355,7 +355,7 @@ bool xe_configfs_get_survivability_mode(struct pci_dev *pdev)
*/
void xe_configfs_clear_survivability_mode(struct pci_dev *pdev)
{
- struct xe_config_group_device *dev = configfs_find_group(pdev);
+ struct xe_config_group_device *dev = find_xe_config_group_device(pdev);
if (!dev)
return;
@@ -364,7 +364,7 @@ void xe_configfs_clear_survivability_mode(struct pci_dev *pdev)
dev->survivability_mode = 0;
mutex_unlock(&dev->lock);
- config_item_put(&dev->group.cg_item);
+ config_group_put(&dev->group);
}
/**
@@ -378,14 +378,14 @@ void xe_configfs_clear_survivability_mode(struct pci_dev *pdev)
*/
u64 xe_configfs_get_engines_allowed(struct pci_dev *pdev)
{
- struct xe_config_group_device *dev = configfs_find_group(pdev);
+ struct xe_config_group_device *dev = find_xe_config_group_device(pdev);
u64 engines_allowed;
if (!dev)
return U64_MAX;
engines_allowed = dev->engines_allowed;
- config_item_put(&dev->group.cg_item);
+ config_group_put(&dev->group);
return engines_allowed;
}
--
2.47.1
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [PATCH v5 07/11] drm/xe/configfs: Reintroduce struct xe_config_device
2025-07-29 11:42 [PATCH v5 00/11] Updates for drm/xe/configfs Michal Wajdeczko
` (5 preceding siblings ...)
2025-07-29 11:42 ` [PATCH v5 06/11] drm/xe/configfs: Rename configfs_find_group() helper Michal Wajdeczko
@ 2025-07-29 11:42 ` Michal Wajdeczko
2025-07-29 11:42 ` [PATCH v5 08/11] drm/xe/configfs: Keep default device config settings together Michal Wajdeczko
` (6 subsequent siblings)
13 siblings, 0 replies; 29+ messages in thread
From: Michal Wajdeczko @ 2025-07-29 11:42 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lucas De Marchi, John Harrison
This time it will hold just pure configuration parameters, without
any configfs related stuff. This will help us define defaults data
without wasting space for unneeded data.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: John Harrison <John.C.Harrison@Intel.com>
---
v2: rebased
---
drivers/gpu/drm/xe/xe_configfs.c | 27 +++++++++++++++++----------
1 file changed, 17 insertions(+), 10 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
index acdee616d118..7ad9fc65e21d 100644
--- a/drivers/gpu/drm/xe/xe_configfs.c
+++ b/drivers/gpu/drm/xe/xe_configfs.c
@@ -88,8 +88,10 @@
struct xe_config_group_device {
struct config_group group;
- bool survivability_mode;
- u64 engines_allowed;
+ struct xe_config_device {
+ bool survivability_mode;
+ u64 engines_allowed;
+ } config;
/* protects attributes */
struct mutex lock;
@@ -118,9 +120,14 @@ static struct xe_config_group_device *to_xe_config_group_device(struct config_it
return container_of(to_config_group(item), struct xe_config_group_device, group);
}
+static struct xe_config_device *to_xe_config_device(struct config_item *item)
+{
+ return &to_xe_config_group_device(item)->config;
+}
+
static ssize_t survivability_mode_show(struct config_item *item, char *page)
{
- struct xe_config_group_device *dev = to_xe_config_group_device(item);
+ struct xe_config_device *dev = to_xe_config_device(item);
return sprintf(page, "%d\n", dev->survivability_mode);
}
@@ -136,7 +143,7 @@ static ssize_t survivability_mode_store(struct config_item *item, const char *pa
return ret;
mutex_lock(&dev->lock);
- dev->survivability_mode = survivability_mode;
+ dev->config.survivability_mode = survivability_mode;
mutex_unlock(&dev->lock);
return len;
@@ -144,7 +151,7 @@ static ssize_t survivability_mode_store(struct config_item *item, const char *pa
static ssize_t engines_allowed_show(struct config_item *item, char *page)
{
- struct xe_config_group_device *dev = to_xe_config_group_device(item);
+ struct xe_config_device *dev = to_xe_config_device(item);
char *p = page;
for (size_t i = 0; i < ARRAY_SIZE(engine_info); i++) {
@@ -220,7 +227,7 @@ static ssize_t engines_allowed_store(struct config_item *item, const char *page,
}
mutex_lock(&dev->lock);
- dev->engines_allowed = val;
+ dev->config.engines_allowed = val;
mutex_unlock(&dev->lock);
return len;
@@ -282,7 +289,7 @@ static struct config_group *xe_config_make_device_group(struct config_group *gro
return ERR_PTR(-ENOMEM);
/* Default values */
- dev->engines_allowed = U64_MAX;
+ dev->config.engines_allowed = U64_MAX;
config_group_init_type_name(&dev->group, name, &xe_config_device_type);
@@ -340,7 +347,7 @@ bool xe_configfs_get_survivability_mode(struct pci_dev *pdev)
if (!dev)
return false;
- mode = dev->survivability_mode;
+ mode = dev->config.survivability_mode;
config_group_put(&dev->group);
return mode;
@@ -361,7 +368,7 @@ void xe_configfs_clear_survivability_mode(struct pci_dev *pdev)
return;
mutex_lock(&dev->lock);
- dev->survivability_mode = 0;
+ dev->config.survivability_mode = 0;
mutex_unlock(&dev->lock);
config_group_put(&dev->group);
@@ -384,7 +391,7 @@ u64 xe_configfs_get_engines_allowed(struct pci_dev *pdev)
if (!dev)
return U64_MAX;
- engines_allowed = dev->engines_allowed;
+ engines_allowed = dev->config.engines_allowed;
config_group_put(&dev->group);
return engines_allowed;
--
2.47.1
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [PATCH v5 08/11] drm/xe/configfs: Keep default device config settings together
2025-07-29 11:42 [PATCH v5 00/11] Updates for drm/xe/configfs Michal Wajdeczko
` (6 preceding siblings ...)
2025-07-29 11:42 ` [PATCH v5 07/11] drm/xe/configfs: Reintroduce struct xe_config_device Michal Wajdeczko
@ 2025-07-29 11:42 ` Michal Wajdeczko
2025-07-29 11:42 ` [PATCH v5 09/11] drm/xe/configfs: Check if device was preconfigured Michal Wajdeczko
` (5 subsequent siblings)
13 siblings, 0 replies; 29+ messages in thread
From: Michal Wajdeczko @ 2025-07-29 11:42 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lucas De Marchi, John Harrison
For easier maintenance add a placeholder where we can keep all
default device configuration settings in one place.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: John Harrison <John.C.Harrison@Intel.com>
---
drivers/gpu/drm/xe/xe_configfs.c | 17 +++++++++++++----
1 file changed, 13 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
index 7ad9fc65e21d..150e7f2becc8 100644
--- a/drivers/gpu/drm/xe/xe_configfs.c
+++ b/drivers/gpu/drm/xe/xe_configfs.c
@@ -97,6 +97,16 @@ struct xe_config_group_device {
struct mutex lock;
};
+static struct xe_config_device device_defaults = {
+ .survivability_mode = false,
+ .engines_allowed = U64_MAX,
+};
+
+static void set_device_defaults(struct xe_config_device *config)
+{
+ *config = device_defaults;
+}
+
struct engine_info {
const char *cls;
u64 mask;
@@ -288,8 +298,7 @@ static struct config_group *xe_config_make_device_group(struct config_group *gro
if (!dev)
return ERR_PTR(-ENOMEM);
- /* Default values */
- dev->config.engines_allowed = U64_MAX;
+ set_device_defaults(&dev->config);
config_group_init_type_name(&dev->group, name, &xe_config_device_type);
@@ -345,7 +354,7 @@ bool xe_configfs_get_survivability_mode(struct pci_dev *pdev)
bool mode;
if (!dev)
- return false;
+ return device_defaults.survivability_mode;
mode = dev->config.survivability_mode;
config_group_put(&dev->group);
@@ -389,7 +398,7 @@ u64 xe_configfs_get_engines_allowed(struct pci_dev *pdev)
u64 engines_allowed;
if (!dev)
- return U64_MAX;
+ return device_defaults.engines_allowed;
engines_allowed = dev->config.engines_allowed;
config_group_put(&dev->group);
--
2.47.1
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [PATCH v5 09/11] drm/xe/configfs: Check if device was preconfigured
2025-07-29 11:42 [PATCH v5 00/11] Updates for drm/xe/configfs Michal Wajdeczko
` (7 preceding siblings ...)
2025-07-29 11:42 ` [PATCH v5 08/11] drm/xe/configfs: Keep default device config settings together Michal Wajdeczko
@ 2025-07-29 11:42 ` Michal Wajdeczko
2025-07-29 11:42 ` [PATCH v5 10/11] drm/xe/configfs: Only allow configurations for supported devices Michal Wajdeczko
` (4 subsequent siblings)
13 siblings, 0 replies; 29+ messages in thread
From: Michal Wajdeczko @ 2025-07-29 11:42 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lucas De Marchi, John Harrison
Since device configuration using configfs could be prepared long
time prior the driver load, add a debug log whether the current
device driver probe is using custom or default settings.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: John Harrison <John.C.Harrison@Intel.com>
---
v2: make function void, rename helpers (Lucas) and rebased
---
drivers/gpu/drm/xe/xe_configfs.c | 25 +++++++++++++++++++++++++
drivers/gpu/drm/xe/xe_configfs.h | 2 ++
drivers/gpu/drm/xe/xe_pci.c | 3 +++
3 files changed, 30 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
index 150e7f2becc8..5f145ccdf535 100644
--- a/drivers/gpu/drm/xe/xe_configfs.c
+++ b/drivers/gpu/drm/xe/xe_configfs.c
@@ -107,6 +107,11 @@ static void set_device_defaults(struct xe_config_device *config)
*config = device_defaults;
}
+static bool config_device_is_default(const struct xe_config_device *config)
+{
+ return !memcmp(config, &device_defaults, sizeof(*config));
+}
+
struct engine_info {
const char *cls;
u64 mask;
@@ -339,6 +344,26 @@ static struct xe_config_group_device *find_xe_config_group_device(struct pci_dev
return to_xe_config_group_device(item);
}
+/**
+ * xe_configfs_check_device() - Test if device was configured by configfs
+ * @pdev: the &pci_dev device to test
+ *
+ * Try to find the configfs group that belongs to the specified pci device
+ * and print a diagnostic message if found.
+ */
+void xe_configfs_check_device(struct pci_dev *pdev)
+{
+ struct xe_config_group_device *dev = find_xe_config_group_device(pdev);
+
+ if (!dev)
+ return;
+
+ pci_dbg(pdev, "found %s settings in configfs\n",
+ config_device_is_default(&dev->config) ? "default" : "custom");
+
+ config_group_put(&dev->group);
+}
+
/**
* xe_configfs_get_survivability_mode - get configfs survivability mode attribute
* @pdev: pci device
diff --git a/drivers/gpu/drm/xe/xe_configfs.h b/drivers/gpu/drm/xe/xe_configfs.h
index fb8764008089..fa4ea7f0c375 100644
--- a/drivers/gpu/drm/xe/xe_configfs.h
+++ b/drivers/gpu/drm/xe/xe_configfs.h
@@ -13,12 +13,14 @@ struct pci_dev;
#if IS_ENABLED(CONFIG_CONFIGFS_FS)
int xe_configfs_init(void);
void xe_configfs_exit(void);
+void xe_configfs_check_device(struct pci_dev *pdev);
bool xe_configfs_get_survivability_mode(struct pci_dev *pdev);
void xe_configfs_clear_survivability_mode(struct pci_dev *pdev);
u64 xe_configfs_get_engines_allowed(struct pci_dev *pdev);
#else
static inline int xe_configfs_init(void) { return 0; }
static inline void xe_configfs_exit(void) { }
+static inline void xe_configfs_check_device(struct pci_dev *pdev) { }
static inline bool xe_configfs_get_survivability_mode(struct pci_dev *pdev) { return false; }
static inline void xe_configfs_clear_survivability_mode(struct pci_dev *pdev) { }
static inline u64 xe_configfs_get_engines_allowed(struct pci_dev *pdev) { return U64_MAX; }
diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
index 52d46c66ae1e..9ce6e6dca5bc 100644
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@ -17,6 +17,7 @@
#include "display/xe_display.h"
#include "regs/xe_gt_regs.h"
+#include "xe_configfs.h"
#include "xe_device.h"
#include "xe_drv.h"
#include "xe_gt.h"
@@ -771,6 +772,8 @@ static int xe_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
struct xe_device *xe;
int err;
+ xe_configfs_check_device(pdev);
+
if (desc->require_force_probe && !id_forced(pdev->device)) {
dev_info(&pdev->dev,
"Your graphics device %04x is not officially supported\n"
--
2.47.1
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [PATCH v5 10/11] drm/xe/configfs: Only allow configurations for supported devices
2025-07-29 11:42 [PATCH v5 00/11] Updates for drm/xe/configfs Michal Wajdeczko
` (8 preceding siblings ...)
2025-07-29 11:42 ` [PATCH v5 09/11] drm/xe/configfs: Check if device was preconfigured Michal Wajdeczko
@ 2025-07-29 11:42 ` Michal Wajdeczko
2025-07-29 21:40 ` Rodrigo Vivi
2025-07-29 11:42 ` [PATCH v5 11/11] drm/xe/configfs: Allow adding configurations for future VFs Michal Wajdeczko
` (3 subsequent siblings)
13 siblings, 1 reply; 29+ messages in thread
From: Michal Wajdeczko @ 2025-07-29 11:42 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lucas De Marchi
Since we already lookup for the real PCI device before we allow
to create its directory config, we might also check if the found
device matches our driver PCI ID list. This will prevent creation
of the directory configs for the unsupported devices.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
---
v2: rebased
---
drivers/gpu/drm/xe/xe_configfs.c | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
index 5f145ccdf535..766775772eef 100644
--- a/drivers/gpu/drm/xe/xe_configfs.c
+++ b/drivers/gpu/drm/xe/xe_configfs.c
@@ -275,11 +275,22 @@ static const struct config_item_type xe_config_device_type = {
.ct_owner = THIS_MODULE,
};
+static const struct xe_device_desc *xe_match_desc(struct pci_dev *pdev)
+{
+ struct device_driver *driver = driver_find("xe", &pci_bus_type);
+ struct pci_driver *drv = to_pci_driver(driver);
+ const struct pci_device_id *ids = drv ? drv->id_table : NULL;
+ const struct pci_device_id *found = pci_match_id(ids, pdev);
+
+ return found ? (const void *)found->driver_data : NULL;
+}
+
static struct config_group *xe_config_make_device_group(struct config_group *group,
const char *name)
{
unsigned int domain, bus, slot, function;
struct xe_config_group_device *dev;
+ const struct xe_device_desc *match;
struct pci_dev *pdev;
char canonical[16];
int ret;
@@ -297,8 +308,14 @@ static struct config_group *xe_config_make_device_group(struct config_group *gro
pdev = pci_get_domain_bus_and_slot(domain, bus, PCI_DEVFN(slot, function));
if (!pdev)
return ERR_PTR(-ENODEV);
+
+ match = xe_match_desc(pdev);
+
pci_dev_put(pdev);
+ if (!match)
+ return ERR_PTR(-ECANCELED);
+
dev = kzalloc(sizeof(*dev), GFP_KERNEL);
if (!dev)
return ERR_PTR(-ENOMEM);
--
2.47.1
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [PATCH v5 11/11] drm/xe/configfs: Allow adding configurations for future VFs
2025-07-29 11:42 [PATCH v5 00/11] Updates for drm/xe/configfs Michal Wajdeczko
` (9 preceding siblings ...)
2025-07-29 11:42 ` [PATCH v5 10/11] drm/xe/configfs: Only allow configurations for supported devices Michal Wajdeczko
@ 2025-07-29 11:42 ` Michal Wajdeczko
2025-07-29 21:50 ` Rodrigo Vivi
2025-07-29 12:03 ` ✓ CI.KUnit: success for Updates for drm/xe/configfs (rev6) Patchwork
` (2 subsequent siblings)
13 siblings, 1 reply; 29+ messages in thread
From: Michal Wajdeczko @ 2025-07-29 11:42 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lucas De Marchi
Since we are expecting that all configuration directory names
will match some of the existing devices, we can't provide any
configuration for the VFs until they are actually enabled.
But we can relax that restriction by just checking if there
is a PF device that could create given VF. This is easy since
all our PF devices are always present at function 0 and we can
query PF device for number of VFs it could support.
Then for some system with PF device at 0000:00:02.0 we can add
configs for all VFs:
/sys/kernel/config/xe/
├── 0000:00:02.0
│ └── ...
├── 0000:00:02.1
│ └── ...
├── 0000:00:02.2
│ └── ...
:
└── 0000:00:02.7
└── ...
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
---
v2: rebase and improve checks, fix include order
v3: put correct device (Lucas)
---
drivers/gpu/drm/xe/xe_configfs.c | 24 ++++++++++++++++++++++--
1 file changed, 22 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
index 766775772eef..da9a8e64621f 100644
--- a/drivers/gpu/drm/xe/xe_configfs.c
+++ b/drivers/gpu/drm/xe/xe_configfs.c
@@ -12,9 +12,9 @@
#include <linux/string.h>
#include "xe_configfs.h"
-#include "xe_module.h"
-
#include "xe_hw_engine_types.h"
+#include "xe_module.h"
+#include "xe_pci_types.h"
/**
* DOC: Xe Configfs
@@ -285,6 +285,15 @@ static const struct xe_device_desc *xe_match_desc(struct pci_dev *pdev)
return found ? (const void *)found->driver_data : NULL;
}
+static struct pci_dev *get_physfn_instead(struct pci_dev *virtfn)
+{
+ struct pci_dev *physfn = pci_physfn(virtfn);
+
+ pci_dev_get(physfn);
+ pci_dev_put(virtfn);
+ return physfn;
+}
+
static struct config_group *xe_config_make_device_group(struct config_group *group,
const char *name)
{
@@ -306,11 +315,22 @@ static struct config_group *xe_config_make_device_group(struct config_group *gro
return ERR_PTR(-EINVAL);
pdev = pci_get_domain_bus_and_slot(domain, bus, PCI_DEVFN(slot, function));
+ if (!pdev && function)
+ pdev = pci_get_domain_bus_and_slot(domain, bus, PCI_DEVFN(slot, 0));
+ if (!pdev && slot)
+ pdev = pci_get_domain_bus_and_slot(domain, bus, PCI_DEVFN(0, 0));
if (!pdev)
return ERR_PTR(-ENODEV);
+ pdev = get_physfn_instead(pdev);
match = xe_match_desc(pdev);
+ if (match) {
+ int vfnumber = PCI_DEVFN(slot, function) - pdev->devfn;
+ if (vfnumber && (!dev_is_pf(&pdev->dev) || !match->has_sriov ||
+ vfnumber > pci_sriov_get_totalvfs(pdev)))
+ match = NULL;
+ }
pci_dev_put(pdev);
if (!match)
--
2.47.1
^ permalink raw reply related [flat|nested] 29+ messages in thread
* ✓ CI.KUnit: success for Updates for drm/xe/configfs (rev6)
2025-07-29 11:42 [PATCH v5 00/11] Updates for drm/xe/configfs Michal Wajdeczko
` (10 preceding siblings ...)
2025-07-29 11:42 ` [PATCH v5 11/11] drm/xe/configfs: Allow adding configurations for future VFs Michal Wajdeczko
@ 2025-07-29 12:03 ` Patchwork
2025-07-29 13:16 ` ✓ Xe.CI.BAT: " Patchwork
2025-07-29 18:55 ` ✗ Xe.CI.Full: failure " Patchwork
13 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2025-07-29 12:03 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Updates for drm/xe/configfs (rev6)
URL : https://patchwork.freedesktop.org/series/151773/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[12:02:27] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:02:32] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:02:59] Starting KUnit Kernel (1/1)...
[12:02:59] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:02:59] ================== guc_buf (11 subtests) ===================
[12:02:59] [PASSED] test_smallest
[12:02:59] [PASSED] test_largest
[12:02:59] [PASSED] test_granular
[12:02:59] [PASSED] test_unique
[12:02:59] [PASSED] test_overlap
[12:02:59] [PASSED] test_reusable
[12:02:59] [PASSED] test_too_big
[12:02:59] [PASSED] test_flush
[12:02:59] [PASSED] test_lookup
[12:02:59] [PASSED] test_data
[12:02:59] [PASSED] test_class
[12:02:59] ===================== [PASSED] guc_buf =====================
[12:02:59] =================== guc_dbm (7 subtests) ===================
[12:02:59] [PASSED] test_empty
[12:02:59] [PASSED] test_default
[12:02:59] ======================== test_size ========================
[12:02:59] [PASSED] 4
[12:02:59] [PASSED] 8
[12:02:59] [PASSED] 32
[12:02:59] [PASSED] 256
[12:02:59] ==================== [PASSED] test_size ====================
[12:02:59] ======================= test_reuse ========================
[12:02:59] [PASSED] 4
[12:02:59] [PASSED] 8
[12:02:59] [PASSED] 32
[12:02:59] [PASSED] 256
[12:02:59] =================== [PASSED] test_reuse ====================
[12:02:59] =================== test_range_overlap ====================
[12:02:59] [PASSED] 4
[12:02:59] [PASSED] 8
[12:02:59] [PASSED] 32
[12:02:59] [PASSED] 256
[12:02:59] =============== [PASSED] test_range_overlap ================
[12:02:59] =================== test_range_compact ====================
[12:02:59] [PASSED] 4
[12:02:59] [PASSED] 8
[12:02:59] [PASSED] 32
[12:02:59] [PASSED] 256
[12:02:59] =============== [PASSED] test_range_compact ================
[12:02:59] ==================== test_range_spare =====================
[12:02:59] [PASSED] 4
[12:02:59] [PASSED] 8
[12:02:59] [PASSED] 32
[12:02:59] [PASSED] 256
[12:02:59] ================ [PASSED] test_range_spare =================
[12:02:59] ===================== [PASSED] guc_dbm =====================
[12:02:59] =================== guc_idm (6 subtests) ===================
[12:02:59] [PASSED] bad_init
[12:02:59] [PASSED] no_init
[12:02:59] [PASSED] init_fini
[12:02:59] [PASSED] check_used
[12:02:59] [PASSED] check_quota
[12:02:59] [PASSED] check_all
[12:02:59] ===================== [PASSED] guc_idm =====================
[12:02:59] ================== no_relay (3 subtests) ===================
[12:02:59] [PASSED] xe_drops_guc2pf_if_not_ready
[12:02:59] [PASSED] xe_drops_guc2vf_if_not_ready
[12:02:59] [PASSED] xe_rejects_send_if_not_ready
[12:02:59] ==================== [PASSED] no_relay =====================
[12:02:59] ================== pf_relay (14 subtests) ==================
[12:02:59] [PASSED] pf_rejects_guc2pf_too_short
[12:02:59] [PASSED] pf_rejects_guc2pf_too_long
[12:02:59] [PASSED] pf_rejects_guc2pf_no_payload
[12:02:59] [PASSED] pf_fails_no_payload
[12:02:59] [PASSED] pf_fails_bad_origin
[12:02:59] [PASSED] pf_fails_bad_type
[12:02:59] [PASSED] pf_txn_reports_error
[12:02:59] [PASSED] pf_txn_sends_pf2guc
[12:02:59] [PASSED] pf_sends_pf2guc
[12:02:59] [SKIPPED] pf_loopback_nop
[12:02:59] [SKIPPED] pf_loopback_echo
[12:02:59] [SKIPPED] pf_loopback_fail
[12:02:59] [SKIPPED] pf_loopback_busy
[12:02:59] [SKIPPED] pf_loopback_retry
[12:02:59] ==================== [PASSED] pf_relay =====================
[12:02:59] ================== vf_relay (3 subtests) ===================
[12:02:59] [PASSED] vf_rejects_guc2vf_too_short
[12:02:59] [PASSED] vf_rejects_guc2vf_too_long
[12:02:59] [PASSED] vf_rejects_guc2vf_no_payload
[12:02:59] ==================== [PASSED] vf_relay =====================
[12:02:59] ===================== lmtt (1 subtest) =====================
[12:02:59] ======================== test_ops =========================
[12:02:59] [PASSED] 2-level
[12:02:59] [PASSED] multi-level
[12:02:59] ==================== [PASSED] test_ops =====================
[12:02:59] ====================== [PASSED] lmtt =======================
[12:02:59] ================= pf_service (11 subtests) =================
[12:02:59] [PASSED] pf_negotiate_any
[12:02:59] [PASSED] pf_negotiate_base_match
[12:02:59] [PASSED] pf_negotiate_base_newer
[12:02:59] [PASSED] pf_negotiate_base_next
[12:02:59] [SKIPPED] pf_negotiate_base_older
[12:02:59] [PASSED] pf_negotiate_base_prev
[12:02:59] [PASSED] pf_negotiate_latest_match
[12:02:59] [PASSED] pf_negotiate_latest_newer
[12:02:59] [PASSED] pf_negotiate_latest_next
[12:02:59] [SKIPPED] pf_negotiate_latest_older
[12:02:59] [SKIPPED] pf_negotiate_latest_prev
[12:02:59] =================== [PASSED] pf_service ====================
[12:02:59] =================== xe_mocs (2 subtests) ===================
[12:02:59] ================ xe_live_mocs_kernel_kunit ================
[12:02:59] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[12:02:59] ================ xe_live_mocs_reset_kunit =================
[12:02:59] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[12:02:59] ==================== [SKIPPED] xe_mocs =====================
[12:02:59] ================= xe_migrate (2 subtests) ==================
[12:02:59] ================= xe_migrate_sanity_kunit =================
[12:02:59] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[12:02:59] ================== xe_validate_ccs_kunit ==================
[12:02:59] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[12:02:59] =================== [SKIPPED] xe_migrate ===================
[12:02:59] ================== xe_dma_buf (1 subtest) ==================
[12:02:59] ==================== xe_dma_buf_kunit =====================
[12:02:59] ================ [SKIPPED] xe_dma_buf_kunit ================
[12:02:59] =================== [SKIPPED] xe_dma_buf ===================
[12:02:59] ================= xe_bo_shrink (1 subtest) =================
[12:02:59] =================== xe_bo_shrink_kunit ====================
[12:02:59] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[12:02:59] ================== [SKIPPED] xe_bo_shrink ==================
[12:02:59] ==================== xe_bo (2 subtests) ====================
[12:02:59] ================== xe_ccs_migrate_kunit ===================
[12:02:59] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[12:02:59] ==================== xe_bo_evict_kunit ====================
[12:02:59] =============== [SKIPPED] xe_bo_evict_kunit ================
[12:02:59] ===================== [SKIPPED] xe_bo ======================
[12:02:59] ==================== args (11 subtests) ====================
[12:02:59] [PASSED] count_args_test
[12:02:59] [PASSED] call_args_example
[12:02:59] [PASSED] call_args_test
[12:02:59] [PASSED] drop_first_arg_example
[12:02:59] [PASSED] drop_first_arg_test
[12:02:59] [PASSED] first_arg_example
[12:02:59] [PASSED] first_arg_test
[12:02:59] [PASSED] last_arg_example
[12:02:59] [PASSED] last_arg_test
[12:02:59] [PASSED] pick_arg_example
[12:02:59] [PASSED] sep_comma_example
[12:02:59] ====================== [PASSED] args =======================
[12:02:59] =================== xe_pci (3 subtests) ====================
[12:02:59] ==================== check_graphics_ip ====================
[12:02:59] [PASSED] 12.70 Xe_LPG
[12:02:59] [PASSED] 12.71 Xe_LPG
[12:02:59] [PASSED] 12.74 Xe_LPG+
[12:02:59] [PASSED] 20.01 Xe2_HPG
[12:02:59] [PASSED] 20.02 Xe2_HPG
[12:02:59] [PASSED] 20.04 Xe2_LPG
[12:02:59] [PASSED] 30.00 Xe3_LPG
[12:02:59] [PASSED] 30.01 Xe3_LPG
[12:02:59] [PASSED] 30.03 Xe3_LPG
[12:02:59] ================ [PASSED] check_graphics_ip ================
[12:02:59] ===================== check_media_ip ======================
[12:02:59] [PASSED] 13.00 Xe_LPM+
[12:02:59] [PASSED] 13.01 Xe2_HPM
[12:02:59] [PASSED] 20.00 Xe2_LPM
[12:02:59] [PASSED] 30.00 Xe3_LPM
[12:02:59] [PASSED] 30.02 Xe3_LPM
[12:02:59] ================= [PASSED] check_media_ip ==================
[12:02:59] ================= check_platform_gt_count =================
[12:02:59] [PASSED] 0x9A60 (TIGERLAKE)
[12:02:59] [PASSED] 0x9A68 (TIGERLAKE)
[12:02:59] [PASSED] 0x9A70 (TIGERLAKE)
[12:02:59] [PASSED] 0x9A40 (TIGERLAKE)
[12:02:59] [PASSED] 0x9A49 (TIGERLAKE)
[12:02:59] [PASSED] 0x9A59 (TIGERLAKE)
[12:02:59] [PASSED] 0x9A78 (TIGERLAKE)
[12:02:59] [PASSED] 0x9AC0 (TIGERLAKE)
[12:02:59] [PASSED] 0x9AC9 (TIGERLAKE)
[12:02:59] [PASSED] 0x9AD9 (TIGERLAKE)
[12:02:59] [PASSED] 0x9AF8 (TIGERLAKE)
[12:02:59] [PASSED] 0x4C80 (ROCKETLAKE)
[12:02:59] [PASSED] 0x4C8A (ROCKETLAKE)
[12:02:59] [PASSED] 0x4C8B (ROCKETLAKE)
[12:02:59] [PASSED] 0x4C8C (ROCKETLAKE)
[12:02:59] [PASSED] 0x4C90 (ROCKETLAKE)
[12:02:59] [PASSED] 0x4C9A (ROCKETLAKE)
[12:02:59] [PASSED] 0x4680 (ALDERLAKE_S)
[12:02:59] [PASSED] 0x4682 (ALDERLAKE_S)
[12:02:59] [PASSED] 0x4688 (ALDERLAKE_S)
[12:02:59] [PASSED] 0x468A (ALDERLAKE_S)
[12:02:59] [PASSED] 0x468B (ALDERLAKE_S)
[12:02:59] [PASSED] 0x4690 (ALDERLAKE_S)
[12:02:59] [PASSED] 0x4692 (ALDERLAKE_S)
[12:02:59] [PASSED] 0x4693 (ALDERLAKE_S)
[12:02:59] [PASSED] 0x46A0 (ALDERLAKE_P)
[12:02:59] [PASSED] 0x46A1 (ALDERLAKE_P)
[12:02:59] [PASSED] 0x46A2 (ALDERLAKE_P)
[12:02:59] [PASSED] 0x46A3 (ALDERLAKE_P)
[12:02:59] [PASSED] 0x46A6 (ALDERLAKE_P)
[12:02:59] [PASSED] 0x46A8 (ALDERLAKE_P)
[12:02:59] [PASSED] 0x46AA (ALDERLAKE_P)
[12:02:59] [PASSED] 0x462A (ALDERLAKE_P)
[12:02:59] [PASSED] 0x4626 (ALDERLAKE_P)
[12:02:59] [PASSED] 0x4628 (ALDERLAKE_P)
[12:02:59] [PASSED] 0x46B0 (ALDERLAKE_P)
[12:02:59] [PASSED] 0x46B1 (ALDERLAKE_P)
[12:02:59] [PASSED] 0x46B2 (ALDERLAKE_P)
[12:02:59] [PASSED] 0x46B3 (ALDERLAKE_P)
[12:02:59] [PASSED] 0x46C0 (ALDERLAKE_P)
[12:02:59] [PASSED] 0x46C1 (ALDERLAKE_P)
[12:02:59] [PASSED] 0x46C2 (ALDERLAKE_P)
[12:02:59] [PASSED] 0x46C3 (ALDERLAKE_P)
[12:02:59] [PASSED] 0x46D0 (ALDERLAKE_N)
[12:02:59] [PASSED] 0x46D1 (ALDERLAKE_N)
[12:02:59] [PASSED] 0x46D2 (ALDERLAKE_N)
[12:02:59] [PASSED] 0x46D3 (ALDERLAKE_N)
[12:02:59] [PASSED] 0x46D4 (ALDERLAKE_N)
[12:02:59] [PASSED] 0xA721 (ALDERLAKE_P)
[12:02:59] [PASSED] 0xA7A1 (ALDERLAKE_P)
[12:02:59] [PASSED] 0xA7A9 (ALDERLAKE_P)
[12:02:59] [PASSED] 0xA7AC (ALDERLAKE_P)
[12:02:59] [PASSED] 0xA7AD (ALDERLAKE_P)
[12:02:59] [PASSED] 0xA720 (ALDERLAKE_P)
[12:02:59] [PASSED] 0xA7A0 (ALDERLAKE_P)
[12:02:59] [PASSED] 0xA7A8 (ALDERLAKE_P)
[12:02:59] [PASSED] 0xA7AA (ALDERLAKE_P)
[12:02:59] [PASSED] 0xA7AB (ALDERLAKE_P)
[12:02:59] [PASSED] 0xA780 (ALDERLAKE_S)
[12:02:59] [PASSED] 0xA781 (ALDERLAKE_S)
[12:02:59] [PASSED] 0xA782 (ALDERLAKE_S)
[12:02:59] [PASSED] 0xA783 (ALDERLAKE_S)
[12:02:59] [PASSED] 0xA788 (ALDERLAKE_S)
[12:02:59] [PASSED] 0xA789 (ALDERLAKE_S)
[12:02:59] [PASSED] 0xA78A (ALDERLAKE_S)
[12:02:59] [PASSED] 0xA78B (ALDERLAKE_S)
[12:02:59] [PASSED] 0x4905 (DG1)
[12:02:59] [PASSED] 0x4906 (DG1)
[12:02:59] [PASSED] 0x4907 (DG1)
[12:02:59] [PASSED] 0x4908 (DG1)
[12:02:59] [PASSED] 0x4909 (DG1)
[12:02:59] [PASSED] 0x56C0 (DG2)
[12:02:59] [PASSED] 0x56C2 (DG2)
[12:02:59] [PASSED] 0x56C1 (DG2)
[12:02:59] [PASSED] 0x7D51 (METEORLAKE)
[12:02:59] [PASSED] 0x7DD1 (METEORLAKE)
[12:02:59] [PASSED] 0x7D41 (METEORLAKE)
[12:02:59] [PASSED] 0x7D67 (METEORLAKE)
[12:02:59] [PASSED] 0xB640 (METEORLAKE)
[12:02:59] [PASSED] 0x56A0 (DG2)
[12:02:59] [PASSED] 0x56A1 (DG2)
[12:02:59] [PASSED] 0x56A2 (DG2)
[12:02:59] [PASSED] 0x56BE (DG2)
[12:02:59] [PASSED] 0x56BF (DG2)
[12:02:59] [PASSED] 0x5690 (DG2)
[12:02:59] [PASSED] 0x5691 (DG2)
[12:02:59] [PASSED] 0x5692 (DG2)
[12:02:59] [PASSED] 0x56A5 (DG2)
[12:02:59] [PASSED] 0x56A6 (DG2)
[12:02:59] [PASSED] 0x56B0 (DG2)
[12:02:59] [PASSED] 0x56B1 (DG2)
[12:02:59] [PASSED] 0x56BA (DG2)
[12:02:59] [PASSED] 0x56BB (DG2)
[12:02:59] [PASSED] 0x56BC (DG2)
[12:02:59] [PASSED] 0x56BD (DG2)
[12:02:59] [PASSED] 0x5693 (DG2)
[12:02:59] [PASSED] 0x5694 (DG2)
[12:02:59] [PASSED] 0x5695 (DG2)
[12:02:59] [PASSED] 0x56A3 (DG2)
[12:02:59] [PASSED] 0x56A4 (DG2)
[12:02:59] [PASSED] 0x56B2 (DG2)
[12:02:59] [PASSED] 0x56B3 (DG2)
[12:02:59] [PASSED] 0x5696 (DG2)
[12:02:59] [PASSED] 0x5697 (DG2)
[12:02:59] [PASSED] 0xB69 (PVC)
[12:02:59] [PASSED] 0xB6E (PVC)
[12:02:59] [PASSED] 0xBD4 (PVC)
[12:02:59] [PASSED] 0xBD5 (PVC)
[12:02:59] [PASSED] 0xBD6 (PVC)
[12:02:59] [PASSED] 0xBD7 (PVC)
[12:02:59] [PASSED] 0xBD8 (PVC)
[12:02:59] [PASSED] 0xBD9 (PVC)
[12:02:59] [PASSED] 0xBDA (PVC)
[12:02:59] [PASSED] 0xBDB (PVC)
[12:02:59] [PASSED] 0xBE0 (PVC)
[12:02:59] [PASSED] 0xBE1 (PVC)
[12:02:59] [PASSED] 0xBE5 (PVC)
[12:02:59] [PASSED] 0x7D40 (METEORLAKE)
[12:02:59] [PASSED] 0x7D45 (METEORLAKE)
[12:02:59] [PASSED] 0x7D55 (METEORLAKE)
[12:02:59] [PASSED] 0x7D60 (METEORLAKE)
[12:02:59] [PASSED] 0x7DD5 (METEORLAKE)
[12:02:59] [PASSED] 0x6420 (LUNARLAKE)
[12:02:59] [PASSED] 0x64A0 (LUNARLAKE)
[12:02:59] [PASSED] 0x64B0 (LUNARLAKE)
[12:02:59] [PASSED] 0xE202 (BATTLEMAGE)
[12:02:59] [PASSED] 0xE209 (BATTLEMAGE)
[12:02:59] [PASSED] 0xE20B (BATTLEMAGE)
[12:02:59] [PASSED] 0xE20C (BATTLEMAGE)
[12:02:59] [PASSED] 0xE20D (BATTLEMAGE)
[12:02:59] [PASSED] 0xE210 (BATTLEMAGE)
[12:02:59] [PASSED] 0xE211 (BATTLEMAGE)
[12:02:59] [PASSED] 0xE212 (BATTLEMAGE)
[12:02:59] [PASSED] 0xE216 (BATTLEMAGE)
[12:02:59] [PASSED] 0xE220 (BATTLEMAGE)
[12:02:59] [PASSED] 0xE221 (BATTLEMAGE)
[12:02:59] [PASSED] 0xE222 (BATTLEMAGE)
[12:02:59] [PASSED] 0xE223 (BATTLEMAGE)
[12:02:59] [PASSED] 0xB080 (PANTHERLAKE)
[12:02:59] [PASSED] 0xB081 (PANTHERLAKE)
[12:02:59] [PASSED] 0xB082 (PANTHERLAKE)
[12:02:59] [PASSED] 0xB083 (PANTHERLAKE)
[12:02:59] [PASSED] 0xB084 (PANTHERLAKE)
[12:02:59] [PASSED] 0xB085 (PANTHERLAKE)
[12:02:59] [PASSED] 0xB086 (PANTHERLAKE)
[12:02:59] [PASSED] 0xB087 (PANTHERLAKE)
[12:02:59] [PASSED] 0xB08F (PANTHERLAKE)
[12:02:59] [PASSED] 0xB090 (PANTHERLAKE)
[12:02:59] [PASSED] 0xB0A0 (PANTHERLAKE)
[12:02:59] [PASSED] 0xB0B0 (PANTHERLAKE)
[12:02:59] [PASSED] 0xFD80 (PANTHERLAKE)
[12:02:59] [PASSED] 0xFD81 (PANTHERLAKE)
[12:02:59] ============= [PASSED] check_platform_gt_count =============
[12:02:59] ===================== [PASSED] xe_pci ======================
[12:02:59] =================== xe_rtp (2 subtests) ====================
[12:02:59] =============== xe_rtp_process_to_sr_tests ================
[12:02:59] [PASSED] coalesce-same-reg
[12:02:59] [PASSED] no-match-no-add
[12:02:59] [PASSED] match-or
[12:02:59] [PASSED] match-or-xfail
[12:02:59] [PASSED] no-match-no-add-multiple-rules
[12:02:59] [PASSED] two-regs-two-entries
[12:02:59] [PASSED] clr-one-set-other
[12:02:59] [PASSED] set-field
[12:02:59] [PASSED] conflict-duplicate
[12:02:59] [PASSED] conflict-not-disjoint
[12:02:59] [PASSED] conflict-reg-type
[12:02:59] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[12:02:59] ================== xe_rtp_process_tests ===================
[12:02:59] [PASSED] active1
[12:02:59] [PASSED] active2
[12:02:59] [PASSED] active-inactive
[12:02:59] [PASSED] inactive-active
[12:02:59] [PASSED] inactive-1st_or_active-inactive
[12:02:59] [PASSED] inactive-2nd_or_active-inactive
[12:02:59] [PASSED] inactive-last_or_active-inactive
[12:02:59] [PASSED] inactive-no_or_active-inactive
[12:02:59] ============== [PASSED] xe_rtp_process_tests ===============
[12:02:59] ===================== [PASSED] xe_rtp ======================
[12:02:59] ==================== xe_wa (1 subtest) =====================
[12:02:59] ======================== xe_wa_gt =========================
[12:02:59] [PASSED] TIGERLAKE (B0)
[12:02:59] [PASSED] DG1 (A0)
[12:02:59] [PASSED] DG1 (B0)
[12:02:59] [PASSED] ALDERLAKE_S (A0)
[12:02:59] [PASSED] ALDERLAKE_S (B0)
[12:02:59] [PASSED] ALDERLAKE_S (C0)
[12:02:59] [PASSED] ALDERLAKE_S (D0)
[12:02:59] [PASSED] ALDERLAKE_P (A0)
[12:02:59] [PASSED] ALDERLAKE_P (B0)
[12:02:59] [PASSED] ALDERLAKE_P (C0)
[12:02:59] [PASSED] ALDERLAKE_S_RPLS (D0)
[12:02:59] [PASSED] ALDERLAKE_P_RPLU (E0)
[12:02:59] [PASSED] DG2_G10 (C0)
[12:02:59] [PASSED] DG2_G11 (B1)
[12:02:59] [PASSED] DG2_G12 (A1)
[12:02:59] [PASSED] METEORLAKE (g:A0, m:A0)
[12:02:59] [PASSED] METEORLAKE (g:A0, m:A0)
[12:02:59] [PASSED] METEORLAKE (g:A0, m:A0)
[12:02:59] [PASSED] LUNARLAKE (g:A0, m:A0)
[12:02:59] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[12:02:59] [PASSED] BATTLEMAGE (g:A0, m:A1)
[12:02:59] ==================== [PASSED] xe_wa_gt =====================
[12:02:59] ====================== [PASSED] xe_wa ======================
[12:02:59] ============================================================
[12:02:59] Testing complete. Ran 297 tests: passed: 281, skipped: 16
[12:02:59] Elapsed time: 31.674s total, 4.184s configuring, 27.124s building, 0.316s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[12:02:59] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:03:01] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:03:22] Starting KUnit Kernel (1/1)...
[12:03:22] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:03:22] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[12:03:22] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[12:03:22] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[12:03:22] =========== drm_validate_clone_mode (2 subtests) ===========
[12:03:22] ============== drm_test_check_in_clone_mode ===============
[12:03:22] [PASSED] in_clone_mode
[12:03:22] [PASSED] not_in_clone_mode
[12:03:22] ========== [PASSED] drm_test_check_in_clone_mode ===========
[12:03:22] =============== drm_test_check_valid_clones ===============
[12:03:22] [PASSED] not_in_clone_mode
[12:03:22] [PASSED] valid_clone
[12:03:22] [PASSED] invalid_clone
[12:03:22] =========== [PASSED] drm_test_check_valid_clones ===========
[12:03:22] ============= [PASSED] drm_validate_clone_mode =============
[12:03:22] ============= drm_validate_modeset (1 subtest) =============
[12:03:22] [PASSED] drm_test_check_connector_changed_modeset
[12:03:22] ============== [PASSED] drm_validate_modeset ===============
[12:03:22] ====== drm_test_bridge_get_current_state (2 subtests) ======
[12:03:22] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[12:03:22] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[12:03:22] ======== [PASSED] drm_test_bridge_get_current_state ========
[12:03:22] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[12:03:22] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[12:03:22] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[12:03:22] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[12:03:22] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[12:03:22] ============== drm_bridge_alloc (2 subtests) ===============
[12:03:22] [PASSED] drm_test_drm_bridge_alloc_basic
[12:03:22] [PASSED] drm_test_drm_bridge_alloc_get_put
[12:03:22] ================ [PASSED] drm_bridge_alloc =================
[12:03:22] ================== drm_buddy (7 subtests) ==================
[12:03:22] [PASSED] drm_test_buddy_alloc_limit
[12:03:22] [PASSED] drm_test_buddy_alloc_optimistic
[12:03:22] [PASSED] drm_test_buddy_alloc_pessimistic
[12:03:22] [PASSED] drm_test_buddy_alloc_pathological
[12:03:22] [PASSED] drm_test_buddy_alloc_contiguous
[12:03:22] [PASSED] drm_test_buddy_alloc_clear
[12:03:22] [PASSED] drm_test_buddy_alloc_range_bias
[12:03:22] ==================== [PASSED] drm_buddy ====================
[12:03:22] ============= drm_cmdline_parser (40 subtests) =============
[12:03:22] [PASSED] drm_test_cmdline_force_d_only
[12:03:22] [PASSED] drm_test_cmdline_force_D_only_dvi
[12:03:22] [PASSED] drm_test_cmdline_force_D_only_hdmi
[12:03:22] [PASSED] drm_test_cmdline_force_D_only_not_digital
[12:03:22] [PASSED] drm_test_cmdline_force_e_only
[12:03:22] [PASSED] drm_test_cmdline_res
[12:03:22] [PASSED] drm_test_cmdline_res_vesa
[12:03:22] [PASSED] drm_test_cmdline_res_vesa_rblank
[12:03:22] [PASSED] drm_test_cmdline_res_rblank
[12:03:22] [PASSED] drm_test_cmdline_res_bpp
[12:03:22] [PASSED] drm_test_cmdline_res_refresh
[12:03:22] [PASSED] drm_test_cmdline_res_bpp_refresh
[12:03:22] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[12:03:22] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[12:03:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[12:03:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[12:03:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[12:03:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[12:03:22] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[12:03:22] [PASSED] drm_test_cmdline_res_margins_force_on
[12:03:22] [PASSED] drm_test_cmdline_res_vesa_margins
[12:03:22] [PASSED] drm_test_cmdline_name
[12:03:22] [PASSED] drm_test_cmdline_name_bpp
[12:03:22] [PASSED] drm_test_cmdline_name_option
[12:03:22] [PASSED] drm_test_cmdline_name_bpp_option
[12:03:22] [PASSED] drm_test_cmdline_rotate_0
[12:03:22] [PASSED] drm_test_cmdline_rotate_90
[12:03:22] [PASSED] drm_test_cmdline_rotate_180
[12:03:22] [PASSED] drm_test_cmdline_rotate_270
[12:03:22] [PASSED] drm_test_cmdline_hmirror
[12:03:22] [PASSED] drm_test_cmdline_vmirror
[12:03:22] [PASSED] drm_test_cmdline_margin_options
[12:03:22] [PASSED] drm_test_cmdline_multiple_options
[12:03:22] [PASSED] drm_test_cmdline_bpp_extra_and_option
[12:03:22] [PASSED] drm_test_cmdline_extra_and_option
[12:03:22] [PASSED] drm_test_cmdline_freestanding_options
[12:03:22] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[12:03:22] [PASSED] drm_test_cmdline_panel_orientation
[12:03:22] ================ drm_test_cmdline_invalid =================
[12:03:22] [PASSED] margin_only
[12:03:22] [PASSED] interlace_only
[12:03:22] [PASSED] res_missing_x
[12:03:22] [PASSED] res_missing_y
[12:03:22] [PASSED] res_bad_y
[12:03:22] [PASSED] res_missing_y_bpp
[12:03:22] [PASSED] res_bad_bpp
[12:03:22] [PASSED] res_bad_refresh
[12:03:22] [PASSED] res_bpp_refresh_force_on_off
[12:03:22] [PASSED] res_invalid_mode
[12:03:22] [PASSED] res_bpp_wrong_place_mode
[12:03:22] [PASSED] name_bpp_refresh
[12:03:22] [PASSED] name_refresh
[12:03:22] [PASSED] name_refresh_wrong_mode
[12:03:22] [PASSED] name_refresh_invalid_mode
[12:03:22] [PASSED] rotate_multiple
[12:03:22] [PASSED] rotate_invalid_val
[12:03:22] [PASSED] rotate_truncated
[12:03:22] [PASSED] invalid_option
[12:03:22] [PASSED] invalid_tv_option
[12:03:22] [PASSED] truncated_tv_option
[12:03:22] ============ [PASSED] drm_test_cmdline_invalid =============
[12:03:22] =============== drm_test_cmdline_tv_options ===============
[12:03:22] [PASSED] NTSC
[12:03:22] [PASSED] NTSC_443
[12:03:22] [PASSED] NTSC_J
[12:03:22] [PASSED] PAL
[12:03:22] [PASSED] PAL_M
[12:03:22] [PASSED] PAL_N
[12:03:22] [PASSED] SECAM
[12:03:22] [PASSED] MONO_525
[12:03:22] [PASSED] MONO_625
[12:03:22] =========== [PASSED] drm_test_cmdline_tv_options ===========
[12:03:22] =============== [PASSED] drm_cmdline_parser ================
[12:03:22] ========== drmm_connector_hdmi_init (20 subtests) ==========
[12:03:22] [PASSED] drm_test_connector_hdmi_init_valid
[12:03:22] [PASSED] drm_test_connector_hdmi_init_bpc_8
[12:03:22] [PASSED] drm_test_connector_hdmi_init_bpc_10
[12:03:22] [PASSED] drm_test_connector_hdmi_init_bpc_12
[12:03:22] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[12:03:22] [PASSED] drm_test_connector_hdmi_init_bpc_null
[12:03:22] [PASSED] drm_test_connector_hdmi_init_formats_empty
[12:03:22] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[12:03:22] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:03:22] [PASSED] supported_formats=0x9 yuv420_allowed=1
[12:03:22] [PASSED] supported_formats=0x9 yuv420_allowed=0
[12:03:22] [PASSED] supported_formats=0x3 yuv420_allowed=1
[12:03:22] [PASSED] supported_formats=0x3 yuv420_allowed=0
[12:03:22] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:03:22] [PASSED] drm_test_connector_hdmi_init_null_ddc
[12:03:22] [PASSED] drm_test_connector_hdmi_init_null_product
[12:03:22] [PASSED] drm_test_connector_hdmi_init_null_vendor
[12:03:22] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[12:03:22] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[12:03:22] [PASSED] drm_test_connector_hdmi_init_product_valid
[12:03:22] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[12:03:22] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[12:03:22] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[12:03:22] ========= drm_test_connector_hdmi_init_type_valid =========
[12:03:22] [PASSED] HDMI-A
[12:03:22] [PASSED] HDMI-B
[12:03:22] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[12:03:22] ======== drm_test_connector_hdmi_init_type_invalid ========
[12:03:22] [PASSED] Unknown
[12:03:22] [PASSED] VGA
[12:03:22] [PASSED] DVI-I
[12:03:22] [PASSED] DVI-D
[12:03:22] [PASSED] DVI-A
[12:03:22] [PASSED] Composite
[12:03:22] [PASSED] SVIDEO
[12:03:22] [PASSED] LVDS
[12:03:22] [PASSED] Component
[12:03:22] [PASSED] DIN
[12:03:22] [PASSED] DP
[12:03:22] [PASSED] TV
[12:03:22] [PASSED] eDP
[12:03:22] [PASSED] Virtual
[12:03:22] [PASSED] DSI
[12:03:22] [PASSED] DPI
[12:03:22] [PASSED] Writeback
[12:03:22] [PASSED] SPI
[12:03:22] [PASSED] USB
[12:03:22] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[12:03:22] ============ [PASSED] drmm_connector_hdmi_init =============
[12:03:22] ============= drmm_connector_init (3 subtests) =============
[12:03:22] [PASSED] drm_test_drmm_connector_init
[12:03:22] [PASSED] drm_test_drmm_connector_init_null_ddc
[12:03:22] ========= drm_test_drmm_connector_init_type_valid =========
[12:03:22] [PASSED] Unknown
[12:03:22] [PASSED] VGA
[12:03:22] [PASSED] DVI-I
[12:03:22] [PASSED] DVI-D
[12:03:22] [PASSED] DVI-A
[12:03:22] [PASSED] Composite
[12:03:22] [PASSED] SVIDEO
[12:03:22] [PASSED] LVDS
[12:03:22] [PASSED] Component
[12:03:22] [PASSED] DIN
[12:03:22] [PASSED] DP
[12:03:22] [PASSED] HDMI-A
[12:03:22] [PASSED] HDMI-B
[12:03:22] [PASSED] TV
[12:03:22] [PASSED] eDP
[12:03:22] [PASSED] Virtual
[12:03:22] [PASSED] DSI
[12:03:22] [PASSED] DPI
[12:03:22] [PASSED] Writeback
[12:03:22] [PASSED] SPI
[12:03:22] [PASSED] USB
[12:03:22] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[12:03:22] =============== [PASSED] drmm_connector_init ===============
[12:03:22] ========= drm_connector_dynamic_init (6 subtests) ==========
[12:03:22] [PASSED] drm_test_drm_connector_dynamic_init
[12:03:22] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[12:03:22] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[12:03:22] [PASSED] drm_test_drm_connector_dynamic_init_properties
[12:03:22] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[12:03:22] [PASSED] Unknown
[12:03:22] [PASSED] VGA
[12:03:22] [PASSED] DVI-I
[12:03:22] [PASSED] DVI-D
[12:03:22] [PASSED] DVI-A
[12:03:22] [PASSED] Composite
[12:03:22] [PASSED] SVIDEO
[12:03:22] [PASSED] LVDS
[12:03:22] [PASSED] Component
[12:03:22] [PASSED] DIN
[12:03:22] [PASSED] DP
[12:03:22] [PASSED] HDMI-A
[12:03:22] [PASSED] HDMI-B
[12:03:22] [PASSED] TV
[12:03:22] [PASSED] eDP
[12:03:22] [PASSED] Virtual
[12:03:22] [PASSED] DSI
[12:03:22] [PASSED] DPI
[12:03:22] [PASSED] Writeback
[12:03:22] [PASSED] SPI
[12:03:22] [PASSED] USB
[12:03:22] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[12:03:22] ======== drm_test_drm_connector_dynamic_init_name =========
[12:03:22] [PASSED] Unknown
[12:03:22] [PASSED] VGA
[12:03:22] [PASSED] DVI-I
[12:03:22] [PASSED] DVI-D
[12:03:22] [PASSED] DVI-A
[12:03:22] [PASSED] Composite
[12:03:22] [PASSED] SVIDEO
[12:03:22] [PASSED] LVDS
[12:03:22] [PASSED] Component
[12:03:22] [PASSED] DIN
[12:03:22] [PASSED] DP
[12:03:22] [PASSED] HDMI-A
[12:03:22] [PASSED] HDMI-B
[12:03:22] [PASSED] TV
[12:03:22] [PASSED] eDP
[12:03:22] [PASSED] Virtual
[12:03:22] [PASSED] DSI
[12:03:22] [PASSED] DPI
[12:03:22] [PASSED] Writeback
[12:03:22] [PASSED] SPI
[12:03:22] [PASSED] USB
[12:03:22] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[12:03:22] =========== [PASSED] drm_connector_dynamic_init ============
[12:03:22] ==== drm_connector_dynamic_register_early (4 subtests) =====
[12:03:22] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[12:03:22] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[12:03:22] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[12:03:22] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[12:03:22] ====== [PASSED] drm_connector_dynamic_register_early =======
[12:03:22] ======= drm_connector_dynamic_register (7 subtests) ========
[12:03:22] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[12:03:22] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[12:03:22] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[12:03:22] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[12:03:22] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[12:03:22] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[12:03:22] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[12:03:22] ========= [PASSED] drm_connector_dynamic_register ==========
[12:03:22] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[12:03:22] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[12:03:22] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[12:03:22] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[12:03:22] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[12:03:22] ========== drm_test_get_tv_mode_from_name_valid ===========
[12:03:22] [PASSED] NTSC
[12:03:22] [PASSED] NTSC-443
[12:03:22] [PASSED] NTSC-J
[12:03:22] [PASSED] PAL
[12:03:22] [PASSED] PAL-M
[12:03:22] [PASSED] PAL-N
[12:03:22] [PASSED] SECAM
[12:03:22] [PASSED] Mono
[12:03:22] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[12:03:22] [PASSED] drm_test_get_tv_mode_from_name_truncated
[12:03:22] ============ [PASSED] drm_get_tv_mode_from_name ============
[12:03:22] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[12:03:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[12:03:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[12:03:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[12:03:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[12:03:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[12:03:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[12:03:22] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[12:03:22] [PASSED] VIC 96
[12:03:22] [PASSED] VIC 97
[12:03:22] [PASSED] VIC 101
[12:03:22] [PASSED] VIC 102
[12:03:22] [PASSED] VIC 106
[12:03:22] [PASSED] VIC 107
[12:03:22] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[12:03:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[12:03:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[12:03:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[12:03:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[12:03:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[12:03:22] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[12:03:22] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[12:03:22] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[12:03:22] [PASSED] Automatic
[12:03:22] [PASSED] Full
[12:03:22] [PASSED] Limited 16:235
[12:03:22] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[12:03:22] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[12:03:22] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[12:03:22] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[12:03:22] === drm_test_drm_hdmi_connector_get_output_format_name ====
[12:03:22] [PASSED] RGB
[12:03:22] [PASSED] YUV 4:2:0
[12:03:22] [PASSED] YUV 4:2:2
[12:03:22] [PASSED] YUV 4:4:4
[12:03:22] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[12:03:22] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[12:03:22] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[12:03:22] ============= drm_damage_helper (21 subtests) ==============
[12:03:22] [PASSED] drm_test_damage_iter_no_damage
[12:03:22] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[12:03:22] [PASSED] drm_test_damage_iter_no_damage_src_moved
[12:03:22] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[12:03:22] [PASSED] drm_test_damage_iter_no_damage_not_visible
[12:03:22] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[12:03:22] [PASSED] drm_test_damage_iter_no_damage_no_fb
[12:03:22] [PASSED] drm_test_damage_iter_simple_damage
[12:03:22] [PASSED] drm_test_damage_iter_single_damage
[12:03:22] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[12:03:22] [PASSED] drm_test_damage_iter_single_damage_outside_src
[12:03:22] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[12:03:22] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[12:03:22] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[12:03:22] [PASSED] drm_test_damage_iter_single_damage_src_moved
[12:03:22] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[12:03:22] [PASSED] drm_test_damage_iter_damage
[12:03:22] [PASSED] drm_test_damage_iter_damage_one_intersect
[12:03:22] [PASSED] drm_test_damage_iter_damage_one_outside
[12:03:22] [PASSED] drm_test_damage_iter_damage_src_moved
[12:03:22] [PASSED] drm_test_damage_iter_damage_not_visible
[12:03:22] ================ [PASSED] drm_damage_helper ================
[12:03:22] ============== drm_dp_mst_helper (3 subtests) ==============
[12:03:22] ============== drm_test_dp_mst_calc_pbn_mode ==============
[12:03:22] [PASSED] Clock 154000 BPP 30 DSC disabled
[12:03:22] [PASSED] Clock 234000 BPP 30 DSC disabled
[12:03:22] [PASSED] Clock 297000 BPP 24 DSC disabled
[12:03:22] [PASSED] Clock 332880 BPP 24 DSC enabled
[12:03:22] [PASSED] Clock 324540 BPP 24 DSC enabled
[12:03:22] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[12:03:22] ============== drm_test_dp_mst_calc_pbn_div ===============
[12:03:22] [PASSED] Link rate 2000000 lane count 4
[12:03:22] [PASSED] Link rate 2000000 lane count 2
[12:03:22] [PASSED] Link rate 2000000 lane count 1
[12:03:22] [PASSED] Link rate 1350000 lane count 4
[12:03:22] [PASSED] Link rate 1350000 lane count 2
[12:03:22] [PASSED] Link rate 1350000 lane count 1
[12:03:22] [PASSED] Link rate 1000000 lane count 4
[12:03:22] [PASSED] Link rate 1000000 lane count 2
[12:03:22] [PASSED] Link rate 1000000 lane count 1
[12:03:22] [PASSED] Link rate 810000 lane count 4
[12:03:22] [PASSED] Link rate 810000 lane count 2
[12:03:22] [PASSED] Link rate 810000 lane count 1
[12:03:22] [PASSED] Link rate 540000 lane count 4
[12:03:22] [PASSED] Link rate 540000 lane count 2
[12:03:22] [PASSED] Link rate 540000 lane count 1
[12:03:22] [PASSED] Link rate 270000 lane count 4
[12:03:22] [PASSED] Link rate 270000 lane count 2
[12:03:22] [PASSED] Link rate 270000 lane count 1
[12:03:22] [PASSED] Link rate 162000 lane count 4
[12:03:22] [PASSED] Link rate 162000 lane count 2
[12:03:22] [PASSED] Link rate 162000 lane count 1
[12:03:22] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[12:03:22] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[12:03:22] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[12:03:22] [PASSED] DP_POWER_UP_PHY with port number
[12:03:22] [PASSED] DP_POWER_DOWN_PHY with port number
[12:03:22] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[12:03:22] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[12:03:22] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[12:03:22] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[12:03:22] [PASSED] DP_QUERY_PAYLOAD with port number
[12:03:22] [PASSED] DP_QUERY_PAYLOAD with VCPI
[12:03:22] [PASSED] DP_REMOTE_DPCD_READ with port number
[12:03:22] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[12:03:22] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[12:03:22] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[12:03:22] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[12:03:22] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[12:03:22] [PASSED] DP_REMOTE_I2C_READ with port number
[12:03:22] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[12:03:22] [PASSED] DP_REMOTE_I2C_READ with transactions array
[12:03:22] [PASSED] DP_REMOTE_I2C_WRITE with port number
[12:03:22] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[12:03:22] [PASSED] DP_REMOTE_I2C_WRITE with data array
[12:03:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[12:03:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[12:03:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[12:03:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[12:03:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[12:03:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[12:03:22] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[12:03:22] ================ [PASSED] drm_dp_mst_helper ================
[12:03:22] ================== drm_exec (7 subtests) ===================
[12:03:22] [PASSED] sanitycheck
[12:03:22] [PASSED] test_lock
[12:03:22] [PASSED] test_lock_unlock
[12:03:22] [PASSED] test_duplicates
[12:03:22] [PASSED] test_prepare
[12:03:22] [PASSED] test_prepare_array
[12:03:22] [PASSED] test_multiple_loops
[12:03:22] ==================== [PASSED] drm_exec =====================
[12:03:22] =========== drm_format_helper_test (17 subtests) ===========
[12:03:22] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[12:03:22] [PASSED] single_pixel_source_buffer
[12:03:22] [PASSED] single_pixel_clip_rectangle
[12:03:22] [PASSED] well_known_colors
[12:03:22] [PASSED] destination_pitch
[12:03:22] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[12:03:22] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[12:03:22] [PASSED] single_pixel_source_buffer
[12:03:22] [PASSED] single_pixel_clip_rectangle
[12:03:22] [PASSED] well_known_colors
[12:03:22] [PASSED] destination_pitch
[12:03:22] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[12:03:22] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[12:03:22] [PASSED] single_pixel_source_buffer
[12:03:22] [PASSED] single_pixel_clip_rectangle
[12:03:22] [PASSED] well_known_colors
[12:03:22] [PASSED] destination_pitch
[12:03:22] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[12:03:22] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[12:03:22] [PASSED] single_pixel_source_buffer
[12:03:22] [PASSED] single_pixel_clip_rectangle
[12:03:22] [PASSED] well_known_colors
[12:03:22] [PASSED] destination_pitch
[12:03:22] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[12:03:22] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[12:03:22] [PASSED] single_pixel_source_buffer
[12:03:22] [PASSED] single_pixel_clip_rectangle
[12:03:22] [PASSED] well_known_colors
[12:03:22] [PASSED] destination_pitch
[12:03:22] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[12:03:22] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[12:03:22] [PASSED] single_pixel_source_buffer
[12:03:22] [PASSED] single_pixel_clip_rectangle
[12:03:22] [PASSED] well_known_colors
[12:03:22] [PASSED] destination_pitch
[12:03:22] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[12:03:22] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[12:03:22] [PASSED] single_pixel_source_buffer
[12:03:22] [PASSED] single_pixel_clip_rectangle
[12:03:22] [PASSED] well_known_colors
[12:03:22] [PASSED] destination_pitch
[12:03:22] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[12:03:22] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[12:03:22] [PASSED] single_pixel_source_buffer
[12:03:22] [PASSED] single_pixel_clip_rectangle
[12:03:22] [PASSED] well_known_colors
[12:03:22] [PASSED] destination_pitch
[12:03:22] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[12:03:22] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[12:03:22] [PASSED] single_pixel_source_buffer
[12:03:22] [PASSED] single_pixel_clip_rectangle
[12:03:22] [PASSED] well_known_colors
[12:03:22] [PASSED] destination_pitch
[12:03:22] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[12:03:22] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[12:03:22] [PASSED] single_pixel_source_buffer
[12:03:22] [PASSED] single_pixel_clip_rectangle
[12:03:22] [PASSED] well_known_colors
[12:03:22] [PASSED] destination_pitch
[12:03:22] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[12:03:22] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[12:03:22] [PASSED] single_pixel_source_buffer
[12:03:22] [PASSED] single_pixel_clip_rectangle
[12:03:22] [PASSED] well_known_colors
[12:03:22] [PASSED] destination_pitch
[12:03:22] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[12:03:22] ============== drm_test_fb_xrgb8888_to_mono ===============
[12:03:22] [PASSED] single_pixel_source_buffer
[12:03:22] [PASSED] single_pixel_clip_rectangle
[12:03:22] [PASSED] well_known_colors
[12:03:22] [PASSED] destination_pitch
[12:03:22] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[12:03:22] ==================== drm_test_fb_swab =====================
[12:03:22] [PASSED] single_pixel_source_buffer
[12:03:22] [PASSED] single_pixel_clip_rectangle
[12:03:22] [PASSED] well_known_colors
[12:03:22] [PASSED] destination_pitch
[12:03:22] ================ [PASSED] drm_test_fb_swab =================
[12:03:22] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[12:03:22] [PASSED] single_pixel_source_buffer
[12:03:22] [PASSED] single_pixel_clip_rectangle
[12:03:22] [PASSED] well_known_colors
[12:03:22] [PASSED] destination_pitch
[12:03:22] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[12:03:22] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[12:03:22] [PASSED] single_pixel_source_buffer
[12:03:22] [PASSED] single_pixel_clip_rectangle
[12:03:22] [PASSED] well_known_colors
[12:03:22] [PASSED] destination_pitch
[12:03:22] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[12:03:22] ================= drm_test_fb_clip_offset =================
[12:03:22] [PASSED] pass through
[12:03:22] [PASSED] horizontal offset
[12:03:22] [PASSED] vertical offset
[12:03:22] [PASSED] horizontal and vertical offset
[12:03:22] [PASSED] horizontal offset (custom pitch)
[12:03:22] [PASSED] vertical offset (custom pitch)
[12:03:22] [PASSED] horizontal and vertical offset (custom pitch)
[12:03:22] ============= [PASSED] drm_test_fb_clip_offset =============
[12:03:22] =================== drm_test_fb_memcpy ====================
[12:03:22] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[12:03:22] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[12:03:22] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[12:03:22] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[12:03:22] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[12:03:22] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[12:03:22] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[12:03:22] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[12:03:22] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[12:03:22] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[12:03:22] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[12:03:22] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[12:03:22] =============== [PASSED] drm_test_fb_memcpy ================
[12:03:22] ============= [PASSED] drm_format_helper_test ==============
[12:03:22] ================= drm_format (18 subtests) =================
[12:03:22] [PASSED] drm_test_format_block_width_invalid
[12:03:22] [PASSED] drm_test_format_block_width_one_plane
[12:03:22] [PASSED] drm_test_format_block_width_two_plane
[12:03:22] [PASSED] drm_test_format_block_width_three_plane
[12:03:22] [PASSED] drm_test_format_block_width_tiled
[12:03:22] [PASSED] drm_test_format_block_height_invalid
[12:03:22] [PASSED] drm_test_format_block_height_one_plane
[12:03:22] [PASSED] drm_test_format_block_height_two_plane
[12:03:22] [PASSED] drm_test_format_block_height_three_plane
[12:03:22] [PASSED] drm_test_format_block_height_tiled
[12:03:22] [PASSED] drm_test_format_min_pitch_invalid
[12:03:22] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[12:03:22] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[12:03:22] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[12:03:22] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[12:03:22] [PASSED] drm_test_format_min_pitch_two_plane
[12:03:22] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[12:03:22] [PASSED] drm_test_format_min_pitch_tiled
[12:03:22] =================== [PASSED] drm_format ====================
[12:03:22] ============== drm_framebuffer (10 subtests) ===============
[12:03:22] ========== drm_test_framebuffer_check_src_coords ==========
[12:03:22] [PASSED] Success: source fits into fb
[12:03:22] [PASSED] Fail: overflowing fb with x-axis coordinate
[12:03:22] [PASSED] Fail: overflowing fb with y-axis coordinate
[12:03:22] [PASSED] Fail: overflowing fb with source width
[12:03:22] [PASSED] Fail: overflowing fb with source height
[12:03:22] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[12:03:22] [PASSED] drm_test_framebuffer_cleanup
[12:03:22] =============== drm_test_framebuffer_create ===============
[12:03:22] [PASSED] ABGR8888 normal sizes
[12:03:22] [PASSED] ABGR8888 max sizes
[12:03:22] [PASSED] ABGR8888 pitch greater than min required
[12:03:22] [PASSED] ABGR8888 pitch less than min required
[12:03:22] [PASSED] ABGR8888 Invalid width
[12:03:22] [PASSED] ABGR8888 Invalid buffer handle
[12:03:22] [PASSED] No pixel format
[12:03:22] [PASSED] ABGR8888 Width 0
[12:03:22] [PASSED] ABGR8888 Height 0
[12:03:22] [PASSED] ABGR8888 Out of bound height * pitch combination
[12:03:22] [PASSED] ABGR8888 Large buffer offset
[12:03:22] [PASSED] ABGR8888 Buffer offset for inexistent plane
[12:03:22] [PASSED] ABGR8888 Invalid flag
[12:03:22] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[12:03:22] [PASSED] ABGR8888 Valid buffer modifier
[12:03:22] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[12:03:22] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[12:03:22] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[12:03:22] [PASSED] NV12 Normal sizes
[12:03:22] [PASSED] NV12 Max sizes
[12:03:22] [PASSED] NV12 Invalid pitch
[12:03:22] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[12:03:22] [PASSED] NV12 different modifier per-plane
[12:03:22] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[12:03:22] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[12:03:22] [PASSED] NV12 Modifier for inexistent plane
[12:03:22] [PASSED] NV12 Handle for inexistent plane
[12:03:22] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[12:03:22] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[12:03:22] [PASSED] YVU420 Normal sizes
[12:03:22] [PASSED] YVU420 Max sizes
[12:03:22] [PASSED] YVU420 Invalid pitch
[12:03:22] [PASSED] YVU420 Different pitches
[12:03:22] [PASSED] YVU420 Different buffer offsets/pitches
[12:03:22] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[12:03:22] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[12:03:22] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[12:03:22] [PASSED] YVU420 Valid modifier
[12:03:22] [PASSED] YVU420 Different modifiers per plane
[12:03:22] [PASSED] YVU420 Modifier for inexistent plane
[12:03:22] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[12:03:22] [PASSED] X0L2 Normal sizes
[12:03:22] [PASSED] X0L2 Max sizes
[12:03:22] [PASSED] X0L2 Invalid pitch
[12:03:22] [PASSED] X0L2 Pitch greater than minimum required
[12:03:22] [PASSED] X0L2 Handle for inexistent plane
[12:03:22] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[12:03:22] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[12:03:22] [PASSED] X0L2 Valid modifier
[12:03:22] [PASSED] X0L2 Modifier for inexistent plane
[12:03:22] =========== [PASSED] drm_test_framebuffer_create ===========
[12:03:22] [PASSED] drm_test_framebuffer_free
[12:03:22] [PASSED] drm_test_framebuffer_init
[12:03:22] [PASSED] drm_test_framebuffer_init_bad_format
[12:03:22] [PASSED] drm_test_framebuffer_init_dev_mismatch
[12:03:22] [PASSED] drm_test_framebuffer_lookup
[12:03:22] [PASSED] drm_test_framebuffer_lookup_inexistent
[12:03:22] [PASSED] drm_test_framebuffer_modifiers_not_supported
[12:03:22] ================= [PASSED] drm_framebuffer =================
[12:03:22] ================ drm_gem_shmem (8 subtests) ================
[12:03:22] [PASSED] drm_gem_shmem_test_obj_create
[12:03:22] [PASSED] drm_gem_shmem_test_obj_create_private
[12:03:22] [PASSED] drm_gem_shmem_test_pin_pages
[12:03:22] [PASSED] drm_gem_shmem_test_vmap
[12:03:22] [PASSED] drm_gem_shmem_test_get_pages_sgt
[12:03:22] [PASSED] drm_gem_shmem_test_get_sg_table
[12:03:22] [PASSED] drm_gem_shmem_test_madvise
[12:03:22] [PASSED] drm_gem_shmem_test_purge
[12:03:22] ================== [PASSED] drm_gem_shmem ==================
[12:03:22] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[12:03:22] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[12:03:22] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[12:03:22] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[12:03:22] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[12:03:22] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[12:03:22] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[12:03:22] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[12:03:22] [PASSED] Automatic
[12:03:22] [PASSED] Full
[12:03:22] [PASSED] Limited 16:235
[12:03:22] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[12:03:22] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[12:03:22] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[12:03:22] [PASSED] drm_test_check_disable_connector
[12:03:22] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[12:03:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[12:03:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[12:03:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[12:03:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[12:03:22] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[12:03:22] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[12:03:22] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[12:03:22] [PASSED] drm_test_check_output_bpc_dvi
[12:03:22] [PASSED] drm_test_check_output_bpc_format_vic_1
[12:03:22] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[12:03:22] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[12:03:22] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[12:03:22] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[12:03:22] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[12:03:22] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[12:03:22] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[12:03:22] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[12:03:22] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[12:03:22] [PASSED] drm_test_check_broadcast_rgb_value
[12:03:22] [PASSED] drm_test_check_bpc_8_value
[12:03:22] [PASSED] drm_test_check_bpc_10_value
[12:03:22] [PASSED] drm_test_check_bpc_12_value
[12:03:22] [PASSED] drm_test_check_format_value
[12:03:22] [PASSED] drm_test_check_tmds_char_value
[12:03:22] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[12:03:22] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[12:03:22] [PASSED] drm_test_check_mode_valid
[12:03:22] [PASSED] drm_test_check_mode_valid_reject
[12:03:22] [PASSED] drm_test_check_mode_valid_reject_rate
[12:03:22] [PASSED] drm_test_check_mode_valid_reject_max_clock
[12:03:22] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[12:03:22] ================= drm_managed (2 subtests) =================
[12:03:22] [PASSED] drm_test_managed_release_action
[12:03:22] [PASSED] drm_test_managed_run_action
[12:03:22] =================== [PASSED] drm_managed ===================
[12:03:22] =================== drm_mm (6 subtests) ====================
[12:03:22] [PASSED] drm_test_mm_init
[12:03:22] [PASSED] drm_test_mm_debug
[12:03:22] [PASSED] drm_test_mm_align32
[12:03:22] [PASSED] drm_test_mm_align64
[12:03:22] [PASSED] drm_test_mm_lowest
[12:03:22] [PASSED] drm_test_mm_highest
[12:03:22] ===================== [PASSED] drm_mm ======================
[12:03:22] ============= drm_modes_analog_tv (5 subtests) =============
[12:03:22] [PASSED] drm_test_modes_analog_tv_mono_576i
[12:03:22] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[12:03:22] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[12:03:22] [PASSED] drm_test_modes_analog_tv_pal_576i
[12:03:22] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[12:03:22] =============== [PASSED] drm_modes_analog_tv ===============
[12:03:22] ============== drm_plane_helper (2 subtests) ===============
[12:03:22] =============== drm_test_check_plane_state ================
[12:03:22] [PASSED] clipping_simple
[12:03:22] [PASSED] clipping_rotate_reflect
[12:03:22] [PASSED] positioning_simple
[12:03:22] [PASSED] upscaling
[12:03:22] [PASSED] downscaling
[12:03:22] [PASSED] rounding1
[12:03:22] [PASSED] rounding2
[12:03:22] [PASSED] rounding3
[12:03:22] [PASSED] rounding4
[12:03:22] =========== [PASSED] drm_test_check_plane_state ============
[12:03:22] =========== drm_test_check_invalid_plane_state ============
[12:03:22] [PASSED] positioning_invalid
[12:03:22] [PASSED] upscaling_invalid
[12:03:22] [PASSED] downscaling_invalid
[12:03:22] ======= [PASSED] drm_test_check_invalid_plane_state ========
[12:03:22] ================ [PASSED] drm_plane_helper =================
[12:03:22] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[12:03:22] ====== drm_test_connector_helper_tv_get_modes_check =======
[12:03:22] [PASSED] None
[12:03:22] [PASSED] PAL
[12:03:22] [PASSED] NTSC
[12:03:22] [PASSED] Both, NTSC Default
[12:03:22] [PASSED] Both, PAL Default
[12:03:22] [PASSED] Both, NTSC Default, with PAL on command-line
[12:03:22] [PASSED] Both, PAL Default, with NTSC on command-line
[12:03:22] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[12:03:22] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[12:03:22] ================== drm_rect (9 subtests) ===================
[12:03:22] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[12:03:22] [PASSED] drm_test_rect_clip_scaled_not_clipped
[12:03:22] [PASSED] drm_test_rect_clip_scaled_clipped
[12:03:22] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[12:03:22] ================= drm_test_rect_intersect =================
[12:03:22] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[12:03:22] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[12:03:22] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[12:03:22] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[12:03:22] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[12:03:22] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[12:03:22] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[12:03:22] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[12:03:22] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[12:03:22] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[12:03:22] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[12:03:22] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[12:03:22] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[12:03:22] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[12:03:22] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[12:03:22] ============= [PASSED] drm_test_rect_intersect =============
[12:03:22] ================ drm_test_rect_calc_hscale ================
[12:03:22] [PASSED] normal use
[12:03:22] [PASSED] out of max range
[12:03:22] [PASSED] out of min range
[12:03:22] [PASSED] zero dst
[12:03:22] [PASSED] negative src
[12:03:22] [PASSED] negative dst
[12:03:22] ============ [PASSED] drm_test_rect_calc_hscale ============
[12:03:22] ================ drm_test_rect_calc_vscale ================
[12:03:22] [PASSED] normal use
[12:03:22] [PASSED] out of max range
[12:03:22] [PASSED] out of min range
[12:03:22] [PASSED] zero dst
[12:03:22] [PASSED] negative src
[12:03:22] [PASSED] negative dst
[12:03:22] ============ [PASSED] drm_test_rect_calc_vscale ============
[12:03:22] ================== drm_test_rect_rotate ===================
[12:03:22] [PASSED] reflect-x
[12:03:22] [PASSED] reflect-y
[12:03:22] [PASSED] rotate-0
[12:03:22] [PASSED] rotate-90
[12:03:22] [PASSED] rotate-180
[12:03:22] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[12:03:22] ============== [PASSED] drm_test_rect_rotate ===============
[12:03:22] ================ drm_test_rect_rotate_inv =================
[12:03:22] [PASSED] reflect-x
[12:03:22] [PASSED] reflect-y
[12:03:22] [PASSED] rotate-0
[12:03:22] [PASSED] rotate-90
[12:03:22] [PASSED] rotate-180
[12:03:22] [PASSED] rotate-270
[12:03:22] ============ [PASSED] drm_test_rect_rotate_inv =============
[12:03:22] ==================== [PASSED] drm_rect =====================
[12:03:22] ============ drm_sysfb_modeset_test (1 subtest) ============
[12:03:22] ============ drm_test_sysfb_build_fourcc_list =============
[12:03:22] [PASSED] no native formats
[12:03:22] [PASSED] XRGB8888 as native format
[12:03:22] [PASSED] remove duplicates
[12:03:22] [PASSED] convert alpha formats
[12:03:22] [PASSED] random formats
[12:03:22] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[12:03:22] ============= [PASSED] drm_sysfb_modeset_test ==============
[12:03:22] ============================================================
[12:03:22] Testing complete. Ran 616 tests: passed: 616
[12:03:22] Elapsed time: 23.139s total, 1.639s configuring, 21.334s building, 0.125s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[12:03:23] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:03:24] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:03:32] Starting KUnit Kernel (1/1)...
[12:03:32] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:03:32] ================= ttm_device (5 subtests) ==================
[12:03:32] [PASSED] ttm_device_init_basic
[12:03:32] [PASSED] ttm_device_init_multiple
[12:03:32] [PASSED] ttm_device_fini_basic
[12:03:32] [PASSED] ttm_device_init_no_vma_man
[12:03:32] ================== ttm_device_init_pools ==================
[12:03:32] [PASSED] No DMA allocations, no DMA32 required
[12:03:32] [PASSED] DMA allocations, DMA32 required
[12:03:32] [PASSED] No DMA allocations, DMA32 required
[12:03:32] [PASSED] DMA allocations, no DMA32 required
[12:03:32] ============== [PASSED] ttm_device_init_pools ==============
[12:03:32] =================== [PASSED] ttm_device ====================
[12:03:32] ================== ttm_pool (8 subtests) ===================
[12:03:32] ================== ttm_pool_alloc_basic ===================
[12:03:32] [PASSED] One page
[12:03:32] [PASSED] More than one page
[12:03:32] [PASSED] Above the allocation limit
[12:03:32] [PASSED] One page, with coherent DMA mappings enabled
[12:03:32] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:03:32] ============== [PASSED] ttm_pool_alloc_basic ===============
[12:03:32] ============== ttm_pool_alloc_basic_dma_addr ==============
[12:03:32] [PASSED] One page
[12:03:32] [PASSED] More than one page
[12:03:32] [PASSED] Above the allocation limit
[12:03:32] [PASSED] One page, with coherent DMA mappings enabled
[12:03:32] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:03:32] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[12:03:32] [PASSED] ttm_pool_alloc_order_caching_match
[12:03:32] [PASSED] ttm_pool_alloc_caching_mismatch
[12:03:32] [PASSED] ttm_pool_alloc_order_mismatch
[12:03:32] [PASSED] ttm_pool_free_dma_alloc
[12:03:32] [PASSED] ttm_pool_free_no_dma_alloc
[12:03:32] [PASSED] ttm_pool_fini_basic
[12:03:32] ==================== [PASSED] ttm_pool =====================
[12:03:32] ================ ttm_resource (8 subtests) =================
[12:03:32] ================= ttm_resource_init_basic =================
[12:03:32] [PASSED] Init resource in TTM_PL_SYSTEM
[12:03:32] [PASSED] Init resource in TTM_PL_VRAM
[12:03:32] [PASSED] Init resource in a private placement
[12:03:32] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[12:03:32] ============= [PASSED] ttm_resource_init_basic =============
[12:03:32] [PASSED] ttm_resource_init_pinned
[12:03:32] [PASSED] ttm_resource_fini_basic
[12:03:32] [PASSED] ttm_resource_manager_init_basic
[12:03:32] [PASSED] ttm_resource_manager_usage_basic
[12:03:32] [PASSED] ttm_resource_manager_set_used_basic
[12:03:32] [PASSED] ttm_sys_man_alloc_basic
[12:03:32] [PASSED] ttm_sys_man_free_basic
[12:03:32] ================== [PASSED] ttm_resource ===================
[12:03:32] =================== ttm_tt (15 subtests) ===================
[12:03:32] ==================== ttm_tt_init_basic ====================
[12:03:32] [PASSED] Page-aligned size
[12:03:32] [PASSED] Extra pages requested
[12:03:32] ================ [PASSED] ttm_tt_init_basic ================
[12:03:32] [PASSED] ttm_tt_init_misaligned
[12:03:32] [PASSED] ttm_tt_fini_basic
[12:03:32] [PASSED] ttm_tt_fini_sg
[12:03:32] [PASSED] ttm_tt_fini_shmem
[12:03:32] [PASSED] ttm_tt_create_basic
[12:03:32] [PASSED] ttm_tt_create_invalid_bo_type
[12:03:32] [PASSED] ttm_tt_create_ttm_exists
[12:03:32] [PASSED] ttm_tt_create_failed
[12:03:32] [PASSED] ttm_tt_destroy_basic
[12:03:32] [PASSED] ttm_tt_populate_null_ttm
[12:03:32] [PASSED] ttm_tt_populate_populated_ttm
[12:03:32] [PASSED] ttm_tt_unpopulate_basic
[12:03:32] [PASSED] ttm_tt_unpopulate_empty_ttm
[12:03:32] [PASSED] ttm_tt_swapin_basic
[12:03:32] ===================== [PASSED] ttm_tt ======================
[12:03:32] =================== ttm_bo (14 subtests) ===================
[12:03:32] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[12:03:32] [PASSED] Cannot be interrupted and sleeps
[12:03:32] [PASSED] Cannot be interrupted, locks straight away
[12:03:32] [PASSED] Can be interrupted, sleeps
[12:03:32] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[12:03:32] [PASSED] ttm_bo_reserve_locked_no_sleep
[12:03:32] [PASSED] ttm_bo_reserve_no_wait_ticket
[12:03:32] [PASSED] ttm_bo_reserve_double_resv
[12:03:32] [PASSED] ttm_bo_reserve_interrupted
[12:03:32] [PASSED] ttm_bo_reserve_deadlock
[12:03:32] [PASSED] ttm_bo_unreserve_basic
[12:03:32] [PASSED] ttm_bo_unreserve_pinned
[12:03:32] [PASSED] ttm_bo_unreserve_bulk
[12:03:32] [PASSED] ttm_bo_put_basic
[12:03:32] [PASSED] ttm_bo_put_shared_resv
[12:03:32] [PASSED] ttm_bo_pin_basic
[12:03:32] [PASSED] ttm_bo_pin_unpin_resource
[12:03:32] [PASSED] ttm_bo_multiple_pin_one_unpin
[12:03:32] ===================== [PASSED] ttm_bo ======================
[12:03:32] ============== ttm_bo_validate (21 subtests) ===============
[12:03:32] ============== ttm_bo_init_reserved_sys_man ===============
[12:03:32] [PASSED] Buffer object for userspace
[12:03:32] [PASSED] Kernel buffer object
[12:03:32] [PASSED] Shared buffer object
[12:03:32] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[12:03:32] ============== ttm_bo_init_reserved_mock_man ==============
[12:03:32] [PASSED] Buffer object for userspace
[12:03:32] [PASSED] Kernel buffer object
[12:03:32] [PASSED] Shared buffer object
[12:03:32] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[12:03:32] [PASSED] ttm_bo_init_reserved_resv
[12:03:32] ================== ttm_bo_validate_basic ==================
[12:03:32] [PASSED] Buffer object for userspace
[12:03:32] [PASSED] Kernel buffer object
[12:03:32] [PASSED] Shared buffer object
[12:03:32] ============== [PASSED] ttm_bo_validate_basic ==============
[12:03:32] [PASSED] ttm_bo_validate_invalid_placement
[12:03:32] ============= ttm_bo_validate_same_placement ==============
[12:03:32] [PASSED] System manager
[12:03:32] [PASSED] VRAM manager
[12:03:32] ========= [PASSED] ttm_bo_validate_same_placement ==========
[12:03:32] [PASSED] ttm_bo_validate_failed_alloc
[12:03:32] [PASSED] ttm_bo_validate_pinned
[12:03:32] [PASSED] ttm_bo_validate_busy_placement
[12:03:32] ================ ttm_bo_validate_multihop =================
[12:03:32] [PASSED] Buffer object for userspace
[12:03:32] [PASSED] Kernel buffer object
[12:03:32] [PASSED] Shared buffer object
[12:03:32] ============ [PASSED] ttm_bo_validate_multihop =============
[12:03:32] ========== ttm_bo_validate_no_placement_signaled ==========
[12:03:32] [PASSED] Buffer object in system domain, no page vector
[12:03:32] [PASSED] Buffer object in system domain with an existing page vector
[12:03:32] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[12:03:32] ======== ttm_bo_validate_no_placement_not_signaled ========
[12:03:32] [PASSED] Buffer object for userspace
[12:03:32] [PASSED] Kernel buffer object
[12:03:32] [PASSED] Shared buffer object
[12:03:32] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[12:03:32] [PASSED] ttm_bo_validate_move_fence_signaled
[12:03:32] ========= ttm_bo_validate_move_fence_not_signaled =========
[12:03:32] [PASSED] Waits for GPU
[12:03:32] [PASSED] Tries to lock straight away
[12:03:32] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[12:03:32] [PASSED] ttm_bo_validate_happy_evict
[12:03:32] [PASSED] ttm_bo_validate_all_pinned_evict
[12:03:32] [PASSED] ttm_bo_validate_allowed_only_evict
[12:03:32] [PASSED] ttm_bo_validate_deleted_evict
[12:03:32] [PASSED] ttm_bo_validate_busy_domain_evict
[12:03:32] [PASSED] ttm_bo_validate_evict_gutting
[12:03:32] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[12:03:32] ================= [PASSED] ttm_bo_validate =================
[12:03:32] ============================================================
[12:03:32] Testing complete. Ran 101 tests: passed: 101
[12:03:32] Elapsed time: 9.713s total, 1.655s configuring, 7.792s building, 0.230s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 29+ messages in thread
* ✓ Xe.CI.BAT: success for Updates for drm/xe/configfs (rev6)
2025-07-29 11:42 [PATCH v5 00/11] Updates for drm/xe/configfs Michal Wajdeczko
` (11 preceding siblings ...)
2025-07-29 12:03 ` ✓ CI.KUnit: success for Updates for drm/xe/configfs (rev6) Patchwork
@ 2025-07-29 13:16 ` Patchwork
2025-07-29 18:55 ` ✗ Xe.CI.Full: failure " Patchwork
13 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2025-07-29 13:16 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1681 bytes --]
== Series Details ==
Series: Updates for drm/xe/configfs (rev6)
URL : https://patchwork.freedesktop.org/series/151773/
State : success
== Summary ==
CI Bug Log - changes from xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6_BAT -> xe-pw-151773v6_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 7)
------------------------------
Missing (1): bat-adlp-vm
Known issues
------------
Here are the changes found in xe-pw-151773v6_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@kms_flip@basic-plain-flip@a-edp1:
- bat-adlp-7: [DMESG-WARN][1] ([Intel XE#4543]) -> [PASS][2] +1 other test pass
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/bat-adlp-7/igt@kms_flip@basic-plain-flip@a-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/bat-adlp-7/igt@kms_flip@basic-plain-flip@a-edp1.html
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
Build changes
-------------
* IGT: IGT_8477 -> IGT_8478
* Linux: xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6 -> xe-pw-151773v6
IGT_8477: 3e5ec9d06ce17d6e135901bda13957dc31ae4bf4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8478: 3e7c2bd685397f852853878aef4d9c1e4889a28b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6: c2d04724123c8df9ecec874f1db3007540c264e6
xe-pw-151773v6: 151773v6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/index.html
[-- Attachment #2: Type: text/html, Size: 2260 bytes --]
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH v5 04/11] drm/xe/configfs: Drop redundant init() error message
2025-07-29 11:42 ` [PATCH v5 04/11] drm/xe/configfs: Drop redundant init() error message Michal Wajdeczko
@ 2025-07-29 17:58 ` John Harrison
2025-08-05 12:55 ` Lucas De Marchi
1 sibling, 0 replies; 29+ messages in thread
From: John Harrison @ 2025-07-29 17:58 UTC (permalink / raw)
To: Michal Wajdeczko, intel-xe; +Cc: Lucas De Marchi, Rodrigo Vivi
On 7/29/2025 4:42 AM, Michal Wajdeczko wrote:
> There is no need to print separate error message since we will
> also print one in xe_init(). Also drop temporary variable, which
> was likely just taken from the example code.
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed by: John Harrison <John.C.Harrison@Intel.com>
> ---
> drivers/gpu/drm/xe/xe_configfs.c | 5 +----
> 1 file changed, 1 insertion(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
> index 56fbf4c1c37f..6aa0531bcf76 100644
> --- a/drivers/gpu/drm/xe/xe_configfs.c
> +++ b/drivers/gpu/drm/xe/xe_configfs.c
> @@ -392,15 +392,12 @@ u64 xe_configfs_get_engines_allowed(struct pci_dev *pdev)
>
> int __init xe_configfs_init(void)
> {
> - struct config_group *root = &xe_configfs.su_group;
> int ret;
>
> - config_group_init(root);
> + config_group_init(&xe_configfs.su_group);
> mutex_init(&xe_configfs.su_mutex);
> ret = configfs_register_subsystem(&xe_configfs);
> if (ret) {
> - pr_err("Error %d while registering %s subsystem\n",
> - ret, root->cg_item.ci_namebuf);
> mutex_destroy(&xe_configfs.su_mutex);
> return ret;
> }
^ permalink raw reply [flat|nested] 29+ messages in thread
* ✗ Xe.CI.Full: failure for Updates for drm/xe/configfs (rev6)
2025-07-29 11:42 [PATCH v5 00/11] Updates for drm/xe/configfs Michal Wajdeczko
` (12 preceding siblings ...)
2025-07-29 13:16 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-07-29 18:55 ` Patchwork
13 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2025-07-29 18:55 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 127718 bytes --]
== Series Details ==
Series: Updates for drm/xe/configfs (rev6)
URL : https://patchwork.freedesktop.org/series/151773/
State : failure
== Summary ==
CI Bug Log - changes from xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6_FULL -> xe-pw-151773v6_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-151773v6_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-151773v6_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-151773v6_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2:
- shard-dg2-set2: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-dg2-432/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-432/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2.html
* igt@xe_gt_freq@freq_suspend:
- shard-bmg: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-8/igt@xe_gt_freq@freq_suspend.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@xe_gt_freq@freq_suspend.html
* igt@xe_pm@d3cold-i2c:
- shard-dg2-set2: NOTRUN -> [SKIP][5] +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-463/igt@xe_pm@d3cold-i2c.html
- shard-lnl: NOTRUN -> [SKIP][6] +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-4/igt@xe_pm@d3cold-i2c.html
- shard-bmg: NOTRUN -> [SKIP][7] +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-3/igt@xe_pm@d3cold-i2c.html
- shard-adlp: NOTRUN -> [SKIP][8] +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-2/igt@xe_pm@d3cold-i2c.html
Known issues
------------
Here are the changes found in xe-pw-151773v6_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotreplug:
- shard-bmg: [PASS][9] -> [SKIP][10] ([Intel XE#4963]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-7/igt@core_hotunplug@hotreplug.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@core_hotunplug@hotreplug.html
* igt@fbdev@pan:
- shard-bmg: [PASS][11] -> [SKIP][12] ([Intel XE#2134]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-1/igt@fbdev@pan.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@fbdev@pan.html
* igt@intel_hwmon@hwmon-write:
- shard-adlp: NOTRUN -> [SKIP][13] ([Intel XE#1125] / [Intel XE#5574])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-9/igt@intel_hwmon@hwmon-write.html
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1125])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-2/igt@intel_hwmon@hwmon-write.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2327]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-8/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1407])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: [PASS][18] -> [SKIP][19] ([Intel XE#4947]) +18 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#3658])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#316]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-463/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#607])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#610]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1428])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#1124])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1124]) +6 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [PASS][28] -> [SKIP][29] ([Intel XE#2314] / [Intel XE#2894])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#2191])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#367])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#455] / [Intel XE#787]) +32 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-dp-2.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2887]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-1/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2887])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-8/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][35] ([Intel XE#787]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-6/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][36] ([Intel XE#455] / [Intel XE#787])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-6/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#787]) +181 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-434/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][39] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [PASS][40] -> [INCOMPLETE][41] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) +1 other test incomplete
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][42] ([Intel XE#2705] / [Intel XE#4212])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
* igt@kms_cdclk@mode-transition@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#4417]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-a-dp-2.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#306]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-436/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-adlp: NOTRUN -> [SKIP][45] ([Intel XE#373])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-9/igt@kms_chamelium_frames@vga-frame-dump.html
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2252]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@kms_chamelium_frames@vga-frame-dump.html
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#373]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-4/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#373]) +4 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1424])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2320]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#308])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-463/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-bmg: [PASS][52] -> [SKIP][53] ([Intel XE#2291]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#309])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [PASS][55] -> [FAIL][56] ([Intel XE#4633])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#1340])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#4494] / [i915#3804])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-463/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#4331])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-436/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-adlp: NOTRUN -> [SKIP][60] ([Intel XE#4422])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#4422])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#4422])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-464/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#4422])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#776])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-8/igt@kms_fbcon_fbt@psr.html
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#776])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-466/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#1137])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-466/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#2316]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-8/igt@kms_flip@2x-blocking-wf_vblank.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-6/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2316])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [PASS][70] -> [SKIP][71] ([Intel XE#4950]) +89 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-8/igt@kms_flip@2x-plain-flip-fb-recreate.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@absolute-wf_vblank-interruptible:
- shard-bmg: [PASS][72] -> [FAIL][73] ([Intel XE#5352])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-6/igt@kms_flip@absolute-wf_vblank-interruptible.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@kms_flip@absolute-wf_vblank-interruptible.html
* igt@kms_flip@absolute-wf_vblank-interruptible@b-dp2:
- shard-bmg: NOTRUN -> [FAIL][74] ([Intel XE#5352]) +2 other tests fail
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@kms_flip@absolute-wf_vblank-interruptible@b-dp2.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1:
- shard-adlp: [PASS][75] -> [DMESG-WARN][76] ([Intel XE#4543]) +21 other tests dmesg-warn
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-adlp-2/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-8/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-bmg: [PASS][77] -> [FAIL][78] ([Intel XE#3098] / [Intel XE#5338])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-6/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2:
- shard-bmg: NOTRUN -> [FAIL][79] ([Intel XE#3098])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-dp2:
- shard-bmg: NOTRUN -> [FAIL][80] ([Intel XE#5338])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check-interruptible@b-dp2.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2293]) +4 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2293] / [Intel XE#2380])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1397] / [Intel XE#1745])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1397])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-adlp: NOTRUN -> [SKIP][85] ([Intel XE#455]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-adlp: [PASS][86] -> [DMESG-FAIL][87] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-adlp-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [FAIL][88] ([Intel XE#3106] / [Intel XE#4683]) +1 other test fail
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2311]) +5 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#651])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#651]) +21 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
- shard-adlp: [PASS][92] -> [DMESG-FAIL][93] ([Intel XE#4543]) +11 other tests dmesg-fail
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-adlp-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-adlp: NOTRUN -> [SKIP][94] ([Intel XE#656]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2312])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#5390]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#658])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#4947]) +7 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#653]) +22 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2313]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#656]) +3 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-adlp: NOTRUN -> [SKIP][102] ([Intel XE#653])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-1/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2927])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-433/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_lease@invalid-create-leases:
- shard-dg2-set2: [PASS][104] -> [SKIP][105] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-dg2-466/igt@kms_lease@invalid-create-leases.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-434/igt@kms_lease@invalid-create-leases.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2486])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#5021])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-466/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#5020])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-436/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#2763]) +3 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#4950]) +3 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2763]) +7 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#870])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-436/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2938])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-1/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][114] -> [FAIL][115] ([Intel XE#718])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#908])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-bmg: [PASS][117] -> [SKIP][118] ([Intel XE#4962]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-1/igt@kms_pm_rpm@basic-pci-d3-state.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#4962])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#1489]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-432/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1128])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2387])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2850] / [Intel XE#929]) +15 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-433/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@fbc-psr2-sprite-blt:
- shard-adlp: NOTRUN -> [SKIP][124] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-8/igt@kms_psr@fbc-psr2-sprite-blt.html
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-8/igt@kms_psr@fbc-psr2-sprite-blt.html
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1406]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-3/igt@kms_psr@fbc-psr2-sprite-blt.html
* igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#4609])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-3/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#3414]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#3414] / [Intel XE#3904])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-adlp: [PASS][130] -> [DMESG-WARN][131] ([Intel XE#2953] / [Intel XE#4173]) +3 other tests dmesg-warn
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-adlp-1/igt@kms_vblank@ts-continuation-suspend.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-3/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][132] -> [FAIL][133] ([Intel XE#4459]) +1 other test fail
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#455]) +11 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-466/igt@kms_vrr@flipline.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#1123])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_eudebug@basic-read-event:
- shard-adlp: NOTRUN -> [SKIP][136] ([Intel XE#4837] / [Intel XE#5565]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-3/igt@xe_eudebug@basic-read-event.html
* igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#4837]) +11 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-436/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#4837]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-7/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
* igt@xe_eudebug_online@single-step:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#4837]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-6/igt@xe_eudebug_online@single-step.html
* igt@xe_evict@evict-large-external:
- shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#688])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-1/igt@xe_evict@evict-large-external.html
- shard-adlp: NOTRUN -> [SKIP][141] ([Intel XE#261] / [Intel XE#5564])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-4/igt@xe_evict@evict-large-external.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr:
- shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#1392]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2322])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-dg2-set2: [PASS][144] -> [SKIP][145] ([Intel XE#1392]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-dg2-435/igt@xe_exec_basic@multigpu-once-null-rebind.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@many-bindexecqueue:
- shard-adlp: NOTRUN -> [SKIP][146] ([Intel XE#288] / [Intel XE#5561])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-4/igt@xe_exec_fault_mode@many-bindexecqueue.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#288]) +15 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#2360]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-433/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_reset@cat-error:
- shard-adlp: NOTRUN -> [DMESG-WARN][149] ([Intel XE#3868])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-9/igt@xe_exec_reset@cat-error.html
* igt@xe_exec_system_allocator@once-new-busy-nomemset:
- shard-adlp: NOTRUN -> [SKIP][150] ([Intel XE#4915] / [Intel XE#5560]) +19 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-1/igt@xe_exec_system_allocator@once-new-busy-nomemset.html
* igt@xe_exec_system_allocator@process-many-execqueues-mmap-free-huge:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#4943]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-6/igt@xe_exec_system_allocator@process-many-execqueues-mmap-free-huge.html
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#4943]) +3 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-2/igt@xe_exec_system_allocator@process-many-execqueues-mmap-free-huge.html
* igt@xe_exec_system_allocator@process-many-mmap-free-race-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#4208]) +3 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-434/igt@xe_exec_system_allocator@process-many-mmap-free-race-nomemset.html
* igt@xe_exec_system_allocator@process-many-new-nomemset:
- shard-bmg: [PASS][154] -> [SKIP][155] ([Intel XE#4945]) +438 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-2/igt@xe_exec_system_allocator@process-many-new-nomemset.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@xe_exec_system_allocator@process-many-new-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-nomemset:
- shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#4945]) +31 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-race-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#4915]) +191 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-434/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-race-nomemset.html
* igt@xe_intel_bb@simple-bb:
- shard-dg2-set2: [PASS][158] -> [SKIP][159] ([Intel XE#4208]) +6 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-dg2-464/igt@xe_intel_bb@simple-bb.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-434/igt@xe_intel_bb@simple-bb.html
* igt@xe_live_ktest@xe_bo:
- shard-bmg: [PASS][160] -> [SKIP][161] ([Intel XE#2229]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-4/igt@xe_live_ktest@xe_bo.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@xe_live_ktest@xe_bo.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [PASS][162] -> [FAIL][163] ([Intel XE#5679]) +1 other test fail
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-4/igt@xe_module_load@reload-no-display.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@xe_module_load@reload-no-display.html
* igt@xe_oa@syncs-userptr-wait-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#3573]) +6 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-436/igt@xe_oa@syncs-userptr-wait-cfg.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-436/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#4650])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-466/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [PASS][167] -> [FAIL][168] ([Intel XE#4819]) +1 other test fail
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-dg2-464/igt@xe_pmu@gt-frequency.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-432/igt@xe_pmu@gt-frequency.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-adlp: NOTRUN -> [SKIP][169] ([Intel XE#944])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-6/igt@xe_query@multigpu-query-cs-cycles.html
- shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#944])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-8/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#944]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-433/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
- shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#4130]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-466/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#4351])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-434/igt@xe_sriov_scheduling@equal-throughput.html
#### Possible fixes ####
* igt@core_hotunplug@hotrebind:
- shard-bmg: [SKIP][174] ([Intel XE#4963]) -> [PASS][175] +1 other test pass
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@core_hotunplug@hotrebind.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-8/igt@core_hotunplug@hotrebind.html
* igt@core_setmaster@master-drop-set-user:
- shard-bmg: [FAIL][176] ([Intel XE#4674]) -> [PASS][177]
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@core_setmaster@master-drop-set-user.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-2/igt@core_setmaster@master-drop-set-user.html
* igt@fbdev@info:
- shard-bmg: [SKIP][178] ([Intel XE#2134]) -> [PASS][179]
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@fbdev@info.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-7/igt@fbdev@info.html
* igt@intel_hwmon@hwmon-read:
- shard-bmg: [SKIP][180] -> [PASS][181]
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@intel_hwmon@hwmon-read.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-2/igt@intel_hwmon@hwmon-read.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-dg2-set2: [TIMEOUT][182] -> [PASS][183] +1 other test pass
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-dg2-464/igt@kms_async_flips@async-flip-suspend-resume.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-434/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
- shard-adlp: [FAIL][184] ([Intel XE#3884]) -> [PASS][185] +1 other test pass
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-adlp-1/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-2/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0:
- shard-bmg: [SKIP][186] ([Intel XE#4947]) -> [PASS][187] +18 other tests pass
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-adlp: [DMESG-FAIL][188] ([Intel XE#4543]) -> [PASS][189] +7 other tests pass
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][190] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [PASS][191] +1 other test pass
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][192] ([Intel XE#2291]) -> [PASS][193] +3 other tests pass
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-bmg: [SKIP][194] ([Intel XE#4950]) -> [PASS][195] +79 other tests pass
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [SKIP][196] ([Intel XE#4302]) -> [PASS][197]
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-3/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-bmg: [SKIP][198] ([Intel XE#2316]) -> [PASS][199] +1 other test pass
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][200] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][201]
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [FAIL][202] ([Intel XE#301]) -> [PASS][203]
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1:
- shard-adlp: [DMESG-WARN][204] ([Intel XE#4543]) -> [PASS][205] +9 other tests pass
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-adlp-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][206] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][207] +1 other test pass
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-adlp: [DMESG-WARN][208] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][209] +4 other tests pass
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: [FAIL][210] ([Intel XE#616]) -> [PASS][211] +1 other test pass
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-dg2-466/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-466/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][212] ([Intel XE#718]) -> [PASS][213]
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-lnl-2/igt@kms_pm_dc@dc5-dpms.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_rpm@basic-rte:
- shard-adlp: [SKIP][214] ([Intel XE#4962]) -> [PASS][215]
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-adlp-1/igt@kms_pm_rpm@basic-rte.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-1/igt@kms_pm_rpm@basic-rte.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-bmg: [SKIP][216] ([Intel XE#4962]) -> [PASS][217] +2 other tests pass
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_properties@invalid-properties-legacy:
- shard-adlp: [SKIP][218] ([Intel XE#4950]) -> [PASS][219] +3 other tests pass
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-adlp-1/igt@kms_properties@invalid-properties-legacy.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-8/igt@kms_properties@invalid-properties-legacy.html
* igt@kms_psr@psr2-suspend@edp-1:
- shard-lnl: [FAIL][220] ([Intel XE#5298]) -> [PASS][221] +1 other test pass
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-lnl-7/igt@kms_psr@psr2-suspend@edp-1.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-3/igt@kms_psr@psr2-suspend@edp-1.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-lnl: [SKIP][222] ([Intel XE#4692]) -> [PASS][223]
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-lnl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [SKIP][224] ([Intel XE#1435]) -> [PASS][225]
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@xe_exec_balancer@no-exec-cm-virtual-userptr-rebind:
- shard-adlp: [SKIP][226] ([Intel XE#4945]) -> [PASS][227] +1 other test pass
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-adlp-1/igt@xe_exec_balancer@no-exec-cm-virtual-userptr-rebind.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-9/igt@xe_exec_balancer@no-exec-cm-virtual-userptr-rebind.html
* igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
- shard-dg2-set2: [SKIP][228] ([Intel XE#1392]) -> [PASS][229] +7 other tests pass
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-435/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-adlp: [DMESG-WARN][230] ([Intel XE#3876]) -> [PASS][231]
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-adlp-4/igt@xe_exec_reset@parallel-gt-reset.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-9/igt@xe_exec_reset@parallel-gt-reset.html
- shard-bmg: [DMESG-WARN][232] ([Intel XE#3876]) -> [PASS][233]
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-7/igt@xe_exec_reset@parallel-gt-reset.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout:
- shard-bmg: [SKIP][234] ([Intel XE#4945]) -> [PASS][235] +428 other tests pass
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-8/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
#### Warnings ####
* igt@kms_async_flips@invalid-async-flip:
- shard-bmg: [SKIP][236] ([Intel XE#4950]) -> [SKIP][237] ([Intel XE#873])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_async_flips@invalid-async-flip.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: [SKIP][238] ([Intel XE#2370]) -> [SKIP][239] ([Intel XE#4950]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-bmg: [SKIP][240] ([Intel XE#2327]) -> [SKIP][241] ([Intel XE#4947]) +4 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: [SKIP][242] ([Intel XE#4947]) -> [SKIP][243] ([Intel XE#2327]) +3 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_big_fb@linear-32bpp-rotate-270.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-8/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- shard-bmg: [SKIP][244] ([Intel XE#4947]) -> [SKIP][245] ([Intel XE#1124]) +14 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-7/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: [SKIP][246] ([Intel XE#1124]) -> [SKIP][247] ([Intel XE#4947]) +12 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-bmg: [SKIP][248] ([Intel XE#4947]) -> [SKIP][249] ([Intel XE#2328])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-2/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-adlp: [SKIP][250] ([Intel XE#4947]) -> [SKIP][251] ([Intel XE#1124])
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-adlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: [SKIP][252] ([Intel XE#2191]) -> [SKIP][253] ([Intel XE#4208] / [i915#2575])
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-bmg: [SKIP][254] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][255] ([Intel XE#4950])
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-3/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][256] ([Intel XE#367]) -> [SKIP][257] ([Intel XE#4950]) +3 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: [SKIP][258] ([Intel XE#4950]) -> [SKIP][259] ([Intel XE#367]) +2 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: [SKIP][260] ([Intel XE#4947]) -> [SKIP][261] ([Intel XE#2887]) +13 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-3/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-adlp: [SKIP][262] ([Intel XE#4947]) -> [SKIP][263] ([Intel XE#455] / [Intel XE#787])
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-adlp-1/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-6/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][264] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][265] ([Intel XE#4208])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-dg2-463/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: [SKIP][266] ([Intel XE#2887]) -> [SKIP][267] ([Intel XE#4947]) +13 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-bmg: [SKIP][268] ([Intel XE#3432]) -> [SKIP][269] ([Intel XE#4947]) +2 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: [SKIP][270] ([Intel XE#2724]) -> [SKIP][271] ([Intel XE#4947])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-2/igt@kms_cdclk@mode-transition-all-outputs.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-max:
- shard-bmg: [SKIP][272] ([Intel XE#2325]) -> [SKIP][273] ([Intel XE#4950]) +2 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-6/igt@kms_chamelium_color@ctm-max.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-bmg: [SKIP][274] ([Intel XE#4950]) -> [SKIP][275] ([Intel XE#2325]) +2 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_chamelium_color@ctm-red-to-blue.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-3/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: [SKIP][276] ([Intel XE#2252]) -> [SKIP][277] ([Intel XE#4950]) +11 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-7/igt@kms_chamelium_edid@dp-edid-resolution-list.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-dg2-set2: [SKIP][278] ([Intel XE#373]) -> [SKIP][279] ([Intel XE#4208] / [i915#2575]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-dg2-466/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-434/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-bmg: [SKIP][280] ([Intel XE#4950]) -> [SKIP][281] ([Intel XE#2252]) +11 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_chamelium_hpd@dp-hpd.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-8/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-adlp: [SKIP][282] ([Intel XE#4950]) -> [SKIP][283] ([Intel XE#373])
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-adlp-1/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-1/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [FAIL][284] ([Intel XE#1178]) -> [SKIP][285] ([Intel XE#4950])
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-7/igt@kms_content_protection@atomic-dpms.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: [SKIP][286] ([Intel XE#2341]) -> [SKIP][287] ([Intel XE#4950])
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-7/igt@kms_content_protection@content-type-change.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: [SKIP][288] ([Intel XE#4950]) -> [SKIP][289] ([Intel XE#2390])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_content_protection@dp-mst-lic-type-1.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-8/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@srm:
- shard-bmg: [FAIL][290] ([Intel XE#1178]) -> [SKIP][291] ([Intel XE#2341]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-8/igt@kms_content_protection@srm.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-6/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2-set2: [SKIP][292] ([Intel XE#455]) -> [SKIP][293] ([Intel XE#4208] / [i915#2575]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-dg2-466/igt@kms_content_protection@type1.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-434/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: [SKIP][294] ([Intel XE#4950]) -> [SKIP][295] ([Intel XE#2320]) +3 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-128x42.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: [SKIP][296] ([Intel XE#4950]) -> [SKIP][297] ([Intel XE#2321])
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-bmg: [SKIP][298] ([Intel XE#2321]) -> [SKIP][299] ([Intel XE#4950]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-1/igt@kms_cursor_crc@cursor-random-512x512.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-bmg: [SKIP][300] ([Intel XE#2320]) -> [SKIP][301] ([Intel XE#4950]) +3 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-256x85.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-bmg: [SKIP][302] ([Intel XE#2291]) -> [SKIP][303] ([Intel XE#4950])
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-adlp: [SKIP][304] ([Intel XE#4950]) -> [SKIP][305] ([Intel XE#309])
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-adlp-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-bmg: [SKIP][306] ([Intel XE#2286]) -> [SKIP][307] ([Intel XE#4950])
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: [SKIP][308] ([Intel XE#5428]) -> [SKIP][309] ([Intel XE#4947])
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-bmg: [SKIP][310] ([Intel XE#4947]) -> [SKIP][311] ([Intel XE#4354])
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_dp_link_training@non-uhbr-mst.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-bmg: [SKIP][312] ([Intel XE#4354]) -> [SKIP][313] ([Intel XE#4947])
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-2/igt@kms_dp_link_training@uhbr-mst.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dsc@dsc-with-bpc:
- shard-bmg: [SKIP][314] ([Intel XE#2244]) -> [SKIP][315] ([Intel XE#4947])
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-1/igt@kms_dsc@dsc-with-bpc.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: [SKIP][316] ([Intel XE#5425]) -> [SKIP][317] ([Intel XE#4947])
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-4/igt@kms_fbcon_fbt@fbc-suspend.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: [SKIP][318] ([Intel XE#2375]) -> [SKIP][319] ([Intel XE#4950])
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-3/igt@kms_feature_discovery@dp-mst.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-bmg: [SKIP][320] ([Intel XE#2316]) -> [SKIP][321] ([Intel XE#4950])
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-6/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@absolute-wf_vblank:
- shard-bmg: [SKIP][322] ([Intel XE#4950]) -> [FAIL][323] ([Intel XE#5352])
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_flip@absolute-wf_vblank.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@kms_flip@absolute-wf_vblank.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [ABORT][324] ([Intel XE#4056]) -> [SKIP][325] ([Intel XE#4950])
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-4/igt@kms_flip@flip-vs-suspend.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: [SKIP][326] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][327] ([Intel XE#4947]) +4 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: [SKIP][328] ([Intel XE#4947]) -> [SKIP][329] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][330] ([Intel XE#651]) -> [SKIP][331] ([Intel XE#2351] / [Intel XE#4208])
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
- shard-adlp: [SKIP][332] ([Intel XE#4947]) -> [SKIP][333] ([Intel XE#651])
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-adlp-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][334] ([Intel XE#2312]) -> [SKIP][335] ([Intel XE#2311]) +7 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][336] ([Intel XE#2312]) -> [SKIP][337] ([Intel XE#4947]) +8 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][338] ([Intel XE#2311]) -> [SKIP][339] ([Intel XE#4947]) +34 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][340] ([Intel XE#4947]) -> [SKIP][341] ([Intel XE#5390]) +13 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][342] ([Intel XE#2312]) -> [SKIP][343] ([Intel XE#5390]) +3 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][344] ([Intel XE#5390]) -> [SKIP][345] ([Intel XE#2312])
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][346] ([Intel XE#5390]) -> [SKIP][347] ([Intel XE#4947]) +11 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][348] ([Intel XE#2311]) -> [SKIP][349] ([Intel XE#2312]) +6 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary:
- shard-dg2-set2: [SKIP][350] ([Intel XE#651]) -> [SKIP][351] ([Intel XE#4208])
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcdrrs-suspend:
- shard-bmg: [SKIP][352] ([Intel XE#4947]) -> [SKIP][353] ([Intel XE#2311]) +31 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: [SKIP][354] ([Intel XE#4947]) -> [SKIP][355] ([Intel XE#2352]) +1 other test skip
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][356] ([Intel XE#4947]) -> [SKIP][357] ([Intel XE#2313]) +31 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move:
- shard-bmg: [SKIP][358] ([Intel XE#2313]) -> [SKIP][359] ([Intel XE#2312]) +7 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: [SKIP][360] ([Intel XE#4947]) -> [SKIP][361] ([Intel XE#2312]) +9 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][362] ([Intel XE#2313]) -> [SKIP][363] ([Intel XE#4947]) +29 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: [SKIP][364] ([Intel XE#2352]) -> [SKIP][365] ([Intel XE#4947])
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][366] ([Intel XE#2312]) -> [SKIP][367] ([Intel XE#2313]) +5 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][368] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][369] ([Intel XE#4950])
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: [SKIP][370] ([Intel XE#346]) -> [SKIP][371] ([Intel XE#4947])
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-2/igt@kms_joiner@basic-big-joiner.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [SKIP][372] ([Intel XE#4947]) -> [SKIP][373] ([Intel XE#3012])
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_joiner@basic-force-big-joiner.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: [SKIP][374] ([Intel XE#2934]) -> [SKIP][375] ([Intel XE#4947])
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-3/igt@kms_joiner@basic-force-ultra-joiner.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: [SKIP][376] ([Intel XE#4947]) -> [SKIP][377] ([Intel XE#2927])
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_joiner@basic-ultra-joiner.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-8/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-bmg: [SKIP][378] ([Intel XE#2927]) -> [SKIP][379] ([Intel XE#4947])
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2-set2: [SKIP][380] ([Intel XE#2925]) -> [SKIP][381] ([Intel XE#4208])
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-dg2-432/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-434/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: [SKIP][382] ([Intel XE#2501]) -> [SKIP][383] ([Intel XE#4950])
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: [SKIP][384] ([Intel XE#5021]) -> [SKIP][385] ([Intel XE#4950])
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-y.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: [SKIP][386] ([Intel XE#4950]) -> [SKIP][387] ([Intel XE#5020])
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_plane_multiple@tiling-yf.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-7/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-bmg: [SKIP][388] ([Intel XE#4950]) -> [SKIP][389] ([Intel XE#2763]) +1 other test skip
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: [SKIP][390] ([Intel XE#2763]) -> [SKIP][391] ([Intel XE#4950]) +1 other test skip
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: [SKIP][392] ([Intel XE#4947]) -> [SKIP][393] ([Intel XE#870]) +1 other test skip
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_pm_backlight@bad-brightness.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-8/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: [SKIP][394] ([Intel XE#870]) -> [SKIP][395] ([Intel XE#4947])
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-4/igt@kms_pm_backlight@fade-with-dpms.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-bmg: [SKIP][396] ([Intel XE#4947]) -> [SKIP][397] ([Intel XE#3309])
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_pm_dc@dc5-retention-flops.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: [SKIP][398] ([Intel XE#4962]) -> [SKIP][399] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_pm_rpm@modeset-lpsp.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-bmg: [SKIP][400] ([Intel XE#1489]) -> [SKIP][401] ([Intel XE#4947]) +7 other tests skip
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-adlp: [SKIP][402] ([Intel XE#4947]) -> [SKIP][403] ([Intel XE#1489])
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-adlp-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-8/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: [SKIP][404] ([Intel XE#4947]) -> [SKIP][405] ([Intel XE#1489]) +6 other tests skip
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: [SKIP][406] ([Intel XE#2387]) -> [SKIP][407] ([Intel XE#4947])
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-8/igt@kms_psr2_su@page_flip-xrgb8888.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-bmg: [SKIP][408] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][409] ([Intel XE#4947]) +12 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-3/igt@kms_psr@fbc-pr-cursor-blt.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-bmg: [SKIP][410] ([Intel XE#4947]) -> [SKIP][411] ([Intel XE#2234] / [Intel XE#2850]) +14 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-3/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-bmg: [SKIP][412] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][413] ([Intel XE#4950])
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-1/igt@kms_rotation_crc@primary-rotation-90.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: [SKIP][414] ([Intel XE#2330]) -> [SKIP][415] ([Intel XE#4950])
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-bmg: [SKIP][416] ([Intel XE#4950]) -> [SKIP][417] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: [SKIP][418] ([Intel XE#2413]) -> [SKIP][419] ([Intel XE#4950])
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-full-aspect.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: [SKIP][420] ([Intel XE#4950]) -> [SKIP][421] ([Intel XE#1435])
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_setmode@basic-clone-single-crtc.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][422] ([Intel XE#1500]) -> [SKIP][423] ([Intel XE#362])
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: [SKIP][424] ([Intel XE#2450]) -> [SKIP][425] ([Intel XE#4950])
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-6/igt@kms_tv_load_detect@load-detect.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@cmrr:
- shard-bmg: [SKIP][426] ([Intel XE#2168]) -> [SKIP][427] ([Intel XE#4950])
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-3/igt@kms_vrr@cmrr.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_vrr@cmrr.html
* igt@kms_vrr@flip-basic-fastset:
- shard-bmg: [SKIP][428] ([Intel XE#4950]) -> [SKIP][429] ([Intel XE#1499])
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@kms_vrr@flip-basic-fastset.html
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-8/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@max-min:
- shard-bmg: [SKIP][430] ([Intel XE#1499]) -> [SKIP][431] ([Intel XE#4950]) +1 other test skip
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-3/igt@kms_vrr@max-min.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@kms_vrr@max-min.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-bmg: [SKIP][432] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][433] ([Intel XE#4950]) +1 other test skip
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: [SKIP][434] ([Intel XE#2504]) -> [SKIP][435] ([Intel XE#4945])
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-6/igt@xe_create@multigpu-create-massive-size.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
- shard-adlp: [SKIP][436] ([Intel XE#4945]) -> [SKIP][437] ([Intel XE#4837] / [Intel XE#5565])
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-adlp-1/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-1/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
* igt@xe_eudebug_online@breakpoint-many-sessions-tiles:
- shard-bmg: [SKIP][438] ([Intel XE#4945]) -> [SKIP][439] ([Intel XE#4837]) +11 other tests skip
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-6/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-bmg: [SKIP][440] ([Intel XE#4837]) -> [SKIP][441] ([Intel XE#4945]) +11 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-4/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-bmg: [SKIP][442] ([Intel XE#4945]) -> [SKIP][443] ([Intel XE#4518]) +1 other test skip
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@xe_eudebug_sriov@deny-sriov.html
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: [SKIP][444] ([Intel XE#2322]) -> [SKIP][445] ([Intel XE#4945]) +6 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-bmg: [SKIP][446] ([Intel XE#4945]) -> [SKIP][447] ([Intel XE#2322]) +3 other tests skip
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm:
- shard-dg2-set2: [SKIP][448] ([Intel XE#288]) -> [SKIP][449] ([Intel XE#4208]) +1 other test skip
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm.html
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge:
- shard-bmg: [SKIP][450] ([Intel XE#4943]) -> [SKIP][451] ([Intel XE#4945]) +25 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge.html
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge.html
* igt@xe_exec_system_allocator@threads-many-malloc-multi-fault:
- shard-dg2-set2: [SKIP][452] ([Intel XE#4915]) -> [SKIP][453] ([Intel XE#4208]) +14 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-dg2-466/igt@xe_exec_system_allocator@threads-many-malloc-multi-fault.html
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-malloc-multi-fault.html
* igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset:
- shard-bmg: [SKIP][454] ([Intel XE#4945]) -> [SKIP][455] ([Intel XE#4943]) +17 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset.html
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-6/igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-many-stride-new-race-nomemset:
- shard-bmg: [SKIP][456] ([Intel XE#4945]) -> [DMESG-WARN][457] ([Intel XE#3428])
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-stride-new-race-nomemset.html
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-stride-new-race-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset:
- shard-lnl: [FAIL][458] ([Intel XE#5018]) -> [FAIL][459] ([Intel XE#4937] / [Intel XE#5018])
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-lnl-7/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-nomemset:
- shard-adlp: [SKIP][460] ([Intel XE#4945]) -> [SKIP][461] ([Intel XE#4915] / [Intel XE#5560]) +5 other tests skip
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-adlp-1/igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-nomemset.html
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-adlp-3/igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-nomemset.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: [SKIP][462] ([Intel XE#2248]) -> [SKIP][463] ([Intel XE#4945])
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-6/igt@xe_oa@oa-tlb-invalidate.html
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: [SKIP][464] ([Intel XE#2245]) -> [SKIP][465] ([Intel XE#4945])
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-2/igt@xe_pat@pat-index-xelp.html
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: [SKIP][466] ([Intel XE#4945]) -> [SKIP][467] ([Intel XE#2236])
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@xe_pat@pat-index-xelpg.html
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-3/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-basic:
- shard-bmg: [SKIP][468] ([Intel XE#2284]) -> [SKIP][469] ([Intel XE#4945]) +1 other test skip
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-6/igt@xe_pm@d3cold-basic.html
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-bmg: [SKIP][470] ([Intel XE#4945]) -> [SKIP][471] ([Intel XE#2284])
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@xe_pm@d3cold-mmap-vram.html
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-7/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-bmg: [SKIP][472] ([Intel XE#4945]) -> [SKIP][473] ([Intel XE#579])
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@xe_pm@vram-d3cold-threshold.html
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-3/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pmu@all-fn-engine-activity-load:
- shard-bmg: [SKIP][474] ([Intel XE#4945]) -> [SKIP][475] ([Intel XE#4650])
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@xe_pmu@all-fn-engine-activity-load.html
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-8/igt@xe_pmu@all-fn-engine-activity-load.html
* igt@xe_pxp@display-black-pxp-fb:
- shard-bmg: [SKIP][476] ([Intel XE#4945]) -> [SKIP][477] ([Intel XE#4733]) +4 other tests skip
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@xe_pxp@display-black-pxp-fb.html
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-6/igt@xe_pxp@display-black-pxp-fb.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: [SKIP][478] ([Intel XE#4733]) -> [SKIP][479] ([Intel XE#4945]) +1 other test skip
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-4/igt@xe_pxp@display-pxp-fb.html
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-config:
- shard-bmg: [SKIP][480] ([Intel XE#944]) -> [SKIP][481] ([Intel XE#4945]) +1 other test skip
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-7/igt@xe_query@multigpu-query-config.html
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@xe_query@multigpu-query-config.html
* igt@xe_sriov_auto_provisioning@exclusive-ranges:
- shard-bmg: [SKIP][482] ([Intel XE#4130]) -> [SKIP][483] ([Intel XE#4945]) +1 other test skip
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-3/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
- shard-bmg: [SKIP][484] ([Intel XE#4945]) -> [SKIP][485] ([Intel XE#4130]) +1 other test skip
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-8/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: [SKIP][486] ([Intel XE#4945]) -> [SKIP][487] ([Intel XE#4273])
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-5/igt@xe_sriov_flr@flr-twice.html
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-1/igt@xe_sriov_flr@flr-twice.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: [SKIP][488] ([Intel XE#3342]) -> [SKIP][489] ([Intel XE#4945])
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6/shard-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/shard-bmg-5/igt@xe_sriov_flr@flr-vf1-clear.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[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#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[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#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[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#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[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#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[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#3106]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3106
[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#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#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[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#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4056]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4056
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4674]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4674
[Intel XE#4683]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4683
[Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
[Intel XE#4937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#4945]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4945
[Intel XE#4947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4947
[Intel XE#4950]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4950
[Intel XE#4962]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4962
[Intel XE#4963]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4963
[Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5298
[Intel XE#5338]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5338
[Intel XE#5352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5352
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5425
[Intel XE#5428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5428
[Intel XE#5560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5560
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5574]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5574
[Intel XE#5679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5679
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[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#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* IGT: IGT_8477 -> IGT_8478
* Linux: xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6 -> xe-pw-151773v6
IGT_8477: 3e5ec9d06ce17d6e135901bda13957dc31ae4bf4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8478: 3e7c2bd685397f852853878aef4d9c1e4889a28b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3484-c2d04724123c8df9ecec874f1db3007540c264e6: c2d04724123c8df9ecec874f1db3007540c264e6
xe-pw-151773v6: 151773v6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151773v6/index.html
[-- Attachment #2: Type: text/html, Size: 154883 bytes --]
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH v5 03/11] drm/xe/configfs: Destroy xe_configfs.su_mutex on exit/error
2025-07-29 11:42 ` [PATCH v5 03/11] drm/xe/configfs: Destroy xe_configfs.su_mutex on exit/error Michal Wajdeczko
@ 2025-07-29 21:31 ` Rodrigo Vivi
2025-08-05 12:49 ` Lucas De Marchi
1 sibling, 0 replies; 29+ messages in thread
From: Rodrigo Vivi @ 2025-07-29 21:31 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe, Lucas De Marchi
On Tue, Jul 29, 2025 at 01:42:07PM +0200, Michal Wajdeczko wrote:
> While mutex_destroy() is NOP when CONFIG_DEBUG_MUTEXES is not
> enabled, we should still call it.
>
> While around, drop a traling line.
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> ---
> v2: remove pr_err in separate patch (Rodrigo)
> ---
> drivers/gpu/drm/xe/xe_configfs.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
> index 36e2b45b305f..56fbf4c1c37f 100644
> --- a/drivers/gpu/drm/xe/xe_configfs.c
> +++ b/drivers/gpu/drm/xe/xe_configfs.c
> @@ -401,6 +401,7 @@ int __init xe_configfs_init(void)
> if (ret) {
> pr_err("Error %d while registering %s subsystem\n",
> ret, root->cg_item.ci_namebuf);
> + mutex_destroy(&xe_configfs.su_mutex);
> return ret;
> }
>
> @@ -410,5 +411,5 @@ int __init xe_configfs_init(void)
> void __exit xe_configfs_exit(void)
> {
> configfs_unregister_subsystem(&xe_configfs);
> + mutex_destroy(&xe_configfs.su_mutex);
> }
> -
> --
> 2.47.1
>
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH v5 10/11] drm/xe/configfs: Only allow configurations for supported devices
2025-07-29 11:42 ` [PATCH v5 10/11] drm/xe/configfs: Only allow configurations for supported devices Michal Wajdeczko
@ 2025-07-29 21:40 ` Rodrigo Vivi
2025-07-29 22:20 ` John Harrison
0 siblings, 1 reply; 29+ messages in thread
From: Rodrigo Vivi @ 2025-07-29 21:40 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe, Lucas De Marchi
On Tue, Jul 29, 2025 at 01:42:14PM +0200, Michal Wajdeczko wrote:
> Since we already lookup for the real PCI device before we allow
> to create its directory config, we might also check if the found
> device matches our driver PCI ID list. This will prevent creation
> of the directory configs for the unsupported devices.
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> ---
> v2: rebased
> ---
> drivers/gpu/drm/xe/xe_configfs.c | 17 +++++++++++++++++
> 1 file changed, 17 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
> index 5f145ccdf535..766775772eef 100644
> --- a/drivers/gpu/drm/xe/xe_configfs.c
> +++ b/drivers/gpu/drm/xe/xe_configfs.c
> @@ -275,11 +275,22 @@ static const struct config_item_type xe_config_device_type = {
> .ct_owner = THIS_MODULE,
> };
>
> +static const struct xe_device_desc *xe_match_desc(struct pci_dev *pdev)
> +{
> + struct device_driver *driver = driver_find("xe", &pci_bus_type);
> + struct pci_driver *drv = to_pci_driver(driver);
> + const struct pci_device_id *ids = drv ? drv->id_table : NULL;
> + const struct pci_device_id *found = pci_match_id(ids, pdev);
> +
> + return found ? (const void *)found->driver_data : NULL;
> +}
> +
> static struct config_group *xe_config_make_device_group(struct config_group *group,
> const char *name)
> {
> unsigned int domain, bus, slot, function;
> struct xe_config_group_device *dev;
> + const struct xe_device_desc *match;
> struct pci_dev *pdev;
> char canonical[16];
> int ret;
> @@ -297,8 +308,14 @@ static struct config_group *xe_config_make_device_group(struct config_group *gro
> pdev = pci_get_domain_bus_and_slot(domain, bus, PCI_DEVFN(slot, function));
> if (!pdev)
> return ERR_PTR(-ENODEV);
> +
> + match = xe_match_desc(pdev);
> +
> pci_dev_put(pdev);
>
> + if (!match)
> + return ERR_PTR(-ECANCELED);
why ECANCELED instead of ENODEV?
> +
> dev = kzalloc(sizeof(*dev), GFP_KERNEL);
> if (!dev)
> return ERR_PTR(-ENOMEM);
> --
> 2.47.1
>
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH v5 11/11] drm/xe/configfs: Allow adding configurations for future VFs
2025-07-29 11:42 ` [PATCH v5 11/11] drm/xe/configfs: Allow adding configurations for future VFs Michal Wajdeczko
@ 2025-07-29 21:50 ` Rodrigo Vivi
0 siblings, 0 replies; 29+ messages in thread
From: Rodrigo Vivi @ 2025-07-29 21:50 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe, Lucas De Marchi
On Tue, Jul 29, 2025 at 01:42:15PM +0200, Michal Wajdeczko wrote:
> Since we are expecting that all configuration directory names
> will match some of the existing devices, we can't provide any
> configuration for the VFs until they are actually enabled.
>
> But we can relax that restriction by just checking if there
> is a PF device that could create given VF. This is easy since
> all our PF devices are always present at function 0 and we can
> query PF device for number of VFs it could support.
>
> Then for some system with PF device at 0000:00:02.0 we can add
> configs for all VFs:
>
> /sys/kernel/config/xe/
> ├── 0000:00:02.0
> │ └── ...
> ├── 0000:00:02.1
> │ └── ...
> ├── 0000:00:02.2
> │ └── ...
> :
> └── 0000:00:02.7
> └── ...
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> ---
> v2: rebase and improve checks, fix include order
> v3: put correct device (Lucas)
> ---
> drivers/gpu/drm/xe/xe_configfs.c | 24 ++++++++++++++++++++++--
> 1 file changed, 22 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
> index 766775772eef..da9a8e64621f 100644
> --- a/drivers/gpu/drm/xe/xe_configfs.c
> +++ b/drivers/gpu/drm/xe/xe_configfs.c
> @@ -12,9 +12,9 @@
> #include <linux/string.h>
>
> #include "xe_configfs.h"
> -#include "xe_module.h"
> -
> #include "xe_hw_engine_types.h"
> +#include "xe_module.h"
> +#include "xe_pci_types.h"
>
> /**
> * DOC: Xe Configfs
> @@ -285,6 +285,15 @@ static const struct xe_device_desc *xe_match_desc(struct pci_dev *pdev)
> return found ? (const void *)found->driver_data : NULL;
> }
>
> +static struct pci_dev *get_physfn_instead(struct pci_dev *virtfn)
> +{
> + struct pci_dev *physfn = pci_physfn(virtfn);
> +
> + pci_dev_get(physfn);
> + pci_dev_put(virtfn);
> + return physfn;
> +}
> +
> static struct config_group *xe_config_make_device_group(struct config_group *group,
> const char *name)
> {
> @@ -306,11 +315,22 @@ static struct config_group *xe_config_make_device_group(struct config_group *gro
> return ERR_PTR(-EINVAL);
>
> pdev = pci_get_domain_bus_and_slot(domain, bus, PCI_DEVFN(slot, function));
> + if (!pdev && function)
> + pdev = pci_get_domain_bus_and_slot(domain, bus, PCI_DEVFN(slot, 0));
> + if (!pdev && slot)
> + pdev = pci_get_domain_bus_and_slot(domain, bus, PCI_DEVFN(0, 0));
I confess I got a bit lost here... specially this last case with 00.00.0, why's this
needed?
Perhaps it would be good to add some comments here explaining a bit of the
flow and thought... from the commit message I understand the PCI_DEVFN(slot, 0)....
Oh wait... okay the discrete has another level 03.00.0 hence you check this
case here as well...
Perhaps a comment to explain the different cases here would be really helpful
for the future... but the code is right:
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> if (!pdev)
> return ERR_PTR(-ENODEV);
> + pdev = get_physfn_instead(pdev);
>
> match = xe_match_desc(pdev);
> + if (match) {
> + int vfnumber = PCI_DEVFN(slot, function) - pdev->devfn;
>
> + if (vfnumber && (!dev_is_pf(&pdev->dev) || !match->has_sriov ||
> + vfnumber > pci_sriov_get_totalvfs(pdev)))
> + match = NULL;
> + }
> pci_dev_put(pdev);
>
> if (!match)
> --
> 2.47.1
>
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH v5 10/11] drm/xe/configfs: Only allow configurations for supported devices
2025-07-29 21:40 ` Rodrigo Vivi
@ 2025-07-29 22:20 ` John Harrison
2025-07-30 8:23 ` Michal Wajdeczko
0 siblings, 1 reply; 29+ messages in thread
From: John Harrison @ 2025-07-29 22:20 UTC (permalink / raw)
To: Rodrigo Vivi, Michal Wajdeczko; +Cc: intel-xe, Lucas De Marchi
On 7/29/2025 2:40 PM, Rodrigo Vivi wrote:
> On Tue, Jul 29, 2025 at 01:42:14PM +0200, Michal Wajdeczko wrote:
>> Since we already lookup for the real PCI device before we allow
>> to create its directory config, we might also check if the found
>> device matches our driver PCI ID list. This will prevent creation
>> of the directory configs for the unsupported devices.
>>
>> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>> ---
>> v2: rebased
>> ---
>> drivers/gpu/drm/xe/xe_configfs.c | 17 +++++++++++++++++
>> 1 file changed, 17 insertions(+)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
>> index 5f145ccdf535..766775772eef 100644
>> --- a/drivers/gpu/drm/xe/xe_configfs.c
>> +++ b/drivers/gpu/drm/xe/xe_configfs.c
>> @@ -275,11 +275,22 @@ static const struct config_item_type xe_config_device_type = {
>> .ct_owner = THIS_MODULE,
>> };
>>
>> +static const struct xe_device_desc *xe_match_desc(struct pci_dev *pdev)
>> +{
>> + struct device_driver *driver = driver_find("xe", &pci_bus_type);
>> + struct pci_driver *drv = to_pci_driver(driver);
>> + const struct pci_device_id *ids = drv ? drv->id_table : NULL;
>> + const struct pci_device_id *found = pci_match_id(ids, pdev);
>> +
>> + return found ? (const void *)found->driver_data : NULL;
>> +}
>> +
>> static struct config_group *xe_config_make_device_group(struct config_group *group,
>> const char *name)
>> {
>> unsigned int domain, bus, slot, function;
>> struct xe_config_group_device *dev;
>> + const struct xe_device_desc *match;
>> struct pci_dev *pdev;
>> char canonical[16];
>> int ret;
>> @@ -297,8 +308,14 @@ static struct config_group *xe_config_make_device_group(struct config_group *gro
>> pdev = pci_get_domain_bus_and_slot(domain, bus, PCI_DEVFN(slot, function));
>> if (!pdev)
>> return ERR_PTR(-ENODEV);
>> +
>> + match = xe_match_desc(pdev);
>> +
>> pci_dev_put(pdev);
>>
>> + if (!match)
>> + return ERR_PTR(-ECANCELED);
> why ECANCELED instead of ENODEV?
Or EINVAL? This is for when a user has created a directory for a PCI
device that exists but it is not a Xe device? Seems like ENODEV is not
the correct option given that the device does exist. But ECANCELED also
seems odd.
John.
>
>> +
>> dev = kzalloc(sizeof(*dev), GFP_KERNEL);
>> if (!dev)
>> return ERR_PTR(-ENOMEM);
>> --
>> 2.47.1
>>
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH v5 10/11] drm/xe/configfs: Only allow configurations for supported devices
2025-07-29 22:20 ` John Harrison
@ 2025-07-30 8:23 ` Michal Wajdeczko
2025-07-30 16:30 ` Rodrigo Vivi
0 siblings, 1 reply; 29+ messages in thread
From: Michal Wajdeczko @ 2025-07-30 8:23 UTC (permalink / raw)
To: John Harrison, Rodrigo Vivi; +Cc: intel-xe, Lucas De Marchi
On 7/30/2025 12:20 AM, John Harrison wrote:
> On 7/29/2025 2:40 PM, Rodrigo Vivi wrote:
>> On Tue, Jul 29, 2025 at 01:42:14PM +0200, Michal Wajdeczko wrote:
>>> Since we already lookup for the real PCI device before we allow
>>> to create its directory config, we might also check if the found
>>> device matches our driver PCI ID list. This will prevent creation
>>> of the directory configs for the unsupported devices.
>>>
>>> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>>> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>>> ---
>>> v2: rebased
>>> ---
>>> drivers/gpu/drm/xe/xe_configfs.c | 17 +++++++++++++++++
>>> 1 file changed, 17 insertions(+)
>>>
>>> diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
>>> index 5f145ccdf535..766775772eef 100644
>>> --- a/drivers/gpu/drm/xe/xe_configfs.c
>>> +++ b/drivers/gpu/drm/xe/xe_configfs.c
>>> @@ -275,11 +275,22 @@ static const struct config_item_type xe_config_device_type = {
>>> .ct_owner = THIS_MODULE,
>>> };
>>> +static const struct xe_device_desc *xe_match_desc(struct pci_dev *pdev)
>>> +{
>>> + struct device_driver *driver = driver_find("xe", &pci_bus_type);
>>> + struct pci_driver *drv = to_pci_driver(driver);
>>> + const struct pci_device_id *ids = drv ? drv->id_table : NULL;
>>> + const struct pci_device_id *found = pci_match_id(ids, pdev);
>>> +
>>> + return found ? (const void *)found->driver_data : NULL;
>>> +}
>>> +
>>> static struct config_group *xe_config_make_device_group(struct config_group *group,
>>> const char *name)
>>> {
>>> unsigned int domain, bus, slot, function;
>>> struct xe_config_group_device *dev;
>>> + const struct xe_device_desc *match;
>>> struct pci_dev *pdev;
>>> char canonical[16];
>>> int ret;
>>> @@ -297,8 +308,14 @@ static struct config_group *xe_config_make_device_group(struct config_group *gro
>>> pdev = pci_get_domain_bus_and_slot(domain, bus, PCI_DEVFN(slot, function));
>>> if (!pdev)
>>> return ERR_PTR(-ENODEV);
>>> +
>>> + match = xe_match_desc(pdev);
>>> +
>>> pci_dev_put(pdev);
>>> + if (!match)
>>> + return ERR_PTR(-ECANCELED);
>> why ECANCELED instead of ENODEV?
> Or EINVAL? This is for when a user has created a directory for a PCI device that exists but it is not a Xe device? Seems like ENODEV is not the correct option given that the device does exist. But ECANCELED also seems odd.
we can always return -EINVAL but user will have no clue what went wrong
so the idea was:
-EINVAL when config directory name is malformed
-ENODEV config directory name is correct but
there is no such device under such BDF
-ECANCELED when device exists but it is not covered by Xe driver
since you both don't like -ECANCELED for this case, what about:
-ECONNREFUSED /* Connection refused */
-EOPNOTSUPP /* Operation not supported on transport endpoint */
-ENXIO /* No such device or address */
>
> John.
>
>>
>>> +
>>> dev = kzalloc(sizeof(*dev), GFP_KERNEL);
>>> if (!dev)
>>> return ERR_PTR(-ENOMEM);
>>> --
>>> 2.47.1
>>>
>
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH v5 10/11] drm/xe/configfs: Only allow configurations for supported devices
2025-07-30 8:23 ` Michal Wajdeczko
@ 2025-07-30 16:30 ` Rodrigo Vivi
2025-07-30 17:12 ` John Harrison
0 siblings, 1 reply; 29+ messages in thread
From: Rodrigo Vivi @ 2025-07-30 16:30 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: John Harrison, intel-xe, Lucas De Marchi
On Wed, Jul 30, 2025 at 10:23:22AM +0200, Michal Wajdeczko wrote:
>
>
> On 7/30/2025 12:20 AM, John Harrison wrote:
> > On 7/29/2025 2:40 PM, Rodrigo Vivi wrote:
> >> On Tue, Jul 29, 2025 at 01:42:14PM +0200, Michal Wajdeczko wrote:
> >>> Since we already lookup for the real PCI device before we allow
> >>> to create its directory config, we might also check if the found
> >>> device matches our driver PCI ID list. This will prevent creation
> >>> of the directory configs for the unsupported devices.
> >>>
> >>> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> >>> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> >>> ---
> >>> v2: rebased
> >>> ---
> >>> drivers/gpu/drm/xe/xe_configfs.c | 17 +++++++++++++++++
> >>> 1 file changed, 17 insertions(+)
> >>>
> >>> diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
> >>> index 5f145ccdf535..766775772eef 100644
> >>> --- a/drivers/gpu/drm/xe/xe_configfs.c
> >>> +++ b/drivers/gpu/drm/xe/xe_configfs.c
> >>> @@ -275,11 +275,22 @@ static const struct config_item_type xe_config_device_type = {
> >>> .ct_owner = THIS_MODULE,
> >>> };
> >>> +static const struct xe_device_desc *xe_match_desc(struct pci_dev *pdev)
> >>> +{
> >>> + struct device_driver *driver = driver_find("xe", &pci_bus_type);
> >>> + struct pci_driver *drv = to_pci_driver(driver);
> >>> + const struct pci_device_id *ids = drv ? drv->id_table : NULL;
> >>> + const struct pci_device_id *found = pci_match_id(ids, pdev);
> >>> +
> >>> + return found ? (const void *)found->driver_data : NULL;
> >>> +}
> >>> +
> >>> static struct config_group *xe_config_make_device_group(struct config_group *group,
> >>> const char *name)
> >>> {
> >>> unsigned int domain, bus, slot, function;
> >>> struct xe_config_group_device *dev;
> >>> + const struct xe_device_desc *match;
> >>> struct pci_dev *pdev;
> >>> char canonical[16];
> >>> int ret;
> >>> @@ -297,8 +308,14 @@ static struct config_group *xe_config_make_device_group(struct config_group *gro
> >>> pdev = pci_get_domain_bus_and_slot(domain, bus, PCI_DEVFN(slot, function));
> >>> if (!pdev)
> >>> return ERR_PTR(-ENODEV);
> >>> +
> >>> + match = xe_match_desc(pdev);
> >>> +
> >>> pci_dev_put(pdev);
> >>> + if (!match)
> >>> + return ERR_PTR(-ECANCELED);
> >> why ECANCELED instead of ENODEV?
> > Or EINVAL? This is for when a user has created a directory for a PCI device that exists but it is not a Xe device? Seems like ENODEV is not the correct option given that the device does exist. But ECANCELED also seems odd.
>
> we can always return -EINVAL but user will have no clue what went wrong
>
> so the idea was:
>
> -EINVAL when config directory name is malformed
> -ENODEV config directory name is correct but
> there is no such device under such BDF
> -ECANCELED when device exists but it is not covered by Xe driver
>
> since you both don't like -ECANCELED for this case, what about:
>
> -ECONNREFUSED /* Connection refused */
> -EOPNOTSUPP /* Operation not supported on transport endpoint */
> -ENXIO /* No such device or address */
What about -ENODEV, but with debug messages to differentiate the cases?
Otherwise -ENXIO seems the best of the alternatives here.
>
> >
> > John.
> >
> >>
> >>> +
> >>> dev = kzalloc(sizeof(*dev), GFP_KERNEL);
> >>> if (!dev)
> >>> return ERR_PTR(-ENOMEM);
> >>> --
> >>> 2.47.1
> >>>
> >
>
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH v5 10/11] drm/xe/configfs: Only allow configurations for supported devices
2025-07-30 16:30 ` Rodrigo Vivi
@ 2025-07-30 17:12 ` John Harrison
2025-07-30 18:28 ` Rodrigo Vivi
0 siblings, 1 reply; 29+ messages in thread
From: John Harrison @ 2025-07-30 17:12 UTC (permalink / raw)
To: Rodrigo Vivi, Michal Wajdeczko; +Cc: intel-xe, Lucas De Marchi
On 7/30/2025 9:30 AM, Rodrigo Vivi wrote:
> On Wed, Jul 30, 2025 at 10:23:22AM +0200, Michal Wajdeczko wrote:
>> On 7/30/2025 12:20 AM, John Harrison wrote:
>>> On 7/29/2025 2:40 PM, Rodrigo Vivi wrote:
>>>> On Tue, Jul 29, 2025 at 01:42:14PM +0200, Michal Wajdeczko wrote:
>>>>> Since we already lookup for the real PCI device before we allow
>>>>> to create its directory config, we might also check if the found
>>>>> device matches our driver PCI ID list. This will prevent creation
>>>>> of the directory configs for the unsupported devices.
>>>>>
>>>>> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>>>>> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>>>>> ---
>>>>> v2: rebased
>>>>> ---
>>>>> drivers/gpu/drm/xe/xe_configfs.c | 17 +++++++++++++++++
>>>>> 1 file changed, 17 insertions(+)
>>>>>
>>>>> diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
>>>>> index 5f145ccdf535..766775772eef 100644
>>>>> --- a/drivers/gpu/drm/xe/xe_configfs.c
>>>>> +++ b/drivers/gpu/drm/xe/xe_configfs.c
>>>>> @@ -275,11 +275,22 @@ static const struct config_item_type xe_config_device_type = {
>>>>> .ct_owner = THIS_MODULE,
>>>>> };
>>>>> +static const struct xe_device_desc *xe_match_desc(struct pci_dev *pdev)
>>>>> +{
>>>>> + struct device_driver *driver = driver_find("xe", &pci_bus_type);
>>>>> + struct pci_driver *drv = to_pci_driver(driver);
>>>>> + const struct pci_device_id *ids = drv ? drv->id_table : NULL;
>>>>> + const struct pci_device_id *found = pci_match_id(ids, pdev);
>>>>> +
>>>>> + return found ? (const void *)found->driver_data : NULL;
>>>>> +}
>>>>> +
>>>>> static struct config_group *xe_config_make_device_group(struct config_group *group,
>>>>> const char *name)
>>>>> {
>>>>> unsigned int domain, bus, slot, function;
>>>>> struct xe_config_group_device *dev;
>>>>> + const struct xe_device_desc *match;
>>>>> struct pci_dev *pdev;
>>>>> char canonical[16];
>>>>> int ret;
>>>>> @@ -297,8 +308,14 @@ static struct config_group *xe_config_make_device_group(struct config_group *gro
>>>>> pdev = pci_get_domain_bus_and_slot(domain, bus, PCI_DEVFN(slot, function));
>>>>> if (!pdev)
>>>>> return ERR_PTR(-ENODEV);
>>>>> +
>>>>> + match = xe_match_desc(pdev);
>>>>> +
>>>>> pci_dev_put(pdev);
>>>>> + if (!match)
>>>>> + return ERR_PTR(-ECANCELED);
>>>> why ECANCELED instead of ENODEV?
>>> Or EINVAL? This is for when a user has created a directory for a PCI device that exists but it is not a Xe device? Seems like ENODEV is not the correct option given that the device does exist. But ECANCELED also seems odd.
>> we can always return -EINVAL but user will have no clue what went wrong
>>
>> so the idea was:
>>
>> -EINVAL when config directory name is malformed
>> -ENODEV config directory name is correct but
>> there is no such device under such BDF
>> -ECANCELED when device exists but it is not covered by Xe driver
>>
>> since you both don't like -ECANCELED for this case, what about:
>>
>> -ECONNREFUSED /* Connection refused */
>> -EOPNOTSUPP /* Operation not supported on transport endpoint */
>> -ENXIO /* No such device or address */
> What about -ENODEV, but with debug messages to differentiate the cases?
>
> Otherwise -ENXIO seems the best of the alternatives here.
I'm confused by what is wrong with EINVAL. Are there many other paths
that can return EINVAL for this operation? If not then how is any other
return code any different from a user confusion point of view? But yes,
I think at least a debug message to say "requested device is not
supported by this driver" would be good.
John.
>>> John.
>>>
>>>>> +
>>>>> dev = kzalloc(sizeof(*dev), GFP_KERNEL);
>>>>> if (!dev)
>>>>> return ERR_PTR(-ENOMEM);
>>>>> --
>>>>> 2.47.1
>>>>>
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH v5 10/11] drm/xe/configfs: Only allow configurations for supported devices
2025-07-30 17:12 ` John Harrison
@ 2025-07-30 18:28 ` Rodrigo Vivi
2025-07-30 19:57 ` Michal Wajdeczko
0 siblings, 1 reply; 29+ messages in thread
From: Rodrigo Vivi @ 2025-07-30 18:28 UTC (permalink / raw)
To: John Harrison; +Cc: Michal Wajdeczko, intel-xe, Lucas De Marchi
On Wed, Jul 30, 2025 at 10:12:06AM -0700, John Harrison wrote:
> On 7/30/2025 9:30 AM, Rodrigo Vivi wrote:
> > On Wed, Jul 30, 2025 at 10:23:22AM +0200, Michal Wajdeczko wrote:
> > > On 7/30/2025 12:20 AM, John Harrison wrote:
> > > > On 7/29/2025 2:40 PM, Rodrigo Vivi wrote:
> > > > > On Tue, Jul 29, 2025 at 01:42:14PM +0200, Michal Wajdeczko wrote:
> > > > > > Since we already lookup for the real PCI device before we allow
> > > > > > to create its directory config, we might also check if the found
> > > > > > device matches our driver PCI ID list. This will prevent creation
> > > > > > of the directory configs for the unsupported devices.
> > > > > >
> > > > > > Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> > > > > > Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> > > > > > ---
> > > > > > v2: rebased
> > > > > > ---
> > > > > > drivers/gpu/drm/xe/xe_configfs.c | 17 +++++++++++++++++
> > > > > > 1 file changed, 17 insertions(+)
> > > > > >
> > > > > > diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
> > > > > > index 5f145ccdf535..766775772eef 100644
> > > > > > --- a/drivers/gpu/drm/xe/xe_configfs.c
> > > > > > +++ b/drivers/gpu/drm/xe/xe_configfs.c
> > > > > > @@ -275,11 +275,22 @@ static const struct config_item_type xe_config_device_type = {
> > > > > > .ct_owner = THIS_MODULE,
> > > > > > };
> > > > > > +static const struct xe_device_desc *xe_match_desc(struct pci_dev *pdev)
> > > > > > +{
> > > > > > + struct device_driver *driver = driver_find("xe", &pci_bus_type);
> > > > > > + struct pci_driver *drv = to_pci_driver(driver);
> > > > > > + const struct pci_device_id *ids = drv ? drv->id_table : NULL;
> > > > > > + const struct pci_device_id *found = pci_match_id(ids, pdev);
> > > > > > +
> > > > > > + return found ? (const void *)found->driver_data : NULL;
> > > > > > +}
> > > > > > +
> > > > > > static struct config_group *xe_config_make_device_group(struct config_group *group,
> > > > > > const char *name)
> > > > > > {
> > > > > > unsigned int domain, bus, slot, function;
> > > > > > struct xe_config_group_device *dev;
> > > > > > + const struct xe_device_desc *match;
> > > > > > struct pci_dev *pdev;
> > > > > > char canonical[16];
> > > > > > int ret;
> > > > > > @@ -297,8 +308,14 @@ static struct config_group *xe_config_make_device_group(struct config_group *gro
> > > > > > pdev = pci_get_domain_bus_and_slot(domain, bus, PCI_DEVFN(slot, function));
> > > > > > if (!pdev)
> > > > > > return ERR_PTR(-ENODEV);
> > > > > > +
> > > > > > + match = xe_match_desc(pdev);
> > > > > > +
> > > > > > pci_dev_put(pdev);
> > > > > > + if (!match)
> > > > > > + return ERR_PTR(-ECANCELED);
> > > > > why ECANCELED instead of ENODEV?
> > > > Or EINVAL? This is for when a user has created a directory for a PCI device that exists but it is not a Xe device? Seems like ENODEV is not the correct option given that the device does exist. But ECANCELED also seems odd.
> > > we can always return -EINVAL but user will have no clue what went wrong
> > >
> > > so the idea was:
> > >
> > > -EINVAL when config directory name is malformed
> > > -ENODEV config directory name is correct but
> > > there is no such device under such BDF
> > > -ECANCELED when device exists but it is not covered by Xe driver
> > >
> > > since you both don't like -ECANCELED for this case, what about:
> > >
> > > -ECONNREFUSED /* Connection refused */
> > > -EOPNOTSUPP /* Operation not supported on transport endpoint */
> > > -ENXIO /* No such device or address */
> > What about -ENODEV, but with debug messages to differentiate the cases?
> >
> > Otherwise -ENXIO seems the best of the alternatives here.
> I'm confused by what is wrong with EINVAL. Are there many other paths that
> can return EINVAL for this operation? If not then how is any other return
> code any different from a user confusion point of view? But yes, I think at
> least a debug message to say "requested device is not supported by this
> driver" would be good.
to me it looks more like a 'no device' than 'invalid device', hence my
thought on the enodev, but no strong/hard preference to be honest.
and we are definitely on the same page that there
shouldn't be nothing wrong with reusing the error code and printing the
debug message like 'requested device is not supported by this driver'...
>
> John.
>
>
> > > > John.
> > > >
> > > > > > +
> > > > > > dev = kzalloc(sizeof(*dev), GFP_KERNEL);
> > > > > > if (!dev)
> > > > > > return ERR_PTR(-ENOMEM);
> > > > > > --
> > > > > > 2.47.1
> > > > > >
>
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH v5 10/11] drm/xe/configfs: Only allow configurations for supported devices
2025-07-30 18:28 ` Rodrigo Vivi
@ 2025-07-30 19:57 ` Michal Wajdeczko
2025-07-30 20:08 ` Rodrigo Vivi
0 siblings, 1 reply; 29+ messages in thread
From: Michal Wajdeczko @ 2025-07-30 19:57 UTC (permalink / raw)
To: Rodrigo Vivi, John Harrison; +Cc: intel-xe, Lucas De Marchi
On 7/30/2025 8:28 PM, Rodrigo Vivi wrote:
> On Wed, Jul 30, 2025 at 10:12:06AM -0700, John Harrison wrote:
>> On 7/30/2025 9:30 AM, Rodrigo Vivi wrote:
>>> On Wed, Jul 30, 2025 at 10:23:22AM +0200, Michal Wajdeczko wrote:
>>>> On 7/30/2025 12:20 AM, John Harrison wrote:
>>>>> On 7/29/2025 2:40 PM, Rodrigo Vivi wrote:
>>>>>> On Tue, Jul 29, 2025 at 01:42:14PM +0200, Michal Wajdeczko wrote:
>>>>>>> Since we already lookup for the real PCI device before we allow
>>>>>>> to create its directory config, we might also check if the found
>>>>>>> device matches our driver PCI ID list. This will prevent creation
>>>>>>> of the directory configs for the unsupported devices.
>>>>>>>
>>>>>>> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>>>>>>> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>>>>>>> ---
>>>>>>> v2: rebased
>>>>>>> ---
>>>>>>> drivers/gpu/drm/xe/xe_configfs.c | 17 +++++++++++++++++
>>>>>>> 1 file changed, 17 insertions(+)
>>>>>>>
>>>>>>> diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
>>>>>>> index 5f145ccdf535..766775772eef 100644
>>>>>>> --- a/drivers/gpu/drm/xe/xe_configfs.c
>>>>>>> +++ b/drivers/gpu/drm/xe/xe_configfs.c
>>>>>>> @@ -275,11 +275,22 @@ static const struct config_item_type xe_config_device_type = {
>>>>>>> .ct_owner = THIS_MODULE,
>>>>>>> };
>>>>>>> +static const struct xe_device_desc *xe_match_desc(struct pci_dev *pdev)
>>>>>>> +{
>>>>>>> + struct device_driver *driver = driver_find("xe", &pci_bus_type);
>>>>>>> + struct pci_driver *drv = to_pci_driver(driver);
>>>>>>> + const struct pci_device_id *ids = drv ? drv->id_table : NULL;
>>>>>>> + const struct pci_device_id *found = pci_match_id(ids, pdev);
>>>>>>> +
>>>>>>> + return found ? (const void *)found->driver_data : NULL;
>>>>>>> +}
>>>>>>> +
>>>>>>> static struct config_group *xe_config_make_device_group(struct config_group *group,
>>>>>>> const char *name)
>>>>>>> {
>>>>>>> unsigned int domain, bus, slot, function;
>>>>>>> struct xe_config_group_device *dev;
>>>>>>> + const struct xe_device_desc *match;
>>>>>>> struct pci_dev *pdev;
>>>>>>> char canonical[16];
>>>>>>> int ret;
>>>>>>> @@ -297,8 +308,14 @@ static struct config_group *xe_config_make_device_group(struct config_group *gro
>>>>>>> pdev = pci_get_domain_bus_and_slot(domain, bus, PCI_DEVFN(slot, function));
>>>>>>> if (!pdev)
>>>>>>> return ERR_PTR(-ENODEV);
>>>>>>> +
>>>>>>> + match = xe_match_desc(pdev);
>>>>>>> +
>>>>>>> pci_dev_put(pdev);
>>>>>>> + if (!match)
>>>>>>> + return ERR_PTR(-ECANCELED);
>>>>>> why ECANCELED instead of ENODEV?
>>>>> Or EINVAL? This is for when a user has created a directory for a PCI device that exists but it is not a Xe device? Seems like ENODEV is not the correct option given that the device does exist. But ECANCELED also seems odd.
>>>> we can always return -EINVAL but user will have no clue what went wrong
>>>>
>>>> so the idea was:
>>>>
>>>> -EINVAL when config directory name is malformed
>>>> -ENODEV config directory name is correct but
>>>> there is no such device under such BDF
>>>> -ECANCELED when device exists but it is not covered by Xe driver
>>>>
>>>> since you both don't like -ECANCELED for this case, what about:
>>>>
>>>> -ECONNREFUSED /* Connection refused */
>>>> -EOPNOTSUPP /* Operation not supported on transport endpoint */
>>>> -ENXIO /* No such device or address */
>>> What about -ENODEV, but with debug messages to differentiate the cases?
>>>
>>> Otherwise -ENXIO seems the best of the alternatives here.
>> I'm confused by what is wrong with EINVAL. Are there many other paths that
>> can return EINVAL for this operation? If not then how is any other return
>> code any different from a user confusion point of view? But yes, I think at
>> least a debug message to say "requested device is not supported by this
>> driver" would be good.
>
> to me it looks more like a 'no device' than 'invalid device', hence my
> thought on the enodev, but no strong/hard preference to be honest.
> and we are definitely on the same page that there
> shouldn't be nothing wrong with reusing the error code and printing the
> debug message like 'requested device is not supported by this driver'...
looking at pci/iov.c where some diag messages are given:
/* is PF driver loaded */
if (!pdev->driver) {
pci_info(pdev, "no driver bound to device; cannot configure SR-IOV\n");
ret = -ENOENT;
goto exit;
}
/* is PF driver loaded w/callback */
if (!pdev->driver->sriov_configure) {
pci_info(pdev, "driver does not support SR-IOV configuration via sysfs\n");
ret = -ENOENT;
goto exit;
}
so maybe we should use -ENOENT
$ sudo mkdir /sys/kernel/config/xe/0000:00:07.0
mkdir: cannot create directory ‘/sys/kernel/config/xe/0000:00:07.0’: No such file or directory
and print message using pci_info() like this
pcieport 0000:00:07.0: xe driver does not support configuration of this device
>
>>
>> John.
>>
>>
>>>>> John.
>>>>>
>>>>>>> +
>>>>>>> dev = kzalloc(sizeof(*dev), GFP_KERNEL);
>>>>>>> if (!dev)
>>>>>>> return ERR_PTR(-ENOMEM);
>>>>>>> --
>>>>>>> 2.47.1
>>>>>>>
>>
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH v5 10/11] drm/xe/configfs: Only allow configurations for supported devices
2025-07-30 19:57 ` Michal Wajdeczko
@ 2025-07-30 20:08 ` Rodrigo Vivi
2025-07-30 20:10 ` John Harrison
0 siblings, 1 reply; 29+ messages in thread
From: Rodrigo Vivi @ 2025-07-30 20:08 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: John Harrison, intel-xe, Lucas De Marchi
On Wed, Jul 30, 2025 at 09:57:01PM +0200, Michal Wajdeczko wrote:
>
>
> On 7/30/2025 8:28 PM, Rodrigo Vivi wrote:
> > On Wed, Jul 30, 2025 at 10:12:06AM -0700, John Harrison wrote:
> >> On 7/30/2025 9:30 AM, Rodrigo Vivi wrote:
> >>> On Wed, Jul 30, 2025 at 10:23:22AM +0200, Michal Wajdeczko wrote:
> >>>> On 7/30/2025 12:20 AM, John Harrison wrote:
> >>>>> On 7/29/2025 2:40 PM, Rodrigo Vivi wrote:
> >>>>>> On Tue, Jul 29, 2025 at 01:42:14PM +0200, Michal Wajdeczko wrote:
> >>>>>>> Since we already lookup for the real PCI device before we allow
> >>>>>>> to create its directory config, we might also check if the found
> >>>>>>> device matches our driver PCI ID list. This will prevent creation
> >>>>>>> of the directory configs for the unsupported devices.
> >>>>>>>
> >>>>>>> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> >>>>>>> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> >>>>>>> ---
> >>>>>>> v2: rebased
> >>>>>>> ---
> >>>>>>> drivers/gpu/drm/xe/xe_configfs.c | 17 +++++++++++++++++
> >>>>>>> 1 file changed, 17 insertions(+)
> >>>>>>>
> >>>>>>> diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
> >>>>>>> index 5f145ccdf535..766775772eef 100644
> >>>>>>> --- a/drivers/gpu/drm/xe/xe_configfs.c
> >>>>>>> +++ b/drivers/gpu/drm/xe/xe_configfs.c
> >>>>>>> @@ -275,11 +275,22 @@ static const struct config_item_type xe_config_device_type = {
> >>>>>>> .ct_owner = THIS_MODULE,
> >>>>>>> };
> >>>>>>> +static const struct xe_device_desc *xe_match_desc(struct pci_dev *pdev)
> >>>>>>> +{
> >>>>>>> + struct device_driver *driver = driver_find("xe", &pci_bus_type);
> >>>>>>> + struct pci_driver *drv = to_pci_driver(driver);
> >>>>>>> + const struct pci_device_id *ids = drv ? drv->id_table : NULL;
> >>>>>>> + const struct pci_device_id *found = pci_match_id(ids, pdev);
> >>>>>>> +
> >>>>>>> + return found ? (const void *)found->driver_data : NULL;
> >>>>>>> +}
> >>>>>>> +
> >>>>>>> static struct config_group *xe_config_make_device_group(struct config_group *group,
> >>>>>>> const char *name)
> >>>>>>> {
> >>>>>>> unsigned int domain, bus, slot, function;
> >>>>>>> struct xe_config_group_device *dev;
> >>>>>>> + const struct xe_device_desc *match;
> >>>>>>> struct pci_dev *pdev;
> >>>>>>> char canonical[16];
> >>>>>>> int ret;
> >>>>>>> @@ -297,8 +308,14 @@ static struct config_group *xe_config_make_device_group(struct config_group *gro
> >>>>>>> pdev = pci_get_domain_bus_and_slot(domain, bus, PCI_DEVFN(slot, function));
> >>>>>>> if (!pdev)
> >>>>>>> return ERR_PTR(-ENODEV);
> >>>>>>> +
> >>>>>>> + match = xe_match_desc(pdev);
> >>>>>>> +
> >>>>>>> pci_dev_put(pdev);
> >>>>>>> + if (!match)
> >>>>>>> + return ERR_PTR(-ECANCELED);
> >>>>>> why ECANCELED instead of ENODEV?
> >>>>> Or EINVAL? This is for when a user has created a directory for a PCI device that exists but it is not a Xe device? Seems like ENODEV is not the correct option given that the device does exist. But ECANCELED also seems odd.
> >>>> we can always return -EINVAL but user will have no clue what went wrong
> >>>>
> >>>> so the idea was:
> >>>>
> >>>> -EINVAL when config directory name is malformed
> >>>> -ENODEV config directory name is correct but
> >>>> there is no such device under such BDF
> >>>> -ECANCELED when device exists but it is not covered by Xe driver
> >>>>
> >>>> since you both don't like -ECANCELED for this case, what about:
> >>>>
> >>>> -ECONNREFUSED /* Connection refused */
> >>>> -EOPNOTSUPP /* Operation not supported on transport endpoint */
> >>>> -ENXIO /* No such device or address */
> >>> What about -ENODEV, but with debug messages to differentiate the cases?
> >>>
> >>> Otherwise -ENXIO seems the best of the alternatives here.
> >> I'm confused by what is wrong with EINVAL. Are there many other paths that
> >> can return EINVAL for this operation? If not then how is any other return
> >> code any different from a user confusion point of view? But yes, I think at
> >> least a debug message to say "requested device is not supported by this
> >> driver" would be good.
> >
> > to me it looks more like a 'no device' than 'invalid device', hence my
> > thought on the enodev, but no strong/hard preference to be honest.
> > and we are definitely on the same page that there
> > shouldn't be nothing wrong with reusing the error code and printing the
> > debug message like 'requested device is not supported by this driver'...
>
> looking at pci/iov.c where some diag messages are given:
>
> /* is PF driver loaded */
> if (!pdev->driver) {
> pci_info(pdev, "no driver bound to device; cannot configure SR-IOV\n");
> ret = -ENOENT;
> goto exit;
> }
>
> /* is PF driver loaded w/callback */
> if (!pdev->driver->sriov_configure) {
> pci_info(pdev, "driver does not support SR-IOV configuration via sysfs\n");
> ret = -ENOENT;
> goto exit;
> }
>
> so maybe we should use -ENOENT
>
> $ sudo mkdir /sys/kernel/config/xe/0000:00:07.0
> mkdir: cannot create directory ‘/sys/kernel/config/xe/0000:00:07.0’: No such file or directory
>
> and print message using pci_info() like this
>
> pcieport 0000:00:07.0: xe driver does not support configuration of this device
works for me.
>
>
> >
> >>
> >> John.
> >>
> >>
> >>>>> John.
> >>>>>
> >>>>>>> +
> >>>>>>> dev = kzalloc(sizeof(*dev), GFP_KERNEL);
> >>>>>>> if (!dev)
> >>>>>>> return ERR_PTR(-ENOMEM);
> >>>>>>> --
> >>>>>>> 2.47.1
> >>>>>>>
> >>
>
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH v5 10/11] drm/xe/configfs: Only allow configurations for supported devices
2025-07-30 20:08 ` Rodrigo Vivi
@ 2025-07-30 20:10 ` John Harrison
0 siblings, 0 replies; 29+ messages in thread
From: John Harrison @ 2025-07-30 20:10 UTC (permalink / raw)
To: Rodrigo Vivi, Michal Wajdeczko; +Cc: intel-xe, Lucas De Marchi
On 7/30/2025 1:08 PM, Rodrigo Vivi wrote:
> On Wed, Jul 30, 2025 at 09:57:01PM +0200, Michal Wajdeczko wrote:
>> On 7/30/2025 8:28 PM, Rodrigo Vivi wrote:
>>> On Wed, Jul 30, 2025 at 10:12:06AM -0700, John Harrison wrote:
>>>> On 7/30/2025 9:30 AM, Rodrigo Vivi wrote:
>>>>> On Wed, Jul 30, 2025 at 10:23:22AM +0200, Michal Wajdeczko wrote:
>>>>>> On 7/30/2025 12:20 AM, John Harrison wrote:
>>>>>>> On 7/29/2025 2:40 PM, Rodrigo Vivi wrote:
>>>>>>>> On Tue, Jul 29, 2025 at 01:42:14PM +0200, Michal Wajdeczko wrote:
>>>>>>>>> Since we already lookup for the real PCI device before we allow
>>>>>>>>> to create its directory config, we might also check if the found
>>>>>>>>> device matches our driver PCI ID list. This will prevent creation
>>>>>>>>> of the directory configs for the unsupported devices.
>>>>>>>>>
>>>>>>>>> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>>>>>>>>> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>>>>>>>>> ---
>>>>>>>>> v2: rebased
>>>>>>>>> ---
>>>>>>>>> drivers/gpu/drm/xe/xe_configfs.c | 17 +++++++++++++++++
>>>>>>>>> 1 file changed, 17 insertions(+)
>>>>>>>>>
>>>>>>>>> diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
>>>>>>>>> index 5f145ccdf535..766775772eef 100644
>>>>>>>>> --- a/drivers/gpu/drm/xe/xe_configfs.c
>>>>>>>>> +++ b/drivers/gpu/drm/xe/xe_configfs.c
>>>>>>>>> @@ -275,11 +275,22 @@ static const struct config_item_type xe_config_device_type = {
>>>>>>>>> .ct_owner = THIS_MODULE,
>>>>>>>>> };
>>>>>>>>> +static const struct xe_device_desc *xe_match_desc(struct pci_dev *pdev)
>>>>>>>>> +{
>>>>>>>>> + struct device_driver *driver = driver_find("xe", &pci_bus_type);
>>>>>>>>> + struct pci_driver *drv = to_pci_driver(driver);
>>>>>>>>> + const struct pci_device_id *ids = drv ? drv->id_table : NULL;
>>>>>>>>> + const struct pci_device_id *found = pci_match_id(ids, pdev);
>>>>>>>>> +
>>>>>>>>> + return found ? (const void *)found->driver_data : NULL;
>>>>>>>>> +}
>>>>>>>>> +
>>>>>>>>> static struct config_group *xe_config_make_device_group(struct config_group *group,
>>>>>>>>> const char *name)
>>>>>>>>> {
>>>>>>>>> unsigned int domain, bus, slot, function;
>>>>>>>>> struct xe_config_group_device *dev;
>>>>>>>>> + const struct xe_device_desc *match;
>>>>>>>>> struct pci_dev *pdev;
>>>>>>>>> char canonical[16];
>>>>>>>>> int ret;
>>>>>>>>> @@ -297,8 +308,14 @@ static struct config_group *xe_config_make_device_group(struct config_group *gro
>>>>>>>>> pdev = pci_get_domain_bus_and_slot(domain, bus, PCI_DEVFN(slot, function));
>>>>>>>>> if (!pdev)
>>>>>>>>> return ERR_PTR(-ENODEV);
>>>>>>>>> +
>>>>>>>>> + match = xe_match_desc(pdev);
>>>>>>>>> +
>>>>>>>>> pci_dev_put(pdev);
>>>>>>>>> + if (!match)
>>>>>>>>> + return ERR_PTR(-ECANCELED);
>>>>>>>> why ECANCELED instead of ENODEV?
>>>>>>> Or EINVAL? This is for when a user has created a directory for a PCI device that exists but it is not a Xe device? Seems like ENODEV is not the correct option given that the device does exist. But ECANCELED also seems odd.
>>>>>> we can always return -EINVAL but user will have no clue what went wrong
>>>>>>
>>>>>> so the idea was:
>>>>>>
>>>>>> -EINVAL when config directory name is malformed
>>>>>> -ENODEV config directory name is correct but
>>>>>> there is no such device under such BDF
>>>>>> -ECANCELED when device exists but it is not covered by Xe driver
>>>>>>
>>>>>> since you both don't like -ECANCELED for this case, what about:
>>>>>>
>>>>>> -ECONNREFUSED /* Connection refused */
>>>>>> -EOPNOTSUPP /* Operation not supported on transport endpoint */
>>>>>> -ENXIO /* No such device or address */
>>>>> What about -ENODEV, but with debug messages to differentiate the cases?
>>>>>
>>>>> Otherwise -ENXIO seems the best of the alternatives here.
>>>> I'm confused by what is wrong with EINVAL. Are there many other paths that
>>>> can return EINVAL for this operation? If not then how is any other return
>>>> code any different from a user confusion point of view? But yes, I think at
>>>> least a debug message to say "requested device is not supported by this
>>>> driver" would be good.
>>> to me it looks more like a 'no device' than 'invalid device', hence my
>>> thought on the enodev, but no strong/hard preference to be honest.
>>> and we are definitely on the same page that there
>>> shouldn't be nothing wrong with reusing the error code and printing the
>>> debug message like 'requested device is not supported by this driver'...
>> looking at pci/iov.c where some diag messages are given:
>>
>> /* is PF driver loaded */
>> if (!pdev->driver) {
>> pci_info(pdev, "no driver bound to device; cannot configure SR-IOV\n");
>> ret = -ENOENT;
>> goto exit;
>> }
>>
>> /* is PF driver loaded w/callback */
>> if (!pdev->driver->sriov_configure) {
>> pci_info(pdev, "driver does not support SR-IOV configuration via sysfs\n");
>> ret = -ENOENT;
>> goto exit;
>> }
>>
>> so maybe we should use -ENOENT
>>
>> $ sudo mkdir /sys/kernel/config/xe/0000:00:07.0
>> mkdir: cannot create directory ‘/sys/kernel/config/xe/0000:00:07.0’: No such file or directory
>>
>> and print message using pci_info() like this
>>
>> pcieport 0000:00:07.0: xe driver does not support configuration of this device
> works for me.
Likewise. Ship it.
John.
>
>
>>
>>>> John.
>>>>
>>>>
>>>>>>> John.
>>>>>>>
>>>>>>>>> +
>>>>>>>>> dev = kzalloc(sizeof(*dev), GFP_KERNEL);
>>>>>>>>> if (!dev)
>>>>>>>>> return ERR_PTR(-ENOMEM);
>>>>>>>>> --
>>>>>>>>> 2.47.1
>>>>>>>>>
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH v5 03/11] drm/xe/configfs: Destroy xe_configfs.su_mutex on exit/error
2025-07-29 11:42 ` [PATCH v5 03/11] drm/xe/configfs: Destroy xe_configfs.su_mutex on exit/error Michal Wajdeczko
2025-07-29 21:31 ` Rodrigo Vivi
@ 2025-08-05 12:49 ` Lucas De Marchi
1 sibling, 0 replies; 29+ messages in thread
From: Lucas De Marchi @ 2025-08-05 12:49 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe, Rodrigo Vivi
On Tue, Jul 29, 2025 at 01:42:07PM +0200, Michal Wajdeczko wrote:
>While mutex_destroy() is NOP when CONFIG_DEBUG_MUTEXES is not
>enabled, we should still call it.
>
>While around, drop a traling line.
s/traling/trailing/, which can be fixed while merging.
>
>Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
thanks
Lucas De Marchi
>---
>v2: remove pr_err in separate patch (Rodrigo)
>---
> drivers/gpu/drm/xe/xe_configfs.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
>diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
>index 36e2b45b305f..56fbf4c1c37f 100644
>--- a/drivers/gpu/drm/xe/xe_configfs.c
>+++ b/drivers/gpu/drm/xe/xe_configfs.c
>@@ -401,6 +401,7 @@ int __init xe_configfs_init(void)
> if (ret) {
> pr_err("Error %d while registering %s subsystem\n",
> ret, root->cg_item.ci_namebuf);
>+ mutex_destroy(&xe_configfs.su_mutex);
> return ret;
> }
>
>@@ -410,5 +411,5 @@ int __init xe_configfs_init(void)
> void __exit xe_configfs_exit(void)
> {
> configfs_unregister_subsystem(&xe_configfs);
>+ mutex_destroy(&xe_configfs.su_mutex);
> }
>-
>--
>2.47.1
>
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH v5 04/11] drm/xe/configfs: Drop redundant init() error message
2025-07-29 11:42 ` [PATCH v5 04/11] drm/xe/configfs: Drop redundant init() error message Michal Wajdeczko
2025-07-29 17:58 ` John Harrison
@ 2025-08-05 12:55 ` Lucas De Marchi
1 sibling, 0 replies; 29+ messages in thread
From: Lucas De Marchi @ 2025-08-05 12:55 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe, Rodrigo Vivi
On Tue, Jul 29, 2025 at 01:42:08PM +0200, Michal Wajdeczko wrote:
>There is no need to print separate error message since we will
>also print one in xe_init(). Also drop temporary variable, which
>was likely just taken from the example code.
>
>Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Lucas De Marchi
>---
> drivers/gpu/drm/xe/xe_configfs.c | 5 +----
> 1 file changed, 1 insertion(+), 4 deletions(-)
>
>diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
>index 56fbf4c1c37f..6aa0531bcf76 100644
>--- a/drivers/gpu/drm/xe/xe_configfs.c
>+++ b/drivers/gpu/drm/xe/xe_configfs.c
>@@ -392,15 +392,12 @@ u64 xe_configfs_get_engines_allowed(struct pci_dev *pdev)
>
> int __init xe_configfs_init(void)
> {
>- struct config_group *root = &xe_configfs.su_group;
> int ret;
>
>- config_group_init(root);
>+ config_group_init(&xe_configfs.su_group);
> mutex_init(&xe_configfs.su_mutex);
> ret = configfs_register_subsystem(&xe_configfs);
> if (ret) {
>- pr_err("Error %d while registering %s subsystem\n",
>- ret, root->cg_item.ci_namebuf);
> mutex_destroy(&xe_configfs.su_mutex);
> return ret;
> }
>--
>2.47.1
>
^ permalink raw reply [flat|nested] 29+ messages in thread
end of thread, other threads:[~2025-08-05 12:55 UTC | newest]
Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-29 11:42 [PATCH v5 00/11] Updates for drm/xe/configfs Michal Wajdeczko
2025-07-29 11:42 ` [PATCH v5 01/11] drm/xe: Simplify module initialization code Michal Wajdeczko
2025-07-29 11:42 ` [PATCH v5 02/11] drm/xe: Print module init abort code Michal Wajdeczko
2025-07-29 11:42 ` [PATCH v5 03/11] drm/xe/configfs: Destroy xe_configfs.su_mutex on exit/error Michal Wajdeczko
2025-07-29 21:31 ` Rodrigo Vivi
2025-08-05 12:49 ` Lucas De Marchi
2025-07-29 11:42 ` [PATCH v5 04/11] drm/xe/configfs: Drop redundant init() error message Michal Wajdeczko
2025-07-29 17:58 ` John Harrison
2025-08-05 12:55 ` Lucas De Marchi
2025-07-29 11:42 ` [PATCH v5 05/11] drm/xe/configfs: Rename struct xe_config_device Michal Wajdeczko
2025-07-29 11:42 ` [PATCH v5 06/11] drm/xe/configfs: Rename configfs_find_group() helper Michal Wajdeczko
2025-07-29 11:42 ` [PATCH v5 07/11] drm/xe/configfs: Reintroduce struct xe_config_device Michal Wajdeczko
2025-07-29 11:42 ` [PATCH v5 08/11] drm/xe/configfs: Keep default device config settings together Michal Wajdeczko
2025-07-29 11:42 ` [PATCH v5 09/11] drm/xe/configfs: Check if device was preconfigured Michal Wajdeczko
2025-07-29 11:42 ` [PATCH v5 10/11] drm/xe/configfs: Only allow configurations for supported devices Michal Wajdeczko
2025-07-29 21:40 ` Rodrigo Vivi
2025-07-29 22:20 ` John Harrison
2025-07-30 8:23 ` Michal Wajdeczko
2025-07-30 16:30 ` Rodrigo Vivi
2025-07-30 17:12 ` John Harrison
2025-07-30 18:28 ` Rodrigo Vivi
2025-07-30 19:57 ` Michal Wajdeczko
2025-07-30 20:08 ` Rodrigo Vivi
2025-07-30 20:10 ` John Harrison
2025-07-29 11:42 ` [PATCH v5 11/11] drm/xe/configfs: Allow adding configurations for future VFs Michal Wajdeczko
2025-07-29 21:50 ` Rodrigo Vivi
2025-07-29 12:03 ` ✓ CI.KUnit: success for Updates for drm/xe/configfs (rev6) Patchwork
2025-07-29 13:16 ` ✓ Xe.CI.BAT: " Patchwork
2025-07-29 18:55 ` ✗ Xe.CI.Full: failure " Patchwork
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.