]> git.proxmox.com Git - ceph.git/blame - ceph/src/spdk/lib/bdev/nvme/common.c
bump version to 15.2.11-pve1
[ceph.git] / ceph / src / spdk / lib / bdev / nvme / common.c
CommitLineData
7c673cae
FG
1/*-
2 * BSD LICENSE
3 *
7c673cae
FG
4 * Copyright (c) Intel Corporation.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 *
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
16 * distribution.
17 * * Neither the name of Intel Corporation nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
7c673cae 34#include "spdk/env.h"
9f95a23c
TL
35#include "common.h"
36
37struct nvme_bdev_ctrlrs g_nvme_bdev_ctrlrs = TAILQ_HEAD_INITIALIZER(g_nvme_bdev_ctrlrs);
38pthread_mutex_t g_bdev_nvme_mutex = PTHREAD_MUTEX_INITIALIZER;
39
40struct nvme_bdev_ctrlr *
41nvme_bdev_ctrlr_get(const struct spdk_nvme_transport_id *trid)
42{
43 struct nvme_bdev_ctrlr *nvme_bdev_ctrlr;
44
45 TAILQ_FOREACH(nvme_bdev_ctrlr, &g_nvme_bdev_ctrlrs, tailq) {
46 if (spdk_nvme_transport_id_compare(trid, &nvme_bdev_ctrlr->trid) == 0) {
47 return nvme_bdev_ctrlr;
48 }
49 }
50
51 return NULL;
52}
53
54struct nvme_bdev_ctrlr *
55nvme_bdev_ctrlr_get_by_name(const char *name)
7c673cae 56{
9f95a23c 57 struct nvme_bdev_ctrlr *nvme_bdev_ctrlr;
7c673cae 58
9f95a23c
TL
59 if (name == NULL) {
60 return NULL;
7c673cae
FG
61 }
62
9f95a23c
TL
63 TAILQ_FOREACH(nvme_bdev_ctrlr, &g_nvme_bdev_ctrlrs, tailq) {
64 if (strcmp(name, nvme_bdev_ctrlr->name) == 0) {
65 return nvme_bdev_ctrlr;
7c673cae
FG
66 }
67 }
7c673cae 68
9f95a23c 69 return NULL;
7c673cae
FG
70}
71
9f95a23c
TL
72struct nvme_bdev_ctrlr *
73nvme_bdev_first_ctrlr(void)
74{
75 return TAILQ_FIRST(&g_nvme_bdev_ctrlrs);
76}
77
78struct nvme_bdev_ctrlr *
79nvme_bdev_next_ctrlr(struct nvme_bdev_ctrlr *prev)
7c673cae 80{
9f95a23c 81 return TAILQ_NEXT(prev, tailq);
7c673cae
FG
82}
83
84void
9f95a23c 85nvme_bdev_dump_trid_json(struct spdk_nvme_transport_id *trid, struct spdk_json_write_ctx *w)
7c673cae 86{
9f95a23c
TL
87 const char *trtype_str;
88 const char *adrfam_str;
89
90 trtype_str = spdk_nvme_transport_id_trtype_str(trid->trtype);
91 if (trtype_str) {
92 spdk_json_write_named_string(w, "trtype", trtype_str);
93 }
94
95 adrfam_str = spdk_nvme_transport_id_adrfam_str(trid->adrfam);
96 if (adrfam_str) {
97 spdk_json_write_named_string(w, "adrfam", adrfam_str);
98 }
99
100 if (trid->traddr[0] != '\0') {
101 spdk_json_write_named_string(w, "traddr", trid->traddr);
102 }
103
104 if (trid->trsvcid[0] != '\0') {
105 spdk_json_write_named_string(w, "trsvcid", trid->trsvcid);
106 }
107
108 if (trid->subnqn[0] != '\0') {
109 spdk_json_write_named_string(w, "subnqn", trid->subnqn);
110 }
7c673cae 111}