forked from luck/tmp_suning_uos_patched
Input: uinput - add a schedule point in uinput_inject_events()
Large writes to uinput interface may cause rcu stalls. Let's add cond_resched() to the loop to avoid this. Reviewed-by: Paul E. McKenney <paulmck@linux.ibm.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
36d2582ff2
commit
cecf107048
|
@ -598,6 +598,7 @@ static ssize_t uinput_inject_events(struct uinput_device *udev,
|
||||||
|
|
||||||
input_event(udev->dev, ev.type, ev.code, ev.value);
|
input_event(udev->dev, ev.type, ev.code, ev.value);
|
||||||
bytes += input_event_size();
|
bytes += input_event_size();
|
||||||
|
cond_resched();
|
||||||
}
|
}
|
||||||
|
|
||||||
return bytes;
|
return bytes;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user