All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1] drm/i915: GTT offset is cut by 32b-flag.
@ 2018-11-02 15:47 Sergii Romantsov
  2018-11-02 15:48 ` Sergii Romantsov
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Sergii Romantsov @ 2018-11-02 15:47 UTC (permalink / raw)
  To: intel-gfx; +Cc: Kenneth Graunke

Operating with gtt-addresses has to be done with 64b variables.

CC: Kenneth Graunke <kenneth@whitecape.org>
CC: Chris Wilson <chris@chris-wilson.co.uk>
Fixes: a363bb2cd0e2 (i965: Allocate VMA in userspace for full-PPGTT systems.)
Fixes: c7c6e46f913b (drm/i915: Convert execbuf to use struct-of-array packing for critical fields)
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=108619
Signed-off-by: Sergii Romantsov <sergii.romantsov@globallogic.com>
---
 drivers/gpu/drm/i915/i915_gem_execbuffer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/i915_gem_execbuffer.c
index 3f0c612..1973b79 100644
--- a/drivers/gpu/drm/i915/i915_gem_execbuffer.c
+++ b/drivers/gpu/drm/i915/i915_gem_execbuffer.c
@@ -611,7 +611,7 @@ static int eb_reserve_vma(const struct i915_execbuffer *eb,
 
 	if (exec_flags & EXEC_OBJECT_PINNED) {
 		pin_flags |= entry->offset | PIN_OFFSET_FIXED;
-		pin_flags &= ~PIN_NONBLOCK; /* force overlapping checks */
+		pin_flags &= ~(u64)PIN_NONBLOCK; /* force overlapping checks */
 	} else if (exec_flags & __EXEC_OBJECT_NEEDS_BIAS) {
 		pin_flags |= BATCH_OFFSET_BIAS | PIN_OFFSET_BIAS;
 	}
-- 
2.7.4

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH v1] drm/i915: GTT offset is cut by 32b-flag.
  2018-11-02 15:47 [PATCH v1] drm/i915: GTT offset is cut by 32b-flag Sergii Romantsov
@ 2018-11-02 15:48 ` Sergii Romantsov
  2018-11-02 16:32 ` Lionel Landwerlin
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Sergii Romantsov @ 2018-11-02 15:48 UTC (permalink / raw)
  To: Sergii Romantsov; +Cc: intel-gfx, Kenneth Graunke


[-- Attachment #1.1: Type: text/plain, Size: 1999 bytes --]

Seems extending of any PIN_XXX flags to 64b has no sense for all other
cases.
But also in the code there is mismatching of 64 and 32b flags/data usage
(32b flags may be put to 64b arguments).
Seems that shouldn't cause any issues anymore, but if you think that it
should be fixed - please, let me know - would like to complete that case.

On Fri, Nov 2, 2018 at 5:47 PM Sergii Romantsov <sergii.romantsov@gmail.com>
wrote:

> Operating with gtt-addresses has to be done with 64b variables.
>
> CC: Kenneth Graunke <kenneth@whitecape.org>
> CC: Chris Wilson <chris@chris-wilson.co.uk>
> Fixes: a363bb2cd0e2 (i965: Allocate VMA in userspace for full-PPGTT
> systems.)
> Fixes: c7c6e46f913b (drm/i915: Convert execbuf to use struct-of-array
> packing for critical fields)
> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=108619
> Signed-off-by: Sergii Romantsov <sergii.romantsov@globallogic.com>
> ---
>  drivers/gpu/drm/i915/i915_gem_execbuffer.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_gem_execbuffer.c
> b/drivers/gpu/drm/i915/i915_gem_execbuffer.c
> index 3f0c612..1973b79 100644
> --- a/drivers/gpu/drm/i915/i915_gem_execbuffer.c
> +++ b/drivers/gpu/drm/i915/i915_gem_execbuffer.c
> @@ -611,7 +611,7 @@ static int eb_reserve_vma(const struct i915_execbuffer
> *eb,
>
>         if (exec_flags & EXEC_OBJECT_PINNED) {
>                 pin_flags |= entry->offset | PIN_OFFSET_FIXED;
> -               pin_flags &= ~PIN_NONBLOCK; /* force overlapping checks */
> +               pin_flags &= ~(u64)PIN_NONBLOCK; /* force overlapping
> checks */
>         } else if (exec_flags & __EXEC_OBJECT_NEEDS_BIAS) {
>                 pin_flags |= BATCH_OFFSET_BIAS | PIN_OFFSET_BIAS;
>         }
> --
> 2.7.4
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
>


-- 
Sergii Romantsov
GlobalLogic Inc.
www.globallogic.com

[-- Attachment #1.2: Type: text/html, Size: 3500 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v1] drm/i915: GTT offset is cut by 32b-flag.
  2018-11-02 15:47 [PATCH v1] drm/i915: GTT offset is cut by 32b-flag Sergii Romantsov
  2018-11-02 15:48 ` Sergii Romantsov
@ 2018-11-02 16:32 ` Lionel Landwerlin
  2018-11-02 16:35   ` Chris Wilson
  2018-11-02 17:05   ` Michal Wajdeczko
  2018-11-02 17:08 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 2 replies; 8+ messages in thread
From: Lionel Landwerlin @ 2018-11-02 16:32 UTC (permalink / raw)
  To: Sergii Romantsov, intel-gfx; +Cc: Kenneth Graunke

On 02/11/2018 15:47, Sergii Romantsov wrote:
> Operating with gtt-addresses has to be done with 64b variables.
>
> CC: Kenneth Graunke <kenneth@whitecape.org>
> CC: Chris Wilson <chris@chris-wilson.co.uk>
> Fixes: a363bb2cd0e2 (i965: Allocate VMA in userspace for full-PPGTT systems.)
> Fixes: c7c6e46f913b (drm/i915: Convert execbuf to use struct-of-array packing for critical fields)
> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=108619
> Signed-off-by: Sergii Romantsov <sergii.romantsov@globallogic.com>


Thanks a lot for finding this. Looks good to me. I'll let Chris decide 
whether to turn all the bit masks into 64bits.


Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>


> ---
>   drivers/gpu/drm/i915/i915_gem_execbuffer.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/i915_gem_execbuffer.c
> index 3f0c612..1973b79 100644
> --- a/drivers/gpu/drm/i915/i915_gem_execbuffer.c
> +++ b/drivers/gpu/drm/i915/i915_gem_execbuffer.c
> @@ -611,7 +611,7 @@ static int eb_reserve_vma(const struct i915_execbuffer *eb,
>   
>   	if (exec_flags & EXEC_OBJECT_PINNED) {
>   		pin_flags |= entry->offset | PIN_OFFSET_FIXED;
> -		pin_flags &= ~PIN_NONBLOCK; /* force overlapping checks */
> +		pin_flags &= ~(u64)PIN_NONBLOCK; /* force overlapping checks */
>   	} else if (exec_flags & __EXEC_OBJECT_NEEDS_BIAS) {
>   		pin_flags |= BATCH_OFFSET_BIAS | PIN_OFFSET_BIAS;
>   	}


_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v1] drm/i915: GTT offset is cut by 32b-flag.
  2018-11-02 16:32 ` Lionel Landwerlin
@ 2018-11-02 16:35   ` Chris Wilson
  2018-11-02 17:05   ` Michal Wajdeczko
  1 sibling, 0 replies; 8+ messages in thread
From: Chris Wilson @ 2018-11-02 16:35 UTC (permalink / raw)
  To: Lionel Landwerlin, Sergii Romantsov, intel-gfx; +Cc: Kenneth Graunke

Quoting Lionel Landwerlin (2018-11-02 16:32:06)
> On 02/11/2018 15:47, Sergii Romantsov wrote:
> > Operating with gtt-addresses has to be done with 64b variables.
> >
> > CC: Kenneth Graunke <kenneth@whitecape.org>
> > CC: Chris Wilson <chris@chris-wilson.co.uk>
> > Fixes: a363bb2cd0e2 (i965: Allocate VMA in userspace for full-PPGTT systems.)
> > Fixes: c7c6e46f913b (drm/i915: Convert execbuf to use struct-of-array packing for critical fields)
> > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=108619
> > Signed-off-by: Sergii Romantsov <sergii.romantsov@globallogic.com>
> 
> 
> Thanks a lot for finding this. Looks good to me. I'll let Chris decide 
> whether to turn all the bit masks into 64bits.

Already did.
-Chris
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v1] drm/i915: GTT offset is cut by 32b-flag.
  2018-11-02 16:32 ` Lionel Landwerlin
  2018-11-02 16:35   ` Chris Wilson
@ 2018-11-02 17:05   ` Michal Wajdeczko
  1 sibling, 0 replies; 8+ messages in thread
From: Michal Wajdeczko @ 2018-11-02 17:05 UTC (permalink / raw)
  To: Sergii Romantsov, intel-gfx, Lionel Landwerlin; +Cc: Kenneth Graunke

On Fri, 02 Nov 2018 17:32:06 +0100, Lionel Landwerlin  
<lionel.g.landwerlin@intel.com> wrote:

> On 02/11/2018 15:47, Sergii Romantsov wrote:
>> Operating with gtt-addresses has to be done with 64b variables.
>>
>> CC: Kenneth Graunke <kenneth@whitecape.org>
>> CC: Chris Wilson <chris@chris-wilson.co.uk>
>> Fixes: a363bb2cd0e2 (i965: Allocate VMA in userspace for full-PPGTT  
>> systems.)
>> Fixes: c7c6e46f913b (drm/i915: Convert execbuf to use struct-of-array  
>> packing for critical fields)
>> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=108619
>> Signed-off-by: Sergii Romantsov <sergii.romantsov@globallogic.com>
>
>
> Thanks a lot for finding this. Looks good to me. I'll let Chris decide  
> whether to turn all the bit masks into 64bits.

+1 for using BIT_ULL for all PIN_XXX definitions (plus some fixups in code)

Michal

>
>
> Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
>
>
>> ---
>>   drivers/gpu/drm/i915/i915_gem_execbuffer.c | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/i915/i915_gem_execbuffer.c  
>> b/drivers/gpu/drm/i915/i915_gem_execbuffer.c
>> index 3f0c612..1973b79 100644
>> --- a/drivers/gpu/drm/i915/i915_gem_execbuffer.c
>> +++ b/drivers/gpu/drm/i915/i915_gem_execbuffer.c
>> @@ -611,7 +611,7 @@ static int eb_reserve_vma(const struct  
>> i915_execbuffer *eb,
>>     	if (exec_flags & EXEC_OBJECT_PINNED) {
>>   		pin_flags |= entry->offset | PIN_OFFSET_FIXED;
>> -		pin_flags &= ~PIN_NONBLOCK; /* force overlapping checks */
>> +		pin_flags &= ~(u64)PIN_NONBLOCK; /* force overlapping checks */
>>   	} else if (exec_flags & __EXEC_OBJECT_NEEDS_BIAS) {
>>   		pin_flags |= BATCH_OFFSET_BIAS | PIN_OFFSET_BIAS;
>>   	}
>
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* ✗ Fi.CI.CHECKPATCH: warning for drm/i915: GTT offset is cut by 32b-flag.
  2018-11-02 15:47 [PATCH v1] drm/i915: GTT offset is cut by 32b-flag Sergii Romantsov
  2018-11-02 15:48 ` Sergii Romantsov
  2018-11-02 16:32 ` Lionel Landwerlin
@ 2018-11-02 17:08 ` Patchwork
  2018-11-02 17:30 ` ✓ Fi.CI.BAT: success " Patchwork
  2018-11-02 19:43 ` ✓ Fi.CI.IGT: " Patchwork
  4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2018-11-02 17:08 UTC (permalink / raw)
  To: Sergii Romantsov; +Cc: intel-gfx

== Series Details ==

Series: drm/i915: GTT offset is cut by 32b-flag.
URL   : https://patchwork.freedesktop.org/series/51955/
State : warning

== Summary ==

$ dim checkpatch origin/drm-tip
33a09ca99519 drm/i915: GTT offset is cut by 32b-flag.
-:28: WARNING:NO_AUTHOR_SIGN_OFF: Missing Signed-off-by: line by nominal patch author 'Sergii Romantsov <sergii.romantsov@gmail.com>'

total: 0 errors, 1 warnings, 0 checks, 8 lines checked

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* ✓ Fi.CI.BAT: success for drm/i915: GTT offset is cut by 32b-flag.
  2018-11-02 15:47 [PATCH v1] drm/i915: GTT offset is cut by 32b-flag Sergii Romantsov
                   ` (2 preceding siblings ...)
  2018-11-02 17:08 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
@ 2018-11-02 17:30 ` Patchwork
  2018-11-02 19:43 ` ✓ Fi.CI.IGT: " Patchwork
  4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2018-11-02 17:30 UTC (permalink / raw)
  To: Sergii Romantsov; +Cc: intel-gfx

== Series Details ==

Series: drm/i915: GTT offset is cut by 32b-flag.
URL   : https://patchwork.freedesktop.org/series/51955/
State : success

== Summary ==

= CI Bug Log - changes from CI_DRM_5080 -> Patchwork_10712 =

== Summary - SUCCESS ==

  No regressions found.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/51955/revisions/1/mbox/

== Known issues ==

  Here are the changes found in Patchwork_10712 that come from known issues:

  === IGT changes ===

    ==== Issues hit ====

    igt@drv_selftest@live_execlists:
      fi-apl-guc:         PASS -> DMESG-WARN (fdo#108622)

    igt@gem_exec_suspend@basic-s4-devices:
      fi-blb-e6850:       PASS -> INCOMPLETE (fdo#107718)

    igt@kms_pipe_crc_basic@read-crc-pipe-a:
      fi-byt-clapper:     PASS -> FAIL (fdo#107362)

    igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
      fi-icl-u:           NOTRUN -> INCOMPLETE (fdo#107713)

    
    ==== Possible fixes ====

    igt@gem_ctx_switch@basic-default:
      fi-icl-u:           INCOMPLETE (fdo#108315, fdo#108535) -> PASS

    igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a:
      fi-byt-clapper:     FAIL (fdo#107362) -> PASS

    
  fdo#107362 https://bugs.freedesktop.org/show_bug.cgi?id=107362
  fdo#107713 https://bugs.freedesktop.org/show_bug.cgi?id=107713
  fdo#107718 https://bugs.freedesktop.org/show_bug.cgi?id=107718
  fdo#108315 https://bugs.freedesktop.org/show_bug.cgi?id=108315
  fdo#108535 https://bugs.freedesktop.org/show_bug.cgi?id=108535
  fdo#108622 https://bugs.freedesktop.org/show_bug.cgi?id=108622


== Participating hosts (51 -> 45) ==

  Missing    (6): fi-ilk-m540 fi-hsw-4200u fi-byt-j1900 fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 


== Build changes ==

    * Linux: CI_DRM_5080 -> Patchwork_10712

  CI_DRM_5080: b8df8e90cb6f888bfa6df630cda858473e3bd2f8 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_4705: 7983e19ed62ec8db1884f55e07e458a62cc51e37 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_10712: 33a09ca99519a223cd8571827380905944f9352a @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

33a09ca99519 drm/i915: GTT offset is cut by 32b-flag.

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_10712/issues.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* ✓ Fi.CI.IGT: success for drm/i915: GTT offset is cut by 32b-flag.
  2018-11-02 15:47 [PATCH v1] drm/i915: GTT offset is cut by 32b-flag Sergii Romantsov
                   ` (3 preceding siblings ...)
  2018-11-02 17:30 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2018-11-02 19:43 ` Patchwork
  4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2018-11-02 19:43 UTC (permalink / raw)
  To: Sergii Romantsov; +Cc: intel-gfx

== Series Details ==

Series: drm/i915: GTT offset is cut by 32b-flag.
URL   : https://patchwork.freedesktop.org/series/51955/
State : success

== Summary ==

= CI Bug Log - changes from CI_DRM_5080_full -> Patchwork_10712_full =

== Summary - SUCCESS ==

  No regressions found.

  

== Known issues ==

  Here are the changes found in Patchwork_10712_full that come from known issues:

  === IGT changes ===

    ==== Issues hit ====

    igt@drv_suspend@shrink:
      shard-glk:          PASS -> INCOMPLETE (fdo#106886, fdo#103359, k.org#198133)

    igt@gem_cpu_reloc@full:
      shard-skl:          NOTRUN -> INCOMPLETE (fdo#108073)

    igt@gem_ppgtt@blt-vs-render-ctxn:
      shard-kbl:          PASS -> INCOMPLETE (fdo#103665, fdo#106023, fdo#106887)

    igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-c:
      shard-skl:          NOTRUN -> DMESG-WARN (fdo#107956) +1

    igt@kms_chv_cursor_fail@pipe-c-128x128-top-edge:
      shard-skl:          NOTRUN -> FAIL (fdo#104671)

    igt@kms_color@pipe-b-ctm-0-75:
      shard-apl:          PASS -> DMESG-WARN (fdo#103558, fdo#105602) +5

    igt@kms_color@pipe-c-ctm-negative:
      shard-skl:          NOTRUN -> FAIL (fdo#107361)

    igt@kms_cursor_crc@cursor-256x256-sliding:
      shard-glk:          PASS -> FAIL (fdo#103232) +2

    igt@kms_cursor_crc@cursor-256x85-random:
      shard-apl:          PASS -> FAIL (fdo#103232) +1

    igt@kms_cursor_crc@cursor-64x64-suspend:
      shard-skl:          PASS -> INCOMPLETE (fdo#104108)

    igt@kms_flip@basic-flip-vs-dpms:
      shard-kbl:          PASS -> DMESG-WARN (fdo#103313, fdo#105345)

    igt@kms_flip@flip-vs-expired-vblank-interruptible:
      shard-glk:          PASS -> FAIL (fdo#105363)

    igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff:
      shard-apl:          PASS -> FAIL (fdo#103167)

    igt@kms_panel_fitting@legacy:
      shard-skl:          NOTRUN -> FAIL (fdo#105456)

    igt@kms_plane_alpha_blend@pipe-a-alpha-7efc:
      shard-apl:          PASS -> FAIL (fdo#108145)
      shard-skl:          NOTRUN -> FAIL (fdo#107815, fdo#108145) +2

    igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min:
      shard-skl:          NOTRUN -> FAIL (fdo#108145)

    igt@kms_plane_multiple@atomic-pipe-b-tiling-yf:
      shard-glk:          PASS -> FAIL (fdo#103166)

    igt@pm_backlight@fade_with_suspend:
      shard-skl:          NOTRUN -> FAIL (fdo#107847)

    igt@pm_rpm@universal-planes:
      shard-skl:          NOTRUN -> INCOMPLETE (fdo#107807)

    
    ==== Possible fixes ====

    igt@gem_exec_schedule@preempt-contexts-render:
      shard-glk:          DMESG-WARN (fdo#105763, fdo#106538) -> PASS +2

    igt@kms_color@pipe-c-legacy-gamma:
      shard-apl:          FAIL (fdo#104782) -> PASS

    igt@kms_cursor_crc@cursor-128x128-suspend:
      shard-snb:          DMESG-WARN (fdo#102365) -> PASS
      shard-kbl:          FAIL (fdo#103191, fdo#103232) -> PASS

    igt@kms_cursor_crc@cursor-256x256-sliding:
      shard-apl:          FAIL (fdo#103232) -> PASS

    igt@kms_cursor_crc@cursor-256x85-sliding:
      shard-skl:          FAIL (fdo#103232) -> PASS

    igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff:
      shard-glk:          FAIL (fdo#103167) -> PASS

    igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
      shard-glk:          DMESG-FAIL (fdo#106538) -> PASS

    igt@kms_plane_alpha_blend@pipe-c-coverage-7efc:
      shard-skl:          FAIL (fdo#107815) -> PASS

    igt@kms_plane_multiple@atomic-pipe-b-tiling-y:
      shard-glk:          FAIL (fdo#103166) -> PASS +1
      shard-apl:          FAIL (fdo#103166) -> PASS +1

    igt@kms_universal_plane@disable-primary-vs-flip-pipe-c:
      shard-kbl:          DMESG-WARN (fdo#103558, fdo#105602) -> PASS +30

    igt@perf@blocking:
      shard-hsw:          FAIL (fdo#102252) -> PASS

    
    ==== Warnings ====

    igt@kms_plane_alpha_blend@pipe-c-alpha-7efc:
      shard-kbl:          DMESG-FAIL (fdo#103558, fdo#105602, fdo#108145) -> FAIL (fdo#108590, fdo#108145)

    
  fdo#102252 https://bugs.freedesktop.org/show_bug.cgi?id=102252
  fdo#102365 https://bugs.freedesktop.org/show_bug.cgi?id=102365
  fdo#103166 https://bugs.freedesktop.org/show_bug.cgi?id=103166
  fdo#103167 https://bugs.freedesktop.org/show_bug.cgi?id=103167
  fdo#103191 https://bugs.freedesktop.org/show_bug.cgi?id=103191
  fdo#103232 https://bugs.freedesktop.org/show_bug.cgi?id=103232
  fdo#103313 https://bugs.freedesktop.org/show_bug.cgi?id=103313
  fdo#103359 https://bugs.freedesktop.org/show_bug.cgi?id=103359
  fdo#103558 https://bugs.freedesktop.org/show_bug.cgi?id=103558
  fdo#103665 https://bugs.freedesktop.org/show_bug.cgi?id=103665
  fdo#104108 https://bugs.freedesktop.org/show_bug.cgi?id=104108
  fdo#104671 https://bugs.freedesktop.org/show_bug.cgi?id=104671
  fdo#104782 https://bugs.freedesktop.org/show_bug.cgi?id=104782
  fdo#105345 https://bugs.freedesktop.org/show_bug.cgi?id=105345
  fdo#105363 https://bugs.freedesktop.org/show_bug.cgi?id=105363
  fdo#105456 https://bugs.freedesktop.org/show_bug.cgi?id=105456
  fdo#105602 https://bugs.freedesktop.org/show_bug.cgi?id=105602
  fdo#105763 https://bugs.freedesktop.org/show_bug.cgi?id=105763
  fdo#106023 https://bugs.freedesktop.org/show_bug.cgi?id=106023
  fdo#106538 https://bugs.freedesktop.org/show_bug.cgi?id=106538
  fdo#106886 https://bugs.freedesktop.org/show_bug.cgi?id=106886
  fdo#106887 https://bugs.freedesktop.org/show_bug.cgi?id=106887
  fdo#107361 https://bugs.freedesktop.org/show_bug.cgi?id=107361
  fdo#107807 https://bugs.freedesktop.org/show_bug.cgi?id=107807
  fdo#107815 https://bugs.freedesktop.org/show_bug.cgi?id=107815
  fdo#107847 https://bugs.freedesktop.org/show_bug.cgi?id=107847
  fdo#107956 https://bugs.freedesktop.org/show_bug.cgi?id=107956
  fdo#108073 https://bugs.freedesktop.org/show_bug.cgi?id=108073
  fdo#108145 https://bugs.freedesktop.org/show_bug.cgi?id=108145
  fdo#108590 https://bugs.freedesktop.org/show_bug.cgi?id=108590
  k.org#198133 https://bugzilla.kernel.org/show_bug.cgi?id=198133


== Participating hosts (6 -> 6) ==

  No changes in participating hosts


== Build changes ==

    * Linux: CI_DRM_5080 -> Patchwork_10712

  CI_DRM_5080: b8df8e90cb6f888bfa6df630cda858473e3bd2f8 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_4705: 7983e19ed62ec8db1884f55e07e458a62cc51e37 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_10712: 33a09ca99519a223cd8571827380905944f9352a @ 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_10712/shards.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2018-11-02 19:43 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-02 15:47 [PATCH v1] drm/i915: GTT offset is cut by 32b-flag Sergii Romantsov
2018-11-02 15:48 ` Sergii Romantsov
2018-11-02 16:32 ` Lionel Landwerlin
2018-11-02 16:35   ` Chris Wilson
2018-11-02 17:05   ` Michal Wajdeczko
2018-11-02 17:08 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
2018-11-02 17:30 ` ✓ Fi.CI.BAT: success " Patchwork
2018-11-02 19:43 ` ✓ Fi.CI.IGT: " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.