[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <MWHPR21MB1593D8362CD8FBA6E0E3612CD7259@MWHPR21MB1593.namprd21.prod.outlook.com>
Date: Tue, 25 May 2021 15:30:22 +0000
From: Michael Kelley <mikelley@...rosoft.com>
To: Jiapeng Chong <jiapeng.chong@...ux.alibaba.com>,
KY Srinivasan <kys@...rosoft.com>
CC: Haiyang Zhang <haiyangz@...rosoft.com>,
Stephen Hemminger <sthemmin@...rosoft.com>,
"wei.liu@...nel.org" <wei.liu@...nel.org>,
Dexuan Cui <decui@...rosoft.com>,
"linux-hyperv@...r.kernel.org" <linux-hyperv@...r.kernel.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: RE: [PATCH] drivers: hv: Fix missing error code in vmbus_connect()
From: Jiapeng Chong <jiapeng.chong@...ux.alibaba.com> Sent: Tuesday, May 25, 2021 3:59 AM
>
> Eliminate the follow smatch warning:
>
> drivers/hv/connection.c:236 vmbus_connect() warn: missing error code
> 'ret'.
>
> Reported-by: Abaci Robot <abaci@...ux.alibaba.com>
> Signed-off-by: Jiapeng Chong <jiapeng.chong@...ux.alibaba.com>
> ---
> drivers/hv/connection.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/hv/connection.c b/drivers/hv/connection.c
> index 311cd00..5e479d5 100644
> --- a/drivers/hv/connection.c
> +++ b/drivers/hv/connection.c
> @@ -232,8 +232,10 @@ int vmbus_connect(void)
> */
>
> for (i = 0; ; i++) {
> - if (i == ARRAY_SIZE(vmbus_versions))
> + if (i == ARRAY_SIZE(vmbus_versions)) {
> + ret = -EDOM;
> goto cleanup;
> + }
>
> version = vmbus_versions[i];
> if (version > max_version)
> --
> 1.8.3.1
I might have used -EINVAL instead of -EDOM as the error
return value, but it really doesn't matter, and having a
return value that is unique in the function might be helpful.
Reviewed-by: Michael Kelley <mikelley@...rosoft.com>
Powered by blists - more mailing lists