1
0

ovl_lookup_real_one(): don't bother with strlen()

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Este cometimento está contido em:
Al Viro
2019-04-26 13:07:27 -04:00
ascendente 1d8b29fdb7
cometimento 230c6402b1
7 ficheiros modificados com 13 adições e 15 eliminações

Ver ficheiro

@@ -179,10 +179,10 @@ int __fsnotify_parent(const struct path *path, struct dentry *dentry, __u32 mask
take_dentry_name_snapshot(&name, dentry);
if (path)
ret = fsnotify(p_inode, mask, path, FSNOTIFY_EVENT_PATH,
name.name, 0);
name.name.name, 0);
else
ret = fsnotify(p_inode, mask, dentry->d_inode, FSNOTIFY_EVENT_INODE,
name.name, 0);
name.name.name, 0);
release_dentry_name_snapshot(&name);
}