From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cooper Subject: Re: [PATCH v4 1/5] xen/compiler: Replace opencoded __attribute__((noreturn)) Date: Tue, 25 Feb 2014 13:48:37 +0000 Message-ID: <530C9F35.2020101@citrix.com> References: <1393331011-22240-1-git-send-email-andrew.cooper3@citrix.com> <1393331011-22240-2-git-send-email-andrew.cooper3@citrix.com> <530CAA63020000780011F300@nat28.tlf.novell.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <530CAA63020000780011F300@nat28.tlf.novell.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: Jan Beulich Cc: Keir Fraser , Stefano Stabellini , Xen-devel List-Id: xen-devel@lists.xenproject.org On 25/02/14 13:36, Jan Beulich wrote: >>>> On 25.02.14 at 13:23, Andrew Cooper wrote: >> Changes in v4: >> * Standardise on noreturn before the function name > Almost: > >> --- a/xen/include/asm-arm/early_printk.h >> +++ b/xen/include/asm-arm/early_printk.h >> @@ -26,7 +26,7 @@ >> >> void early_printk(const char *fmt, ...) >> __attribute__((format (printf, 1, 2))); >> -void early_panic(const char *fmt, ...) __attribute__((noreturn)) >> +void early_panic(const char *fmt, ...) noreturn >> __attribute__((format (printf, 1, 2))); > Nevertheless, no need to re-submit afaic. > > Jan > Almost! but as Juliens patch removes early_panic(), this is probably safe to leave (and would prevent him needing to respin the series) ~Andrew