Home | History | Annotate | Download | only in pci

Lines Matching defs:sge

1250 	struct mfii_sge *sge = (struct mfii_sge *)(ctx + 1);
1253 io->sgl_offset0 = (uint32_t *)sge - (uint32_t *)io;
1256 sge->sg_addr = htole64(ccb->ccb_sense_dva);
1257 sge->sg_len = htole32(sizeof(*ccb->ccb_sense));
1258 sge->sg_flags = MFII_SGE_CHAIN_ELEMENT | MFII_SGE_ADDR_IOCPLBNTA;
1925 struct mfii_sge *sge = (struct mfii_sge *)(ctx + 1);
1965 io->sgl_offset0 = ((u_int8_t *)sge - (u_int8_t *)io) / 4;
1966 io->chain_offset = ((u_int8_t *)sge - (u_int8_t *)io) / 16;
1968 sge->sg_addr = htole64(ccb->ccb_mfi_dva);
1969 sge->sg_len = htole32(MFI_FRAME_SIZE);
1970 sge->sg_flags = MFII_SGE_CHAIN_ELEMENT | MFII_SGE_ADDR_IOCPLBNTA;
2644 struct mfii_sge *sge = NULL, *nsge = sglp;
2684 sge = nsge;
2686 sge->sg_addr = htole64(dmap->dm_segs[i].ds_addr);
2687 sge->sg_len = htole32(dmap->dm_segs[i].ds_len);
2688 sge->sg_flags = MFII_SGE_ADDR_SYSTEM;
2690 nsge = sge + 1;
2692 sge->sg_flags |= sc->sc_iop->sge_flag_eol;