On Wed, 09/11 15:24, Peter Maydell wrote: > On 11 September 2013 06:38, Fam Zheng <f...@redhat.com> wrote: > > --- a/linux-user/main.c > > +++ b/linux-user/main.c > > @@ -34,6 +34,7 @@ > > #include "qemu/timer.h" > > #include "qemu/envlist.h" > > #include "elf.h" > > +#include <qemu/module.h> > > > > char *exec_path; > > > > @@ -3551,6 +3552,8 @@ int main(int argc, char **argv, char **envp) > > int i; > > int ret; > > > > + module_load(MODULE_LOAD_UI); > > + module_load(MODULE_LOAD_NET); > > module_call_init(MODULE_INIT_QOM); > > This looks kind of fishy. The *-user binaries don't even > have any UI, and they shouldn't be using the networking > either. For that matter it's really unclear to me that they > should have any kind of loadable modules at all. > I see, dropping this change.
- [Qemu-devel] [RFC PATCH v5 0/6] Shared Library Module Su... Fam Zheng
- [Qemu-devel] [RFC PATCH v5 1/6] make.rule: fix $(ob... Fam Zheng
- Re: [Qemu-devel] [RFC PATCH v5 1/6] make.rule: ... Paolo Bonzini
- [Qemu-devel] [RFC PATCH v5 2/6] rule.mak: allow per... Fam Zheng
- [Qemu-devel] [RFC PATCH v5 4/6] module: implement m... Fam Zheng
- Re: [Qemu-devel] [RFC PATCH v5 4/6] module: imp... Paolo Bonzini
- Re: [Qemu-devel] [RFC PATCH v5 4/6] module: imp... Peter Maydell
- Re: [Qemu-devel] [RFC PATCH v5 4/6] module:... Fam Zheng
- Re: [Qemu-devel] [RFC PATCH v5 4/6] module: imp... Alex Bligh
- Re: [Qemu-devel] [RFC PATCH v5 4/6] module:... Paolo Bonzini
- Re: [Qemu-devel] [RFC PATCH v5 4/6] module:... Richard Henderson
- Re: [Qemu-devel] [RFC PATCH v5 4/6] mod... Alex Bligh
- Re: [Qemu-devel] [RFC PATCH v5 4/6... Richard Henderson
- [Qemu-devel] [RFC PATCH v5 3/6] Makefile: introduce... Fam Zheng
- [Qemu-devel] [RFC PATCH v5 6/6] block: build qed an... Fam Zheng
- Re: [Qemu-devel] [RFC PATCH v5 6/6] block: buil... Paolo Bonzini
- [Qemu-devel] [RFC PATCH v5 5/6] configure: introduc... Fam Zheng