Lines Matching defs:path
200 /* copy the path name */
335 * find_inode - resolve a user-given path to a specific inode
337 static int inotify_find_inode(const char __user *dirname, struct path *path,
342 error = user_path_at(AT_FDCWD, dirname, flags, path);
346 error = inode_permission(path->dentry->d_inode, MAY_READ);
348 path_put(path);
351 error = security_path_notify(path, mask,
354 path_put(path);
701 struct path path;
743 ret = inotify_find_inode(pathname, &path, flags,
748 /* inode held in place by reference to path; group by fget on fd */
749 inode = path.dentry->d_inode;
754 path_put(&path);