4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
31 #include <scsi/libses.h>
33 #include <fm/topo_mod.h>
34 #include <fm/topo_list.h>
35 #include <fm/topo_method.h>
41 extern ses_node_t
*ses_node_lock(topo_mod_t
*, tnode_t
*);
42 extern void ses_node_unlock(topo_mod_t
*, tnode_t
*);
44 extern int ses_node_enum_facility(topo_mod_t
*, tnode_t
*, topo_version_t
,
45 nvlist_t
*, nvlist_t
**);
46 extern int ses_enc_enum_facility(topo_mod_t
*, tnode_t
*, topo_version_t
,
47 nvlist_t
*, nvlist_t
**);
49 typedef struct ses_enum_target
{
51 ses_target_t
*set_target
;
53 hrtime_t set_snaptime
;
56 pthread_mutex_t set_lock
;
61 #define verify(x) assert(x)
63 #define verify(x) ((void)(x))