pc-dimm: make qmp_pc_dimm_device_list() sort devices by address
commit52c95cae4e1299e0a2a9709093581a3a96473aa5
authorHaozhong Zhang <haozhong.zhang@intel.com>
Sun, 11 Mar 2018 03:02:11 +0000 (11 11:02 +0800)
committerMichael S. Tsirkin <mst@redhat.com>
Tue, 20 Mar 2018 01:34:52 +0000 (20 03:34 +0200)
tree1b68945b8ae418c65034817e3d00066013fe0b46
parent1d0cad532ca1a5c65196e3fcd3904ef29b253b1c
pc-dimm: make qmp_pc_dimm_device_list() sort devices by address

Make qmp_pc_dimm_device_list() return sorted by start address
list of devices so that it could be reused in places that
would need sorted list*. Reuse existing pc_dimm_built_list()
to get sorted list.

While at it hide recursive callbacks from callers, so that:

  qmp_pc_dimm_device_list(qdev_get_machine(), &list);

could be replaced with simpler:

  list = qmp_pc_dimm_device_list();

* follow up patch will use it in build_srat()

Signed-off-by: Haozhong Zhang <haozhong.zhang@intel.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Acked-by: David Gibson <david@gibson.dropbear.id.au> for ppc part
Reviewed-by: Bharata B Rao <bharata@linux.vnet.ibm.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
hw/mem/pc-dimm.c
hw/ppc/spapr.c
include/hw/mem/pc-dimm.h
numa.c
qmp.c
stubs/qmp_pc_dimm.c