All of lore.kernel.org
 help / color / mirror / Atom feed
From: Steve Sakoman <steve@sakoman.com>
To: openembedded-core@lists.openembedded.org
Subject: [OE-core][kirkstone 00/14] Patch review
Date: Tue, 14 Oct 2025 15:44:37 -0700	[thread overview]
Message-ID: <cover.1760481775.git.steve@sakoman.com> (raw)

Please review this set of changes for kirkstone and have comments back by
end of day Thursday, October 16

Passed a-full on autobuilder:

https://autobuilder.yoctoproject.org/valkyrie/#/builders/29/builds/2585

The following changes since commit 0d11c9103f072841baf39166efc133f2a20fc4dc:

  oeqa/sdk/cases/buildcpio.py: use gnu mirror instead of main server (2025-10-09 07:35:42 -0700)

are available in the Git repository at:

  https://git.openembedded.org/openembedded-core-contrib stable/kirkstone-nut
  https://git.openembedded.org/openembedded-core-contrib/log/?h=stable/kirkstone-nut

Peter Marko (3):
  qemu: patch CVE-2024-8354
  binutils: patch CVE-2025-11082
  binutils: patch CVE-2025-11083

Sunil Dora (11):
  glibc: Remove partial BZ#25847 backport patches
  glibc: pthreads NPTL lost wakeup fix 2
  glibc: nptl Update comments and indentation for new condvar
    implementation
  glibc: nptl Remove unnecessary catch-all-wake in condvar group switch
  glibc: nptl Remove unnecessary quadruple check in pthread_cond_wait
  glibc: Remove g_refs from condition variables
  glibc: nptl Use a single loop in pthread_cond_wait instaed of a nested
    loop
  glibc: nptl Fix indentation
  glibc: nptl rename __condvar_quiesce_and_switch_g1
  glibc: nptl Use all of g1_start and g_signals
  glibc: : PTHREAD_COND_INITIALIZER compatibility with pre-2.41 versions
    (bug 32786)

 .../glibc/glibc/0026-PR25847-1.patch          |  24 +-
 .../glibc/glibc/0026-PR25847-10.patch         |  54 ++++
 .../glibc/glibc/0026-PR25847-2.patch          |  13 +-
 .../glibc/glibc/0026-PR25847-3.patch          |  18 +-
 .../glibc/glibc/0026-PR25847-4.patch          |  11 +-
 .../glibc/glibc/0026-PR25847-5.patch          | 237 ++++++++++-----
 .../glibc/glibc/0026-PR25847-6.patch          | 220 +++++---------
 .../glibc/glibc/0026-PR25847-7.patch          | 277 +++++++++---------
 .../glibc/glibc/0026-PR25847-8.patch          | 269 ++++++++---------
 .../glibc/glibc/0026-PR25847-9.patch          | 193 ++++++++++++
 meta/recipes-core/glibc/glibc_2.35.bb         |   2 +
 .../binutils/binutils-2.38.inc                |   2 +
 .../binutils/0044-CVE-2025-11082.patch        |  46 +++
 .../binutils/0045-CVE-2025-11083.patch        |  77 +++++
 meta/recipes-devtools/qemu/qemu.inc           |   1 +
 .../qemu/qemu/CVE-2024-8354.patch             |  75 +++++
 16 files changed, 974 insertions(+), 545 deletions(-)
 create mode 100644 meta/recipes-core/glibc/glibc/0026-PR25847-10.patch
 create mode 100644 meta/recipes-core/glibc/glibc/0026-PR25847-9.patch
 create mode 100644 meta/recipes-devtools/binutils/binutils/0044-CVE-2025-11082.patch
 create mode 100644 meta/recipes-devtools/binutils/binutils/0045-CVE-2025-11083.patch
 create mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2024-8354.patch

-- 
2.43.0



             reply	other threads:[~2025-10-14 22:45 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-14 22:44 Steve Sakoman [this message]
2025-10-14 22:44 ` [OE-core][kirkstone 01/14] qemu: patch CVE-2024-8354 Steve Sakoman
2025-10-14 22:44 ` [OE-core][kirkstone 02/14] binutils: patch CVE-2025-11082 Steve Sakoman
2025-10-14 22:44 ` [OE-core][kirkstone 03/14] binutils: patch CVE-2025-11083 Steve Sakoman
2025-10-14 22:44 ` [OE-core][kirkstone 04/14] glibc: Remove partial BZ#25847 backport patches Steve Sakoman
2025-10-14 22:56   ` Khem Raj
2025-10-15  0:13     ` Steve Sakoman
2025-10-15  2:33     ` [kirkstone " Dora, Sunil Kumar
2025-10-15  3:47       ` [OE-core] " Khem Raj
2025-10-14 22:44 ` [OE-core][kirkstone 05/14] glibc: pthreads NPTL lost wakeup fix 2 Steve Sakoman
2025-10-14 22:44 ` [OE-core][kirkstone 06/14] glibc: nptl Update comments and indentation for new condvar implementation Steve Sakoman
2025-10-14 22:44 ` [OE-core][kirkstone 07/14] glibc: nptl Remove unnecessary catch-all-wake in condvar group switch Steve Sakoman
2025-10-14 22:44 ` [OE-core][kirkstone 08/14] glibc: nptl Remove unnecessary quadruple check in pthread_cond_wait Steve Sakoman
2025-10-14 22:44 ` [OE-core][kirkstone 09/14] glibc: Remove g_refs from condition variables Steve Sakoman
2025-10-14 22:44 ` [OE-core][kirkstone 10/14] glibc: nptl Use a single loop in pthread_cond_wait instaed of a nested loop Steve Sakoman
2025-10-14 22:44 ` [OE-core][kirkstone 11/14] glibc: nptl Fix indentation Steve Sakoman
2025-10-14 22:44 ` [OE-core][kirkstone 12/14] glibc: nptl rename __condvar_quiesce_and_switch_g1 Steve Sakoman
2025-10-14 22:44 ` [OE-core][kirkstone 13/14] glibc: nptl Use all of g1_start and g_signals Steve Sakoman
2025-10-14 22:44 ` [OE-core][kirkstone 14/14] glibc: : PTHREAD_COND_INITIALIZER compatibility with pre-2.41 versions (bug 32786) Steve Sakoman
  -- strict thread matches above, loose matches on Subject: below --
2025-06-22 14:59 [OE-core][kirkstone 00/14] Patch review Steve Sakoman
2025-04-30  2:53 Steve Sakoman
2024-11-27 18:49 Steve Sakoman
2023-09-06 12:48 Steve Sakoman
2023-03-23 21:04 Steve Sakoman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1760481775.git.steve@sakoman.com \
    --to=steve@sakoman.com \
    --cc=openembedded-core@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.