bdev/nvme: Move nvme_ctrlr_depopulate_namespace_done() to common.c

Moving nvme_ctrlr_depopulate_namespace_done() to common.c removes the
stub from bdev_ocssd_ut.c and will simplify the upcoming changes.

Signed-off-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Change-Id: Ia94a88ca77518c7df08b52aa9298cdea5997ca1e
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/7135
Community-CI: Broadcom CI
Community-CI: Mellanox Build Bot
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Paul Luse <paul.e.luse@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
Reviewed-by: Aleksey Marchuk <alexeymar@mellanox.com>
This commit is contained in:
Shuhei Matsumoto 2021-03-29 23:40:48 +09:00 committed by Jim Harris
parent 610dd86b8c
commit 2b8661d6ac
3 changed files with 6 additions and 12 deletions

View File

@ -1518,12 +1518,6 @@ timeout_cb(void *cb_arg, struct spdk_nvme_ctrlr *ctrlr,
}
}
void
nvme_ctrlr_depopulate_namespace_done(struct nvme_bdev_ns *nvme_ns)
{
nvme_bdev_ns_detach(nvme_ns);
}
static void
nvme_ctrlr_depopulate_standard_namespace(struct nvme_bdev_ns *nvme_ns)
{

View File

@ -204,3 +204,9 @@ nvme_bdev_ns_detach(struct nvme_bdev_ns *nvme_ns)
nvme_bdev_ctrlr_destruct(nvme_ns->ctrlr);
}
void
nvme_ctrlr_depopulate_namespace_done(struct nvme_bdev_ns *nvme_ns)
{
nvme_bdev_ns_detach(nvme_ns);
}

View File

@ -197,12 +197,6 @@ nvme_ctrlr_populate_namespace_done(struct nvme_async_probe_ctx *ctx,
ns->ctrlr->ref++;
}
void
nvme_ctrlr_depopulate_namespace_done(struct nvme_bdev_ns *ns)
{
nvme_bdev_ns_detach(ns);
}
static struct nvme_bdev_ctrlr *
create_nvme_bdev_controller(const struct spdk_nvme_transport_id *trid, const char *name)
{