xref: /illumos-gate/usr/src/uts/common/sys/sysevent/eventdefs.h (revision e9103aaee0c546d4644791198c54abb03c89969e)
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
5db11e6feSjacobs  * Common Development and Distribution License (the "License").
6db11e6feSjacobs  * 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  */
217c478bd9Sstevel@tonic-gate /*
22943e9869SLori Alt  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23*e9103aaeSGarrett D'Amore  * Copyright 2011 Nexenta Systems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  */
257c478bd9Sstevel@tonic-gate 
267c478bd9Sstevel@tonic-gate #ifndef	_SYS_SYSEVENT_EVENTDEFS_H
277c478bd9Sstevel@tonic-gate #define	_SYS_SYSEVENT_EVENTDEFS_H
287c478bd9Sstevel@tonic-gate 
297c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
307c478bd9Sstevel@tonic-gate extern "C" {
317c478bd9Sstevel@tonic-gate #endif
327c478bd9Sstevel@tonic-gate 
337c478bd9Sstevel@tonic-gate /*
347c478bd9Sstevel@tonic-gate  * eventdefs.h contains public definitions for sysevent types (classes
357c478bd9Sstevel@tonic-gate  * and subclasses).  All additions/removal/changes are subject
367c478bd9Sstevel@tonic-gate  * to PSARC approval.
377c478bd9Sstevel@tonic-gate  */
387c478bd9Sstevel@tonic-gate 
397c478bd9Sstevel@tonic-gate /* Sysevent Class definitions */
407c478bd9Sstevel@tonic-gate #define	EC_NONE		"EC_none"
417c478bd9Sstevel@tonic-gate #define	EC_PRIV		"EC_priv"
427c478bd9Sstevel@tonic-gate #define	EC_PLATFORM	"EC_platform"	/* events private to platform */
437c478bd9Sstevel@tonic-gate #define	EC_DR		"EC_dr"	/* Dynamic reconfiguration event class */
447c478bd9Sstevel@tonic-gate #define	EC_ENV		"EC_env"	/* Environmental monitor event class */
457c478bd9Sstevel@tonic-gate #define	EC_DOMAIN	"EC_domain"	/* Domain event class */
467c478bd9Sstevel@tonic-gate #define	EC_AP_DRIVER	"EC_ap_driver"	/* Alternate Pathing event class */
477c478bd9Sstevel@tonic-gate #define	EC_IPMP		"EC_ipmp"	/* IP Multipathing event class */
487c478bd9Sstevel@tonic-gate #define	EC_DEV_ADD	"EC_dev_add"	/* device add event class */
497c478bd9Sstevel@tonic-gate #define	EC_DEV_REMOVE	"EC_dev_remove"	/* device remove event class */
507c478bd9Sstevel@tonic-gate #define	EC_DEV_BRANCH	"EC_dev_branch"	/* device tree branch event class */
51af007057Syl #define	EC_DEV_STATUS	"EC_dev_status"	/* device status event class */
527c478bd9Sstevel@tonic-gate #define	EC_FM		"EC_fm"		/* FMA error report event */
533d7072f8Seschrock #define	EC_ZFS		"EC_zfs"	/* ZFS event */
540dc974a9SCathy Zhou #define	EC_DATALINK	"EC_datalink"	/* datalink event */
551cb875aeSCathy Zhou #define	EC_VRRP		"EC_vrrp"	/* VRRP event */
567c478bd9Sstevel@tonic-gate 
577c478bd9Sstevel@tonic-gate /*
587c478bd9Sstevel@tonic-gate  * The following event class is reserved for exclusive use
597c478bd9Sstevel@tonic-gate  * by Sun Cluster software.
607c478bd9Sstevel@tonic-gate  */
617c478bd9Sstevel@tonic-gate #define	EC_CLUSTER	"EC_Cluster"
627c478bd9Sstevel@tonic-gate 
637c478bd9Sstevel@tonic-gate /*
647c478bd9Sstevel@tonic-gate  * The following classes are exclusively reserved for use by the
657c478bd9Sstevel@tonic-gate  * Solaris Volume Manager (SVM)
667c478bd9Sstevel@tonic-gate  */
677c478bd9Sstevel@tonic-gate #define	EC_SVM_CONFIG	"EC_SVM_Config"
687c478bd9Sstevel@tonic-gate #define	EC_SVM_STATE	"EC_SVM_State"
697c478bd9Sstevel@tonic-gate 
707c478bd9Sstevel@tonic-gate /*
717c478bd9Sstevel@tonic-gate  * EC_SVM_CONFIG subclass definitions - supporting attributes (name/value pairs)
727c478bd9Sstevel@tonic-gate  * are found in sys/sysevent/svm.h
737c478bd9Sstevel@tonic-gate  */
747c478bd9Sstevel@tonic-gate #define	ESC_SVM_CREATE		"ESC_SVM_Create"
757c478bd9Sstevel@tonic-gate #define	ESC_SVM_DELETE		"ESC_SVM_Delete"
767c478bd9Sstevel@tonic-gate #define	ESC_SVM_ADD		"ESC_SVM_Add"
777c478bd9Sstevel@tonic-gate #define	ESC_SVM_REMOVE		"ESC_SVM_Remove"
787c478bd9Sstevel@tonic-gate #define	ESC_SVM_REPLACE		"ESC_SVM_Replace"
797c478bd9Sstevel@tonic-gate #define	ESC_SVM_GROW		"ESC_SVM_Grow"
807c478bd9Sstevel@tonic-gate #define	ESC_SVM_RENAME_SRC	"ESC_SVM_Rename_Src"
817c478bd9Sstevel@tonic-gate #define	ESC_SVM_RENAME_DST	"ESC_SVM_Rename_Dst"
827c478bd9Sstevel@tonic-gate #define	ESC_SVM_MEDIATOR_ADD	"ESC_SVM_Mediator_Add"
837c478bd9Sstevel@tonic-gate #define	ESC_SVM_MEDIATOR_DELETE	"ESC_SVM_Mediator_Delete"
847c478bd9Sstevel@tonic-gate #define	ESC_SVM_HOST_ADD	"ESC_SVM_Host_Add"
857c478bd9Sstevel@tonic-gate #define	ESC_SVM_HOST_DELETE	"ESC_SVM_Host_Delete"
867c478bd9Sstevel@tonic-gate #define	ESC_SVM_DRIVE_ADD	"ESC_SVM_Drive_Add"
877c478bd9Sstevel@tonic-gate #define	ESC_SVM_DRIVE_DELETE	"ESC_SVM_Drive_Delete"
887c478bd9Sstevel@tonic-gate #define	ESC_SVM_DETACH		"ESC_SVM_Detach"
897c478bd9Sstevel@tonic-gate #define	ESC_SVM_DETACHING	"ESC_SVM_Detaching"
907c478bd9Sstevel@tonic-gate #define	ESC_SVM_ATTACH		"ESC_SVM_Attach"
917c478bd9Sstevel@tonic-gate #define	ESC_SVM_ATTACHING	"ESC_SVM_Attaching"
927c478bd9Sstevel@tonic-gate 
937c478bd9Sstevel@tonic-gate /*
947c478bd9Sstevel@tonic-gate  * EC_SVM_STATE subclass definitions - supporting attributes (name/value pairs)
957c478bd9Sstevel@tonic-gate  * are found in sys/sysevent/svm.h
967c478bd9Sstevel@tonic-gate  */
977c478bd9Sstevel@tonic-gate #define	ESC_SVM_INIT_START	"ESC_SVM_Init_Start"
987c478bd9Sstevel@tonic-gate #define	ESC_SVM_INIT_FAILED	"ESC_SVM_Init_Failed"
997c478bd9Sstevel@tonic-gate #define	ESC_SVM_INIT_FATAL	"ESC_SVM_Init_Fatal"
1007c478bd9Sstevel@tonic-gate #define	ESC_SVM_INIT_SUCCESS	"ESC_SVM_Init_Success"
1017c478bd9Sstevel@tonic-gate #define	ESC_SVM_IOERR		"ESC_SVM_Ioerr"
1027c478bd9Sstevel@tonic-gate #define	ESC_SVM_ERRED		"ESC_SVM_Erred"
1037c478bd9Sstevel@tonic-gate #define	ESC_SVM_LASTERRED	"ESC_SVM_Lasterred"
1047c478bd9Sstevel@tonic-gate #define	ESC_SVM_OK		"ESC_SVM_Ok"
1057c478bd9Sstevel@tonic-gate #define	ESC_SVM_ENABLE		"ESC_SVM_Enable"
1067c478bd9Sstevel@tonic-gate #define	ESC_SVM_RESYNC_START	"ESC_SVM_Resync_Start"
1077c478bd9Sstevel@tonic-gate #define	ESC_SVM_RESYNC_FAILED	"ESC_SVM_Resync_Failed"
1087c478bd9Sstevel@tonic-gate #define	ESC_SVM_RESYNC_SUCCESS	"ESC_SVM_Resync_Success"
1097c478bd9Sstevel@tonic-gate #define	ESC_SVM_RESYNC_DONE	"ESC_SVM_Resync_Done"
1107c478bd9Sstevel@tonic-gate #define	ESC_SVM_HOTSPARED	"ESC_SVM_Hotspared"
1117c478bd9Sstevel@tonic-gate #define	ESC_SVM_HS_FREED	"ESC_SVM_HS_Freed"
1127c478bd9Sstevel@tonic-gate #define	ESC_SVM_HS_CHANGED	"ESC_SVM_HS_Changed"
1137c478bd9Sstevel@tonic-gate #define	ESC_SVM_TAKEOVER	"ESC_SVM_Takeover"
1147c478bd9Sstevel@tonic-gate #define	ESC_SVM_RELEASE		"ESC_SVM_Release"
1157c478bd9Sstevel@tonic-gate #define	ESC_SVM_OPEN_FAIL	"ESC_SVM_Open_Fail"
1167c478bd9Sstevel@tonic-gate #define	ESC_SVM_OFFLINE		"ESC_SVM_Offline"
1177c478bd9Sstevel@tonic-gate #define	ESC_SVM_ONLINE		"ESC_SVM_Online"
1187c478bd9Sstevel@tonic-gate #define	ESC_SVM_CHANGE		"ESC_SVM_Change"
1197c478bd9Sstevel@tonic-gate #define	ESC_SVM_EXCHANGE	"ESC_SVM_Exchange"
1207c478bd9Sstevel@tonic-gate #define	ESC_SVM_REGEN_START	"ESC_SVM_Regen_Start"
1217c478bd9Sstevel@tonic-gate #define	ESC_SVM_REGEN_DONE	"ESC_SVM_Regen_Done"
1227c478bd9Sstevel@tonic-gate #define	ESC_SVM_REGEN_FAILED	"ESC_SVM_Regen_Failed"
1237c478bd9Sstevel@tonic-gate 
1247c478bd9Sstevel@tonic-gate /*
1257c478bd9Sstevel@tonic-gate  * EC_DR subclass definitions - supporting attributes (name/value pairs)
1267c478bd9Sstevel@tonic-gate  * are found in sys/sysevent/dr.h
1277c478bd9Sstevel@tonic-gate  */
1287c478bd9Sstevel@tonic-gate 
1297c478bd9Sstevel@tonic-gate /* Attachment point state change */
1307c478bd9Sstevel@tonic-gate #define	ESC_DR_AP_STATE_CHANGE	"ESC_dr_ap_state_change"
1317c478bd9Sstevel@tonic-gate #define	ESC_DR_REQ		"ESC_dr_req"	/* Request DR */
132c2ed7380Syd #define	ESC_DR_TARGET_STATE_CHANGE	"ESC_dr_target_state_change"
1337c478bd9Sstevel@tonic-gate 
1347c478bd9Sstevel@tonic-gate /*
1357c478bd9Sstevel@tonic-gate  * EC_ENV subclass definitions - supporting attributes (name/value pairs)
1367c478bd9Sstevel@tonic-gate  * are found in sys/sysevent/env.h
1377c478bd9Sstevel@tonic-gate  */
1387c478bd9Sstevel@tonic-gate #define	ESC_ENV_TEMP	"ESC_env_temp"	/* Temperature change event subclass */
1397c478bd9Sstevel@tonic-gate #define	ESC_ENV_FAN	"ESC_env_fan"	/* Fan status change event subclass */
1407c478bd9Sstevel@tonic-gate #define	ESC_ENV_POWER	"ESC_env_power"	/* Power supply change event subclass */
1417c478bd9Sstevel@tonic-gate #define	ESC_ENV_LED	"ESC_env_led"	/* LED change event subclass */
1427c478bd9Sstevel@tonic-gate 
1437c478bd9Sstevel@tonic-gate /*
1447c478bd9Sstevel@tonic-gate  * EC_DOMAIN subclass definitions - supporting attributes (name/value pairs)
1457c478bd9Sstevel@tonic-gate  * are found in sys/sysevent/domain.h
1467c478bd9Sstevel@tonic-gate  */
1477c478bd9Sstevel@tonic-gate 
1487c478bd9Sstevel@tonic-gate /* Domain state change */
1497c478bd9Sstevel@tonic-gate #define	ESC_DOMAIN_STATE_CHANGE		"ESC_domain_state_change"
1507c478bd9Sstevel@tonic-gate /* Domain loghost name change */
1517c478bd9Sstevel@tonic-gate #define	ESC_DOMAIN_LOGHOST_CHANGE	"ESC_domain_loghost_change"
1527c478bd9Sstevel@tonic-gate 
1537c478bd9Sstevel@tonic-gate /*
1549113a79cSeschrock  * EC_AP_DRIVER subclass definitions - supporting attributes (name/value pairs)
1557c478bd9Sstevel@tonic-gate  * are found in sys/sysevent/ap_driver.h
1567c478bd9Sstevel@tonic-gate  */
1577c478bd9Sstevel@tonic-gate 
1587c478bd9Sstevel@tonic-gate /* Alternate Pathing path switch */
1597c478bd9Sstevel@tonic-gate #define	ESC_AP_DRIVER_PATHSWITCH	"ESC_ap_driver_pathswitch"
1607c478bd9Sstevel@tonic-gate /* Alternate Pathing database commit */
1617c478bd9Sstevel@tonic-gate #define	ESC_AP_DRIVER_COMMIT		"ESC_ap_driver_commit"
1627c478bd9Sstevel@tonic-gate /* Alternate Pathing physical path status change */
1637c478bd9Sstevel@tonic-gate #define	ESC_AP_DRIVER_PHYS_PATH_STATUS_CHANGE	\
1647c478bd9Sstevel@tonic-gate 	"ESC_ap_driver_phys_path_status_change"
1657c478bd9Sstevel@tonic-gate 
1667c478bd9Sstevel@tonic-gate /*
1679113a79cSeschrock  * EC_IPMP subclass definitions - supporting attributes (name/value pairs)
1687c478bd9Sstevel@tonic-gate  * are found in sys/sysevent/ipmp.h
1697c478bd9Sstevel@tonic-gate  */
1707c478bd9Sstevel@tonic-gate 
1717c478bd9Sstevel@tonic-gate /* IPMP group has changed state */
1727c478bd9Sstevel@tonic-gate #define	ESC_IPMP_GROUP_STATE		"ESC_ipmp_group_state"
1737c478bd9Sstevel@tonic-gate 
1747c478bd9Sstevel@tonic-gate /* IPMP group has been created or removed */
1757c478bd9Sstevel@tonic-gate #define	ESC_IPMP_GROUP_CHANGE		"ESC_ipmp_group_change"
1767c478bd9Sstevel@tonic-gate 
1777c478bd9Sstevel@tonic-gate /* IPMP group has had an interface added or removed */
1787c478bd9Sstevel@tonic-gate #define	ESC_IPMP_GROUP_MEMBER_CHANGE	"ESC_ipmp_group_member_change"
1797c478bd9Sstevel@tonic-gate 
1807c478bd9Sstevel@tonic-gate /* Interface within an IPMP group has changed state or type */
1817c478bd9Sstevel@tonic-gate #define	ESC_IPMP_IF_CHANGE		"ESC_ipmp_if_change"
1827c478bd9Sstevel@tonic-gate 
183e11c3f44Smeem /* IPMP probe has changed state */
184e11c3f44Smeem #define	ESC_IPMP_PROBE_STATE		"ESC_ipmp_probe_state"
1857c478bd9Sstevel@tonic-gate 
1867c478bd9Sstevel@tonic-gate /*
1879113a79cSeschrock  * EC_DEV_ADD and EC_DEV_REMOVE subclass definitions - supporting attributes
1887c478bd9Sstevel@tonic-gate  * (name/value pairs) are found in sys/sysevent/dev.h
1897c478bd9Sstevel@tonic-gate  */
1907c478bd9Sstevel@tonic-gate #define	ESC_DISK	"disk"		/* disk device */
1917c478bd9Sstevel@tonic-gate #define	ESC_NETWORK	"network"	/* network interface */
192db11e6feSjacobs #define	ESC_PRINTER	"printer"	/* printer device */
19330294554Sphitran #define	ESC_LOFI	"lofi"		/* lofi device */
1947c478bd9Sstevel@tonic-gate 
1957c478bd9Sstevel@tonic-gate /*
1969113a79cSeschrock  * EC_DEV_BRANCH subclass definitions - supporting attributes (name/value pairs)
1977c478bd9Sstevel@tonic-gate  * are found in sys/sysevent/dev.h
1987c478bd9Sstevel@tonic-gate  */
1997c478bd9Sstevel@tonic-gate 
2007c478bd9Sstevel@tonic-gate /* device tree branch added */
2017c478bd9Sstevel@tonic-gate #define	ESC_DEV_BRANCH_ADD	"ESC_dev_branch_add"
2027c478bd9Sstevel@tonic-gate 
2037c478bd9Sstevel@tonic-gate /* device tree branch removed */
2047c478bd9Sstevel@tonic-gate #define	ESC_DEV_BRANCH_REMOVE	"ESC_dev_branch_remove"
2057c478bd9Sstevel@tonic-gate 
20697ddcdceSArtem Kachitchkine /*
20797ddcdceSArtem Kachitchkine  * EC_DEV_STATUS subclass definitions
20897ddcdceSArtem Kachitchkine  *
20997ddcdceSArtem Kachitchkine  * device capacity dynamically changed
21097ddcdceSArtem Kachitchkine  */
211af007057Syl #define	ESC_DEV_DLE		"ESC_dev_dle"
212af007057Syl 
21397ddcdceSArtem Kachitchkine /* LUN has received an eject request from the user */
21497ddcdceSArtem Kachitchkine #define	ESC_DEV_EJECT_REQUEST	"ESC_dev_eject_request"
21597ddcdceSArtem Kachitchkine 
2167c478bd9Sstevel@tonic-gate /* FMA Fault and Error event protocol subclass */
2177c478bd9Sstevel@tonic-gate #define	ESC_FM_ERROR		"ESC_FM_error"
2187c478bd9Sstevel@tonic-gate #define	ESC_FM_ERROR_REPLAY	"ESC_FM_error_replay"
2199113a79cSeschrock 
2209113a79cSeschrock /* Service processor subclass definitions */
2219113a79cSeschrock #define	ESC_PLATFORM_SP_RESET	"ESC_platform_sp_reset"
2229113a79cSeschrock 
2237b840e52Sphitran /*
224d2ec54f7Sphitran  * EC_PWRCTL subclass definitions
2257b840e52Sphitran  */
226d2ec54f7Sphitran #define	EC_PWRCTL			"EC_pwrctl"
227d2ec54f7Sphitran #define	ESC_PWRCTL_ADD			"ESC_pwrctl_add"
228d2ec54f7Sphitran #define	ESC_PWRCTL_REMOVE		"ESC_pwrctl_remove"
229d2ec54f7Sphitran #define	ESC_PWRCTL_WARN			"ESC_pwrctl_warn"
230d2ec54f7Sphitran #define	ESC_PWRCTL_LOW			"ESC_pwrctl_low"
231d2ec54f7Sphitran #define	ESC_PWRCTL_STATE_CHANGE		"ESC_pwrctl_state_change"
232d2ec54f7Sphitran #define	ESC_PWRCTL_POWER_BUTTON		"ESC_pwrctl_power_button"
233d2ec54f7Sphitran #define	ESC_PWRCTL_BRIGHTNESS_UP	"ESC_pwrctl_brightness_up"
234d2ec54f7Sphitran #define	ESC_PWRCTL_BRIGHTNESS_DOWN	"ESC_pwrctl_brightness_down"
2357b840e52Sphitran 
2362d6b5ea7SGuoli Shu /* EC_ACPIEV subclass definitions */
2372d6b5ea7SGuoli Shu #define	EC_ACPIEV			"EC_acpiev"
2382d6b5ea7SGuoli Shu #define	ESC_ACPIEV_DISPLAY_SWITCH	"ESC_acpiev_display_switch"
2392d6b5ea7SGuoli Shu #define	ESC_ACPIEV_SCREEN_LOCK		"ESC_acpiev_screen_lock"
2402d6b5ea7SGuoli Shu #define	ESC_ACPIEV_SLEEP		"ESC_acpiev_sleep"
2412d6b5ea7SGuoli Shu #define	ESC_ACPIEV_AUDIO_MUTE		"ESC_acpiev_audio_mute"
2422d6b5ea7SGuoli Shu #define	ESC_ACPIEV_WIFI			"ESC_acpiev_wifi"
2432d6b5ea7SGuoli Shu #define	ESC_ACPIEV_TOUCHPAD		"ESC_acpiev_touchpad"
2442d6b5ea7SGuoli Shu 
2453d7072f8Seschrock /*
2463d7072f8Seschrock  * ZFS subclass definitions.  supporting attributes (name/value paris) are found
2473d7072f8Seschrock  * in sys/fs/zfs.h
2483d7072f8Seschrock  */
249943e9869SLori Alt #define	ESC_ZFS_RESILVER_START		"ESC_ZFS_resilver_start"
250943e9869SLori Alt #define	ESC_ZFS_RESILVER_FINISH		"ESC_ZFS_resilver_finish"
251943e9869SLori Alt #define	ESC_ZFS_VDEV_REMOVE		"ESC_ZFS_vdev_remove"
252943e9869SLori Alt #define	ESC_ZFS_POOL_DESTROY		"ESC_ZFS_pool_destroy"
253943e9869SLori Alt #define	ESC_ZFS_VDEV_CLEAR		"ESC_ZFS_vdev_clear"
254943e9869SLori Alt #define	ESC_ZFS_VDEV_CHECK		"ESC_ZFS_vdev_check"
255943e9869SLori Alt #define	ESC_ZFS_CONFIG_SYNC		"ESC_ZFS_config_sync"
256943e9869SLori Alt #define	ESC_ZFS_SCRUB_START		"ESC_ZFS_scrub_start"
257943e9869SLori Alt #define	ESC_ZFS_SCRUB_FINISH		"ESC_ZFS_scrub_finish"
258943e9869SLori Alt #define	ESC_ZFS_VDEV_SPARE		"ESC_ZFS_vdev_spare"
259943e9869SLori Alt #define	ESC_ZFS_BOOTFS_VDEV_ATTACH	"ESC_ZFS_bootfs_vdev_attach"
260*e9103aaeSGarrett D'Amore #define	ESC_ZFS_POOL_REGUID		"ESC_ZFS_pool_reguid"
2613d7072f8Seschrock 
2620dc974a9SCathy Zhou /*
2630dc974a9SCathy Zhou  * datalink subclass definitions.
2640dc974a9SCathy Zhou  */
2650dc974a9SCathy Zhou #define	ESC_DATALINK_PHYS_ADD	"ESC_datalink_phys_add"	/* new physical link */
2660dc974a9SCathy Zhou 
2671cb875aeSCathy Zhou /*
2681cb875aeSCathy Zhou  * VRRP subclass definitions. Supporting attributes (name/value paris) are
2691cb875aeSCathy Zhou  * found in sys/sysevent/vrrp.h
2701cb875aeSCathy Zhou  */
2711cb875aeSCathy Zhou #define	ESC_VRRP_STATE_CHANGE	"ESC_vrrp_state_change"
2721cb875aeSCathy Zhou 
2737c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
2747c478bd9Sstevel@tonic-gate }
2757c478bd9Sstevel@tonic-gate #endif
2767c478bd9Sstevel@tonic-gate 
2777c478bd9Sstevel@tonic-gate #endif /* _SYS_SYSEVENT_EVENTDEFS_H */
278