From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57811) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YzKVx-0003TI-FO for qemu-devel@nongnu.org; Mon, 01 Jun 2015 03:52:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YzKVu-0006xH-Bg for qemu-devel@nongnu.org; Mon, 01 Jun 2015 03:52:05 -0400 Received: from mail-wg0-x235.google.com ([2a00:1450:400c:c00::235]:34479) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YzKVu-0006wv-42 for qemu-devel@nongnu.org; Mon, 01 Jun 2015 03:52:02 -0400 Received: by wgv5 with SMTP id 5so106756803wgv.1 for ; Mon, 01 Jun 2015 00:52:01 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <556C0F16.2010207@redhat.com> Date: Mon, 01 Jun 2015 09:51:50 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <4b6acf1900df20165fa4c269f071248e4d5f8fec.1433052532.git.crosthwaite.peter@gmail.com> In-Reply-To: <4b6acf1900df20165fa4c269f071248e4d5f8fec.1433052532.git.crosthwaite.peter@gmail.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [RFC v2 06/34] cpu-common: Define tb_page_addr_t for everyone List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Crosthwaite , qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, rth@twiddle.net, edgar.iglesias@gmail.com, afaerber@suse.de, Peter Crosthwaite On 31/05/2015 08:11, Peter Crosthwaite wrote: > In system mode emulation (at least) this definition has no architecture > specific dependencies. Move it to common code such that common code can > use it (primarily for defining function prototypes). > > Signed-off-by: Peter Crosthwaite I suspect you can instead make a header that is included by arch-obj files, and move a lot of stuff there from include/exec/exec-all.h (for example all the prototypes that use tb_page_addr_t). Paolo