1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License, Version 1.0 only 6 * (the "License"). You may not use this file except in compliance 7 * with the License. 8 * 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10 * or http://www.opensolaris.org/os/licensing. 11 * See the License for the specific language governing permissions 12 * and limitations under the License. 13 * 14 * When distributing Covered Code, include this CDDL HEADER in each 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16 * If applicable, add the following below this CDDL HEADER, with the 17 * fields enclosed by brackets "[]" replaced with your own identifying 18 * information: Portions Copyright [yyyy] [name of copyright owner] 19 * 20 * CDDL HEADER END 21 */ 22 /* 23 * Copyright 2005 Sun Microsystems, Inc. All rights reserved. 24 * Use is subject to license terms. 25 */ 26 27 #ifndef _MDESCPLUGIN_H 28 #define _MDESCPLUGIN_H 29 30 #pragma ident "%Z%%M% %I% %E% SMI" 31 32 #include <picl.h> 33 #include <picltree.h> 34 #include <picldefs.h> 35 #include <stdio.h> 36 #include <unistd.h> 37 #include <stdlib.h> 38 #include <sys/types.h> 39 #include <alloca.h> 40 #include <sys/stat.h> 41 #include <malloc.h> 42 #include <fcntl.h> 43 #include <syslog.h> 44 #include <mdesc.h> 45 #include <string.h> 46 #include <errno.h> 47 #include <libnvpair.h> 48 #include <syslog.h> 49 #include <sys/stat.h> 50 #include <dirent.h> 51 #include <config_admin.h> 52 #include <sys/param.h> 53 54 #define MAXSTRLEN 256 55 #define ICACHE_FLAG 0x01 56 #define DCACHE_FLAG 0x02 57 #define CACHE_FLAG 0x03 58 #define DISK_DISCOVERY_NAME "disk_discovery" 59 #define CONFIGURED "configured" 60 #define UNCONFIGURED "unconfigured" 61 62 #endif /* _MDESCPLUGIN_H */ 63