1275c9da8Seschrock#
2275c9da8Seschrock# CDDL HEADER START
3275c9da8Seschrock#
4275c9da8Seschrock# The contents of this file are subject to the terms of the
5275c9da8Seschrock# Common Development and Distribution License (the "License").
6275c9da8Seschrock# You may not use this file except in compliance with the License.
7275c9da8Seschrock#
8275c9da8Seschrock# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9275c9da8Seschrock# or http://www.opensolaris.org/os/licensing.
10275c9da8Seschrock# See the License for the specific language governing permissions
11275c9da8Seschrock# and limitations under the License.
12275c9da8Seschrock#
13275c9da8Seschrock# When distributing Covered Code, include this CDDL HEADER in each
14275c9da8Seschrock# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15275c9da8Seschrock# If applicable, add the following below this CDDL HEADER, with the
16275c9da8Seschrock# fields enclosed by brackets "[]" replaced with your own identifying
17275c9da8Seschrock# information: Portions Copyright [yyyy] [name of copyright owner]
18275c9da8Seschrock#
19275c9da8Seschrock# CDDL HEADER END
20275c9da8Seschrock#
21275c9da8Seschrock
22275c9da8Seschrock#
23cd3e9333SAli Bahrami# Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24b75e7d76SRobert Mustacchi# Copyright (c) 2017, Joyent, Inc.
25275c9da8Seschrock#
26bfed486aSAli Bahrami
27bfed486aSAli Bahrami#
28bfed486aSAli Bahrami# MAPFILE HEADER START
29bfed486aSAli Bahrami#
30bfed486aSAli Bahrami# WARNING:  STOP NOW.  DO NOT MODIFY THIS FILE.
31bfed486aSAli Bahrami# Object versioning must comply with the rules detailed in
32bfed486aSAli Bahrami#
33bfed486aSAli Bahrami#	usr/src/lib/README.mapfiles
34bfed486aSAli Bahrami#
35bfed486aSAli Bahrami# You should not be making modifications here until you've read the most current
36bfed486aSAli Bahrami# copy of that file. If you need help, contact a gatekeeper for guidance.
37bfed486aSAli Bahrami#
38bfed486aSAli Bahrami# MAPFILE HEADER END
39bfed486aSAli Bahrami#
40275c9da8Seschrock
41cd3e9333SAli Bahrami$mapfile_version 2
42cd3e9333SAli Bahrami
43cd3e9333SAli BahramiSYMBOL_VERSION SUNWprivate_1.1 {
44275c9da8Seschrock	global:
45275c9da8Seschrock		libscsi_init;
46275c9da8Seschrock		libscsi_fini;
47275c9da8Seschrock		libscsi_open;
48275c9da8Seschrock		libscsi_close;
49275c9da8Seschrock		libscsi_action_alloc;
50b75e7d76SRobert Mustacchi		libscsi_action_alloc_vendor;
51275c9da8Seschrock		libscsi_action_get_status;
52275c9da8Seschrock		libscsi_action_set_status;
53275c9da8Seschrock		libscsi_action_get_timeout;
54275c9da8Seschrock		libscsi_action_set_timeout;
55275c9da8Seschrock		libscsi_action_get_cdb;
56b75e7d76SRobert Mustacchi		libscsi_action_get_cdblen;
57275c9da8Seschrock		libscsi_action_get_flags;
58275c9da8Seschrock		libscsi_action_get_buffer;
59275c9da8Seschrock		libscsi_action_get_sense;
60275c9da8Seschrock		libscsi_action_set_datalen;
61275c9da8Seschrock		libscsi_action_set_senselen;
62275c9da8Seschrock		libscsi_action_parse_sense;
63275c9da8Seschrock		libscsi_sense_key_name;
64275c9da8Seschrock		libscsi_sense_code_name;
65275c9da8Seschrock		libscsi_action_free;
66275c9da8Seschrock		libscsi_exec;
67275c9da8Seschrock		libscsi_errno;
68275c9da8Seschrock		libscsi_errmsg;
69275c9da8Seschrock		libscsi_strerror;
70275c9da8Seschrock		libscsi_errname;
71275c9da8Seschrock		libscsi_errcode;
72275c9da8Seschrock		libscsi_assert;
73275c9da8Seschrock		libscsi_cmd_cdblen;
74275c9da8Seschrock		libscsi_vendor;
75275c9da8Seschrock		libscsi_product;
76275c9da8Seschrock		libscsi_revision;
77*0b4d6575SRobert Mustacchi		libscsi_max_transfer;
78275c9da8Seschrock		libscsi_get_handle;
79275c9da8Seschrock
80275c9da8Seschrock		libscsi_alloc;
81275c9da8Seschrock		libscsi_zalloc;
82275c9da8Seschrock		libscsi_strdup;
83275c9da8Seschrock		libscsi_free;
84275c9da8Seschrock		libscsi_set_errno;
85275c9da8Seschrock		libscsi_verror;
86275c9da8Seschrock		libscsi_error;
87275c9da8Seschrock
88275c9da8Seschrock	local:
89275c9da8Seschrock		*;
90275c9da8Seschrock};
91