]> www.infradead.org Git - users/jedix/linux-maple.git/commit
RDMA/mlx5: Fix cache entry update on dereg error
authorMichael Guralnik <michaelgur@nvidia.com>
Thu, 13 Mar 2025 14:29:49 +0000 (16:29 +0200)
committerLeon Romanovsky <leon@kernel.org>
Tue, 18 Mar 2025 10:30:52 +0000 (06:30 -0400)
commit24d693cf6c89d216a68634d44fa93e4400775d94
tree92bb29c6e4ea4d6a2952f6053126f5fc26eb169a
parenta0130ef84b00c68ba0b79ee974a0f01459741421
RDMA/mlx5: Fix cache entry update on dereg error

Fix double decrement of 'in_use' counter on push_mkey_locked() failure
while deregistering an MR.
If we fail to return an mkey to the cache in cache_ent_find_and_store()
it'll update the 'in_use' counter. Its caller, revoke_mr(), also updates
it, thus having double decrement.

Wrong value of 'in_use' counter will be exposed through debugfs and can
also cause wrong resizing of the cache when users try to set cache
entry size using the 'size' debugfs.

To address this issue, the 'in_use' counter is now decremented within
mlx5_revoke_mr() also after a successful call to
cache_ent_find_and_store() and not within cache_ent_find_and_store().
Other success or failure flows remains unchanged where it was also
decremented.

Fixes: 8c1185fef68c ("RDMA/mlx5: Change check for cacheable mkeys")
Signed-off-by: Michael Guralnik <michaelgur@nvidia.com>
Reviewed-by: Yishai Hadas <yishaih@nvidia.com>
Link: https://patch.msgid.link/97e979dff636f232ff4c83ce709c17c727da1fdb.1741875692.git.leon@kernel.org
Signed-off-by: Leon Romanovsky <leon@kernel.org>
drivers/infiniband/hw/mlx5/mr.c