mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 10:13:56 -06:00
Use g_new() & friends where that makes obvious sense
g_new(T, n) is neater than g_malloc(sizeof(T) * n). It's also safer, for two reasons. One, it catches multiplication overflowing size_t. Two, it returns T * rather than void *, which lets the compiler catch more type errors. This commit only touches allocations with size arguments of the form sizeof(T). Patch created mechanically with: $ spatch --in-place --sp-file scripts/coccinelle/use-g_new-etc.cocci \ --macro-file scripts/cocci-macro-file.h FILES... The previous iteration was commit a95942b50c. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Message-Id: <20220923084254.4173111-1-armbru@redhat.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
This commit is contained in:
parent
76eb88b12b
commit
c5e8d51824
4 changed files with 6 additions and 6 deletions
|
@ -154,7 +154,7 @@ void vcpu_dirty_rate_stat_initialize(void)
|
|||
|
||||
vcpu_dirty_rate_stat->stat.nvcpu = max_cpus;
|
||||
vcpu_dirty_rate_stat->stat.rates =
|
||||
g_malloc0(sizeof(DirtyRateVcpu) * max_cpus);
|
||||
g_new0(DirtyRateVcpu, max_cpus);
|
||||
|
||||
vcpu_dirty_rate_stat->running = false;
|
||||
}
|
||||
|
@ -198,7 +198,7 @@ void dirtylimit_state_initialize(void)
|
|||
dirtylimit_state = g_malloc0(sizeof(*dirtylimit_state));
|
||||
|
||||
dirtylimit_state->states =
|
||||
g_malloc0(sizeof(VcpuDirtyLimitState) * max_cpus);
|
||||
g_new0(VcpuDirtyLimitState, max_cpus);
|
||||
|
||||
for (i = 0; i < max_cpus; i++) {
|
||||
dirtylimit_state->states[i].cpu_index = i;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue