Searched refs:nvl (Results 276 - 300 of 338) sorted by relevance

<<11121314

/illumos-gate/usr/src/uts/common/os/
H A Dpool.c1119 nvlist_t *nvl; local
1125 (void) nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP);
1135 ret = pool_pset_propget((psetid_t)id, name, nvl);
1147 ret = pool_cpu_propget((processorid_t)id, name, nvl);
1157 *nvlp = nvl;
1159 nvlist_free(nvl);
H A Ddamap.c394 * nvl: optional nvlist of configuration-private data
403 nvlist_t *nvl, void *addr_priv)
439 if (nvl)
440 (void) nvlist_dup(nvl, &passp->da_nvl_rpt, KM_SLEEP);
613 * nvl: optional nvlist of configuration-private data
623 nvlist_t *nvl, void *addr_priv)
656 if (nvl)
657 (void) nvlist_dup(nvl, &passp->da_nvl_rpt, KM_SLEEP);
402 damap_addr_add(damap_t *damapp, char *address, damap_id_t *addridp, nvlist_t *nvl, void *addr_priv) argument
622 damap_addrset_add(damap_t *damapp, char *address, damap_id_t *ridx, nvlist_t *nvl, void *addr_priv) argument
H A Devchannels.c1568 evch_chsetpropnvl(evch_bind_t *bp, nvlist_t *nvl) argument
1576 chp->ch_propnvl = nvl;
2017 sysevent_evc_setpropnvl(evchan_t *scp, nvlist_t *nvl) argument
2019 nvlist_t *nvlcp = nvl;
2021 if (nvl != NULL && nvlist_dup(nvl, &nvlcp, 0) != 0)
2335 evch_usrsetpropnvl(evchan_t *bp, nvlist_t *nvl) argument
2337 evch_chsetpropnvl((evch_bind_t *)bp, nvl);
/illumos-gate/usr/src/lib/libzfs/common/
H A Dlibzfs_import.c378 nvlist_t *nvl; local
404 if (zcmd_read_dst_nvlist(hdl, &zc, &nvl) != 0) {
410 return (nvl);
455 nvlist_t *nvl; local
770 if ((nvl = refresh_config(hdl, config)) == NULL) {
777 config = nvl;
H A Dlibzfs_pool.c117 nvlist_t *nv, *nvl; local
122 nvl = zhp->zpool_props;
123 if (nvlist_lookup_nvlist(nvl, zpool_prop_to_name(prop), &nv) == 0) {
142 nvlist_t *nv, *nvl; local
162 nvl = zhp->zpool_props;
163 if (nvlist_lookup_nvlist(nvl, zpool_prop_to_name(prop), &nv) == 0) {
664 nvlist_t *nvl = NULL; local
673 if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, 0) != 0)
676 if (nvlist_add_string(nvl, propname, propval) != 0) {
677 nvlist_free(nvl);
[all...]
/illumos-gate/usr/src/cmd/fm/modules/common/eversholt/
H A Dfme.c151 const char *eventstring, const struct ipath *ipp, nvlist_t *nvl);
326 fmd_case_t *fmcase, fmd_event_t *ffep, nvlist_t *nvl)
355 (void) nvlist_lookup_nvlist(nvl, FM_EREPORT_DETECTOR,
520 out(O_DIE|O_SYS, "pack of observed nvl failed");
659 out(O_DIE|O_SYS, "pack of observed nvl failed");
1501 fme_receive_external_report(fmd_hdl_t *hdl, fmd_event_t *ffep, nvlist_t *nvl, argument
1512 epnamenp = platform_getpath(nvl);
1536 (void) nvlist_lookup_nvlist(nvl, FM_EREPORT_DETECTOR,
1546 fme_receive_report(hdl, ffep, class, ipp, nvl);
1551 fme_receive_repair_list(fmd_hdl_t *hdl, fmd_event_t *ffep, nvlist_t *nvl, argument
325 newfme(const char *e0class, const struct ipath *e0ipp, fmd_hdl_t *hdl, fmd_case_t *fmcase, fmd_event_t *ffep, nvlist_t *nvl) argument
1625 fme_receive_report(fmd_hdl_t *hdl, fmd_event_t *ffep, const char *eventstring, const struct ipath *ipp, nvlist_t *nvl) argument
[all...]
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_ioctl.c249 static int get_nvlist(uint64_t nvl, uint64_t size, int iflag, nvlist_t **nvp);
854 * nvl here in case the snapshot is created between
1063 * the name from the nvl here in case the filesystem
1301 get_nvlist(uint64_t nvl, uint64_t size, int iflag, nvlist_t **nvp) argument
1315 if ((error = ddi_copyin((void *)(uintptr_t)nvl, packed, size,
1372 put_nvlist(zfs_cmd_t *zc, nvlist_t *nvl) argument
1378 size = fnvlist_size(nvl);
1383 packed = fnvlist_pack(nvl, &size);
1483 nvlist_t *nvl = NULL; local
1492 (void) nvlist_lookup_nvlist(props, ZPOOL_ROOTFS_PROPS, &nvl);
2488 zfs_set_prop_nvlist(const char *dsname, zprop_source_t source, nvlist_t *nvl, nvlist_t *errlist) argument
2639 zfs_check_userprops(const char *fsname, nvlist_t *nvl) argument
2713 nvlist_t *nvl; local
[all...]
H A Ddsl_destroy.c537 nvlist_t *nvl = fnvlist_alloc(); local
540 fnvlist_add_boolean(nvl, name);
541 error = dsl_destroy_snapshots_nvl(nvl, defer, errlist);
543 fnvlist_free(nvl);
H A Ddsl_userhold.c281 * holds is nvl of snapname -> holdname
531 * Releases holds specified in the nvl holds.
533 * holds is nvl of snapname -> { holdname, ... }
613 * holds is nvl of snapname -> { holdname, ... }
623 * holds is nvl of snapdsobj -> { holdname, ... }
633 dsl_dataset_get_holds(const char *dsname, nvlist_t *nvl) argument
657 fnvlist_add_uint64(nvl, za->za_name,
/illumos-gate/usr/src/cmd/rcm_daemon/common/
H A Drcm_impl.h182 nvlist_t *nvl; /* for state changes */ member in struct:__anon1309
H A Dbridge_rcm.c483 char **errorp, nvlist_t *nvl, rcm_info_t **info)
510 while ((nvp = nvlist_next_nvpair(nvl, nvp)) != NULL) {
482 bridge_notify_event(rcm_handle_t *hd, char *rsrc, id_t id, uint_t flags, char **errorp, nvlist_t *nvl, rcm_info_t **info) argument
H A Dnetwork_rcm.c818 char **errorp, nvlist_t *nvl, rcm_info_t **depend_info)
836 while ((nvp = nvlist_next_nvpair(nvl, nvp)) != NULL) {
817 net_notify_event(rcm_handle_t *hd, char *rsrc, id_t id, uint_t flags, char **errorp, nvlist_t *nvl, rcm_info_t **depend_info) argument
/illumos-gate/usr/src/cmd/fm/fmd/common/
H A Dfmd_rpc_adm.c910 nvlist_t *nvl; local
931 nvl = fmd_case_mkevent(cp, FM_LIST_SUSPECT_CLASS);
933 err = nvlist_pack(nvl, &rvp->rci_evbuf.rci_evbuf_val,
936 nvlist_free(nvl);
H A Dfmd_module.c500 nvlist_t *nvl; local
521 nvl = fmd_protocol_moderror(mp, EFMD_MOD_FAIL, fmd_strerror(err));
522 (void) nvlist_lookup_string(nvl, FM_CLASS, &class);
523 e = fmd_event_create(FMD_EVT_PROTOCOL, FMD_HRT_NOW, nvl, class);
/illumos-gate/usr/src/cmd/fm/modules/common/disk-lights/
H A Ddisk_lights.c289 disklights_recv(fmd_hdl_t *hdl, fmd_event_t *ep, nvlist_t *nvl, argument
/illumos-gate/usr/src/cmd/fm/modules/sun4/cpumem-diagnosis/
H A Dcmd_Lxcache.h171 extern ssize_t cmd_fmri_nvl2str(fmd_hdl_t *hdl, nvlist_t *nvl, char *,
/illumos-gate/usr/src/uts/common/io/scsi/adapters/iscsi/
H A Dnvfile.c1090 nvlist_t *nvl; local
1183 nvl = NULL;
1184 rval = nvlist_unpack(buf, hdr.nvfh_size, &nvl, 0);
1199 nvf_list = nvl;
/illumos-gate/usr/src/uts/common/sys/hotplug/pci/
H A Dpcie_hp.h314 extern int pcie_copyout_nvlist(nvlist_t *nvl, char *packed_buf,
/illumos-gate/usr/src/uts/i86pc/cpu/generic_cpu/
H A Dgcpu_mca.c512 nvlist_t *nvl, *fmri; local
514 if ((nvl = fm_nvlist_create(nva)) == NULL)
522 fm_fmri_hc_create(nvl, FM_HC_SCHEME_VERSION,
528 fm_fmri_hc_set(nvl, FM_HC_SCHEME_VERSION, NULL, NULL, 4,
535 return (nvl);
/illumos-gate/usr/src/lib/fm/libfmnotify/common/
H A Dlibfmnotify.c75 nd_dump_nvlist(nd_hdl_t *nhdl, nvlist_t *nvl) argument
78 nvlist_print(nhdl->nh_log_fd, nvl);
/illumos-gate/usr/src/cmd/fm/notify/smtp-notify/common/
H A Dsmtp-notify.c565 irpt_cbfunc(fmev_t ev, const char *class, nvlist_t *nvl, void *arg) argument
696 listev_cb(fmev_t ev, const char *class, nvlist_t *nvl, void *arg) argument
/illumos-gate/usr/src/cmd/fm/notify/snmp-notify/common/
H A Dsnmp-notify.c382 ireport_cb(fmev_t ev, const char *class, nvlist_t *nvl, void *arg) argument
437 list_cb(fmev_t ev, const char *class, nvlist_t *nvl, void *arg) argument
/illumos-gate/usr/src/uts/i86pc/os/
H A Dcms.c644 cms_ereport_add_logout(cmi_hdl_t hdl, nvlist_t *nvl, nv_alloc_t *nva, argument
651 CMS_OPS(cms)->cms_ereport_add_logout(hdl, nvl, nva, banknum,
/illumos-gate/usr/src/cmd/fm/modules/sun4v/generic-mem/
H A Dgmem_dimm.c490 gmem_find_dimm_chip(nvlist_t *nvl, uint32_t *chip) argument
500 if (nvlist_lookup_nvlist_array(nvl, FM_FMRI_HC_LIST, &hcl, &n) < 0)
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/snowbird/frutree/
H A Dpiclfrutree.c4673 nvlist_t *nvl; local
4685 if (nvlist_alloc(&nvl, NV_UNIQUE_NAME_TYPE, NULL)) {
4688 if (nvlist_add_uint64(nvl, PICLEVENTARG_NODEHANDLE, nodeh)) {
4689 nvlist_free(nvl);
4694 nvlist_free(nvl);
4706 nvlist_free(nvl);
4710 if (nvlist_add_string(nvl, arg, val1)) {
4712 nvlist_free(nvl);
4718 if (nvlist_pack(nvl, &pack_buf, &nvl_size, NV_ENCODE_NATIVE,
4721 nvlist_free(nvl);
[all...]

Completed in 121 milliseconds

<<11121314