Home | History | Annotate | Download | only in libzfs

Lines Matching refs:mountpoint

67  * mountpoint specified in the 'skip' argument.
89 /* Skip the given mountpoint. */
148 fsshare_main(const char *file, const char *mountpoint, const char *shareopts,
201 while (oldfd != NULL && (line = zgetline(oldfd, mountpoint)) != NULL)
212 fprintf(newfd, "%s\t%s\n", mountpoint,
242 * Add the given mountpoint to the given exports file.
245 fsshare(const char *file, const char *mountpoint, const char *shareopts)
248 return (fsshare_main(file, mountpoint, shareopts, 1));
252 * Remove the given mountpoint from the given exports file.
255 fsunshare(const char *file, const char *mountpoint)
258 return (fsshare_main(file, mountpoint, NULL, 0));