From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from song.cn.fujitsu.com (unknown [222.73.24.84]) by ozlabs.org (Postfix) with ESMTP id 0DFF62C020A for ; Thu, 12 Dec 2013 12:44:17 +1100 (EST) Message-ID: <52A912E3.1060802@cn.fujitsu.com> Date: Thu, 12 Dec 2013 09:35:31 +0800 From: Zhang Yanfei MIME-Version: 1.0 To: Geoff Levand Subject: Re: [PATCH 2/4] kexec: Add IND_FLAGS macro References: <3d9d024551c3c0e560d77f81926cb5774dda7067.1386807069.git.geoff@infradead.org> In-Reply-To: <3d9d024551c3c0e560d77f81926cb5774dda7067.1386807069.git.geoff@infradead.org> Content-Type: text/plain; charset=ISO-8859-1 Cc: linuxppc-dev@lists.ozlabs.org, kexec@lists.infradead.org, Eric Biederman , Paul Mackerras List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Hello On 12/12/2013 08:18 AM, 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. Where? I didn't see any place you use this macro to help simplification. Thanks Zhang > > Signed-off-by: Geoff Levand for Huawei, Linaro > --- > include/linux/kexec.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/include/linux/kexec.h b/include/linux/kexec.h > index d78d28a..f755ec3 100644 > --- a/include/linux/kexec.h > +++ b/include/linux/kexec.h > @@ -67,6 +67,7 @@ typedef unsigned long kimage_entry_t; > #define IND_INDIRECTION 0x2 > #define IND_DONE 0x4 > #define IND_SOURCE 0x8 > +#define IND_FLAGS (IND_DESTINATION | IND_INDIRECTION | IND_DONE | IND_SOURCE) > > struct kexec_segment { > void __user *buf; > -- Thanks. Zhang Yanfei