Lines Matching defs:nbytes
241 struct spdk_nvme_cmd *cmd, void *buf, size_t nbytes);
243 void *buf, size_t nbytes);
245 void *buf, size_t nbytes, void *md_buf, size_t md_len);
247 struct iovec *iov, int iovcnt, size_t nbytes,
3372 bdev_io->u.nvme_passthru.nbytes);
3379 bdev_io->u.nvme_passthru.nbytes);
3385 bdev_io->u.nvme_passthru.nbytes,
3394 bdev_io->u.nvme_passthru.nbytes,
8655 struct spdk_nvme_cmd *cmd, void *buf, size_t nbytes)
8675 if (nbytes > max_xfer_size) {
8676 SPDK_ERRLOG("nbytes is greater than MDTS %" PRIu32 ".\n", max_xfer_size);
8681 rc = spdk_nvme_ctrlr_cmd_admin_raw(nvme_ctrlr->ctrlr, cmd, buf, (uint32_t)nbytes,
8694 void *buf, size_t nbytes)
8701 if (nbytes > max_xfer_size) {
8702 SPDK_ERRLOG("nbytes is greater than MDTS %" PRIu32 ".\n", max_xfer_size);
8713 (uint32_t)nbytes, bdev_nvme_queued_done, bio);
8718 void *buf, size_t nbytes, void *md_buf, size_t md_len)
8722 size_t nr_sectors = nbytes / spdk_nvme_ns_get_extended_sector_size(ns);
8726 if (nbytes > max_xfer_size) {
8727 SPDK_ERRLOG("nbytes is greater than MDTS %" PRIu32 ".\n", max_xfer_size);
8743 (uint32_t)nbytes, md_buf, bdev_nvme_queued_done, bio);
8749 size_t nbytes, void *md_buf, size_t md_len)
8753 size_t nr_sectors = nbytes / spdk_nvme_ns_get_extended_sector_size(ns);
8762 if (nbytes > max_xfer_size) {
8763 SPDK_ERRLOG("nbytes is greater than MDTS %" PRIu32 ".\n", max_xfer_size);
8779 ctrlr, qpair, cmd, (uint32_t)nbytes, md_buf, bdev_nvme_queued_done, bio,