mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-20 16:13:15 +00:00
rapidio: fix a NULL pointer dereference when create_workqueue() fails
In case create_workqueue fails, the fix releases resources and returns -ENOMEM to avoid NULL pointer dereference. Signed-off-by: Kangjie Lu <kjlu@umn.edu> Acked-by: Alexandre Bounine <alex.bou9@gmail.com> Cc: Matt Porter <mporter@kernel.crashing.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
3713a4e1fd
commit
23015b22e4
1 changed files with 8 additions and 0 deletions
|
@ -2147,6 +2147,14 @@ static int riocm_add_mport(struct device *dev,
|
||||||
mutex_init(&cm->rx_lock);
|
mutex_init(&cm->rx_lock);
|
||||||
riocm_rx_fill(cm, RIOCM_RX_RING_SIZE);
|
riocm_rx_fill(cm, RIOCM_RX_RING_SIZE);
|
||||||
cm->rx_wq = create_workqueue(DRV_NAME "/rxq");
|
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);
|
INIT_WORK(&cm->rx_work, rio_ibmsg_handler);
|
||||||
|
|
||||||
cm->tx_slot = 0;
|
cm->tx_slot = 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue