From: Alistair Francis <alistair23@gmail.com>
To: "Clément Chigot" <chigot@adacore.com>
Cc: qemu-devel@nongnu.org, qemu-riscv@nongnu.org, peter.maydell@linaro.org
Subject: Re: [PATCH v3 4/5] hw/char: riscv_htif: replace exit calls with proper shutdown
Date: Mon, 9 Oct 2023 11:21:13 +1000 [thread overview]
Message-ID: <CAKmqyKNKEYJsnoWoDZvmnA8knHWeBSEB7NgWBVyg6JP+MLhT5Q@mail.gmail.com> (raw)
In-Reply-To: <CAJ307EizmMZDP2ujNkd7EduNf5aLb7khUXtfhZHPo+_yvzk7PA@mail.gmail.com>
On Mon, Oct 2, 2023 at 7:32 PM Clément Chigot <chigot@adacore.com> wrote:
>
> On Fri, Sep 22, 2023 at 7:20 AM Alistair Francis <alistair23@gmail.com> wrote:
> >
> > On Thu, Sep 7, 2023 at 9:26 PM Clément Chigot <chigot@adacore.com> wrote:
> > >
> > > This replaces the exit calls by shutdown requests, ensuring a proper
> > > cleanup of Qemu. Otherwise, some connections like gdb could be broken
> > > before its final packet ("Wxx") is being sent. This part, being done
> > > inside qemu_cleanup function, can be reached only when the main loop
> > > exits after a shutdown request.
> > >
> > > Signed-off-by: Clément Chigot <chigot@adacore.com>
> >
> > Do you mind rebasing this on:
> > https://github.com/alistair23/qemu/tree/riscv-to-apply.next
>
> Thanks for the review.
> Just a quick question on the procedure side, is there any special tag
> or something to say in the cover letter to state that it has been
> rebased on riscv-to-apply instead of the usual master?
You can use the "Based-on" tag. There is some more details here:
https://www.qemu.org/docs/master/devel/submitting-a-patch.html#id33
Alistair
>
> Clément
>
> > Alistair
> >
> > > ---
> > > hw/char/riscv_htif.c | 5 ++++-
> > > 1 file changed, 4 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/hw/char/riscv_htif.c b/hw/char/riscv_htif.c
> > > index 37d3ccc76b..7e9b6fcc98 100644
> > > --- a/hw/char/riscv_htif.c
> > > +++ b/hw/char/riscv_htif.c
> > > @@ -31,6 +31,7 @@
> > > #include "qemu/error-report.h"
> > > #include "exec/address-spaces.h"
> > > #include "sysemu/dma.h"
> > > +#include "sysemu/runstate.h"
> > >
> > > #define RISCV_DEBUG_HTIF 0
> > > #define HTIF_DEBUG(fmt, ...) \
> > > @@ -205,7 +206,9 @@ static void htif_handle_tohost_write(HTIFState *s, uint64_t val_written)
> > > g_free(sig_data);
> > > }
> > >
> > > - exit(exit_code);
> > > + qemu_system_shutdown_request_with_code(
> > > + SHUTDOWN_CAUSE_GUEST_SHUTDOWN, exit_code);
> > > + return;
> > > } else {
> > > uint64_t syscall[8];
> > > cpu_physical_memory_read(payload, syscall, sizeof(syscall));
> > > --
> > > 2.25.1
> > >
next prev parent reply other threads:[~2023-10-09 1:22 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-07 11:26 [PATCH v3 0/5] Risc-V/gdb: replace exit calls with proper shutdown Clément Chigot
2023-09-07 11:26 ` [PATCH v3 1/5] softmmu: add means to pass an exit code when requesting a shutdown Clément Chigot
2023-09-18 2:03 ` Alistair Francis
2023-09-07 11:26 ` [PATCH v3 2/5] softmmu: pass the main loop status to gdb "Wxx" packet Clément Chigot
2023-09-18 2:05 ` Alistair Francis
2023-09-07 11:26 ` [PATCH v3 3/5] hw/misc/sifive_test.c: replace exit calls with proper shutdown Clément Chigot
2023-09-18 2:06 ` Alistair Francis
2023-09-07 11:26 ` [PATCH v3 4/5] hw/char: riscv_htif: " Clément Chigot
2023-09-18 2:07 ` Alistair Francis
2023-09-22 5:20 ` Alistair Francis
2023-10-02 9:32 ` Clément Chigot
2023-10-09 1:21 ` Alistair Francis [this message]
2023-09-07 11:26 ` [PATCH v3 5/5] gdbstub: replace exit calls with proper shutdown for softmmu Clément Chigot
2023-09-18 2:09 ` Alistair Francis
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=CAKmqyKNKEYJsnoWoDZvmnA8knHWeBSEB7NgWBVyg6JP+MLhT5Q@mail.gmail.com \
--to=alistair23@gmail.com \
--cc=chigot@adacore.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-riscv@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).