]> git.baikalelectronics.ru Git - kernel.git/commit
Merge tag 'mlx5-updates-2018-02-21' of git://git.kernel.org/pub/scm/linux/kernel...
authorDoug Ledford <dledford@redhat.com>
Fri, 23 Feb 2018 01:52:28 +0000 (20:52 -0500)
committerDoug Ledford <dledford@redhat.com>
Fri, 23 Feb 2018 01:52:28 +0000 (20:52 -0500)
commit7c79b87e19be06bb09556a8ae80361e2f91f67e0
tree5088d1f5df40eea66b8668e8c3ee61f660f6a188
parent16e0fd1945ff927a593f713f4f5af95449ab61b0
parent22bb2345f8671dc7b7d33c0149d1bf8e6165d7ca
Merge tag 'mlx5-updates-2018-02-21' of git://git.kernel.org/pub/scm/linux/kernel/git/mellanox/linux into k.o/wip/dl-for-next

mlx5-updates-2018-02-21

This series includes shared code updates for mlx5 core driver for both
netdev and rdma subsystems.

By Saeed,
First six patches of the series are meant to address a performance issue
and should provide a performance boost for multi core IRQ interrupt hungry
workloads.  The issue is fixed in the first patch, all other patches are
meant to refactor the code in light of this fix.

The problem it comes to fix, is a shared spinlock accessed across all HCA
IRQs which protects the CQ database.  To solve this we simply move the CQ
database and its spinlock to be per EQ (IRQ), thus per core.

By Yonatan,
Fragmented completion queue (CQ) for RDMA,
core driver implementation to create fragmented CQ buffers rather than
one large contiguous memory buffer, the implementation scheme already
exist and used by the netdev CQs, the patch shares that code with the
rdma CQ creation flow and makes use of the new API in mlx5_ib driver.

Thanks,
Saeed.

Merged into rdma-next tree as well as net-next tree to prevent conflicts
in future patches between the two trees.

Signed-off-by: Doug Ledford <dledford@redhat.com>