public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] rts5208: Fix a sleep-in-atomic bug in sd_send_cmd_get_rsp
@ 2017-06-13 11:18 Jia-Ju Bai
  0 siblings, 0 replies; 3+ messages in thread
From: Jia-Ju Bai @ 2017-06-13 11:18 UTC (permalink / raw)
  To: Greg KH, wporter82, sergio.paracuellos, aquannie; +Cc: devel, LKML

The driver may sleep under a spin lock, and the function call path is:
rtsx_exclusive_enter_ss (acquire the lock by spin_lock)
   rtsx_enter_ss
     rtsx_power_off_card
       sd_cleanup_work
         sd_stop_seq_mode
           sd_switch_clock
             sd_ddr_tuning
               sd_ddr_pre_tuning_tx
                 sd_send_cmd_get_rsp
                   wait_timeout
                     schedule_timeout -->  may sleep

To fix it, "wait_timeout" is replaced with mdelay in sd_send_cmd_get_rsp.

Signed-off-by: Jia-Ju Bai<baijiaju1990@163.com>
---
  drivers/staging/rts5208/sd.c |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rts5208/sd.c b/drivers/staging/rts5208/sd.c
index bdd35b6..fed17ff 100644
--- a/drivers/staging/rts5208/sd.c
+++ b/drivers/staging/rts5208/sd.c
@@ -226,7 +226,7 @@ static int sd_send_cmd_get_rsp(struct rtsx_chip *chip, u8 cmd_idx,
  				return STATUS_FAIL;
  			}
  			if (rty_cnt<  SD_MAX_RETRY_COUNT) {
-				wait_timeout(20);
+				mdelay(20);
  				rty_cnt++;
  				goto RTY_SEND_CMD;
  			} else {
-- 1.7.9.5

^ permalink raw reply related	[flat|nested] 3+ messages in thread
* [PATCH] rts5208: Fix a sleep-in-atomic bug in sd_send_cmd_get_rsp
@ 2017-06-05  1:31 Jia-Ju Bai
  2017-06-13  9:41 ` Greg KH
  0 siblings, 1 reply; 3+ messages in thread
From: Jia-Ju Bai @ 2017-06-05  1:31 UTC (permalink / raw)
  To: gregkh, wporter82, sergio.paracuellos, aquannie
  Cc: devel, linux-kernel, Jia-Ju Bai

The driver may sleep under a spin lock, and the function call path is:
rtsx_exclusive_enter_ss (acquire the lock by spin_lock)
  rtsx_enter_ss
    rtsx_power_off_card
      sd_cleanup_work
        sd_stop_seq_mode
          sd_switch_clock
            sd_ddr_tuning
              sd_ddr_pre_tuning_tx
                sd_send_cmd_get_rsp
                  wait_timeout
                    schedule_timeout --> may sleep

To fix it, "wait_timeout" is replaced with mdelay in sd_send_cmd_get_rsp.

Signed-off-by: Jia-Ju Bai <baijiaju1990@163.com>
---
 drivers/staging/rts5208/sd.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rts5208/sd.c b/drivers/staging/rts5208/sd.c
index bdd35b6..fed17ff 100644
--- a/drivers/staging/rts5208/sd.c
+++ b/drivers/staging/rts5208/sd.c
@@ -226,7 +226,7 @@ static int sd_send_cmd_get_rsp(struct rtsx_chip *chip, u8 cmd_idx,
 				return STATUS_FAIL;
 			}
 			if (rty_cnt < SD_MAX_RETRY_COUNT) {
-				wait_timeout(20);
+				mdelay(20);
 				rty_cnt++;
 				goto RTY_SEND_CMD;
 			} else {
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-06-13 11:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-13 11:18 [PATCH] rts5208: Fix a sleep-in-atomic bug in sd_send_cmd_get_rsp Jia-Ju Bai
  -- strict thread matches above, loose matches on Subject: below --
2017-06-05  1:31 Jia-Ju Bai
2017-06-13  9:41 ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox