Lines Matching defs:path
26 * wakeup path.
105 * kernfs_path_from_node_locked - find a pseudo-absolute path to @kn_to,
106 * where kn_from is treated as root of the path.
107 * @kn_from: kernfs node which should be treated as root for the path
108 * @kn_to: kernfs node to which path is needed
109 * @buf: buffer to copy the path into
130 * Return: the length of the full path. If the full length is equal to or
131 * greater than @buflen, @buf contains the truncated path with the trailing
206 * kernfs_path_from_node - build path of node @to relative to @from.
207 * @from: parent kernfs_node relative to which we need to build the path
209 * @buf: buffer to copy @to's path into
212 * Builds @to's path relative to @from in @buf. @from and @to must
214 * path (which includes '..'s) as needed to reach from @from to @to is
217 * Return: the length of the full path. If the full length is equal to or
218 * greater than @buflen, @buf contains the truncated path with the trailing
253 * pr_cont_kernfs_path - pr_cont path of a kernfs_node
862 const unsigned char *path,
872 len = strlcpy(kernfs_pr_cont_buf, path, sizeof(kernfs_pr_cont_buf));
919 * kernfs_walk_and_get_ns - find and get kernfs_node with the given path
921 * @path: path to look for
924 * Look for kernfs_node with path @path under @parent and get a reference
930 const char *path, const void *ns)
936 kn = kernfs_walk_ns(parent, path, ns);
1589 * to modify the usual removal path to use kernfs_remove_self(). The
1591 * before proceeding with the usual removal path. kernfs will ignore later