mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 23:03:54 -06:00
modules: add tracepoints
One for module load and one for qom type lookup. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Jose R. Ziviani <jziviani@suse.de> Message-Id: <20210624103836.2382472-18-kraxel@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
5111edaf9e
commit
819b8b13c1
2 changed files with 7 additions and 0 deletions
|
@ -24,6 +24,7 @@
|
|||
#ifdef CONFIG_MODULE_UPGRADES
|
||||
#include "qemu-version.h"
|
||||
#endif
|
||||
#include "trace.h"
|
||||
|
||||
typedef struct ModuleEntry
|
||||
{
|
||||
|
@ -176,6 +177,7 @@ static int module_load_file(const char *fname, bool mayfail, bool export_symbols
|
|||
ret = 0;
|
||||
}
|
||||
|
||||
trace_module_load_module(fname);
|
||||
QTAILQ_FOREACH_SAFE(e, &dso_init_list, node, next) {
|
||||
QTAILQ_REMOVE(&dso_init_list, e, node);
|
||||
g_free(e);
|
||||
|
@ -294,6 +296,7 @@ void module_load_qom_one(const char *type)
|
|||
return;
|
||||
}
|
||||
|
||||
trace_module_lookup_object_type(type);
|
||||
for (modinfo = module_info; modinfo->name != NULL; modinfo++) {
|
||||
if (!modinfo->objs) {
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue