Searched defs:fsid (Results 1 - 5 of 5) sorted by relevance

/osnet-11/usr/src/lib/libuvfs/common/
H A Dfsid.c42 uint64_t fsid = 0; local
46 if (nvlist_lookup_uint64(nvl, A_FSID, &fsid))
51 return (fsid);
55 libuvfs_fsid_to_str(const uint64_t fsid, char *result, int size) argument
57 (void) snprintf(result, size, "%016" PRIx64, fsid);
63 uint64_t fsid; local
65 fsid = strtoll(fsidstr, NULL, 16);
67 return (fsid);
H A Dfs.c81 libuvfs_create_fs(libuvfs_version_t version, uint64_t fsid) argument
91 fs->fs_fsid = fsid;
H A Dsvc.c145 prop = scf_simple_app_props_search(fs->fs_scf_props, "filesys", "fsid");
220 const char *mountpoint, uint64_t fsid, const char *options)
233 libuvfs_fsid_to_str(fsid, fsid_str, sizeof (fsid_str));
234 (void) strlcpy(inst_name, "fsid-", inst_name_size);
296 rc = libuvfs_set_trans_integer(trans, "fsid", (int64_t)fsid);
219 libuvfs_daemon_launch(libuvfs_fs_t *fs, const char *special, const char *mountpoint, uint64_t fsid, const char *options) argument
/osnet-11/usr/src/lib/libfuse/common/
H A Dutil.c280 uint64_t fsid; local
283 fsid = LIBUVFS_FSID_SVC;
285 fsid = libuvfs_get_fsid(mountp);
286 if (fsid == 0)
291 fuse_chan->fuse_uvfs_fs = libuvfs_create_fs(LIBUVFS_VERSION, fsid);
/osnet-11/usr/src/lib/libzfs/common/
H A Dlibzfs_dataset.c6316 * Each fsid operation needs to do the same verification for the
6332 "Can't perform fsid operations on snapshots"));
6364 * fsid - If non-zero, value is used to set/reset the FSID.
6381 uint64_t fsid,
6389 "cannot set fsid for '%s'"), fsname);
6398 zc.zc_guid = fsid; /* May be zero */
6400 if (fsid)
6408 "fixed fsid attribute exists"));
6413 "fixed fsid attribute does not exist"));
6426 zfs_set_fsid(libzfs_handle_t *hdl, const char *fsname, uint64_t fsid) argument
6378 zfs_set_fsid_impl( libzfs_handle_t *hdl, const char *fsname, uint64_t fsid, boolean_t create) argument
6433 zfs_reset_fsid(libzfs_handle_t *hdl, const char *fsname, uint64_t fsid) argument
[all...]

Completed in 28 milliseconds