All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] igt: Require minimum version of glib
@ 2018-07-16 19:50 Antonio Argenziano
  2018-07-16 19:55 ` Chris Wilson
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Antonio Argenziano @ 2018-07-16 19:50 UTC (permalink / raw)
  To: igt-dev

Patch caea9c5b3aa1191c0152d7c0f22a94efca4fd048 introduced the use of
memfd_create which has been implemented in glib 2.27 [1].

[1] https://sourceware.org/ml/libc-announce/2018/msg00000.html

Suggested-by: Michel Thierry <michel.thierry@intel.com>
Cc: Michel Thierry <michel.thierry@intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Antonio Argenziano <antonio.argenziano@intel.com>
---
 configure.ac | 2 +-
 meson.build  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index 195963d4..3f7a8d36 100644
--- a/configure.ac
+++ b/configure.ac
@@ -178,7 +178,7 @@ PKG_CHECK_MODULES(XRANDR, xrandr >= 1.3, AC_DEFINE(HAVE_XRANDR, 1, [Have libXran
 # for testdisplay
 PKG_CHECK_MODULES(CAIRO, [cairo >= 1.12.0])
 PKG_CHECK_MODULES(LIBUDEV, [libudev])
-PKG_CHECK_MODULES(GLIB, [glib-2.0])
+PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.27.0])
 PKG_CHECK_MODULES(GSL, [gsl], [gsl=yes], [gsl=no])
 AM_CONDITIONAL(HAVE_GSL, [test "x$gsl" = xyes])
 
diff --git a/meson.build b/meson.build
index 8d4d75cf..4a701955 100644
--- a/meson.build
+++ b/meson.build
@@ -113,7 +113,7 @@ build_info += 'Valgrind annotations: ' + valgrindinfo
 
 cairo = dependency('cairo', version : '>1.12.0', required : true)
 libudev = dependency('libudev', required : true)
-glib = dependency('glib-2.0', required : true)
+glib = dependency('glib-2.0', version : '>=2.27.0', required : true)
 
 gsl = null_dep
 alsa = null_dep
-- 
2.16.2

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] [PATCH i-g-t] igt: Require minimum version of glib
  2018-07-16 19:50 [igt-dev] [PATCH i-g-t] igt: Require minimum version of glib Antonio Argenziano
@ 2018-07-16 19:55 ` Chris Wilson
  2018-07-16 19:56   ` Chris Wilson
  2018-07-17 16:00 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
  2018-07-17 19:46 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  2 siblings, 1 reply; 7+ messages in thread
From: Chris Wilson @ 2018-07-16 19:55 UTC (permalink / raw)
  To: Antonio Argenziano, igt-dev

Quoting Antonio Argenziano (2018-07-16 20:50:42)
> Patch caea9c5b3aa1191c0152d7c0f22a94efca4fd048 introduced the use of
> memfd_create which has been implemented in glib 2.27 [1].

man 2 memfd_create. That's not glib.
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] [PATCH i-g-t] igt: Require minimum version of glib
  2018-07-16 19:55 ` Chris Wilson
@ 2018-07-16 19:56   ` Chris Wilson
  2018-07-16 20:01     ` Antonio Argenziano
  0 siblings, 1 reply; 7+ messages in thread
From: Chris Wilson @ 2018-07-16 19:56 UTC (permalink / raw)
  To: Antonio Argenziano, igt-dev

Quoting Chris Wilson (2018-07-16 20:55:34)
> Quoting Antonio Argenziano (2018-07-16 20:50:42)
> > Patch caea9c5b3aa1191c0152d7c0f22a94efca4fd048 introduced the use of
> > memfd_create which has been implemented in glib 2.27 [1].
> 
> man 2 memfd_create. That's not glib.

Fwiw, you have confused glibc with glib.
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] [PATCH i-g-t] igt: Require minimum version of glib
  2018-07-16 19:56   ` Chris Wilson
@ 2018-07-16 20:01     ` Antonio Argenziano
  2018-07-16 20:04       ` Chris Wilson
  0 siblings, 1 reply; 7+ messages in thread
From: Antonio Argenziano @ 2018-07-16 20:01 UTC (permalink / raw)
  To: Chris Wilson, igt-dev



On 16/07/18 12:56, Chris Wilson wrote:
> Quoting Chris Wilson (2018-07-16 20:55:34)
>> Quoting Antonio Argenziano (2018-07-16 20:50:42)
>>> Patch caea9c5b3aa1191c0152d7c0f22a94efca4fd048 introduced the use of
>>> memfd_create which has been implemented in glib 2.27 [1].
>>
>> man 2 memfd_create. That's not glib.
> 
> Fwiw, you have confused glibc with glib.

Indeed, would check for the header '<linux/memfd.h>' work?

Thanks,
Antonio

> -Chris
> 
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] [PATCH i-g-t] igt: Require minimum version of glib
  2018-07-16 20:01     ` Antonio Argenziano
@ 2018-07-16 20:04       ` Chris Wilson
  0 siblings, 0 replies; 7+ messages in thread
From: Chris Wilson @ 2018-07-16 20:04 UTC (permalink / raw)
  To: Antonio Argenziano, igt-dev

Quoting Antonio Argenziano (2018-07-16 21:01:28)
> 
> 
> On 16/07/18 12:56, Chris Wilson wrote:
> > Quoting Chris Wilson (2018-07-16 20:55:34)
> >> Quoting Antonio Argenziano (2018-07-16 20:50:42)
> >>> Patch caea9c5b3aa1191c0152d7c0f22a94efca4fd048 introduced the use of
> >>> memfd_create which has been implemented in glib 2.27 [1].
> >>
> >> man 2 memfd_create. That's not glib.
> > 
> > Fwiw, you have confused glibc with glib.
> 
> Indeed, would check for the header '<linux/memfd.h>' work?

You check for the func, and if it was really important provide a syscall
stub if not already available.
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.BAT: success for igt: Require minimum version of glib
  2018-07-16 19:50 [igt-dev] [PATCH i-g-t] igt: Require minimum version of glib Antonio Argenziano
  2018-07-16 19:55 ` Chris Wilson
@ 2018-07-17 16:00 ` Patchwork
  2018-07-17 19:46 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  2 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2018-07-17 16:00 UTC (permalink / raw)
  To: Antonio Argenziano; +Cc: igt-dev

== Series Details ==

Series: igt: Require minimum version of glib
URL   : https://patchwork.freedesktop.org/series/46624/
State : success

== Summary ==

= CI Bug Log - changes from CI_DRM_4501 -> IGTPW_1593 =

== Summary - WARNING ==

  Minor unknown changes coming with IGTPW_1593 need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_1593, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

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

== Possible new issues ==

  Here are the unknown changes that may have been introduced in IGTPW_1593:

  === IGT changes ===

    ==== Warnings ====

    igt@gem_exec_gttfill@basic:
      fi-pnv-d510:        PASS -> SKIP

    
== Known issues ==

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

  === IGT changes ===

    ==== Issues hit ====

    igt@kms_chamelium@hdmi-hpd-fast:
      fi-kbl-7500u:       SKIP -> FAIL (fdo#102672, fdo#103841)

    igt@kms_flip@basic-flip-vs-dpms:
      fi-skl-6700hq:      PASS -> DMESG-WARN (fdo#105998)

    igt@kms_pipe_crc_basic@hang-read-crc-pipe-b:
      fi-skl-6700k2:      PASS -> FAIL (fdo#103191)

    
    ==== Possible fixes ====

    igt@gem_exec_suspend@basic-s4-devices:
      fi-kbl-7500u:       DMESG-WARN (fdo#107139, fdo#105128) -> PASS

    igt@kms_busy@basic-flip-b:
      fi-skl-6700hq:      DMESG-WARN (fdo#105998) -> PASS +1

    
  fdo#102672 https://bugs.freedesktop.org/show_bug.cgi?id=102672
  fdo#103191 https://bugs.freedesktop.org/show_bug.cgi?id=103191
  fdo#103841 https://bugs.freedesktop.org/show_bug.cgi?id=103841
  fdo#105128 https://bugs.freedesktop.org/show_bug.cgi?id=105128
  fdo#105998 https://bugs.freedesktop.org/show_bug.cgi?id=105998
  fdo#107139 https://bugs.freedesktop.org/show_bug.cgi?id=107139


== Participating hosts (46 -> 39) ==

  Additional (1): fi-cfl-8109u 
  Missing    (8): fi-ilk-m540 fi-bxt-dsi fi-hsw-4200u fi-skl-guc fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-kbl-8809g 


== Build changes ==

    * IGT: IGT_4559 -> IGTPW_1593

  CI_DRM_4501: 692d13f7b75baf0bb8c58b9784569c52d68f01e2 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_1593: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1593/
  IGT_4559: 6d341aac2124836443ce74e8e97a4508ac8d5095 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for igt: Require minimum version of glib
  2018-07-16 19:50 [igt-dev] [PATCH i-g-t] igt: Require minimum version of glib Antonio Argenziano
  2018-07-16 19:55 ` Chris Wilson
  2018-07-17 16:00 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2018-07-17 19:46 ` Patchwork
  2 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2018-07-17 19:46 UTC (permalink / raw)
  To: Antonio Argenziano; +Cc: igt-dev

== Series Details ==

Series: igt: Require minimum version of glib
URL   : https://patchwork.freedesktop.org/series/46624/
State : success

== Summary ==

= CI Bug Log - changes from IGT_4559_full -> IGTPW_1593_full =

== Summary - WARNING ==

  Minor unknown changes coming with IGTPW_1593_full need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_1593_full, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

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

== Possible new issues ==

  Here are the unknown changes that may have been introduced in IGTPW_1593_full:

  === IGT changes ===

    ==== Warnings ====

    igt@gem_exec_schedule@deep-render:
      shard-kbl:          PASS -> SKIP

    igt@kms_draw_crc@draw-method-xrgb2101010-blt-untiled:
      shard-snb:          PASS -> SKIP

    
== Known issues ==

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

  === IGT changes ===

    ==== Issues hit ====

    igt@drv_suspend@fence-restore-tiled2untiled:
      shard-glk:          PASS -> FAIL (fdo#103375)

    igt@gem_exec_schedule@pi-ringfull-bsd1:
      shard-kbl:          NOTRUN -> FAIL (fdo#103158) +3

    igt@kms_available_modes_crc@available_mode_test_crc:
      shard-kbl:          NOTRUN -> FAIL (fdo#106641)
      shard-snb:          PASS -> FAIL (fdo#106641)

    igt@kms_cursor_crc@cursor-64x64-suspend:
      shard-glk:          PASS -> INCOMPLETE (k.org#198133, fdo#103359)

    igt@kms_flip@modeset-vs-vblank-race-interruptible:
      shard-hsw:          PASS -> FAIL (fdo#103060)

    igt@kms_flip@plain-flip-ts-check-interruptible:
      shard-glk:          PASS -> FAIL (fdo#100368)

    igt@kms_setmode@basic:
      shard-kbl:          PASS -> FAIL (fdo#99912)

    igt@kms_sysfs_edid_timing:
      shard-kbl:          NOTRUN -> FAIL (fdo#100047)

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

    igt@pm_rpm@system-suspend-execbuf:
      shard-kbl:          NOTRUN -> INCOMPLETE (fdo#103665)

    
    ==== Possible fixes ====

    igt@gem_cs_tlb@render:
      shard-snb:          INCOMPLETE (fdo#105411) -> PASS

    igt@kms_draw_crc@draw-method-rgb565-blt-ytiled:
      shard-glk:          FAIL (fdo#103184) -> PASS +1

    igt@kms_flip@plain-flip-fb-recreate-interruptible:
      shard-glk:          FAIL (fdo#100368) -> PASS +1

    igt@kms_setmode@basic:
      shard-apl:          FAIL (fdo#99912) -> PASS

    igt@perf_pmu@rc6-runtime-pm-long:
      shard-apl:          FAIL (fdo#105010) -> PASS
      shard-glk:          FAIL (fdo#105010) -> PASS

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

    
  fdo#100047 https://bugs.freedesktop.org/show_bug.cgi?id=100047
  fdo#100368 https://bugs.freedesktop.org/show_bug.cgi?id=100368
  fdo#102252 https://bugs.freedesktop.org/show_bug.cgi?id=102252
  fdo#103060 https://bugs.freedesktop.org/show_bug.cgi?id=103060
  fdo#103158 https://bugs.freedesktop.org/show_bug.cgi?id=103158
  fdo#103184 https://bugs.freedesktop.org/show_bug.cgi?id=103184
  fdo#103359 https://bugs.freedesktop.org/show_bug.cgi?id=103359
  fdo#103375 https://bugs.freedesktop.org/show_bug.cgi?id=103375
  fdo#103665 https://bugs.freedesktop.org/show_bug.cgi?id=103665
  fdo#105010 https://bugs.freedesktop.org/show_bug.cgi?id=105010
  fdo#105411 https://bugs.freedesktop.org/show_bug.cgi?id=105411
  fdo#106641 https://bugs.freedesktop.org/show_bug.cgi?id=106641
  fdo#99912 https://bugs.freedesktop.org/show_bug.cgi?id=99912
  k.org#198133 https://bugzilla.kernel.org/show_bug.cgi?id=198133


== Participating hosts (5 -> 5) ==

  No changes in participating hosts


== Build changes ==

    * IGT: IGT_4559 -> IGTPW_1593
    * Linux: CI_DRM_4499 -> CI_DRM_4501

  CI_DRM_4499: 30c05928fc8cdb8bbbf052fec71f484654cf2a49 @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_4501: 692d13f7b75baf0bb8c58b9784569c52d68f01e2 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_1593: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1593/
  IGT_4559: 6d341aac2124836443ce74e8e97a4508ac8d5095 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1593/shards.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2018-07-17 19:46 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-16 19:50 [igt-dev] [PATCH i-g-t] igt: Require minimum version of glib Antonio Argenziano
2018-07-16 19:55 ` Chris Wilson
2018-07-16 19:56   ` Chris Wilson
2018-07-16 20:01     ` Antonio Argenziano
2018-07-16 20:04       ` Chris Wilson
2018-07-17 16:00 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2018-07-17 19:46 ` [igt-dev] ✓ 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.