[oe-commits] [openembedded-core] 02/05: oeqa/concurrenttest: Use ionice to delete build directories

git at git.openembedded.org git at git.openembedded.org
Thu Sep 19 19:31:03 UTC 2019


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

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit d41e7018be56902b7a1be4590e468cd15e02a3b5
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Thu Sep 19 13:21:26 2019 +0100

    oeqa/concurrenttest: Use ionice to delete build directories
    
    Autobuilder type infrastructure can benefit from deletion of certain files as
    background IO due to the way Linux filesystem priority works.
    
    We have problems where build directories as part of oe-selftest being
    delete starves the running tasks of IO to the point builds take much
    longer to compelte.
    
    Having this option of running the deletion at "idle" helps a lot with
    that. Use the new option added to bb.utils.prunedir().
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/core/utils/concurrencytest.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oeqa/core/utils/concurrencytest.py b/meta/lib/oeqa/core/utils/concurrencytest.py
index fa6fa34..6293cf9 100644
--- a/meta/lib/oeqa/core/utils/concurrencytest.py
+++ b/meta/lib/oeqa/core/utils/concurrencytest.py
@@ -216,7 +216,7 @@ def removebuilddir(d):
     while delay and os.path.exists(d + "/bitbake.lock"):
         time.sleep(1)
         delay = delay - 1
-    bb.utils.prunedir(d)
+    bb.utils.prunedir(d, ionice=True)
 
 def fork_for_tests(concurrency_num, suite):
     result = []

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


More information about the Openembedded-commits mailing list