xref: /illumos-gate/usr/src/uts/common/sys/fm/protocol.h (revision 825ba0f20a74fd9c5d0d1ce2c195da2cc88a7f77)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5ea8dc4b6Seschrock  * Common Development and Distribution License (the "License").
6ea8dc4b6Seschrock  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
207c478bd9Sstevel@tonic-gate  */
21d9638e54Smws 
227c478bd9Sstevel@tonic-gate /*
237bebe46cSjc  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate #ifndef	_SYS_FM_PROTOCOL_H
287c478bd9Sstevel@tonic-gate #define	_SYS_FM_PROTOCOL_H
297c478bd9Sstevel@tonic-gate 
307c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
317c478bd9Sstevel@tonic-gate 
327c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
337c478bd9Sstevel@tonic-gate extern "C" {
347c478bd9Sstevel@tonic-gate #endif
357c478bd9Sstevel@tonic-gate 
367c478bd9Sstevel@tonic-gate #ifdef _KERNEL
377c478bd9Sstevel@tonic-gate #include <sys/varargs.h>
387c478bd9Sstevel@tonic-gate #include <sys/nvpair.h>
397c478bd9Sstevel@tonic-gate #else
407c478bd9Sstevel@tonic-gate #include <libnvpair.h>
417c478bd9Sstevel@tonic-gate #include <stdarg.h>
427c478bd9Sstevel@tonic-gate #endif
437c478bd9Sstevel@tonic-gate #include <sys/processor.h>
447c478bd9Sstevel@tonic-gate 
457c478bd9Sstevel@tonic-gate /* FM common member names */
467c478bd9Sstevel@tonic-gate #define	FM_CLASS			"class"
477c478bd9Sstevel@tonic-gate #define	FM_VERSION			"version"
487c478bd9Sstevel@tonic-gate 
497c478bd9Sstevel@tonic-gate /* FM event class values */
507c478bd9Sstevel@tonic-gate #define	FM_EREPORT_CLASS		"ereport"
517c478bd9Sstevel@tonic-gate #define	FM_FAULT_CLASS			"fault"
527c478bd9Sstevel@tonic-gate #define	FM_RSRC_CLASS			"resource"
537c478bd9Sstevel@tonic-gate #define	FM_LIST_EVENT			"list"
54d9638e54Smws 
55d9638e54Smws /* FM list.* event class values */
567c478bd9Sstevel@tonic-gate #define	FM_LIST_SUSPECT_CLASS		FM_LIST_EVENT ".suspect"
57d9638e54Smws #define	FM_LIST_ISOLATED_CLASS		FM_LIST_EVENT ".isolated"
58d9638e54Smws #define	FM_LIST_REPAIRED_CLASS		FM_LIST_EVENT ".repaired"
597c478bd9Sstevel@tonic-gate 
607c478bd9Sstevel@tonic-gate /* ereport class subcategory values */
617c478bd9Sstevel@tonic-gate #define	FM_ERROR_CPU			"cpu"
627c478bd9Sstevel@tonic-gate #define	FM_ERROR_IO			"io"
637c478bd9Sstevel@tonic-gate 
647c478bd9Sstevel@tonic-gate /* ereport version and payload member names */
657c478bd9Sstevel@tonic-gate #define	FM_EREPORT_VERS0		0
667c478bd9Sstevel@tonic-gate #define	FM_EREPORT_VERSION		FM_EREPORT_VERS0
677c478bd9Sstevel@tonic-gate 
687c478bd9Sstevel@tonic-gate /* ereport payload member names */
697c478bd9Sstevel@tonic-gate #define	FM_EREPORT_DETECTOR		"detector"
707c478bd9Sstevel@tonic-gate #define	FM_EREPORT_ENA			"ena"
717c478bd9Sstevel@tonic-gate 
72d9638e54Smws /* list.* event payload member names */
737c478bd9Sstevel@tonic-gate #define	FM_LIST_EVENT_SIZE		"list-sz"
747c478bd9Sstevel@tonic-gate 
75d9638e54Smws /* list.suspect, isolated, and repaired versions and payload member names */
767c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_UUID			"uuid"
777c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_DIAG_CODE		"code"
787c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_DIAG_TIME		"diag-time"
797c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_DE			"de"
807c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_FAULT_LIST		"fault-list"
817c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_FAULT_SZ		"fault-list-sz"
82d9638e54Smws #define	FM_SUSPECT_FAULT_STATUS		"fault-status"
837c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_MESSAGE		"message"
84b7d3956bSstephh #define	FM_SUSPECT_RETIRE		"retire"
85b7d3956bSstephh #define	FM_SUSPECT_RESPONSE		"response"
867c478bd9Sstevel@tonic-gate 
877c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_VERS0		0
887c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_VERSION		FM_SUSPECT_VERS0
897c478bd9Sstevel@tonic-gate 
9044743693Sstephh #define	FM_SUSPECT_FAULTY		0x1
9144743693Sstephh #define	FM_SUSPECT_UNUSABLE		0x2
9244743693Sstephh #define	FM_SUSPECT_NOT_PRESENT		0x4
9344743693Sstephh 
947c478bd9Sstevel@tonic-gate /* fault event versions and payload member names */
957c478bd9Sstevel@tonic-gate #define	FM_FAULT_VERS0			0
967c478bd9Sstevel@tonic-gate #define	FM_FAULT_VERSION		FM_FAULT_VERS0
977c478bd9Sstevel@tonic-gate 
987c478bd9Sstevel@tonic-gate #define	FM_FAULT_ASRU			"asru"
997c478bd9Sstevel@tonic-gate #define	FM_FAULT_FRU			"fru"
1007c478bd9Sstevel@tonic-gate #define	FM_FAULT_FRU_LABEL		"fru-label"
1017c478bd9Sstevel@tonic-gate #define	FM_FAULT_CERTAINTY		"certainty"
1027c478bd9Sstevel@tonic-gate #define	FM_FAULT_RESOURCE		"resource"
1039dd0f810Scindi #define	FM_FAULT_LOCATION		"location"
1047c478bd9Sstevel@tonic-gate 
1057c478bd9Sstevel@tonic-gate /* resource event versions and payload member names */
1067c478bd9Sstevel@tonic-gate #define	FM_RSRC_VERS0			0
1077c478bd9Sstevel@tonic-gate #define	FM_RSRC_VERSION			FM_RSRC_VERS0
1087c478bd9Sstevel@tonic-gate #define	FM_RSRC_RESOURCE		"resource"
1097c478bd9Sstevel@tonic-gate 
110d9638e54Smws /* resource.fm.asru.* payload member names */
1117c478bd9Sstevel@tonic-gate #define	FM_RSRC_ASRU_UUID		"uuid"
112d9638e54Smws #define	FM_RSRC_ASRU_CODE		"code"
1137c478bd9Sstevel@tonic-gate #define	FM_RSRC_ASRU_FAULTY		"faulty"
1147c478bd9Sstevel@tonic-gate #define	FM_RSRC_ASRU_UNUSABLE		"unusable"
1157c478bd9Sstevel@tonic-gate #define	FM_RSRC_ASRU_EVENT		"event"
1167c478bd9Sstevel@tonic-gate 
117d9638e54Smws /* resource.fm.xprt.* versions and payload member names */
118d9638e54Smws #define	FM_RSRC_XPRT_VERS0		0
119d9638e54Smws #define	FM_RSRC_XPRT_VERSION		FM_RSRC_XPRT_VERS0
120d9638e54Smws #define	FM_RSRC_XPRT_UUID		"uuid"
121d9638e54Smws #define	FM_RSRC_XPRT_SUBCLASS		"subclass"
122d9638e54Smws 
1237c478bd9Sstevel@tonic-gate /*
1247c478bd9Sstevel@tonic-gate  * FM ENA Format Macros
1257c478bd9Sstevel@tonic-gate  */
1267c478bd9Sstevel@tonic-gate #define	ENA_FORMAT_MASK			0x3
1277c478bd9Sstevel@tonic-gate #define	ENA_FORMAT(ena)			((ena) & ENA_FORMAT_MASK)
1287c478bd9Sstevel@tonic-gate 
1297c478bd9Sstevel@tonic-gate /* ENA format types */
1307c478bd9Sstevel@tonic-gate #define	FM_ENA_FMT0			0
1317c478bd9Sstevel@tonic-gate #define	FM_ENA_FMT1			1
1327c478bd9Sstevel@tonic-gate #define	FM_ENA_FMT2			2
1337c478bd9Sstevel@tonic-gate 
1347c478bd9Sstevel@tonic-gate /* Format 1 */
1357c478bd9Sstevel@tonic-gate #define	ENA_FMT1_GEN_MASK		0x00000000000003FCull
1367c478bd9Sstevel@tonic-gate #define	ENA_FMT1_ID_MASK		0xFFFFFFFFFFFFFC00ull
1377c478bd9Sstevel@tonic-gate #define	ENA_FMT1_CPUID_MASK		0x00000000000FFC00ull
1387c478bd9Sstevel@tonic-gate #define	ENA_FMT1_TIME_MASK		0xFFFFFFFFFFF00000ull
1397c478bd9Sstevel@tonic-gate #define	ENA_FMT1_GEN_SHFT		2
1407c478bd9Sstevel@tonic-gate #define	ENA_FMT1_ID_SHFT		10
1417c478bd9Sstevel@tonic-gate #define	ENA_FMT1_CPUID_SHFT		ENA_FMT1_ID_SHFT
1427c478bd9Sstevel@tonic-gate #define	ENA_FMT1_TIME_SHFT		20
1437c478bd9Sstevel@tonic-gate 
1447c478bd9Sstevel@tonic-gate /* Format 2 */
1457c478bd9Sstevel@tonic-gate #define	ENA_FMT2_GEN_MASK		0x00000000000003FCull
1467c478bd9Sstevel@tonic-gate #define	ENA_FMT2_ID_MASK		0xFFFFFFFFFFFFFC00ull
1477c478bd9Sstevel@tonic-gate #define	ENA_FMT2_TIME_MASK		ENA_FMT2_ID_MASK
1487c478bd9Sstevel@tonic-gate #define	ENA_FMT2_GEN_SHFT		2
1497c478bd9Sstevel@tonic-gate #define	ENA_FMT2_ID_SHFT		10
1507c478bd9Sstevel@tonic-gate #define	ENA_FMT2_TIME_SHFT		ENA_FMT2_ID_SHFT
1517c478bd9Sstevel@tonic-gate 
1527c478bd9Sstevel@tonic-gate /* Common FMRI type names */
1537c478bd9Sstevel@tonic-gate #define	FM_FMRI_AUTHORITY		"authority"
1547c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME			"scheme"
1557c478bd9Sstevel@tonic-gate #define	FM_FMRI_SVC_AUTHORITY		"svc-authority"
156*825ba0f2Srobj #define	FM_FMRI_FACILITY		"facility"
1577c478bd9Sstevel@tonic-gate 
1587c478bd9Sstevel@tonic-gate /* FMRI authority-type member names */
1597c478bd9Sstevel@tonic-gate #define	FM_FMRI_AUTH_CHASSIS		"chassis-id"
1607c478bd9Sstevel@tonic-gate #define	FM_FMRI_AUTH_PRODUCT		"product-id"
1617c478bd9Sstevel@tonic-gate #define	FM_FMRI_AUTH_DOMAIN		"domain-id"
1627c478bd9Sstevel@tonic-gate #define	FM_FMRI_AUTH_SERVER		"server-id"
1637c478bd9Sstevel@tonic-gate #define	FM_FMRI_AUTH_HOST		"host-id"
1647c478bd9Sstevel@tonic-gate 
1657c478bd9Sstevel@tonic-gate #define	FM_AUTH_VERS0			0
1667c478bd9Sstevel@tonic-gate #define	FM_FMRI_AUTH_VERSION		FM_AUTH_VERS0
1677c478bd9Sstevel@tonic-gate 
1687c478bd9Sstevel@tonic-gate /* scheme name values */
1697c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_FMD		"fmd"
1707c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_DEV		"dev"
1717c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_HC		"hc"
1727c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_SVC		"svc"
1737c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_CPU		"cpu"
1747c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_MEM		"mem"
1757c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_MOD		"mod"
1767c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_PKG		"pkg"
1777c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_LEGACY		"legacy-hc"
178ea8dc4b6Seschrock #define	FM_FMRI_SCHEME_ZFS		"zfs"
1797c478bd9Sstevel@tonic-gate 
1807c478bd9Sstevel@tonic-gate /* Scheme versions */
1817c478bd9Sstevel@tonic-gate #define	FMD_SCHEME_VERSION0		0
1827c478bd9Sstevel@tonic-gate #define	FM_FMD_SCHEME_VERSION		FMD_SCHEME_VERSION0
1837c478bd9Sstevel@tonic-gate #define	DEV_SCHEME_VERSION0		0
1847c478bd9Sstevel@tonic-gate #define	FM_DEV_SCHEME_VERSION		DEV_SCHEME_VERSION0
1857c478bd9Sstevel@tonic-gate #define	FM_HC_VERS0			0
1867c478bd9Sstevel@tonic-gate #define	FM_HC_SCHEME_VERSION		FM_HC_VERS0
1877c478bd9Sstevel@tonic-gate #define	CPU_SCHEME_VERSION0		0
1887aec1d6eScindi #define	CPU_SCHEME_VERSION1		1
1897aec1d6eScindi #define	FM_CPU_SCHEME_VERSION		CPU_SCHEME_VERSION1
1907c478bd9Sstevel@tonic-gate #define	MEM_SCHEME_VERSION0		0
1917c478bd9Sstevel@tonic-gate #define	FM_MEM_SCHEME_VERSION		MEM_SCHEME_VERSION0
1927c478bd9Sstevel@tonic-gate #define	MOD_SCHEME_VERSION0		0
1937c478bd9Sstevel@tonic-gate #define	FM_MOD_SCHEME_VERSION		MOD_SCHEME_VERSION0
1947c478bd9Sstevel@tonic-gate #define	PKG_SCHEME_VERSION0		0
1957c478bd9Sstevel@tonic-gate #define	FM_PKG_SCHEME_VERSION		PKG_SCHEME_VERSION0
1967c478bd9Sstevel@tonic-gate #define	LEGACY_SCHEME_VERSION0		0
1977c478bd9Sstevel@tonic-gate #define	FM_LEGACY_SCHEME_VERSION	LEGACY_SCHEME_VERSION0
198ea8dc4b6Seschrock #define	ZFS_SCHEME_VERSION0		0
199ea8dc4b6Seschrock #define	FM_ZFS_SCHEME_VERSION		ZFS_SCHEME_VERSION0
2007c478bd9Sstevel@tonic-gate 
2017c478bd9Sstevel@tonic-gate /* hc scheme member names */
2027c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_SERIAL_ID		"serial"
2037c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_PART			"part"
2047c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_REVISION		"revision"
2057c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_ROOT			"hc-root"
2067c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_LIST_SZ		"hc-list-sz"
2077c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_LIST			"hc-list"
2087aec1d6eScindi #define	FM_FMRI_HC_SPECIFIC		"hc-specific"
2097c478bd9Sstevel@tonic-gate 
210*825ba0f2Srobj /* facility member names */
211*825ba0f2Srobj #define	FM_FMRI_FACILITY_NAME		"facility-name"
212*825ba0f2Srobj #define	FM_FMRI_FACILITY_TYPE		"facility-type"
213*825ba0f2Srobj 
2147c478bd9Sstevel@tonic-gate /* hc-list version and member names */
2157c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_NAME			"hc-name"
2167c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_ID			"hc-id"
2177c478bd9Sstevel@tonic-gate 
2187c478bd9Sstevel@tonic-gate #define	HC_LIST_VERSION0		0
2197c478bd9Sstevel@tonic-gate #define	FM_HC_LIST_VERSION		HC_LIST_VERSION0
2207c478bd9Sstevel@tonic-gate 
2217aec1d6eScindi /* hc-specific member names */
2227aec1d6eScindi #define	FM_FMRI_HC_SPECIFIC_OFFSET	"offset"
2237aec1d6eScindi 
2247c478bd9Sstevel@tonic-gate /* fmd module scheme member names */
2257c478bd9Sstevel@tonic-gate #define	FM_FMRI_FMD_NAME		"mod-name"
2267c478bd9Sstevel@tonic-gate #define	FM_FMRI_FMD_VERSION		"mod-version"
2277c478bd9Sstevel@tonic-gate 
2287c478bd9Sstevel@tonic-gate /* dev scheme member names */
2297c478bd9Sstevel@tonic-gate #define	FM_FMRI_DEV_ID			"devid"
2307c478bd9Sstevel@tonic-gate #define	FM_FMRI_DEV_PATH		"device-path"
2317c478bd9Sstevel@tonic-gate 
2327c478bd9Sstevel@tonic-gate /* pkg scheme member names */
2337c478bd9Sstevel@tonic-gate #define	FM_FMRI_PKG_BASEDIR		"pkg-basedir"
2347c478bd9Sstevel@tonic-gate #define	FM_FMRI_PKG_INST		"pkg-inst"
2357c478bd9Sstevel@tonic-gate #define	FM_FMRI_PKG_VERSION		"pkg-version"
2367c478bd9Sstevel@tonic-gate 
2377c478bd9Sstevel@tonic-gate /* svc scheme member names */
2387c478bd9Sstevel@tonic-gate #define	FM_FMRI_SVC_NAME		"service-name"
2397c478bd9Sstevel@tonic-gate #define	FM_FMRI_SVC_VERSION		"service-version"
2407c478bd9Sstevel@tonic-gate #define	FM_FMRI_SVC_INSTANCE		"instance"
2417c478bd9Sstevel@tonic-gate #define	FM_FMRI_SVC_CONTRACT_ID		"contract-id"
2427c478bd9Sstevel@tonic-gate 
2437c478bd9Sstevel@tonic-gate /* svc-authority member names */
2447c478bd9Sstevel@tonic-gate #define	FM_FMRI_SVC_AUTH_SCOPE		"scope"
2457c478bd9Sstevel@tonic-gate #define	FM_FMRI_SVC_AUTH_SYSTEM_FQN	"system-FQN"
2467c478bd9Sstevel@tonic-gate 
2477c478bd9Sstevel@tonic-gate /* cpu scheme member names */
2487c478bd9Sstevel@tonic-gate #define	FM_FMRI_CPU_ID			"cpuid"
2497c478bd9Sstevel@tonic-gate #define	FM_FMRI_CPU_SERIAL_ID		"serial"
2507c478bd9Sstevel@tonic-gate #define	FM_FMRI_CPU_MASK		"cpumask"
2516dfee483Stsien #define	FM_FMRI_CPU_VID			"cpuvid"
2526dfee483Stsien #define	FM_FMRI_CPU_CPUFRU		"cpufru"
2537bebe46cSjc #define	FM_FMRI_CPU_CACHE_INDEX		"cacheindex"
2547bebe46cSjc #define	FM_FMRI_CPU_CACHE_WAY		"cacheway"
2557bebe46cSjc #define	FM_FMRI_CPU_CACHE_BIT		"cachebit"
2567bebe46cSjc #define	FM_FMRI_CPU_CACHE_TYPE		"cachetype"
2577bebe46cSjc 
2587bebe46cSjc #define	FM_FMRI_CPU_CACHE_TYPE_L2	0
2597bebe46cSjc #define	FM_FMRI_CPU_CACHE_TYPE_L3	1
2607c478bd9Sstevel@tonic-gate 
2617c478bd9Sstevel@tonic-gate /* legacy-hc scheme member names */
2627c478bd9Sstevel@tonic-gate #define	FM_FMRI_LEGACY_HC		"component"
2639dd0f810Scindi #define	FM_FMRI_LEGACY_HC_PREFIX	FM_FMRI_SCHEME_HC":///" \
2649dd0f810Scindi     FM_FMRI_LEGACY_HC"="
2657c478bd9Sstevel@tonic-gate 
2667c478bd9Sstevel@tonic-gate /* mem scheme member names */
2677c478bd9Sstevel@tonic-gate #define	FM_FMRI_MEM_UNUM		"unum"
2687c478bd9Sstevel@tonic-gate #define	FM_FMRI_MEM_SERIAL_ID		"serial"
2697c478bd9Sstevel@tonic-gate #define	FM_FMRI_MEM_PHYSADDR		"physaddr"
270822fb41dStsien #define	FM_FMRI_MEM_MEMCONFIG		"memconfig"
271d00f0155Sayznaga #define	FM_FMRI_MEM_OFFSET		"offset"
2727c478bd9Sstevel@tonic-gate 
2737c478bd9Sstevel@tonic-gate /* mod scheme member names */
2747c478bd9Sstevel@tonic-gate #define	FM_FMRI_MOD_PKG			"mod-pkg"
2757c478bd9Sstevel@tonic-gate #define	FM_FMRI_MOD_NAME		"mod-name"
2767c478bd9Sstevel@tonic-gate #define	FM_FMRI_MOD_ID			"mod-id"
2777c478bd9Sstevel@tonic-gate #define	FM_FMRI_MOD_DESC		"mod-desc"
2787c478bd9Sstevel@tonic-gate 
279ea8dc4b6Seschrock /* zfs scheme member names */
280ea8dc4b6Seschrock #define	FM_FMRI_ZFS_POOL		"pool"
281ea8dc4b6Seschrock #define	FM_FMRI_ZFS_VDEV		"vdev"
282ea8dc4b6Seschrock 
2837c478bd9Sstevel@tonic-gate extern nv_alloc_t *fm_nva_xcreate(char *, size_t);
2847c478bd9Sstevel@tonic-gate extern void fm_nva_xdestroy(nv_alloc_t *);
2857c478bd9Sstevel@tonic-gate 
2867c478bd9Sstevel@tonic-gate extern nvlist_t *fm_nvlist_create(nv_alloc_t *);
2877c478bd9Sstevel@tonic-gate extern void fm_nvlist_destroy(nvlist_t *, int);
2887c478bd9Sstevel@tonic-gate 
2897c478bd9Sstevel@tonic-gate #define	FM_NVA_FREE	0		/* free allocator on nvlist_destroy */
2907c478bd9Sstevel@tonic-gate #define	FM_NVA_RETAIN	1		/* keep allocator on nvlist_destroy */
2917c478bd9Sstevel@tonic-gate 
2927c478bd9Sstevel@tonic-gate extern void fm_ereport_set(nvlist_t *, int, const char *, uint64_t,
2937c478bd9Sstevel@tonic-gate     const nvlist_t *, ...);
2947c478bd9Sstevel@tonic-gate extern void fm_payload_set(nvlist_t *, ...);
2957c478bd9Sstevel@tonic-gate extern int i_fm_payload_set(nvlist_t *, const char *, va_list);
2967aec1d6eScindi extern void fm_fmri_hc_set(nvlist_t *, int, const nvlist_t *, nvlist_t *,
2977aec1d6eScindi     int, ...);
2987c478bd9Sstevel@tonic-gate extern void fm_fmri_dev_set(nvlist_t *, int, const nvlist_t *, const char *,
2997c478bd9Sstevel@tonic-gate     const char *);
3007c478bd9Sstevel@tonic-gate extern void fm_fmri_de_set(nvlist_t *, int, const nvlist_t *, const char *);
3017c478bd9Sstevel@tonic-gate extern void fm_fmri_cpu_set(nvlist_t *, int, const nvlist_t *, uint32_t,
3027aec1d6eScindi     uint8_t *, const char *);
3037c478bd9Sstevel@tonic-gate extern void fm_fmri_mem_set(nvlist_t *, int, const nvlist_t *, const char *,
304d00f0155Sayznaga     const char *, uint64_t);
3057c478bd9Sstevel@tonic-gate extern void fm_authority_set(nvlist_t *, int, const char *, const char *,
3067c478bd9Sstevel@tonic-gate     const char *, const char *);
307ea8dc4b6Seschrock extern void fm_fmri_zfs_set(nvlist_t *, int, uint64_t, uint64_t);
3087c478bd9Sstevel@tonic-gate 
3097c478bd9Sstevel@tonic-gate extern uint64_t fm_ena_increment(uint64_t);
3107c478bd9Sstevel@tonic-gate extern uint64_t fm_ena_generate(uint64_t, uchar_t);
3117c478bd9Sstevel@tonic-gate extern uint64_t fm_ena_generate_cpu(uint64_t, processorid_t, uchar_t);
3127c478bd9Sstevel@tonic-gate extern uint64_t fm_ena_generation_get(uint64_t);
3137c478bd9Sstevel@tonic-gate extern uchar_t fm_ena_format_get(uint64_t);
3147c478bd9Sstevel@tonic-gate extern uint64_t fm_ena_id_get(uint64_t);
3157c478bd9Sstevel@tonic-gate extern uint64_t fm_ena_time_get(uint64_t);
3167c478bd9Sstevel@tonic-gate 
3177c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
3187c478bd9Sstevel@tonic-gate }
3197c478bd9Sstevel@tonic-gate #endif
3207c478bd9Sstevel@tonic-gate 
3217c478bd9Sstevel@tonic-gate #endif /* _SYS_FM_PROTOCOL_H */
322