Intel-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH] drm/i915: Check the correct variable
@ 2020-12-03  8:45 Dan Carpenter
  2020-12-03 10:04 ` Chris Wilson
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Dan Carpenter @ 2020-12-03  8:45 UTC (permalink / raw)
  To: Jani Nikula
  Cc: kernel-janitors, David Airlie, intel-gfx, dri-devel, Chris Wilson,
	Thomas Hellström

There is a copy and paste bug in this code.  It's supposed to check
"obj2" instead of checking "obj" a second time.

Fixes: 80f0b679d6f0 ("drm/i915: Add an implementation for i915_gem_ww_ctx locking, v2.")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
---
 drivers/gpu/drm/i915/selftests/i915_gem.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/selftests/i915_gem.c b/drivers/gpu/drm/i915/selftests/i915_gem.c
index 23a6132c5f4e..412e21604a05 100644
--- a/drivers/gpu/drm/i915/selftests/i915_gem.c
+++ b/drivers/gpu/drm/i915/selftests/i915_gem.c
@@ -211,8 +211,8 @@ static int igt_gem_ww_ctx(void *arg)
 		return PTR_ERR(obj);
 
 	obj2 = i915_gem_object_create_internal(i915, PAGE_SIZE);
-	if (IS_ERR(obj)) {
-		err = PTR_ERR(obj);
+	if (IS_ERR(obj2)) {
+		err = PTR_ERR(obj2);
 		goto put1;
 	}
 
-- 
2.29.2

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Intel-gfx] [PATCH] drm/i915: Check the correct variable
  2020-12-03  8:45 [Intel-gfx] [PATCH] drm/i915: Check the correct variable Dan Carpenter
@ 2020-12-03 10:04 ` Chris Wilson
  2020-12-03 11:12 ` Andi Shyti
  2020-12-03 14:43 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for " Patchwork
  2 siblings, 0 replies; 5+ messages in thread
From: Chris Wilson @ 2020-12-03 10:04 UTC (permalink / raw)
  To: Dan Carpenter, Jani Nikula
  Cc: kernel-janitors, David Airlie, intel-gfx, dri-devel,
	Thomas Hellström

Quoting Dan Carpenter (2020-12-03 08:45:17)
> There is a copy and paste bug in this code.  It's supposed to check
> "obj2" instead of checking "obj" a second time.
> 
> Fixes: 80f0b679d6f0 ("drm/i915: Add an implementation for i915_gem_ww_ctx locking, v2.")
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
> ---
>  drivers/gpu/drm/i915/selftests/i915_gem.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/selftests/i915_gem.c b/drivers/gpu/drm/i915/selftests/i915_gem.c
> index 23a6132c5f4e..412e21604a05 100644
> --- a/drivers/gpu/drm/i915/selftests/i915_gem.c
> +++ b/drivers/gpu/drm/i915/selftests/i915_gem.c
> @@ -211,8 +211,8 @@ static int igt_gem_ww_ctx(void *arg)
>                 return PTR_ERR(obj);
>  
>         obj2 = i915_gem_object_create_internal(i915, PAGE_SIZE);
> -       if (IS_ERR(obj)) {
> -               err = PTR_ERR(obj);
> +       if (IS_ERR(obj2)) {
> +               err = PTR_ERR(obj2);

Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
-Chris
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Intel-gfx] [PATCH] drm/i915: Check the correct variable
  2020-12-03  8:45 [Intel-gfx] [PATCH] drm/i915: Check the correct variable Dan Carpenter
  2020-12-03 10:04 ` Chris Wilson
@ 2020-12-03 11:12 ` Andi Shyti
  2020-12-03 13:13   ` Chris Wilson
  2020-12-03 14:43 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for " Patchwork
  2 siblings, 1 reply; 5+ messages in thread
From: Andi Shyti @ 2020-12-03 11:12 UTC (permalink / raw)
  To: Dan Carpenter
  Cc: kernel-janitors, David Airlie, intel-gfx, Chris Wilson,
	Thomas Hellström, dri-devel

Hi Dan,

> There is a copy and paste bug in this code.  It's supposed to check
> "obj2" instead of checking "obj" a second time.
> 
> Fixes: 80f0b679d6f0 ("drm/i915: Add an implementation for i915_gem_ww_ctx locking, v2.")
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
> ---
>  drivers/gpu/drm/i915/selftests/i915_gem.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/selftests/i915_gem.c b/drivers/gpu/drm/i915/selftests/i915_gem.c
> index 23a6132c5f4e..412e21604a05 100644
> --- a/drivers/gpu/drm/i915/selftests/i915_gem.c
> +++ b/drivers/gpu/drm/i915/selftests/i915_gem.c
> @@ -211,8 +211,8 @@ static int igt_gem_ww_ctx(void *arg)
>  		return PTR_ERR(obj);
>  
>  	obj2 = i915_gem_object_create_internal(i915, PAGE_SIZE);
> -	if (IS_ERR(obj)) {
> -		err = PTR_ERR(obj);
> +	if (IS_ERR(obj2)) {
> +		err = PTR_ERR(obj2);

Reviewed-by: Andi Shyti <andi.shyti@intel.com>

Thanks,
Andi
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Intel-gfx] [PATCH] drm/i915: Check the correct variable
  2020-12-03 11:12 ` Andi Shyti
@ 2020-12-03 13:13   ` Chris Wilson
  0 siblings, 0 replies; 5+ messages in thread
From: Chris Wilson @ 2020-12-03 13:13 UTC (permalink / raw)
  To: Andi Shyti, Dan Carpenter
  Cc: David Airlie, intel-gfx, Thomas Hellström, kernel-janitors,
	dri-devel

Quoting Andi Shyti (2020-12-03 11:12:24)
> Hi Dan,
> 
> > There is a copy and paste bug in this code.  It's supposed to check
> > "obj2" instead of checking "obj" a second time.
> > 
> > Fixes: 80f0b679d6f0 ("drm/i915: Add an implementation for i915_gem_ww_ctx locking, v2.")
> > Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
> > ---
> >  drivers/gpu/drm/i915/selftests/i915_gem.c | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/i915/selftests/i915_gem.c b/drivers/gpu/drm/i915/selftests/i915_gem.c
> > index 23a6132c5f4e..412e21604a05 100644
> > --- a/drivers/gpu/drm/i915/selftests/i915_gem.c
> > +++ b/drivers/gpu/drm/i915/selftests/i915_gem.c
> > @@ -211,8 +211,8 @@ static int igt_gem_ww_ctx(void *arg)
> >               return PTR_ERR(obj);
> >  
> >       obj2 = i915_gem_object_create_internal(i915, PAGE_SIZE);
> > -     if (IS_ERR(obj)) {
> > -             err = PTR_ERR(obj);
> > +     if (IS_ERR(obj2)) {
> > +             err = PTR_ERR(obj2);
> 
> Reviewed-by: Andi Shyti <andi.shyti@intel.com>

I gave up waiting for patchwork to spot the original patch, and pushed.

Thanks,
-Chris
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Check the correct variable
  2020-12-03  8:45 [Intel-gfx] [PATCH] drm/i915: Check the correct variable Dan Carpenter
  2020-12-03 10:04 ` Chris Wilson
  2020-12-03 11:12 ` Andi Shyti
@ 2020-12-03 14:43 ` Patchwork
  2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2020-12-03 14:43 UTC (permalink / raw)
  To: Dan Carpenter; +Cc: intel-gfx


[-- Attachment #1.1: Type: text/plain, Size: 381 bytes --]

== Series Details ==

Series: drm/i915: Check the correct variable
URL   : https://patchwork.freedesktop.org/series/84534/
State : failure

== Summary ==

Applying: drm/i915: Check the correct variable
Using index info to reconstruct a base tree...
M	drivers/gpu/drm/i915/selftests/i915_gem.c
Falling back to patching base and 3-way merge...
No changes -- Patch already applied.



[-- Attachment #1.2: Type: text/html, Size: 875 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-12-03 14:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-03  8:45 [Intel-gfx] [PATCH] drm/i915: Check the correct variable Dan Carpenter
2020-12-03 10:04 ` Chris Wilson
2020-12-03 11:12 ` Andi Shyti
2020-12-03 13:13   ` Chris Wilson
2020-12-03 14:43 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox