mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 19:30:30 +09:00
liquidio: Fix wrong return value in cn23xx_get_pf_num()
[ Upstream commitaa027850a2] On an error exit path, a negative error code should be returned instead of a positive return value. Fixes:0c45d7fe12("liquidio: fix use of pf in pass-through mode in a virtual machine") Cc: Rick Farrington <ricardo.farrington@cavium.com> Signed-off-by: Tianjia Zhang <tianjia.zhang@linux.alibaba.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
79508a540f
commit
78b41e3b0e
@@ -1167,7 +1167,7 @@ static int cn23xx_get_pf_num(struct octeon_device *oct)
|
||||
oct->pf_num = ((fdl_bit >> CN23XX_PCIE_SRIOV_FDL_BIT_POS) &
|
||||
CN23XX_PCIE_SRIOV_FDL_MASK);
|
||||
} else {
|
||||
ret = EINVAL;
|
||||
ret = -EINVAL;
|
||||
|
||||
/* Under some virtual environments, extended PCI regs are
|
||||
* inaccessible, in which case the above read will have failed.
|
||||
|
||||
Reference in New Issue
Block a user