mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 05:30:54 +07:00
[PATCH] net/slip: replace schedule_timeout() with msleep_interruptible()
Use msleep_interruptible() instead of schedule_timeout() to guarantee the task delays as expected.
This commit is contained in:
parent
6835d09ad2
commit
a9fc251089
@ -1383,10 +1383,8 @@ static void __exit slip_exit(void)
|
|||||||
/* First of all: check for active disciplines and hangup them.
|
/* First of all: check for active disciplines and hangup them.
|
||||||
*/
|
*/
|
||||||
do {
|
do {
|
||||||
if (busy) {
|
if (busy)
|
||||||
set_current_state(TASK_INTERRUPTIBLE);
|
msleep_interruptible(100);
|
||||||
schedule_timeout(HZ / 10);
|
|
||||||
}
|
|
||||||
|
|
||||||
busy = 0;
|
busy = 0;
|
||||||
for (i = 0; i < slip_maxdev; i++) {
|
for (i = 0; i < slip_maxdev; i++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user