mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
staging: r8188eu: use GFP_ATOMIC under spinlock
kmalloc() in function update_bcn_wps_ie() is called under a spinlock
so the allocation have to be atomic.
-> update_beacon() <- takes a spinlock
-> update_bcn_vendor_spec_ie()
-> update_bcn_wps_ie()
Fixes: 79f712ea99
("staging: r8188eu: Remove wrappers for kalloc() and kzalloc()")
Signed-off-by: Michael Straube <straube.linux@gmail.com>
Link: https://lore.kernel.org/r/20210819152914.17482-1-straube.linux@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
89b9f3f39a
commit
55cdf7d7b2
1 changed files with 1 additions and 1 deletions
|
@ -1293,7 +1293,7 @@ static void update_bcn_wps_ie(struct adapter *padapter)
|
|||
remainder_ielen = ielen - wps_offset - wps_ielen;
|
||||
|
||||
if (remainder_ielen > 0) {
|
||||
pbackup_remainder_ie = kmalloc(remainder_ielen, GFP_KERNEL);
|
||||
pbackup_remainder_ie = kmalloc(remainder_ielen, GFP_ATOMIC);
|
||||
if (pbackup_remainder_ie)
|
||||
memcpy(pbackup_remainder_ie, premainder_ie, remainder_ielen);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue