Re: [yocto] Recipe Grep'ing

2021-05-08 Thread Robert Joslyn
On Wed, 2021-05-05 at 17:50 -0700, Khem Raj wrote: > > > On 5/5/21 5:41 PM, Chuck Wolber wrote: > > I was pondering putting some work in to a fairly large patch set > > aimed > > at making recipes easier to grep through, and wanted to get some > > feedback before I put time and effort into it.

[yocto] [meta-security][PATCH 1/2] tripwire: Blacklist pkg, upstream seems abandond

2021-05-08 Thread Armin Kuster
Last update was 2018. Does not build with gcc11. There are other actively maintained IDS options. Signed-off-by: Armin Kuster --- recipes-core/packagegroup/packagegroup-core-security.bb | 2 -- recipes-ids/tripwire/tripwire_2.4.3.7.bb| 2 ++ 2 files changed, 2 insertions(+), 2

[yocto] [meta-security][PATCH 2/2] tpm2-pkcs11: Update to 1.6.0

2021-05-08 Thread Armin Kuster
Includes gcc11 fix. Added p11-kit Minor cleanup Signed-off-by: Armin Kuster --- .../recipes-tpm2/tpm2-pkcs11/files/677.patch | 295 ++ ...2-pkcs11_1.5.0.bb => tpm2-pkcs11_1.6.0.bb} | 27 +- 2 files changed, 314 insertions(+), 8 deletions(-) create mode 100644

[linux-yocto] [PATCH 1/1] fs: dcache: avoid livelocks on d_alloc_parallel

2021-05-08 Thread wenlin.k...@windriver.com
From: Wenlin Kang With RT, if a high priority task that runs d_alloc_parallel() preempts a low priority task that runs __d_add(), it can make d_alloc_parallel() go into an infinite retry. low priority task: high priority task: __lookup_slow() d_add() __d_add

[linux-yocto] [PATCH 0/1] fs: dcache: avoid livelocks on d_alloc_parallel

2021-05-08 Thread wenlin.k...@windriver.com
From: Wenlin Kang With RT, if a high priority task that runs d_alloc_parallel() preempts a low priority task that runs __d_add(), it can make d_alloc_parallel() go into an infinite retry. low priority task: high priority task: __lookup_slow() d_add() __d_add