RDMA/vmw_pvrdma: Use atomic memory allocation in create AH
authorGal Pressman <galpress@amazon.com>
Mon, 10 Dec 2018 15:17:25 +0000 (17:17 +0200)
committerJason Gunthorpe <jgg@mellanox.com>
Tue, 11 Dec 2018 21:38:17 +0000 (14:38 -0700)
Create address handle callback should not sleep, use GFP_ATOMIC instead of
GFP_KERNEL for memory allocation.

Fixes: 29c8d9eba550 ("IB: Add vmw_pvrdma driver")
Cc: Adit Ranadive <aditr@vmware.com>
Signed-off-by: Gal Pressman <galpress@amazon.com>
Reviewed-by: Yuval Shaia <yuval.shaia@oracle.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
drivers/infiniband/hw/vmw_pvrdma/pvrdma_verbs.c

index b65d10b..f4cb5cf 100644 (file)
@@ -555,7 +555,7 @@ struct ib_ah *pvrdma_create_ah(struct ib_pd *pd, struct rdma_ah_attr *ah_attr,
        if (!atomic_add_unless(&dev->num_ahs, 1, dev->dsr->caps.max_ah))
                return ERR_PTR(-ENOMEM);
 
-       ah = kzalloc(sizeof(*ah), GFP_KERNEL);
+       ah = kzalloc(sizeof(*ah), GFP_ATOMIC);
        if (!ah) {
                atomic_dec(&dev->num_ahs);
                return ERR_PTR(-ENOMEM);