54 lines
1.3 KiB
Diff
54 lines
1.3 KiB
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: Benjamin Marzinski <bmarzins@redhat.com>
|
||
|
Date: Fri, 2 Feb 2018 15:04:01 -0600
|
||
|
Subject: [PATCH] multipathd: remove unused configure parameter
|
||
|
|
||
|
configure() is always called with start_waiters=1, so there is no point
|
||
|
in having the parameter. Remove it.
|
||
|
|
||
|
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
|
||
|
---
|
||
|
multipathd/main.c | 12 +++++-------
|
||
|
1 file changed, 5 insertions(+), 7 deletions(-)
|
||
|
|
||
|
diff --git a/multipathd/main.c b/multipathd/main.c
|
||
|
index dbf9890..51e0f5e 100644
|
||
|
--- a/multipathd/main.c
|
||
|
+++ b/multipathd/main.c
|
||
|
@@ -1955,7 +1955,7 @@ checkerloop (void *ap)
|
||
|
}
|
||
|
|
||
|
int
|
||
|
-configure (struct vectors * vecs, int start_waiters)
|
||
|
+configure (struct vectors * vecs)
|
||
|
{
|
||
|
struct multipath * mpp;
|
||
|
struct path * pp;
|
||
|
@@ -2054,11 +2054,9 @@ configure (struct vectors * vecs, int start_waiters)
|
||
|
i--;
|
||
|
continue;
|
||
|
}
|
||
|
- if (start_waiters) {
|
||
|
- if (start_waiter_thread(mpp, vecs)) {
|
||
|
- remove_map(mpp, vecs, 1);
|
||
|
- i--;
|
||
|
- }
|
||
|
+ if (start_waiter_thread(mpp, vecs)) {
|
||
|
+ remove_map(mpp, vecs, 1);
|
||
|
+ i--;
|
||
|
}
|
||
|
}
|
||
|
return 0;
|
||
|
@@ -2125,7 +2123,7 @@ reconfigure (struct vectors * vecs)
|
||
|
rcu_assign_pointer(multipath_conf, conf);
|
||
|
call_rcu(&old->rcu, rcu_free_config);
|
||
|
|
||
|
- configure(vecs, 1);
|
||
|
+ configure(vecs);
|
||
|
|
||
|
|
||
|
return 0;
|
||
|
--
|
||
|
2.7.4
|
||
|
|