stmf_sbd_ioctl.h revision 2f624233c43c1f4fe0d930648d6ece6fffe7aa49
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#ifndef _STMF_SBD_IOCTL_H
#define _STMF_SBD_IOCTL_H
#ifdef __cplusplus
extern "C" {
#endif
/*
* error codes from sbd.
*/
typedef enum sbd_ret {
SBD_RET_META_CREATION_FAILED = 0x01,
} sbd_ret_t;
typedef struct sbd_create_and_reg_lu {
char slu_rev[4];
char slu_vid[8];
char slu_pid[16];
typedef struct sbd_import_lu {
typedef struct sbd_modify_lu {
mlu_by_guid:1,
mlu_by_fname:1;
typedef struct sbd_delete_lu {
typedef struct sbd_lu_props {
slp_zfs_meta:1,
slp_lu_vid:1,
slp_lu_pid:1,
slp_lu_rev:1,
char slp_rev[4];
char slp_vid[8];
char slp_pid[16];
#ifdef __cplusplus
}
#endif
#endif /* _STMF_SBD_IOCTL_H */