net/mlx5: fix allocation size of RQT attribute
authorOri Kam <orika@mellanox.com>
Thu, 26 Sep 2019 10:22:15 +0000 (10:22 +0000)
committerFerruh Yigit <ferruh.yigit@intel.com>
Wed, 23 Oct 2019 14:43:08 +0000 (16:43 +0200)
commite72bd9603e2cbc6c456d2615ac7b62de19e2141c
tree15a5bff27434fb8f1f45a8ba4b5de7e3b9d99234
parent906a2efae8da8507bab2d089c544d4fa4150a5fd
net/mlx5: fix allocation size of RQT attribute

The receive queues list size is based on the size of uint32_t, so
when allocating the memory, the correct value should be used. Or
else there is risk to corrupt the memory, depending on the queues
number, because there is some pad area for alignment. If the queue
number is not large enough, the issue couldn't be observed.

Fixes: dc9ceff73c99 ("net/mlx5: create advanced RxQ via DevX")
Cc: stable@dpdk.org
Signed-off-by: Ori Kam <orika@mellanox.com>
Acked-by: Viacheslav Ovsiienko <viacheslavo@mellanox.com>
drivers/net/mlx5/mlx5_rxq.c