]> git.baikalelectronics.ru Git - kernel.git/commit
RDMA/hfi1: Fix error return code in parse_platform_config()
authorWang Yufen <wangyufen@huawei.com>
Fri, 2 Dec 2022 04:00:37 +0000 (12:00 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Jan 2023 10:41:20 +0000 (11:41 +0100)
commitde5d6d88218bedfc10f0cb20b1921c90600ff379
tree886adc7590e11d8828b630ef64ce0ad7fd1888ce
parent804d4c1c5dd75d8ea11a821038d223270265ec9d
RDMA/hfi1: Fix error return code in parse_platform_config()

[ Upstream commit aea4d159d0c2eb4c79d73eadc03ffd32ec539ff6 ]

In the previous iteration of the while loop, the "ret" may have been
assigned a value of 0, so the error return code -EINVAL may have been
incorrectly set to 0. To fix set valid return code before calling to
goto.

Fixes: 6067b6a0236a ("staging/rdma/hfi1: Tune for unknown channel if configuration file is absent")
Signed-off-by: Wang Yufen <wangyufen@huawei.com>
Link: https://lore.kernel.org/r/1669953638-11747-1-git-send-email-wangyufen@huawei.com
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/infiniband/hw/hfi1/firmware.c