From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53790) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b6P1w-0002Ns-GT for qemu-devel@nongnu.org; Fri, 27 May 2016 17:10:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b6P1t-0001ZL-AN for qemu-devel@nongnu.org; Fri, 27 May 2016 17:10:52 -0400 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:42813) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b6P1r-0001VF-0s for qemu-devel@nongnu.org; Fri, 27 May 2016 17:10:49 -0400 Date: Fri, 27 May 2016 17:10:34 -0400 From: "Emilio G. Cota" Message-ID: <20160527211034.GA23409@flamenco> References: <1464138802-23503-1-git-send-email-cota@braap.org> <1464138802-23503-5-git-send-email-cota@braap.org> <5748B3AD.4050304@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <5748B3AD.4050304@gmail.com> Subject: Re: [Qemu-devel] [PATCH v6 04/15] include/processor.h: define cpu_relax() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Sergey Fedorov Cc: QEMU Developers , MTTCG Devel , Alex =?iso-8859-1?Q?Benn=E9e?= , Paolo Bonzini , Richard Henderson On Fri, May 27, 2016 at 23:53:01 +0300, Sergey Fedorov wrote: > On 25/05/16 04:13, Emilio G. Cota wrote: > > Taken from the linux kernel. > > > > Reviewed-by: Richard Henderson > > Reviewed-by: Alex Bennée > > Signed-off-by: Emilio G. Cota > > --- > > include/qemu/processor.h | 30 ++++++++++++++++++++++++++++++ > > 1 file changed, 30 insertions(+) > > create mode 100644 include/qemu/processor.h > > > > diff --git a/include/qemu/processor.h b/include/qemu/processor.h > > new file mode 100644 > > index 0000000..42bcc99 > > --- /dev/null > > +++ b/include/qemu/processor.h > > @@ -0,0 +1,30 @@ > > +/* > > + * Copyright (C) 2016, Emilio G. Cota > > + * > > If it's taken from the Linux kernel shouldn't it be attributed here? It's "taken" as in "we do like the kernel does", not as in "we're just copying this code". Emilio