[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20180316232147.GA20146@avx2>
Date: Sat, 17 Mar 2018 02:21:47 +0300
From: Alexey Dobriyan <adobriyan@...il.com>
To: akpm@...ux-foundation.org
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH -mm] proc: fixup test for read
/proc/kmsg can and will block if read under root.
Signed-off-by: Alexey Dobriyan <adobriyan@...il.com>
---
tools/testing/selftests/proc/read.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
--- a/tools/testing/selftests/proc/read.c
+++ b/tools/testing/selftests/proc/read.c
@@ -54,7 +54,8 @@ static void f_reg(DIR *d, const char *filename)
int fd;
ssize_t rv;
- fd = openat(dirfd(d), filename, O_RDONLY);
+ /* read from /proc/kmsg can block */
+ fd = openat(dirfd(d), filename, O_RDONLY|O_NONBLOCK);
if (fd == -1)
return;
rv = read(fd, buf, sizeof(buf));
Powered by blists - more mailing lists