From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43571) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zi2iO-0002MO-92 for qemu-devel@nongnu.org; Fri, 02 Oct 2015 11:57:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zi2iK-00023M-Ud for qemu-devel@nongnu.org; Fri, 02 Oct 2015 11:57:44 -0400 Received: from mx1.redhat.com ([209.132.183.28]:38949) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zi2iK-000239-KO for qemu-devel@nongnu.org; Fri, 02 Oct 2015 11:57:40 -0400 References: <1443720248-15482-1-git-send-email-marcandre.lureau@redhat.com> <1443720248-15482-4-git-send-email-marcandre.lureau@redhat.com> <20151002163907-mutt-send-email-mst@redhat.com> From: Paolo Bonzini Message-ID: <560EA96E.4080609@redhat.com> Date: Fri, 2 Oct 2015 17:57:34 +0200 MIME-Version: 1.0 In-Reply-To: <20151002163907-mutt-send-email-mst@redhat.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH v7 03/24] util: add linux-only memfd fallback List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Michael S. Tsirkin" , marcandre.lureau@redhat.com Cc: thibaut.collet@6wind.com, jasowang@redhat.com, qemu-devel@nongnu.org, haifeng.lin@huawei.com On 02/10/2015 15:39, Michael S. Tsirkin wrote: > On Thu, Oct 01, 2015 at 07:23:47PM +0200, marcandre.lureau@redhat.com w= rote: >> diff --git a/util/Makefile.objs b/util/Makefile.objs >> index 372e037..9e05861 100644 >> --- a/util/Makefile.objs >> +++ b/util/Makefile.objs >> @@ -1,13 +1,18 @@ >> util-obj-y =3D osdep.o cutils.o unicode.o qemu-timer-common.o >> util-obj-$(CONFIG_WIN32) +=3D oslib-win32.o qemu-thread-win32.o event= _notifier-win32.o >> -util-obj-$(CONFIG_POSIX) +=3D oslib-posix.o qemu-thread-posix.o event= _notifier-posix.o qemu-openpty.o mmap-alloc.o >> +util-obj-$(CONFIG_POSIX) +=3D oslib-posix.o >> +util-obj-$(CONFIG_POSIX) +=3D qemu-thread-posix.o >> +util-obj-$(CONFIG_POSIX) +=3D event_notifier-posix.o >> +util-obj-$(CONFIG_POSIX) +=3D qemu-openpty.o >> +util-obj-$(CONFIG_POSIX) +=3D compatfd.o >> +util-obj-$(CONFIG_POSIX) +=3D mmap-alloc.o >> +util-obj-$(CONFIG_POSIX) +=3D memfd.o >> util-obj-y +=3D envlist.o path.o module.o >> util-obj-$(call lnot,$(CONFIG_INT128)) +=3D host-utils.o >> util-obj-y +=3D bitmap.o bitops.o hbitmap.o >> util-obj-y +=3D fifo8.o >> util-obj-y +=3D acl.o >> util-obj-y +=3D error.o qemu-error.o >> -util-obj-$(CONFIG_POSIX) +=3D compatfd.o >> util-obj-y +=3D id.o >> util-obj-y +=3D iov.o qemu-config.o qemu-sockets.o uri.o notify.o >> util-obj-y +=3D qemu-option.o qemu-progress.o >=20 > Will be easier to apply if this refactoring is a separate patch. Is someone doing anything conflicting in this area? (My answer: not that I know of). Paolo