]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
rtsx_usb_ms: use schedule_timeout_idle() in polling loop
authorOleksandr Natalenko <oleksandr@natalenko.name>
Mon, 23 May 2016 23:24:28 +0000 (16:24 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 24 May 2016 00:04:14 +0000 (17:04 -0700)
First version of this patch has already been posted to LKML by Ben
Hutchings ~6 months ago, but no further action were performed.

Ben's original message:

: rtsx_usb_ms creates a task that mostly sleeps, but tasks in
: uninterruptible sleep still contribute to the load average (for
: bug-compatibility with Unix).  A load average of ~1 on a system that
: should be idle is somewhat alarming.
:
: Change the sleep to be interruptible, but still ignore signals.

References: https://bugs.debian.org/765717
Link: http://lkml.kernel.org/r/b49f95ae83057efa5d96f532803cba47@natalenko.name
Signed-off-by: Oleksandr Natalenko <oleksandr@natalenko.name>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Ben Hutchings <ben@decadent.org.uk>
Cc: Lee Jones <lee.jones@linaro.org>
Cc: Wolfram Sang <wsa@the-dreams.de>
Cc: Roger Tseng <rogerable@realtek.com>
Cc: Greg KH <greg@kroah.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/memstick/host/rtsx_usb_ms.c

index 1105db2355d200c454ee13b4baea9588bc2aa05e..d34bc35303851634d143f924a790a47a7f006e8c 100644 (file)
@@ -706,7 +706,7 @@ poll_again:
                if (host->eject)
                        break;
 
-               msleep(1000);
+               schedule_timeout_idle(HZ);
        }
 
        complete(&host->detect_ms_exit);