Lines Matching refs:aux
1358 nvlist_t *aux) in zfs_event_create() argument
1404 if (aux) { in zfs_event_create()
1407 while ((elem = nvlist_next_nvpair(aux, elem)) != NULL) in zfs_event_create()
1411 (void) spa, (void) vd, (void) type, (void) name, (void) aux; in zfs_event_create()
1418 nvlist_t *aux) in zfs_post_common() argument
1423 resource = zfs_event_create(spa, vd, type, name, aux); in zfs_post_common()
1427 (void) spa, (void) vd, (void) type, (void) name, (void) aux; in zfs_post_common()
1440 nvlist_t *aux = NULL; in zfs_post_remove() local
1446 aux = fm_nvlist_create(NULL); in zfs_post_remove()
1447 if (aux) in zfs_post_remove()
1448 fnvlist_add_boolean(aux, "by_kernel"); in zfs_post_remove()
1451 zfs_post_common(spa, vd, FM_RSRC_CLASS, FM_RESOURCE_REMOVED, aux); in zfs_post_remove()
1453 if (by_kernel && aux) in zfs_post_remove()
1454 fm_nvlist_destroy(aux, FM_NVA_FREE); in zfs_post_remove()
1478 nvlist_t *aux; in zfs_post_state_change() local
1483 aux = fm_nvlist_create(NULL); in zfs_post_state_change()
1484 if (vd && aux) { in zfs_post_state_change()
1486 fnvlist_add_string(aux, in zfs_post_state_change()
1491 fnvlist_add_string(aux, in zfs_post_state_change()
1496 fnvlist_add_uint64(aux, in zfs_post_state_change()
1501 aux); in zfs_post_state_change()
1503 if (aux) in zfs_post_state_change()
1504 fm_nvlist_destroy(aux, FM_NVA_FREE); in zfs_post_state_change()
1554 nvlist_t *aux; in zfs_ereport_snapshot_post() local
1556 aux = fm_nvlist_create(NULL); in zfs_ereport_snapshot_post()
1557 fnvlist_add_string(aux, FM_EREPORT_PAYLOAD_ZFS_SNAPSHOT_NAME, name); in zfs_ereport_snapshot_post()
1559 zfs_post_common(spa, NULL, FM_RSRC_CLASS, subclass, aux); in zfs_ereport_snapshot_post()
1560 fm_nvlist_destroy(aux, FM_NVA_FREE); in zfs_ereport_snapshot_post()
1580 nvlist_t *aux; in zfs_ereport_zvol_post() local
1591 aux = fm_nvlist_create(NULL); in zfs_ereport_zvol_post()
1592 fnvlist_add_string(aux, FM_EREPORT_PAYLOAD_ZFS_DEVICE_NAME, dev_name); in zfs_ereport_zvol_post()
1593 fnvlist_add_string(aux, FM_EREPORT_PAYLOAD_ZFS_RAW_DEVICE_NAME, in zfs_ereport_zvol_post()
1597 fnvlist_add_string(aux, FM_EREPORT_PAYLOAD_ZFS_VOLUME, &r[1]); in zfs_ereport_zvol_post()
1599 zfs_post_common(spa, NULL, FM_RSRC_CLASS, subclass, aux); in zfs_ereport_zvol_post()
1600 fm_nvlist_destroy(aux, FM_NVA_FREE); in zfs_ereport_zvol_post()