mirror of https://gitee.com/openkylin/linux.git
RDMA/qedr: Fix srqs xarray initialization
There was a missing initialization for the srqs xarray.
SRQs xarray can also be called from irq context when searching
for an element and uses the xa_XXX_irq apis, therefore should
be initialized with IRQ flags.
Fixes: 9fd15987ed
("qedr: Convert srqidr to XArray")
Link: https://lore.kernel.org/r/20191027200451.28187-2-michal.kalderon@marvell.com
Signed-off-by: Ariel Elior <ariel.elior@marvell.com>
Signed-off-by: Michal Kalderon <michal.kalderon@marvell.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
This commit is contained in:
parent
949b452f9c
commit
73ab512f72
|
@ -357,6 +357,7 @@ static int qedr_alloc_resources(struct qedr_dev *dev)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
spin_lock_init(&dev->sgid_lock);
|
spin_lock_init(&dev->sgid_lock);
|
||||||
|
xa_init_flags(&dev->srqs, XA_FLAGS_LOCK_IRQ);
|
||||||
|
|
||||||
if (IS_IWARP(dev)) {
|
if (IS_IWARP(dev)) {
|
||||||
xa_init_flags(&dev->qps, XA_FLAGS_LOCK_IRQ);
|
xa_init_flags(&dev->qps, XA_FLAGS_LOCK_IRQ);
|
||||||
|
|
Loading…
Reference in New Issue