Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions src/container/srv_target.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* (C) Copyright 2016-2024 Intel Corporation.
* (C) Copyright 2025 Google LLC
* (C) Copyright 2025-2026 Hewlett Packard Enterprise Development LP
* Copyright 2016-2024 Intel Corporation.
* Copyright 2025 Google LLC
* Copyright 2025-2026 Hewlett Packard Enterprise Development LP
*
* SPDX-License-Identifier: BSD-2-Clause-Patent
*/
Expand Down Expand Up @@ -1581,6 +1581,9 @@ cont_child_create_start(uuid_t pool_uuid, uuid_t cont_uuid, uint32_t pm_ver, boo
}

if (!rc) {
if (!locked)
D_INFO(DF_CONT ": vos container created on tgt %u\n",
DP_CONT(pool_uuid, cont_uuid), dss_get_module_info()->dmi_tgt_id);
rc = cont_child_start(pool_child, cont_uuid, started, cont_out);
if (rc == 0) {
if (cont_out != NULL)
Expand All @@ -1599,6 +1602,10 @@ cont_child_create_start(uuid_t pool_uuid, uuid_t cont_uuid, uint32_t pm_ver, boo
D_ERROR("failed to destroy "DF_UUID": %d\n",
DP_UUID(cont_uuid), rc_tmp);
}
} else {
if (!locked)
DL_ERROR(rc, DF_CONT ": failed to create vos container on tgt %u",
DP_CONT(pool_uuid, cont_uuid), dss_get_module_info()->dmi_tgt_id);
}

if (!locked)
Expand Down
Loading