X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Freadahead-collect.c;h=20881b3944673c4fb33b9a2ec6a34492d5e8fe43;hp=913a34005e3c69f8a8c31dfa5510997e68bb9a17;hb=ddd88763921a1534081ed28e36f6712a85449005;hpb=3afe3725fcf21fab7204243b9485a118e499b4a3 diff --git a/src/readahead-collect.c b/src/readahead-collect.c index 913a34005..20881b394 100644 --- a/src/readahead-collect.c +++ b/src/readahead-collect.c @@ -380,7 +380,17 @@ static int collect(const char *root) { if ((n = read(fanotify_fd, &data, sizeof(data))) < 0) { - if (errno == EINTR || errno == EAGAIN || errno == EACCES) + if (errno == EINTR || errno == EAGAIN) + continue; + + /* fanotify sometimes returns EACCES on read() + * where it shouldn't. For now let's just + * ignore it here (which is safe), but + * eventually this should be + * dropped when the kernel is fixed. + * + * https://bugzilla.redhat.com/show_bug.cgi?id=707577 */ + if (errno == EACCES) continue; log_error("Failed to read event: %m");