mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Christian König" <christian.koenig@amd.com>
To: Wei Yongjun <weiyj_lk@163.com>, <alexander.deucher@amd.com>,
	<airlied@linux.ie>, <Flora.Cui@amd.com>, <David1.Zhou@amd.com>,
	<tom.stdenis@amd.com>, <Jammy.Zhou@amd.com>
Cc: Wei Yongjun <yongjun_wei@trendmicro.com.cn>,
	<dri-devel@lists.freedesktop.org>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH -next] drm/amdgpu: fix return value check in amdgpu_debugfs_regs_init()
Date: Tue, 19 Jul 2016 14:25:14 +0200	[thread overview]
Message-ID: <578E1C2A.9040706@amd.com> (raw)
In-Reply-To: <1468930488-10230-1-git-send-email-weiyj_lk@163.com>

Am 19.07.2016 um 14:14 schrieb Wei Yongjun:
> From: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
>
> In case of error, the function debugfs_create_*() returns NULL
> pointer not ERR_PTR() if debugfs is enabled. The IS_ERR() test
> in the return value check should be replaced with NULL test.
> (defined(CONFIG_DEBUG_FS) make sure debugfs is enabled)
>
> Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>

Reviewed-by: Christian König <christian.koenig@amd.com>.

> ---
>   drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> index 614fb02..0c992d3 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> @@ -2530,12 +2530,12 @@ static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev)
>   		ent = debugfs_create_file(debugfs_regs_names[i],
>   					  S_IFREG | S_IRUGO, root,
>   					  adev, debugfs_regs[i]);
> -		if (IS_ERR(ent)) {
> +		if (!ent) {
>   			for (j = 0; j < i; j++) {
>   				debugfs_remove(adev->debugfs_regs[i]);
>   				adev->debugfs_regs[i] = NULL;
>   			}
> -			return PTR_ERR(ent);
> +			return -ENOMEM;
>   		}
>   
>   		if (!i)
>
>

      reply	other threads:[~2016-07-19 12:25 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-19 12:14 Wei Yongjun
2016-07-19 12:25 ` Christian König [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=578E1C2A.9040706@amd.com \
    --to=christian.koenig@amd.com \
    --cc=David1.Zhou@amd.com \
    --cc=Flora.Cui@amd.com \
    --cc=Jammy.Zhou@amd.com \
    --cc=airlied@linux.ie \
    --cc=alexander.deucher@amd.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=tom.stdenis@amd.com \
    --cc=weiyj_lk@163.com \
    --cc=yongjun_wei@trendmicro.com.cn \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome