Lines Matching defs:zfs
50 * from the "zfs" command and modified to better suit this library's
84 * zfs file share info.
209 * compares the mountpoint on two zfs file systems handles.
408 * called "zfs".
419 * we check to see if the "zfs" group exists. Since this
421 * parent. This is to make sure the zfs group has been created
430 ret = sa_set_group_attr(group, "zfs", "true");
447 * ZFS shares will be in a subgroup of the "zfs" master group. This
450 * that. The "zfs" group will exist before we get here, but we make
461 sa_group_t zfs;
465 /* start with the top-level "zfs" group */
466 zfs = sa_get_group(handle, "zfs");
468 if (zfs != NULL) {
469 for (group = sa_get_sub_group(zfs); group != NULL;
485 group = _sa_create_zfs_group(zfs, groupname);
490 set_node_attr(group, "zfs", "true");
507 if (sa_get_optionset(zfs, proto) == NULL)
508 (void) sa_create_optionset(zfs, proto);
624 set_node_attr(group, "zfs", "true");
717 set_node_attr(group, "zfs", "true");
730 * Walk the mnttab for all zfs mounts and determine which are
914 #define COMMAND "/usr/sbin/zfs"
936 /* for now, NFS is always available for "zfs" */
1204 * Given the group, determine if the zfs attribute is set.
1210 char *zfs;
1213 zfs = sa_get_group_attr(group, "zfs");
1214 if (zfs != NULL) {
1216 sa_free_attr_string(zfs);
1224 * Check to see if the file system path represents is of type "zfs".
1234 if (fstype != NULL && strcmp(fstype, "zfs") == 0)