From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:33975) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RbCBX-0002F3-QC for qemu-devel@nongnu.org; Thu, 15 Dec 2011 09:21:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RbCBR-0007wN-Ln for qemu-devel@nongnu.org; Thu, 15 Dec 2011 09:21:23 -0500 Received: from mail-yw0-f45.google.com ([209.85.213.45]:54201) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RbCBR-0007wI-Hb for qemu-devel@nongnu.org; Thu, 15 Dec 2011 09:21:17 -0500 Received: by yhgg71 with SMTP id g71so2508603yhg.4 for ; Thu, 15 Dec 2011 06:21:17 -0800 (PST) Sender: Paolo Bonzini Message-ID: <4EEA0258.7090708@redhat.com> Date: Thu, 15 Dec 2011 15:21:12 +0100 From: Paolo Bonzini MIME-Version: 1.0 References: <1323956131-471-1-git-send-email-avi@redhat.com> In-Reply-To: <1323956131-471-1-git-send-email-avi@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL 0/2] Plan obsolescense of exec.c memory functions List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Avi Kivity Cc: qemu-devel@nongnu.org On 12/15/2011 02:35 PM, Avi Kivity wrote: > Exile some exec.c functions to a private header, to prevent accidental reuse. > > Please pull from > > git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git memory/exec-obsolete > > Avi Kivity (2): > etraxfs_eth: drop bogus cpu_unregister_io_memory() > memory: move obsolete exec.c functions to a private header > > cpu-common.h | 36 ----------------------------- > exec-obsolete.h | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ > exec.c | 3 ++ > hw/etraxfs_eth.c | 3 -- > memory.c | 3 ++ > 5 files changed, 72 insertions(+), 39 deletions(-) > create mode 100644 exec-obsolete.h I would prefer exec-private.h or memory-private.h. Right now, the situation is that exec.c provides a low-level interface to memory.c. If the situation changes, the header will disappear. Paolo