* [igt-dev] [PATCH i-g-t] tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom
@ 2022-04-01 7:25 Arjun Melkaveri
0 siblings, 0 replies; 10+ messages in thread
From: Arjun Melkaveri @ 2022-04-01 7:25 UTC (permalink / raw)
To: arjun.melkaveri, ramalingam.c, ashutosh.dixit, igt-dev
ctx was not initialized with all physical engines,
after device reopening.
This change would resolve assert issue seen in __do_evict.
Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
Cc: Ramalingam C <ramalingam.c@intel.com>
Signed-off-by: Arjun Melkaveri <arjun.melkaveri@intel.com>
---
tests/i915/gem_lmem_swapping.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/tests/i915/gem_lmem_swapping.c b/tests/i915/gem_lmem_swapping.c
index 43f0688f..fb260bcb 100644
--- a/tests/i915/gem_lmem_swapping.c
+++ b/tests/i915/gem_lmem_swapping.c
@@ -428,6 +428,9 @@ static void test_smem_oom(int i915,
fill_params(i915, ¶ms, region, 0, 1, true);
+ ctx = intel_ctx_create_all_physical(fd);
+ __gem_context_set_persistence(fd, ctx->id, false);
+
igt_install_exit_handler(smem_oom_exit_handler);
__do_evict(fd, ctx, ®ion->region, ¶ms,
params.seed + child + 1);
--
2.25.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH i-g-t] tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom
@ 2022-04-01 7:28 Arjun Melkaveri
2022-04-01 7:48 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom (rev2) Patchwork
` (4 more replies)
0 siblings, 5 replies; 10+ messages in thread
From: Arjun Melkaveri @ 2022-04-01 7:28 UTC (permalink / raw)
To: arjun.melkaveri, ramalingam.c, ashutosh.dixit, igt-dev
ctx was not initialized with all physical engines,
after device reopening.
This change would resolve assert issue seen in __do_evict.
v2: Added missing intel_ctx_destroy.
Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
Cc: Ramalingam C <ramalingam.c@intel.com>
Signed-off-by: Arjun Melkaveri <arjun.melkaveri@intel.com>
---
tests/i915/gem_lmem_swapping.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tests/i915/gem_lmem_swapping.c b/tests/i915/gem_lmem_swapping.c
index 43f0688f..432607b0 100644
--- a/tests/i915/gem_lmem_swapping.c
+++ b/tests/i915/gem_lmem_swapping.c
@@ -428,10 +428,14 @@ static void test_smem_oom(int i915,
fill_params(i915, ¶ms, region, 0, 1, true);
+ ctx = intel_ctx_create_all_physical(fd);
+ __gem_context_set_persistence(fd, ctx->id, false);
+
igt_install_exit_handler(smem_oom_exit_handler);
__do_evict(fd, ctx, ®ion->region, ¶ms,
params.seed + child + 1);
+ intel_ctx_destroy(fd, ctx);
close(fd);
}
--
2.25.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [igt-dev] ✗ GitLab.Pipeline: warning for tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom (rev2)
2022-04-01 7:28 [igt-dev] [PATCH i-g-t] tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom Arjun Melkaveri
@ 2022-04-01 7:48 ` Patchwork
2022-04-01 8:15 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2022-04-01 7:48 UTC (permalink / raw)
To: Arjun Melkaveri; +Cc: igt-dev
== Series Details ==
Series: tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom (rev2)
URL : https://patchwork.freedesktop.org/series/102055/
State : warning
== Summary ==
Pipeline status: FAILED.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/547570 for the overview.
test:ninja-test-mips has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/20597313):
Ok: 22
Expected Fail: 3
Fail: 287
Unexpected Pass: 0
Skipped: 0
Timeout: 0
Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
section_end:1648799026:step_script
section_start:1648799026:upload_artifacts_on_failure
Uploading artifacts for failed job
Uploading artifacts...
build: found 1712 matching files and directories
Uploading artifacts as "archive" to coordinator... 201 Created id=20597313 responseStatus=201 Created token=mggu1L5A
section_end:1648799036:upload_artifacts_on_failure
section_start:1648799036:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1648799036:cleanup_file_variables
ERROR: Job failed: exit code 1
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/547570
^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom (rev2)
2022-04-01 7:28 [igt-dev] [PATCH i-g-t] tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom Arjun Melkaveri
2022-04-01 7:48 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom (rev2) Patchwork
@ 2022-04-01 8:15 ` Patchwork
2022-04-01 8:29 ` [igt-dev] [PATCH i-g-t] tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom Ramalingam C
` (2 subsequent siblings)
4 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2022-04-01 8:15 UTC (permalink / raw)
To: Arjun Melkaveri; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 9449 bytes --]
== Series Details ==
Series: tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom (rev2)
URL : https://patchwork.freedesktop.org/series/102055/
State : success
== Summary ==
CI Bug Log - changes from IGT_6404 -> IGTPW_6853
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/index.html
Participating hosts (43 -> 43)
------------------------------
Additional (2): bat-adlm-1 fi-icl-u2
Missing (2): bat-jsl-2 fi-bdw-samus
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_6853:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_pm_rpm@basic-pci-d3-state:
- {bat-adlm-1}: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/bat-adlm-1/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@kms_frontbuffer_tracking@basic:
- {bat-dg2-9}: [DMESG-WARN][2] ([i915#5195]) -> [DMESG-WARN][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/bat-dg2-9/igt@kms_frontbuffer_tracking@basic.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/bat-dg2-9/igt@kms_frontbuffer_tracking@basic.html
Known issues
------------
Here are the changes found in IGTPW_6853 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@amdgpu/amd_cs_nop@fork-gfx0:
- fi-icl-u2: NOTRUN -> [SKIP][4] ([fdo#109315]) +17 similar issues
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/fi-icl-u2/igt@amdgpu/amd_cs_nop@fork-gfx0.html
* igt@amdgpu/amd_cs_nop@sync-fork-compute0:
- fi-snb-2600: NOTRUN -> [SKIP][5] ([fdo#109271]) +17 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/fi-snb-2600/igt@amdgpu/amd_cs_nop@sync-fork-compute0.html
* igt@gem_huc_copy@huc-copy:
- fi-icl-u2: NOTRUN -> [SKIP][6] ([i915#2190])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/fi-icl-u2/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-engines:
- fi-icl-u2: NOTRUN -> [SKIP][7] ([i915#4613]) +3 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/fi-icl-u2/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@i915_selftest@live@hangcheck:
- bat-dg1-6: NOTRUN -> [DMESG-FAIL][8] ([i915#4494] / [i915#4957])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/bat-dg1-6/igt@i915_selftest@live@hangcheck.html
* igt@kms_chamelium@hdmi-hpd-fast:
- fi-icl-u2: NOTRUN -> [SKIP][9] ([fdo#111827]) +8 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- fi-icl-u2: NOTRUN -> [SKIP][10] ([fdo#109278]) +2 similar issues
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1:
- fi-tgl-u2: [PASS][11] -> [DMESG-WARN][12] ([i915#402])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/fi-tgl-u2/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/fi-tgl-u2/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html
* igt@kms_force_connector_basic@force-load-detect:
- fi-icl-u2: NOTRUN -> [SKIP][13] ([fdo#109285])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/fi-icl-u2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_setmode@basic-clone-single-crtc:
- fi-icl-u2: NOTRUN -> [SKIP][14] ([i915#3555])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/fi-icl-u2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-userptr:
- fi-icl-u2: NOTRUN -> [SKIP][15] ([i915#3301])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/fi-icl-u2/igt@prime_vgem@basic-userptr.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s3@smem:
- {fi-rkl-11600}: [INCOMPLETE][16] ([i915#5127]) -> [PASS][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/fi-rkl-11600/igt@gem_exec_suspend@basic-s3@smem.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/fi-rkl-11600/igt@gem_exec_suspend@basic-s3@smem.html
* igt@i915_selftest@live@gt_engines:
- bat-dg1-6: [INCOMPLETE][18] ([i915#4418]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/bat-dg1-6/igt@i915_selftest@live@gt_engines.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/bat-dg1-6/igt@i915_selftest@live@gt_engines.html
* igt@i915_selftest@live@hangcheck:
- fi-snb-2600: [INCOMPLETE][20] ([i915#3921]) -> [PASS][21]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/fi-snb-2600/igt@i915_selftest@live@hangcheck.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/fi-snb-2600/igt@i915_selftest@live@hangcheck.html
* igt@kms_busy@basic@flip:
- fi-tgl-u2: [DMESG-WARN][22] ([i915#402]) -> [PASS][23] +1 similar issue
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/fi-tgl-u2/igt@kms_busy@basic@flip.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/fi-tgl-u2/igt@kms_busy@basic@flip.html
* igt@kms_frontbuffer_tracking@basic:
- fi-cfl-8109u: [DMESG-FAIL][24] ([i915#295]) -> [PASS][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/fi-cfl-8109u/igt@kms_frontbuffer_tracking@basic.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/fi-cfl-8109u/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b:
- fi-cfl-8109u: [DMESG-WARN][26] ([i915#295]) -> [PASS][27] +9 similar issues
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c:
- fi-cfl-8109u: [DMESG-WARN][28] ([i915#295] / [i915#5341]) -> [PASS][29]
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#295]: https://gitlab.freedesktop.org/drm/intel/issues/295
[i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921
[i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4418]: https://gitlab.freedesktop.org/drm/intel/issues/4418
[i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957
[i915#5127]: https://gitlab.freedesktop.org/drm/intel/issues/5127
[i915#5195]: https://gitlab.freedesktop.org/drm/intel/issues/5195
[i915#5270]: https://gitlab.freedesktop.org/drm/intel/issues/5270
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5341]: https://gitlab.freedesktop.org/drm/intel/issues/5341
[i915#5356]: https://gitlab.freedesktop.org/drm/intel/issues/5356
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6404 -> IGTPW_6853
CI-20190529: 20190529
CI_DRM_11436: 76c1bd460d28ba331f0596c92c2201335e254ca2 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_6853: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/index.html
IGT_6404: b6805229aaf5c1d6c85ec35eebf3a41f8a12f66c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/index.html
[-- Attachment #2: Type: text/html, Size: 9887 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom
2022-04-01 7:28 [igt-dev] [PATCH i-g-t] tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom Arjun Melkaveri
2022-04-01 7:48 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom (rev2) Patchwork
2022-04-01 8:15 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2022-04-01 8:29 ` Ramalingam C
2022-04-01 8:55 ` Melkaveri, Arjun
2022-04-01 9:10 ` Matthew Auld
2022-04-01 9:32 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom (rev2) Patchwork
4 siblings, 1 reply; 10+ messages in thread
From: Ramalingam C @ 2022-04-01 8:29 UTC (permalink / raw)
To: Arjun Melkaveri; +Cc: igt-dev
On 2022-04-01 at 12:58:26 +0530, Arjun Melkaveri wrote:
> ctx was not initialized with all physical engines,
> after device reopening.
> This change would resolve assert issue seen in __do_evict.
>
> v2: Added missing intel_ctx_destroy.
>
> Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
> Cc: Ramalingam C <ramalingam.c@intel.com>
> Signed-off-by: Arjun Melkaveri <arjun.melkaveri@intel.com>
> ---
> tests/i915/gem_lmem_swapping.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/tests/i915/gem_lmem_swapping.c b/tests/i915/gem_lmem_swapping.c
> index 43f0688f..432607b0 100644
> --- a/tests/i915/gem_lmem_swapping.c
> +++ b/tests/i915/gem_lmem_swapping.c
> @@ -428,10 +428,14 @@ static void test_smem_oom(int i915,
>
> fill_params(i915, ¶ms, region, 0, 1, true);
>
> + ctx = intel_ctx_create_all_physical(fd);
> + __gem_context_set_persistence(fd, ctx->id, false);
> +
igt fixture already creates same kind of context and pass it here. Could
we reuse it across all the child and parent processes?
Or we need independed context only?
Ram.
> igt_install_exit_handler(smem_oom_exit_handler);
> __do_evict(fd, ctx, ®ion->region, ¶ms,
> params.seed + child + 1);
>
> + intel_ctx_destroy(fd, ctx);
> close(fd);
> }
>
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom
2022-04-01 8:29 ` [igt-dev] [PATCH i-g-t] tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom Ramalingam C
@ 2022-04-01 8:55 ` Melkaveri, Arjun
2022-04-01 9:09 ` Ramalingam C
0 siblings, 1 reply; 10+ messages in thread
From: Melkaveri, Arjun @ 2022-04-01 8:55 UTC (permalink / raw)
To: Ramalingam C; +Cc: igt-dev
On Fri, Apr 01, 2022 at 01:59:28PM +0530, Ramalingam C wrote:
> On 2022-04-01 at 12:58:26 +0530, Arjun Melkaveri wrote:
> > ctx was not initialized with all physical engines,
> > after device reopening.
> > This change would resolve assert issue seen in __do_evict.
> >
> > v2: Added missing intel_ctx_destroy.
> >
> > Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
> > Cc: Ramalingam C <ramalingam.c@intel.com>
> > Signed-off-by: Arjun Melkaveri <arjun.melkaveri@intel.com>
> > ---
> > tests/i915/gem_lmem_swapping.c | 4 ++++
> > 1 file changed, 4 insertions(+)
> >
> > diff --git a/tests/i915/gem_lmem_swapping.c b/tests/i915/gem_lmem_swapping.c
> > index 43f0688f..432607b0 100644
> > --- a/tests/i915/gem_lmem_swapping.c
> > +++ b/tests/i915/gem_lmem_swapping.c
> > @@ -428,10 +428,14 @@ static void test_smem_oom(int i915,
> >
> > fill_params(i915, ¶ms, region, 0, 1, true);
> >
> > + ctx = intel_ctx_create_all_physical(fd);
> > + __gem_context_set_persistence(fd, ctx->id, false);
> > +
> igt fixture already creates same kind of context and pass it here. Could
> we reuse it across all the child and parent processes?
>
> Or we need independed context only?
>
> Ram.
As we are repoening device , this has to be independed context
"int fd = gem_reopen_driver(i915);"
>
> > igt_install_exit_handler(smem_oom_exit_handler);
> > __do_evict(fd, ctx, ®ion->region, ¶ms,
> > params.seed + child + 1);
> >
> > + intel_ctx_destroy(fd, ctx);
> > close(fd);
> > }
> >
> > --
> > 2.25.1
> >
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom
2022-04-01 8:55 ` Melkaveri, Arjun
@ 2022-04-01 9:09 ` Ramalingam C
0 siblings, 0 replies; 10+ messages in thread
From: Ramalingam C @ 2022-04-01 9:09 UTC (permalink / raw)
To: Melkaveri, Arjun; +Cc: igt-dev
On 2022-04-01 at 14:25:07 +0530, Melkaveri, Arjun wrote:
> On Fri, Apr 01, 2022 at 01:59:28PM +0530, Ramalingam C wrote:
> > On 2022-04-01 at 12:58:26 +0530, Arjun Melkaveri wrote:
> > > ctx was not initialized with all physical engines,
> > > after device reopening.
> > > This change would resolve assert issue seen in __do_evict.
> > >
> > > v2: Added missing intel_ctx_destroy.
> > >
> > > Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
> > > Cc: Ramalingam C <ramalingam.c@intel.com>
> > > Signed-off-by: Arjun Melkaveri <arjun.melkaveri@intel.com>
> > > ---
> > > tests/i915/gem_lmem_swapping.c | 4 ++++
> > > 1 file changed, 4 insertions(+)
> > >
> > > diff --git a/tests/i915/gem_lmem_swapping.c b/tests/i915/gem_lmem_swapping.c
> > > index 43f0688f..432607b0 100644
> > > --- a/tests/i915/gem_lmem_swapping.c
> > > +++ b/tests/i915/gem_lmem_swapping.c
> > > @@ -428,10 +428,14 @@ static void test_smem_oom(int i915,
> > >
> > > fill_params(i915, ¶ms, region, 0, 1, true);
> > >
> > > + ctx = intel_ctx_create_all_physical(fd);
> > > + __gem_context_set_persistence(fd, ctx->id, false);
> > > +
> > igt fixture already creates same kind of context and pass it here. Could
> > we reuse it across all the child and parent processes?
> >
> > Or we need independed context only?
> >
> > Ram.
> As we are repoening device , this has to be independed context
> "int fd = gem_reopen_driver(i915);"
Ok. Yes got it.
Looks good to me.
Reviewed-by: Ramalingam C <ramalingam.c@intel.com>
> >
> > > igt_install_exit_handler(smem_oom_exit_handler);
> > > __do_evict(fd, ctx, ®ion->region, ¶ms,
> > > params.seed + child + 1);
> > >
> > > + intel_ctx_destroy(fd, ctx);
> > > close(fd);
> > > }
> > >
> > > --
> > > 2.25.1
> > >
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom
2022-04-01 7:28 [igt-dev] [PATCH i-g-t] tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom Arjun Melkaveri
` (2 preceding siblings ...)
2022-04-01 8:29 ` [igt-dev] [PATCH i-g-t] tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom Ramalingam C
@ 2022-04-01 9:10 ` Matthew Auld
2022-04-01 17:52 ` Dixit, Ashutosh
2022-04-01 9:32 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom (rev2) Patchwork
4 siblings, 1 reply; 10+ messages in thread
From: Matthew Auld @ 2022-04-01 9:10 UTC (permalink / raw)
To: Arjun Melkaveri; +Cc: igt-dev
On Fri, 1 Apr 2022 at 08:28, Arjun Melkaveri <arjun.melkaveri@intel.com> wrote:
>
> ctx was not initialized with all physical engines,
> after device reopening.
> This change would resolve assert issue seen in __do_evict.
>
> v2: Added missing intel_ctx_destroy.
>
Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/5528 ?
> Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
> Cc: Ramalingam C <ramalingam.c@intel.com>
> Signed-off-by: Arjun Melkaveri <arjun.melkaveri@intel.com>
Sorry for breaking this,
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
> ---
> tests/i915/gem_lmem_swapping.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/tests/i915/gem_lmem_swapping.c b/tests/i915/gem_lmem_swapping.c
> index 43f0688f..432607b0 100644
> --- a/tests/i915/gem_lmem_swapping.c
> +++ b/tests/i915/gem_lmem_swapping.c
> @@ -428,10 +428,14 @@ static void test_smem_oom(int i915,
>
> fill_params(i915, ¶ms, region, 0, 1, true);
>
> + ctx = intel_ctx_create_all_physical(fd);
> + __gem_context_set_persistence(fd, ctx->id, false);
> +
> igt_install_exit_handler(smem_oom_exit_handler);
> __do_evict(fd, ctx, ®ion->region, ¶ms,
> params.seed + child + 1);
>
> + intel_ctx_destroy(fd, ctx);
> close(fd);
> }
>
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom (rev2)
2022-04-01 7:28 [igt-dev] [PATCH i-g-t] tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom Arjun Melkaveri
` (3 preceding siblings ...)
2022-04-01 9:10 ` Matthew Auld
@ 2022-04-01 9:32 ` Patchwork
4 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2022-04-01 9:32 UTC (permalink / raw)
To: Melkaveri, Arjun; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 30280 bytes --]
== Series Details ==
Series: tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom (rev2)
URL : https://patchwork.freedesktop.org/series/102055/
State : failure
== Summary ==
CI Bug Log - changes from IGT_6404_full -> IGTPW_6853_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_6853_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_6853_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://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/index.html
Participating hosts (9 -> 8)
------------------------------
Missing (1): shard-skl
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_6853_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@active:
- shard-tglb: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/shard-tglb6/igt@i915_selftest@live@active.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb2/igt@i915_selftest@live@active.html
Known issues
------------
Here are the changes found in IGTPW_6853_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@feature_discovery@display-4x:
- shard-tglb: NOTRUN -> [SKIP][3] ([i915#1839]) +1 similar issue
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb6/igt@feature_discovery@display-4x.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglb: NOTRUN -> [SKIP][4] ([i915#3555] / [i915#5325]) +1 similar issue
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb3/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-copy-inplace:
- shard-iclb: NOTRUN -> [SKIP][5] ([i915#5327])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb4/igt@gem_ccs@block-copy-inplace.html
* igt@gem_ccs@suspend-resume:
- shard-tglb: NOTRUN -> [SKIP][6] ([i915#5325])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb5/igt@gem_ccs@suspend-resume.html
* igt@gem_ctx_persistence@legacy-engines-mixed:
- shard-snb: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#1099]) +2 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-snb5/igt@gem_ctx_persistence@legacy-engines-mixed.html
* igt@gem_eio@unwedge-stress:
- shard-tglb: NOTRUN -> [TIMEOUT][8] ([i915#3063] / [i915#3648])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb6/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-deadline:
- shard-kbl: NOTRUN -> [FAIL][9] ([i915#2846])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-kbl6/igt@gem_exec_fair@basic-deadline.html
- shard-apl: NOTRUN -> [FAIL][10] ([i915#2846])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-apl8/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-tglb: NOTRUN -> [FAIL][11] ([i915#2842]) +1 similar issue
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb3/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglb: [PASS][12] -> [FAIL][13] ([i915#2842])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/shard-tglb2/igt@gem_exec_fair@basic-none-share@rcs0.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb7/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-apl: [PASS][14] -> [FAIL][15] ([i915#2842]) +1 similar issue
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/shard-apl2/igt@gem_exec_fair@basic-none@vcs0.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-apl7/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-pace@vcs0:
- shard-kbl: [PASS][16] -> [FAIL][17] ([i915#2842])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-kbl3/igt@gem_exec_fair@basic-pace@vcs0.html
* igt@gem_exec_fair@basic-pace@vcs1:
- shard-iclb: NOTRUN -> [FAIL][18] ([i915#2842])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs1.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-iclb: [PASS][19] -> [FAIL][20] ([i915#2842])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/shard-iclb7/igt@gem_exec_fair@basic-pace@vecs0.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb1/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-iclb: NOTRUN -> [SKIP][21] ([fdo#109313])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-tglb: NOTRUN -> [SKIP][22] ([fdo#109313])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb6/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_params@no-blt:
- shard-tglb: NOTRUN -> [SKIP][23] ([fdo#109283]) +1 similar issue
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb3/igt@gem_exec_params@no-blt.html
- shard-iclb: NOTRUN -> [SKIP][24] ([fdo#109283]) +1 similar issue
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb8/igt@gem_exec_params@no-blt.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-apl: [PASS][25] -> [DMESG-WARN][26] ([i915#180]) +3 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/shard-apl6/igt@gem_exec_suspend@basic-s3@smem.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-apl2/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_huc_copy@huc-copy:
- shard-tglb: [PASS][27] -> [SKIP][28] ([i915#2190])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/shard-tglb2/igt@gem_huc_copy@huc-copy.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb7/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- shard-iclb: NOTRUN -> [SKIP][29] ([i915#4613])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb2/igt@gem_lmem_swapping@basic.html
- shard-tglb: NOTRUN -> [SKIP][30] ([i915#4613]) +1 similar issue
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb6/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-apl: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#4613])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-apl1/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-kbl: NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#4613]) +2 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-kbl7/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-kbl: NOTRUN -> [SKIP][33] ([fdo#109271]) +264 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-kbl7/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-tglb: NOTRUN -> [SKIP][34] ([i915#4270]) +4 similar issues
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb6/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-iclb: NOTRUN -> [SKIP][35] ([i915#4270]) +1 similar issue
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb7/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
- shard-iclb: NOTRUN -> [SKIP][36] ([i915#768]) +3 similar issues
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb5/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglb: NOTRUN -> [SKIP][37] ([i915#3297]) +1 similar issue
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb5/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-iclb: NOTRUN -> [SKIP][38] ([i915#3297])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@input-checking:
- shard-apl: NOTRUN -> [DMESG-WARN][39] ([i915#4991])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-apl4/igt@gem_userptr_blits@input-checking.html
* igt@gen7_exec_parse@basic-offset:
- shard-tglb: NOTRUN -> [SKIP][40] ([fdo#109289]) +3 similar issues
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb7/igt@gen7_exec_parse@basic-offset.html
* igt@gen7_exec_parse@bitmasks:
- shard-iclb: NOTRUN -> [SKIP][41] ([fdo#109289]) +3 similar issues
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb2/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@allowed-all:
- shard-kbl: [PASS][42] -> [DMESG-WARN][43] ([i915#1436] / [i915#716])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/shard-kbl6/igt@gen9_exec_parse@allowed-all.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-kbl6/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@bb-chained:
- shard-iclb: NOTRUN -> [SKIP][44] ([i915#2856]) +3 similar issues
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb6/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-start-out:
- shard-tglb: NOTRUN -> [SKIP][45] ([i915#2527] / [i915#2856]) +3 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb6/igt@gen9_exec_parse@bb-start-out.html
* igt@i915_pm_dc@dc3co-vpb-simulation:
- shard-apl: NOTRUN -> [SKIP][46] ([fdo#109271] / [i915#658]) +1 similar issue
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-apl1/igt@i915_pm_dc@dc3co-vpb-simulation.html
* igt@i915_pm_dc@dc6-psr:
- shard-iclb: [PASS][47] -> [FAIL][48] ([i915#454])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/shard-iclb6/igt@i915_pm_dc@dc6-psr.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb6/igt@i915_pm_dc@dc6-psr.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-tglb: NOTRUN -> [SKIP][49] ([fdo#109289] / [fdo#111719])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb5/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-iclb: NOTRUN -> [SKIP][50] ([fdo#109293] / [fdo#109506]) +1 similar issue
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb7/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
- shard-tglb: NOTRUN -> [SKIP][51] ([fdo#109506] / [i915#2411]) +1 similar issue
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb6/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-iclb: NOTRUN -> [SKIP][52] ([fdo#110892])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb8/igt@i915_pm_rpm@modeset-non-lpsp.html
- shard-tglb: NOTRUN -> [SKIP][53] ([fdo#111644] / [i915#1397] / [i915#2411])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb3/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@i915_selftest@live@late_gt_pm:
- shard-apl: [PASS][54] -> [DMESG-FAIL][55] ([i915#2927])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/shard-apl7/igt@i915_selftest@live@late_gt_pm.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-apl4/igt@i915_selftest@live@late_gt_pm.html
* igt@i915_selftest@mock@sanitycheck:
- shard-snb: [PASS][56] -> [SKIP][57] ([fdo#109271])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/shard-snb5/igt@i915_selftest@mock@sanitycheck.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-snb7/igt@i915_selftest@mock@sanitycheck.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-snb: NOTRUN -> [SKIP][58] ([fdo#109271]) +140 similar issues
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-snb2/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
- shard-tglb: NOTRUN -> [SKIP][59] ([i915#5286]) +4 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb6/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
- shard-iclb: NOTRUN -> [SKIP][60] ([i915#5286]) +2 similar issues
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb5/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-tglb: NOTRUN -> [SKIP][61] ([fdo#111614]) +4 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb2/igt@kms_big_fb@linear-8bpp-rotate-270.html
- shard-iclb: NOTRUN -> [SKIP][62] ([fdo#110725] / [fdo#111614]) +1 similar issue
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb2/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-apl: NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#3777]) +2 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-apl1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
- shard-glk: NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#3777])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-glk4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-kbl: NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#3777]) +2 similar issues
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-kbl4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-tglb: NOTRUN -> [SKIP][66] ([fdo#111615]) +4 similar issues
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb3/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-iclb: NOTRUN -> [SKIP][67] ([fdo#110723]) +2 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb1/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_busy@basic@flip:
- shard-glk: [PASS][68] -> [DMESG-WARN][69] ([i915#118] / [i915#1888])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/shard-glk9/igt@kms_busy@basic@flip.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-glk2/igt@kms_busy@basic@flip.html
* igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
- shard-kbl: NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#3886]) +12 similar issues
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-kbl6/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][71] ([fdo#109271] / [i915#3886]) +5 similar issues
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-apl4/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
- shard-tglb: NOTRUN -> [SKIP][72] ([i915#3689] / [i915#3886]) +5 similar issues
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb6/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
- shard-iclb: NOTRUN -> [SKIP][73] ([fdo#109278] / [i915#3886]) +8 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb7/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
- shard-glk: NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#3886]) +4 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-glk8/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][75] ([fdo#111615] / [i915#3689]) +4 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][76] ([i915#3689]) +4 similar issues
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb3/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html
* igt@kms_chamelium@hdmi-hpd-enable-disable-mode:
- shard-iclb: NOTRUN -> [SKIP][77] ([fdo#109284] / [fdo#111827]) +9 similar issues
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb2/igt@kms_chamelium@hdmi-hpd-enable-disable-mode.html
- shard-snb: NOTRUN -> [SKIP][78] ([fdo#109271] / [fdo#111827]) +6 similar issues
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-snb5/igt@kms_chamelium@hdmi-hpd-enable-disable-mode.html
* igt@kms_color@pipe-d-ctm-0-75:
- shard-iclb: NOTRUN -> [SKIP][79] ([fdo#109278] / [i915#1149])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb4/igt@kms_color@pipe-d-ctm-0-75.html
* igt@kms_color_chamelium@pipe-a-ctm-0-75:
- shard-kbl: NOTRUN -> [SKIP][80] ([fdo#109271] / [fdo#111827]) +18 similar issues
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-kbl3/igt@kms_color_chamelium@pipe-a-ctm-0-75.html
* igt@kms_color_chamelium@pipe-d-ctm-max:
- shard-tglb: NOTRUN -> [SKIP][81] ([fdo#109284] / [fdo#111827]) +17 similar issues
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb2/igt@kms_color_chamelium@pipe-d-ctm-max.html
- shard-apl: NOTRUN -> [SKIP][82] ([fdo#109271] / [fdo#111827]) +7 similar issues
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-apl4/igt@kms_color_chamelium@pipe-d-ctm-max.html
* igt@kms_color_chamelium@pipe-d-degamma:
- shard-glk: NOTRUN -> [SKIP][83] ([fdo#109271] / [fdo#111827]) +5 similar issues
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-glk7/igt@kms_color_chamelium@pipe-d-degamma.html
* igt@kms_color_chamelium@pipe-d-gamma:
- shard-iclb: NOTRUN -> [SKIP][84] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb8/igt@kms_color_chamelium@pipe-d-gamma.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglb: NOTRUN -> [SKIP][85] ([i915#3116] / [i915#3299]) +1 similar issue
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb3/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-iclb: NOTRUN -> [SKIP][86] ([i915#3116]) +1 similar issue
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb4/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@type1:
- shard-tglb: NOTRUN -> [SKIP][87] ([i915#1063])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb1/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@pipe-b-cursor-32x10-random:
- shard-tglb: NOTRUN -> [SKIP][88] ([i915#3359]) +9 similar issues
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb1/igt@kms_cursor_crc@pipe-b-cursor-32x10-random.html
* igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen:
- shard-tglb: NOTRUN -> [SKIP][89] ([i915#3319]) +4 similar issues
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb6/igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen.html
* igt@kms_cursor_crc@pipe-b-cursor-512x512-onscreen:
- shard-iclb: NOTRUN -> [SKIP][90] ([fdo#109278] / [fdo#109279]) +7 similar issues
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb6/igt@kms_cursor_crc@pipe-b-cursor-512x512-onscreen.html
* igt@kms_cursor_crc@pipe-b-cursor-max-size-offscreen:
- shard-glk: NOTRUN -> [SKIP][91] ([fdo#109271]) +73 similar issues
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-glk5/igt@kms_cursor_crc@pipe-b-cursor-max-size-offscreen.html
* igt@kms_cursor_crc@pipe-c-cursor-512x512-random:
- shard-tglb: NOTRUN -> [SKIP][92] ([fdo#109279] / [i915#3359]) +10 similar issues
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb5/igt@kms_cursor_crc@pipe-c-cursor-512x512-random.html
* igt@kms_cursor_crc@pipe-d-cursor-128x128-onscreen:
- shard-apl: NOTRUN -> [SKIP][93] ([fdo#109271]) +110 similar issues
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-apl1/igt@kms_cursor_crc@pipe-d-cursor-128x128-onscreen.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-iclb: NOTRUN -> [SKIP][94] ([fdo#109274] / [fdo#109278]) +1 similar issue
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb1/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-tglb: NOTRUN -> [SKIP][95] ([i915#4103]) +1 similar issue
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-4tiled:
- shard-iclb: NOTRUN -> [SKIP][96] ([i915#5287]) +2 similar issues
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb7/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-4tiled.html
* igt@kms_draw_crc@draw-method-xrgb2101010-blt-4tiled:
- shard-tglb: NOTRUN -> [SKIP][97] ([i915#5287]) +1 similar issue
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb3/igt@kms_draw_crc@draw-method-xrgb2101010-blt-4tiled.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-tglb: NOTRUN -> [SKIP][98] ([fdo#109274] / [fdo#111825]) +8 similar issues
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb6/igt@kms_flip@2x-nonexisting-fb-interruptible.html
- shard-iclb: NOTRUN -> [SKIP][99] ([fdo#109274]) +3 similar issues
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb5/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2:
- shard-glk: [PASS][100] -> [FAIL][101] ([i915#79])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/shard-glk8/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-glk8/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-iclb: [PASS][102] -> [SKIP][103] ([i915#3701])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/shard-iclb5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-tglb: NOTRUN -> [SKIP][104] ([fdo#109280] / [fdo#111825]) +43 similar issues
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglb: NOTRUN -> [SKIP][105] ([i915#5439])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
- shard-iclb: NOTRUN -> [SKIP][106] ([fdo#109280]) +26 similar issues
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglb: NOTRUN -> [SKIP][107] ([i915#3555]) +1 similar issue
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb7/igt@kms_hdr@static-toggle-suspend.html
- shard-iclb: NOTRUN -> [SKIP][108] ([i915#3555])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c:
- shard-snb: NOTRUN -> [SKIP][109] ([fdo#109271] / [i915#5341])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-snb5/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c.html
* igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence:
- shard-kbl: NOTRUN -> [SKIP][110] ([fdo#109271] / [i915#533])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-kbl6/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence.html
- shard-apl: NOTRUN -> [SKIP][111] ([fdo#109271] / [i915#533])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-apl6/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-7efc:
- shard-apl: NOTRUN -> [FAIL][112] ([fdo#108145] / [i915#265])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-7efc.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
- shard-kbl: NOTRUN -> [FAIL][113] ([i915#265]) +1 similar issue
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-kbl3/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
- shard-kbl: NOTRUN -> [FAIL][114] ([fdo#108145] / [i915#265]) +2 similar issues
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-kbl7/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max:
- shard-iclb: NOTRUN -> [SKIP][115] ([fdo#109278]) +34 similar issues
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb5/igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max.html
* igt@kms_plane_lowres@pipe-b-tiling-yf:
- shard-tglb: NOTRUN -> [SKIP][116] ([fdo#111615] / [fdo#112054])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb5/igt@kms_plane_lowres@pipe-b-tiling-yf.html
* igt@kms_plane_lowres@pipe-c-tiling-none:
- shard-iclb: NOTRUN -> [SKIP][117] ([i915#3536])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb8/igt@kms_plane_lowres@pipe-c-tiling-none.html
- shard-tglb: NOTRUN -> [SKIP][118] ([i915#3536]) +2 similar issues
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb3/igt@kms_plane_lowres@pipe-c-tiling-none.html
* igt@kms_plane_lowres@pipe-d-tiling-4:
- shard-tglb: NOTRUN -> [SKIP][119] ([i915#5288])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb3/igt@kms_plane_lowres@pipe-d-tiling-4.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-edp-1-planes-upscale-downscale:
- shard-iclb: NOTRUN -> [SKIP][120] ([i915#5235]) +5 similar issues
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-edp-1-planes-upscale-downscale.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-edp-1-planes-upscale-downscale:
- shard-tglb: NOTRUN -> [SKIP][121] ([i915#5235]) +7 similar issues
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-edp-1-planes-upscale-downscale.html
* igt@kms_plane_scaling@scaler-with-pixel-format-unity-scaling@pipe-b-edp-1-scaler-with-pixel-format:
- shard-iclb: [PASS][122] -> [INCOMPLETE][123] ([i915#5395])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6404/shard-iclb7/igt@kms_plane_scaling@scaler-with-pixel-format-unity-scaling@pipe-b-edp-1-scaler-with-pixel-format.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb2/igt@kms_plane_scaling@scaler-with-pixel-format-unity-scaling@pipe-b-edp-1-scaler-with-pixel-format.html
* igt@kms_plane_scaling@upscale-with-rotation-factor-0-25@pipe-b-edp-1-upscale-with-rotation:
- shard-iclb: NOTRUN -> [SKIP][124] ([i915#5176]) +2 similar issues
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb1/igt@kms_plane_scaling@upscale-with-rotation-factor-0-25@pipe-b-edp-1-upscale-with-rotation.html
* igt@kms_plane_scaling@upscale-with-rotation-factor-0-25@pipe-d-edp-1-upscale-with-rotation:
- shard-tglb: NOTRUN -> [SKIP][125] ([i915#5176]) +3 similar issues
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-tglb3/igt@kms_plane_scaling@upscale-with-rotation-factor-0-25@pipe-d-edp-1-upscale-with-rotation.html
* igt@kms_prime@basic-crc@first-to-second:
- shard-iclb: NOTRUN -> [SKIP][126] ([i915#1836])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/shard-iclb5/igt@kms_prime@basic-crc@first-to-second.html
-
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6853/index.html
[-- Attachment #2: Type: text/html, Size: 33857 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom
2022-04-01 9:10 ` Matthew Auld
@ 2022-04-01 17:52 ` Dixit, Ashutosh
0 siblings, 0 replies; 10+ messages in thread
From: Dixit, Ashutosh @ 2022-04-01 17:52 UTC (permalink / raw)
To: Matthew Auld; +Cc: igt-dev
On Fri, 01 Apr 2022 02:10:40 -0700, Matthew Auld wrote:
>
> On Fri, 1 Apr 2022 at 08:28, Arjun Melkaveri <arjun.melkaveri@intel.com> wrote:
> >
> > ctx was not initialized with all physical engines,
> > after device reopening.
> > This change would resolve assert issue seen in __do_evict.
> >
> > v2: Added missing intel_ctx_destroy.
> >
> Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/5528 ?
>
> > Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
> > Cc: Ramalingam C <ramalingam.c@intel.com>
> > Signed-off-by: Arjun Melkaveri <arjun.melkaveri@intel.com>
>
> Sorry for breaking this,
> Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Merged and close the GL issue above.
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2022-04-01 17:52 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-01 7:28 [igt-dev] [PATCH i-g-t] tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom Arjun Melkaveri
2022-04-01 7:48 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom (rev2) Patchwork
2022-04-01 8:15 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2022-04-01 8:29 ` [igt-dev] [PATCH i-g-t] tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom Ramalingam C
2022-04-01 8:55 ` Melkaveri, Arjun
2022-04-01 9:09 ` Ramalingam C
2022-04-01 9:10 ` Matthew Auld
2022-04-01 17:52 ` Dixit, Ashutosh
2022-04-01 9:32 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom (rev2) Patchwork
-- strict thread matches above, loose matches on Subject: below --
2022-04-01 7:25 [igt-dev] [PATCH i-g-t] tests/i915/gem_lmem_swapping: Fix bug in test_smem_oom Arjun Melkaveri
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox