Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1602780 > unrolled thread

[PATCH] drm: vc4: remove redundant check of plane being non-null

Started byColin King <colin.king@canonical.com>
First post2017-03-16 20:00 +0100
Last post2017-03-18 01:00 +0100
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] drm: vc4: remove redundant check of plane being non-null Colin King <colin.king@canonical.com> - 2017-03-16 20:00 +0100
    Re: [PATCH] drm: vc4: remove redundant check of plane being non-null Eric Anholt <eric@anholt.net> - 2017-03-18 01:00 +0100

#1602780 — [PATCH] drm: vc4: remove redundant check of plane being non-null

FromColin King <colin.king@canonical.com>
Date2017-03-16 20:00 +0100
Subject[PATCH] drm: vc4: remove redundant check of plane being non-null
Message-ID<tlIMW-2t1-15@gated-at.bofh.it>
From: Colin Ian King <colin.king@canonical.com>

The pointer plane is always null on the error path at label 'fail'
hence the check if it is non-null is redundant. We can therefore
remove the check and the destruction of plane as well as the fail
error path and instead just return an -ENOMEM ERR_PTR.

Detected by CoverityScan, CID#1339532 ("Logically Dead Code")

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/gpu/drm/vc4/vc4_plane.c | 11 ++---------
 1 file changed, 2 insertions(+), 9 deletions(-)

diff --git a/drivers/gpu/drm/vc4/vc4_plane.c b/drivers/gpu/drm/vc4/vc4_plane.c
index 110224c..0f4564b 100644
--- a/drivers/gpu/drm/vc4/vc4_plane.c
+++ b/drivers/gpu/drm/vc4/vc4_plane.c
@@ -842,10 +842,8 @@ struct drm_plane *vc4_plane_init(struct drm_device *dev,
 
 	vc4_plane = devm_kzalloc(dev->dev, sizeof(*vc4_plane),
 				 GFP_KERNEL);
-	if (!vc4_plane) {
-		ret = -ENOMEM;
-		goto fail;
-	}
+	if (!vc4_plane)
+		return ERR_PTR(-ENOMEM);
 
 	for (i = 0; i < ARRAY_SIZE(hvs_formats); i++) {
 		/* Don't allow YUV in cursor planes, since that means
@@ -866,9 +864,4 @@ struct drm_plane *vc4_plane_init(struct drm_device *dev,
 	drm_plane_helper_add(plane, &vc4_plane_helper_funcs);
 
 	return plane;
-fail:
-	if (plane)
-		vc4_plane_destroy(plane);
-
-	return ERR_PTR(ret);
 }
-- 
2.10.2

[toc] | [next] | [standalone]


#1603670

FromEric Anholt <eric@anholt.net>
Date2017-03-18 01:00 +0100
Message-ID<tm9WO-5YC-17@gated-at.bofh.it>
In reply to#1602780

[Multipart message — attachments visible in raw view] — view raw

Colin King <colin.king@canonical.com> writes:

> From: Colin Ian King <colin.king@canonical.com>
>
> The pointer plane is always null on the error path at label 'fail'
> hence the check if it is non-null is redundant. We can therefore
> remove the check and the destruction of plane as well as the fail
> error path and instead just return an -ENOMEM ERR_PTR.
>
> Detected by CoverityScan, CID#1339532 ("Logically Dead Code")
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>

Reviewed and applied.  Thanks!

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web