From: BALATON Zoltan <balaton@eik.bme.hu>
To: Bernhard Beschow <shentey@gmail.com>
Cc: qemu-devel@nongnu.org, "Fabiano Rosas" <farosas@suse.de>,
"Michael S. Tsirkin" <mst@redhat.com>,
"Marc-André Lureau" <marcandre.lureau@redhat.com>,
qemu-ppc@nongnu.org, "Paolo Bonzini" <pbonzini@redhat.com>,
"Leonardo Bras" <leobras@redhat.com>,
"Kevin Wolf" <kwolf@redhat.com>, "Peter Xu" <peterx@redhat.com>,
"David Hildenbrand" <david@redhat.com>,
"Philippe Mathieu-Daudé" <philmd@linaro.org>,
"Juan Quintela" <quintela@redhat.com>,
"John Snow" <jsnow@redhat.com>,
"Jiaxun Yang" <jiaxun.yang@flygoat.com>,
"Hanna Reitz" <hreitz@redhat.com>,
qemu-block@nongnu.org
Subject: Re: [PATCH v2 01/12] hw/block/fdc-isa: Free struct FDCtrl from PortioList
Date: Tue, 19 Dec 2023 00:54:15 +0100 (CET) [thread overview]
Message-ID: <b49be117-e38f-4c20-6d24-491b7d499642@eik.bme.hu> (raw)
In-Reply-To: <20231218185114.119736-2-shentey@gmail.com>
On Mon, 18 Dec 2023, Bernhard Beschow wrote:
> FDCtrl::portio_list isn't used inside FDCtrl context but only inside
> FDCtrlISABus context, so more it there.
"more" -> "move", you have the same typo in several other commit messages.
Not sure I like the C++ism FDCtrl::portio_list and would write out "The
portio_list field of FDCtrl" instead but not a big deal. Also the subject
could say "Move portio_list from FDCtrl to FDCtrlISABus" which is less
ambiguous than using free that's ususally associated with freeing memory.
Otherwise
Reviewed-by: BALATON Zoltan <balaton@eik.bme.hu>
> Signed-off-by: Bernhard Beschow <shentey@gmail.com>
> ---
> hw/block/fdc-internal.h | 2 --
> hw/block/fdc-isa.c | 4 +++-
> 2 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/hw/block/fdc-internal.h b/hw/block/fdc-internal.h
> index 036392e9fc..fef2bfbbf5 100644
> --- a/hw/block/fdc-internal.h
> +++ b/hw/block/fdc-internal.h
> @@ -26,7 +26,6 @@
> #define HW_BLOCK_FDC_INTERNAL_H
>
> #include "exec/memory.h"
> -#include "exec/ioport.h"
> #include "hw/block/block.h"
> #include "hw/block/fdc.h"
> #include "qapi/qapi-types-block.h"
> @@ -140,7 +139,6 @@ struct FDCtrl {
> /* Timers state */
> uint8_t timer0;
> uint8_t timer1;
> - PortioList portio_list;
> };
>
> extern const FDFormat fd_formats[];
> diff --git a/hw/block/fdc-isa.c b/hw/block/fdc-isa.c
> index 7ec075e470..b4c92b40b3 100644
> --- a/hw/block/fdc-isa.c
> +++ b/hw/block/fdc-isa.c
> @@ -42,6 +42,7 @@
> #include "sysemu/block-backend.h"
> #include "sysemu/blockdev.h"
> #include "sysemu/sysemu.h"
> +#include "exec/ioport.h"
> #include "qemu/log.h"
> #include "qemu/main-loop.h"
> #include "qemu/module.h"
> @@ -60,6 +61,7 @@ struct FDCtrlISABus {
> uint32_t irq;
> uint32_t dma;
> struct FDCtrl state;
> + PortioList portio_list;
> int32_t bootindexA;
> int32_t bootindexB;
> };
> @@ -91,7 +93,7 @@ static void isabus_fdc_realize(DeviceState *dev, Error **errp)
> FDCtrl *fdctrl = &isa->state;
> Error *err = NULL;
>
> - isa_register_portio_list(isadev, &fdctrl->portio_list,
> + isa_register_portio_list(isadev, &isa->portio_list,
> isa->iobase, fdc_portio_list, fdctrl,
> "fdc");
>
>
next prev parent reply other threads:[~2023-12-18 23:55 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-18 18:51 [PATCH v2 00/12] hw/isa/vt82c686: Implement relocation and toggling of SuperI/O functions Bernhard Beschow
2023-12-18 18:51 ` [PATCH v2 01/12] hw/block/fdc-isa: Free struct FDCtrl from PortioList Bernhard Beschow
2023-12-18 23:54 ` BALATON Zoltan [this message]
2023-12-18 18:51 ` [PATCH v2 02/12] hw/block/fdc-sysbus: Free struct FDCtrl from MemoryRegion Bernhard Beschow
2023-12-18 23:55 ` BALATON Zoltan
2023-12-18 18:51 ` [PATCH v2 03/12] hw/char/serial: Free struct SerialState " Bernhard Beschow
2023-12-18 23:58 ` BALATON Zoltan
2023-12-18 18:51 ` [PATCH v2 04/12] hw/char/parallel: Free struct ParallelState from PortioList Bernhard Beschow
2023-12-19 0:01 ` BALATON Zoltan
2023-12-18 18:51 ` [PATCH v2 05/12] exec/ioport: Resolve redundant .base attribute in struct MemoryRegionPortio Bernhard Beschow
2023-12-18 18:51 ` [PATCH v2 06/12] exec/ioport: Add portio_list_set_address() Bernhard Beschow
2023-12-19 0:06 ` BALATON Zoltan
2023-12-18 18:51 ` [PATCH v2 07/12] exec/ioport: Add portio_list_set_enabled() Bernhard Beschow
2023-12-18 18:51 ` [PATCH v2 08/12] hw/block/fdc-isa: Implement relocation and toggling for TYPE_ISA_FDC Bernhard Beschow
2023-12-19 0:09 ` BALATON Zoltan
2023-12-21 14:26 ` Bernhard Beschow
2023-12-18 18:51 ` [PATCH v2 09/12] hw/char/serial-isa: Implement relocation and toggling for TYPE_ISA_SERIAL Bernhard Beschow
2023-12-18 18:51 ` [PATCH v2 10/12] hw/char/parallel-isa: Implement relocation and toggling for TYPE_ISA_PARALLEL Bernhard Beschow
2023-12-18 18:51 ` [PATCH v2 11/12] hw/ppc/pegasos2: Let pegasos2 machine configure SuperI/O functions Bernhard Beschow
2023-12-19 0:11 ` BALATON Zoltan
2023-12-21 14:29 ` Bernhard Beschow
2023-12-18 18:51 ` [PATCH v2 12/12] hw/isa/vt82c686: Implement relocation and toggling of " Bernhard Beschow
2023-12-19 0:26 ` BALATON Zoltan
2023-12-19 19:31 ` Bernhard Beschow
2023-12-24 0:25 ` BALATON Zoltan
2023-12-24 0:51 ` BALATON Zoltan
2024-01-02 22:01 ` Bernhard Beschow
2024-01-03 12:26 ` BALATON Zoltan
2024-01-06 21:10 ` Bernhard Beschow
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=b49be117-e38f-4c20-6d24-491b7d499642@eik.bme.hu \
--to=balaton@eik.bme.hu \
--cc=david@redhat.com \
--cc=farosas@suse.de \
--cc=hreitz@redhat.com \
--cc=jiaxun.yang@flygoat.com \
--cc=jsnow@redhat.com \
--cc=kwolf@redhat.com \
--cc=leobras@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peterx@redhat.com \
--cc=philmd@linaro.org \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=quintela@redhat.com \
--cc=shentey@gmail.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 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).