commit | 162bd5e5fd921785077b5862d8f2ffabe2fe11e5 | [log] [tgz] |
---|---|---|
author | Jia-Ju Bai <baijiaju1990@163.com> | Tue Dec 12 17:26:36 2017 +0800 |
committer | Johannes Berg <johannes.berg@intel.com> | Tue Dec 19 09:14:06 2017 +0100 |
tree | 26cc8e6a69b56fce2c1eae9b634c08c8253216ab | |
parent | 5d32407396b0433f9b738fcfcb9599bcba7379ae [diff] |
mac80211_hwsim: Fix a possible sleep-in-atomic bug in hwsim_get_radio_nl The driver may sleep under a spinlock. The function call path is: hwsim_get_radio_nl (acquire the spinlock) nlmsg_new(GFP_KERNEL) --> may sleep To fix it, GFP_KERNEL is replaced with GFP_ATOMIC. This bug is found by my static analysis tool(DSAC) and checked by my code review. Signed-off-by: Jia-Ju Bai <baijiaju1990@163.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>