From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 9EFC01A013A for ; Tue, 26 Aug 2014 03:54:50 +1000 (EST) Date: Mon, 25 Aug 2014 13:54:00 -0400 From: Vivek Goyal To: Geoff Levand Subject: Re: [PATCH 4/5] kexec: Add IND_FLAGS macro Message-ID: <20140825175400.GG14379@redhat.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: Cc: kexec@lists.infradead.org, linux-kernel@vger.kernel.org, Eric Biederman , Andrew Morton , linuxppc-dev@lists.ozlabs.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Fri, Aug 22, 2014 at 06:39:47PM +0000, Geoff Levand wrote: > Add a new kexec preprocessor macro IND_FLAGS, which is the bitwise OR of > all the possible kexec IND_ kimage_entry indirection flags. > > Having this macro allows for simplified code in the prosessing of the > kexec kimage_entry items. > > Signed-off-by: Geoff Levand Acked-by: Vivek Goyal Vivek > --- > include/linux/kexec.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/include/linux/kexec.h b/include/linux/kexec.h > index 8c628ca..a4758f9 100644 > --- a/include/linux/kexec.h > +++ b/include/linux/kexec.h > @@ -10,6 +10,7 @@ > #define IND_INDIRECTION (1 << IND_INDIRECTION_BIT) > #define IND_DONE (1 << IND_DONE_BIT) > #define IND_SOURCE (1 << IND_SOURCE_BIT) > +#define IND_FLAGS (IND_DESTINATION | IND_INDIRECTION | IND_DONE | IND_SOURCE) > > #if !defined(__ASSEMBLY__) > > -- > 1.9.1 > > > > _______________________________________________ > kexec mailing list > kexec@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/kexec