From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Grall Subject: Re: [PATCH for Xen 4.5] xen/arm: Add support for GICv3 for domU Date: Tue, 18 Nov 2014 15:26:05 +0000 Message-ID: <546B650D.8040304@linaro.org> References: <1414695092-20761-1-git-send-email-julien.grall@linaro.org> <54535E240200007800043DAC@mail.emea.novell.com> <546B5F15.5060702@linaro.org> <21611.24907.144396.509457@mariner.uk.xensource.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta4.messagelabs.com ([85.158.143.247]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1XqkfR-0002XW-GG for xen-devel@lists.xenproject.org; Tue, 18 Nov 2014 15:26:09 +0000 Received: by mail-wg0-f53.google.com with SMTP id l18so4346380wgh.40 for ; Tue, 18 Nov 2014 07:26:08 -0800 (PST) In-Reply-To: <21611.24907.144396.509457@mariner.uk.xensource.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: Ian Jackson Cc: ian.campbell@citrix.com, Vijaya Kumar K , tim@xen.org, stefano.stabellini@citrix.com, Jan Beulich , xen-devel@lists.xenproject.org, Daniel De Graaf List-Id: xen-devel@lists.xenproject.org On 11/18/2014 03:10 PM, Ian Jackson wrote: > Julien Grall writes ("Re: [PATCH for Xen 4.5] xen/arm: Add support for GICv3 for domU"): >> I need to create an empty structure. Is the dummy field really needed? > > Empty structs are a gcc extension (`(gcc-4.4) Empty Structures'). I > would be very surprised if clang didn't support them too. AFAIK, clang doesn't complain about empty structures. > AIUI our policy, gcc extensions are fine except in the Xen public > headers. We have at least 2 "empty" structure on the ARM public header. >> If so, did you meant? >> >> struct >> { >> int :0; >> } > > Whatever you do, don't do this! Would something like below be better? struct { int dummy:1 }; Regards, -- Julien Grall