Lines Matching defs:iovcnt
32 int iovcnt;
70 int iovcnt, uint64_t lba, uint64_t src_lba, uint32_t lba_count,
90 ctx->iovcnt = iovcnt;
143 struct iovec *iov, int iovcnt,
148 rc = spdk_bdev_readv_blocks(__get_desc(dev), channel, iov, iovcnt, lba,
151 bdev_blob_queue_io(dev, channel, iov, iovcnt, lba, 0,
160 struct iovec *iov, int iovcnt,
165 rc = spdk_bdev_writev_blocks(__get_desc(dev), channel, iov, iovcnt, lba,
168 bdev_blob_queue_io(dev, channel, iov, iovcnt, lba, 0,
186 struct iovec *iov, int iovcnt,
194 rc = spdk_bdev_readv_blocks_ext(__get_desc(dev), channel, iov, iovcnt, lba, lba_count,
197 bdev_blob_queue_io(dev, channel, iov, iovcnt, lba, 0, lba_count, SPDK_BDEV_IO_TYPE_READ, cb_args,
206 struct iovec *iov, int iovcnt,
214 rc = spdk_bdev_writev_blocks_ext(__get_desc(dev), channel, iov, iovcnt, lba, lba_count,
217 bdev_blob_queue_io(dev, channel, iov, iovcnt, lba, 0, lba_count, SPDK_BDEV_IO_TYPE_WRITE, cb_args,
291 if (ctx->iovcnt > 0) {
293 bdev_blob_readv_ext(ctx->dev, ctx->channel, (struct iovec *) ctx->payload, ctx->iovcnt,
296 bdev_blob_readv(ctx->dev, ctx->channel, (struct iovec *) ctx->payload, ctx->iovcnt,
305 if (ctx->iovcnt > 0) {
307 bdev_blob_writev_ext(ctx->dev, ctx->channel, (struct iovec *) ctx->payload, ctx->iovcnt,
310 bdev_blob_writev(ctx->dev, ctx->channel, (struct iovec *) ctx->payload, ctx->iovcnt,