linux-stable/drivers/staging/r8188eu
Duoming Zhou 0ac6306e99 drivers: staging: r8188eu: Fix sleep-in-atomic-context bug in rtw_join_timeout_handler
[ Upstream commit ce8cc75c74 ]

The rtw_join_timeout_handler() is a timer handler that
runs in atomic context, but it could call msleep().
As a result, the sleep-in-atomic-context bug will happen.
The process is shown below:

     (atomic context)
rtw_join_timeout_handler
 _rtw_join_timeout_handler
  rtw_do_join
   rtw_select_and_join_from_scanned_queue
    rtw_indicate_disconnect
     rtw_lps_ctrl_wk_cmd
      lps_ctrl_wk_hdl
       LPS_Leave
        LPS_RF_ON_check
         msleep //sleep in atomic context

Fix by removing msleep() and replacing with mdelay().

Fixes: 15865124fe ("staging: r8188eu: introduce new core dir for RTL8188eu driver")
Signed-off-by: Duoming Zhou <duoming@zju.edu.cn>
Link: https://lore.kernel.org/r/20221018083424.79741-1-duoming@zju.edu.cn
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
2022-12-31 13:26:24 +01:00
..
core drivers: staging: r8188eu: Fix sleep-in-atomic-context bug in rtw_join_timeout_handler 2022-12-31 13:26:24 +01:00
hal staging: r8188eu: make dump_chip_info() static 2022-07-27 08:45:22 +02:00
include staging: r8188eu: make dump_chip_info() static 2022-07-27 08:45:22 +02:00
os_dep staging: r8188eu: Add Rosewill USB-N150 Nano to device tables 2022-08-16 15:25:00 +02:00
Kconfig
Makefile staging: r8188eu: make power sequences static 2022-06-27 13:51:08 +02:00
TODO