Home | History | Annotate | Download | only in extlinux

Lines Matching refs:subpath

195 const struct mountinfo *find_mount(const char *path, char **subpath)
216 * Tricky business: we need the longest matching subpath
217 * which isn't a parent of the same subpath.
240 if (best && subpath) {
242 *subpath = strdup("/");
244 *subpath = strdup(real_path + best->pathlen);
256 char *subpath;
261 m = find_mount(argv[i], &subpath);
268 argv[i], subpath, m->devpath, major(m->dev), minor(m->dev),
271 free(subpath);