nr_vecs            39 block/bio-integrity.c 						  unsigned int nr_vecs)
nr_vecs            46 block/bio-integrity.c 		bip = kmalloc(struct_size(bip, bip_inline_vecs, nr_vecs), gfp_mask);
nr_vecs            47 block/bio-integrity.c 		inline_vecs = nr_vecs;
nr_vecs            58 block/bio-integrity.c 	if (nr_vecs > inline_vecs) {
nr_vecs            61 block/bio-integrity.c 		bip->bip_vec = bvec_alloc(gfp_mask, nr_vecs, &idx,
nr_vecs            36 block/bio.c    #define BV(x, n) { .nr_vecs = x, .name = "biovec-"#n }
nr_vecs           149 block/bio.c    	return bvec_slabs[--idx].nr_vecs;
nr_vecs          2194 block/bio.c    		if (bvs->nr_vecs <= BIO_INLINE_VECS) {
nr_vecs          2199 block/bio.c    		size = bvs->nr_vecs * sizeof(struct bio_vec);
nr_vecs           293 drivers/crypto/cavium/nitrox/nitrox_isr.c 	int nr_vecs, vec, cpu;
nr_vecs           308 drivers/crypto/cavium/nitrox/nitrox_isr.c 	nr_vecs = pci_msix_vec_count(pdev);
nr_vecs           311 drivers/crypto/cavium/nitrox/nitrox_isr.c 	ret = pci_alloc_irq_vectors(pdev, nr_vecs, nr_vecs, PCI_IRQ_MSIX);
nr_vecs           313 drivers/crypto/cavium/nitrox/nitrox_isr.c 		dev_err(DEV(ndev), "msix vectors %d alloc failed\n", nr_vecs);
nr_vecs           316 drivers/crypto/cavium/nitrox/nitrox_isr.c 	ndev->num_vecs = nr_vecs;
nr_vecs           318 drivers/crypto/cavium/nitrox/nitrox_isr.c 	ndev->qvec = kcalloc(nr_vecs, sizeof(*qvec), GFP_KERNEL);
nr_vecs           325 drivers/crypto/cavium/nitrox/nitrox_isr.c 	for (i = PKT_RING_MSIX_BASE; i < (nr_vecs - 1); i += NR_RING_VECTORS) {
nr_vecs           828 drivers/target/target_core_pscsi.c static inline struct bio *pscsi_get_bio(int nr_vecs)
nr_vecs           835 drivers/target/target_core_pscsi.c 	bio = bio_kmalloc(GFP_KERNEL, nr_vecs);
nr_vecs           856 drivers/target/target_core_pscsi.c 	int nr_vecs = 0, rc;
nr_vecs           884 drivers/target/target_core_pscsi.c 				nr_vecs = min_t(int, BIO_MAX_PAGES, nr_pages);
nr_vecs           885 drivers/target/target_core_pscsi.c 				nr_pages -= nr_vecs;
nr_vecs           889 drivers/target/target_core_pscsi.c 				bio = pscsi_get_bio(nr_vecs);
nr_vecs           898 drivers/target/target_core_pscsi.c 					(rw) ? "rw" : "r", nr_vecs);
nr_vecs           908 drivers/target/target_core_pscsi.c 				bio_segments(bio), nr_vecs);
nr_vecs           430 fs/direct-io.c 	      sector_t first_sector, int nr_vecs)
nr_vecs           438 fs/direct-io.c 	bio = bio_alloc(GFP_KERNEL, nr_vecs);
nr_vecs           261 fs/iomap/buffered-io.c 		int nr_vecs = (length + PAGE_SIZE - 1) >> PAGE_SHIFT;
nr_vecs           268 fs/iomap/buffered-io.c 		ctx->bio = bio_alloc(gfp, min(BIO_MAX_PAGES, nr_vecs));
nr_vecs            72 fs/mpage.c     		sector_t first_sector, int nr_vecs,
nr_vecs            79 fs/mpage.c     	bio = bio_alloc(gfp_flags, nr_vecs);
nr_vecs            82 fs/mpage.c     		while (!bio && (nr_vecs /= 2))
nr_vecs            83 fs/mpage.c     			bio = bio_alloc(gfp_flags, nr_vecs);
nr_vecs            26 fs/nilfs2/segbuf.c 	int			nr_vecs;
nr_vecs           365 fs/nilfs2/segbuf.c 	wi->nr_vecs = min(wi->max_pages, wi->rest_blocks);
nr_vecs           384 fs/nilfs2/segbuf.c 				       int nr_vecs)
nr_vecs           388 fs/nilfs2/segbuf.c 	bio = bio_alloc(GFP_NOIO, nr_vecs);
nr_vecs           390 fs/nilfs2/segbuf.c 		while (!bio && (nr_vecs >>= 1))
nr_vecs           391 fs/nilfs2/segbuf.c 			bio = bio_alloc(GFP_NOIO, nr_vecs);
nr_vecs           407 fs/nilfs2/segbuf.c 	wi->nr_vecs = min(wi->max_pages, wi->rest_blocks);
nr_vecs           418 fs/nilfs2/segbuf.c 	BUG_ON(wi->nr_vecs <= 0);
nr_vecs           422 fs/nilfs2/segbuf.c 					      wi->nr_vecs);
nr_vecs           725 include/linux/bio.h 	int nr_vecs;
nr_vecs           121 tools/io_uring/liburing.h 				       unsigned nr_vecs, off_t offset)
nr_vecs           123 tools/io_uring/liburing.h 	io_uring_prep_rw(IORING_OP_READV, sqe, fd, iovecs, nr_vecs, offset);
nr_vecs           135 tools/io_uring/liburing.h 					unsigned nr_vecs, off_t offset)
nr_vecs           137 tools/io_uring/liburing.h 	io_uring_prep_rw(IORING_OP_WRITEV, sqe, fd, iovecs, nr_vecs, offset);