Re: [Rpm-maint] [rpm-software-management/rpm] Run binary package generation and file classification in parallel threads (#695)

2019-05-21 Thread Florian Festi
Merged #695 into master. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/rpm-software-management/rpm/pull/695#event-2355426236___ Rpm-maint mailing list

Re: [Rpm-maint] [rpm-software-management/rpm] Run binary package generation and file classification in parallel threads (#695)

2019-05-14 Thread Panu Matilainen
Maybe third time's the charm... while walking the dog I remembered the hash table added in commit e33045e35c09cda530a9e665c367693e285b6511 that wasn't there when these patches were created needs thread protection now. -- You are receiving this because you are subscribed to this thread. Reply

Re: [Rpm-maint] [rpm-software-management/rpm] Run binary package generation and file classification in parallel threads (#695)

2019-05-14 Thread Panu Matilainen
@pmatilai pushed 1 commit. b42103a0f539c600a8b3de423d9db76501623b98 fixup! Run file classification in parallel threads -- You are receiving this because you are subscribed to this thread. View it on GitHub:

Re: [Rpm-maint] [rpm-software-management/rpm] Run binary package generation and file classification in parallel threads (#695)

2019-05-14 Thread Panu Matilainen
@ffesti spotted a bug in the binaryPackages() for loop logic, fixed in the first push but then a regression introduced in commit 0f21bdd0d7b2c45564ddb5a24bbebd530867bd54 caused one test to fail. Now rebased on top of the regression fix... pffft. -- You are receiving this because you are

Re: [Rpm-maint] [rpm-software-management/rpm] Run binary package generation and file classification in parallel threads (#695)

2019-05-09 Thread Vít Ondruch
I just wonder, how this influences the console output. Will it be still always readable or will there happen some output race conditions and it won't be readable anymore? -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

Re: [Rpm-maint] [rpm-software-management/rpm] Run binary package generation and file classification in parallel threads (#695)

2019-05-08 Thread Panu Matilainen
Added parallel file classification, which is beneficial for some cases. Most of the time, the dependency generator is the biggest bottle-neck however. That's a *much* tougher nut to crack though: there are huge gains to be made even without parallelisation there, but it needs a massive overhaul