From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55969) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bTnLI-00040G-PJ for qemu-devel@nongnu.org; Sun, 31 Jul 2016 05:47:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bTnLG-0000Fl-I2 for qemu-devel@nongnu.org; Sun, 31 Jul 2016 05:47:31 -0400 Received: from mail-wm0-x243.google.com ([2a00:1450:400c:c09::243]:36840) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bTnLG-0000FL-6x for qemu-devel@nongnu.org; Sun, 31 Jul 2016 05:47:30 -0400 Received: by mail-wm0-x243.google.com with SMTP id x83so21885485wma.3 for ; Sun, 31 Jul 2016 02:47:28 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <20160725135311.GI1835@perard.uk.xensource.com> References: <1468151270-12984-1-git-send-email-emilcondrea@gmail.com> <1468151270-12984-5-git-send-email-emilcondrea@gmail.com> <20160725135311.GI1835@perard.uk.xensource.com> From: Emil Condrea Date: Sun, 31 Jul 2016 12:47:08 +0300 Message-ID: Content-Type: text/plain; charset=UTF-8 Subject: Re: [Qemu-devel] [Xen-devel] [PATCH 04/19] xen: Move evtchn functions to xen_pvdev.c List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony PERARD Cc: qemu-devel , "wei.liu2" , stefanb , Stefano Stabellini , "xen-devel@lists.xen.org" , "Xu, Quan" , Daniel De Graaf , Eric Blake On Mon, Jul 25, 2016 at 4:53 PM, Anthony PERARD wrote: > On Sun, Jul 10, 2016 at 02:47:35PM +0300, Emil Condrea wrote: > > The name of the functions moved: > > * xen_be_evtchn_event > > * xen_be_unbind_evtchn > > * xen_be_send_notify > > > > Signed-off-by: Emil Condrea > > --- > > hw/xen/xen_backend.c | 37 +------------------------------------ > > hw/xen/xen_pvdev.c | 35 +++++++++++++++++++++++++++++++++++ > > include/hw/xen/xen_backend.h | 2 -- > > include/hw/xen/xen_pvdev.h | 4 ++++ > > 4 files changed, 40 insertions(+), 38 deletions(-) > > > > diff --git a/hw/xen/xen_backend.c b/hw/xen/xen_backend.c > > index 0a9f9bb..5f2821a 100644 > > --- a/hw/xen/xen_backend.c > > +++ b/hw/xen/xen_backend.c > > @@ -693,4 +658,4 @@ static void xenbe_register_types(void) > > type_register_static(&xensysdev_info); > > } > > > > -type_init(xenbe_register_types); > > +type_init(xenbe_register_types); > > \ No newline at end of file > > Looks like this change does not belong to this patch. > Will fix this in v10. > > -- > Anthony PERARD >