1a6d42e7dSPeter Dunlap# 2a6d42e7dSPeter Dunlap# CDDL HEADER START 3a6d42e7dSPeter Dunlap# 4a6d42e7dSPeter Dunlap# The contents of this file are subject to the terms of the 5a6d42e7dSPeter Dunlap# Common Development and Distribution License (the "License"). 6a6d42e7dSPeter Dunlap# You may not use this file except in compliance with the License. 7a6d42e7dSPeter Dunlap# 8a6d42e7dSPeter Dunlap# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9a6d42e7dSPeter Dunlap# or http://www.opensolaris.org/os/licensing. 10a6d42e7dSPeter Dunlap# See the License for the specific language governing permissions 11a6d42e7dSPeter Dunlap# and limitations under the License. 12a6d42e7dSPeter Dunlap# 13a6d42e7dSPeter Dunlap# When distributing Covered Code, include this CDDL HEADER in each 14a6d42e7dSPeter Dunlap# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15a6d42e7dSPeter Dunlap# If applicable, add the following below this CDDL HEADER, with the 16a6d42e7dSPeter Dunlap# fields enclosed by brackets "[]" replaced with your own identifying 17a6d42e7dSPeter Dunlap# information: Portions Copyright [yyyy] [name of copyright owner] 18a6d42e7dSPeter Dunlap# 19a6d42e7dSPeter Dunlap# CDDL HEADER END 20a6d42e7dSPeter Dunlap# 21a6d42e7dSPeter Dunlap# 22*bfed486aSAli Bahrami# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 23a6d42e7dSPeter Dunlap# Use is subject to license terms. 24a6d42e7dSPeter Dunlap# 25*bfed486aSAli Bahrami 26*bfed486aSAli Bahrami# 27*bfed486aSAli Bahrami# MAPFILE HEADER START 28*bfed486aSAli Bahrami# 29*bfed486aSAli Bahrami# WARNING: STOP NOW. DO NOT MODIFY THIS FILE. 30*bfed486aSAli Bahrami# Object versioning must comply with the rules detailed in 31*bfed486aSAli Bahrami# 32*bfed486aSAli Bahrami# usr/src/lib/README.mapfiles 33*bfed486aSAli Bahrami# 34*bfed486aSAli Bahrami# You should not be making modifications here until you've read the most current 35*bfed486aSAli Bahrami# copy of that file. If you need help, contact a gatekeeper for guidance. 36*bfed486aSAli Bahrami# 37*bfed486aSAli Bahrami# MAPFILE HEADER END 38*bfed486aSAli Bahrami# 39a6d42e7dSPeter DunlapSUNW_1.1 { 40a6d42e7dSPeter Dunlap global: 41a6d42e7dSPeter Dunlap it_config_load; 42a6d42e7dSPeter Dunlap it_config_commit; 43a6d42e7dSPeter Dunlap it_config_setprop; 44a6d42e7dSPeter Dunlap it_config_free; 45a6d42e7dSPeter Dunlap it_tgt_create; 46a6d42e7dSPeter Dunlap it_tgt_setprop; 47a6d42e7dSPeter Dunlap it_tgt_delete; 48a6d42e7dSPeter Dunlap it_tgt_free; 49a6d42e7dSPeter Dunlap it_tpg_create; 50a6d42e7dSPeter Dunlap it_tpg_delete; 51a6d42e7dSPeter Dunlap it_tpg_free; 52a6d42e7dSPeter Dunlap it_ini_create; 53a6d42e7dSPeter Dunlap it_ini_delete; 54a6d42e7dSPeter Dunlap it_ini_setprop; 55a6d42e7dSPeter Dunlap it_ini_free; 56a6d42e7dSPeter Dunlap it_tpgt_create; 57a6d42e7dSPeter Dunlap it_tpgt_delete; 58a6d42e7dSPeter Dunlap it_tpgt_free; 59a6d42e7dSPeter Dunlap it_portal_create; 60a6d42e7dSPeter Dunlap}; 61a6d42e7dSPeter Dunlap 62a6d42e7dSPeter DunlapSUNWprivate { 63a6d42e7dSPeter Dunlap global: 64a6d42e7dSPeter Dunlap it_config_to_nv; 65a6d42e7dSPeter Dunlap it_nv_to_config; 66a6d42e7dSPeter Dunlap it_nv_to_tgtlist; 67a6d42e7dSPeter Dunlap it_tgtlist_to_nv; 68a6d42e7dSPeter Dunlap it_tgt_to_nv; 69a6d42e7dSPeter Dunlap it_nv_to_tgt; 70a6d42e7dSPeter Dunlap it_tpgt_to_nv; 71a6d42e7dSPeter Dunlap it_nv_to_tpgt; 72a6d42e7dSPeter Dunlap it_tpgtlist_to_nv; 73a6d42e7dSPeter Dunlap it_nv_to_tpgtlist; 74a6d42e7dSPeter Dunlap it_tpg_to_nv; 75a6d42e7dSPeter Dunlap it_nv_to_tpg; 76a6d42e7dSPeter Dunlap it_tpglist_to_nv; 77a6d42e7dSPeter Dunlap it_nv_to_tpglist; 78a6d42e7dSPeter Dunlap it_ini_to_nv; 79a6d42e7dSPeter Dunlap it_nv_to_ini; 80a6d42e7dSPeter Dunlap it_inilist_to_nv; 81a6d42e7dSPeter Dunlap it_nv_to_inilist; 82a6d42e7dSPeter Dunlap it_common_convert_sa; 83a6d42e7dSPeter Dunlap it_config_free_cmn; 84a6d42e7dSPeter Dunlap it_tgt_free_cmn; 85a6d42e7dSPeter Dunlap it_tpg_free_cmn; 86a6d42e7dSPeter Dunlap it_ini_free_cmn; 87a6d42e7dSPeter Dunlap it_tpgt_free_cmn; 88a6d42e7dSPeter Dunlap sockaddr_to_str; 89a6d42e7dSPeter Dunlap validate_iscsi_name; 90a6d42e7dSPeter Dunlap local: 91a6d42e7dSPeter Dunlap *; 92a6d42e7dSPeter Dunlap}; 93a6d42e7dSPeter Dunlap 94