slimbus: Use GFP_ATOMIC under spin lock
A spin lock is taken here so we should use GFP_ATOMIC. Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c88c8d7aae
commit
ab9b3de701
@ -98,7 +98,7 @@ int slim_do_transfer(struct slim_controller *ctrl, struct slim_msg_txn *txn)
|
|||||||
if (need_tid) {
|
if (need_tid) {
|
||||||
spin_lock_irqsave(&ctrl->txn_lock, flags);
|
spin_lock_irqsave(&ctrl->txn_lock, flags);
|
||||||
tid = idr_alloc(&ctrl->tid_idr, txn, 0,
|
tid = idr_alloc(&ctrl->tid_idr, txn, 0,
|
||||||
SLIM_MAX_TIDS, GFP_KERNEL);
|
SLIM_MAX_TIDS, GFP_ATOMIC);
|
||||||
txn->tid = tid;
|
txn->tid = tid;
|
||||||
|
|
||||||
if (!txn->msg->comp)
|
if (!txn->msg->comp)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user