From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53562) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gKrCf-0001Bm-Eo for qemu-devel@nongnu.org; Thu, 08 Nov 2018 15:47:02 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gKrCa-0006Fu-6E for qemu-devel@nongnu.org; Thu, 08 Nov 2018 15:47:01 -0500 Received: from aserp2120.oracle.com ([141.146.126.78]:44648) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gKrCW-0006CQ-Gc for qemu-devel@nongnu.org; Thu, 08 Nov 2018 15:46:54 -0500 Date: Thu, 8 Nov 2018 22:45:31 +0200 From: Yuval Shaia Message-ID: <20181108204530.GA2768@lap1> References: <20181108160818.5485-1-yuval.shaia@oracle.com> <20181108160818.5485-20-yuval.shaia@oracle.com> <20181108172606.38672769.cohuck@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20181108172606.38672769.cohuck@redhat.com> Subject: Re: [Qemu-devel] [PATCH v2 19/22] vl: Introduce shutdown_notifiers List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Cornelia Huck Cc: marcel.apfelbaum@gmail.com, dmitry.fleytman@gmail.com, jasowang@redhat.com, eblake@redhat.com, armbru@redhat.com, pbonzini@redhat.com, qemu-devel@nongnu.org, shamir.rabinovitch@oracle.com On Thu, Nov 08, 2018 at 05:26:06PM +0100, Cornelia Huck wrote: > On Thu, 8 Nov 2018 18:08:15 +0200 > Yuval Shaia wrote: > > > Notifier will be used for signaling shutdown event to inform system is > > shutdown. This will allow devices and other component to run some > > cleanup code needed before VM is shutdown. > > > > Signed-off-by: Yuval Shaia > > --- > > include/sysemu/sysemu.h | 1 + > > vl.c | 15 ++++++++++++++- > > 2 files changed, 15 insertions(+), 1 deletion(-) > > > > > @@ -1809,6 +1811,12 @@ static void qemu_system_powerdown(void) > > notifier_list_notify(&powerdown_notifiers, NULL); > > } > > > > +static void qemu_system_shutdown(bool by_guest) > > I would pass the shutdown reason here directly (instead of only whether > this was triggered by the guest or not)... > > > +{ > > + qapi_event_send_shutdown(by_guest); > > + notifier_list_notify(&shutdown_notifiers, NULL); > > ...and also pass it to the notifiers here. If we have the info anyway, > why not simply pass it along. Agree, make sense. > > > +} > > + > > void qemu_system_powerdown_request(void) > > { > > trace_qemu_system_powerdown_request(); > > @@ -1821,6 +1829,11 @@ void qemu_register_powerdown_notifier(Notifier *notifier) > > notifier_list_add(&powerdown_notifiers, notifier); > > } > > > > +void qemu_register_shutdown_notifier(Notifier *notifier) > > +{ > > + notifier_list_add(&shutdown_notifiers, notifier); > > +} > > + > > void qemu_system_debug_request(void) > > { > > debug_requested = 1; > > @@ -1848,7 +1861,7 @@ static bool main_loop_should_exit(void) > > request = qemu_shutdown_requested(); > > if (request) { > > qemu_kill_report(); > > - qapi_event_send_shutdown(shutdown_caused_by_guest(request)); > > + qemu_system_shutdown(shutdown_caused_by_guest(request)); > > if (no_shutdown) { > > vm_stop(RUN_STATE_SHUTDOWN); > > } else { >