The patch titled Subject: sendfile: allows bypassing of notifier events has been added to the -mm tree. Its filename is sendfile-allows-bypassing-of-notifier-events.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Scott Wolchok <swolchok@xxxxxxxxx> Subject: sendfile: allows bypassing of notifier events do_sendfile() in fs/read_write.c does not call the fsnotify functions, unlike its neighbors. This manifests as a lack of inotify ACCESS events when a file is sent using sendfile(2). Addresses https://bugzilla.kernel.org/show_bug.cgi?id=12812 Signed-off-by: Alan Cox <alan@xxxxxxxxxxxxxxx> Cc: Dave Chinner <david@xxxxxxxxxxxxx> Cc: Jens Axboe <axboe@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/read_write.c | 2 ++ 1 file changed, 2 insertions(+) diff -puN fs/read_write.c~sendfile-allows-bypassing-of-notifier-events fs/read_write.c --- a/fs/read_write.c~sendfile-allows-bypassing-of-notifier-events +++ a/fs/read_write.c @@ -935,6 +935,8 @@ ssize_t do_sendfile(int out_fd, int in_f if (retval > 0) { add_rchar(current, retval); add_wchar(current, retval); + fsnotify_access(in.file); + fsnotify_access(out.file); } inc_syscr(current); _ Patches currently in -mm which might be from swolchok@xxxxxxxxx are sendfile-allows-bypassing-of-notifier-events.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html