From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Message-ID: <17204.38908.767118.59625@cargo.ozlabs.ibm.com> Date: Sat, 24 Sep 2005 10:04:12 +1000 From: Paul Mackerras To: Kumar Gala In-Reply-To: References: Cc: linuxppc-dev@ozlabs.org, arnd@arndb.de, linuxppc64-dev Subject: Re: [PATCH] powerpc: merged asm/cputable.h List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Kumar Gala writes: > +#ifdef __powerpc64__ > +extern struct cpu_spec *cur_cpu_spec; > +#else /* __powerpc64__ */ > +extern struct cpu_spec *cur_cpu_spec[]; > +#endif /* __powerpc64__ */ I would like to see this unified - it makes no sense for them to be different. We are unlikely to support asymmetric multiprocessing any time soon, so let's go with the single cur_cpu_spec pointer (a la ppc64). Paul.