Fanotify probably doesn't want to watch autodirs so make it use d_can_lookup()
rather than d_is_dir() when checking a dir watch and give an error on fake
directories.
Signed-off-by: David Howells <[email protected]>
Signed-off-by: Al Viro <[email protected]>
/* sorry, fanotify only gives a damn about files and dirs */
if (!d_is_reg(path->dentry) &&
- !d_is_dir(path->dentry))
+ !d_can_lookup(path->dentry))
return false;
if (inode_mark && vfsmnt_mark) {