All of lore.kernel.org
 help / color / mirror / Atom feed
From: Martin Wilck <Martin.Wilck@suse.com>
To: Christophe Varoqui <christophe.varoqui@opensvc.com>,
	Benjamin Marzinski <bmarzins@redhat.com>
Cc: "dm-devel@redhat.com" <dm-devel@redhat.com>,
	Martin Wilck <Martin.Wilck@suse.com>
Subject: [PATCH 21/72] libmultipath: process_config_dir(): remove unused argument
Date: Sat, 12 Oct 2019 21:28:03 +0000	[thread overview]
Message-ID: <20191012212703.12989-22-martin.wilck@suse.com> (raw)
In-Reply-To: <20191012212703.12989-1-martin.wilck@suse.com>

From: Martin Wilck <mwilck@suse.com>

Signed-off-by: Martin Wilck <mwilck@suse.com>
---
 libmultipath/config.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libmultipath/config.c b/libmultipath/config.c
index 20e3b8bf..49723add 100644
--- a/libmultipath/config.c
+++ b/libmultipath/config.c
@@ -644,7 +644,7 @@ free_config (struct config * conf)
 /* if multipath fails to process the config directory, it should continue,
  * with just a warning message */
 static void
-process_config_dir(struct config *conf, vector keywords, char *dir)
+process_config_dir(struct config *conf, char *dir)
 {
 	struct dirent **namelist;
 	struct scandir_result sr;
@@ -749,7 +749,7 @@ load_config (char * file)
 	if (conf->config_dir == NULL)
 		conf->config_dir = set_default(DEFAULT_CONFIG_DIR);
 	if (conf->config_dir && conf->config_dir[0] != '\0')
-		process_config_dir(conf, conf->keywords, conf->config_dir);
+		process_config_dir(conf, conf->config_dir);
 
 	/*
 	 * fill the voids left in the config file
-- 
2.23.0

  parent reply	other threads:[~2019-10-12 21:28 UTC|newest]

Thread overview: 85+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-12 21:27 [PATCH 00/72] multipath-tools: cleanup and warning enablement Martin Wilck
2019-10-12 21:27 ` [PATCH 01/72] multipath tests: move condlog test wrappers to separate file Martin Wilck
2019-10-12 21:27 ` [PATCH 02/72] multipath tests: add tests for alias handling Martin Wilck
2019-10-12 21:27 ` [PATCH 03/72] libmultipath: alias.c: constify function arguments Martin Wilck
2019-10-12 21:27 ` [PATCH 04/72] libmultipath: alias.c: use strlcpy(), and 2 minor fixes Martin Wilck
2019-10-12 21:27 ` [PATCH 05/72] libmultipath: format_devname: avoid buffer overflow Martin Wilck
2019-10-12 21:27 ` [PATCH 06/72] libmultipath: scan_devname: fix int overflow detection Martin Wilck
2019-10-12 21:27 ` [PATCH 07/72] libmultipath: lookup_binding(): don't rely on int overflow Martin Wilck
2019-10-12 21:27 ` [PATCH 08/72] libmultipath: rlookup_binding(): removed unused parameter Martin Wilck
2019-10-12 21:27 ` [PATCH 09/72] libmultipath: allocate_binding(): error out for id=0 Martin Wilck
2019-10-12 21:27 ` [PATCH 10/72] libmultipath: allocate_binding(): detect line overflow Martin Wilck
2019-10-12 21:27 ` [PATCH 11/72] multipath tests: alias: add tests for allocate_binding() Martin Wilck
2019-10-12 21:27 ` [PATCH 12/72] multipath tests: alias: add format/scan test Martin Wilck
2019-10-12 21:27 ` [PATCH 13/72] libmultipath: alias.c: prepare for cancel-safe allocation Martin Wilck
2019-10-30 14:47   ` Benjamin Marzinski
2019-10-12 21:27 ` [PATCH 14/72] multipath tests: use -lpthread for alias test Martin Wilck
2019-10-12 21:27 ` [PATCH 15/72] libmultipath: path_discovery: handle libudev errors Martin Wilck
2019-10-12 21:27 ` [PATCH 16/72] libmultipath: make path_discovery() pthread_cancel()-safe Martin Wilck
2019-10-30 14:53   ` Benjamin Marzinski
2019-11-04  8:29     ` Martin Wilck
2019-11-06 20:51       ` Benjamin Marzinski
2019-10-12 21:27 ` [PATCH 17/72] libmultipath: uevent_listen(): fix poll() retval check Martin Wilck
2019-10-12 21:27 ` [PATCH 18/72] libmultipath: replace_wwids(): fix possible fd leak Martin Wilck
2019-10-12 21:28 ` [PATCH 19/72] libmultipath: remove_wwids(): fix possible leaks Martin Wilck
2019-10-12 21:28 ` [PATCH 20/72] libmultipath: _init_foreign(): fix possible memory leak Martin Wilck
2019-10-12 21:28 ` Martin Wilck [this message]
2019-10-12 21:28 ` [PATCH 22/72] libmultipath: mark unused arguments in partmap functions Martin Wilck
2019-10-12 21:28 ` [PATCH 23/72] libmultipath: scsi_ioctl_pathinfo(): remove unused argument Martin Wilck
2019-10-12 21:28 ` [PATCH 24/72] multipath-tools: mark unused params in signal and cleanup handlers Martin Wilck
2019-10-12 21:28 ` [PATCH 25/72] libmultipath: get_ana_info(): remove unused parameter Martin Wilck
2019-10-12 21:28 ` [PATCH 26/72] libmultipath: mark unused params in getprio() methods Martin Wilck
2019-10-12 21:28 ` [PATCH 27/72] libmultipath: hp_sw: remove usused argument in do_inq() Martin Wilck
2019-10-12 21:28 ` [PATCH 28/72] libmultipath: checkers: mark unused arguments in methods Martin Wilck
2019-10-12 21:28 ` [PATCH 29/72] multipathd: stop_waiter_thread(): removed unused parameter Martin Wilck
2019-10-12 21:28 ` [PATCH 30/72] multipath tools: mark unused arguments in thread routines Martin Wilck
2019-10-12 21:28 ` [PATCH 31/72] kpartx: gpt: remove unused arg in read_lastoddsector() Martin Wilck
2019-10-12 21:28 ` [PATCH 32/72] kpartx: mark unused arguments in ptreader methods Martin Wilck
2019-10-12 21:28 ` [PATCH 33/72] libmultipath: mark missing arguments in functions matching prototypes Martin Wilck
2019-10-12 21:28 ` [PATCH 34/72] libmultipath: get_pgpolicy_name(): use "len" parameter Martin Wilck
2019-10-12 21:28 ` [PATCH 35/72] libmultipath: snprint_multipath_map_json(): remove unused argument Martin Wilck
2019-10-12 21:28 ` [PATCH 36/72] multipath: delegate_to_multipathd: mark unused arguments Martin Wilck
2019-10-12 21:28 ` [PATCH 37/72] libmultipath: use -Wno-unused-parameter for dict.c Martin Wilck
2019-10-12 21:28 ` [PATCH 38/72] multipathd: use -Wno-unused-parameter for cli_handlers.c Martin Wilck
2019-10-12 21:28 ` [PATCH 39/72] libmpathpersist: remove unused "noisy" argument in various functions Martin Wilck
2019-10-12 21:28 ` [PATCH 40/72] libmpathpersist: fix copy-paste error in mpath_format_readresv() Martin Wilck
2019-10-12 21:28 ` [PATCH 41/72] multipath-tools tests: add -Wno-unused-parameter Martin Wilck
2019-10-12 23:01   ` Bart Van Assche
2019-10-12 21:28 ` [PATCH 42/72] multipath-tools: Makefile.inc: remove -Wno-unused-parameter Martin Wilck
2019-10-12 21:28 ` [PATCH 43/72] libmultipath: dev_loss_tmo is unsigned Martin Wilck
2019-10-12 21:28 ` [PATCH 44/72] libmultipath: trivial changes for -Wsign-compare Martin Wilck
2019-10-12 21:28 ` [PATCH 45/72] libmultipath: fix -Wsign-compare warnings with snprintf() Martin Wilck
2019-10-12 22:59   ` Bart Van Assche
2019-10-22 16:07     ` Martin Wilck
2019-10-22 16:47       ` Bart Van Assche
2019-10-22 20:34         ` Martin Wilck
2019-10-22 21:32           ` Bart Van Assche
2019-10-23  9:11             ` Martin Wilck
2019-10-12 21:28 ` [PATCH 46/72] libmultipath: parse_vpd_pg83(): sanitize indentation Martin Wilck
2019-10-12 21:28 ` [PATCH 47/72] libmultipath: parse_vpd_pg83(): fix -Wsign-compare warnings Martin Wilck
2019-10-12 21:28 ` [PATCH 48/72] libmultipath: print: use unsigned int for "width" field Martin Wilck
2019-10-12 21:28 ` [PATCH 49/72] libmultipath: vector_for_each_slot: fix -Wsign-compare warnings Martin Wilck
2019-10-12 21:28 ` [PATCH 50/72] libmultipath: set_int(): add error check and set_uint() Martin Wilck
2019-10-12 21:28 ` [PATCH 51/72] libmultipath: make "checkint" unsigned Martin Wilck
2019-10-12 21:28 ` [PATCH 52/72] libmultipath: use unsigned blksize in directio context Martin Wilck
2019-10-12 21:28 ` [PATCH 53/72] libmultipath, kpartx: byteorder: always use unsigned types Martin Wilck
2019-10-12 21:28 ` [PATCH 54/72] libmpathcmd: fix -Wsign-compare warnings Martin Wilck
2019-10-12 21:28 ` [PATCH 55/72] libmpathpersist: " Martin Wilck
2019-10-12 21:28 ` [PATCH 56/72] kpartx: use unsigned arguments in dm_devn() and dm_prereq() Martin Wilck
2019-10-12 21:28 ` [PATCH 57/72] kpartx: use unsigned int for "ns" argument of ptreader Martin Wilck
2019-10-12 21:28 ` [PATCH 58/72] multipath-tools: Makefile.inc: enable -Wsign-compare Martin Wilck
2019-10-12 21:28 ` [PATCH 59/72] libdmmp: fix clang -Wformat-nonliteral warnings Martin Wilck
2019-10-12 21:28 ` [PATCH 60/72] libmultipath: fix clang -Wformat-literal warnings Martin Wilck
2019-10-12 21:28 ` [PATCH 61/72] multipath tests: blacklist: remove always-true condition Martin Wilck
2019-10-12 21:28 ` [PATCH 62/72] multipath tests: hwtable: fix strncat() invocation Martin Wilck
2019-10-12 21:28 ` [PATCH 63/72] multipath tests: fix -Wformat-literal warning Martin Wilck
2019-10-12 21:28 ` [PATCH 64/72] multipath tests: util: fix clang strlcpy warnings Martin Wilck
2019-10-12 21:28 ` [PATCH 65/72] libmultipath: nvme: update to nvme-cli v1.9 Martin Wilck
2019-10-12 21:28 ` [PATCH 66/72] multipath-tools: Makefile.inc: fix TEST_CC_OPTION Martin Wilck
2019-10-12 21:29 ` [PATCH 67/72] multipath-tools: Makefile.inc: use -Wp, ... for compiling only Martin Wilck
2019-10-30 14:55   ` Benjamin Marzinski
2019-10-12 21:29 ` [PATCH 68/72] multipath-tools: Makefile: use proper directory recursion Martin Wilck
2019-10-12 21:29 ` [PATCH 69/72] multipath tests: Makefile: fix "clean" target Martin Wilck
2019-10-12 21:29 ` [PATCH 70/72] multipath tests: Makefile: avoid gcc 4.8 missing initializers failure Martin Wilck
2019-10-12 21:29 ` [PATCH 71/72] multipath-tools: Makefile.inc: enable -Werror Martin Wilck
2019-10-12 21:29 ` [PATCH 72/72] multipath-tools: Makefile.inc: test for -Wno-clobbered support 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=20191012212703.12989-22-martin.wilck@suse.com \
    --to=martin.wilck@suse.com \
    --cc=bmarzins@redhat.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.