From: Robert Yang <liezhi.yang@windriver.com>
To: <bitbake-devel@lists.openembedded.org>
Subject: Re: [PATCH] runqueue: Fix sstate task dependency problems
Date: Tue, 1 Apr 2014 09:46:36 +0800 [thread overview]
Message-ID: <533A1A7C.8030509@windriver.com> (raw)
In-Reply-To: <1396303640.14790.85.camel@ted>
Cool, it works well now.
Tested-by: Robert Yang <liezhi.yang@windriver.com>
// Robert
On 04/01/2014 06:07 AM, Richard Purdie wrote:
> If a setscene task has [depends], its possible they may still get executed out
> of order. The issue is that the dependencies are set to set() for all tasks
> involved. This patch adds back in explict dependencies within these chains
> to avoid the setscene task failures.
>
> [YOCTO #6069]
>
> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> ---
> diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
> index 42b6c48..1a19677 100644
> --- a/bitbake/lib/bb/runqueue.py
> +++ b/bitbake/lib/bb/runqueue.py
> @@ -1757,6 +1757,10 @@ class RunQueueExecuteScenequeue(RunQueueExecute):
> # Have to zero this to avoid circular dependencies
> sq_revdeps_squash[self.rqdata.runq_setscene.index(taskid)] = set()
>
> + for task in self.sq_harddeps:
> + for dep in self.sq_harddeps[task]:
> + sq_revdeps_squash[dep].add(task)
> +
> #for task in xrange(len(sq_revdeps_squash)):
> # realtask = self.rqdata.runq_setscene[task]
> # bb.warn("Task %s: %s_setscene is %s " % (task, self.rqdata.get_user_idstring(realtask) , sq_revdeps_squash[task]))
>
>
prev parent reply other threads:[~2014-04-01 1:46 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-31 22:07 [PATCH] runqueue: Fix sstate task dependency problems Richard Purdie
2014-04-01 1:46 ` Robert Yang [this message]
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=533A1A7C.8030509@windriver.com \
--to=liezhi.yang@windriver.com \
--cc=bitbake-devel@lists.openembedded.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.