[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 00/14] simple cleanups in spapr files
From: |
Daniel Henrique Barboza |
Subject: |
[PATCH 00/14] simple cleanups in spapr files |
Date: |
Mon, 28 Feb 2022 14:49:50 -0300 |
Hi,
These are some cleanups in spapr files I decided to make after seeing
Greg adding g_auto* in virtio-9p files.
I also took the opportunity to simplify the logic in some places where I
found it to be more complex than needed.
Aside from patch 02, no functional change was made in this series.
Daniel Henrique Barboza (14):
hw/ppc/spapr.c: use g_autofree in spapr_dt_chosen()
hw/ppc/spapr.c: fail early if no firmware found in machine_init()
hw/ppc/spapr_caps.c: use g_autofree in spapr_cap_set_string()
hw/ppc/spapr_caps.c: use g_autofree in spapr_cap_get_string()
hw/ppc/spapr_caps.c: use g_autofree in spapr_caps_add_properties()
hw/ppc/spapr_drc.c: use g_auto in spapr_dt_drc()
hw/ppc/spapr_drc.c: use g_autofree in drc_realize()
hw/ppc/spapr_drc.c: use g_autofree in drc_unrealize()
hw/ppc/spapr_drc.c: use g_autofree in spapr_dr_connector_new()
hw/ppc/spapr_drc.c: use g_autofree in spapr_drc_by_index()
hw/ppc/spapr_numa.c: simplify spapr_numa_write_assoc_lookup_arrays()
spapr_pci_nvlink2.c: use g_autofree in
spapr_phb_nvgpu_ram_populate_dt()
hw/ppc/spapr_rtas.c: use g_autofree in rtas_ibm_get_system_parameter()
hw/ppc/spapr_vio.c: use g_autofree in spapr_dt_vdevice()
hw/ppc/spapr.c | 31 +++++++++++--------------
hw/ppc/spapr_caps.c | 22 +++++++-----------
hw/ppc/spapr_drc.c | 47 ++++++++++++++------------------------
hw/ppc/spapr_numa.c | 16 ++++++-------
hw/ppc/spapr_pci_nvlink2.c | 10 ++++----
hw/ppc/spapr_rtas.c | 25 ++++++++++----------
hw/ppc/spapr_vio.c | 6 ++---
7 files changed, 64 insertions(+), 93 deletions(-)
--
2.35.1
- [PATCH 00/14] simple cleanups in spapr files,
Daniel Henrique Barboza <=
- [PATCH 01/14] hw/ppc/spapr.c: use g_autofree in spapr_dt_chosen(), Daniel Henrique Barboza, 2022/02/28
- [PATCH 03/14] hw/ppc/spapr_caps.c: use g_autofree in spapr_cap_set_string(), Daniel Henrique Barboza, 2022/02/28
- [PATCH 02/14] hw/ppc/spapr.c: fail early if no firmware found in machine_init(), Daniel Henrique Barboza, 2022/02/28
- [PATCH 04/14] hw/ppc/spapr_caps.c: use g_autofree in spapr_cap_get_string(), Daniel Henrique Barboza, 2022/02/28
- [PATCH 05/14] hw/ppc/spapr_caps.c: use g_autofree in spapr_caps_add_properties(), Daniel Henrique Barboza, 2022/02/28