]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
RDMA/mlx5: Remove mlx5_ib_mr->order
authorJason Gunthorpe <jgg@nvidia.com>
Mon, 26 Oct 2020 13:19:30 +0000 (15:19 +0200)
committerJason Gunthorpe <jgg@nvidia.com>
Mon, 2 Nov 2020 18:31:40 +0000 (14:31 -0400)
The is only ever set to non-zero if the MR is from the cache, and if it is
cached then the order is in cached_ent->order.

Make it clearer that use_umr_mtt_update() only returns true for cached MRs
and remove the redundant data.

Link: https://lore.kernel.org/r/20201026131936.1335664-2-leon@kernel.org
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
drivers/infiniband/hw/mlx5/mlx5_ib.h
drivers/infiniband/hw/mlx5/mr.c

index b1f2b34e59552d30ec0bc3b1a9ce869110ea0126..93310dda01b63042a024256f0ef73725b0ddddd2 100644 (file)
@@ -601,7 +601,6 @@ struct mlx5_ib_mr {
        struct ib_umem         *umem;
        struct mlx5_shared_mr_info      *smr_info;
        struct list_head        list;
-       unsigned int            order;
        struct mlx5_cache_ent  *cache_ent;
        int                     npages;
        struct mlx5_ib_dev     *dev;
index b261797b258fd7f9425d44c43c5ec8f68ab15d9b..50bbd07b97476f4ed2fcba4ae0287e1db2874fcc 100644 (file)
@@ -126,7 +126,9 @@ static int destroy_mkey(struct mlx5_ib_dev *dev, struct mlx5_ib_mr *mr)
 static inline bool mlx5_ib_pas_fits_in_mr(struct mlx5_ib_mr *mr, u64 start,
                                          u64 length)
 {
-       return ((u64)1 << mr->order) * MLX5_ADAPTER_PAGE_SIZE >=
+       if (!mr->cache_ent)
+               return false;
+       return ((u64)1 << mr->cache_ent->order) * MLX5_ADAPTER_PAGE_SIZE >=
                length + (start & (MLX5_ADAPTER_PAGE_SIZE - 1));
 }
 
@@ -172,7 +174,6 @@ static struct mlx5_ib_mr *alloc_cache_mr(struct mlx5_cache_ent *ent, void *mkc)
        mr = kzalloc(sizeof(*mr), GFP_KERNEL);
        if (!mr)
                return NULL;
-       mr->order = ent->order;
        mr->cache_ent = ent;
        mr->dev = ent->dev;