HomeSort by: relevance | last modified time | path
    Searched defs:nvlist (Results 1 - 6 of 6) sorted by relevancy

  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
spa_config.c 48 * Pool configuration is stored as a packed nvlist on the filesystem. By
54 * For each cache file, we have a single nvlist which holds all the
79 nvlist_t *nvlist, *child; local
108 * Read the nvlist from the file.
114 * Unpack the nvlist.
116 if (nvlist_unpack(buf, fsize, &nvlist, KM_SLEEP) != 0)
120 * Iterate over all elements in the nvlist, creating a new spa_t for
125 while ((nvpair = nvlist_next_nvpair(nvlist, nvpair)) != NULL) {
137 nvlist_free(nvlist);
177 * If the nvlist is empty (NULL), then remove the old cachefile
    [all...]
zfs_ioctl.c 111 * The input nvlist, deserialized from zfs_cmd_t:zc_nvlist_src. Or
112 * NULL if no input nvlist was provided. Changes to this nvlist are
113 * ignored. If the input nvlist could not be deserialized, the
117 * The output nvlist, initially empty. The callback can fill it in,
124 * There are two typical uses of the output nvlist:
1039 * Check for permission to create each snapshot in the nvlist.
1070 * Check for permission to create each snapshot in the nvlist.
1358 * Returns the nvlist as specified by the user in the zfs_cmd_t.
1368 * Read in and unpack the user-supplied nvlist
5341 nvlist_t *nvlist; local
    [all...]
  /src/external/cddl/osnet/dist/uts/common/sys/
nvpair.h 89 /* nvlist header */
90 typedef struct nvlist { struct
101 /* nvlist pack encoding */
105 /* nvlist persistent unique name flags, stored in nvl_nvflags */
109 /* nvlist lookup pairs related flags */
  /src/sys/external/bsd/libnv/dist/
nvlist.c 1 /* $NetBSD: nvlist.c,v 1.11 2024/09/11 15:01:11 riastradh Exp $ */
37 __FBSDID("$FreeBSD: head/sys/contrib/libnv/nvlist.c 335347 2018-06-18 22:57:32Z oshogbo $");
39 __RCSID("$NetBSD: nvlist.c,v 1.11 2024/09/11 15:01:11 riastradh Exp $");
120 struct nvlist { struct
135 MALLOC_DEFINE(M_NVLIST, "nvlist", "kernel nvlist");
459 * Dump content of nvlist.
660 * The function obtains size of the nvlist after nvlist_pack().
1472 NVLIST_EXISTS(nvlist, NVLIST)
    [all...]
  /src/usr.bin/config/
defs.h 121 struct nvlist { struct
122 struct nvlist *nv_next;
140 struct nvlist *cf_root; /* "root on ra0a" */
141 struct nvlist *cf_dump; /* "dumps on ra0b" */
155 struct nvlist *dl_depends;
204 struct nvlist *a_devs; /* children */
205 struct nvlist *a_refs; /* parents */
246 struct nvlist *p_devs; /* children using it */
300 struct nvlist *d_atlist; /* e.g., "at tg" (attr list) */
367 struct nvlist *fi_optf; /* flattened version of above, if needed *
    [all...]
  /src/external/cddl/osnet/dist/lib/libzfs/common/
libzfs_dataset.c 199 * properties into a separate nvlist.
858 * Given an nvlist of properties to set, validates that they are correct, and
1559 * Given an nvlist of property names and values, set the properties for the
1586 * before computing the length of the nvlist.
1836 * True DSL properties are stored in an nvlist. The following two functions
3456 * Destroys all the snapshots named in the nvlist.
3654 * Creates snapshots. The keys in the snaps nvlist are the snapshots to be
4303 nvlist_t *nvlist = NULL; local
4311 if (nvlist_alloc(&nvlist, NV_UNIQUE_NAME, 0) != 0) {
4323 if (nvlist_add_string(nvlist, ZFS_SMB_ACL_SRC
    [all...]

Completed in 27 milliseconds