Home
last modified time | relevance | path

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

/freebsd-14.2/sys/kern/
H A Dsubr_sglist.c282 sglist_alloc(int nsegs, int mflags) in sglist_alloc() function
704 sg = sglist_alloc(nsegs, mflags); in sglist_build()
724 new = sglist_alloc(sg->sg_maxseg, mflags); in sglist_clone()
801 sg = sglist_alloc(count, mflags); in sglist_split()
951 sg = sglist_alloc(count, mflags); in sglist_slice()
/freebsd-14.2/sys/amd64/vmm/
H A Dvmm_mem.c64 sg = sglist_alloc(1, M_WAITOK); in vmm_mmio_alloc()
/freebsd-14.2/sys/sys/
H A Dsglist.h85 struct sglist *sglist_alloc(int nsegs, int mflags);
/freebsd-14.2/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()
/freebsd-14.2/sys/dev/qat/qat_common/
H A Dadf_freebsd_uio.c166 sg = sglist_alloc(1, M_WAITOK); in adf_uio_map_bar()
/freebsd-14.2/sys/dev/cxgbe/crypto/
H A Dt4_crypto.c2405 s->sg_input = sglist_alloc(TX_SGL_SEGS, M_NOWAIT); in ccr_newsession()
2406 s->sg_output = sglist_alloc(TX_SGL_SEGS, M_NOWAIT); in ccr_newsession()
2407 s->sg_ulptx = sglist_alloc(TX_SGL_SEGS, M_NOWAIT); in ccr_newsession()
2408 s->sg_dsgl = sglist_alloc(MAX_RX_PHYS_DSGL_SGE, M_NOWAIT); in ccr_newsession()
/freebsd-14.2/sys/dev/nvdimm/
H A Dnvdimm_spa.c491 spa_sg = sglist_alloc(1, M_WAITOK); in nvdimm_spa_dev_init()
/freebsd-14.2/sys/dev/safexcel/
H A Dsafexcel.c1181 ring->cmd_data = sglist_alloc(SAFEXCEL_MAX_FRAGMENTS, M_WAITOK); in safexcel_attach()
1182 ring->res_data = sglist_alloc(SAFEXCEL_MAX_FRAGMENTS, M_WAITOK); in safexcel_attach()
/freebsd-14.2/sys/dev/pci/
H A Dpci_user.c891 sg = sglist_alloc(1, M_WAITOK); in pci_bar_mmap()
/freebsd-14.2/sys/dev/virtio/block/
H A Dvirtio_blk.c364 sc->vtblk_sglist = sglist_alloc(sc->vtblk_max_nsegs, M_NOWAIT); in vtblk_attach()
/freebsd-14.2/sys/dev/virtio/network/
H A Dif_vtnet.c833 rxq->vtnrx_sg = sglist_alloc(sc->vtnet_rx_nsegs, M_NOWAIT); in vtnet_init_rxq()
866 txq->vtntx_sg = sglist_alloc(sc->vtnet_tx_nsegs, M_NOWAIT); in vtnet_init_txq()
/freebsd-14.2/sys/dev/agp/
H A Dagp_i810.c2216 sg = sglist_alloc(num_entries, M_WAITOK /* XXXKIB */); in agp_intel_gtt_map_memory()
/freebsd-14.2/sys/dev/virtio/scsi/
H A Dvirtio_scsi.c305 sc->vtscsi_sglist = sglist_alloc(sc->vtscsi_max_nsegs, M_NOWAIT); in vtscsi_attach()
/freebsd-14.2/sys/compat/linuxkpi/common/src/
H A Dlinux_compat.c1339 sg = sglist_alloc(1, M_WAITOK); in linux_file_mmap_single()
/freebsd-14.2/share/man/man9/
H A DMakefile1992 MLINKS+=sglist.9 sglist_alloc.9 \
/freebsd-14.2/sys/dev/cxgbe/
H A Dt4_sge.c4641 txq->gl = sglist_alloc(TX_SGL_SEGS, M_WAITOK); in alloc_txq()