mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-21 20:13:58 +08:00
Staging: heci: fix spinlock order mess of device_lock and read_io_lock
In orginal code, the device_lock and read_io_lock is mess order when nested, which may bring dead lock. This patch unify the spinlock order of device_lock and read_io_lock. First acquire device_lock, then read_io_lock. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
171df63819
commit
72abd22883
@ -954,8 +954,8 @@ static ssize_t heci_read(struct file *file, char __user *ubuf,
|
|||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
spin_lock(&file_ext->read_io_lock);
|
|
||||||
err = heci_start_read(dev, if_num, file_ext);
|
err = heci_start_read(dev, if_num, file_ext);
|
||||||
|
spin_lock(&file_ext->read_io_lock);
|
||||||
if (err != 0 && err != -EBUSY) {
|
if (err != 0 && err != -EBUSY) {
|
||||||
DBG("heci start read failure with status = %d\n", err);
|
DBG("heci start read failure with status = %d\n", err);
|
||||||
spin_unlock(&file_ext->read_io_lock);
|
spin_unlock(&file_ext->read_io_lock);
|
||||||
|
@ -637,8 +637,9 @@ int heci_start_read(struct iamt_heci_device *dev, int if_num,
|
|||||||
DBG("received wrong function input param.\n");
|
DBG("received wrong function input param.\n");
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
}
|
}
|
||||||
if (file_ext->state != HECI_FILE_CONNECTED)
|
if (file_ext->state != HECI_FILE_CONNECTED) {
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
}
|
||||||
|
|
||||||
spin_lock_bh(&dev->device_lock);
|
spin_lock_bh(&dev->device_lock);
|
||||||
if (dev->heci_state != HECI_ENABLED) {
|
if (dev->heci_state != HECI_ENABLED) {
|
||||||
@ -647,18 +648,26 @@ int heci_start_read(struct iamt_heci_device *dev, int if_num,
|
|||||||
}
|
}
|
||||||
spin_unlock_bh(&dev->device_lock);
|
spin_unlock_bh(&dev->device_lock);
|
||||||
DBG("check if read is pending.\n");
|
DBG("check if read is pending.\n");
|
||||||
|
spin_lock(&file_ext->read_io_lock);
|
||||||
if ((file_ext->read_pending) || (file_ext->read_cb != NULL)) {
|
if ((file_ext->read_pending) || (file_ext->read_cb != NULL)) {
|
||||||
DBG("read is pending.\n");
|
DBG("read is pending.\n");
|
||||||
|
spin_unlock(&file_ext->read_io_lock);
|
||||||
return -EBUSY;
|
return -EBUSY;
|
||||||
}
|
}
|
||||||
|
spin_unlock(&file_ext->read_io_lock);
|
||||||
|
|
||||||
priv_cb = kzalloc(sizeof(struct heci_cb_private), GFP_KERNEL);
|
priv_cb = kzalloc(sizeof(struct heci_cb_private), GFP_KERNEL);
|
||||||
if (!priv_cb)
|
if (!priv_cb)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
|
spin_lock(&file_ext->read_io_lock);
|
||||||
DBG("allocation call back success\n"
|
DBG("allocation call back success\n"
|
||||||
"host client = %d, ME client = %d\n",
|
"host client = %d, ME client = %d\n",
|
||||||
file_ext->host_client_id, file_ext->me_client_id);
|
file_ext->host_client_id, file_ext->me_client_id);
|
||||||
|
spin_unlock(&file_ext->read_io_lock);
|
||||||
|
|
||||||
spin_lock_bh(&dev->device_lock);
|
spin_lock_bh(&dev->device_lock);
|
||||||
|
spin_lock(&file_ext->read_io_lock);
|
||||||
for (i = 0; i < dev->num_heci_me_clients; i++) {
|
for (i = 0; i < dev->num_heci_me_clients; i++) {
|
||||||
if (dev->me_clients[i].client_id == file_ext->me_client_id)
|
if (dev->me_clients[i].client_id == file_ext->me_client_id)
|
||||||
break;
|
break;
|
||||||
@ -666,6 +675,7 @@ int heci_start_read(struct iamt_heci_device *dev, int if_num,
|
|||||||
}
|
}
|
||||||
|
|
||||||
BUG_ON(dev->me_clients[i].client_id != file_ext->me_client_id);
|
BUG_ON(dev->me_clients[i].client_id != file_ext->me_client_id);
|
||||||
|
spin_unlock(&file_ext->read_io_lock);
|
||||||
if (i == dev->num_heci_me_clients) {
|
if (i == dev->num_heci_me_clients) {
|
||||||
rets = -ENODEV;
|
rets = -ENODEV;
|
||||||
goto unlock;
|
goto unlock;
|
||||||
@ -684,12 +694,14 @@ int heci_start_read(struct iamt_heci_device *dev, int if_num,
|
|||||||
/* make sure information is zero before we start */
|
/* make sure information is zero before we start */
|
||||||
priv_cb->information = 0;
|
priv_cb->information = 0;
|
||||||
priv_cb->file_private = (void *) file_ext;
|
priv_cb->file_private = (void *) file_ext;
|
||||||
file_ext->read_cb = priv_cb;
|
|
||||||
spin_lock_bh(&dev->device_lock);
|
spin_lock_bh(&dev->device_lock);
|
||||||
|
spin_lock(&file_ext->read_io_lock);
|
||||||
|
file_ext->read_cb = priv_cb;
|
||||||
if (dev->host_buffer_is_empty) {
|
if (dev->host_buffer_is_empty) {
|
||||||
dev->host_buffer_is_empty = 0;
|
dev->host_buffer_is_empty = 0;
|
||||||
if (!heci_send_flow_control(dev, file_ext)) {
|
if (!heci_send_flow_control(dev, file_ext)) {
|
||||||
rets = -ENODEV;
|
rets = -ENODEV;
|
||||||
|
spin_unlock(&file_ext->read_io_lock);
|
||||||
goto unlock;
|
goto unlock;
|
||||||
} else {
|
} else {
|
||||||
list_add_tail(&priv_cb->cb_list,
|
list_add_tail(&priv_cb->cb_list,
|
||||||
@ -699,6 +711,7 @@ int heci_start_read(struct iamt_heci_device *dev, int if_num,
|
|||||||
list_add_tail(&priv_cb->cb_list,
|
list_add_tail(&priv_cb->cb_list,
|
||||||
&dev->ctrl_wr_list.heci_cb.cb_list);
|
&dev->ctrl_wr_list.heci_cb.cb_list);
|
||||||
}
|
}
|
||||||
|
spin_unlock(&file_ext->read_io_lock);
|
||||||
spin_unlock_bh(&dev->device_lock);
|
spin_unlock_bh(&dev->device_lock);
|
||||||
return rets;
|
return rets;
|
||||||
unlock:
|
unlock:
|
||||||
|
Loading…
Reference in New Issue
Block a user