This was missed when splitting name event from fid event Fixes: cacfb956d46e ("fanotify: record name info for FAN_DIR_MODIFY event") Cc: <stable@xxxxxxxxxxxxxxx> # v5.7+ Signed-off-by: Amir Goldstein <amir73il@xxxxxxxxx> --- Jan, We missed a spot in v5.7. IMO, the issue is not that critical that we must fast track the fix to v5.8, but I am posting this patch based on v5.8-rc7, so you may decide whether you want to fast track it or to apply it at the beginning of the series for next. Either way, this is going to be easier for cherry-picking to stable rather that backporting the fix from the top of the series for next. I pushed my "forward porting" to branch fsnotify-fixes. Thanks, Amir. fs/notify/fanotify/fanotify.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/notify/fanotify/fanotify.c b/fs/notify/fanotify/fanotify.c index 85eda539b35f..04f9a7012f46 100644 --- a/fs/notify/fanotify/fanotify.c +++ b/fs/notify/fanotify/fanotify.c @@ -64,6 +64,7 @@ static bool fanotify_name_event_equal(struct fanotify_name_event *fne1, return false; if (fne1->name_len != fne2->name_len || + !fanotify_fsid_equal(&fne1->fsid, &fne2->fsid) || !fanotify_fh_equal(&fne1->dir_fh, &fne2->dir_fh)) return false; -- 2.17.1