Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
laird: ath6kl: Fix scheduling while atomic bug during firmware recovery
During firmware recovery, which is done in an interrupt context, some atheros driver events are sent via netlink which use GFP_KERNEL. Memory allocations using GFP_KERNEL allow for sleeping which is not allowed in an interrupt. Replacing those with GFP_ATOMIC which is safe. Bug: 6950
- Loading branch information