[oe-commits] [bitbake] 09/09: runqueue: Drop debug statement causing performance issues

git at git.openembedded.org git at git.openembedded.org
Wed Aug 14 14:37:29 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository bitbake.

commit 85fe627fdb6510f0942917964386fad9d8c479c8
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Wed Aug 14 14:09:43 2019 +0100

    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.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/runqueue.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index a04703c..b571dde 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -2189,8 +2189,6 @@ class RunQueueExecute:
             for dep in self.sqdata.sq_covered_tasks[tid]:
                 if dep not in self.runq_complete:
                     self.holdoff_tasks.add(dep)
-        logger.debug(2, "Holding off tasks %s" % pprint.pformat(self.holdoff_tasks))
-
 
     def process_possible_migrations(self):
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list