HomeSort by relevance Sort by last modified time
    Searched defs:ena (Results 1 - 16 of 16) sorted by null

  /netvirt/usr/src/cmd/fm/fmdump/common/
error.c 48 uint64_t ena = 0; local
51 (void) nvlist_lookup_uint64(rp->rec_nvl, FM_EREPORT_ENA, &ena);
54 fmdump_date(buf, sizeof (buf), rp), rp->rec_class, ena);
79 "TIME CLASS ENA",
  /netvirt/usr/src/uts/common/fs/zfs/
zfs_fm.c 51 * SPA-wide ENA.
53 * For isolated I/O requests, we get the ENA from the zio_t. The propagation
83 * ENA.
85 * We keep track of the ENA for a ZIO chain through the 'io_logical' member.
88 * will use the same ENA. If a physical I/O is issued (by passing the
90 * unique ENA will be generated. For an aggregate I/O, this pointer is set to
100 uint64_t ena; local
149 * Determine the ENA to use for this event. If we are in a loading
150 * state, use a SPA-wide ENA. Otherwise, if we are in an I/O state, use
151 * a root zio-wide ENA. Otherwise, simply use a unique ENA
    [all...]
  /netvirt/usr/src/cmd/fm/fmd/common/
fmd_protocol.c 224 uint64_t ena = fmd_ena(); local
242 err |= nvlist_add_uint64(nvl, FM_EREPORT_ENA, ena);
256 uint64_t ena = fmd_ena(); local
271 err |= nvlist_add_uint64(nvl, FM_EREPORT_ENA, ena);
fmd_event.c 134 uint64_t ena; local
161 * valid ENA, we can compute a more precise bound on the event time.
165 nvlist_lookup_uint64(nvl, FM_EREPORT_ENA, &ena) == 0 &&
167 hrt = fmd_time_ena2hrt(hrt, ena);
fmd_sysevent.c 224 uint64_t ena; local
303 * contains valid ENA, we can improve the precision of 'hrt'.
305 if (nvlist_lookup_uint64(nvl, FM_EREPORT_ENA, &ena) == 0)
306 hrt = fmd_time_ena2hrt(hrt, ena);
  /netvirt/usr/src/cmd/mdb/common/modules/genunix/
fm.c 155 uint64_t ena = 0; local
172 mdb_printf("ENA CLASS\n");
177 * and ENA. The code uses project private macros from libnvpair
179 * to get a valid class and ENA from the nvpair list, we revert to
220 NVP_TYPE(nvpair) == DATA_TYPE_UINT64 && ena == 0) {
221 bcopy(NVP_VALUE(nvpair), (char *)&ena,
225 if (class != NULL && ena != 0) {
226 mdb_printf("0x%016llx %s\n", ena, class);
  /netvirt/usr/src/uts/common/io/bge/
bge_log.c 129 uint64_t ena; local
133 ena = fm_ena_generate(0, FM_ENA_FMT1);
135 ddi_fm_ereport_post(bgep->devinfo, buf, ena, DDI_NOSLEEP,
  /netvirt/usr/src/cmd/fm/modules/sun4/cpumem-diagnosis/
cmd_cpuerr.c 449 uint64_t ena; local
470 (void) nvlist_lookup_uint64(nvl, FM_EREPORT_ENA, &ena);
481 fmd_hdl_debug(hdl, "looking up ena %llx,afar %llx with\n", ena, afar);
485 if ((trw = cmd_trw_lookup(ena, afar_status, afar)) == NULL) {
486 if ((trw = cmd_trw_alloc(ena, afar)) == NULL) {
  /netvirt/usr/src/uts/common/io/nxge/
nxge_fm.c 516 uint64_t ena; local
524 ena = fm_ena_generate(0, FM_ENA_FMT1);
533 ddi_fm_ereport_post(nxgep->dip, eclass, ena,
542 ddi_fm_ereport_post(nxgep->dip, eclass, ena,
554 ddi_fm_ereport_post(nxgep->dip, eclass, ena,
566 ddi_fm_ereport_post(nxgep->dip, eclass, ena,
577 ddi_fm_ereport_post(nxgep->dip, eclass, ena,
586 ddi_fm_ereport_post(nxgep->dip, eclass, ena,
597 ddi_fm_ereport_post(nxgep->dip, eclass, ena,
605 ddi_fm_ereport_post(nxgep->dip, eclass, ena,
    [all...]
  /netvirt/usr/src/cmd/fm/modules/common/disk-transport/
disk_transport.c 77 const char *faultname, uint64_t ena, nvlist_t *detector, nvlist_t *payload)
89 e |= nvlist_add_uint64(nvl, FM_EREPORT_ENA, ena);
116 uint64_t ena; local
155 ena = fmd_event_ena_create(dmp->dm_hdl);
174 nvpair_name(elem), ena, fmri, details);
  /netvirt/usr/src/uts/common/os/
ddifm.c 102 * the nexus parent or FM IO framework, ddi_fm_error_t data (status, ena
104 * DDI_FM_FATAL is returned, the ena is valid and the expectation flag
160 uint64_t ena; local
163 ena = fm_ena_generate(0, FM_ENA_FMT1);
171 ddi_fm_ereport_post(dip, buf, ena, DDI_NOSLEEP,
181 ddi_fm_ereport_post(dip, buf, ena, DDI_NOSLEEP,
188 ddi_fm_ereport_post(dip, buf, ena, DDI_NOSLEEP,
197 ddi_fm_ereport_post(dip, buf, ena, DDI_NOSLEEP,
204 ddi_fm_ereport_post(dip, buf, ena, DDI_NOSLEEP,
216 erpt_post_sleep(dev_info_t *dip, const char *error_class, uint64_t ena,
    [all...]
fm.c 49 * ENA Manipulation
51 * Routines to generate ENA formats 0, 1 and 2 are available as well as
53 * ENA are extractable via fm_ena_time_get(), fm_ena_id_get(),
777 * ena uint64_t <ena>
784 uint64_t ena, const nvlist_t *detector, ...)
803 if (nvlist_add_uint64(ereport, FM_EREPORT_ENA, ena)) {
1104 fm_ena_increment(uint64_t ena)
1108 switch (ENA_FORMAT(ena)) {
1110 new_ena = ena + (1 << ENA_FMT1_GEN_SHFT)
1125 uint64_t ena = 0; local
    [all...]
  /netvirt/usr/src/cmd/fm/modules/common/zfs-diagnosis/
zfs_de.c 334 uint64_t ena, pool_guid, vdev_guid; local
369 * indexed by ENA, since ZFS does all the work of chaining together
386 if (nvlist_lookup_uint64(nvl, FM_EREPORT_ENA, &ena) != 0)
387 ena = 0;
392 * Matches a known ENA.
394 if (zcp->zc_data.zc_ena == ena)
437 data.zc_ena = ena;
513 * chained together by the same ENA. If the pool open succeeds, then
  /netvirt/usr/src/uts/common/crypto/io/
dca.c 426 static uint64_t dca_ena(uint64_t ena);
2429 uint64_t ena = 0; local
    [all...]
  /netvirt/usr/src/uts/common/io/
bofi.c 2354 uint64_t ena; local
2475 uint64_t ena; local
2574 uint64_t ena; local
    [all...]
  /netvirt/usr/src/uts/common/io/aac/
aac.c 5596 uint64_t ena; local
    [all...]

Completed in 5099 milliseconds