[Qemu-devel] [PATCH v6 0/6] arm: Make use of DEFINE_PROP_LINK

Fam Zheng posted 6 patches 6 years, 7 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20170905131149.10669-1-famz@redhat.com
Test checkpatch passed
Test docker passed
Test s390x passed
hw/arm/armv7m.c             | 16 ++++------------
hw/arm/xlnx-zynqmp.c        |  7 ++-----
hw/dma/xilinx_axidma.c      | 16 ++++------------
hw/intc/arm_gicv3_its_kvm.c | 19 +++++++------------
hw/net/xilinx_axienet.c     | 16 ++++------------
5 files changed, 21 insertions(+), 53 deletions(-)
[Qemu-devel] [PATCH v6 0/6] arm: Make use of DEFINE_PROP_LINK
Posted by Fam Zheng 6 years, 7 months ago
v6: Rebase and resend v5: Add Philippe's rev-bys and fix one typo in bitband
    patch.

This is the arm part that was left out from:

https://lists.gnu.org/archive/html/qemu-devel/2017-07/msg04006.html

Make use of the new DEFINE_PROP_LINK, in favor of open coded the
object_property_add_link. The advantage of it is the property now get reflected
in the info qtree output, for a bit more introspectability.

Fam Zheng (6):
  armv7m: Convert bitband.source-memory to DEFINE_PROP_LINK
  armv7m: Convert armv7m.memory to DEFINE_PROP_LINK
  gicv3: Convert to DEFINE_PROP_LINK
  xlnx_zynqmp: Convert to DEFINE_PROP_LINK
  xilinx_axienet: Convert to DEFINE_PROP_LINK
  xilinx_axidma: Convert to DEFINE_PROP_LINK

 hw/arm/armv7m.c             | 16 ++++------------
 hw/arm/xlnx-zynqmp.c        |  7 ++-----
 hw/dma/xilinx_axidma.c      | 16 ++++------------
 hw/intc/arm_gicv3_its_kvm.c | 19 +++++++------------
 hw/net/xilinx_axienet.c     | 16 ++++------------
 5 files changed, 21 insertions(+), 53 deletions(-)

-- 
2.13.5


Re: [Qemu-devel] [PATCH v6 0/6] arm: Make use of DEFINE_PROP_LINK
Posted by Peter Maydell 6 years, 7 months ago
On 5 September 2017 at 14:11, Fam Zheng <famz@redhat.com> wrote:
> v6: Rebase and resend v5: Add Philippe's rev-bys and fix one typo in bitband
>     patch.
>
> This is the arm part that was left out from:
>
> https://lists.gnu.org/archive/html/qemu-devel/2017-07/msg04006.html
>
> Make use of the new DEFINE_PROP_LINK, in favor of open coded the
> object_property_add_link. The advantage of it is the property now get reflected
> in the info qtree output, for a bit more introspectability.
>

Applied to target-arm.next, thanks.

-- PMM