From: Wei Yang <richardw.yang@linux.intel.com>
To: Igor Mammedov <imammedo@redhat.com>
Cc: Wei Yang <richardw.yang@linux.intel.com>,
qemu-trivial@nongnu.org, qemu-devel@nongnu.org,
laurent@vivier.eu, mst@redhat.com
Subject: Re: [Qemu-devel] [PATCH 1/3] hw/i386/pc.c: remove unused function pc_acpi_init()
Date: Tue, 29 Jan 2019 08:01:57 +0800 [thread overview]
Message-ID: <20190129000157.GA30562@richard> (raw)
In-Reply-To: <20190128143230.3bda74a0@redhat.com>
On Mon, Jan 28, 2019 at 02:32:30PM +0100, Igor Mammedov wrote:
>On Fri, 25 Jan 2019 14:01:55 +0800
>Wei Yang <richardw.yang@linux.intel.com> wrote:
>
>> Function pc_acpi_init() is now used in no place.
>s/is now used in no place./in not used anymore,/
>
>fixup the same phrase in other patches.
>
>otherwise series looks good, so fix commit messages and resubmit series.
>
>Also when sending multi-patch series, pls use cover letter
>(see help for git format-patch --cover-letter)
Thanks :-)
Will change and re-submit.
>
>
>> Remove the definition and declaration.
>>
>> Signed-off-by: Wei Yang <richardw.yang@linux.intel.com>
>> ---
>> hw/i386/pc.c | 27 ---------------------------
>> include/hw/i386/pc.h | 1 -
>> 2 files changed, 28 deletions(-)
>>
>> diff --git a/hw/i386/pc.c b/hw/i386/pc.c
>> index 5317e08f60..734d3268fa 100644
>> --- a/hw/i386/pc.c
>> +++ b/hw/i386/pc.c
>> @@ -1280,33 +1280,6 @@ void pc_pci_as_mapping_init(Object *owner, MemoryRegion *system_memory,
>> pci_address_space, -1);
>> }
>>
>> -void pc_acpi_init(const char *default_dsdt)
>> -{
>> - char *filename;
>> -
>> - if (acpi_tables != NULL) {
>> - /* manually set via -acpitable, leave it alone */
>> - return;
>> - }
>> -
>> - filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, default_dsdt);
>> - if (filename == NULL) {
>> - warn_report("failed to find %s", default_dsdt);
>> - } else {
>> - QemuOpts *opts = qemu_opts_create(qemu_find_opts("acpi"), NULL, 0,
>> - &error_abort);
>> - Error *err = NULL;
>> -
>> - qemu_opt_set(opts, "file", filename, &error_abort);
>> -
>> - acpi_table_add_builtin(opts, &err);
>> - if (err) {
>> - warn_reportf_err(err, "failed to load %s: ", filename);
>> - }
>> - g_free(filename);
>> - }
>> -}
>> -
>> void xen_load_linux(PCMachineState *pcms)
>> {
>> int i;
>> diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h
>> index 9d29c4b1df..541124ba6d 100644
>> --- a/include/hw/i386/pc.h
>> +++ b/include/hw/i386/pc.h
>> @@ -187,7 +187,6 @@ void pc_acpi_smi_interrupt(void *opaque, int irq, int level);
>>
>> void pc_cpus_init(PCMachineState *pcms);
>> void pc_hot_add_cpu(const int64_t id, Error **errp);
>> -void pc_acpi_init(const char *default_dsdt);
>>
>> void pc_guest_info_init(PCMachineState *pcms);
>>
--
Wei Yang
Help you, Help me
next prev parent reply other threads:[~2019-01-29 0:02 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-25 6:01 [Qemu-devel] [PATCH 1/3] hw/i386/pc.c: remove unused function pc_acpi_init() Wei Yang
2019-01-25 6:01 ` [Qemu-devel] [PATCH 2/3] hw/acpi: remove unused function acpi_table_add_builtin() Wei Yang
2019-01-25 6:01 ` [Qemu-devel] [PATCH 3/3] hw/acpi: remove unnecessary variable acpi_table_builtin Wei Yang
2019-01-28 13:32 ` [Qemu-devel] [PATCH 1/3] hw/i386/pc.c: remove unused function pc_acpi_init() Igor Mammedov
2019-01-29 0:01 ` Wei Yang [this message]
2019-01-29 0:08 ` [Qemu-devel] [PATCH v2 0/3] Trivial cleanup in hw/acpi Wei Yang
2019-01-29 0:08 ` [Qemu-devel] [PATCH v2 1/3] hw/i386/pc.c: remove unused function pc_acpi_init() Wei Yang
2019-01-29 8:25 ` Philippe Mathieu-Daudé
2019-01-29 0:08 ` [Qemu-devel] [PATCH v2 2/3] hw/acpi: remove unused function acpi_table_add_builtin() Wei Yang
2019-01-29 8:27 ` Philippe Mathieu-Daudé
2019-01-29 0:08 ` [Qemu-devel] [PATCH v2 3/3] hw/acpi: remove unnecessary variable acpi_table_builtin Wei Yang
2019-01-29 8:30 ` Philippe Mathieu-Daudé
2019-01-29 6:56 ` [Qemu-devel] [PATCH v2 0/3] Trivial cleanup in hw/acpi Philippe Mathieu-Daudé
2019-01-29 8:04 ` Wei Yang
2019-01-29 8:23 ` Philippe Mathieu-Daudé
2019-01-29 8:43 ` Laurent Vivier
2019-01-29 15:32 ` Wei Yang
2019-01-29 15:58 ` Michael S. Tsirkin
2019-01-29 23:58 ` Wei Yang
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=20190129000157.GA30562@richard \
--to=richardw.yang@linux.intel.com \
--cc=imammedo@redhat.com \
--cc=laurent@vivier.eu \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).