mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-23 22:30:51 +07:00
drivers: hv: Fix missing error code in vmbus_connect()
[ Upstream commit 9de6655cc5a6a1febc514465c87c24a0e96d8dba ] Eliminate the follow smatch warning: drivers/hv/connection.c:236 vmbus_connect() warn: missing error code 'ret'. Reported-by: Abaci Robot <abaci@linux.alibaba.com> Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com> Reviewed-by: Michael Kelley <mikelley@microsoft.com> Link: https://lore.kernel.org/r/1621940321-72353-1-git-send-email-jiapeng.chong@linux.alibaba.com Signed-off-by: Wei Liu <wei.liu@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
019d04f914
commit
eda609d864
@ -229,8 +229,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)
|
||||
|
Loading…
Reference in New Issue
Block a user