]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
IB/mlx4: Increase maximal message size under UD QP
authorMark Bloch <markb@mellanox.com>
Thu, 2 Nov 2017 13:22:26 +0000 (15:22 +0200)
committerSasha Levin <alexander.levin@microsoft.com>
Wed, 17 Jan 2018 17:55:29 +0000 (12:55 -0500)
commitf2c5c3e03a7e355cfcb1a0faf1421a683e584261
treeb69f72f181cc56d2c1187c045a4acd0daed30f73
parentb486022b7bb8ccce0e44d43e77f15ed5f9f6cb68
IB/mlx4: Increase maximal message size under UD QP

[ Upstream commit 5f22a1d87c5315a98981ecf93cd8de226cffe6ca ]

Maximal message should be used as a limit to the max message payload allowed,
without the headers. The ConnectX-3 check is done against this value includes
the headers. When the payload is 4K this will cause the NIC to drop packets.

Increase maximal message to 8K as workaround, this shouldn't change current
behaviour because we continue to set the MTU to 4k.

To reproduce;
set MTU to 4296 on the corresponding interface, for example:
ifconfig eth0 mtu 4296 (both server and client)

On server:
ib_send_bw -c UD -d mlx4_0 -s 4096 -n 1000000 -i1 -m 4096

On client:
ib_send_bw -d mlx4_0 -c UD <server_ip> -s 4096 -n 1000000 -i 1 -m 4096

Fixes: 6e0d733d9215 ("IB/mlx4: Allow 4K messages for UD QPs")
Signed-off-by: Mark Bloch <markb@mellanox.com>
Reviewed-by: Majd Dibbiny <majd@mellanox.com>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
drivers/infiniband/hw/mlx4/qp.c