[Intel-gfx] [PATCH] drm/i915: fix typo causing bad memory access in ring init
Chris Wilson
chris at chris-wilson.co.uk
Fri Aug 14 00:40:47 PDT 2015
On Fri, Aug 14, 2015 at 12:13:04PM +1000, Dave Airlie wrote:
> From: Dave Airlie <airlied at redhat.com>
>
> This is validating from the wrong index.
>
> testing with KASAN found it.
>
> Reported-by: Dave Jones <davej at codemonkey.org.uk>
> Signed-off-by: Dave Airlie <airlied at redhat.com>
> ---
> drivers/gpu/drm/i915/i915_cmd_parser.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_cmd_parser.c b/drivers/gpu/drm/i915/i915_cmd_parser.c
> index 61ae8ff..59f85e2 100644
> --- a/drivers/gpu/drm/i915/i915_cmd_parser.c
> +++ b/drivers/gpu/drm/i915/i915_cmd_parser.c
> @@ -534,7 +534,7 @@ static bool validate_cmds_sorted(struct intel_engine_cs *ring,
>
> for (j = 0; j < table->count; j++) {
> const struct drm_i915_cmd_descriptor *desc =
> - &table->table[i];
> + &table->table[j];
> u32 curr = desc->cmd.value & desc->cmd.mask;
Which uncovered another problem that the tables weren't sorted and
triggered a nasty BUG().
Daniel should have already sent the pair of fixes onwards.
-Chris
--
Chris Wilson, Intel Open Source Technology Centre
More information about the Intel-gfx
mailing list