Searched defs:fctio (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/sun_fc/common/
H A DTgtFCHBA.cc41 #include <sys/fctio.h>
93 fctio_t fctio; local
123 memset(&fctio, 0, sizeof (fctio));
124 fctio.fctio_cmd = FCTIO_GET_ADAPTER_ATTRIBUTES;
125 fctio.fctio_olen = (uint32_t)(sizeof (attrs));
126 fctio.fctio_xfer = FCTIO_XFER_READ;
127 fctio.fctio_obuf = (uint64_t)(uintptr_t)&attrs;
128 fctio.fctio_ilen = 8;
129 fctio
169 fctio_t fctio; local
224 fctio_t fctio; local
[all...]
H A DTgtFCHBAPort.cc42 #include <sys/fctio.h>
249 fctio_t fctio; local
252 memset(&fctio, 0, sizeof (fctio));
268 fctio.fctio_cmd = FCTIO_GET_ADAPTER_PORT_ATTRIBUTES;
269 fctio.fctio_ilen = 8;
270 fctio.fctio_ibuf = (uint64_t)(uintptr_t)&en_wwn;
271 fctio.fctio_xfer = FCTIO_XFER_READ;
272 fctio.fctio_olen = (uint32_t)(sizeof (attrs));
273 fctio
303 fctio_t fctio; local
359 fctio_t fctio; local
402 fctio_t fctio; local
464 fct_ioctl(int cmd, fctio_t *fctio) argument
[all...]
/illumos-gate/usr/src/uts/common/sys/
H A Dfctio.h52 typedef struct fctio { struct
/illumos-gate/usr/src/uts/common/io/comstar/port/fct/
H A Dfct.c43 #include <sys/fctio.h>
241 fct_copyin_iocdata(intptr_t data, int mode, fctio_t **fctio, argument
249 *fctio = kmem_zalloc(sizeof (fctio_t), KM_SLEEP);
250 if (ddi_copyin((void *)data, *fctio, sizeof (fctio_t), mode)) {
255 if ((*fctio)->fctio_ilen) {
256 *ibuf = kmem_zalloc((*fctio)->fctio_ilen, KM_SLEEP);
257 if (ddi_copyin((void *)(unsigned long)(*fctio)->fctio_ibuf,
258 *ibuf, (*fctio)->fctio_ilen, mode)) {
263 if ((*fctio)->fctio_alen) {
264 *abuf = kmem_zalloc((*fctio)
294 fct_copyout_iocdata(intptr_t data, int mode, fctio_t *fctio, void *obuf) argument
782 fctio_t *fctio; local
[all...]

Completed in 48 milliseconds