ntb: Fix calculation ntb_transport_tx_free_entry()
authorDave Jiang <dave.jiang@intel.com>
Tue, 22 Aug 2023 16:04:57 +0000 (09:04 -0700)
committerJon Mason <jdmason@kudzu.us>
Tue, 22 Aug 2023 16:38:19 +0000 (12:38 -0400)
commit5a7693e6bbf19b22fd6c1d2c4b7beb0a03969e2c
tree65c59838f0fbef539e46bd43bb6a4ae8178fd513
parentf195a1a6fe416882984f8bd6c61afc1383171860
ntb: Fix calculation ntb_transport_tx_free_entry()

ntb_transport_tx_free_entry() never returns 0 with the current
calculation. If head == tail, then it would return qp->tx_max_entry.
Change compare to tail >= head and when they are equal, a 0 would be
returned.

Fixes: e74bfeedad08 ("NTB: Add flow control to the ntb_netdev")
Reviewed-by: Logan Gunthorpe <logang@deltatee.com>
Signed-off-by: renlonglong <ren.longlong@h3c.com>
Signed-off-by: Dave Jiang <dave.jiang@intel.com>
Signed-off-by: Jon Mason <jdmason@kudzu.us>
drivers/ntb/ntb_transport.c