Summary: | [CI][SHARDS]igt@gem_busy@close-race - dmesg-fail - general protection fault: 0000 [#1] PREEMPT SMP NOPTI | ||
---|---|---|---|
Product: | DRI | Reporter: | Lakshmi <lakshminarayana.vudum> |
Component: | DRM/Intel | Assignee: | Intel GFX Bugs mailing list <intel-gfx-bugs> |
Status: | RESOLVED FIXED | QA Contact: | Intel GFX Bugs mailing list <intel-gfx-bugs> |
Severity: | normal | ||
Priority: | medium | CC: | intel-gfx-bugs |
Version: | DRI git | ||
Hardware: | Other | ||
OS: | All | ||
Whiteboard: | ReadyForDev | ||
i915 platform: | BXT, HSW, ICL, KBL, SKL | i915 features: | GEM/Other |
Description
Lakshmi
2019-07-04 11:58:28 UTC
The CI Bug Log issue associated to this bug has been updated. ### New filters associated * APL ICL: igt@gem_busy@close-race - dmesg-fail - general protection fault: 0000 [#1] PREEMPT SMP NOPTI - https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13491/shard-iclb6/igt@gem_busy@close-race.html - https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13503/shard-apl3/igt@gem_busy@close-race.html - https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13503/shard-iclb4/igt@gem_busy@close-race.html - https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6403/shard-apl3/igt@gem_busy@close-race.html - https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6403/shard-iclb5/igt@gem_busy@close-race.html - https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6404/shard-iclb8/igt@gem_busy@close-race.html - https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5080/shard-iclb2/igt@gem_busy@close-race.html A CI Bug Log filter associated to this bug has been updated: {- APL ICL: igt@gem_busy@close-race - dmesg-fail - general protection fault: 0000 [#1] PREEMPT SMP NOPTI -} {+ HSW APL SKL KBL ICL: igt@gem_busy@close-race - dmesg-fail - general protection fault: 0000 [#1] PREEMPT SMP NOPTI +} New failures caught by the filter: * https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6403/shard-kbl3/igt@gem_busy@close-race.html * https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6404/shard-skl1/igt@gem_busy@close-race.html * https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5081/shard-hsw5/igt@gem_busy@close-race.html A CI Bug Log filter associated to this bug has been updated: {- HSW APL SKL KBL ICL: igt@gem_busy@close-race - dmesg-fail - general protection fault: 0000 [#1] PREEMPT SMP NOPTI -} {+ HSW APL SKL KBL ICL: igt@gem_busy@close-race - dmesg-fail - general protection fault: 0000 [#1] PREEMPT SMP (NOPTI|PTI) +} No new failures caught with the new filter The CI Bug Log issue associated to this bug has been updated. ### New filters associated * HSW APL KBL ICL: igt@runner@aborted - fail - Previous test: gem_busy (close-race) - https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13491/shard-hsw2/igt@runner@aborted.html - https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13491/shard-iclb6/igt@runner@aborted.html - https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13503/shard-apl3/igt@runner@aborted.html - https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13503/shard-iclb4/igt@runner@aborted.html - https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6403/shard-apl3/igt@runner@aborted.html - https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6403/shard-iclb5/igt@runner@aborted.html - https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6403/shard-kbl3/igt@runner@aborted.html - https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6404/shard-iclb8/igt@runner@aborted.html - https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5080/shard-iclb2/igt@runner@aborted.html - https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5081/shard-hsw5/igt@runner@aborted.html - https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3232/shard-hsw5/igt@runner@aborted.html commit 0c159ffef628fa94d0f4f9128e7f2b6f2b5e86ef (HEAD -> drm-intel-next-queued, drm-intel/for-linux-next, drm-intel/drm-intel-next-queued) Author: Chris Wilson <chris@chris-wilson.co.uk> Date: Wed Jul 3 19:06:01 2019 +0100 drm/i915/gem: Defer obj->base.resv fini until RCU callback Since reservation_object_fini() does an immediate free, rather than kfree_rcu as normal, we have to delay the release until after the RCU grace period has elapsed (i.e. from the rcu cleanup callback) so that we can rely on the RCU protected access to the fences while the object is a zombie. i915_gem_busy_ioctl relies on having an RCU barrier to protect the reservation in order to avoid having to take a reference and strong memory barriers. v2: Order is important; only release after putting the pages! Fixes: c03467ba40f7 ("drm/i915/gem: Free pages before rcu-freeing the object") Testcase: igt/gem_busy/close-race Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: Matthew Auld <matthew.auld@intel.com> Reviewed-by: Mika Kuoppala <mika.kuoppala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20190703180601.10950-1-chris@chris-wilson.co.uk A CI Bug Log filter associated to this bug has been updated: {- HSW APL SKL KBL ICL: igt@gem_busy@close-race - dmesg-fail - general protection fault: 0000 [#1] PREEMPT SMP (NOPTI|PTI) -} {+ HSW SNB APL SKL KBL ICL: igt@gem_busy@close-race - dmesg-fail - general protection fault: 0000 [#1] PREEMPT SMP (NOPTI|PTI) +} New failures caught by the filter: * https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5082/shard-snb2/igt@gem_busy@close-race.html A CI Bug Log filter associated to this bug has been updated: {- HSW APL KBL ICL: igt@runner@aborted - fail - Previous test: gem_busy (close-race) -} {+ HSW SNB APL KBL ICL: igt@runner@aborted - fail - Previous test: gem_busy (close-race) +} New failures caught by the filter: * https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5082/shard-snb2/igt@runner@aborted.html A CI Bug Log filter associated to this bug has been updated: {- HSW SNB APL SKL KBL ICL: igt@gem_busy@close-race - dmesg-fail - general protection fault: 0000 [#1] PREEMPT SMP (NOPTI|PTI) -} {+ HSW SNB APL SKL KBL CML CFL ICL: igt@gem_busy@close-race - dmesg-fail - general protection fault: 0000 [#1] PREEMPT SMP (NOPTI|PTI) +} New failures caught by the filter: * https://intel-gfx-ci.01.org/tree/drm-tip/drmtip_321/fi-cfl-8109u/igt@gem_busy@close-race.html * https://intel-gfx-ci.01.org/tree/drm-tip/drmtip_321/fi-cfl-guc/igt@gem_busy@close-race.html * https://intel-gfx-ci.01.org/tree/drm-tip/drmtip_321/fi-cml-u/igt@gem_busy@close-race.html * https://intel-gfx-ci.01.org/tree/drm-tip/drmtip_321/fi-cml-u2/igt@gem_busy@close-race.html A CI Bug Log filter associated to this bug has been updated: {- HSW SNB APL KBL ICL: igt@runner@aborted - fail - Previous test: gem_busy (close-race) -} {+ HSW SNB APL KBL ICL: igt@runner@aborted - fail - Previous test: gem_busy (close-race) +} New failures caught by the filter: * https://intel-gfx-ci.01.org/tree/drm-tip/drmtip_321/fi-cfl-8109u/igt@runner@aborted.html * https://intel-gfx-ci.01.org/tree/drm-tip/drmtip_321/fi-cfl-guc/igt@runner@aborted.html * https://intel-gfx-ci.01.org/tree/drm-tip/drmtip_321/fi-cml-u/igt@runner@aborted.html * https://intel-gfx-ci.01.org/tree/drm-tip/drmtip_321/fi-cml-u2/igt@runner@aborted.html |
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.