qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [RFC] module: removed unused function argument "mayfail"
@ 2022-09-05 15:55 Claudio Fontana
  2022-09-05 17:04 ` Richard Henderson
  2022-09-05 20:55 ` Philippe Mathieu-Daudé via
  0 siblings, 2 replies; 4+ messages in thread
From: Claudio Fontana @ 2022-09-05 15:55 UTC (permalink / raw)
  To: Paolo Bonzini, Richard Henderson
  Cc: qemu-devel, dinechin, Gerd Hoffmann, Marc-André Lureau,
	Daniel P . Berrangé, Philippe Mathieu-Daudé,
	Claudio Fontana

mayfail is always passed as false for every invocation throughout the program.
It controls whether to printf or not to printf an error on
g_module_open failure.

Remove this unused argument.

Signed-off-by: Claudio Fontana <cfontana@suse.de>
---
 include/qemu/module.h |  8 ++++----
 softmmu/qtest.c       |  2 +-
 util/module.c         | 20 +++++++++-----------
 3 files changed, 14 insertions(+), 16 deletions(-)

diff --git a/include/qemu/module.h b/include/qemu/module.h
index bd73607104..8c012bbe03 100644
--- a/include/qemu/module.h
+++ b/include/qemu/module.h
@@ -61,15 +61,15 @@ typedef enum {
 #define fuzz_target_init(function) module_init(function, \
                                                MODULE_INIT_FUZZ_TARGET)
 #define migration_init(function) module_init(function, MODULE_INIT_MIGRATION)
-#define block_module_load_one(lib) module_load_one("block-", lib, false)
-#define ui_module_load_one(lib) module_load_one("ui-", lib, false)
-#define audio_module_load_one(lib) module_load_one("audio-", lib, false)
+#define block_module_load_one(lib) module_load_one("block-", lib)
+#define ui_module_load_one(lib) module_load_one("ui-", lib)
+#define audio_module_load_one(lib) module_load_one("audio-", lib)
 
 void register_module_init(void (*fn)(void), module_init_type type);
 void register_dso_module_init(void (*fn)(void), module_init_type type);
 
 void module_call_init(module_init_type type);
-bool module_load_one(const char *prefix, const char *lib_name, bool mayfail);
+bool module_load_one(const char *prefix, const char *lib_name);
 void module_load_qom_one(const char *type);
 void module_load_qom_all(void);
 void module_allow_arch(const char *arch);
diff --git a/softmmu/qtest.c b/softmmu/qtest.c
index f8acef2628..76eb7bac56 100644
--- a/softmmu/qtest.c
+++ b/softmmu/qtest.c
@@ -756,7 +756,7 @@ static void qtest_process_command(CharBackend *chr, gchar **words)
         g_assert(words[1] && words[2]);
 
         qtest_send_prefix(chr);
-        if (module_load_one(words[1], words[2], false)) {
+        if (module_load_one(words[1], words[2])) {
             qtest_sendf(chr, "OK\n");
         } else {
             qtest_sendf(chr, "FAIL\n");
diff --git a/util/module.c b/util/module.c
index 8ddb0e18f5..8563edd626 100644
--- a/util/module.c
+++ b/util/module.c
@@ -144,7 +144,7 @@ static bool module_check_arch(const QemuModinfo *modinfo)
     return true;
 }
 
-static int module_load_file(const char *fname, bool mayfail, bool export_symbols)
+static int module_load_file(const char *fname, bool export_symbols)
 {
     GModule *g_module;
     void (*sym)(void);
@@ -172,10 +172,8 @@ static int module_load_file(const char *fname, bool mayfail, bool export_symbols
     }
     g_module = g_module_open(fname, flags);
     if (!g_module) {
-        if (!mayfail) {
-            fprintf(stderr, "Failed to open module: %s\n",
-                    g_module_error());
-        }
+        fprintf(stderr, "Failed to open module: %s\n",
+                g_module_error());
         ret = -EINVAL;
         goto out;
     }
@@ -208,7 +206,7 @@ out:
 }
 #endif
 
-bool module_load_one(const char *prefix, const char *lib_name, bool mayfail)
+bool module_load_one(const char *prefix, const char *lib_name)
 {
     bool success = false;
 
@@ -256,7 +254,7 @@ bool module_load_one(const char *prefix, const char *lib_name, bool mayfail)
             if (strcmp(modinfo->name, module_name) == 0) {
                 /* we depend on other module(s) */
                 for (sl = modinfo->deps; *sl != NULL; sl++) {
-                    module_load_one("", *sl, false);
+                    module_load_one("", *sl);
                 }
             } else {
                 for (sl = modinfo->deps; *sl != NULL; sl++) {
@@ -287,7 +285,7 @@ bool module_load_one(const char *prefix, const char *lib_name, bool mayfail)
     for (i = 0; i < n_dirs; i++) {
         fname = g_strdup_printf("%s/%s%s",
                 dirs[i], module_name, CONFIG_HOST_DSOSUF);
-        ret = module_load_file(fname, mayfail, export_symbols);
+        ret = module_load_file(fname, export_symbols);
         g_free(fname);
         fname = NULL;
         /* Try loading until loaded a module file */
@@ -333,7 +331,7 @@ void module_load_qom_one(const char *type)
         }
         for (sl = modinfo->objs; *sl != NULL; sl++) {
             if (strcmp(type, *sl) == 0) {
-                module_load_one("", modinfo->name, false);
+                module_load_one("", modinfo->name);
             }
         }
     }
@@ -354,7 +352,7 @@ void module_load_qom_all(void)
         if (!module_check_arch(modinfo)) {
             continue;
         }
-        module_load_one("", modinfo->name, false);
+        module_load_one("", modinfo->name);
     }
     module_loaded_qom_all = true;
 }
@@ -370,7 +368,7 @@ void qemu_load_module_for_opts(const char *group)
         }
         for (sl = modinfo->opts; *sl != NULL; sl++) {
             if (strcmp(group, *sl) == 0) {
-                module_load_one("", modinfo->name, false);
+                module_load_one("", modinfo->name);
             }
         }
     }
-- 
2.26.2



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [RFC] module: removed unused function argument "mayfail"
  2022-09-05 15:55 [RFC] module: removed unused function argument "mayfail" Claudio Fontana
@ 2022-09-05 17:04 ` Richard Henderson
  2022-09-05 20:55 ` Philippe Mathieu-Daudé via
  1 sibling, 0 replies; 4+ messages in thread
From: Richard Henderson @ 2022-09-05 17:04 UTC (permalink / raw)
  To: Claudio Fontana, Paolo Bonzini
  Cc: qemu-devel, dinechin, Gerd Hoffmann, Marc-André Lureau,
	Daniel P . Berrangé, Philippe Mathieu-Daudé

On 9/5/22 16:55, Claudio Fontana wrote:
> mayfail is always passed as false for every invocation throughout the program.
> It controls whether to printf or not to printf an error on
> g_module_open failure.
> 
> Remove this unused argument.
> 
> Signed-off-by: Claudio Fontana<cfontana@suse.de>
> ---
>   include/qemu/module.h |  8 ++++----
>   softmmu/qtest.c       |  2 +-
>   util/module.c         | 20 +++++++++-----------
>   3 files changed, 14 insertions(+), 16 deletions(-)

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>


r~


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [RFC] module: removed unused function argument "mayfail"
  2022-09-05 15:55 [RFC] module: removed unused function argument "mayfail" Claudio Fontana
  2022-09-05 17:04 ` Richard Henderson
@ 2022-09-05 20:55 ` Philippe Mathieu-Daudé via
  2022-09-06  8:20   ` Claudio Fontana
  1 sibling, 1 reply; 4+ messages in thread
From: Philippe Mathieu-Daudé via @ 2022-09-05 20:55 UTC (permalink / raw)
  To: Claudio Fontana, Paolo Bonzini, Richard Henderson
  Cc: qemu-devel, dinechin, Gerd Hoffmann, Marc-André Lureau,
	Daniel P . Berrangé

On 5/9/22 17:55, Claudio Fontana wrote:
> mayfail is always passed as false for every invocation throughout the program.
> It controls whether to printf or not to printf an error on
> g_module_open failure.
> 
> Remove this unused argument.
> 
> Signed-off-by: Claudio Fontana <cfontana@suse.de>
> ---
>   include/qemu/module.h |  8 ++++----
>   softmmu/qtest.c       |  2 +-
>   util/module.c         | 20 +++++++++-----------
>   3 files changed, 14 insertions(+), 16 deletions(-)

Why RFC?

Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [RFC] module: removed unused function argument "mayfail"
  2022-09-05 20:55 ` Philippe Mathieu-Daudé via
@ 2022-09-06  8:20   ` Claudio Fontana
  0 siblings, 0 replies; 4+ messages in thread
From: Claudio Fontana @ 2022-09-06  8:20 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, Paolo Bonzini, Richard Henderson
  Cc: qemu-devel, dinechin, Gerd Hoffmann, Marc-André Lureau,
	Daniel P . Berrangé

On 9/5/22 22:55, Philippe Mathieu-Daudé wrote:
> On 5/9/22 17:55, Claudio Fontana wrote:
>> mayfail is always passed as false for every invocation throughout the program.
>> It controls whether to printf or not to printf an error on
>> g_module_open failure.
>>
>> Remove this unused argument.
>>
>> Signed-off-by: Claudio Fontana <cfontana@suse.de>
>> ---
>>   include/qemu/module.h |  8 ++++----
>>   softmmu/qtest.c       |  2 +-
>>   util/module.c         | 20 +++++++++-----------
>>   3 files changed, 14 insertions(+), 16 deletions(-)
> 
> Why RFC?

Maybe there was some obscure way the parameter was intended to be used by someone, somewhere :-)

> 
> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>

Ciao,

C


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-09-06  8:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-05 15:55 [RFC] module: removed unused function argument "mayfail" Claudio Fontana
2022-09-05 17:04 ` Richard Henderson
2022-09-05 20:55 ` Philippe Mathieu-Daudé via
2022-09-06  8:20   ` Claudio Fontana

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).