Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1ca39ab9 authored by Eric Paris's avatar Eric Paris
Browse files

inotify: automatically restart syscalls



We were mistakenly returning EINTR when we found an outstanding signal.
Instead we should returen ERESTARTSYS and allow the kernel to handle
things the right way.

Patch-from: Oleg Nesterov <oleg@redhat.com>
Signed-off-by: default avatarEric Paris <eparis@redhat.com>
parent 8b99c3cc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -264,7 +264,7 @@ static ssize_t inotify_read(struct file *file, char __user *buf,
		ret = -EAGAIN;
		if (file->f_flags & O_NONBLOCK)
			break;
		ret = -EINTR;
		ret = -ERESTARTSYS;
		if (signal_pending(current))
			break;