From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wei Liu Subject: Re: [PATCH 11/12] xen/events: Add the hypervisor interface for the FIFO-based event channels Date: Wed, 20 Mar 2013 14:03:29 +0000 Message-ID: <1363788209.3088.42.camel@zion.uk.xensource.com> References: <1363727099-25519-1-git-send-email-david.vrabel@citrix.com> <1363727099-25519-12-git-send-email-david.vrabel@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1363727099-25519-12-git-send-email-david.vrabel@citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: David Vrabel Cc: "Keir (Xen.org)" , Konrad Rzeszutek Wilk , wei.liu2@citrix.com, "xen-devel@lists.xen.org" List-Id: xen-devel@lists.xenproject.org On Tue, 2013-03-19 at 21:04 +0000, David Vrabel wrote: > From: David Vrabel > > Add the hypercall sub-ops and the structures for the shared data used > in the FIFO-based event channel ABI. > > Signed-off-by: David Vrabel > --- > include/xen/interface/event_channel.h | 70 +++++++++++++++++++++++++++++++++ > 1 files changed, 70 insertions(+), 0 deletions(-) > > diff --git a/include/xen/interface/event_channel.h b/include/xen/interface/event_channel.h > index f494292..10472f5 100644 > --- a/include/xen/interface/event_channel.h > +++ b/include/xen/interface/event_channel.h > @@ -190,6 +190,50 @@ struct evtchn_reset { > }; > typedef struct evtchn_reset evtchn_reset_t; > This typedef slipped into the header and should be removed. No typedef in Linux header. Wei.