qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Thomas Huth <thuth@redhat.com>
To: "Philippe Mathieu-Daudé" <philmd@linaro.org>,
	"John Snow" <jsnow@redhat.com>,
	qemu-devel@nongnu.org
Cc: BALATON Zoltan <balaton@eik.bme.hu>, qemu-block@nongnu.org
Subject: Re: [PATCH 3/7] hw/ide: Move IDE device related definitions to ide-dev.h
Date: Mon, 19 Feb 2024 20:17:41 +0100	[thread overview]
Message-ID: <f1ca2012-c01f-48e0-9d3e-e9a7faa8736e@redhat.com> (raw)
In-Reply-To: <f89c3710-5bb5-4060-93f0-84024ffd5038@linaro.org>

On 19/02/2024 12.32, Philippe Mathieu-Daudé wrote:
> On 19/2/24 11:49, Thomas Huth wrote:
>> Let's start to unentangle internal.h by moving public IDE device
>> related definitions to ide-dev.h.
>>
>> Signed-off-by: Thomas Huth <thuth@redhat.com>
>> ---
>>   include/hw/ide/ide-dev.h  | 145 +++++++++++++++++++++++++++++++++++++-
>>   include/hw/ide/internal.h | 145 +-------------------------------------
>>   hw/ide/ide-dev.c          |   1 +
>>   3 files changed, 146 insertions(+), 145 deletions(-)
>>
>> diff --git a/include/hw/ide/ide-dev.h b/include/hw/ide/ide-dev.h
>> index 7e9663cda9..de88784a25 100644
>> --- a/include/hw/ide/ide-dev.h
>> +++ b/include/hw/ide/ide-dev.h
>> @@ -20,9 +20,152 @@
>>   #ifndef IDE_DEV_H
>>   #define IDE_DEV_H
>> +#include "sysemu/dma.h"
> 
> Not required.

It's required for QEMUSGList that is used in struct IDEState.

>>   #include "hw/qdev-properties.h"
>>   #include "hw/block/block.h"
>> -#include "hw/ide/internal.h"
>> +
>> +typedef struct IDEDevice IDEDevice;
>> +typedef struct IDEState IDEState;
> 
>> +typedef struct IDEDMA IDEDMA;
>> +typedef struct IDEDMAOps IDEDMAOps;
>> +typedef struct IDEBus IDEBus;
> 
> Looking at next patches, better forward-declare IDEBus and
> IDEDMA in "qemu/typedefs.h".

I really dislike using qemu/typedefs.h for things that are not really part 
of the core framework, since it's a 
touch-it-once-and-everything-gets-recompiled header. So IMHO the typedefs 
here are the lesser evil.

> IDEDMAOps and "sysemu/dma.h" belong to "hw/ide/ide-dma.h.

Ok, I can move the typedef for IDEDMAOps to ide-dma.h instead.

  Thomas




  reply	other threads:[~2024-02-19 19:19 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-19 10:49 [PATCH 0/7] hw/ide: Clean up hw/ide/qdev.c and include/hw/ide/internal.h Thomas Huth
2024-02-19 10:49 ` [PATCH 1/7] hw/ide: Add the possibility to disable the CompactFlash device in the build Thomas Huth
2024-02-19 10:49 ` [PATCH 2/7] hw/ide: Split qdev.c into ide-bus.c and ide-dev.c Thomas Huth
2024-02-19 11:45   ` BALATON Zoltan
2024-02-19 18:31     ` Thomas Huth
2024-02-19 10:49 ` [PATCH 3/7] hw/ide: Move IDE device related definitions to ide-dev.h Thomas Huth
2024-02-19 11:32   ` Philippe Mathieu-Daudé
2024-02-19 19:17     ` Thomas Huth [this message]
2024-02-20  7:18       ` Philippe Mathieu-Daudé
2024-02-19 10:49 ` [PATCH 4/7] hw/ide: Move IDE bus related definitions to a new header ide-bus.h Thomas Huth
2024-02-19 10:49 ` [PATCH 5/7] hw/ide: Move IDE DMA related definitions to a separate header ide-dma.h Thomas Huth
2024-02-19 11:53   ` BALATON Zoltan
2024-02-19 19:49     ` Thomas Huth
2024-02-19 10:49 ` [PATCH 6/7] hw/ide: Remove the include/hw/ide.h legacy file Thomas Huth
2024-02-19 10:49 ` [PATCH 7/7] hw/ide: Stop exposing internal.h to non-IDE files Thomas Huth
2024-02-19 11:32 ` [PATCH 0/7] hw/ide: Clean up hw/ide/qdev.c and include/hw/ide/internal.h Philippe Mathieu-Daudé

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=f1ca2012-c01f-48e0-9d3e-e9a7faa8736e@redhat.com \
    --to=thuth@redhat.com \
    --cc=balaton@eik.bme.hu \
    --cc=jsnow@redhat.com \
    --cc=philmd@linaro.org \
    --cc=qemu-block@nongnu.org \
    --cc=qemu-devel@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).