Skip to content

Commit

Permalink
rapidio: fix a NULL pointer dereference when create_workqueue() fails
Browse files Browse the repository at this point in the history
In case create_workqueue fails, the fix releases resources and returns
-ENOMEM to avoid NULL pointer dereference.

Signed-off-by: Kangjie Lu <[email protected]>
Acked-by: Alexandre Bounine <[email protected]>
Cc: Matt Porter <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
kengiter authored and torvalds committed May 15, 2019
1 parent 3713a4e commit 23015b2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions drivers/rapidio/rio_cm.c
Original file line number Diff line number Diff line change
Expand Up @@ -2147,6 +2147,14 @@ static int riocm_add_mport(struct device *dev,
mutex_init(&cm->rx_lock);
riocm_rx_fill(cm, RIOCM_RX_RING_SIZE);
cm->rx_wq = create_workqueue(DRV_NAME "/rxq");
if (!cm->rx_wq) {
riocm_error("failed to allocate IBMBOX_%d on %s",
cmbox, mport->name);
rio_release_outb_mbox(mport, cmbox);
kfree(cm);
return -ENOMEM;
}

INIT_WORK(&cm->rx_work, rio_ibmsg_handler);

cm->tx_slot = 0;
Expand Down

0 comments on commit 23015b2

Please sign in to comment.