Re: [PATCH v4] drm/i915: Fix NULL pointer dereference in capture_engine

2024-12-02 Thread John Harrison
On 11/29/2024 04:12, Andi Shyti wrote: On Thu, Nov 28, 2024 at 06:32:28PM -0800, John Harrison wrote: On 11/28/2024 13:28, Eugene Kobyak wrote: When the intel_context structure contains NULL, it raises a NULL pointer dereference error in drm_info(). Fixes: e8a3319c31a1 ("drm/i915: Allow error

Re: [PATCH v4] drm/i915: Fix NULL pointer dereference in capture_engine

2024-11-29 Thread Andi Shyti
On Thu, Nov 28, 2024 at 06:32:28PM -0800, John Harrison wrote: > On 11/28/2024 13:28, Eugene Kobyak wrote: > > When the intel_context structure contains NULL, > > it raises a NULL pointer dereference error in drm_info(). > > > > Fixes: e8a3319c31a1 ("drm/i915: Allow error capture without a request

Re: [PATCH v4] drm/i915: Fix NULL pointer dereference in capture_engine

2024-11-28 Thread John Harrison
On 11/28/2024 13:28, Eugene Kobyak wrote: When the intel_context structure contains NULL, it raises a NULL pointer dereference error in drm_info(). Fixes: e8a3319c31a1 ("drm/i915: Allow error capture without a request") Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12309 Cc: Jo

Re: [PATCH v4] drm/i915: Fix NULL pointer dereference in capture_engine

2024-11-28 Thread Andi Shyti
Hi Eugene, On Thu, Nov 28, 2024 at 09:28:43PM +, Eugene Kobyak wrote: > When the intel_context structure contains NULL, > it raises a NULL pointer dereference error in drm_info(). > > Fixes: e8a3319c31a1 ("drm/i915: Allow error capture without a request") > Closes: https://gitlab.freedesktop.

[PATCH v4] drm/i915: Fix NULL pointer dereference in capture_engine

2024-11-28 Thread Eugene Kobyak
When the intel_context structure contains NULL, it raises a NULL pointer dereference error in drm_info(). Fixes: e8a3319c31a1 ("drm/i915: Allow error capture without a request") Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12309 Cc: John Harrison Cc: # v6.3+ Signed-off-by: Eug