* [igt-dev] [PATCH i-g-t 1/7] tests/kms_vrr: Fix compiler warn on 32bit
@ 2020-01-14 14:25 Ville Syrjala
2020-01-14 14:25 ` [igt-dev] [PATCH i-g-t 2/7] tests/eviction_common: " Ville Syrjala
` (7 more replies)
0 siblings, 8 replies; 10+ messages in thread
From: Ville Syrjala @ 2020-01-14 14:25 UTC (permalink / raw)
To: igt-dev
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
../tests/kms_vrr.c:307:11: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘uint64_t’ {aka ‘long long unsigned int’} [-Wformat=]
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
tests/kms_vrr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
index 7bc4fc8a20d1..73115fef7b21 100644
--- a/tests/kms_vrr.c
+++ b/tests/kms_vrr.c
@@ -304,7 +304,7 @@ flip_and_measure(data_t *data, igt_output_t *output, enum pipe pipe,
while (get_time_ns() < target_ns);
}
- igt_info("Completed %u flips, %u were in threshold for %luns.\n",
+ igt_info("Completed %u flips, %u were in threshold for %"PRIu64"ns.\n",
total_flip, total_pass, rate_ns);
return total_flip ? ((total_pass * 100) / total_flip) : 0;
--
2.24.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 10+ messages in thread* [igt-dev] [PATCH i-g-t 2/7] tests/eviction_common: Fix compiler warn on 32bit 2020-01-14 14:25 [igt-dev] [PATCH i-g-t 1/7] tests/kms_vrr: Fix compiler warn on 32bit Ville Syrjala @ 2020-01-14 14:25 ` Ville Syrjala 2020-01-14 14:25 ` [igt-dev] [PATCH i-g-t 3/7] tests/perf: " Ville Syrjala ` (6 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Ville Syrjala @ 2020-01-14 14:25 UTC (permalink / raw) To: igt-dev From: Ville Syrjälä <ville.syrjala@linux.intel.com> ../tests/eviction_common.c:141:37: warning: passing argument 1 of ‘intel_get_total_pinnable_mem’ from incompatible pointer type [-Wincompatible-pointer-types] ../lib/igt_aux.h:206:7: note: expected ‘size_t *’ {aka ‘unsigned int *’} but argument is of type ‘uint64_t *’ {aka ‘long long unsigned int *’} Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- tests/eviction_common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/eviction_common.c b/tests/eviction_common.c index a3b9e4167a0b..8446c421b416 100644 --- a/tests/eviction_common.c +++ b/tests/eviction_common.c @@ -30,7 +30,6 @@ #include "igt.h" #include <stdlib.h> - struct igt_eviction_test_ops { uint32_t (*create)(int fd, uint64_t size); void (*flink)(uint32_t old_handle, uint32_t new_handle); @@ -133,7 +132,8 @@ static void mlocked_evictions(int fd, struct igt_eviction_test_ops *ops, uint64_t surface_size, uint64_t surface_count) { - uint64_t sz, pin, total; + uint64_t sz, pin; + size_t total; void *mem; intel_require_memory(surface_count, surface_size, CHECK_RAM); -- 2.24.1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH i-g-t 3/7] tests/perf: Fix compiler warn on 32bit 2020-01-14 14:25 [igt-dev] [PATCH i-g-t 1/7] tests/kms_vrr: Fix compiler warn on 32bit Ville Syrjala 2020-01-14 14:25 ` [igt-dev] [PATCH i-g-t 2/7] tests/eviction_common: " Ville Syrjala @ 2020-01-14 14:25 ` Ville Syrjala 2020-01-14 14:25 ` [igt-dev] [PATCH i-g-t 4/7] lib/intel_aux_pgtable: Fix uint64_t vs. long mismatch Ville Syrjala ` (5 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Ville Syrjala @ 2020-01-14 14:25 UTC (permalink / raw) To: igt-dev From: Ville Syrjälä <ville.syrjala@linux.intel.com> ../tests/perf.c:890:12: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 4 has type ‘uint64_t’ {aka ‘long long unsigned int’} [-Wformat=] Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- tests/perf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/perf.c b/tests/perf.c index 982277dfd0a7..a837551cb0a9 100644 --- a/tests/perf.c +++ b/tests/perf.c @@ -887,7 +887,7 @@ init_sys_info(void) igt_assert_neq(devid, 0); timestamp_frequency = get_cs_timestamp_frequency(); - igt_debug("timestamp_frequency = %lu\n", timestamp_frequency); + igt_debug("timestamp_frequency = %"PRIu64"\n", timestamp_frequency); igt_assert_neq(timestamp_frequency, 0); if (IS_HASWELL(devid)) { -- 2.24.1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH i-g-t 4/7] lib/intel_aux_pgtable: Fix uint64_t vs. long mismatch 2020-01-14 14:25 [igt-dev] [PATCH i-g-t 1/7] tests/kms_vrr: Fix compiler warn on 32bit Ville Syrjala 2020-01-14 14:25 ` [igt-dev] [PATCH i-g-t 2/7] tests/eviction_common: " Ville Syrjala 2020-01-14 14:25 ` [igt-dev] [PATCH i-g-t 3/7] tests/perf: " Ville Syrjala @ 2020-01-14 14:25 ` Ville Syrjala 2020-01-14 14:25 ` [igt-dev] [PATCH i-g-t 5/7] tests/kms_dp_tiled_display: Use labs() for long Ville Syrjala ` (4 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Ville Syrjala @ 2020-01-14 14:25 UTC (permalink / raw) To: igt-dev From: Ville Syrjälä <ville.syrjala@linux.intel.com> ../lib/intel_aux_pgtable.c: In function ‘ptr_mask’: ../lib/intel_aux_pgtable.c:14:12: warning: right shift count >= width of type [-Wshift-count-overflow] 14 | (~0UL >> (BITS_PER_LONG - 1 - (e)))) | ^~ ../lib/intel_aux_pgtable.c:138:9: note: in expansion of macro ‘BITMASK’ 138 | return BITMASK(GFX_ADDRESS_BITS - 1, ld->entry_ptr_shift); | ^~~~~~~ Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- lib/intel_aux_pgtable.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/intel_aux_pgtable.c b/lib/intel_aux_pgtable.c index fcd24f087c12..db5055c820ec 100644 --- a/lib/intel_aux_pgtable.c +++ b/lib/intel_aux_pgtable.c @@ -9,9 +9,9 @@ #include "i915/gem_mman.h" -#define BITS_PER_LONG (sizeof(long) * 8) -#define BITMASK(e, s) ((~0UL << (s)) & \ - (~0UL >> (BITS_PER_LONG - 1 - (e)))) +#define BITS_PER_LONG_LONG (sizeof(long long) * 8) +#define BITMASK(e, s) ((~0ULL << (s)) & \ + (~0ULL >> (BITS_PER_LONG_LONG - 1 - (e)))) /* The unit size to which the AUX CCS surface is aligned to. */ #define AUX_CCS_UNIT_SIZE 64 -- 2.24.1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH i-g-t 5/7] tests/kms_dp_tiled_display: Use labs() for long 2020-01-14 14:25 [igt-dev] [PATCH i-g-t 1/7] tests/kms_vrr: Fix compiler warn on 32bit Ville Syrjala ` (2 preceding siblings ...) 2020-01-14 14:25 ` [igt-dev] [PATCH i-g-t 4/7] lib/intel_aux_pgtable: Fix uint64_t vs. long mismatch Ville Syrjala @ 2020-01-14 14:25 ` Ville Syrjala 2020-01-14 14:25 ` [igt-dev] [PATCH i-g-t 6/7] tools/cnl_compute_wrpll: Fix abs(unsigned) Ville Syrjala ` (3 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Ville Syrjala @ 2020-01-14 14:25 UTC (permalink / raw) To: igt-dev From: Ville Syrjälä <ville.syrjala@linux.intel.com> 'usec' is a long so we need labs() instead of abs(). Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- tests/kms_dp_tiled_display.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/kms_dp_tiled_display.c b/tests/kms_dp_tiled_display.c index 219de01c7b27..b1160fee3b0e 100644 --- a/tests/kms_dp_tiled_display.c +++ b/tests/kms_dp_tiled_display.c @@ -364,7 +364,7 @@ static void page_flip_handler(int fd, unsigned int seq, * For seamless tear-free display, the page flip event timestamps * from all the tiles should not differ by more than 10us. */ - igt_fail_on_f(abs(usec) >= 10, "Delayed page flip event from CRTC:%d at %u:%u\n", + igt_fail_on_f(labs(usec) >= 10, "Delayed page flip event from CRTC:%d at %u:%u\n", crtc_id, tv_sec, tv_usec); } -- 2.24.1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH i-g-t 6/7] tools/cnl_compute_wrpll: Fix abs(unsigned) 2020-01-14 14:25 [igt-dev] [PATCH i-g-t 1/7] tests/kms_vrr: Fix compiler warn on 32bit Ville Syrjala ` (3 preceding siblings ...) 2020-01-14 14:25 ` [igt-dev] [PATCH i-g-t 5/7] tests/kms_dp_tiled_display: Use labs() for long Ville Syrjala @ 2020-01-14 14:25 ` Ville Syrjala 2020-01-14 14:25 ` [igt-dev] [PATCH i-g-t 7/7] tools/intel_panel_fitter: " Ville Syrjala ` (2 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Ville Syrjala @ 2020-01-14 14:25 UTC (permalink / raw) To: igt-dev From: Ville Syrjälä <ville.syrjala@linux.intel.com> ../tools/cnl_compute_wrpll.c: In function ‘cnl_ddi_calculate_wrpll2’: ../tools/cnl_compute_wrpll.c:216:21: warning: taking the absolute value of unsigned type ‘uint32_t’ {aka ‘unsigned int’} has no effect [-Wabsolute-value] 216 | dco_centrality = abs(dco - dco_mid); | ^~~ ../tools/cnl_compute_wrpll.c: In function ‘test_multipliers’: ../tools/cnl_compute_wrpll.c:258:21: warning: taking the absolute value of unsigned type ‘unsigned int’ has no effect [-Wabsolute-value] 258 | dco_centrality = abs(dco - dco_mid); | ^~~ Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- tools/cnl_compute_wrpll.c | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/tools/cnl_compute_wrpll.c b/tools/cnl_compute_wrpll.c index c7b7bd723123..9caf69f13bd0 100644 --- a/tools/cnl_compute_wrpll.c +++ b/tools/cnl_compute_wrpll.c @@ -23,6 +23,7 @@ #include <assert.h> #include <inttypes.h> +#include <limits.h> #include <stdio.h> #include <stdbool.h> #include <stdint.h> @@ -30,7 +31,6 @@ #include <string.h> #include <math.h> -#define U32_MAX ((uint32_t)~0ULL) #define ARRAY_SIZE(arr) (sizeof(arr)/sizeof(arr[0])) static inline uint64_t div_u64(uint64_t dividend, uint32_t divisor) @@ -194,20 +194,20 @@ static bool cnl_ddi_calculate_wrpll2(int clock, struct skl_wrpll_params *params) { - uint32_t afe_clock = clock * 5 / 1000; /* clock in kHz */ - uint32_t dco_min = 7998000; - uint32_t dco_max = 10000000; - uint32_t dco_mid = (dco_min + dco_max) / 2; + int afe_clock = clock * 5 / 1000; /* clock in kHz */ + int dco_min = 7998000; + int dco_max = 10000000; + int dco_mid = (dco_min + dco_max) / 2; static const int dividers[] = { 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 24, 28, 30, 32, 36, 40, 42, 44, 48, 50, 52, 54, 56, 60, 64, 66, 68, 70, 72, 76, 78, 80, 84, 88, 90, 92, 96, 98, 100, 102, 3, 5, 7, 9, 15, 21 }; - uint32_t dco, best_dco = 0, dco_centrality = 0; - uint32_t best_dco_centrality = U32_MAX; /* Spec meaning of 999999 MHz */ + int dco, best_dco = 0, dco_centrality = 0; + int best_dco_centrality = INT_MAX; /* Spec meaning of 999999 MHz */ int d, best_div = 0, pdiv = 0, qdiv = 0, kdiv = 0; - uint32_t ref_clock = params->ref_clock; + int ref_clock = params->ref_clock; for (d = 0; d < ARRAY_SIZE(dividers); d++) { dco = afe_clock * dividers[d]; @@ -236,10 +236,10 @@ cnl_ddi_calculate_wrpll2(int clock, static void test_multipliers(unsigned int clock) { - uint64_t afe_clock = clock * 5 / 1000; /* clocks in kHz */ - unsigned int dco_min = 7998000; - unsigned int dco_max = 10000000; - unsigned int dco_mid = (dco_min + dco_max) / 2; + int afe_clock = clock * 5 / 1000; /* clocks in kHz */ + int dco_min = 7998000; + int dco_max = 10000000; + int dco_mid = (dco_min + dco_max) / 2; static const int dividerlist[] = { 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 24, 28, 30, 32, 36, 40, @@ -247,8 +247,8 @@ static void test_multipliers(unsigned int clock) 64, 66, 68, 70, 72, 76, 78, 80, 84, 88, 90, 92, 96, 98, 100, 102, 3, 5, 7, 9, 15, 21 }; - unsigned int dco, dco_centrality = 0; - unsigned int best_dco_centrality = U32_MAX; + int dco, dco_centrality = 0; + int best_dco_centrality = INT_MAX; int d, best_div = 0, pdiv = 0, qdiv = 0, kdiv = 0; for (d = 0; d < ARRAY_SIZE(dividerlist); d++) { -- 2.24.1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH i-g-t 7/7] tools/intel_panel_fitter: Fix abs(unsigned) 2020-01-14 14:25 [igt-dev] [PATCH i-g-t 1/7] tests/kms_vrr: Fix compiler warn on 32bit Ville Syrjala ` (4 preceding siblings ...) 2020-01-14 14:25 ` [igt-dev] [PATCH i-g-t 6/7] tools/cnl_compute_wrpll: Fix abs(unsigned) Ville Syrjala @ 2020-01-14 14:25 ` Ville Syrjala 2020-01-14 14:29 ` Chris Wilson 2020-01-14 15:24 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/7] tests/kms_vrr: Fix compiler warn on 32bit Patchwork 2020-01-16 18:49 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 7 siblings, 1 reply; 10+ messages in thread From: Ville Syrjala @ 2020-01-14 14:25 UTC (permalink / raw) To: igt-dev From: Ville Syrjälä <ville.syrjala@linux.intel.com> ../tools/intel_panel_fitter.c: In function ‘change_screen_size’: ../tools/intel_panel_fitter.c:183:10: warning: taking the absolute value of unsigned type ‘uint32_t’ {aka ‘unsigned int’} has no effect [-Wabsolute-value] 183 | pos_x = abs((info.tot_width - dst_width)) / 2; | ^~~ ../tools/intel_panel_fitter.c:184:10: warning: taking the absolute value of unsigned type ‘uint32_t’ {aka ‘unsigned int’} has no effect [-Wabsolute-value] 184 | pos_y = abs((info.tot_height - dst_height)) / 2; | ^~~ Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- tools/intel_panel_fitter.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tools/intel_panel_fitter.c b/tools/intel_panel_fitter.c index 640787053b16..c6ee2101cd77 100644 --- a/tools/intel_panel_fitter.c +++ b/tools/intel_panel_fitter.c @@ -72,12 +72,12 @@ struct pipe_info { bool enabled; bool pf_enabled; uint32_t interlace_mode; - uint32_t tot_width; /* htotal */ - uint32_t tot_height; /* vtotal */ - uint32_t src_width; /* pipesrc.x */ - uint32_t src_height; /* pipesrc.y */ - uint32_t dst_width; /* pf_win_sz.x */ - uint32_t dst_height; /* pf_win_sz.y */ + int tot_width; /* htotal */ + int tot_height; /* vtotal */ + int src_width; /* pipesrc.x */ + int src_height; /* pipesrc.y */ + int dst_width; /* pf_win_sz.x */ + int dst_height; /* pf_win_sz.y */ }; static void read_pipe_info(int intel_pipe, struct pipe_info *info) @@ -155,7 +155,7 @@ static void dump_info(void) static int change_screen_size(int intel_pipe, int x, int y) { struct pipe_info info; - uint32_t dst_width, dst_height, pos_x, pos_y; + int dst_width, dst_height, pos_x, pos_y; uint32_t ctrl1_val; uint32_t win_pos_val; uint32_t win_sz_val; -- 2.24.1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 7/7] tools/intel_panel_fitter: Fix abs(unsigned) 2020-01-14 14:25 ` [igt-dev] [PATCH i-g-t 7/7] tools/intel_panel_fitter: " Ville Syrjala @ 2020-01-14 14:29 ` Chris Wilson 0 siblings, 0 replies; 10+ messages in thread From: Chris Wilson @ 2020-01-14 14:29 UTC (permalink / raw) To: Ville Syrjala, igt-dev Quoting Ville Syrjala (2020-01-14 14:25:23) > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > ../tools/intel_panel_fitter.c: In function ‘change_screen_size’: > ../tools/intel_panel_fitter.c:183:10: warning: taking the absolute value of unsigned type ‘uint32_t’ {aka ‘unsigned int’} has no effect [-Wabsolute-value] > 183 | pos_x = abs((info.tot_width - dst_width)) / 2; > | ^~~ > ../tools/intel_panel_fitter.c:184:10: warning: taking the absolute value of unsigned type ‘uint32_t’ {aka ‘unsigned int’} has no effect [-Wabsolute-value] > 184 | pos_y = abs((info.tot_height - dst_height)) / 2; > | ^~~ > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> A bit of a double take on #6 (that was more than I expected would be required for the warning), series is Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> -Chris _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/7] tests/kms_vrr: Fix compiler warn on 32bit 2020-01-14 14:25 [igt-dev] [PATCH i-g-t 1/7] tests/kms_vrr: Fix compiler warn on 32bit Ville Syrjala ` (5 preceding siblings ...) 2020-01-14 14:25 ` [igt-dev] [PATCH i-g-t 7/7] tools/intel_panel_fitter: " Ville Syrjala @ 2020-01-14 15:24 ` Patchwork 2020-01-16 18:49 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2020-01-14 15:24 UTC (permalink / raw) To: Ville Syrjälä; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,1/7] tests/kms_vrr: Fix compiler warn on 32bit URL : https://patchwork.freedesktop.org/series/72008/ State : success == Summary == CI Bug Log - changes from CI_DRM_7739 -> IGTPW_3923 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/index.html Known issues ------------ Here are the changes found in IGTPW_3923 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_module_load@reload-with-fault-injection: - fi-cfl-8700k: [PASS][1] -> [INCOMPLETE][2] ([i915#505]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/fi-cfl-8700k/igt@i915_module_load@reload-with-fault-injection.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/fi-cfl-8700k/igt@i915_module_load@reload-with-fault-injection.html - fi-skl-6700k2: [PASS][3] -> [DMESG-WARN][4] ([i915#889]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/fi-skl-6700k2/igt@i915_module_load@reload-with-fault-injection.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/fi-skl-6700k2/igt@i915_module_load@reload-with-fault-injection.html - fi-skl-6770hq: [PASS][5] -> [INCOMPLETE][6] ([i915#671]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/fi-skl-6770hq/igt@i915_module_load@reload-with-fault-injection.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/fi-skl-6770hq/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-kbl-7500u: [PASS][7] -> [FAIL][8] ([fdo#111407]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html #### Possible fixes #### * igt@i915_module_load@reload-with-fault-injection: - fi-skl-lmem: [INCOMPLETE][9] ([i915#671]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/fi-skl-lmem/igt@i915_module_load@reload-with-fault-injection.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/fi-skl-lmem/igt@i915_module_load@reload-with-fault-injection.html [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407 [i915#505]: https://gitlab.freedesktop.org/drm/intel/issues/505 [i915#671]: https://gitlab.freedesktop.org/drm/intel/issues/671 [i915#889]: https://gitlab.freedesktop.org/drm/intel/issues/889 Participating hosts (53 -> 43) ------------------------------ Missing (10): fi-kbl-soraka fi-hsw-4770r fi-ilk-m540 fi-ehl-1 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-tgl-y fi-byt-clapper Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5365 -> IGTPW_3923 CI-20190529: 20190529 CI_DRM_7739: 757c25a357ea6e34d5eba9b6efee6f45e7961334 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3923: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/index.html IGT_5365: e9ec0ed63b25c86861ffac3c8601cc4d1b910b65 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/7] tests/kms_vrr: Fix compiler warn on 32bit 2020-01-14 14:25 [igt-dev] [PATCH i-g-t 1/7] tests/kms_vrr: Fix compiler warn on 32bit Ville Syrjala ` (6 preceding siblings ...) 2020-01-14 15:24 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/7] tests/kms_vrr: Fix compiler warn on 32bit Patchwork @ 2020-01-16 18:49 ` Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2020-01-16 18:49 UTC (permalink / raw) To: Ville Syrjälä; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,1/7] tests/kms_vrr: Fix compiler warn on 32bit URL : https://patchwork.freedesktop.org/series/72008/ State : success == Summary == CI Bug Log - changes from CI_DRM_7739_full -> IGTPW_3923_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/index.html Known issues ------------ Here are the changes found in IGTPW_3923_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_persistence@vcs1-queued: - shard-iclb: [PASS][1] -> [SKIP][2] ([fdo#109276] / [fdo#112080]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-iclb1/igt@gem_ctx_persistence@vcs1-queued.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-iclb5/igt@gem_ctx_persistence@vcs1-queued.html * igt@gem_eio@reset-stress: - shard-tglb: [PASS][3] -> [INCOMPLETE][4] ([i915#470]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-tglb1/igt@gem_eio@reset-stress.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-tglb8/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@smoke: - shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#110854]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-iclb2/igt@gem_exec_balancer@smoke.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-iclb6/igt@gem_exec_balancer@smoke.html * igt@gem_exec_create@basic: - shard-tglb: [PASS][7] -> [INCOMPLETE][8] ([fdo#111736] / [i915#472]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-tglb7/igt@gem_exec_create@basic.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-tglb7/igt@gem_exec_create@basic.html * igt@gem_exec_reuse@single: - shard-tglb: [PASS][9] -> [INCOMPLETE][10] ([i915#472]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-tglb4/igt@gem_exec_reuse@single.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-tglb2/igt@gem_exec_reuse@single.html * igt@gem_exec_schedule@independent-bsd2: - shard-iclb: [PASS][11] -> [SKIP][12] ([fdo#109276]) +20 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-iclb4/igt@gem_exec_schedule@independent-bsd2.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-iclb8/igt@gem_exec_schedule@independent-bsd2.html * igt@gem_exec_schedule@pi-shared-iova-bsd: - shard-iclb: [PASS][13] -> [SKIP][14] ([i915#677]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-iclb6/igt@gem_exec_schedule@pi-shared-iova-bsd.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-iclb4/igt@gem_exec_schedule@pi-shared-iova-bsd.html * igt@gem_exec_schedule@preempt-queue-contexts-chain-render: - shard-tglb: [PASS][15] -> [INCOMPLETE][16] ([fdo#111677] / [i915#472]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-tglb7/igt@gem_exec_schedule@preempt-queue-contexts-chain-render.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-tglb8/igt@gem_exec_schedule@preempt-queue-contexts-chain-render.html * igt@gem_exec_schedule@smoketest-blt: - shard-tglb: [PASS][17] -> [INCOMPLETE][18] ([i915#470] / [i915#472]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-tglb5/igt@gem_exec_schedule@smoketest-blt.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-tglb6/igt@gem_exec_schedule@smoketest-blt.html * igt@gem_exec_schedule@wide-bsd: - shard-iclb: [PASS][19] -> [SKIP][20] ([fdo#112146]) +5 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-iclb6/igt@gem_exec_schedule@wide-bsd.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-iclb2/igt@gem_exec_schedule@wide-bsd.html * igt@i915_suspend@debugfs-reader: - shard-kbl: [PASS][21] -> [INCOMPLETE][22] ([fdo#103665]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-kbl7/igt@i915_suspend@debugfs-reader.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-kbl1/igt@i915_suspend@debugfs-reader.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render: - shard-kbl: [PASS][23] -> [FAIL][24] ([i915#49]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html - shard-apl: [PASS][25] -> [FAIL][26] ([i915#49]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-apl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-apl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html - shard-glk: [PASS][27] -> [FAIL][28] ([i915#49]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-glk5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-glk7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-stridechange: - shard-tglb: [PASS][29] -> [FAIL][30] ([i915#49]) +2 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-stridechange.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-stridechange.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b: - shard-kbl: [PASS][31] -> [DMESG-WARN][32] ([i915#180]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-kbl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-kbl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html * igt@kms_plane@pixel-format-pipe-b-planes-source-clamping: - shard-iclb: [PASS][33] -> [FAIL][34] ([i915#576]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-iclb2/igt@kms_plane@pixel-format-pipe-b-planes-source-clamping.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-iclb5/igt@kms_plane@pixel-format-pipe-b-planes-source-clamping.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-iclb: [PASS][35] -> [SKIP][36] ([fdo#109441]) +3 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-iclb6/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_vblank@pipe-b-ts-continuation-suspend: - shard-glk: [PASS][37] -> [INCOMPLETE][38] ([i915#58] / [k.org#198133]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-glk8/igt@kms_vblank@pipe-b-ts-continuation-suspend.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-glk9/igt@kms_vblank@pipe-b-ts-continuation-suspend.html * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: - shard-iclb: [PASS][39] -> [DMESG-WARN][40] ([fdo#111764]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-iclb1/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-iclb3/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html * igt@perf_pmu@busy-check-all-vcs1: - shard-iclb: [PASS][41] -> [SKIP][42] ([fdo#112080]) +8 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-iclb1/igt@perf_pmu@busy-check-all-vcs1.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-iclb5/igt@perf_pmu@busy-check-all-vcs1.html #### Possible fixes #### * igt@gem_ctx_isolation@vcs1-none: - shard-iclb: [SKIP][43] ([fdo#109276] / [fdo#112080]) -> [PASS][44] +4 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-iclb8/igt@gem_ctx_isolation@vcs1-none.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-iclb2/igt@gem_ctx_isolation@vcs1-none.html * igt@gem_eio@in-flight-1us: - shard-tglb: [INCOMPLETE][45] ([i915#534] / [i915#707]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-tglb6/igt@gem_eio@in-flight-1us.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-tglb4/igt@gem_eio@in-flight-1us.html * igt@gem_exec_async@concurrent-writes-bsd: - shard-iclb: [SKIP][47] ([fdo#112146]) -> [PASS][48] +3 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-iclb1/igt@gem_exec_async@concurrent-writes-bsd.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-iclb8/igt@gem_exec_async@concurrent-writes-bsd.html * igt@gem_exec_create@forked: - shard-tglb: [INCOMPLETE][49] ([fdo#108838] / [i915#472]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-tglb8/igt@gem_exec_create@forked.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-tglb2/igt@gem_exec_create@forked.html * igt@gem_exec_parallel@vcs1-fds: - shard-iclb: [SKIP][51] ([fdo#112080]) -> [PASS][52] +9 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-iclb6/igt@gem_exec_parallel@vcs1-fds.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-iclb4/igt@gem_exec_parallel@vcs1-fds.html * igt@gem_exec_schedule@pi-userfault-bsd: - shard-iclb: [SKIP][53] ([i915#677]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-iclb4/igt@gem_exec_schedule@pi-userfault-bsd.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-iclb6/igt@gem_exec_schedule@pi-userfault-bsd.html * igt@gem_exec_schedule@preempt-queue-contexts-render: - shard-tglb: [INCOMPLETE][55] ([fdo#111606] / [fdo#111677] / [i915#472]) -> [PASS][56] +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-tglb8/igt@gem_exec_schedule@preempt-queue-contexts-render.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-tglb5/igt@gem_exec_schedule@preempt-queue-contexts-render.html * igt@gem_persistent_relocs@forked-interruptible-thrashing: - shard-hsw: [TIMEOUT][57] ([fdo#112271] / [i915#530]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-hsw2/igt@gem_persistent_relocs@forked-interruptible-thrashing.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-hsw2/igt@gem_persistent_relocs@forked-interruptible-thrashing.html * igt@gem_pipe_control_store_loop@reused-buffer: - shard-tglb: [INCOMPLETE][59] ([i915#707] / [i915#796]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-tglb3/igt@gem_pipe_control_store_loop@reused-buffer.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-tglb5/igt@gem_pipe_control_store_loop@reused-buffer.html * igt@gem_ppgtt@flink-and-close-vma-leak: - shard-glk: [FAIL][61] ([i915#644]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-glk2/igt@gem_ppgtt@flink-and-close-vma-leak.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-glk5/igt@gem_ppgtt@flink-and-close-vma-leak.html * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup: - shard-snb: [DMESG-WARN][63] ([fdo#111870]) -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-snb6/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-snb6/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html * igt@gen7_exec_parse@basic-offset: - shard-hsw: [FAIL][65] ([i915#694]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-hsw7/igt@gen7_exec_parse@basic-offset.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-hsw5/igt@gen7_exec_parse@basic-offset.html * igt@i915_pm_dc@dc5-dpms: - shard-iclb: [FAIL][67] ([i915#447]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-iclb3/igt@i915_pm_dc@dc5-dpms.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-iclb2/igt@i915_pm_dc@dc5-dpms.html * igt@i915_pm_rps@waitboost: - shard-tglb: [FAIL][69] ([i915#413]) -> [PASS][70] [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-tglb8/igt@i915_pm_rps@waitboost.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-tglb7/igt@i915_pm_rps@waitboost.html * igt@i915_suspend@sysfs-reader: - shard-apl: [DMESG-WARN][71] ([i915#180]) -> [PASS][72] +4 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-apl6/igt@i915_suspend@sysfs-reader.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-apl6/igt@i915_suspend@sysfs-reader.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: [FAIL][73] ([i915#72]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-glk8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-glk4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_flip@flip-vs-expired-vblank: - shard-glk: [FAIL][75] ([i915#79]) -> [PASS][76] [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-glk3/igt@kms_flip@flip-vs-expired-vblank.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-glk3/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-tglb: [FAIL][77] ([i915#49]) -> [PASS][78] +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_plane@pixel-format-pipe-c-planes-source-clamping: - shard-iclb: [FAIL][79] ([i915#576]) -> [PASS][80] [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-iclb4/igt@kms_plane@pixel-format-pipe-c-planes-source-clamping.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-iclb6/igt@kms_plane@pixel-format-pipe-c-planes-source-clamping.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-iclb: [SKIP][81] ([fdo#109441]) -> [PASS][82] +2 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-iclb4/igt@kms_psr@psr2_cursor_mmap_cpu.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-kbl: [DMESG-WARN][83] ([i915#180]) -> [PASS][84] +10 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-kbl3/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-kbl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@perf_pmu@enable-race-vecs0: - shard-tglb: [INCOMPLETE][85] ([i915#470] / [i915#472]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-tglb3/igt@perf_pmu@enable-race-vecs0.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-tglb8/igt@perf_pmu@enable-race-vecs0.html * igt@prime_vgem@fence-wait-bsd2: - shard-iclb: [SKIP][87] ([fdo#109276]) -> [PASS][88] +17 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-iclb5/igt@prime_vgem@fence-wait-bsd2.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-iclb1/igt@prime_vgem@fence-wait-bsd2.html #### Warnings #### * igt@gem_ctx_isolation@vcs1-nonpriv: - shard-iclb: [SKIP][89] ([fdo#109276] / [fdo#112080]) -> [FAIL][90] ([IGT#28]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-iclb8/igt@gem_ctx_isolation@vcs1-nonpriv.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-iclb4/igt@gem_ctx_isolation@vcs1-nonpriv.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-snb: [DMESG-WARN][91] ([fdo#111870]) -> [DMESG-WARN][92] ([fdo#110789] / [fdo#111870]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-snb6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@i915_pm_dc@dc6-dpms: - shard-tglb: [SKIP][93] ([i915#468]) -> [FAIL][94] ([i915#454]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-tglb4/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_rpm@i2c: - shard-snb: [INCOMPLETE][95] ([i915#82]) -> [SKIP][96] ([fdo#109271]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-snb2/igt@i915_pm_rpm@i2c.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-snb4/igt@i915_pm_rpm@i2c.html * igt@kms_dp_dsc@basic-dsc-enable-edp: - shard-iclb: [SKIP][97] ([fdo#109349]) -> [DMESG-WARN][98] ([fdo#107724]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-iclb1/igt@kms_dp_dsc@basic-dsc-enable-edp.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-apl: [INCOMPLETE][99] ([fdo#103927]) -> [DMESG-WARN][100] ([i915#180]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-apl4/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_vblank@pipe-c-ts-continuation-suspend: - shard-kbl: [INCOMPLETE][101] ([fdo#103665]) -> [DMESG-WARN][102] ([i915#180]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-kbl4/igt@kms_vblank@pipe-c-ts-continuation-suspend.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-kbl4/igt@kms_vblank@pipe-c-ts-continuation-suspend.html * igt@runner@aborted: - shard-iclb: [FAIL][103] ([fdo#111093]) -> ([FAIL][104], [FAIL][105], [FAIL][106]) ([fdo#111093] / [i915#209]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7739/shard-iclb6/igt@runner@aborted.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-iclb4/igt@runner@aborted.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-iclb6/igt@runner@aborted.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/shard-iclb3/igt@runner@aborted.html [IGT#28]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/28 [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#108838]: https://bugs.freedesktop.org/show_bug.cgi?id=108838 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789 [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 [fdo#111093]: https://bugs.freedesktop.org/show_bug.cgi?id=111093 [fdo#111606]: https://bugs.freedesktop.org/show_bug.cgi?id=111606 [fdo#111677]: https://bugs.freedesktop.org/show_bug.cgi?id=111677 [fdo#111736]: https://bugs.freedesktop.org/show_bug.cgi?id=111736 [fdo#111764]: https://bugs.freedesktop.org/show_bug.cgi?id=111764 [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870 [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080 [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146 [fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#209]: https://gitlab.freedesktop.org/drm/intel/issues/209 [i915#413]: https://gitlab.freedesktop.org/drm/intel/issues/413 [i915#447]: https://gitlab.freedesktop.org/drm/intel/issues/447 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468 [i915#470]: https://gitlab.freedesktop.org/drm/intel/issues/470 [i915#472]: https://gitlab.freedesktop.org/drm/intel/issues/472 [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49 [i915#530]: https://gitlab.freedesktop.org/drm/intel/issues/530 [i915#534]: https://gitlab.freedesktop.org/drm/intel/issues/534 [i915#576]: https://gitlab.freedesktop.org/drm/intel/issues/576 [i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58 [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644 [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677 [i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694 [i915#707]: https://gitlab.freedesktop.org/drm/intel/issues/707 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#796]: https://gitlab.freedesktop.org/drm/intel/issues/796 [i915#82]: https://gitlab.freedesktop.org/drm/intel/issues/82 [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133 Participating hosts (11 -> 8) ------------------------------ Missing (3): pig-snb-2600 pig-glk-j5005 pig-skl-6260u Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5365 -> IGTPW_3923 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_7739: 757c25a357ea6e34d5eba9b6efee6f45e7961334 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3923: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/index.html IGT_5365: e9ec0ed63b25c86861ffac3c8601cc4d1b910b65 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3923/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2020-01-16 18:49 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-01-14 14:25 [igt-dev] [PATCH i-g-t 1/7] tests/kms_vrr: Fix compiler warn on 32bit Ville Syrjala 2020-01-14 14:25 ` [igt-dev] [PATCH i-g-t 2/7] tests/eviction_common: " Ville Syrjala 2020-01-14 14:25 ` [igt-dev] [PATCH i-g-t 3/7] tests/perf: " Ville Syrjala 2020-01-14 14:25 ` [igt-dev] [PATCH i-g-t 4/7] lib/intel_aux_pgtable: Fix uint64_t vs. long mismatch Ville Syrjala 2020-01-14 14:25 ` [igt-dev] [PATCH i-g-t 5/7] tests/kms_dp_tiled_display: Use labs() for long Ville Syrjala 2020-01-14 14:25 ` [igt-dev] [PATCH i-g-t 6/7] tools/cnl_compute_wrpll: Fix abs(unsigned) Ville Syrjala 2020-01-14 14:25 ` [igt-dev] [PATCH i-g-t 7/7] tools/intel_panel_fitter: " Ville Syrjala 2020-01-14 14:29 ` Chris Wilson 2020-01-14 15:24 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/7] tests/kms_vrr: Fix compiler warn on 32bit Patchwork 2020-01-16 18:49 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox