From: Benjamin Marzinski <bmarzins@redhat.com>
To: mwilck@suse.com
Cc: dm-devel@redhat.com
Subject: Re: [dm-devel] [PATCH 08/21] multipath-tools test: consistent use of macros in alias test
Date: Wed, 6 Sep 2023 17:43:42 -0500 [thread overview]
Message-ID: <20230906224342.GS7412@octiron.msp.redhat.com> (raw)
In-Reply-To: <20230901180235.23980-9-mwilck@suse.com>
On Fri, Sep 01, 2023 at 08:02:21PM +0200, mwilck@suse.com wrote:
> From: Martin Wilck <mwilck@suse.com>
>
> Used the macros introduced with the tests for get_user_friendly_alias()
> also in the previously existing tests.
>
Reviewed-by: Benjamin Marzinski <bmarzins@redhat.com>
> Signed-off-by: Martin Wilck <mwilck@suse.com>
> ---
> tests/alias.c | 80 ++++++++++++++++++++++++---------------------------
> 1 file changed, 38 insertions(+), 42 deletions(-)
>
> diff --git a/tests/alias.c b/tests/alias.c
> index e2372d1..1c9903c 100644
> --- a/tests/alias.c
> +++ b/tests/alias.c
> @@ -490,7 +490,7 @@ static void lb_empty(void **state)
> char *alias;
>
> will_return(__wrap_fgets, NULL);
> - expect_condlog(3, "No matching wwid [WWID0] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID0"));
> rc = lookup_binding(NULL, "WWID0", &alias, NULL, 0);
> assert_int_equal(rc, 1);
> assert_ptr_equal(alias, NULL);
> @@ -503,7 +503,7 @@ static void lb_empty_unused(void **state)
>
> will_return(__wrap_fgets, NULL);
> mock_unused_alias("MPATHa");
> - expect_condlog(3, "No matching wwid [WWID0] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID0"));
> rc = lookup_binding(NULL, "WWID0", &alias, "MPATH", 1);
> assert_int_equal(rc, 1);
> assert_ptr_equal(alias, NULL);
> @@ -518,7 +518,7 @@ static void lb_empty_failed(void **state)
> will_return(__wrap_fgets, NULL);
> mock_failed_alias("MPATHa", USED_STR("MPATHa", "WWID0"));
> mock_unused_alias("MPATHb");
> - expect_condlog(3, "No matching wwid [WWID0] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID0"));
> rc = lookup_binding(NULL, "WWID0", &alias, "MPATH", 1);
> assert_int_equal(rc, 2);
> assert_ptr_equal(alias, NULL);
> @@ -533,7 +533,7 @@ static void lb_empty_1_used(void **state)
> will_return(__wrap_fgets, NULL);
> mock_used_alias("MPATHa", USED_STR("MPATHa", "WWID0"));
> mock_unused_alias("MPATHb");
> - expect_condlog(3, "No matching wwid [WWID0] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID0"));
> rc = lookup_binding(NULL, "WWID0", &alias, "MPATH", 1);
> assert_int_equal(rc, 2);
> assert_ptr_equal(alias, NULL);
> @@ -548,7 +548,7 @@ static void lb_empty_1_used_self(void **state)
> will_return(__wrap_fgets, NULL);
> mock_used_alias("MPATHa", USED_STR("MPATHa", "WWID0"));
> mock_self_alias("MPATHb", "WWID0");
> - expect_condlog(3, "No matching wwid [WWID0] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID0"));
> rc = lookup_binding(NULL, "WWID0", &alias, "MPATH", 1);
> assert_int_equal(rc, 2);
> assert_ptr_equal(alias, NULL);
> @@ -561,8 +561,7 @@ static void lb_match_a(void **state)
> char *alias;
>
> will_return(__wrap_fgets, "MPATHa WWID0\n");
> - expect_condlog(3, "Found matching wwid [WWID0] in bindings file."
> - " Setting alias to MPATHa\n");
> + expect_condlog(3, FOUND_STR("MPATHa", "WWID0"));
> rc = lookup_binding(NULL, "WWID0", &alias, "MPATH", 0);
> assert_int_equal(rc, 0);
> assert_ptr_not_equal(alias, NULL);
> @@ -577,7 +576,7 @@ static void lb_nomatch_a(void **state)
>
> will_return(__wrap_fgets, "MPATHa WWID0\n");
> will_return(__wrap_fgets, NULL);
> - expect_condlog(3, "No matching wwid [WWID1] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID1"));
> rc = lookup_binding(NULL, "WWID1", &alias, "MPATH", 0);
> assert_int_equal(rc, 2);
> assert_ptr_equal(alias, NULL);
> @@ -590,7 +589,7 @@ static void lb_nomatch_a_bad_check(void **state)
>
> will_return(__wrap_fgets, "MPATHa WWID0\n");
> will_return(__wrap_fgets, NULL);
> - expect_condlog(0, "no more available user_friendly_names\n");
> + expect_condlog(0, NOMORE_STR);
> rc = lookup_binding(NULL, "WWID1", &alias, NULL, 1);
> assert_int_equal(rc, -1);
> assert_ptr_equal(alias, NULL);
> @@ -604,7 +603,7 @@ static void lb_nomatch_a_unused(void **state)
> will_return(__wrap_fgets, "MPATHa WWID0\n");
> will_return(__wrap_fgets, NULL);
> mock_unused_alias("MPATHb");
> - expect_condlog(3, "No matching wwid [WWID1] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID1"));
> rc = lookup_binding(NULL, "WWID1", &alias, "MPATH", 1);
> assert_int_equal(rc, 2);
> assert_ptr_equal(alias, NULL);
> @@ -622,7 +621,7 @@ static void lb_nomatch_a_3_used_failed_self(void **state)
> mock_used_alias("MPATHd", USED_STR("MPATHd", "WWID1"));
> mock_failed_alias("MPATHe", USED_STR("MPATHe", "WWID1"));
> mock_self_alias("MPATHf", "WWID1");
> - expect_condlog(3, "No matching wwid [WWID1] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID1"));
> rc = lookup_binding(NULL, "WWID1", &alias, "MPATH", 1);
> assert_int_equal(rc, 6);
> assert_ptr_equal(alias, NULL);
> @@ -635,8 +634,7 @@ static void do_lb_match_c(void **state, int check_if_taken)
>
> will_return(__wrap_fgets, "MPATHa WWID0\n");
> will_return(__wrap_fgets, "MPATHc WWID1\n");
> - expect_condlog(3, "Found matching wwid [WWID1] in bindings file."
> - " Setting alias to MPATHc\n");
> + expect_condlog(3, FOUND_STR("MPATHc", "WWID1"));
> rc = lookup_binding(NULL, "WWID1", &alias, "MPATH", check_if_taken);
> assert_int_equal(rc, 0);
> assert_ptr_not_equal(alias, NULL);
> @@ -662,7 +660,7 @@ static void lb_nomatch_a_c(void **state)
> will_return(__wrap_fgets, "MPATHa WWID0\n");
> will_return(__wrap_fgets, "MPATHc WWID1\n");
> will_return(__wrap_fgets, NULL);
> - expect_condlog(3, "No matching wwid [WWID2] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID2"));
> rc = lookup_binding(NULL, "WWID2", &alias, "MPATH", 0);
> assert_int_equal(rc, 2);
> assert_ptr_equal(alias, NULL);
> @@ -677,7 +675,7 @@ static void lb_nomatch_a_d_unused(void **state)
> will_return(__wrap_fgets, "MPATHd WWID1\n");
> will_return(__wrap_fgets, NULL);
> mock_unused_alias("MPATHb");
> - expect_condlog(3, "No matching wwid [WWID2] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID2"));
> rc = lookup_binding(NULL, "WWID2", &alias, "MPATH", 1);
> assert_int_equal(rc, 2);
> assert_ptr_equal(alias, NULL);
> @@ -693,7 +691,7 @@ static void lb_nomatch_a_d_1_used(void **state)
> will_return(__wrap_fgets, NULL);
> mock_used_alias("MPATHb", USED_STR("MPATHb", "WWID2"));
> mock_unused_alias("MPATHc");
> - expect_condlog(3, "No matching wwid [WWID2] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID2"));
> rc = lookup_binding(NULL, "WWID2", &alias, "MPATH", 1);
> assert_int_equal(rc, 3);
> assert_ptr_equal(alias, NULL);
> @@ -710,7 +708,7 @@ static void lb_nomatch_a_d_2_used(void **state)
> mock_used_alias("MPATHb", USED_STR("MPATHb", "WWID2"));
> mock_used_alias("MPATHc", USED_STR("MPATHc", "WWID2"));
> mock_unused_alias("MPATHe");
> - expect_condlog(3, "No matching wwid [WWID2] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID2"));
> rc = lookup_binding(NULL, "WWID2", &alias, "MPATH", 1);
> assert_int_equal(rc, 5);
> assert_ptr_equal(alias, NULL);
> @@ -728,7 +726,7 @@ static void lb_nomatch_a_d_3_used(void **state)
> mock_used_alias("MPATHc", USED_STR("MPATHc", "WWID2"));
> mock_used_alias("MPATHe", USED_STR("MPATHe", "WWID2"));
> mock_unused_alias("MPATHf");
> - expect_condlog(3, "No matching wwid [WWID2] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID2"));
> rc = lookup_binding(NULL, "WWID2", &alias, "MPATH", 1);
> assert_int_equal(rc, 6);
> assert_ptr_equal(alias, NULL);
> @@ -742,7 +740,7 @@ static void lb_nomatch_c_a(void **state)
> will_return(__wrap_fgets, "MPATHc WWID1\n");
> will_return(__wrap_fgets, "MPATHa WWID0\n");
> will_return(__wrap_fgets, NULL);
> - expect_condlog(3, "No matching wwid [WWID2] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID2"));
> rc = lookup_binding(NULL, "WWID2", &alias, "MPATH", 0);
> assert_int_equal(rc, 2);
> assert_ptr_equal(alias, NULL);
> @@ -758,7 +756,7 @@ static void lb_nomatch_d_a_unused(void **state)
> will_return(__wrap_fgets, "MPATHd WWID0\n");
> will_return(__wrap_fgets, NULL);
> mock_unused_alias("MPATHb");
> - expect_condlog(3, "No matching wwid [WWID2] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID2"));
> rc = lookup_binding(NULL, "WWID2", &alias, "MPATH", 1);
> assert_int_equal(rc, 2);
> assert_ptr_equal(alias, NULL);
> @@ -775,7 +773,7 @@ static void lb_nomatch_d_a_1_used(void **state)
> will_return(__wrap_fgets, NULL);
> mock_used_alias("MPATHb", USED_STR("MPATHb", "WWID2"));
> mock_unused_alias("MPATHe");
> - expect_condlog(3, "No matching wwid [WWID2] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID2"));
> rc = lookup_binding(NULL, "WWID2", &alias, "MPATH", 1);
> assert_int_equal(rc, 5);
> assert_ptr_equal(alias, NULL);
> @@ -790,7 +788,7 @@ static void lb_nomatch_a_b(void **state)
> will_return(__wrap_fgets, "MPATHz WWID26\n");
> will_return(__wrap_fgets, "MPATHb WWID1\n");
> will_return(__wrap_fgets, NULL);
> - expect_condlog(3, "No matching wwid [WWID2] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID2"));
> rc = lookup_binding(NULL, "WWID2", &alias, "MPATH", 0);
> assert_int_equal(rc, 3);
> assert_ptr_equal(alias, NULL);
> @@ -806,7 +804,7 @@ static void lb_nomatch_a_b_bad(void **state)
> will_return(__wrap_fgets, "MPATHb\n");
> will_return(__wrap_fgets, NULL);
> expect_condlog(3, "Ignoring malformed line 3 in bindings file\n");
> - expect_condlog(3, "No matching wwid [WWID2] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID2"));
> rc = lookup_binding(NULL, "WWID2", &alias, "MPATH", 0);
> assert_int_equal(rc, 3);
> assert_ptr_equal(alias, NULL);
> @@ -823,7 +821,7 @@ static void lb_nomatch_a_b_bad_self(void **state)
> will_return(__wrap_fgets, NULL);
> expect_condlog(3, "Ignoring malformed line 3 in bindings file\n");
> mock_self_alias("MPATHc", "WWID2");
> - expect_condlog(3, "No matching wwid [WWID2] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID2"));
> rc = lookup_binding(NULL, "WWID2", &alias, "MPATH", 1);
> assert_int_equal(rc, 3);
> assert_ptr_equal(alias, NULL);
> @@ -838,7 +836,7 @@ static void lb_nomatch_b_a(void **state)
> will_return(__wrap_fgets, "MPATHz WWID26\n");
> will_return(__wrap_fgets, "MPATHa WWID0\n");
> will_return(__wrap_fgets, NULL);
> - expect_condlog(3, "No matching wwid [WWID2] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID2"));
> rc = lookup_binding(NULL, "WWID2", &alias, "MPATH", 0);
> assert_int_equal(rc, 27);
> assert_ptr_equal(alias, NULL);
> @@ -857,7 +855,7 @@ static void lb_nomatch_b_a_3_used(void **state)
> mock_used_alias("MPATHab", USED_STR("MPATHab", "WWID2"));
> mock_used_alias("MPATHac", USED_STR("MPATHac", "WWID2"));
> mock_unused_alias("MPATHad");
> - expect_condlog(3, "No matching wwid [WWID2] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID2"));
> rc = lookup_binding(NULL, "WWID2", &alias, "MPATH", 1);
> assert_int_equal(rc, 30);
> assert_ptr_equal(alias, NULL);
> @@ -873,7 +871,7 @@ static void do_lb_nomatch_int_max(void **state, int check_if_taken)
> will_return(__wrap_fgets, "MPATH" MPATH_ID_INT_MAX " WWIDMAX\n");
> will_return(__wrap_fgets, "MPATHa WWID0\n");
> will_return(__wrap_fgets, NULL);
> - expect_condlog(0, "no more available user_friendly_names\n");
> + expect_condlog(0, NOMORE_STR);
> rc = lookup_binding(NULL, "WWID2", &alias, "MPATH", check_if_taken);
> assert_int_equal(rc, -1);
> assert_ptr_equal(alias, NULL);
> @@ -898,7 +896,7 @@ static void lb_nomatch_int_max_used(void **state)
> will_return(__wrap_fgets, "MPATH" MPATH_ID_INT_MAX " WWIDMAX\n");
> will_return(__wrap_fgets, NULL);
> mock_used_alias("MPATHa", USED_STR("MPATHa", "WWID2"));
> - expect_condlog(0, "no more available user_friendly_names\n");
> + expect_condlog(0, NOMORE_STR);
> rc = lookup_binding(NULL, "WWID2", &alias, "MPATH", 1);
> assert_int_equal(rc, -1);
> assert_ptr_equal(alias, NULL);
> @@ -913,7 +911,7 @@ static void lb_nomatch_int_max_m1(void **state)
> will_return(__wrap_fgets, "MPATH" MPATH_ID_INT_MAX_m1 " WWIDMAX\n");
> will_return(__wrap_fgets, "MPATHa WWID0\n");
> will_return(__wrap_fgets, NULL);
> - expect_condlog(3, "No matching wwid [WWID2] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID2"));
> rc = lookup_binding(NULL, "WWID2", &alias, "MPATH", 0);
> assert_int_equal(rc, INT_MAX);
> assert_ptr_equal(alias, NULL);
> @@ -929,7 +927,7 @@ static void lb_nomatch_int_max_m1_used(void **state)
> will_return(__wrap_fgets, "MPATHa WWID0\n");
> will_return(__wrap_fgets, NULL);
> mock_used_alias("MPATH" MPATH_ID_INT_MAX, USED_STR("MPATH" MPATH_ID_INT_MAX, "WWID2"));
> - expect_condlog(0, "no more available user_friendly_names\n");
> + expect_condlog(0, NOMORE_STR);
> rc = lookup_binding(NULL, "WWID2", &alias, "MPATH", 1);
> assert_int_equal(rc, -1);
> assert_ptr_equal(alias, NULL);
> @@ -945,7 +943,7 @@ static void lb_nomatch_int_max_m1_1_used(void **state)
> will_return(__wrap_fgets, NULL);
> mock_used_alias("MPATHa", USED_STR("MPATHa", "WWID2"));
> mock_unused_alias("MPATH" MPATH_ID_INT_MAX);
> - expect_condlog(3, "No matching wwid [WWID2] in bindings file.\n");
> + expect_condlog(3, NOMATCH_WWID_STR("WWID2"));
> rc = lookup_binding(NULL, "WWID2", &alias, "MPATH", 1);
> assert_int_equal(rc, INT_MAX);
> assert_ptr_equal(alias, NULL);
> @@ -961,7 +959,7 @@ static void lb_nomatch_int_max_m1_2_used(void **state)
> will_return(__wrap_fgets, NULL);
> mock_used_alias("MPATHa", USED_STR("MPATHa", "WWID2"));
> mock_used_alias("MPATH" MPATH_ID_INT_MAX, USED_STR("MPATH" MPATH_ID_INT_MAX, "WWID2"));
> - expect_condlog(0, "no more available user_friendly_names\n");
> + expect_condlog(0, NOMORE_STR);
> rc = lookup_binding(NULL, "WWID2", &alias, "MPATH", 1);
> assert_int_equal(rc, -1);
> assert_ptr_equal(alias, NULL);
> @@ -1017,7 +1015,7 @@ static void rl_empty(void **state)
>
> buf[0] = '\0';
> will_return(__wrap_fgets, NULL);
> - expect_condlog(3, "No matching alias [MPATHa] in bindings file.\n");
> + expect_condlog(3, NOMATCH_STR("MPATHa"));
> rc = rlookup_binding(NULL, buf, "MPATHa");
> assert_int_equal(rc, -1);
> assert_string_equal(buf, "");
> @@ -1030,8 +1028,7 @@ static void rl_match_a(void **state)
>
> buf[0] = '\0';
> will_return(__wrap_fgets, "MPATHa WWID0\n");
> - expect_condlog(3, "Found matching alias [MPATHa] in bindings file. "
> - "Setting wwid to WWID0\n");
> + expect_condlog(3, FOUND_ALIAS_STR("MPATHa", "WWID0"));
> rc = rlookup_binding(NULL, buf, "MPATHa");
> assert_int_equal(rc, 0);
> assert_string_equal(buf, "WWID0");
> @@ -1045,7 +1042,7 @@ static void rl_nomatch_a(void **state)
> buf[0] = '\0';
> will_return(__wrap_fgets, "MPATHa WWID0\n");
> will_return(__wrap_fgets, NULL);
> - expect_condlog(3, "No matching alias [MPATHb] in bindings file.\n");
> + expect_condlog(3, NOMATCH_STR("MPATHb"));
> rc = rlookup_binding(NULL, buf, "MPATHb");
> assert_int_equal(rc, -1);
> assert_string_equal(buf, "");
> @@ -1060,7 +1057,7 @@ static void rl_malformed_a(void **state)
> will_return(__wrap_fgets, "MPATHa \n");
> will_return(__wrap_fgets, NULL);
> expect_condlog(3, "Ignoring malformed line 1 in bindings file\n");
> - expect_condlog(3, "No matching alias [MPATHa] in bindings file.\n");
> + expect_condlog(3, NOMATCH_STR("MPATHa"));
> rc = rlookup_binding(NULL, buf, "MPATHa");
> assert_int_equal(rc, -1);
> assert_string_equal(buf, "");
> @@ -1080,7 +1077,7 @@ static void rl_overlong_a(void **state)
> will_return(__wrap_fgets, line);
> will_return(__wrap_fgets, NULL);
> expect_condlog(3, "Ignoring too large wwid at 1 in bindings file\n");
> - expect_condlog(3, "No matching alias [MPATHa] in bindings file.\n");
> + expect_condlog(3, NOMATCH_STR("MPATHa"));
> rc = rlookup_binding(NULL, buf, "MPATHa");
> assert_int_equal(rc, -1);
> assert_string_equal(buf, "");
> @@ -1095,8 +1092,7 @@ static void rl_match_b(void **state)
> will_return(__wrap_fgets, "MPATHa WWID0\n");
> will_return(__wrap_fgets, "MPATHz WWID26\n");
> will_return(__wrap_fgets, "MPATHb WWID2\n");
> - expect_condlog(3, "Found matching alias [MPATHb] in bindings file. "
> - "Setting wwid to WWID2\n");
> + expect_condlog(3, FOUND_ALIAS_STR("MPATHb", "WWID2"));
> rc = rlookup_binding(NULL, buf, "MPATHb");
> assert_int_equal(rc, 0);
> assert_string_equal(buf, "WWID2");
> @@ -1125,7 +1121,7 @@ static void al_a(void **state)
> expect_value(__wrap_write, count, strlen(ln));
> expect_string(__wrap_write, buf, ln);
> will_return(__wrap_write, strlen(ln));
> - expect_condlog(3, "Created new binding [MPATHa] for WWID [WWIDa]\n");
> + expect_condlog(3, NEW_STR("MPATHa", "WWIDa"));
>
> alias = allocate_binding(0, "WWIDa", 1, "MPATH");
> assert_ptr_not_equal(alias, NULL);
> @@ -1142,7 +1138,7 @@ static void al_zz(void **state)
> expect_value(__wrap_write, count, strlen(ln));
> expect_string(__wrap_write, buf, ln);
> will_return(__wrap_write, strlen(ln));
> - expect_condlog(3, "Created new binding [MPATHzz] for WWID [WWIDzz]\n");
> + expect_condlog(3, NEW_STR("MPATHzz", "WWIDzz"));
>
> alias = allocate_binding(0, "WWIDzz", 26*26 + 26, "MPATH");
> assert_ptr_not_equal(alias, NULL);
> --
> 2.41.0
--
dm-devel mailing list
dm-devel@redhat.com
https://listman.redhat.com/mailman/listinfo/dm-devel
next prev parent reply other threads:[~2023-09-06 22:43 UTC|newest]
Thread overview: 55+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-01 18:02 [dm-devel] [PATCH 00/21] multipath-tools: user-friendly names rework mwilck
2023-09-01 18:02 ` [dm-devel] [PATCH 01/21] libmultipath: sysfs_set_scsi_tmo: do nothing for ACT_DRY_RUN mwilck
2023-09-06 22:42 ` Benjamin Marzinski
2023-09-01 18:02 ` [dm-devel] [PATCH 02/21] libmultipath: add alias_already_taken() mwilck
2023-09-06 22:42 ` Benjamin Marzinski
2023-09-01 18:02 ` [dm-devel] [PATCH 03/21] libmultipath: unify use_existing_alias() and get_user_friendly_alias() mwilck
2023-09-06 22:42 ` Benjamin Marzinski
2023-09-01 18:02 ` [dm-devel] [PATCH 04/21] libmultipath: never allocate an alias that's already taken mwilck
2023-09-06 22:42 ` Benjamin Marzinski
2023-09-07 7:24 ` Martin Wilck
2023-09-07 13:33 ` Martin Wilck
2023-09-07 14:22 ` Martin Wilck
2023-09-01 18:02 ` [dm-devel] [PATCH 05/21] libmultipath: lookup_binding: add comment about the algorithm mwilck
2023-09-06 22:43 ` Benjamin Marzinski
2023-09-07 8:22 ` Martin Wilck
2023-09-01 18:02 ` [dm-devel] [PATCH 06/21] multipath-tools test: simplify debugging for condlog mismatch mwilck
2023-09-06 22:43 ` Benjamin Marzinski
2023-09-01 18:02 ` [dm-devel] [PATCH 07/21] multipath-tools tests: add tests for get_user_friendly_alias() mwilck
2023-09-06 22:43 ` Benjamin Marzinski
2023-09-07 7:55 ` Martin Wilck
2023-09-01 18:02 ` [dm-devel] [PATCH 08/21] multipath-tools test: consistent use of macros in alias test mwilck
2023-09-06 22:43 ` Benjamin Marzinski [this message]
2023-09-01 18:02 ` [dm-devel] [PATCH 09/21] multipath-tools tests: convert mock_{failed, used}_alias to macros mwilck
2023-09-06 22:44 ` Benjamin Marzinski
2023-09-01 18:02 ` [dm-devel] [PATCH 10/21] multipath-tools test: use mock_bindings_file() consistently mwilck
2023-09-06 22:43 ` Benjamin Marzinski
2023-09-01 18:02 ` [dm-devel] [PATCH 11/21] libmultipath: add global variable for current bindings mwilck
2023-09-06 22:44 ` Benjamin Marzinski
2023-09-01 18:02 ` [dm-devel] [PATCH 12/21] libmultipath: rename fix_bindings_file() to update_bindings_file() mwilck
2023-09-06 22:44 ` Benjamin Marzinski
2023-09-01 18:02 ` [dm-devel] [PATCH 13/21] libmultipath: alias.c: move bindings related code up mwilck
2023-09-06 22:44 ` Benjamin Marzinski
2023-09-01 18:02 ` [dm-devel] [PATCH 14/21] libmultipath: update_bindings_file: take filename argument mwilck
2023-09-06 22:45 ` Benjamin Marzinski
2023-09-01 18:02 ` [dm-devel] [PATCH 15/21] libmultipath: update_bindings_file: use a single write() mwilck
2023-09-06 22:45 ` Benjamin Marzinski
2023-09-01 18:02 ` [dm-devel] [PATCH 16/21] libmultipath: update_bindings_file: don't log temp file name mwilck
2023-09-06 22:45 ` Benjamin Marzinski
2023-09-01 18:02 ` [dm-devel] [PATCH 17/21] libmultipath: alias.c: factor out read_binding() mwilck
2023-09-06 22:45 ` Benjamin Marzinski
2023-09-01 18:02 ` [dm-devel] [PATCH 18/21] libmultipath: keep bindings in memory mwilck
2023-09-06 22:47 ` Benjamin Marzinski
2023-09-07 10:30 ` Martin Wilck
2023-09-07 19:14 ` Benjamin Marzinski
2023-09-07 20:02 ` Benjamin Marzinski
2023-09-07 20:43 ` Martin Wilck
2023-09-08 17:22 ` Benjamin Marzinski
2023-09-11 6:25 ` Martin Wilck
2023-09-11 14:47 ` Benjamin Marzinski
2023-09-01 18:02 ` [dm-devel] [PATCH 19/21] multipath-tools tests: fix alias tests mwilck
2023-09-06 22:47 ` Benjamin Marzinski
2023-09-01 18:02 ` [dm-devel] [PATCH 20/21] libmultipath: dm_get_uuid(): return emtpy UUID for non-existing maps mwilck
2023-09-06 22:47 ` Benjamin Marzinski
2023-09-01 18:02 ` [dm-devel] [PATCH 21/21] libmultipath: adapt to new semantics of dm_get_uuid() mwilck
2023-09-06 22:47 ` Benjamin Marzinski
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=20230906224342.GS7412@octiron.msp.redhat.com \
--to=bmarzins@redhat.com \
--cc=dm-devel@redhat.com \
--cc=mwilck@suse.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