All of lore.kernel.org
 help / color / mirror / Atom feed
* [OE-core][langdale 00/17] Patch review
@ 2023-02-01 14:13 Steve Sakoman
  2023-02-01 14:13 ` [OE-core][langdale 01/17] openssl: fix CVE-2022-3996 double locking leads to denial of service Steve Sakoman
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: Steve Sakoman @ 2023-02-01 14:13 UTC (permalink / raw)
  To: openembedded-core

Please review this set of patches for langdale and have comments back by
end of day Friday.

Passed a-full on autobuilder:

https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/4871

The following changes since commit cfd9f549a0d5dd44f4c71bd077b5fd17d3683550:

  selftest/virgl: use pkg-config from the host (2023-01-19 16:28:32 -1000)

are available in the Git repository at:

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

Armin Kuster (1):
  lttng-modules: Fix for 5.10.163 kernel version

Bruce Ashfield (1):
  linux-yocto/5.15: update to v5.15.87

He Zhe (1):
  lttng-modules: update 2.13.7 -> 2.13.8

Khem Raj (4):
  createrepo-c: Include missing rpm/rpmstring.h
  libtirpc: Check if file exists before operating on it
  libusb1: Link with latomic only if compiler has no atomic builtins
  libusb1: Strip trailing whitespaces

Niko Mauno (1):
  Fix missing leading whitespace with ':append'

Peter Kjellerstedt (1):
  librsvg: Only enable the Vala bindings if GObject Introspection is
    enabled

Richard Purdie (1):
  native: Drop special variable handling

Ross Burton (4):
  ppp: backport fix for CVE-2022-4603
  quilt: fix intermittent failure in faildiff.test
  spirv-headers/spirv-tools: set correct branch name
  quilt: use upstreamed faildiff.test fix

Thomas Roos (1):
  devtool: fix devtool finish when gitmodules file is empty

Vivek Kumbhar (1):
  openssl: fix CVE-2022-3996 double locking leads to denial of service

Xiangyu Chen (1):
  numactl: skip test case when target platform doesn't have 2 CPU node

 meta/classes-recipe/core-image.bbclass        |  2 +-
 meta/classes-recipe/native.bbclass            |  2 +-
 meta/classes-recipe/populate_sdk_ext.bbclass  |  2 +-
 meta/classes/externalsrc.bbclass              |  2 +-
 .../distro/include/ptest-packagelists.inc     |  2 +-
 .../openssl/openssl/CVE-2022-3996.patch       | 43 +++++++++++++
 .../openssl/openssl_3.0.7.bb                  |  1 +
 .../ppp/ppp/CVE-2022-4603.patch               | 48 +++++++++++++++
 meta/recipes-connectivity/ppp/ppp_2.4.9.bb    |  1 +
 .../0001-include-rpm-rpmstring.h.patch        | 27 ++++++++
 .../createrepo-c/createrepo-c_0.20.1.bb       |  1 +
 meta/recipes-devtools/quilt/quilt.inc         |  1 +
 .../quilt/quilt/faildiff-order.patch          | 41 +++++++++++++
 .../libtirpc/libtirpc_1.3.3.bb                |  2 +-
 meta/recipes-gnome/librsvg/librsvg_2.54.5.bb  |  4 +-
 .../spir/spirv-headers_1.3.216.0.bb           |  2 +-
 .../spir/spirv-tools_1.3.216.0.bb             |  2 +-
 .../linux/linux-yocto-rt_5.15.bb              |  6 +-
 .../linux/linux-yocto-tiny_5.15.bb            |  6 +-
 meta/recipes-kernel/linux/linux-yocto_5.15.bb | 26 ++++----
 .../fix-jbd2-upper-bound-for-v5.10.163.patch  | 52 ++++++++++++++++
 ...e-the-correct-print-format-v5.10.163.patch | 61 +++++++++++++++++++
 ...ules_2.13.7.bb => lttng-modules_2.13.8.bb} |  4 +-
 ...k-with-latomic-only-if-no-atomic-bui.patch | 46 ++++++++++++++
 meta/recipes-support/libusb/libusb1_1.0.26.bb | 13 ++--
 .../numactl/Fix-the-test-output-format.patch  |  3 +-
 .../recipes-support/numactl/numactl/run-ptest |  6 +-
 27 files changed, 368 insertions(+), 38 deletions(-)
 create mode 100644 meta/recipes-connectivity/openssl/openssl/CVE-2022-3996.patch
 create mode 100644 meta/recipes-connectivity/ppp/ppp/CVE-2022-4603.patch
 create mode 100644 meta/recipes-devtools/createrepo-c/createrepo-c/0001-include-rpm-rpmstring.h.patch
 create mode 100644 meta/recipes-devtools/quilt/quilt/faildiff-order.patch
 create mode 100644 meta/recipes-kernel/lttng/lttng-modules/fix-jbd2-upper-bound-for-v5.10.163.patch
 create mode 100644 meta/recipes-kernel/lttng/lttng-modules/fix-jbd2-use-the-correct-print-format-v5.10.163.patch
 rename meta/recipes-kernel/lttng/{lttng-modules_2.13.7.bb => lttng-modules_2.13.8.bb} (87%)
 create mode 100644 meta/recipes-support/libusb/libusb1/0001-configure.ac-Link-with-latomic-only-if-no-atomic-bui.patch

-- 
2.25.1



^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2023-02-01 14:14 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-01 14:13 [OE-core][langdale 00/17] Patch review Steve Sakoman
2023-02-01 14:13 ` [OE-core][langdale 01/17] openssl: fix CVE-2022-3996 double locking leads to denial of service Steve Sakoman
2023-02-01 14:13 ` [OE-core][langdale 02/17] ppp: backport fix for CVE-2022-4603 Steve Sakoman
2023-02-01 14:13 ` [OE-core][langdale 03/17] linux-yocto/5.15: update to v5.15.87 Steve Sakoman
2023-02-01 14:13 ` [OE-core][langdale 04/17] lttng-modules: update 2.13.7 -> 2.13.8 Steve Sakoman
2023-02-01 14:13 ` [OE-core][langdale 05/17] lttng-modules: Fix for 5.10.163 kernel version Steve Sakoman
2023-02-01 14:13 ` [OE-core][langdale 06/17] quilt: fix intermittent failure in faildiff.test Steve Sakoman
2023-02-01 14:13 ` [OE-core][langdale 07/17] createrepo-c: Include missing rpm/rpmstring.h Steve Sakoman
2023-02-01 14:13 ` [OE-core][langdale 08/17] spirv-headers/spirv-tools: set correct branch name Steve Sakoman
2023-02-01 14:13 ` [OE-core][langdale 09/17] devtool: fix devtool finish when gitmodules file is empty Steve Sakoman
2023-02-01 14:13 ` [OE-core][langdale 10/17] numactl: skip test case when target platform doesn't have 2 CPU node Steve Sakoman
2023-02-01 14:13 ` [OE-core][langdale 11/17] libtirpc: Check if file exists before operating on it Steve Sakoman
2023-02-01 14:13 ` [OE-core][langdale 12/17] quilt: use upstreamed faildiff.test fix Steve Sakoman
2023-02-01 14:13 ` [OE-core][langdale 13/17] native: Drop special variable handling Steve Sakoman
2023-02-01 14:13 ` [OE-core][langdale 14/17] librsvg: Only enable the Vala bindings if GObject Introspection is enabled Steve Sakoman
2023-02-01 14:13 ` [OE-core][langdale 15/17] libusb1: Link with latomic only if compiler has no atomic builtins Steve Sakoman
2023-02-01 14:13 ` [OE-core][langdale 16/17] libusb1: Strip trailing whitespaces Steve Sakoman
2023-02-01 14:13 ` [OE-core][langdale 17/17] Fix missing leading whitespace with ':append' Steve Sakoman

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.