[PATCH RFC 3/4] nvme: Move IO termination code to the core
Christoph Hellwig
hch at infradead.org
Thu Dec 24 06:25:28 PST 2015
> +void nvme_fail_admin_cmds(struct nvme_ctrl *ctrl,
> + busy_tag_iter_fn *terminate_io, void *priv)
> +{
> + blk_mq_tagset_busy_iter(ctrl->admin_tagset, terminate_io, priv);
> +}
> +EXPORT_SYMBOL_GPL(nvme_fail_admin_cmds);
> +
> +void nvme_fail_io_cmds(struct nvme_ctrl *ctrl,
> + busy_tag_iter_fn *terminate_io, void *priv)
> +{
> + blk_mq_tagset_busy_iter(ctrl->tagset, terminate_io, priv);
> +}
> +EXPORT_SYMBOL_GPL(nvme_fail_io_cmds);
But I see absolutely no point for these helpers. These are trivial
one-liners that can stay in the transport drivers. And with that we
also don't need the admin_tagset pointer in the generic controller
(at least yet..)
More information about the Linux-nvme
mailing list