Lines Matching defs:path
236 /* copy the path name */
371 * find_inode - resolve a user-given path to a specific inode
373 static int inotify_find_inode(const char __user *dirname, struct path *path,
378 error = user_path_at(AT_FDCWD, dirname, flags, path);
382 error = path_permission(path, MAY_READ);
384 path_put(path);
387 error = security_path_notify(path, mask,
390 path_put(path);
735 struct path path;
777 ret = inotify_find_inode(pathname, &path, flags,
782 /* inode held in place by reference to path; group by fget on fd */
783 inode = path.dentry->d_inode;
788 path_put(&path);