From: Greg Kurz <groug@kaod.org>
To: "Daniel P. Berrange" <berrange@redhat.com>
Cc: qemu-devel@nongnu.org, Peter Maydell <peter.maydell@linaro.org>
Subject: Re: [Qemu-devel] [PATCH] build: remove use of MAKELEVEL optimization in submodule handling
Date: Mon, 6 Nov 2017 13:26:57 +0100 [thread overview]
Message-ID: <20171106132657.7fc49cdb@bahia> (raw)
In-Reply-To: <20171106114134.10125-1-berrange@redhat.com>
On Mon, 6 Nov 2017 11:41:34 +0000
"Daniel P. Berrange" <berrange@redhat.com> wrote:
> The Makefile attempts to optimize the handling of submodules by using MAKELEVEL
> to only check the submodule status when running from the top level make
> invokation. This causes problems for people who are using a makefile of their
> own to in turn invoke QEMU's makefile, as MAKELEVEL is already set to 1 (or
> more) when QEMU's makefile runs.
>
> This optimization should not really be needed, since the git-submodule.sh
> script is already used to detect if a submodule update is required. This by
> removing the MAKELEVEL check, we at most add an extra 'git-submodule.sh status'
> call to each make level, the overhead of which is lost in noise of building
> QEMU.
>
> Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
> ---
>
Heh, I had come up with a similar patch based on master and nearly the
same commit message. :)
Reviewed-by: Greg Kurz <groug@kaod.org>
> NB this is on top of https://lists.gnu.org/archive/html/qemu-devel/2017-11/msg00449.html
>
I could check that this patch applied on top of the series mentioned above
fixes the issue for me.
Tested-by: Greg Kurz <groug@kaod.org>
> Makefile | 12 +++++-------
> 1 file changed, 5 insertions(+), 7 deletions(-)
>
> diff --git a/Makefile b/Makefile
> index a92d7b8e14..0496c5057a 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -18,12 +18,11 @@ git-submodule-update:
>
> .PHONY: git-submodule-update
>
> -ifeq (0,$(MAKELEVEL))
> - git_module_status := $(shell \
> - cd '$(SRC_PATH)' && \
> - GIT="$(GIT)" ./scripts/git-submodule.sh status $(GIT_SUBMODULES); \
> - echo $$?; \
> - )
> +git_module_status := $(shell \
> + cd '$(SRC_PATH)' && \
> + GIT="$(GIT)" ./scripts/git-submodule.sh status $(GIT_SUBMODULES); \
> + echo $$?; \
> +)
>
> ifeq (1,$(git_module_status))
> ifeq (no,$(GIT_UPDATE))
> @@ -42,7 +41,6 @@ git-submodule-update:
> "GIT","$(GIT_SUBMODULES)")
> endif
> endif
> -endif
>
> .git-submodule-status: git-submodule-update config-host.mak
>
next prev parent reply other threads:[~2017-11-06 12:27 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-06 11:41 [Qemu-devel] [PATCH] build: remove use of MAKELEVEL optimization in submodule handling Daniel P. Berrange
2017-11-06 12:26 ` Greg Kurz [this message]
2017-11-06 17:12 ` Eric Blake
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171106132657.7fc49cdb@bahia \
--to=groug@kaod.org \
--cc=berrange@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).