diff --git a/sys/dev/nvme/nvme_private.h b/sys/dev/nvme/nvme_private.h index ecc8b34cd7ee..ae70503ebcd8 100644 --- a/sys/dev/nvme/nvme_private.h +++ b/sys/dev/nvme/nvme_private.h @@ -145,7 +145,6 @@ struct nvme_request { struct nvme_qpair *qpair; union { void *payload; - struct uio *uio; struct bio *bio; } u; uint32_t type; @@ -469,8 +468,6 @@ int nvme_ns_construct(struct nvme_namespace *ns, uint16_t id, struct nvme_controller *ctrlr); void nvme_ns_destruct(struct nvme_namespace *ns); -int nvme_ns_physio(struct cdev *dev, struct uio *uio, int ioflag); - void nvme_sysctl_initialize_ctrlr(struct nvme_controller *ctrlr); void nvme_dump_command(struct nvme_command *cmd); @@ -524,19 +521,6 @@ nvme_allocate_request_null(nvme_cb_fn_t cb_fn, void *cb_arg) return (req); } -static __inline struct nvme_request * -nvme_allocate_request_uio(struct uio *uio, nvme_cb_fn_t cb_fn, void *cb_arg) -{ - struct nvme_request *req; - - req = _nvme_allocate_request(cb_fn, cb_arg); - if (req != NULL) { - req->type = NVME_REQUEST_UIO; - req->u.uio = uio; - } - return (req); -} - static __inline struct nvme_request * nvme_allocate_request_bio(struct bio *bio, nvme_cb_fn_t cb_fn, void *cb_arg) { diff --git a/sys/dev/nvme/nvme_qpair.c b/sys/dev/nvme/nvme_qpair.c index 39377187dd81..31fb93505922 100644 --- a/sys/dev/nvme/nvme_qpair.c +++ b/sys/dev/nvme/nvme_qpair.c @@ -734,14 +734,6 @@ nvme_payload_map(void *arg, bus_dma_segment_t *seg, int nseg, int error) nvme_qpair_submit_tracker(tr->qpair, tr); } -static void -nvme_payload_map_uio(void *arg, bus_dma_segment_t *seg, int nseg, - bus_size_t mapsize, int error) -{ - - nvme_payload_map(arg, seg, nseg, error); -} - static void _nvme_qpair_submit_request(struct nvme_qpair *qpair, struct nvme_request *req) { @@ -798,14 +790,6 @@ _nvme_qpair_submit_request(struct nvme_qpair *qpair, struct nvme_request *req) case NVME_REQUEST_NULL: nvme_qpair_submit_tracker(tr->qpair, tr); break; - case NVME_REQUEST_UIO: - err = bus_dmamap_load_uio(tr->qpair->dma_tag, - tr->payload_dma_map, req->u.uio, nvme_payload_map_uio, - tr, 0); - if (err != 0) - nvme_printf(qpair->ctrlr, - "bus_dmamap_load_uio returned 0x%x!\n", err); - break; #ifdef NVME_UNMAPPED_BIO_SUPPORT case NVME_REQUEST_BIO: KASSERT(req->u.bio->bio_bcount <= qpair->ctrlr->max_xfer_size,