From mboxrd@z Thu Jan 1 00:00:00 1970 From: Konrad Rzeszutek Wilk Subject: Re: [PATCH 02/28] tools/hotplug: fix race during xen.conf creation Date: Mon, 6 Oct 2014 09:48:16 -0400 Message-ID: <20141006134816.GB4473@laptop.dumpdata.com> References: <1412181690-19609-1-git-send-email-olaf@aepfle.de> <1412181690-19609-3-git-send-email-olaf@aepfle.de> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline In-Reply-To: <1412181690-19609-3-git-send-email-olaf@aepfle.de> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Olaf Hering Cc: Wei Liu , Stefano Stabellini , Ian Jackson , Ian Campbell , xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org On Wed, Oct 01, 2014 at 06:41:04PM +0200, Olaf Hering wrote: > A make -j8 will call the xen.conf rule twice. The move-if-changed > macro may fail of the tmp file was already removed by the other make s/of/if/ > process. Fix this by let the all target depend on install. > Also remove the generated file with make clean. > > Signed-off-by: Olaf Hering > Acked-by: Ian Campbell > Cc: Ian Jackson > Cc: Stefano Stabellini > Cc: Ian Campbell > Cc: Wei Liu > --- > tools/hotplug/Linux/systemd/Makefile | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/tools/hotplug/Linux/systemd/Makefile b/tools/hotplug/Linux/systemd/Makefile > index dc98b67..90ba16e 100644 > --- a/tools/hotplug/Linux/systemd/Makefile > +++ b/tools/hotplug/Linux/systemd/Makefile > @@ -21,10 +21,11 @@ ALL_XEN_SYSTEMD = $(XEN_SYSTEMD_MODULES) \ > $(XEN_SYSTEMD_SERVICE) > > .PHONY: all > -all: $(ALL_XEN_SYSTEMD) > +all: install > > .PHONY: clean > clean: > + rm -f $(ALL_XEN_SYSTEMD) > > .PHONY: install > install: $(ALL_XEN_SYSTEMD)