diff options
author | Chaehyun Lim <chaehyun.lim@gmail.com> | 2015-08-17 11:05:10 +0900 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-08-17 12:47:46 -0700 |
commit | 5c07828f5db4c620a4f574b3a4bb0a0bba82826b (patch) | |
tree | a196b106562209293395ae890ea20d79bf5aa907 | |
parent | 6e3f05bfc02b61adf50709c4a96f07314addeeb6 (diff) | |
download | op-kernel-dev-5c07828f5db4c620a4f574b3a4bb0a0bba82826b.zip op-kernel-dev-5c07828f5db4c620a4f574b3a4bb0a0bba82826b.tar.gz |
staging: wilc1000: use kmalloc instead of WILC_NEW
WILC_NEW is replaced by kmallo with GFP_ATOMIC.
This kmalloc is inside a spin_lock_irqsave region.
Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/wilc1000/wilc_msgqueue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/wilc1000/wilc_msgqueue.c b/drivers/staging/wilc1000/wilc_msgqueue.c index d903548..70e4fa6 100644 --- a/drivers/staging/wilc1000/wilc_msgqueue.c +++ b/drivers/staging/wilc1000/wilc_msgqueue.c @@ -68,7 +68,7 @@ WILC_ErrNo WILC_MsgQueueSend(WILC_MsgQueueHandle *pHandle, spin_lock_irqsave(&pHandle->strCriticalSection, flags); /* construct a new message */ - pstrMessage = WILC_NEW(Message, 1); + pstrMessage = kmalloc(sizeof(Message), GFP_ATOMIC); WILC_NULLCHECK(s32RetStatus, pstrMessage); pstrMessage->u32Length = u32SendBufferSize; pstrMessage->pstrNext = NULL; |