Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Skip to content
Snippets Groups Projects
Commit 2531188b authored by Eugenia Emantayev's avatar Eugenia Emantayev Committed by David S. Miller
Browse files

mlx4: fix QP tree trashing


When adding new unicast steer entry, before moving qp to state ready,
actually before calling mlx4_RST2INIT_QP_wrapper(), there were added
a lot of entries with local_qpn=0 into radix tree.
This fact impacted the get_res() function and proper functioning
of resource tracker in addition to adding trash entries into radix tree.

Signed-off-by: default avatarEugenia Emantayev <eugenia@mellanox.co.il>
Reviewed-by: default avatarYevgeny Petrilin <yevgenyp@melllanox.co.il>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 75c6062c
Branches
No related tags found
No related merge requests found
...@@ -374,6 +374,7 @@ static struct res_common *alloc_qp_tr(int id) ...@@ -374,6 +374,7 @@ static struct res_common *alloc_qp_tr(int id)
ret->com.res_id = id; ret->com.res_id = id;
ret->com.state = RES_QP_RESERVED; ret->com.state = RES_QP_RESERVED;
ret->local_qpn = id;
INIT_LIST_HEAD(&ret->mcg_list); INIT_LIST_HEAD(&ret->mcg_list);
spin_lock_init(&ret->mcg_spl); spin_lock_init(&ret->mcg_spl);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment