Home
last modified time | relevance | path

Searched refs:sglist_alloc (Results 1 – 17 of 17) sorted by relevance

/src/sys/kern/
H A Dsubr_sglist.c281 sglist_alloc(int nsegs, int mflags) in sglist_alloc() function
703 sg = sglist_alloc(nsegs, mflags); in sglist_build()
723 new = sglist_alloc(sg->sg_maxseg, mflags); in sglist_clone()
800 sg = sglist_alloc(count, mflags); in sglist_split()
950 sg = sglist_alloc(count, mflags); in sglist_slice()
/src/sys/amd64/vmm/
H A Dvmm_mem_machdep.c61 sg = sglist_alloc(1, M_WAITOK); in vmm_mmio_alloc()
/src/sys/crypto/ccp/
H A Dccp.c150 qp->cq_sg_crp = sglist_alloc(32, M_WAITOK); in ccp_initialize_queues()
152 qp->cq_sg_ulptx = sglist_alloc(34, M_WAITOK); in ccp_initialize_queues()
153 qp->cq_sg_dst = sglist_alloc(2, M_WAITOK); in ccp_initialize_queues()
/src/sys/sys/
H A Dsglist.h86 struct sglist *sglist_alloc(int nsegs, int mflags);
/src/sys/dev/virtio/p9fs/
H A Dvirtio_p9fs.c322 chan->vt9p_sglist = sglist_alloc(chan->max_nsegs, M_WAITOK); in vt9p_attach()
/src/sys/dev/qat/qat_common/
H A Dadf_freebsd_uio.c166 sg = sglist_alloc(1, M_WAITOK); in adf_uio_map_bar()
/src/sys/dev/cxgbe/crypto/
H A Dt4_crypto.c2413 s->sg_input = sglist_alloc(TX_SGL_SEGS, M_NOWAIT); in ccr_newsession()
2414 s->sg_output = sglist_alloc(TX_SGL_SEGS, M_NOWAIT); in ccr_newsession()
2415 s->sg_ulptx = sglist_alloc(TX_SGL_SEGS, M_NOWAIT); in ccr_newsession()
2416 s->sg_dsgl = sglist_alloc(MAX_RX_PHYS_DSGL_SGE, M_NOWAIT); in ccr_newsession()
/src/sys/dev/nvdimm/
H A Dnvdimm_spa.c491 spa_sg = sglist_alloc(1, M_WAITOK); in nvdimm_spa_dev_init()
/src/sys/dev/safexcel/
H A Dsafexcel.c1180 ring->cmd_data = sglist_alloc(SAFEXCEL_MAX_FRAGMENTS, M_WAITOK); in safexcel_attach()
1181 ring->res_data = sglist_alloc(SAFEXCEL_MAX_FRAGMENTS, M_WAITOK); in safexcel_attach()
/src/sys/dev/pci/
H A Dpci_user.c991 sg = sglist_alloc(1, M_WAITOK); in pci_bar_mmap()
/src/sys/dev/virtio/block/
H A Dvirtio_blk.c372 sc->vtblk_sglist = sglist_alloc(sc->vtblk_max_nsegs, M_NOWAIT); in vtblk_attach()
/src/sys/dev/virtio/scsi/
H A Dvirtio_scsi.c303 sc->vtscsi_sglist = sglist_alloc(sc->vtscsi_max_nsegs, M_NOWAIT); in vtscsi_attach()
/src/sys/dev/agp/
H A Dagp_i810.c2216 sg = sglist_alloc(num_entries, M_WAITOK /* XXXKIB */); in agp_intel_gtt_map_memory()
/src/sys/dev/virtio/network/
H A Dif_vtnet.c845 rxq->vtnrx_sg = sglist_alloc(sc->vtnet_rx_nsegs, M_NOWAIT); in vtnet_init_rxq()
878 txq->vtntx_sg = sglist_alloc(sc->vtnet_tx_nsegs, M_NOWAIT); in vtnet_init_txq()
/src/sys/compat/linuxkpi/common/src/
H A Dlinux_compat.c1395 sg = sglist_alloc(1, M_WAITOK); in linux_file_mmap_single()
/src/share/man/man9/
H A DMakefile2046 MLINKS+=sglist.9 sglist_alloc.9 \
/src/sys/dev/cxgbe/
H A Dt4_sge.c4787 txq->gl = sglist_alloc(TX_SGL_SEGS, M_WAITOK); in alloc_txq()