* [Intel-gfx] [PATCH] drm/i915/bios: Rename find_section to find_bdb_section
@ 2023-03-15 12:19 Jani Nikula
2023-03-15 12:21 ` Maarten Lankhorst
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Jani Nikula @ 2023-03-15 12:19 UTC (permalink / raw)
To: intel-gfx; +Cc: jani.nikula
From: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
This prevents a namespace collision on other archs.
Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_bios.c | 46 +++++++++++------------
1 file changed, 23 insertions(+), 23 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c
index e54febd34ca9..75e69dffc5e9 100644
--- a/drivers/gpu/drm/i915/display/intel_bios.c
+++ b/drivers/gpu/drm/i915/display/intel_bios.c
@@ -141,8 +141,8 @@ struct bdb_block_entry {
};
static const void *
-find_section(struct drm_i915_private *i915,
- enum bdb_block_id section_id)
+bdb_find_section(struct drm_i915_private *i915,
+ enum bdb_block_id section_id)
{
struct bdb_block_entry *entry;
@@ -201,7 +201,7 @@ static size_t lfp_data_min_size(struct drm_i915_private *i915)
const struct bdb_lvds_lfp_data_ptrs *ptrs;
size_t size;
- ptrs = find_section(i915, BDB_LVDS_LFP_DATA_PTRS);
+ ptrs = bdb_find_section(i915, BDB_LVDS_LFP_DATA_PTRS);
if (!ptrs)
return 0;
@@ -630,7 +630,7 @@ static int vbt_get_panel_type(struct drm_i915_private *i915,
{
const struct bdb_lvds_options *lvds_options;
- lvds_options = find_section(i915, BDB_LVDS_OPTIONS);
+ lvds_options = bdb_find_section(i915, BDB_LVDS_OPTIONS);
if (!lvds_options)
return -1;
@@ -671,11 +671,11 @@ static int pnpid_get_panel_type(struct drm_i915_private *i915,
dump_pnp_id(i915, edid_id, "EDID");
- ptrs = find_section(i915, BDB_LVDS_LFP_DATA_PTRS);
+ ptrs = bdb_find_section(i915, BDB_LVDS_LFP_DATA_PTRS);
if (!ptrs)
return -1;
- data = find_section(i915, BDB_LVDS_LFP_DATA);
+ data = bdb_find_section(i915, BDB_LVDS_LFP_DATA);
if (!data)
return -1;
@@ -791,7 +791,7 @@ parse_panel_options(struct drm_i915_private *i915,
int panel_type = panel->vbt.panel_type;
int drrs_mode;
- lvds_options = find_section(i915, BDB_LVDS_OPTIONS);
+ lvds_options = bdb_find_section(i915, BDB_LVDS_OPTIONS);
if (!lvds_options)
return;
@@ -881,11 +881,11 @@ parse_lfp_data(struct drm_i915_private *i915,
const struct lvds_pnp_id *pnp_id;
int panel_type = panel->vbt.panel_type;
- ptrs = find_section(i915, BDB_LVDS_LFP_DATA_PTRS);
+ ptrs = bdb_find_section(i915, BDB_LVDS_LFP_DATA_PTRS);
if (!ptrs)
return;
- data = find_section(i915, BDB_LVDS_LFP_DATA);
+ data = bdb_find_section(i915, BDB_LVDS_LFP_DATA);
if (!data)
return;
@@ -932,7 +932,7 @@ parse_generic_dtd(struct drm_i915_private *i915,
if (i915->display.vbt.version < 229)
return;
- generic_dtd = find_section(i915, BDB_GENERIC_DTD);
+ generic_dtd = bdb_find_section(i915, BDB_GENERIC_DTD);
if (!generic_dtd)
return;
@@ -1011,7 +1011,7 @@ parse_lfp_backlight(struct drm_i915_private *i915,
int panel_type = panel->vbt.panel_type;
u16 level;
- backlight_data = find_section(i915, BDB_LVDS_BACKLIGHT);
+ backlight_data = bdb_find_section(i915, BDB_LVDS_BACKLIGHT);
if (!backlight_data)
return;
@@ -1119,14 +1119,14 @@ parse_sdvo_panel_data(struct drm_i915_private *i915,
if (index == -1) {
const struct bdb_sdvo_lvds_options *sdvo_lvds_options;
- sdvo_lvds_options = find_section(i915, BDB_SDVO_LVDS_OPTIONS);
+ sdvo_lvds_options = bdb_find_section(i915, BDB_SDVO_LVDS_OPTIONS);
if (!sdvo_lvds_options)
return;
index = sdvo_lvds_options->panel_type;
}
- dtds = find_section(i915, BDB_SDVO_PANEL_DTDS);
+ dtds = bdb_find_section(i915, BDB_SDVO_PANEL_DTDS);
if (!dtds)
return;
@@ -1162,7 +1162,7 @@ parse_general_features(struct drm_i915_private *i915)
{
const struct bdb_general_features *general;
- general = find_section(i915, BDB_GENERAL_FEATURES);
+ general = bdb_find_section(i915, BDB_GENERAL_FEATURES);
if (!general)
return;
@@ -1285,7 +1285,7 @@ parse_driver_features(struct drm_i915_private *i915)
{
const struct bdb_driver_features *driver;
- driver = find_section(i915, BDB_DRIVER_FEATURES);
+ driver = bdb_find_section(i915, BDB_DRIVER_FEATURES);
if (!driver)
return;
@@ -1322,7 +1322,7 @@ parse_panel_driver_features(struct drm_i915_private *i915,
{
const struct bdb_driver_features *driver;
- driver = find_section(i915, BDB_DRIVER_FEATURES);
+ driver = bdb_find_section(i915, BDB_DRIVER_FEATURES);
if (!driver)
return;
@@ -1362,7 +1362,7 @@ parse_power_conservation_features(struct drm_i915_private *i915,
if (i915->display.vbt.version < 228)
return;
- power = find_section(i915, BDB_LFP_POWER);
+ power = bdb_find_section(i915, BDB_LFP_POWER);
if (!power)
return;
@@ -1402,7 +1402,7 @@ parse_edp(struct drm_i915_private *i915,
const struct edp_fast_link_params *edp_link_params;
int panel_type = panel->vbt.panel_type;
- edp = find_section(i915, BDB_EDP);
+ edp = bdb_find_section(i915, BDB_EDP);
if (!edp)
return;
@@ -1532,7 +1532,7 @@ parse_psr(struct drm_i915_private *i915,
const struct psr_table *psr_table;
int panel_type = panel->vbt.panel_type;
- psr = find_section(i915, BDB_PSR);
+ psr = bdb_find_section(i915, BDB_PSR);
if (!psr) {
drm_dbg_kms(&i915->drm, "No PSR BDB found.\n");
return;
@@ -1693,7 +1693,7 @@ parse_mipi_config(struct drm_i915_private *i915,
/* Parse #52 for panel index used from panel_type already
* parsed
*/
- start = find_section(i915, BDB_MIPI_CONFIG);
+ start = bdb_find_section(i915, BDB_MIPI_CONFIG);
if (!start) {
drm_dbg_kms(&i915->drm, "No MIPI config BDB found");
return;
@@ -2005,7 +2005,7 @@ parse_mipi_sequence(struct drm_i915_private *i915,
if (panel->vbt.dsi.panel_id != MIPI_DSI_GENERIC_PANEL_ID)
return;
- sequence = find_section(i915, BDB_MIPI_SEQUENCE);
+ sequence = bdb_find_section(i915, BDB_MIPI_SEQUENCE);
if (!sequence) {
drm_dbg_kms(&i915->drm,
"No MIPI Sequence found, parsing complete\n");
@@ -2086,7 +2086,7 @@ parse_compression_parameters(struct drm_i915_private *i915)
if (i915->display.vbt.version < 198)
return;
- params = find_section(i915, BDB_COMPRESSION_PARAMETERS);
+ params = bdb_find_section(i915, BDB_COMPRESSION_PARAMETERS);
if (params) {
/* Sanity checks */
if (params->entry_size != sizeof(params->data[0])) {
@@ -2792,7 +2792,7 @@ parse_general_definitions(struct drm_i915_private *i915)
u16 block_size;
int bus_pin;
- defs = find_section(i915, BDB_GENERAL_DEFINITIONS);
+ defs = bdb_find_section(i915, BDB_GENERAL_DEFINITIONS);
if (!defs) {
drm_dbg_kms(&i915->drm,
"No general definition block is found, no devices defined.\n");
--
2.39.2
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [Intel-gfx] [PATCH] drm/i915/bios: Rename find_section to find_bdb_section 2023-03-15 12:19 [Intel-gfx] [PATCH] drm/i915/bios: Rename find_section to find_bdb_section Jani Nikula @ 2023-03-15 12:21 ` Maarten Lankhorst 2023-03-20 20:56 ` [Intel-gfx] ✗ Fi.CI.BUILD: warning for drm/i915/bios: Rename find_section to find_bdb_section (rev2) Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Maarten Lankhorst @ 2023-03-15 12:21 UTC (permalink / raw) To: Jani Nikula, intel-gfx Hey, Feel free to merge once CI build results are in. Should have sent it after Xe went public. :) ~Maarten On 2023-03-15 13:19, Jani Nikula wrote: > From: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> > > This prevents a namespace collision on other archs. > > Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> > Signed-off-by: Jani Nikula <jani.nikula@intel.com> > --- > drivers/gpu/drm/i915/display/intel_bios.c | 46 +++++++++++------------ > 1 file changed, 23 insertions(+), 23 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c > index e54febd34ca9..75e69dffc5e9 100644 > --- a/drivers/gpu/drm/i915/display/intel_bios.c > +++ b/drivers/gpu/drm/i915/display/intel_bios.c > @@ -141,8 +141,8 @@ struct bdb_block_entry { > }; > > static const void * > -find_section(struct drm_i915_private *i915, > - enum bdb_block_id section_id) > +bdb_find_section(struct drm_i915_private *i915, > + enum bdb_block_id section_id) > { > struct bdb_block_entry *entry; > > @@ -201,7 +201,7 @@ static size_t lfp_data_min_size(struct drm_i915_private *i915) > const struct bdb_lvds_lfp_data_ptrs *ptrs; > size_t size; > > - ptrs = find_section(i915, BDB_LVDS_LFP_DATA_PTRS); > + ptrs = bdb_find_section(i915, BDB_LVDS_LFP_DATA_PTRS); > if (!ptrs) > return 0; > > @@ -630,7 +630,7 @@ static int vbt_get_panel_type(struct drm_i915_private *i915, > { > const struct bdb_lvds_options *lvds_options; > > - lvds_options = find_section(i915, BDB_LVDS_OPTIONS); > + lvds_options = bdb_find_section(i915, BDB_LVDS_OPTIONS); > if (!lvds_options) > return -1; > > @@ -671,11 +671,11 @@ static int pnpid_get_panel_type(struct drm_i915_private *i915, > > dump_pnp_id(i915, edid_id, "EDID"); > > - ptrs = find_section(i915, BDB_LVDS_LFP_DATA_PTRS); > + ptrs = bdb_find_section(i915, BDB_LVDS_LFP_DATA_PTRS); > if (!ptrs) > return -1; > > - data = find_section(i915, BDB_LVDS_LFP_DATA); > + data = bdb_find_section(i915, BDB_LVDS_LFP_DATA); > if (!data) > return -1; > > @@ -791,7 +791,7 @@ parse_panel_options(struct drm_i915_private *i915, > int panel_type = panel->vbt.panel_type; > int drrs_mode; > > - lvds_options = find_section(i915, BDB_LVDS_OPTIONS); > + lvds_options = bdb_find_section(i915, BDB_LVDS_OPTIONS); > if (!lvds_options) > return; > > @@ -881,11 +881,11 @@ parse_lfp_data(struct drm_i915_private *i915, > const struct lvds_pnp_id *pnp_id; > int panel_type = panel->vbt.panel_type; > > - ptrs = find_section(i915, BDB_LVDS_LFP_DATA_PTRS); > + ptrs = bdb_find_section(i915, BDB_LVDS_LFP_DATA_PTRS); > if (!ptrs) > return; > > - data = find_section(i915, BDB_LVDS_LFP_DATA); > + data = bdb_find_section(i915, BDB_LVDS_LFP_DATA); > if (!data) > return; > > @@ -932,7 +932,7 @@ parse_generic_dtd(struct drm_i915_private *i915, > if (i915->display.vbt.version < 229) > return; > > - generic_dtd = find_section(i915, BDB_GENERIC_DTD); > + generic_dtd = bdb_find_section(i915, BDB_GENERIC_DTD); > if (!generic_dtd) > return; > > @@ -1011,7 +1011,7 @@ parse_lfp_backlight(struct drm_i915_private *i915, > int panel_type = panel->vbt.panel_type; > u16 level; > > - backlight_data = find_section(i915, BDB_LVDS_BACKLIGHT); > + backlight_data = bdb_find_section(i915, BDB_LVDS_BACKLIGHT); > if (!backlight_data) > return; > > @@ -1119,14 +1119,14 @@ parse_sdvo_panel_data(struct drm_i915_private *i915, > if (index == -1) { > const struct bdb_sdvo_lvds_options *sdvo_lvds_options; > > - sdvo_lvds_options = find_section(i915, BDB_SDVO_LVDS_OPTIONS); > + sdvo_lvds_options = bdb_find_section(i915, BDB_SDVO_LVDS_OPTIONS); > if (!sdvo_lvds_options) > return; > > index = sdvo_lvds_options->panel_type; > } > > - dtds = find_section(i915, BDB_SDVO_PANEL_DTDS); > + dtds = bdb_find_section(i915, BDB_SDVO_PANEL_DTDS); > if (!dtds) > return; > > @@ -1162,7 +1162,7 @@ parse_general_features(struct drm_i915_private *i915) > { > const struct bdb_general_features *general; > > - general = find_section(i915, BDB_GENERAL_FEATURES); > + general = bdb_find_section(i915, BDB_GENERAL_FEATURES); > if (!general) > return; > > @@ -1285,7 +1285,7 @@ parse_driver_features(struct drm_i915_private *i915) > { > const struct bdb_driver_features *driver; > > - driver = find_section(i915, BDB_DRIVER_FEATURES); > + driver = bdb_find_section(i915, BDB_DRIVER_FEATURES); > if (!driver) > return; > > @@ -1322,7 +1322,7 @@ parse_panel_driver_features(struct drm_i915_private *i915, > { > const struct bdb_driver_features *driver; > > - driver = find_section(i915, BDB_DRIVER_FEATURES); > + driver = bdb_find_section(i915, BDB_DRIVER_FEATURES); > if (!driver) > return; > > @@ -1362,7 +1362,7 @@ parse_power_conservation_features(struct drm_i915_private *i915, > if (i915->display.vbt.version < 228) > return; > > - power = find_section(i915, BDB_LFP_POWER); > + power = bdb_find_section(i915, BDB_LFP_POWER); > if (!power) > return; > > @@ -1402,7 +1402,7 @@ parse_edp(struct drm_i915_private *i915, > const struct edp_fast_link_params *edp_link_params; > int panel_type = panel->vbt.panel_type; > > - edp = find_section(i915, BDB_EDP); > + edp = bdb_find_section(i915, BDB_EDP); > if (!edp) > return; > > @@ -1532,7 +1532,7 @@ parse_psr(struct drm_i915_private *i915, > const struct psr_table *psr_table; > int panel_type = panel->vbt.panel_type; > > - psr = find_section(i915, BDB_PSR); > + psr = bdb_find_section(i915, BDB_PSR); > if (!psr) { > drm_dbg_kms(&i915->drm, "No PSR BDB found.\n"); > return; > @@ -1693,7 +1693,7 @@ parse_mipi_config(struct drm_i915_private *i915, > /* Parse #52 for panel index used from panel_type already > * parsed > */ > - start = find_section(i915, BDB_MIPI_CONFIG); > + start = bdb_find_section(i915, BDB_MIPI_CONFIG); > if (!start) { > drm_dbg_kms(&i915->drm, "No MIPI config BDB found"); > return; > @@ -2005,7 +2005,7 @@ parse_mipi_sequence(struct drm_i915_private *i915, > if (panel->vbt.dsi.panel_id != MIPI_DSI_GENERIC_PANEL_ID) > return; > > - sequence = find_section(i915, BDB_MIPI_SEQUENCE); > + sequence = bdb_find_section(i915, BDB_MIPI_SEQUENCE); > if (!sequence) { > drm_dbg_kms(&i915->drm, > "No MIPI Sequence found, parsing complete\n"); > @@ -2086,7 +2086,7 @@ parse_compression_parameters(struct drm_i915_private *i915) > if (i915->display.vbt.version < 198) > return; > > - params = find_section(i915, BDB_COMPRESSION_PARAMETERS); > + params = bdb_find_section(i915, BDB_COMPRESSION_PARAMETERS); > if (params) { > /* Sanity checks */ > if (params->entry_size != sizeof(params->data[0])) { > @@ -2792,7 +2792,7 @@ parse_general_definitions(struct drm_i915_private *i915) > u16 block_size; > int bus_pin; > > - defs = find_section(i915, BDB_GENERAL_DEFINITIONS); > + defs = bdb_find_section(i915, BDB_GENERAL_DEFINITIONS); > if (!defs) { > drm_dbg_kms(&i915->drm, > "No general definition block is found, no devices defined.\n"); ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Intel-gfx] ✗ Fi.CI.BUILD: warning for drm/i915/bios: Rename find_section to find_bdb_section (rev2) 2023-03-15 12:19 [Intel-gfx] [PATCH] drm/i915/bios: Rename find_section to find_bdb_section Jani Nikula 2023-03-15 12:21 ` Maarten Lankhorst @ 2023-03-20 20:56 ` Patchwork 2023-03-20 20:56 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-03-20 20:56 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx == Series Details == Series: drm/i915/bios: Rename find_section to find_bdb_section (rev2) URL : https://patchwork.freedesktop.org/series/115189/ State : warning == Summary == Error: git fetch origin failed ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/bios: Rename find_section to find_bdb_section (rev2) 2023-03-15 12:19 [Intel-gfx] [PATCH] drm/i915/bios: Rename find_section to find_bdb_section Jani Nikula 2023-03-15 12:21 ` Maarten Lankhorst 2023-03-20 20:56 ` [Intel-gfx] ✗ Fi.CI.BUILD: warning for drm/i915/bios: Rename find_section to find_bdb_section (rev2) Patchwork @ 2023-03-20 20:56 ` Patchwork 2023-03-20 21:14 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2023-03-21 1:16 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-03-20 20:56 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx == Series Details == Series: drm/i915/bios: Rename find_section to find_bdb_section (rev2) URL : https://patchwork.freedesktop.org/series/115189/ State : warning == Summary == Error: git fetch origin failed ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/bios: Rename find_section to find_bdb_section (rev2) 2023-03-15 12:19 [Intel-gfx] [PATCH] drm/i915/bios: Rename find_section to find_bdb_section Jani Nikula ` (2 preceding siblings ...) 2023-03-20 20:56 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: " Patchwork @ 2023-03-20 21:14 ` Patchwork 2023-03-21 1:16 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-03-20 21:14 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 1602 bytes --] == Series Details == Series: drm/i915/bios: Rename find_section to find_bdb_section (rev2) URL : https://patchwork.freedesktop.org/series/115189/ State : success == Summary == CI Bug Log - changes from CI_DRM_12884 -> Patchwork_115189v2 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/index.html Participating hosts (35 -> 34) ------------------------------ Missing (1): bat-dg1-6 Known issues ------------ Here are the changes found in Patchwork_115189v2 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_pipe_crc_basic@read-crc: - bat-adlp-9: NOTRUN -> [SKIP][1] ([i915#3546]) +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/bat-adlp-9/igt@kms_pipe_crc_basic@read-crc.html [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 Build changes ------------- * Linux: CI_DRM_12884 -> Patchwork_115189v2 CI-20190529: 20190529 CI_DRM_12884: 1d4054731cfcb1cb9810d309b70535ae0b90ecf0 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7208: f327c5d77b6ea6adff1ef6d08f21f232dfe093e3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_115189v2: 1d4054731cfcb1cb9810d309b70535ae0b90ecf0 @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 16b87fad6801 drm/i915/bios: Rename find_section to find_bdb_section == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/index.html [-- Attachment #2: Type: text/html, Size: 2196 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/bios: Rename find_section to find_bdb_section (rev2) 2023-03-15 12:19 [Intel-gfx] [PATCH] drm/i915/bios: Rename find_section to find_bdb_section Jani Nikula ` (3 preceding siblings ...) 2023-03-20 21:14 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork @ 2023-03-21 1:16 ` Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-03-21 1:16 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 23490 bytes --] == Series Details == Series: drm/i915/bios: Rename find_section to find_bdb_section (rev2) URL : https://patchwork.freedesktop.org/series/115189/ State : success == Summary == CI Bug Log - changes from CI_DRM_12884_full -> Patchwork_115189v2_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 9) ------------------------------ Additional (1): shard-tglu0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_115189v2_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_mmap_offset@clear@smem0: - {shard-dg1}: NOTRUN -> [DMESG-WARN][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-dg1-17/igt@gem_mmap_offset@clear@smem0.html * igt@kms_ccs@pipe-c-bad-aux-stride-yf_tiled_ccs: - {shard-rkl}: [SKIP][2] ([fdo#109315]) -> [SKIP][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-rkl-5/igt@kms_ccs@pipe-c-bad-aux-stride-yf_tiled_ccs.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-rkl-6/igt@kms_ccs@pipe-c-bad-aux-stride-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs: - {shard-rkl}: [SKIP][4] ([i915#4098]) -> [SKIP][5] +3 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-rkl-5/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-rkl-6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: - {shard-rkl}: [SKIP][6] ([i915#1845] / [i915#4098]) -> [SKIP][7] +7 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-rkl-5/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-rkl-6/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html * igt@kms_plane@plane-panning-top-left: - {shard-rkl}: NOTRUN -> [SKIP][8] +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-rkl-5/igt@kms_plane@plane-panning-top-left.html Known issues ------------ Here are the changes found in Patchwork_115189v2_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [PASS][9] -> [FAIL][10] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [PASS][11] -> [FAIL][12] ([i915#2346]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@plain-flip-ts-check@b-hdmi-a1: - shard-glk: [PASS][13] -> [FAIL][14] ([i915#2122]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-glk3/igt@kms_flip@plain-flip-ts-check@b-hdmi-a1.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-glk9/igt@kms_flip@plain-flip-ts-check@b-hdmi-a1.html #### Possible fixes #### * igt@device_reset@unbind-reset-rebind: - {shard-rkl}: [FAIL][15] ([i915#4778]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-rkl-5/igt@device_reset@unbind-reset-rebind.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-rkl-6/igt@device_reset@unbind-reset-rebind.html * igt@fbdev@unaligned-write: - {shard-rkl}: [SKIP][17] ([i915#2582]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-rkl-5/igt@fbdev@unaligned-write.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-rkl-6/igt@fbdev@unaligned-write.html * {igt@gem_barrier_race@remote-request@rcs0}: - {shard-tglu}: [ABORT][19] ([i915#8211]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-tglu-9/igt@gem_barrier_race@remote-request@rcs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-tglu-9/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_ctx_persistence@smoketest: - {shard-tglu}: [FAIL][21] ([i915#5099]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-tglu-6/igt@gem_ctx_persistence@smoketest.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-tglu-5/igt@gem_ctx_persistence@smoketest.html * igt@gem_exec_balancer@fairslice: - {shard-rkl}: [SKIP][23] ([i915#6259]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-rkl-5/igt@gem_exec_balancer@fairslice.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-rkl-6/igt@gem_exec_balancer@fairslice.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - {shard-rkl}: [FAIL][25] ([i915#2842]) -> [PASS][26] +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - {shard-rkl}: [SKIP][27] ([i915#3281]) -> [PASS][28] +3 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_suspend@basic-s4-devices@smem: - {shard-tglu}: [ABORT][29] ([i915#7975]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-tglu-9/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_userptr_blits@forbidden-operations: - {shard-rkl}: [SKIP][31] ([i915#3282]) -> [PASS][32] +2 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-rkl-4/igt@gem_userptr_blits@forbidden-operations.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-rkl-5/igt@gem_userptr_blits@forbidden-operations.html * igt@gen9_exec_parse@batch-without-end: - {shard-rkl}: [SKIP][33] ([i915#2527]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-rkl-4/igt@gen9_exec_parse@batch-without-end.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-rkl-5/igt@gen9_exec_parse@batch-without-end.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - {shard-dg1}: [SKIP][35] ([i915#1937]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-dg1-15/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-dg1-14/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rpm@dpms-lpsp: - {shard-rkl}: [SKIP][37] ([i915#1397]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-rkl-4/igt@i915_pm_rpm@dpms-lpsp.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-rkl-6/igt@i915_pm_rpm@dpms-lpsp.html - {shard-dg1}: [SKIP][39] ([i915#1397]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-dg1-15/igt@i915_pm_rpm@dpms-lpsp.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-dg1-14/igt@i915_pm_rpm@dpms-lpsp.html - {shard-tglu}: [SKIP][41] ([i915#1397]) -> [PASS][42] +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-tglu-9/igt@i915_pm_rpm@dpms-lpsp.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-tglu-7/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@fences: - {shard-rkl}: [SKIP][43] ([i915#1849]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-rkl-5/igt@i915_pm_rpm@fences.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-rkl-6/igt@i915_pm_rpm@fences.html * igt@i915_pm_rpm@i2c: - {shard-tglu}: [SKIP][45] ([i915#3547]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-tglu-9/igt@i915_pm_rpm@i2c.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-tglu-7/igt@i915_pm_rpm@i2c.html - {shard-rkl}: [SKIP][47] ([fdo#109308]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-rkl-4/igt@i915_pm_rpm@i2c.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-rkl-6/igt@i915_pm_rpm@i2c.html * igt@kms_big_fb@linear-32bpp-rotate-0: - {shard-rkl}: [SKIP][49] ([i915#1845] / [i915#4098]) -> [PASS][50] +24 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-rkl-4/igt@kms_big_fb@linear-32bpp-rotate-0.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-0.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs: - {shard-tglu}: [SKIP][51] ([i915#1845]) -> [PASS][52] +39 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-tglu-10/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-tglu-4/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs.html * igt@kms_dp_aux_dev: - {shard-rkl}: [SKIP][53] ([i915#1257]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-rkl-5/igt@kms_dp_aux_dev.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-rkl-6/igt@kms_dp_aux_dev.html * igt@kms_fbcon_fbt@psr: - {shard-rkl}: [SKIP][55] ([fdo#110189] / [i915#3955]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-rkl-5/igt@kms_fbcon_fbt@psr.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-rkl-6/igt@kms_fbcon_fbt@psr.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - {shard-tglu}: [SKIP][57] ([i915#1849]) -> [PASS][58] +8 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary: - {shard-rkl}: [SKIP][59] ([i915#1849] / [i915#4098]) -> [PASS][60] +15 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - {shard-rkl}: [SKIP][61] ([fdo#109315]) -> [PASS][62] +3 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * {igt@kms_plane@invalid-pixel-format-settings}: - {shard-rkl}: [SKIP][63] ([i915#8152]) -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-rkl-4/igt@kms_plane@invalid-pixel-format-settings.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-rkl-6/igt@kms_plane@invalid-pixel-format-settings.html - {shard-tglu}: [SKIP][65] ([i915#8152]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-tglu-9/igt@kms_plane@invalid-pixel-format-settings.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-tglu-7/igt@kms_plane@invalid-pixel-format-settings.html * igt@kms_psr@primary_mmap_gtt: - {shard-rkl}: [SKIP][67] ([i915#1072]) -> [PASS][68] +2 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-rkl-5/igt@kms_psr@primary_mmap_gtt.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-rkl-6/igt@kms_psr@primary_mmap_gtt.html * igt@kms_vblank@pipe-b-ts-continuation-modeset: - {shard-tglu}: [SKIP][69] ([i915#1845] / [i915#7651]) -> [PASS][70] +13 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-tglu-9/igt@kms_vblank@pipe-b-ts-continuation-modeset.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-tglu-7/igt@kms_vblank@pipe-b-ts-continuation-modeset.html * igt@syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled: - {shard-rkl}: [SKIP][71] ([i915#2575]) -> [PASS][72] +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12884/shard-rkl-5/igt@syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/shard-rkl-6/igt@syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2532]: https://gitlab.freedesktop.org/drm/intel/issues/2532 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3639]: https://gitlab.freedesktop.org/drm/intel/issues/3639 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4778]: https://gitlab.freedesktop.org/drm/intel/issues/4778 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5099]: https://gitlab.freedesktop.org/drm/intel/issues/5099 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6259]: https://gitlab.freedesktop.org/drm/intel/issues/6259 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7811]: https://gitlab.freedesktop.org/drm/intel/issues/7811 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949 [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981 [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152 [i915#8155]: https://gitlab.freedesktop.org/drm/intel/issues/8155 [i915#8211]: https://gitlab.freedesktop.org/drm/intel/issues/8211 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8282]: https://gitlab.freedesktop.org/drm/intel/issues/8282 Build changes ------------- * Linux: CI_DRM_12884 -> Patchwork_115189v2 CI-20190529: 20190529 CI_DRM_12884: 1d4054731cfcb1cb9810d309b70535ae0b90ecf0 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7208: f327c5d77b6ea6adff1ef6d08f21f232dfe093e3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_115189v2: 1d4054731cfcb1cb9810d309b70535ae0b90ecf0 @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115189v2/index.html [-- Attachment #2: Type: text/html, Size: 19075 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-03-21 1:16 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-03-15 12:19 [Intel-gfx] [PATCH] drm/i915/bios: Rename find_section to find_bdb_section Jani Nikula 2023-03-15 12:21 ` Maarten Lankhorst 2023-03-20 20:56 ` [Intel-gfx] ✗ Fi.CI.BUILD: warning for drm/i915/bios: Rename find_section to find_bdb_section (rev2) Patchwork 2023-03-20 20:56 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: " Patchwork 2023-03-20 21:14 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2023-03-21 1:16 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox