[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 0/9] misc: Replace alloca() by g_malloc()
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH v2 0/9] misc: Replace alloca() by g_malloc() |
Date: |
Thu, 6 May 2021 15:37:49 +0200 |
The ALLOCA(3) man-page mentions its "use is discouraged".
Replace few calls by equivalent GLib malloc().
Last call site is linux-user/.
Since v1:
- Converted more uses (alsaaudio, tpm, pca9552)
- Reworked gdbstub (Alex)
- Simplified PPC/KVM (Greg)
Philippe Mathieu-Daudé (9):
audio/alsaaudio: Replace ALSA alloca() by malloc() equivalent
backends/tpm: Replace qemu_mutex_lock calls with QEMU_LOCK_GUARD
backends/tpm: Replace g_alloca() by g_malloc()
bsd-user/syscall: Replace alloca() by g_new()
gdbstub: Constify GdbCmdParseEntry
gdbstub: Only call cmd_parse_params() with non-NULL command schema
gdbstub: Replace alloca() + memset(0) by g_new0()
hw/misc/pca9552: Replace g_newa() by g_new()
target/ppc/kvm: Replace alloca() by g_malloc()
audio/alsaaudio.c | 11 +++++++----
backends/tpm/tpm_emulator.c | 35 +++++++++++++++--------------------
bsd-user/syscall.c | 3 +--
gdbstub.c | 34 +++++++++++++++-------------------
hw/misc/pca9552.c | 2 +-
target/ppc/kvm.c | 3 +--
6 files changed, 40 insertions(+), 48 deletions(-)
--
2.26.3
- [PATCH v2 0/9] misc: Replace alloca() by g_malloc(),
Philippe Mathieu-Daudé <=
- [PATCH v2 1/9] audio/alsaaudio: Replace ALSA alloca() by malloc() equivalent, Philippe Mathieu-Daudé, 2021/05/06
- [PATCH v2 2/9] backends/tpm: Replace qemu_mutex_lock calls with QEMU_LOCK_GUARD, Philippe Mathieu-Daudé, 2021/05/06
- [PATCH v2 3/9] backends/tpm: Replace g_alloca() by g_malloc(), Philippe Mathieu-Daudé, 2021/05/06
- [PATCH v2 5/9] gdbstub: Constify GdbCmdParseEntry, Philippe Mathieu-Daudé, 2021/05/06
- [PATCH v2 4/9] bsd-user/syscall: Replace alloca() by g_new(), Philippe Mathieu-Daudé, 2021/05/06