From: Logan Gunthorpe Date: Wed, 9 Jan 2019 19:22:30 +0000 (-0700) Subject: NTB: perf: Don't require one more memory window than number of peers X-Git-Tag: v5.10.7~2405^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a9c4211ac918ade1522aced6b5acfbe824722f7d;p=platform%2Fkernel%2Flinux-rpi.git NTB: perf: Don't require one more memory window than number of peers ntb_perf should not require more than one memory window per peer. This was probably an off-by-one error. Fixes: 5648e56d03fa ("NTB: ntb_perf: Add full multi-port NTB API support") Signed-off-by: Logan Gunthorpe Acked-by: Allen Hubbe Tested-by: Alexander Fomichev Signed-off-by: Jon Mason --- diff --git a/drivers/ntb/test/ntb_perf.c b/drivers/ntb/test/ntb_perf.c index 42b8a8dea2b3..ec87a28ae239 100644 --- a/drivers/ntb/test/ntb_perf.c +++ b/drivers/ntb/test/ntb_perf.c @@ -654,7 +654,7 @@ static int perf_init_service(struct perf_ctx *perf) { u64 mask; - if (ntb_peer_mw_count(perf->ntb) < perf->pcnt + 1) { + if (ntb_peer_mw_count(perf->ntb) < perf->pcnt) { dev_err(&perf->ntb->dev, "Not enough memory windows\n"); return -EINVAL; }