* [PATCH] drm/i915: fix typo causing bad memory access in ring init
@ 2015-08-14 2:13 Dave Airlie
2015-08-14 7:40 ` Chris Wilson
0 siblings, 1 reply; 3+ messages in thread
From: Dave Airlie @ 2015-08-14 2:13 UTC (permalink / raw)
To: intel-gfx; +Cc: Dave Airlie, davej
From: Dave Airlie <airlied@redhat.com>
This is validating from the wrong index.
testing with KASAN found it.
Reported-by: Dave Jones <davej@codemonkey.org.uk>
Signed-off-by: Dave Airlie <airlied@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;
if (curr < previous) {
--
2.4.3
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] drm/i915: fix typo causing bad memory access in ring init
2015-08-14 2:13 [PATCH] drm/i915: fix typo causing bad memory access in ring init Dave Airlie
@ 2015-08-14 7:40 ` Chris Wilson
2015-08-14 8:07 ` Daniel Vetter
0 siblings, 1 reply; 3+ messages in thread
From: Chris Wilson @ 2015-08-14 7:40 UTC (permalink / raw)
To: Dave Airlie; +Cc: Dave Airlie, intel-gfx, davej
On Fri, Aug 14, 2015 at 12:13:04PM +1000, Dave Airlie wrote:
> From: Dave Airlie <airlied@redhat.com>
>
> This is validating from the wrong index.
>
> testing with KASAN found it.
>
> Reported-by: Dave Jones <davej@codemonkey.org.uk>
> Signed-off-by: Dave Airlie <airlied@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
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] drm/i915: fix typo causing bad memory access in ring init
2015-08-14 7:40 ` Chris Wilson
@ 2015-08-14 8:07 ` Daniel Vetter
0 siblings, 0 replies; 3+ messages in thread
From: Daniel Vetter @ 2015-08-14 8:07 UTC (permalink / raw)
To: Chris Wilson, Dave Airlie, intel-gfx, Dave Airlie, davej
On Fri, Aug 14, 2015 at 08:40:47AM +0100, Chris Wilson wrote:
> On Fri, Aug 14, 2015 at 12:13:04PM +1000, Dave Airlie wrote:
> > From: Dave Airlie <airlied@redhat.com>
> >
> > This is validating from the wrong index.
> >
> > testing with KASAN found it.
> >
> > Reported-by: Dave Jones <davej@codemonkey.org.uk>
> > Signed-off-by: Dave Airlie <airlied@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.
Yeah if you want this fixed asap you need 9f58582c7ad64f025e7f and
8453580cb8834dedffda from next for other it'll BUG.
-Daniel
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-08-14 8:07 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-14 2:13 [PATCH] drm/i915: fix typo causing bad memory access in ring init Dave Airlie
2015-08-14 7:40 ` Chris Wilson
2015-08-14 8:07 ` Daniel Vetter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox