* [Intel-gfx] [PATCH] drm/ttm: let struct ttm_device_funcs be placed in rodata @ 2023-03-09 12:37 Jani Nikula 2023-03-09 12:45 ` Christian König ` (4 more replies) 0 siblings, 5 replies; 10+ messages in thread From: Jani Nikula @ 2023-03-09 12:37 UTC (permalink / raw) To: dri-devel; +Cc: jani.nikula, intel-gfx, Huang Rui, Christian Koenig Make the struct ttm_device_funcs pointers const so the data can be placed in rodata. Cc: Christian Koenig <christian.koenig@amd.com> Cc: Huang Rui <ray.huang@amd.com> Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- drivers/gpu/drm/ttm/ttm_device.c | 2 +- include/drm/ttm/ttm_device.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/ttm/ttm_device.c b/drivers/gpu/drm/ttm/ttm_device.c index ae2f19dc9f81..a71bb1362de4 100644 --- a/drivers/gpu/drm/ttm/ttm_device.c +++ b/drivers/gpu/drm/ttm/ttm_device.c @@ -190,7 +190,7 @@ EXPORT_SYMBOL(ttm_device_swapout); * Returns: * !0: Failure. */ -int ttm_device_init(struct ttm_device *bdev, struct ttm_device_funcs *funcs, +int ttm_device_init(struct ttm_device *bdev, const struct ttm_device_funcs *funcs, struct device *dev, struct address_space *mapping, struct drm_vma_offset_manager *vma_manager, bool use_dma_alloc, bool use_dma32) diff --git a/include/drm/ttm/ttm_device.h b/include/drm/ttm/ttm_device.h index 56e82ba2d046..c22f30535c84 100644 --- a/include/drm/ttm/ttm_device.h +++ b/include/drm/ttm/ttm_device.h @@ -223,7 +223,7 @@ struct ttm_device { * @funcs: Function table for the device. * Constant after bo device init */ - struct ttm_device_funcs *funcs; + const struct ttm_device_funcs *funcs; /** * @sysman: Resource manager for the system domain. @@ -287,7 +287,7 @@ static inline void ttm_set_driver_manager(struct ttm_device *bdev, int type, bdev->man_drv[type] = manager; } -int ttm_device_init(struct ttm_device *bdev, struct ttm_device_funcs *funcs, +int ttm_device_init(struct ttm_device *bdev, const struct ttm_device_funcs *funcs, struct device *dev, struct address_space *mapping, struct drm_vma_offset_manager *vma_manager, bool use_dma_alloc, bool use_dma32); -- 2.39.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/ttm: let struct ttm_device_funcs be placed in rodata 2023-03-09 12:37 [Intel-gfx] [PATCH] drm/ttm: let struct ttm_device_funcs be placed in rodata Jani Nikula @ 2023-03-09 12:45 ` Christian König 2023-03-09 12:49 ` Jani Nikula 2023-03-09 12:52 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 10+ messages in thread From: Christian König @ 2023-03-09 12:45 UTC (permalink / raw) To: Jani Nikula, dri-devel; +Cc: intel-gfx, Huang Rui Am 09.03.23 um 13:37 schrieb Jani Nikula: > Make the struct ttm_device_funcs pointers const so the data can be placed in rodata. > > Cc: Christian Koenig <christian.koenig@amd.com> > Cc: Huang Rui <ray.huang@amd.com> > Signed-off-by: Jani Nikula <jani.nikula@intel.com> Good idea, Reviewed-by: Christian König <christian.koenig@amd.com> Should I push it to drm-misc-next or do you need it on some other branch? Christian. > --- > drivers/gpu/drm/ttm/ttm_device.c | 2 +- > include/drm/ttm/ttm_device.h | 4 ++-- > 2 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/ttm/ttm_device.c b/drivers/gpu/drm/ttm/ttm_device.c > index ae2f19dc9f81..a71bb1362de4 100644 > --- a/drivers/gpu/drm/ttm/ttm_device.c > +++ b/drivers/gpu/drm/ttm/ttm_device.c > @@ -190,7 +190,7 @@ EXPORT_SYMBOL(ttm_device_swapout); > * Returns: > * !0: Failure. > */ > -int ttm_device_init(struct ttm_device *bdev, struct ttm_device_funcs *funcs, > +int ttm_device_init(struct ttm_device *bdev, const struct ttm_device_funcs *funcs, > struct device *dev, struct address_space *mapping, > struct drm_vma_offset_manager *vma_manager, > bool use_dma_alloc, bool use_dma32) > diff --git a/include/drm/ttm/ttm_device.h b/include/drm/ttm/ttm_device.h > index 56e82ba2d046..c22f30535c84 100644 > --- a/include/drm/ttm/ttm_device.h > +++ b/include/drm/ttm/ttm_device.h > @@ -223,7 +223,7 @@ struct ttm_device { > * @funcs: Function table for the device. > * Constant after bo device init > */ > - struct ttm_device_funcs *funcs; > + const struct ttm_device_funcs *funcs; > > /** > * @sysman: Resource manager for the system domain. > @@ -287,7 +287,7 @@ static inline void ttm_set_driver_manager(struct ttm_device *bdev, int type, > bdev->man_drv[type] = manager; > } > > -int ttm_device_init(struct ttm_device *bdev, struct ttm_device_funcs *funcs, > +int ttm_device_init(struct ttm_device *bdev, const struct ttm_device_funcs *funcs, > struct device *dev, struct address_space *mapping, > struct drm_vma_offset_manager *vma_manager, > bool use_dma_alloc, bool use_dma32); ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/ttm: let struct ttm_device_funcs be placed in rodata 2023-03-09 12:45 ` Christian König @ 2023-03-09 12:49 ` Jani Nikula 2023-05-16 8:05 ` Jani Nikula 0 siblings, 1 reply; 10+ messages in thread From: Jani Nikula @ 2023-03-09 12:49 UTC (permalink / raw) To: Christian König, dri-devel; +Cc: intel-gfx, Huang Rui On Thu, 09 Mar 2023, Christian König <christian.koenig@amd.com> wrote: > Am 09.03.23 um 13:37 schrieb Jani Nikula: >> Make the struct ttm_device_funcs pointers const so the data can be placed in rodata. >> >> Cc: Christian Koenig <christian.koenig@amd.com> >> Cc: Huang Rui <ray.huang@amd.com> >> Signed-off-by: Jani Nikula <jani.nikula@intel.com> > > Good idea, Reviewed-by: Christian König <christian.koenig@amd.com> Thanks! > Should I push it to drm-misc-next or do you need it on some other branch? Go ahead, I'm not urgently depending on it. BR, Jani. > > Christian. > >> --- >> drivers/gpu/drm/ttm/ttm_device.c | 2 +- >> include/drm/ttm/ttm_device.h | 4 ++-- >> 2 files changed, 3 insertions(+), 3 deletions(-) >> >> diff --git a/drivers/gpu/drm/ttm/ttm_device.c b/drivers/gpu/drm/ttm/ttm_device.c >> index ae2f19dc9f81..a71bb1362de4 100644 >> --- a/drivers/gpu/drm/ttm/ttm_device.c >> +++ b/drivers/gpu/drm/ttm/ttm_device.c >> @@ -190,7 +190,7 @@ EXPORT_SYMBOL(ttm_device_swapout); >> * Returns: >> * !0: Failure. >> */ >> -int ttm_device_init(struct ttm_device *bdev, struct ttm_device_funcs *funcs, >> +int ttm_device_init(struct ttm_device *bdev, const struct ttm_device_funcs *funcs, >> struct device *dev, struct address_space *mapping, >> struct drm_vma_offset_manager *vma_manager, >> bool use_dma_alloc, bool use_dma32) >> diff --git a/include/drm/ttm/ttm_device.h b/include/drm/ttm/ttm_device.h >> index 56e82ba2d046..c22f30535c84 100644 >> --- a/include/drm/ttm/ttm_device.h >> +++ b/include/drm/ttm/ttm_device.h >> @@ -223,7 +223,7 @@ struct ttm_device { >> * @funcs: Function table for the device. >> * Constant after bo device init >> */ >> - struct ttm_device_funcs *funcs; >> + const struct ttm_device_funcs *funcs; >> >> /** >> * @sysman: Resource manager for the system domain. >> @@ -287,7 +287,7 @@ static inline void ttm_set_driver_manager(struct ttm_device *bdev, int type, >> bdev->man_drv[type] = manager; >> } >> >> -int ttm_device_init(struct ttm_device *bdev, struct ttm_device_funcs *funcs, >> +int ttm_device_init(struct ttm_device *bdev, const struct ttm_device_funcs *funcs, >> struct device *dev, struct address_space *mapping, >> struct drm_vma_offset_manager *vma_manager, >> bool use_dma_alloc, bool use_dma32); > -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/ttm: let struct ttm_device_funcs be placed in rodata 2023-03-09 12:49 ` Jani Nikula @ 2023-05-16 8:05 ` Jani Nikula 2023-05-16 16:11 ` Alex Deucher 0 siblings, 1 reply; 10+ messages in thread From: Jani Nikula @ 2023-05-16 8:05 UTC (permalink / raw) To: Christian König, dri-devel; +Cc: intel-gfx, Huang Rui On Thu, 09 Mar 2023, Jani Nikula <jani.nikula@intel.com> wrote: > On Thu, 09 Mar 2023, Christian König <christian.koenig@amd.com> wrote: >> Am 09.03.23 um 13:37 schrieb Jani Nikula: >>> Make the struct ttm_device_funcs pointers const so the data can be placed in rodata. >>> >>> Cc: Christian Koenig <christian.koenig@amd.com> >>> Cc: Huang Rui <ray.huang@amd.com> >>> Signed-off-by: Jani Nikula <jani.nikula@intel.com> >> >> Good idea, Reviewed-by: Christian König <christian.koenig@amd.com> > > Thanks! > >> Should I push it to drm-misc-next or do you need it on some other branch? > > Go ahead, I'm not urgently depending on it. Christian, I guess this fell between the cracks? Can I just push it to drm-misc-next? BR, Jani. > > BR, > Jani. > >> >> Christian. >> >>> --- >>> drivers/gpu/drm/ttm/ttm_device.c | 2 +- >>> include/drm/ttm/ttm_device.h | 4 ++-- >>> 2 files changed, 3 insertions(+), 3 deletions(-) >>> >>> diff --git a/drivers/gpu/drm/ttm/ttm_device.c b/drivers/gpu/drm/ttm/ttm_device.c >>> index ae2f19dc9f81..a71bb1362de4 100644 >>> --- a/drivers/gpu/drm/ttm/ttm_device.c >>> +++ b/drivers/gpu/drm/ttm/ttm_device.c >>> @@ -190,7 +190,7 @@ EXPORT_SYMBOL(ttm_device_swapout); >>> * Returns: >>> * !0: Failure. >>> */ >>> -int ttm_device_init(struct ttm_device *bdev, struct ttm_device_funcs *funcs, >>> +int ttm_device_init(struct ttm_device *bdev, const struct ttm_device_funcs *funcs, >>> struct device *dev, struct address_space *mapping, >>> struct drm_vma_offset_manager *vma_manager, >>> bool use_dma_alloc, bool use_dma32) >>> diff --git a/include/drm/ttm/ttm_device.h b/include/drm/ttm/ttm_device.h >>> index 56e82ba2d046..c22f30535c84 100644 >>> --- a/include/drm/ttm/ttm_device.h >>> +++ b/include/drm/ttm/ttm_device.h >>> @@ -223,7 +223,7 @@ struct ttm_device { >>> * @funcs: Function table for the device. >>> * Constant after bo device init >>> */ >>> - struct ttm_device_funcs *funcs; >>> + const struct ttm_device_funcs *funcs; >>> >>> /** >>> * @sysman: Resource manager for the system domain. >>> @@ -287,7 +287,7 @@ static inline void ttm_set_driver_manager(struct ttm_device *bdev, int type, >>> bdev->man_drv[type] = manager; >>> } >>> >>> -int ttm_device_init(struct ttm_device *bdev, struct ttm_device_funcs *funcs, >>> +int ttm_device_init(struct ttm_device *bdev, const struct ttm_device_funcs *funcs, >>> struct device *dev, struct address_space *mapping, >>> struct drm_vma_offset_manager *vma_manager, >>> bool use_dma_alloc, bool use_dma32); >> -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/ttm: let struct ttm_device_funcs be placed in rodata 2023-05-16 8:05 ` Jani Nikula @ 2023-05-16 16:11 ` Alex Deucher 2023-05-17 9:26 ` Jani Nikula 0 siblings, 1 reply; 10+ messages in thread From: Alex Deucher @ 2023-05-16 16:11 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx, Huang Rui, Christian König, dri-devel On Tue, May 16, 2023 at 4:05 AM Jani Nikula <jani.nikula@intel.com> wrote: > > On Thu, 09 Mar 2023, Jani Nikula <jani.nikula@intel.com> wrote: > > On Thu, 09 Mar 2023, Christian König <christian.koenig@amd.com> wrote: > >> Am 09.03.23 um 13:37 schrieb Jani Nikula: > >>> Make the struct ttm_device_funcs pointers const so the data can be placed in rodata. > >>> > >>> Cc: Christian Koenig <christian.koenig@amd.com> > >>> Cc: Huang Rui <ray.huang@amd.com> > >>> Signed-off-by: Jani Nikula <jani.nikula@intel.com> > >> > >> Good idea, Reviewed-by: Christian König <christian.koenig@amd.com> > > > > Thanks! > > > >> Should I push it to drm-misc-next or do you need it on some other branch? > > > > Go ahead, I'm not urgently depending on it. > > Christian, I guess this fell between the cracks? Can I just push it to > drm-misc-next? Go ahead. Christian is out of the office this week. Alex > > BR, > Jani. > > > > > > BR, > > Jani. > > > >> > >> Christian. > >> > >>> --- > >>> drivers/gpu/drm/ttm/ttm_device.c | 2 +- > >>> include/drm/ttm/ttm_device.h | 4 ++-- > >>> 2 files changed, 3 insertions(+), 3 deletions(-) > >>> > >>> diff --git a/drivers/gpu/drm/ttm/ttm_device.c b/drivers/gpu/drm/ttm/ttm_device.c > >>> index ae2f19dc9f81..a71bb1362de4 100644 > >>> --- a/drivers/gpu/drm/ttm/ttm_device.c > >>> +++ b/drivers/gpu/drm/ttm/ttm_device.c > >>> @@ -190,7 +190,7 @@ EXPORT_SYMBOL(ttm_device_swapout); > >>> * Returns: > >>> * !0: Failure. > >>> */ > >>> -int ttm_device_init(struct ttm_device *bdev, struct ttm_device_funcs *funcs, > >>> +int ttm_device_init(struct ttm_device *bdev, const struct ttm_device_funcs *funcs, > >>> struct device *dev, struct address_space *mapping, > >>> struct drm_vma_offset_manager *vma_manager, > >>> bool use_dma_alloc, bool use_dma32) > >>> diff --git a/include/drm/ttm/ttm_device.h b/include/drm/ttm/ttm_device.h > >>> index 56e82ba2d046..c22f30535c84 100644 > >>> --- a/include/drm/ttm/ttm_device.h > >>> +++ b/include/drm/ttm/ttm_device.h > >>> @@ -223,7 +223,7 @@ struct ttm_device { > >>> * @funcs: Function table for the device. > >>> * Constant after bo device init > >>> */ > >>> - struct ttm_device_funcs *funcs; > >>> + const struct ttm_device_funcs *funcs; > >>> > >>> /** > >>> * @sysman: Resource manager for the system domain. > >>> @@ -287,7 +287,7 @@ static inline void ttm_set_driver_manager(struct ttm_device *bdev, int type, > >>> bdev->man_drv[type] = manager; > >>> } > >>> > >>> -int ttm_device_init(struct ttm_device *bdev, struct ttm_device_funcs *funcs, > >>> +int ttm_device_init(struct ttm_device *bdev, const struct ttm_device_funcs *funcs, > >>> struct device *dev, struct address_space *mapping, > >>> struct drm_vma_offset_manager *vma_manager, > >>> bool use_dma_alloc, bool use_dma32); > >> > > -- > Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/ttm: let struct ttm_device_funcs be placed in rodata 2023-05-16 16:11 ` Alex Deucher @ 2023-05-17 9:26 ` Jani Nikula 0 siblings, 0 replies; 10+ messages in thread From: Jani Nikula @ 2023-05-17 9:26 UTC (permalink / raw) To: Alex Deucher; +Cc: intel-gfx, Huang Rui, Christian König, dri-devel On Tue, 16 May 2023, Alex Deucher <alexdeucher@gmail.com> wrote: > On Tue, May 16, 2023 at 4:05 AM Jani Nikula <jani.nikula@intel.com> wrote: >> >> On Thu, 09 Mar 2023, Jani Nikula <jani.nikula@intel.com> wrote: >> > On Thu, 09 Mar 2023, Christian König <christian.koenig@amd.com> wrote: >> >> Am 09.03.23 um 13:37 schrieb Jani Nikula: >> >>> Make the struct ttm_device_funcs pointers const so the data can be placed in rodata. >> >>> >> >>> Cc: Christian Koenig <christian.koenig@amd.com> >> >>> Cc: Huang Rui <ray.huang@amd.com> >> >>> Signed-off-by: Jani Nikula <jani.nikula@intel.com> >> >> >> >> Good idea, Reviewed-by: Christian König <christian.koenig@amd.com> >> > >> > Thanks! >> > >> >> Should I push it to drm-misc-next or do you need it on some other branch? >> > >> > Go ahead, I'm not urgently depending on it. >> >> Christian, I guess this fell between the cracks? Can I just push it to >> drm-misc-next? > > Go ahead. Christian is out of the office this week. Thanks, pushed to drm-misc-next. BR, Jani. -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 10+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/ttm: let struct ttm_device_funcs be placed in rodata 2023-03-09 12:37 [Intel-gfx] [PATCH] drm/ttm: let struct ttm_device_funcs be placed in rodata Jani Nikula 2023-03-09 12:45 ` Christian König @ 2023-03-09 12:52 ` Patchwork 2023-03-09 13:15 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-03-09 12:52 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx == Series Details == Series: drm/ttm: let struct ttm_device_funcs be placed in rodata URL : https://patchwork.freedesktop.org/series/114907/ State : warning == Summary == Error: dim checkpatch failed dd44fba80630 drm/ttm: let struct ttm_device_funcs be placed in rodata -:6: WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapped commit description (prefer a maximum 75 chars per line) #6: Make the struct ttm_device_funcs pointers const so the data can be placed in rodata. total: 0 errors, 1 warnings, 0 checks, 24 lines checked ^ permalink raw reply [flat|nested] 10+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/ttm: let struct ttm_device_funcs be placed in rodata 2023-03-09 12:37 [Intel-gfx] [PATCH] drm/ttm: let struct ttm_device_funcs be placed in rodata Jani Nikula 2023-03-09 12:45 ` Christian König 2023-03-09 12:52 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork @ 2023-03-09 13:15 ` Patchwork 2023-03-11 2:42 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 2023-05-16 16:08 ` [Intel-gfx] [PATCH] " Thomas Zimmermann 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-03-09 13:15 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 5137 bytes --] == Series Details == Series: drm/ttm: let struct ttm_device_funcs be placed in rodata URL : https://patchwork.freedesktop.org/series/114907/ State : success == Summary == CI Bug Log - changes from CI_DRM_12829 -> Patchwork_114907v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/index.html Participating hosts (36 -> 35) ------------------------------ Additional (1): bat-atsm-1 Missing (2): bat-adln-1 fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_114907v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@eof: - bat-atsm-1: NOTRUN -> [SKIP][1] ([i915#2582]) +4 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/bat-atsm-1/igt@fbdev@eof.html * igt@gem_mmap@basic: - bat-atsm-1: NOTRUN -> [SKIP][2] ([i915#4083]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/bat-atsm-1/igt@gem_mmap@basic.html * igt@gem_sync@basic-each: - bat-atsm-1: NOTRUN -> [FAIL][3] ([i915#8062]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/bat-atsm-1/igt@gem_sync@basic-each.html * igt@gem_tiled_fence_blits@basic: - bat-atsm-1: NOTRUN -> [SKIP][4] ([i915#4077]) +2 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/bat-atsm-1/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-atsm-1: NOTRUN -> [SKIP][5] ([i915#4079]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/bat-atsm-1/igt@gem_tiled_pread_basic.html * igt@i915_hangman@error-state-basic: - bat-atsm-1: NOTRUN -> [ABORT][6] ([i915#8060]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/bat-atsm-1/igt@i915_hangman@error-state-basic.html * igt@i915_selftest@live@hangcheck: - fi-skl-guc: [PASS][7] -> [DMESG-WARN][8] ([i915#8073]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/fi-skl-guc/igt@i915_selftest@live@hangcheck.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/fi-skl-guc/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@requests: - bat-rpls-1: [PASS][9] -> [ABORT][10] ([i915#4983] / [i915#7694] / [i915#7911]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/bat-rpls-1/igt@i915_selftest@live@requests.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/bat-rpls-1/igt@i915_selftest@live@requests.html #### Possible fixes #### * igt@i915_selftest@live@gt_heartbeat: - fi-kbl-soraka: [DMESG-FAIL][11] ([i915#5334] / [i915#7872]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html #### Warnings #### * igt@i915_selftest@live@slpc: - bat-rpls-2: [DMESG-FAIL][13] ([i915#6367] / [i915#7913]) -> [DMESG-FAIL][14] ([i915#6367] / [i915#7913] / [i915#7996]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/bat-rpls-2/igt@i915_selftest@live@slpc.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/bat-rpls-2/igt@i915_selftest@live@slpc.html [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#7694]: https://gitlab.freedesktop.org/drm/intel/issues/7694 [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7996]: https://gitlab.freedesktop.org/drm/intel/issues/7996 [i915#8060]: https://gitlab.freedesktop.org/drm/intel/issues/8060 [i915#8062]: https://gitlab.freedesktop.org/drm/intel/issues/8062 [i915#8073]: https://gitlab.freedesktop.org/drm/intel/issues/8073 Build changes ------------- * Linux: CI_DRM_12829 -> Patchwork_114907v1 CI-20190529: 20190529 CI_DRM_12829: d947159409deea43f404f35cc758740c714c8888 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7185: 6707461ddb214bb8a75c5fcf2747941c9d9b11ae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_114907v1: d947159409deea43f404f35cc758740c714c8888 @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 48a3b18ad475 drm/ttm: let struct ttm_device_funcs be placed in rodata == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/index.html [-- Attachment #2: Type: text/html, Size: 6101 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for drm/ttm: let struct ttm_device_funcs be placed in rodata 2023-03-09 12:37 [Intel-gfx] [PATCH] drm/ttm: let struct ttm_device_funcs be placed in rodata Jani Nikula ` (2 preceding siblings ...) 2023-03-09 13:15 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork @ 2023-03-11 2:42 ` Patchwork 2023-05-16 16:08 ` [Intel-gfx] [PATCH] " Thomas Zimmermann 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-03-11 2:42 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 41060 bytes --] == Series Details == Series: drm/ttm: let struct ttm_device_funcs be placed in rodata URL : https://patchwork.freedesktop.org/series/114907/ State : success == Summary == CI Bug Log - changes from CI_DRM_12829_full -> Patchwork_114907v1_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 10) ------------------------------ Additional (2): shard-tglu-9 shard-tglu-10 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_114907v1_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_pm_rpm@cursor: - {shard-tglu}: [SKIP][1] ([i915#1849]) -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-tglu-6/igt@i915_pm_rpm@cursor.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-8/igt@i915_pm_rpm@cursor.html Known issues ------------ Here are the changes found in Patchwork_114907v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - shard-tglu-10: NOTRUN -> [SKIP][3] ([i915#7456]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@debugfs_test@basic-hwmon.html * igt@fbdev@unaligned-read: - shard-tglu-9: NOTRUN -> [SKIP][4] ([i915#2582]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@fbdev@unaligned-read.html * igt@feature_discovery@display-3x: - shard-tglu-10: NOTRUN -> [SKIP][5] ([i915#1839]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@feature_discovery@display-3x.html * igt@gem_ccs@suspend-resume: - shard-tglu-9: NOTRUN -> [SKIP][6] ([i915#5325]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu-10: NOTRUN -> [SKIP][7] ([i915#7697]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_param@set-priority-not-supported: - shard-tglu-9: NOTRUN -> [SKIP][8] ([fdo#109314]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu-10: NOTRUN -> [SKIP][9] ([i915#280]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-tglu-10: NOTRUN -> [SKIP][10] ([i915#6334]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture-recoverable: - shard-tglu-9: NOTRUN -> [SKIP][11] ([i915#6344]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-glk: [PASS][12] -> [FAIL][13] ([i915#2842]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-glk5/igt@gem_exec_fair@basic-none-rrul@rcs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-glk1/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_params@rsvd2-dirt: - shard-tglu-9: NOTRUN -> [SKIP][14] ([fdo#109283]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_lmem_swapping@heavy-random: - shard-apl: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#4613]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-apl1/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-tglu-9: NOTRUN -> [SKIP][16] ([i915#4613]) +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu-10: NOTRUN -> [SKIP][17] ([i915#4613]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-tglu-10: NOTRUN -> [SKIP][18] ([i915#4270]) +1 similar issue [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_softpin@evict-snoop-interruptible: - shard-tglu-10: NOTRUN -> [SKIP][19] ([fdo#109312]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu-10: NOTRUN -> [SKIP][20] ([i915#3297]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-tglu-9: NOTRUN -> [SKIP][21] ([i915#3297]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@secure-batches: - shard-tglu-10: NOTRUN -> [SKIP][22] ([i915#2527] / [i915#2856]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@valid-registers: - shard-tglu-9: NOTRUN -> [SKIP][23] ([i915#2527] / [i915#2856]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@gen9_exec_parse@valid-registers.html * igt@i915_pm_backlight@bad-brightness: - shard-tglu-10: NOTRUN -> [SKIP][24] ([i915#7561]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@i915_pm_backlight@bad-brightness.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu-10: NOTRUN -> [SKIP][25] ([i915#4281]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-tglu-9: NOTRUN -> [SKIP][26] ([fdo#109289]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-tglu-9: NOTRUN -> [SKIP][27] ([fdo#111644] / [i915#1397]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_query@hwconfig_table: - shard-tglu-10: NOTRUN -> [SKIP][28] ([i915#6245]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@i915_query@hwconfig_table.html * igt@kms_atomic_transition@modeset-transition: - shard-tglu-9: NOTRUN -> [SKIP][29] ([i915#1845]) +7 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@kms_atomic_transition@modeset-transition.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-tglu-10: NOTRUN -> [SKIP][30] ([i915#5286]) +2 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-tglu-10: NOTRUN -> [SKIP][31] ([fdo#111614]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-16bpp-rotate-0: - shard-tglu-9: NOTRUN -> [SKIP][32] ([i915#1845] / [i915#7651]) +20 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-tglu-9: NOTRUN -> [SKIP][33] ([fdo#111615] / [i915#1845] / [i915#7651]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-tglu-10: NOTRUN -> [SKIP][34] ([fdo#111615]) +3 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][35] ([fdo#109271]) +34 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-apl1/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: - shard-tglu-10: NOTRUN -> [SKIP][36] ([i915#6095]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_mc_ccs: - shard-tglu-10: NOTRUN -> [SKIP][37] ([i915#3689] / [i915#6095]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs: - shard-tglu-10: NOTRUN -> [SKIP][38] ([fdo#111615] / [i915#3689]) +2 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-tglu-10: NOTRUN -> [SKIP][39] ([i915#3689] / [i915#3886]) +3 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#3886]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-apl1/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_mc_ccs: - shard-tglu-10: NOTRUN -> [SKIP][41] ([i915#3689]) +2 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_mc_ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu-10: NOTRUN -> [SKIP][42] ([i915#3742]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-tglu-9: NOTRUN -> [SKIP][43] ([i915#7828]) +2 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-tglu-10: NOTRUN -> [SKIP][44] ([i915#7828]) +3 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_color@degamma: - shard-tglu-9: NOTRUN -> [SKIP][45] ([i915#3546]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@kms_color@degamma.html * igt@kms_content_protection@content_type_change: - shard-tglu-10: NOTRUN -> [SKIP][46] ([i915#6944] / [i915#7116] / [i915#7118]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@kms_content_protection@content_type_change.html * igt@kms_content_protection@uevent@pipe-a-dp-1: - shard-apl: NOTRUN -> [FAIL][47] ([i915#1339]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-apl1/igt@kms_content_protection@uevent@pipe-a-dp-1.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-10: NOTRUN -> [SKIP][48] ([i915#3359]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-tglu-10: NOTRUN -> [SKIP][49] ([fdo#109274]) +3 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [PASS][50] -> [FAIL][51] ([i915#2346]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-tglu-9: NOTRUN -> [SKIP][52] ([fdo#109274] / [i915#3637]) +2 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-tglu-10: NOTRUN -> [SKIP][53] ([fdo#109274] / [i915#3637]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-suspend@a-dp1: - shard-apl: [PASS][54] -> [ABORT][55] ([i915#180]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-apl6/igt@kms_flip@flip-vs-suspend@a-dp1.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-apl7/igt@kms_flip@flip-vs-suspend@a-dp1.html * igt@kms_flip@modeset-vs-vblank-race-interruptible: - shard-tglu-9: NOTRUN -> [SKIP][56] ([i915#3637]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@kms_flip@modeset-vs-vblank-race-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu-9: NOTRUN -> [SKIP][57] ([i915#3555]) +6 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu-10: NOTRUN -> [SKIP][58] ([i915#2587] / [i915#2672]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-tglu-9: NOTRUN -> [SKIP][59] ([fdo#109285]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-tglu-10: NOTRUN -> [SKIP][60] ([fdo#109280]) +15 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-tglu-9: NOTRUN -> [SKIP][61] ([i915#1849]) +18 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt: - shard-tglu-10: NOTRUN -> [SKIP][62] ([fdo#110189]) +15 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu-10: NOTRUN -> [SKIP][63] ([i915#3555]) +2 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu-10: NOTRUN -> [SKIP][64] ([i915#5235]) +3 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-tglu-10: NOTRUN -> [SKIP][65] ([i915#658]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-tglu-10: NOTRUN -> [SKIP][66] ([fdo#111068] / [i915#658]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu-9: NOTRUN -> [SKIP][67] ([fdo#109642] / [fdo#111068] / [i915#658]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@sprite_render: - shard-tglu-9: NOTRUN -> [SKIP][68] ([fdo#110189]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@kms_psr@sprite_render.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-tglu-10: NOTRUN -> [SKIP][69] ([fdo#111615] / [i915#5289]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_universal_plane@disable-primary-vs-flip-pipe-a: - shard-tglu-9: NOTRUN -> [SKIP][70] ([fdo#109274]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@kms_universal_plane@disable-primary-vs-flip-pipe-a.html * igt@kms_vblank@pipe-d-wait-idle: - shard-apl: NOTRUN -> [SKIP][71] ([fdo#109271] / [i915#533]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-apl1/igt@kms_vblank@pipe-d-wait-idle.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-tglu-10: NOTRUN -> [SKIP][72] ([fdo#109289]) +1 similar issue [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@prime_vgem@fence-flip-hang: - shard-tglu-9: NOTRUN -> [SKIP][73] ([fdo#109295]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@prime_vgem@fence-flip-hang.html * igt@v3d/v3d_get_param@base-params: - shard-tglu-10: NOTRUN -> [SKIP][74] ([fdo#109315] / [i915#2575]) +2 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@v3d/v3d_get_param@base-params.html * igt@v3d/v3d_perfmon@get-values-invalid-pad: - shard-tglu-9: NOTRUN -> [SKIP][75] ([fdo#109315] / [i915#2575]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@v3d/v3d_perfmon@get-values-invalid-pad.html * igt@vc4/vc4_purgeable_bo@mark-purgeable: - shard-tglu-9: NOTRUN -> [SKIP][76] ([i915#2575]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-9/igt@vc4/vc4_purgeable_bo@mark-purgeable.html * igt@vc4/vc4_tiling@set-bad-flags: - shard-tglu-10: NOTRUN -> [SKIP][77] ([i915#2575]) +3 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-10/igt@vc4/vc4_tiling@set-bad-flags.html #### Possible fixes #### * igt@drm_fdinfo@virtual-idle: - {shard-rkl}: [FAIL][78] ([i915#7742]) -> [PASS][79] +1 similar issue [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-rkl-4/igt@drm_fdinfo@virtual-idle.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html * igt@fbdev@read: - {shard-rkl}: [SKIP][80] ([i915#2582]) -> [PASS][81] [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-rkl-1/igt@fbdev@read.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-rkl-6/igt@fbdev@read.html * igt@gem_ctx_exec@basic-nohangcheck: - {shard-rkl}: [FAIL][82] ([i915#6268]) -> [PASS][83] [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html - {shard-tglu}: [FAIL][84] ([i915#6268]) -> [PASS][85] [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-tglu-6/igt@gem_ctx_exec@basic-nohangcheck.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@in-flight-suspend: - {shard-rkl}: [FAIL][86] ([fdo#103375]) -> [PASS][87] +1 similar issue [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-rkl-3/igt@gem_eio@in-flight-suspend.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-rkl-6/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@suspend: - {shard-rkl}: [FAIL][88] ([i915#5115] / [i915#7052]) -> [PASS][89] [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-rkl-3/igt@gem_eio@suspend.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-rkl-1/igt@gem_eio@suspend.html * igt@gem_exec_balancer@fairslice: - {shard-rkl}: [SKIP][90] ([i915#6259]) -> [PASS][91] [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-rkl-5/igt@gem_exec_balancer@fairslice.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-rkl-1/igt@gem_exec_balancer@fairslice.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][92] ([i915#2842]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none-vip@rcs0: - {shard-rkl}: [FAIL][94] ([i915#2842]) -> [PASS][95] +3 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-rkl-1/igt@gem_exec_fair@basic-none-vip@rcs0.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-rkl-5/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - {shard-rkl}: [SKIP][96] ([i915#3281]) -> [PASS][97] +12 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_lmem_swapping@smem-oom@lmem0: - {shard-dg1}: [DMESG-WARN][98] ([i915#4936]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_userptr_blits@forbidden-operations: - {shard-rkl}: [SKIP][100] ([i915#3282]) -> [PASS][101] +4 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-rkl-4/igt@gem_userptr_blits@forbidden-operations.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-rkl-5/igt@gem_userptr_blits@forbidden-operations.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [ABORT][102] ([i915#5566]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-apl2/igt@gen9_exec_parse@allowed-single.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-apl2/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@valid-registers: - {shard-rkl}: [SKIP][104] ([i915#2527]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-rkl-1/igt@gen9_exec_parse@valid-registers.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-rkl-5/igt@gen9_exec_parse@valid-registers.html * igt@i915_pm_dc@dc6-dpms: - {shard-rkl}: [SKIP][106] ([i915#3361]) -> [PASS][107] [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-rkl-5/igt@i915_pm_dc@dc6-dpms.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-rkl-3/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc6-psr: - {shard-rkl}: [SKIP][108] ([i915#658]) -> [PASS][109] +1 similar issue [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-rkl-3/igt@i915_pm_dc@dc6-psr.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-rkl-6/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_dc@dc9-dpms: - {shard-rkl}: [SKIP][110] ([i915#4281]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-rkl-3/igt@i915_pm_dc@dc9-dpms.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-rkl-6/igt@i915_pm_dc@dc9-dpms.html * igt@i915_suspend@forcewake: - shard-apl: [ABORT][112] ([i915#180]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-apl4/igt@i915_suspend@forcewake.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-apl1/igt@i915_suspend@forcewake.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][114] ([i915#2346]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size: - {shard-tglu}: [SKIP][116] ([i915#1845]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-tglu-6/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-1/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite: - {shard-tglu}: [SKIP][118] ([i915#1849]) -> [PASS][119] +7 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - {shard-rkl}: [SKIP][120] ([i915#1849] / [i915#4098]) -> [PASS][121] +25 similar issues [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes: - {shard-rkl}: [SKIP][122] ([i915#1849]) -> [PASS][123] +4 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-rkl-1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html * igt@kms_psr@primary_render: - {shard-rkl}: [SKIP][124] ([i915#1072]) -> [PASS][125] +3 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-rkl-1/igt@kms_psr@primary_render.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-rkl-6/igt@kms_psr@primary_render.html * igt@kms_universal_plane@disable-primary-vs-flip-pipe-b: - {shard-tglu}: [SKIP][126] ([fdo#109274]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-tglu-6/igt@kms_universal_plane@disable-primary-vs-flip-pipe-b.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-8/igt@kms_universal_plane@disable-primary-vs-flip-pipe-b.html * igt@kms_vblank@invalid: - {shard-tglu}: [SKIP][128] ([i915#1845] / [i915#7651]) -> [PASS][129] +11 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-tglu-6/igt@kms_vblank@invalid.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-tglu-8/igt@kms_vblank@invalid.html * igt@kms_vblank@pipe-b-ts-continuation-idle: - {shard-rkl}: [SKIP][130] ([i915#1845] / [i915#4098]) -> [PASS][131] +40 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-rkl-3/igt@kms_vblank@pipe-b-ts-continuation-idle.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-rkl-6/igt@kms_vblank@pipe-b-ts-continuation-idle.html * igt@prime_vgem@basic-fence-read: - {shard-rkl}: [SKIP][132] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][133] +1 similar issue [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-rkl-4/igt@prime_vgem@basic-fence-read.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-rkl-5/igt@prime_vgem@basic-fence-read.html * igt@testdisplay: - {shard-rkl}: [SKIP][134] ([i915#4098]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12829/shard-rkl-3/igt@testdisplay.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114907v1/shard-rkl-6/igt@testdisplay.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [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#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [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 [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#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [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#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [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#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#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [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#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [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#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#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#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [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#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [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#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5115]: https://gitlab.freedesktop.org/drm/intel/issues/5115 [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#5431]: https://gitlab.freedesktop.org/drm/intel/issues/5431 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [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#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [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#7052]: https://gitlab.freedesktop.org/drm/intel/issues/7052 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128 [i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294 [i915#7330]: https://gitlab.freedesktop.org/drm/intel/issues/7330 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [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#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [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#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152 [i915#8154]: https://gitlab.freedesktop.org/drm/intel/issues/8154 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8273]: https://gitlab.freedesktop.org/drm/intel/issues/8273 Build changes ------------- * Linux: CI_DRM_12829 -> Patchwork_114907v1 CI-20190529: 20190529 CI_DRM_12829: d947159409deea43f404f35cc758740c714c8888 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7185: 6707461ddb214bb8a75c5fcf2747941c9d9b11ae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_114907v1: d947159409deea43f404f35cc758740c714c8888 @ 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_114907v1/index.html [-- Attachment #2: Type: text/html, Size: 43338 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/ttm: let struct ttm_device_funcs be placed in rodata 2023-03-09 12:37 [Intel-gfx] [PATCH] drm/ttm: let struct ttm_device_funcs be placed in rodata Jani Nikula ` (3 preceding siblings ...) 2023-03-11 2:42 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork @ 2023-05-16 16:08 ` Thomas Zimmermann 4 siblings, 0 replies; 10+ messages in thread From: Thomas Zimmermann @ 2023-05-16 16:08 UTC (permalink / raw) To: Jani Nikula, dri-devel; +Cc: intel-gfx, Huang Rui, Christian Koenig [-- Attachment #1.1: Type: text/plain, Size: 2342 bytes --] Am 09.03.23 um 13:37 schrieb Jani Nikula: > Make the struct ttm_device_funcs pointers const so the data can be placed in rodata. > > Cc: Christian Koenig <christian.koenig@amd.com> > Cc: Huang Rui <ray.huang@amd.com> > Signed-off-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de> > --- > drivers/gpu/drm/ttm/ttm_device.c | 2 +- > include/drm/ttm/ttm_device.h | 4 ++-- > 2 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/ttm/ttm_device.c b/drivers/gpu/drm/ttm/ttm_device.c > index ae2f19dc9f81..a71bb1362de4 100644 > --- a/drivers/gpu/drm/ttm/ttm_device.c > +++ b/drivers/gpu/drm/ttm/ttm_device.c > @@ -190,7 +190,7 @@ EXPORT_SYMBOL(ttm_device_swapout); > * Returns: > * !0: Failure. > */ > -int ttm_device_init(struct ttm_device *bdev, struct ttm_device_funcs *funcs, > +int ttm_device_init(struct ttm_device *bdev, const struct ttm_device_funcs *funcs, > struct device *dev, struct address_space *mapping, > struct drm_vma_offset_manager *vma_manager, > bool use_dma_alloc, bool use_dma32) > diff --git a/include/drm/ttm/ttm_device.h b/include/drm/ttm/ttm_device.h > index 56e82ba2d046..c22f30535c84 100644 > --- a/include/drm/ttm/ttm_device.h > +++ b/include/drm/ttm/ttm_device.h > @@ -223,7 +223,7 @@ struct ttm_device { > * @funcs: Function table for the device. > * Constant after bo device init > */ > - struct ttm_device_funcs *funcs; > + const struct ttm_device_funcs *funcs; > > /** > * @sysman: Resource manager for the system domain. > @@ -287,7 +287,7 @@ static inline void ttm_set_driver_manager(struct ttm_device *bdev, int type, > bdev->man_drv[type] = manager; > } > > -int ttm_device_init(struct ttm_device *bdev, struct ttm_device_funcs *funcs, > +int ttm_device_init(struct ttm_device *bdev, const struct ttm_device_funcs *funcs, > struct device *dev, struct address_space *mapping, > struct drm_vma_offset_manager *vma_manager, > bool use_dma_alloc, bool use_dma32); -- Thomas Zimmermann Graphics Driver Developer SUSE Software Solutions Germany GmbH Frankenstrasse 146, 90461 Nuernberg, Germany GF: Ivo Totev, Andrew Myers, Andrew McDonald, Boudien Moerman HRB 36809 (AG Nuernberg) [-- Attachment #2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 840 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2023-05-17 9:27 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-03-09 12:37 [Intel-gfx] [PATCH] drm/ttm: let struct ttm_device_funcs be placed in rodata Jani Nikula 2023-03-09 12:45 ` Christian König 2023-03-09 12:49 ` Jani Nikula 2023-05-16 8:05 ` Jani Nikula 2023-05-16 16:11 ` Alex Deucher 2023-05-17 9:26 ` Jani Nikula 2023-03-09 12:52 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork 2023-03-09 13:15 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2023-03-11 2:42 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 2023-05-16 16:08 ` [Intel-gfx] [PATCH] " Thomas Zimmermann
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).