From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: Li Qiang <liq3ea@gmail.com>, mst@redhat.com, marcel.apfelbaum@gmail.com
Cc: qemu-trivial@nongnu.org, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] i440fx: use ARRAY_SIZE for pam_regions
Date: Thu, 11 Oct 2018 14:18:21 +0200 [thread overview]
Message-ID: <309b17e0-0353-86b6-ed4f-e80b8a4ea384@redhat.com> (raw)
In-Reply-To: <1539260043-4264-1-git-send-email-liq3ea@gmail.com>
On 11/10/2018 14:14, Li Qiang wrote:
> Cc: qemu-trivial@nongnu.org
>
> Signed-off-by: Li Qiang <liq3ea@gmail.com>
Good cleanup!
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> ---
> hw/pci-host/piix.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/hw/pci-host/piix.c b/hw/pci-host/piix.c
> index 0e608347c1..230d5d2ea3 100644
> --- a/hw/pci-host/piix.c
> +++ b/hw/pci-host/piix.c
> @@ -142,7 +142,7 @@ static void i440fx_update_memory_mappings(PCII440FXState *d)
> PCIDevice *pd = PCI_DEVICE(d);
>
> memory_region_transaction_begin();
> - for (i = 0; i < 13; i++) {
> + for (i = 0; i < ARRAY_SIZE(d->pam_regions); i++) {
> pam_update(&d->pam_regions[i], i,
> pd->config[I440FX_PAM + (DIV_ROUND_UP(i, 2))]);
> }
> @@ -401,7 +401,7 @@ PCIBus *i440fx_init(const char *host_type, const char *pci_type,
>
> init_pam(dev, f->ram_memory, f->system_memory, f->pci_address_space,
> &f->pam_regions[0], PAM_BIOS_BASE, PAM_BIOS_SIZE);
> - for (i = 0; i < 12; ++i) {
> + for (i = 0; i < ARRAY_SIZE(f->pam_regions) - 1; ++i) {
> init_pam(dev, f->ram_memory, f->system_memory, f->pci_address_space,
> &f->pam_regions[i+1], PAM_EXPAN_BASE + i * PAM_EXPAN_SIZE,
> PAM_EXPAN_SIZE);
>
prev parent reply other threads:[~2018-10-11 12:18 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-10-11 12:14 [Qemu-devel] [PATCH] i440fx: use ARRAY_SIZE for pam_regions Li Qiang
2018-10-11 12:18 ` Philippe Mathieu-Daudé [this message]
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=309b17e0-0353-86b6-ed4f-e80b8a4ea384@redhat.com \
--to=philmd@redhat.com \
--cc=liq3ea@gmail.com \
--cc=marcel.apfelbaum@gmail.com \
--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).