vdpa/mlx5: Fix memory key MTT population
authorEli Cohen <elic@nvidia.com>
Thu, 7 Jan 2021 07:18:45 +0000 (09:18 +0200)
committerMichael S. Tsirkin <mst@redhat.com>
Wed, 20 Jan 2021 08:47:04 +0000 (03:47 -0500)
commit710eb8e32d04714452759f2b66884bfa7e97d495
tree222ab8b551565baa7b816613835869c3170fccc6
parent19c329f6808995b142b3966301f217c831e7cf31
vdpa/mlx5: Fix memory key MTT population

map_direct_mr() assumed that the number of scatter/gather entries
returned by dma_map_sg_attrs() was equal to the number of segments in
the sgl list. This led to wrong population of the mkey object. Fix this
by properly referring to the returned value.

The hardware expects each MTT entry to contain the DMA address of a
contiguous block of memory of size (1 << mr->log_size) bytes.
dma_map_sg_attrs() can coalesce several sg entries into a single
scatter/gather entry of contiguous DMA range so we need to scan the list
and refer to the size of each s/g entry.

In addition, get rid of fill_sg() which effect is overwritten by
populate_mtts().

Fixes: 94abbccdf291 ("vdpa/mlx5: Add shared memory registration code")
Signed-off-by: Eli Cohen <elic@nvidia.com>
Link: https://lore.kernel.org/r/20210107071845.GA224876@mtl-vdi-166.wap.labs.mlnx
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Jason Wang <jasowang@redhat.com>
drivers/vdpa/mlx5/core/mlx5_vdpa.h
drivers/vdpa/mlx5/core/mr.c