From: Igor Mammedov <imammedo@redhat.com>
To: Auger Eric <eric.auger@redhat.com>
Cc: peter.maydell@linaro.org, linuxarm@huawei.com,
Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>,
qemu-devel@nongnu.org, shannon.zhaosl@gmail.com,
qemu-arm@nongnu.org, xuwei5@huawei.com
Subject: Re: [Qemu-arm] [Qemu-devel] [RFC PATCH 3/4] hw/arm/virt: Enable pc-dimm hotplug support
Date: Thu, 28 Feb 2019 13:44:29 +0100 [thread overview]
Message-ID: <20190228134429.5b804533@redhat.com> (raw)
In-Reply-To: <61d04463-c237-eabb-18f1-3c8e49a87885@redhat.com>
On Thu, 28 Feb 2019 10:57:41 +0100
Auger Eric <eric.auger@redhat.com> wrote:
> Hi Igor,
>
> On 2/27/19 6:14 PM, Igor Mammedov wrote:
> > On Mon, 28 Jan 2019 11:05:45 +0000
> > Shameer Kolothum <shameerali.kolothum.thodi@huawei.com> wrote:
> >
> >> pc-dimm memory hotplug is enabled using GPIO(Pin 2) based ACPI
> >> event. Hot removal functionality is not yet supported.
> >>
> >> Signed-off-by: Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
> >> ---
> >> hw/arm/virt.c | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--
> >> 1 file changed, 55 insertions(+), 2 deletions(-)
> >>
> >> diff --git a/hw/arm/virt.c b/hw/arm/virt.c
> >> index 884960d..cf64554 100644
> >> --- a/hw/arm/virt.c
> >> +++ b/hw/arm/virt.c
> >> @@ -62,6 +62,7 @@
> >> #include "hw/mem/pc-dimm.h"
> >> #include "hw/mem/nvdimm.h"
> >> #include "hw/acpi/acpi.h"
> >> +#include "hw/acpi/pc-hotplug.h"
> >>
> >> #define DEFINE_VIRT_MACHINE_LATEST(major, minor, latest) \
> >> static void virt_##major##_##minor##_class_init(ObjectClass *oc, \
> >> @@ -1651,7 +1652,14 @@ static void machvirt_init(MachineState *machine)
> >> nvdimm_init_acpi_state(acpi_nvdimm_state, sysmem,
> >> vms->fw_cfg, OBJECT(vms));
> >> }
> >> + if (vms->acpi_memhp_state.is_enabled) {
> >> + MemHotplugState *state = &vms->acpi_memhp_state;
> >> + hwaddr base;
> >>
> >> + state->hw_reduced_acpi = true;
> >> + base = vms->memmap[VIRT_ACPI_IO].base + ACPI_MEMORY_HOTPLUG_BASE;
> >> + acpi_memory_hotplug_init(sysmem, OBJECT(vms), state, base);
> >> + }
> > this hunk should be a part of 'acpi' device that owns respective interrupts and mmio regions.
> > (something like we do in x86)
> > In this case I'd suggest to make 'base' its property and the board will set it during
> > device creation.
> >
> >> vms->bootinfo.ram_size = machine->ram_size;
> >> vms->bootinfo.kernel_filename = machine->kernel_filename;
> >> vms->bootinfo.kernel_cmdline = machine->kernel_cmdline;
> >> @@ -1819,6 +1827,20 @@ static void virt_set_nvdimm_persistence(Object *obj, const char *value,
> >> nvdimm_state->persistence_string = g_strdup(value);
> >> }
> >>
> >> +static bool virt_get_memhp_support(Object *obj, Error **errp)
> >> +{
> >> + VirtMachineState *vms = VIRT_MACHINE(obj);
> >> +
> >> + return vms->acpi_memhp_state.is_enabled;
> >> +}
> >> +
> >> +static void virt_set_memhp_support(Object *obj, bool value, Error **errp)
> >> +{
> >> + VirtMachineState *vms = VIRT_MACHINE(obj);
> >> +
> >> + vms->acpi_memhp_state.is_enabled = value;
> >> +}
> >> +
> >> static CpuInstanceProperties
> >> virt_cpu_index_to_props(MachineState *ms, unsigned cpu_index)
> >> {
> >> @@ -1863,8 +1885,8 @@ static void virt_memory_pre_plug(HotplugHandler *hotplug_dev, DeviceState *dev,
> >> const bool is_nvdimm = object_dynamic_cast(OBJECT(dev), TYPE_NVDIMM);
> >> VirtMachineState *vms = VIRT_MACHINE(hotplug_dev);
> >>
> >> - if (dev->hotplugged) {
> >> - error_setg(errp, "memory hotplug is not supported");
> >> + if (dev->hotplugged && is_nvdimm) {
> >> + error_setg(errp, "nvdimm hotplug is not supported");
> >> }
> >>
> >> if (is_nvdimm && !vms->acpi_nvdimm_state.is_enabled) {
> >> @@ -1875,6 +1897,22 @@ static void virt_memory_pre_plug(HotplugHandler *hotplug_dev, DeviceState *dev,
> >> pc_dimm_pre_plug(PC_DIMM(dev), MACHINE(hotplug_dev), NULL, errp);
> >> }
> >>
> >> +static void virt_memhp_send_event(HotplugHandler *hotplug_dev, DeviceState *dev,
> >> + Error **errp)
> >> +{
> >> + DeviceState *gpio_dev;
> >> + VirtMachineState *vms = VIRT_MACHINE(hotplug_dev);
> >> +
> >> + gpio_dev = virt_get_gpio_dev(GPIO_PCDIMM);
> >> + if (!gpio_dev) {
> >> + error_setg(errp, "No dev interface to send hotplug event");
> > ^^^^^^ confusing
> >> + return;
> >> + }
> >> + acpi_memory_plug_cb(hotplug_dev, &vms->acpi_memhp_state,
> >> + dev, errp);
> >> + qemu_set_irq(qdev_get_gpio_in(gpio_dev, 0), 1);
> >> +}
> >> +
> >> static void virt_memory_plug(HotplugHandler *hotplug_dev,
> >> DeviceState *dev, Error **errp)
> >> {
> >> @@ -1891,6 +1929,10 @@ static void virt_memory_plug(HotplugHandler *hotplug_dev,
> >> nvdimm_plug(&vms->acpi_nvdimm_state);
> >> }
> >>
> >> + if (dev->hotplugged && !is_nvdimm) {
> >> + virt_memhp_send_event(hotplug_dev, dev, errp);
> > ...
> > acpi_memory_plug_cb();
> > hotplug_handler_plug(HOTPLUG_HANDLER(pcms->gpio_dev), dev, &error_abort);
> > ^^^^ forward snd process hotplug notification event in gpio_dev,
> > machine should not care about which and how to deal with random IRQs
> >
> >> + }
> >> +
> >> out:
> >> error_propagate(errp, local_err);
> >> }
> >> @@ -1898,6 +1940,11 @@ out:
> >> static void virt_memory_unplug(HotplugHandler *hotplug_dev,
> >> DeviceState *dev, Error **errp)
> >> {
> >> + if (dev->hotplugged) {
> >> + error_setg(errp, "memory hot unplug is not supported");
> >> + return;
> >> + }
> > what if unplug is called on cold-plugged device?
> >
> > Better way to disable mgmt initiated unplug is to forbid it in unplug_request()
> > For guest initiated one ('unplug' handler), the best we can do is log error
> > and ignore it (provided guest won't get in confused). it's also possible
> > to hide _EJ method and then it would be even fine to abort if it gets here,
> > since guest is not supposed to interface with MMIO interface without using AML.
> I don't understand the guest initiated unplug handling. How does it
> differ from x86 handling as we are using the same dynamic methods?
The only differences I'm aware of, should be event delivery mechanism and
using MMIO vs IO. Otherwise it's the same as described in
docs/specs/acpi_mem_hotplug.txt
> Besides In ARM case I checked
> /sys/devices/system/memory/memoryX/removable state for cold-plugged and
> hot-plugged DIMMs and it is equal to 0. I don't know if it is a
> limitation of the guest or a bug in our ACPI description somewhere. I
> would not be surprised if hot-unplug is not supported at kernel leve
> though.
enabling mhp_acpi_foo trace events might help to check what's going on,
and a dump of ACPI tables too (SRAT + DSDT).
It's quite possible that kernel doesn't support unplug yet, all I care at
the moment is to make sure that we won't have cross-version compatibility
issues when kernel gets there so we won't have to add and support compat
knobs later on.
> Thanks
>
> Eric
> >
> >> +
> >> pc_dimm_unplug(PC_DIMM(dev), MACHINE(hotplug_dev));
> >> object_unparent(OBJECT(dev));
> >> }
> >> @@ -2085,6 +2132,12 @@ static void virt_instance_init(Object *obj)
> >> "Set NVDIMM persistence"
> >> "Valid values are cpu and mem-ctrl", NULL);
> >>
> >> + vms->acpi_memhp_state.is_enabled = true;
> >> + object_property_add_bool(obj, "memory-hotplug-support",
> >> + virt_get_memhp_support,
> >> + virt_set_memhp_support,
> >> + NULL);
> >> +
> >> vms->irqmap = a15irqmap;
> >> }
> >>
> >
WARNING: multiple messages have this Message-ID (diff)
From: Igor Mammedov <imammedo@redhat.com>
To: Auger Eric <eric.auger@redhat.com>
Cc: Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>,
shannon.zhaosl@gmail.com, peter.maydell@linaro.org,
qemu-devel@nongnu.org, qemu-arm@nongnu.org, linuxarm@huawei.com,
xuwei5@huawei.com
Subject: Re: [Qemu-devel] [RFC PATCH 3/4] hw/arm/virt: Enable pc-dimm hotplug support
Date: Thu, 28 Feb 2019 13:44:29 +0100 [thread overview]
Message-ID: <20190228134429.5b804533@redhat.com> (raw)
In-Reply-To: <61d04463-c237-eabb-18f1-3c8e49a87885@redhat.com>
On Thu, 28 Feb 2019 10:57:41 +0100
Auger Eric <eric.auger@redhat.com> wrote:
> Hi Igor,
>
> On 2/27/19 6:14 PM, Igor Mammedov wrote:
> > On Mon, 28 Jan 2019 11:05:45 +0000
> > Shameer Kolothum <shameerali.kolothum.thodi@huawei.com> wrote:
> >
> >> pc-dimm memory hotplug is enabled using GPIO(Pin 2) based ACPI
> >> event. Hot removal functionality is not yet supported.
> >>
> >> Signed-off-by: Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
> >> ---
> >> hw/arm/virt.c | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--
> >> 1 file changed, 55 insertions(+), 2 deletions(-)
> >>
> >> diff --git a/hw/arm/virt.c b/hw/arm/virt.c
> >> index 884960d..cf64554 100644
> >> --- a/hw/arm/virt.c
> >> +++ b/hw/arm/virt.c
> >> @@ -62,6 +62,7 @@
> >> #include "hw/mem/pc-dimm.h"
> >> #include "hw/mem/nvdimm.h"
> >> #include "hw/acpi/acpi.h"
> >> +#include "hw/acpi/pc-hotplug.h"
> >>
> >> #define DEFINE_VIRT_MACHINE_LATEST(major, minor, latest) \
> >> static void virt_##major##_##minor##_class_init(ObjectClass *oc, \
> >> @@ -1651,7 +1652,14 @@ static void machvirt_init(MachineState *machine)
> >> nvdimm_init_acpi_state(acpi_nvdimm_state, sysmem,
> >> vms->fw_cfg, OBJECT(vms));
> >> }
> >> + if (vms->acpi_memhp_state.is_enabled) {
> >> + MemHotplugState *state = &vms->acpi_memhp_state;
> >> + hwaddr base;
> >>
> >> + state->hw_reduced_acpi = true;
> >> + base = vms->memmap[VIRT_ACPI_IO].base + ACPI_MEMORY_HOTPLUG_BASE;
> >> + acpi_memory_hotplug_init(sysmem, OBJECT(vms), state, base);
> >> + }
> > this hunk should be a part of 'acpi' device that owns respective interrupts and mmio regions.
> > (something like we do in x86)
> > In this case I'd suggest to make 'base' its property and the board will set it during
> > device creation.
> >
> >> vms->bootinfo.ram_size = machine->ram_size;
> >> vms->bootinfo.kernel_filename = machine->kernel_filename;
> >> vms->bootinfo.kernel_cmdline = machine->kernel_cmdline;
> >> @@ -1819,6 +1827,20 @@ static void virt_set_nvdimm_persistence(Object *obj, const char *value,
> >> nvdimm_state->persistence_string = g_strdup(value);
> >> }
> >>
> >> +static bool virt_get_memhp_support(Object *obj, Error **errp)
> >> +{
> >> + VirtMachineState *vms = VIRT_MACHINE(obj);
> >> +
> >> + return vms->acpi_memhp_state.is_enabled;
> >> +}
> >> +
> >> +static void virt_set_memhp_support(Object *obj, bool value, Error **errp)
> >> +{
> >> + VirtMachineState *vms = VIRT_MACHINE(obj);
> >> +
> >> + vms->acpi_memhp_state.is_enabled = value;
> >> +}
> >> +
> >> static CpuInstanceProperties
> >> virt_cpu_index_to_props(MachineState *ms, unsigned cpu_index)
> >> {
> >> @@ -1863,8 +1885,8 @@ static void virt_memory_pre_plug(HotplugHandler *hotplug_dev, DeviceState *dev,
> >> const bool is_nvdimm = object_dynamic_cast(OBJECT(dev), TYPE_NVDIMM);
> >> VirtMachineState *vms = VIRT_MACHINE(hotplug_dev);
> >>
> >> - if (dev->hotplugged) {
> >> - error_setg(errp, "memory hotplug is not supported");
> >> + if (dev->hotplugged && is_nvdimm) {
> >> + error_setg(errp, "nvdimm hotplug is not supported");
> >> }
> >>
> >> if (is_nvdimm && !vms->acpi_nvdimm_state.is_enabled) {
> >> @@ -1875,6 +1897,22 @@ static void virt_memory_pre_plug(HotplugHandler *hotplug_dev, DeviceState *dev,
> >> pc_dimm_pre_plug(PC_DIMM(dev), MACHINE(hotplug_dev), NULL, errp);
> >> }
> >>
> >> +static void virt_memhp_send_event(HotplugHandler *hotplug_dev, DeviceState *dev,
> >> + Error **errp)
> >> +{
> >> + DeviceState *gpio_dev;
> >> + VirtMachineState *vms = VIRT_MACHINE(hotplug_dev);
> >> +
> >> + gpio_dev = virt_get_gpio_dev(GPIO_PCDIMM);
> >> + if (!gpio_dev) {
> >> + error_setg(errp, "No dev interface to send hotplug event");
> > ^^^^^^ confusing
> >> + return;
> >> + }
> >> + acpi_memory_plug_cb(hotplug_dev, &vms->acpi_memhp_state,
> >> + dev, errp);
> >> + qemu_set_irq(qdev_get_gpio_in(gpio_dev, 0), 1);
> >> +}
> >> +
> >> static void virt_memory_plug(HotplugHandler *hotplug_dev,
> >> DeviceState *dev, Error **errp)
> >> {
> >> @@ -1891,6 +1929,10 @@ static void virt_memory_plug(HotplugHandler *hotplug_dev,
> >> nvdimm_plug(&vms->acpi_nvdimm_state);
> >> }
> >>
> >> + if (dev->hotplugged && !is_nvdimm) {
> >> + virt_memhp_send_event(hotplug_dev, dev, errp);
> > ...
> > acpi_memory_plug_cb();
> > hotplug_handler_plug(HOTPLUG_HANDLER(pcms->gpio_dev), dev, &error_abort);
> > ^^^^ forward snd process hotplug notification event in gpio_dev,
> > machine should not care about which and how to deal with random IRQs
> >
> >> + }
> >> +
> >> out:
> >> error_propagate(errp, local_err);
> >> }
> >> @@ -1898,6 +1940,11 @@ out:
> >> static void virt_memory_unplug(HotplugHandler *hotplug_dev,
> >> DeviceState *dev, Error **errp)
> >> {
> >> + if (dev->hotplugged) {
> >> + error_setg(errp, "memory hot unplug is not supported");
> >> + return;
> >> + }
> > what if unplug is called on cold-plugged device?
> >
> > Better way to disable mgmt initiated unplug is to forbid it in unplug_request()
> > For guest initiated one ('unplug' handler), the best we can do is log error
> > and ignore it (provided guest won't get in confused). it's also possible
> > to hide _EJ method and then it would be even fine to abort if it gets here,
> > since guest is not supposed to interface with MMIO interface without using AML.
> I don't understand the guest initiated unplug handling. How does it
> differ from x86 handling as we are using the same dynamic methods?
The only differences I'm aware of, should be event delivery mechanism and
using MMIO vs IO. Otherwise it's the same as described in
docs/specs/acpi_mem_hotplug.txt
> Besides In ARM case I checked
> /sys/devices/system/memory/memoryX/removable state for cold-plugged and
> hot-plugged DIMMs and it is equal to 0. I don't know if it is a
> limitation of the guest or a bug in our ACPI description somewhere. I
> would not be surprised if hot-unplug is not supported at kernel leve
> though.
enabling mhp_acpi_foo trace events might help to check what's going on,
and a dump of ACPI tables too (SRAT + DSDT).
It's quite possible that kernel doesn't support unplug yet, all I care at
the moment is to make sure that we won't have cross-version compatibility
issues when kernel gets there so we won't have to add and support compat
knobs later on.
> Thanks
>
> Eric
> >
> >> +
> >> pc_dimm_unplug(PC_DIMM(dev), MACHINE(hotplug_dev));
> >> object_unparent(OBJECT(dev));
> >> }
> >> @@ -2085,6 +2132,12 @@ static void virt_instance_init(Object *obj)
> >> "Set NVDIMM persistence"
> >> "Valid values are cpu and mem-ctrl", NULL);
> >>
> >> + vms->acpi_memhp_state.is_enabled = true;
> >> + object_property_add_bool(obj, "memory-hotplug-support",
> >> + virt_get_memhp_support,
> >> + virt_set_memhp_support,
> >> + NULL);
> >> +
> >> vms->irqmap = a15irqmap;
> >> }
> >>
> >
next prev parent reply other threads:[~2019-02-28 12:45 UTC|newest]
Thread overview: 72+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-28 11:05 [Qemu-arm] [RFC PATCH 0/4] ARM virt: ACPI memory hotplug support Shameer Kolothum
2019-01-28 11:05 ` [Qemu-devel] " Shameer Kolothum
2019-01-28 11:05 ` [Qemu-arm] [RFC PATCH 1/4] hw:acpi: Make ACPI IO address space configurable Shameer Kolothum
2019-01-28 11:05 ` [Qemu-devel] " Shameer Kolothum
2019-02-27 16:27 ` [Qemu-arm] " Igor Mammedov
2019-02-27 16:27 ` [Qemu-devel] " Igor Mammedov
2019-02-28 12:14 ` [Qemu-arm] " Shameerali Kolothum Thodi
2019-02-28 12:14 ` [Qemu-devel] " Shameerali Kolothum Thodi
2019-02-27 17:52 ` Auger Eric
2019-02-27 17:52 ` Auger Eric
2019-02-28 16:09 ` [Qemu-arm] " Shameerali Kolothum Thodi
2019-02-28 16:09 ` [Qemu-devel] " Shameerali Kolothum Thodi
2019-02-28 16:44 ` [Qemu-arm] " Igor Mammedov
2019-02-28 16:44 ` [Qemu-devel] " Igor Mammedov
2019-01-28 11:05 ` [Qemu-arm] [RFC PATCH 2/4] hw/arm/virt: Add GPIO based pcdimm hotplug ACPI event support Shameer Kolothum
2019-01-28 11:05 ` [Qemu-devel] " Shameer Kolothum
2019-02-27 16:44 ` Igor Mammedov
2019-02-27 16:44 ` Igor Mammedov
2019-01-28 11:05 ` [Qemu-arm] [RFC PATCH 3/4] hw/arm/virt: Enable pc-dimm hotplug support Shameer Kolothum
2019-01-28 11:05 ` [Qemu-devel] " Shameer Kolothum
2019-02-27 17:14 ` [Qemu-arm] " Igor Mammedov
2019-02-27 17:14 ` Igor Mammedov
2019-02-28 9:57 ` [Qemu-arm] " Auger Eric
2019-02-28 9:57 ` Auger Eric
2019-02-28 12:44 ` Igor Mammedov [this message]
2019-02-28 12:44 ` Igor Mammedov
2019-02-28 12:27 ` [Qemu-arm] " Shameerali Kolothum Thodi
2019-02-28 12:27 ` Shameerali Kolothum Thodi
2019-03-01 9:12 ` [Qemu-arm] " Igor Mammedov
2019-03-01 9:12 ` Igor Mammedov
2019-03-01 9:23 ` Shameerali Kolothum Thodi
2019-03-01 9:23 ` Shameerali Kolothum Thodi
2019-03-01 10:26 ` [Qemu-arm] " Igor Mammedov
2019-03-01 10:26 ` Igor Mammedov
2019-03-01 10:33 ` [Qemu-arm] " Igor Mammedov
2019-03-01 10:33 ` Igor Mammedov
2019-03-01 10:51 ` [Qemu-arm] " Shameerali Kolothum Thodi
2019-03-01 10:51 ` Shameerali Kolothum Thodi
2019-03-01 13:09 ` Igor Mammedov
2019-03-01 13:09 ` Igor Mammedov
2019-02-22 16:03 ` [Qemu-arm] [RFC PATCH 0/4] ARM virt: ACPI memory " Auger Eric
2019-02-22 16:03 ` [Qemu-devel] " Auger Eric
2019-02-22 19:11 ` [Qemu-arm] " Laszlo Ersek
2019-02-22 19:11 ` [Qemu-devel] " Laszlo Ersek
2019-02-25 9:54 ` [Qemu-arm] " Shameerali Kolothum Thodi
2019-02-25 9:54 ` [Qemu-devel] " Shameerali Kolothum Thodi
2019-02-27 12:55 ` [Qemu-arm] " Shameerali Kolothum Thodi
2019-02-27 12:55 ` [Qemu-devel] " Shameerali Kolothum Thodi
2019-02-27 16:42 ` Igor Mammedov
2019-02-27 16:42 ` Igor Mammedov
2019-02-27 20:14 ` [Qemu-arm] " Laszlo Ersek
2019-02-27 20:14 ` [Qemu-devel] " Laszlo Ersek
2019-02-28 10:12 ` [Qemu-arm] " Auger Eric
2019-02-28 10:12 ` [Qemu-devel] " Auger Eric
2019-02-28 12:04 ` [Qemu-arm] " Shameerali Kolothum Thodi
2019-02-28 12:04 ` [Qemu-devel] " Shameerali Kolothum Thodi
2019-02-28 12:27 ` [Qemu-arm] " Laszlo Ersek
2019-02-28 12:27 ` [Qemu-devel] " Laszlo Ersek
2019-02-28 13:32 ` [Qemu-arm] " Auger Eric
2019-02-28 13:32 ` [Qemu-devel] " Auger Eric
2019-02-28 13:43 ` [Qemu-arm] " Igor Mammedov
2019-02-28 13:43 ` [Qemu-devel] " Igor Mammedov
2019-02-28 14:02 ` [Qemu-arm] " Shameerali Kolothum Thodi
2019-02-28 14:02 ` [Qemu-devel] " Shameerali Kolothum Thodi
2019-03-01 13:49 ` Laszlo Ersek
2019-03-01 13:49 ` Laszlo Ersek
2019-03-01 17:39 ` [Qemu-arm] " Igor Mammedov
2019-03-01 17:39 ` [Qemu-devel] " Igor Mammedov
2019-03-05 12:14 ` [Qemu-arm] " Laszlo Ersek
2019-03-05 12:14 ` [Qemu-devel] " Laszlo Ersek
2019-02-25 9:47 ` [Qemu-arm] " Shameerali Kolothum Thodi
2019-02-25 9:47 ` [Qemu-devel] " Shameerali Kolothum Thodi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190228134429.5b804533@redhat.com \
--to=imammedo@redhat.com \
--cc=eric.auger@redhat.com \
--cc=linuxarm@huawei.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=shameerali.kolothum.thodi@huawei.com \
--cc=shannon.zhaosl@gmail.com \
--cc=xuwei5@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.