[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20170221130140.396676279@linuxfoundation.org>
Date: Tue, 21 Feb 2017 14:02:10 +0100
From: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
To: linux-kernel@...r.kernel.org
Cc: Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
stable@...r.kernel.org, Thomas VanSelus <tvanselus@...-inc.com>,
Aaron Sierra <asierra@...-inc.com>,
Allen Hubbe <Allen.Hubbe@...l.com>,
Jon Mason <jdmason@...zu.us>
Subject: [PATCH 4.4 13/15] ntb_transport: Pick an unused queue
4.4-stable review patch. If anyone has any objections, please let me know.
------------------
From: Thomas VanSelus <tvanselus@...-inc.com>
commit 8fcd0950c021d7be8493280541332b924b9de962 upstream.
Fix typo causing ntb_transport_create_queue to select the first
queue every time, instead of using the next free queue.
Signed-off-by: Thomas VanSelus <tvanselus@...-inc.com>
Signed-off-by: Aaron Sierra <asierra@...-inc.com>
Acked-by: Allen Hubbe <Allen.Hubbe@...l.com>
Fixes: fce8a7bb5 ("PCI-Express Non-Transparent Bridge Support")
Signed-off-by: Jon Mason <jdmason@...zu.us>
Signed-off-by: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
---
drivers/ntb/ntb_transport.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/drivers/ntb/ntb_transport.c
+++ b/drivers/ntb/ntb_transport.c
@@ -1623,7 +1623,7 @@ ntb_transport_create_queue(void *data, s
node = dev_to_node(&ndev->dev);
- free_queue = ffs(nt->qp_bitmap);
+ free_queue = ffs(nt->qp_bitmap_free);
if (!free_queue)
goto err;
Powered by blists - more mailing lists