Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

RDMA/mlx5: Add a missing update of cache->last_add

Update cache->last_add when returning an MR to the cache so that the cache
work won't remove it.

Fixes: b9358bdbc713 ("RDMA/mlx5: Fix locking in MR cache work queue")
Link: https://lore.kernel.org/r/c99f076fce4b44829d434936bbcd3b5fc4c95020.1649062436.git.leonro@nvidia.com
Signed-off-by: Aharon Landau <aharonl@nvidia.com>
Reviewed-by: Shay Drory <shayd@nvidia.com>
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>

authored by

Aharon Landau and committed by
Jason Gunthorpe
1d735eee 84c2362f

+1
+1
drivers/infiniband/hw/mlx5/mr.c
··· 627 627 { 628 628 struct mlx5_cache_ent *ent = mr->cache_ent; 629 629 630 + WRITE_ONCE(dev->cache.last_add, jiffies); 630 631 spin_lock_irq(&ent->lock); 631 632 list_add_tail(&mr->list, &ent->head); 632 633 ent->available_mrs++;