nvme: remove nvme_reinit_tagset
Unused now that all transports stopped using it. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
3e493c00ce
commit
14dfa400f9
|
@ -3627,16 +3627,6 @@ void nvme_start_queues(struct nvme_ctrl *ctrl)
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(nvme_start_queues);
|
EXPORT_SYMBOL_GPL(nvme_start_queues);
|
||||||
|
|
||||||
int nvme_reinit_tagset(struct nvme_ctrl *ctrl, struct blk_mq_tag_set *set)
|
|
||||||
{
|
|
||||||
if (!ctrl->ops->reinit_request)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
return blk_mq_tagset_iter(set, set->driver_data,
|
|
||||||
ctrl->ops->reinit_request);
|
|
||||||
}
|
|
||||||
EXPORT_SYMBOL_GPL(nvme_reinit_tagset);
|
|
||||||
|
|
||||||
int __init nvme_core_init(void)
|
int __init nvme_core_init(void)
|
||||||
{
|
{
|
||||||
int result = -ENOMEM;
|
int result = -ENOMEM;
|
||||||
|
|
|
@ -321,7 +321,6 @@ struct nvme_ctrl_ops {
|
||||||
void (*submit_async_event)(struct nvme_ctrl *ctrl);
|
void (*submit_async_event)(struct nvme_ctrl *ctrl);
|
||||||
void (*delete_ctrl)(struct nvme_ctrl *ctrl);
|
void (*delete_ctrl)(struct nvme_ctrl *ctrl);
|
||||||
int (*get_address)(struct nvme_ctrl *ctrl, char *buf, int size);
|
int (*get_address)(struct nvme_ctrl *ctrl, char *buf, int size);
|
||||||
int (*reinit_request)(void *data, struct request *rq);
|
|
||||||
void (*stop_ctrl)(struct nvme_ctrl *ctrl);
|
void (*stop_ctrl)(struct nvme_ctrl *ctrl);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -416,7 +415,6 @@ void nvme_unfreeze(struct nvme_ctrl *ctrl);
|
||||||
void nvme_wait_freeze(struct nvme_ctrl *ctrl);
|
void nvme_wait_freeze(struct nvme_ctrl *ctrl);
|
||||||
void nvme_wait_freeze_timeout(struct nvme_ctrl *ctrl, long timeout);
|
void nvme_wait_freeze_timeout(struct nvme_ctrl *ctrl, long timeout);
|
||||||
void nvme_start_freeze(struct nvme_ctrl *ctrl);
|
void nvme_start_freeze(struct nvme_ctrl *ctrl);
|
||||||
int nvme_reinit_tagset(struct nvme_ctrl *ctrl, struct blk_mq_tag_set *set);
|
|
||||||
|
|
||||||
#define NVME_QID_ANY -1
|
#define NVME_QID_ANY -1
|
||||||
struct request *nvme_alloc_request(struct request_queue *q,
|
struct request *nvme_alloc_request(struct request_queue *q,
|
||||||
|
|
Loading…
Reference in New Issue