IB/mlx4: Check correct variable for allocation failure
The intent here is to check the "mfrpl->mapped_page_list" allocation. We checked "mfrpl->ibfrpl.page_list" earlier. Signed-off-by: Dan Carpenter <error27@gmail.com> Signed-off-by: Roland Dreier <rolandd@cisco.com>
This commit is contained in:
parent
b72c40949b
commit
7bd912998e
@ -238,7 +238,7 @@ struct ib_fast_reg_page_list *mlx4_ib_alloc_fast_reg_page_list(struct ib_device
|
|||||||
mfrpl->mapped_page_list = dma_alloc_coherent(&dev->dev->pdev->dev,
|
mfrpl->mapped_page_list = dma_alloc_coherent(&dev->dev->pdev->dev,
|
||||||
size, &mfrpl->map,
|
size, &mfrpl->map,
|
||||||
GFP_KERNEL);
|
GFP_KERNEL);
|
||||||
if (!mfrpl->ibfrpl.page_list)
|
if (!mfrpl->mapped_page_list)
|
||||||
goto err_free;
|
goto err_free;
|
||||||
|
|
||||||
WARN_ON(mfrpl->map & 0x3f);
|
WARN_ON(mfrpl->map & 0x3f);
|
||||||
|
Loading…
Reference in New Issue
Block a user