From: Benjamin Marzinski <bmarzins@redhat.com>
To: Christophe Varoqui <christophe.varoqui@opensvc.com>
Cc: device-mapper development <dm-devel@redhat.com>,
Martin Wilck <Martin.Wilck@suse.com>
Subject: [dm-devel] [PATCH 3/5] libmultipath: add ALUA tpg path wildcard
Date: Fri, 19 May 2023 18:02:10 -0500 [thread overview]
Message-ID: <1684537332-23033-4-git-send-email-bmarzins@redhat.com> (raw)
In-Reply-To: <1684537332-23033-1-git-send-email-bmarzins@redhat.com>
Make it possible to easily check a path's target port group.
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
---
libmultipath/print.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/libmultipath/print.c b/libmultipath/print.c
index 3193dbe0..360308d2 100644
--- a/libmultipath/print.c
+++ b/libmultipath/print.c
@@ -782,6 +782,14 @@ snprint_path_vpd_data(struct strbuf *buff, const struct path * pp)
return append_strbuf_str(buff, "[undef]");
}
+static int
+snprint_alua_tpg(struct strbuf *buff, const struct path * pp)
+{
+ if (pp->tpg_id < 0)
+ return append_strbuf_str(buff, "[undef]");
+ return print_strbuf(buff, "0x%04x", pp->tpg_id);
+}
+
static const struct multipath_data mpd[] = {
{'n', "name", snprint_name},
{'w', "uuid", snprint_multipath_uuid},
@@ -836,6 +844,7 @@ static const struct path_data pd[] = {
{'P', "protocol", snprint_path_protocol},
{'I', "init_st", snprint_initialized},
{'L', "LUN hex", snprint_path_lunhex},
+ {'A', "TPG", snprint_alua_tpg},
};
static const struct pathgroup_data pgd[] = {
--
2.17.2
--
dm-devel mailing list
dm-devel@redhat.com
https://listman.redhat.com/mailman/listinfo/dm-devel
next prev parent reply other threads:[~2023-05-19 23:02 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-19 23:02 [dm-devel] [PATCH 0/5] multipath: Add a group_by_tgp path grouping policy Benjamin Marzinski
2023-05-19 23:02 ` [dm-devel] [PATCH 1/5] libmultipath: add group_by_tpg path_grouping_policy Benjamin Marzinski
2023-05-31 15:19 ` Martin Wilck
2023-06-01 17:47 ` Benjamin Marzinski
2023-05-19 23:02 ` [dm-devel] [PATCH 2/5] libmultipath: don't copy pgpolicy string in get_pgpolicy_name Benjamin Marzinski
2023-05-31 15:19 ` Martin Wilck
2023-05-19 23:02 ` Benjamin Marzinski [this message]
2023-05-31 15:21 ` [dm-devel] [PATCH 3/5] libmultipath: add ALUA tpg path wildcard Martin Wilck
2023-05-19 23:02 ` [dm-devel] [PATCH 4/5] multipath-tools tests: add tests for group_by_tpg policy Benjamin Marzinski
2023-05-31 15:30 ` Martin Wilck
2023-06-01 17:51 ` Benjamin Marzinski
2023-06-02 8:49 ` Martin Wilck
2023-05-19 23:02 ` [dm-devel] [PATCH 5/5] libmultipath: add "detect_pgpolicy" config option Benjamin Marzinski
2023-05-31 15:44 ` Martin Wilck
2023-06-01 18:17 ` Benjamin Marzinski
2023-06-02 16:16 ` Martin Wilck
2023-06-05 14:14 ` Benjamin Marzinski
2023-05-31 15:45 ` [dm-devel] [PATCH 0/5] multipath: Add a group_by_tgp path grouping policy Martin Wilck
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1684537332-23033-4-git-send-email-bmarzins@redhat.com \
--to=bmarzins@redhat.com \
--cc=Martin.Wilck@suse.com \
--cc=christophe.varoqui@opensvc.com \
--cc=dm-devel@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).