diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2018-10-04 20:45:54 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2018-10-05 14:42:31 -0400 |
commit | 36d2582ff235b4e01ad64a734c877a52dc762d9c (patch) | |
tree | 71de3ed5c487600e822833da466a7d1f30ec0ba8 /drivers/input | |
parent | f74c371fe72a4f820d287db8067683fb533e4ede (diff) |
Input: evdev - add a schedule point in evdev_write()
Large writes to evdev 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>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/evdev.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/input/evdev.c b/drivers/input/evdev.c index 370206f987f9..f48369d6f3a0 100644 --- a/drivers/input/evdev.c +++ b/drivers/input/evdev.c | |||
@@ -564,6 +564,7 @@ static ssize_t evdev_write(struct file *file, const char __user *buffer, | |||
564 | 564 | ||
565 | input_inject_event(&evdev->handle, | 565 | input_inject_event(&evdev->handle, |
566 | event.type, event.code, event.value); | 566 | event.type, event.code, event.value); |
567 | cond_resched(); | ||
567 | } | 568 | } |
568 | 569 | ||
569 | out: | 570 | out: |