Commit 98b5c10d authored by Jean-Christophe Dubois's avatar Jean-Christophe Dubois Committed by Eric Paris

fanotify: do not always return 0 in fsnotify

It seems to me you are always returning 0 in fsnotify, when you should return
the error (EPERM) returned by fanotify.
Signed-off-by: default avatarJean-Christophe DUBOIS <jcd@tribudubois.net>
Signed-off-by: default avatarEric Paris <eparis@redhat.com>
parent 8860f060
......@@ -269,7 +269,7 @@ int fsnotify(struct inode *to_tell, __u32 mask, void *data, int data_is,
if (event)
fsnotify_put_event(event);
return 0;
return ret;
}
EXPORT_SYMBOL_GPL(fsnotify);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment