diff options
Diffstat (limited to 'drivers/message')
-rw-r--r-- | drivers/message/i2o/exec-osm.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/message/i2o/exec-osm.c b/drivers/message/i2o/exec-osm.c index 06c655c55587..a3970e56ae53 100644 --- a/drivers/message/i2o/exec-osm.c +++ b/drivers/message/i2o/exec-osm.c | |||
@@ -389,12 +389,16 @@ static int i2o_exec_lct_notify(struct i2o_controller *c, u32 change_ind) | |||
389 | dev = &c->pdev->dev; | 389 | dev = &c->pdev->dev; |
390 | 390 | ||
391 | if (i2o_dma_realloc(dev, &c->dlct, | 391 | if (i2o_dma_realloc(dev, &c->dlct, |
392 | le32_to_cpu(sb->expected_lct_size))) | 392 | le32_to_cpu(sb->expected_lct_size))) { |
393 | mutex_unlock(&c->lct_lock); | ||
393 | return -ENOMEM; | 394 | return -ENOMEM; |
395 | } | ||
394 | 396 | ||
395 | msg = i2o_msg_get_wait(c, I2O_TIMEOUT_MESSAGE_GET); | 397 | msg = i2o_msg_get_wait(c, I2O_TIMEOUT_MESSAGE_GET); |
396 | if (IS_ERR(msg)) | 398 | if (IS_ERR(msg)) { |
399 | mutex_unlock(&c->lct_lock); | ||
397 | return PTR_ERR(msg); | 400 | return PTR_ERR(msg); |
401 | } | ||
398 | 402 | ||
399 | msg->u.head[0] = cpu_to_le32(EIGHT_WORD_MSG_SIZE | SGL_OFFSET_6); | 403 | msg->u.head[0] = cpu_to_le32(EIGHT_WORD_MSG_SIZE | SGL_OFFSET_6); |
400 | msg->u.head[1] = cpu_to_le32(I2O_CMD_LCT_NOTIFY << 24 | HOST_TID << 12 | | 404 | msg->u.head[1] = cpu_to_le32(I2O_CMD_LCT_NOTIFY << 24 | HOST_TID << 12 | |