From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Sasha Levin To: stable@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Dmitry Torokhov , Sasha Levin Subject: [PATCH AUTOSEL 4.9 4/9] Input: uinput - add a schedule point in uinput_inject_events() Date: Mon, 22 Oct 2018 06:21:28 -0400 Message-Id: <20181022102133.41222-4-sashal@kernel.org> In-Reply-To: <20181022102133.41222-1-sashal@kernel.org> References: <20181022102133.41222-1-sashal@kernel.org> List-ID: From: Dmitry Torokhov [ Upstream commit cecf10704899467a787975e3d94a1f0129b9688e ] 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 Signed-off-by: Dmitry Torokhov Signed-off-by: Sasha Levin --- drivers/input/misc/uinput.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/input/misc/uinput.c b/drivers/input/misc/uinput.c index 022be0e22eba..d015fd7151c1 100644 --- a/drivers/input/misc/uinput.c +++ b/drivers/input/misc/uinput.c @@ -540,6 +540,7 @@ static ssize_t uinput_inject_events(struct uinput_device *udev, input_event(udev->dev, ev.type, ev.code, ev.value); bytes += input_event_size(); + cond_resched(); } return bytes; -- 2.17.1