diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-08-14 14:09:43 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-08-14 17:28:23 +0100 |
commit | 0d73901c982c8f57364ef39f3a033e0522a87200 (patch) | |
tree | e40b6299c17db1b03a65a2b4ea8101822ea4a09a | |
parent | 977a293f2fe99e3cfacb55cae9f8d39b2ed0468e (diff) | |
download | poky-0d73901c982c8f57364ef39f3a033e0522a87200.tar.gz |
bitbake: runqueue: Drop debug statement causing performance issues
This debug statement could result in a long list of tasks which when
repeatedly sent over our IPC, slowed down the builds immensely. Remove
it in favour of other more targeted debugging added recently, bringing
back some lost performance, particularly on builds with large numbers
of tasks.
(Bitbake rev: 85fe627fdb6510f0942917964386fad9d8c479c8)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index a04703c870..b571dde4bf 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -2189,8 +2189,6 @@ class RunQueueExecute: | |||
2189 | for dep in self.sqdata.sq_covered_tasks[tid]: | 2189 | for dep in self.sqdata.sq_covered_tasks[tid]: |
2190 | if dep not in self.runq_complete: | 2190 | if dep not in self.runq_complete: |
2191 | self.holdoff_tasks.add(dep) | 2191 | self.holdoff_tasks.add(dep) |
2192 | logger.debug(2, "Holding off tasks %s" % pprint.pformat(self.holdoff_tasks)) | ||
2193 | |||
2194 | 2192 | ||
2195 | def process_possible_migrations(self): | 2193 | def process_possible_migrations(self): |
2196 | 2194 | ||