[PATCH v3 0/4] Adds support for running QEMU natively on windows-arm64

Pierrick Bouvier posted 4 patches 1 year, 2 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20230220111215.27471-1-pierrick.bouvier@linaro.org
Maintainers: Stefan Weil <sw@weilnetz.de>, Paolo Bonzini <pbonzini@redhat.com>, "Marc-André Lureau" <marcandre.lureau@redhat.com>, "Daniel P. Berrangé" <berrange@redhat.com>, Thomas Huth <thuth@redhat.com>, "Philippe Mathieu-Daudé" <philmd@linaro.org>, Konstantin Kostiuk <kkostiuk@redhat.com>, Michael Roth <michael.roth@amd.com>, Daniel Henrique Barboza <danielhb413@gmail.com>, "Cédric Le Goater" <clg@kaod.org>, David Gibson <david@gibson.dropbear.id.au>, Greg Kurz <groug@kaod.org>, Richard Henderson <richard.henderson@linaro.org>
There is a newer version of this series
include/sysemu/os-win32.h | 25 +++++++++++++++++++++++--
meson.build               | 24 ++++++++++++++++++++++++
qga/vss-win32/install.cpp |  2 +-
target/ppc/dfp_helper.c   |  4 ++--
util/cacheflush.c         | 14 +++++++++++---
5 files changed, 61 insertions(+), 8 deletions(-)
[PATCH v3 0/4] Adds support for running QEMU natively on windows-arm64
Posted by Pierrick Bouvier 1 year, 2 months ago
Since v2:

- Delete superfluous comment on unreachable code
- Fix style for multiline comments

Since v1:

- Comment why we use generic version of flush_idcache_range
- Ensure __mingw_setjmp/longjmp are available using meson
- Fix a warning by calling g_assert_not_reached() instead of initializing a
  variable

As before this was tested with:
- make check
- boot an x64 debian bullseye vm
- boot an arm64 ubuntu 22.10 vm

Thanks

Pierrick Bouvier (4):
  util/cacheflush: fix cache on windows-arm64
  sysemu/os-win32: fix setjmp/longjmp on windows-arm64
  qga/vss-win32: fix warning for clang++-15
  target/ppc: fix warning with clang-15

 include/sysemu/os-win32.h | 25 +++++++++++++++++++++++--
 meson.build               | 24 ++++++++++++++++++++++++
 qga/vss-win32/install.cpp |  2 +-
 target/ppc/dfp_helper.c   |  4 ++--
 util/cacheflush.c         | 14 +++++++++++---
 5 files changed, 61 insertions(+), 8 deletions(-)

-- 
2.30.2
Re: [PATCH v3 0/4] Adds support for running QEMU natively on windows-arm64
Posted by Philippe Mathieu-Daudé 1 year, 2 months ago
Hi Pierrick,

On 20/2/23 12:12, Pierrick Bouvier wrote:
> Since v2:
> 
> - Delete superfluous comment on unreachable code
> - Fix style for multiline comments
> 
> Since v1:
> 
> - Comment why we use generic version of flush_idcache_range
> - Ensure __mingw_setjmp/longjmp are available using meson
> - Fix a warning by calling g_assert_not_reached() instead of initializing a
>    variable
> 
> As before this was tested with:
> - make check
> - boot an x64 debian bullseye vm
> - boot an arm64 ubuntu 22.10 vm
> 
> Thanks
> 
> Pierrick Bouvier (4):
>    util/cacheflush: fix cache on windows-arm64
>    sysemu/os-win32: fix setjmp/longjmp on windows-arm64
>    qga/vss-win32: fix warning for clang++-15
>    target/ppc: fix warning with clang-15

You forgot to include the 'Reviewed-by/Acked-by' tags from your previous
versions. See from these guidelines:
https://www.qemu.org/docs/master/devel/submitting-a-patch.html#proper-use-of-reviewed-by-tags-can-aid-review

   When reviewing a large series, a reviewer can reply to some of the
   patches with a Reviewed-by tag, stating that they are happy with
   that patch in isolation [...]. You should then update those commit
   messages by hand to include the Reviewed-by tag, so that in the next
   revision, reviewers can spot which patches were already clean from
   the previous round.

No need for a v4, you can reply to each patch with the missed tags.
Re: [PATCH v3 0/4] Adds support for running QEMU natively on windows-arm64
Posted by Pierrick Bouvier 1 year, 2 months ago
On 2/20/23 12:33, Philippe Mathieu-Daudé wrote:
> Hi Pierrick,
> 
> On 20/2/23 12:12, Pierrick Bouvier wrote:
>> Since v2:
>>
>> - Delete superfluous comment on unreachable code
>> - Fix style for multiline comments
>>
>> Since v1:
>>
>> - Comment why we use generic version of flush_idcache_range
>> - Ensure __mingw_setjmp/longjmp are available using meson
>> - Fix a warning by calling g_assert_not_reached() instead of initializing a
>>     variable
>>
>> As before this was tested with:
>> - make check
>> - boot an x64 debian bullseye vm
>> - boot an arm64 ubuntu 22.10 vm
>>
>> Thanks
>>
>> Pierrick Bouvier (4):
>>     util/cacheflush: fix cache on windows-arm64
>>     sysemu/os-win32: fix setjmp/longjmp on windows-arm64
>>     qga/vss-win32: fix warning for clang++-15
>>     target/ppc: fix warning with clang-15
> 
> You forgot to include the 'Reviewed-by/Acked-by' tags from your previous
> versions. See from these guidelines:
> https://www.qemu.org/docs/master/devel/submitting-a-patch.html#proper-use-of-reviewed-by-tags-can-aid-review
> 
>     When reviewing a large series, a reviewer can reply to some of the
>     patches with a Reviewed-by tag, stating that they are happy with
>     that patch in isolation [...]. You should then update those commit
>     messages by hand to include the Reviewed-by tag, so that in the next
>     revision, reviewers can spot which patches were already clean from
>     the previous round.
> 
> No need for a v4, you can reply to each patch with the missed tags.

Thanks for your kind guidance. I was not sure if I or a maintainer was 
"allowed" to add those tags in commit message.

I'll do it (in case a v4 is needed), and for now, just reply with 
previous ones.