mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-04 04:06:26 +00:00
NTB: Fix range check on memory window index
The range check must exclude the upper bound. Signed-off-by: Allen Hubbe <Allen.Hubbe@emc.com> Signed-off-by: Jon Mason <jdmason@kudzu.us>
This commit is contained in:
parent
2aa2a77a48
commit
9a07826f99
@ -240,7 +240,7 @@ static inline int ndev_ignore_unsafe(struct intel_ntb_dev *ndev,
|
||||
|
||||
static int ndev_mw_to_bar(struct intel_ntb_dev *ndev, int idx)
|
||||
{
|
||||
if (idx < 0 || idx > ndev->mw_count)
|
||||
if (idx < 0 || idx >= ndev->mw_count)
|
||||
return -EINVAL;
|
||||
return ndev->reg->mw_bar[idx];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user