ZFCP HBA API Library  1
vlib_sg_io.h
1 /* SPDX-License-Identifier: EPL-1.0 */
2 /*
3  * Copyright IBM Corp. 2010
4  *
5  * Authors: Sven Schuetz <sven@de.ibm.com>
6  * contains code from vlib_aux.h
7  * by Andreas Herrmann and Stefan Voelkel
8  *
9  * File: vlib_sg_io.h
10  *
11  * Description:
12  * Function declarations, defines, inlines for calls that use sg_io
13  *
14  */
15 
16 #ifndef VLIB_SG_IO_H_
17 #define VLIB_SG_IO_H_
18 
19 #define CT_GIDPN_REQ_LENGTH 24
20 #define CT_GIDPN_RESPONSE_LENGTH 20
21 
22 
23 HBA_STATUS sg_io_sendRNID(struct vlib_adapter *, wwn_t, void *, int);
24 HBA_STATUS sg_io_performCTPassThru(struct vlib_adapter *, void*, int, void*,
25  int);
26 
27 #endif /*VLIB_SG_IO_H_*/
Represenation of an adapter in the library.
Definition: vlib.h:471