Skip to content

Commit

Permalink
arch_init: Remove unnecessary default_config_files table
Browse files Browse the repository at this point in the history
The existing default_config_files table in arch_init.c has a
single entry, making it completely unnecessary. The whole code
can be replaced by a single qemu_read_config_file() call in vl.c.

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Message-Id: <20170117180051.11958-1-ehabkost@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
  • Loading branch information
ehabkost committed Jan 23, 2017
1 parent 9c6703f commit 726401b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 35 deletions.
27 changes: 0 additions & 27 deletions arch_init.c
Expand Up @@ -83,33 +83,6 @@ int graphic_depth = 32;

const uint32_t arch_type = QEMU_ARCH;

static struct defconfig_file {
const char *filename;
/* Indicates it is an user config file (disabled by -no-user-config) */
bool userconfig;
} default_config_files[] = {
{ CONFIG_QEMU_CONFDIR "/qemu.conf", true },
{ NULL }, /* end of list */
};

int qemu_read_default_config_files(bool userconfig)
{
int ret;
struct defconfig_file *f;

for (f = default_config_files; f->filename; f++) {
if (!userconfig && f->userconfig) {
continue;
}
ret = qemu_read_config_file(f->filename);
if (ret < 0 && ret != -ENOENT) {
return ret;
}
}

return 0;
}

struct soundhw {
const char *name;
const char *descr;
Expand Down
4 changes: 0 additions & 4 deletions include/qemu/config-file.h
Expand Up @@ -23,8 +23,4 @@ int qemu_read_config_file(const char *filename);
void qemu_config_parse_qdict(QDict *options, QemuOptsList **lists,
Error **errp);

/* Read default QEMU config files
*/
int qemu_read_default_config_files(bool userconfig);

#endif /* QEMU_CONFIG_FILE_H */
18 changes: 14 additions & 4 deletions vl.c
Expand Up @@ -2950,6 +2950,18 @@ static int global_init_func(void *opaque, QemuOpts *opts, Error **errp)
return 0;
}

static int qemu_read_default_config_file(void)
{
int ret;

ret = qemu_read_config_file(CONFIG_QEMU_CONFDIR "/qemu.conf");
if (ret < 0 && ret != -ENOENT) {
return ret;
}

return 0;
}

int main(int argc, char **argv, char **envp)
{
int i;
Expand Down Expand Up @@ -3077,10 +3089,8 @@ int main(int argc, char **argv, char **envp)
}
}

if (defconfig) {
int ret;
ret = qemu_read_default_config_files(userconfig);
if (ret < 0) {
if (defconfig && userconfig) {
if (qemu_read_default_config_file() < 0) {
exit(1);
}
}
Expand Down

0 comments on commit 726401b

Please sign in to comment.