Wang Mingyu [Mon, 12 May 2025 09:02:46 +0000 (17:02 +0800)]
babeltrace2: upgrade 2.1.0 -> 2.1.1
Changelog:
===========
* src.ctf.lttng-live: remove lttng_live_lazy_msg_init function
* src.ctf.lttng-live: fix comment formatting
* README.adoc: Update working version to 2.1
* fix: export bt_component_class_sink_simple_borrow
* fix: building from the release tarball without flex
* doc/api/libbabeltrace2: use '<code>' i.o. '<span>' in '<dt>'
* Fix: doc/api/libbabeltrace2/Doxyfile.in: set version to 2.1
* babeltrace2-sink.text.pretty(7): add missing default param. value
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Wang Mingyu [Mon, 12 May 2025 09:02:44 +0000 (17:02 +0800)]
appstream: upgrade 1.0.4 -> 1.0.5
Changelog:
============
Features:
* qt: Expose markup conversion utils
* desktop-styles: Add android and iOS
* validator: Check for xml:lang="en" being used on description template elements
* validator: Flag cases of raw text in "description" elements
* metadata: Add more known extensions into as_metadata_file_guess_style()
Specification:
* docs: Clarify that the style segment of a screenshot environment is optional
* docs: Explain consequences of defining an icon for desktop-app metainfo
* docs: Clarify that description content must be in p/li elements
Bugfixes:
* validator: mark as_validator_issue_tag_list static
* docs: Add workaround for gi-docgen misnaming devhelp files
* compose: Do not permit SVG images as screenshots
* compose: Don't "forget" to scan remaining paths when re-encountering a dir
* pool: Try explicit singular term match if we only have low-quality tokens
* utils: Provide compatibility with Fedora icon tarballs when installing them
* utils: Remove leftover g_chmod()
* zstd-decompressor: Pass output/written data when decompression finished
* utils: Expect a dash in icons file name
* utils: Recognize .yml* and .yaml* file extension variants, and .zst extension
* utils: Rename the appstream file when re-saving it on install
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Richard Purdie [Sat, 10 May 2025 15:54:21 +0000 (16:54 +0100)]
bitbake.conf/pseudo: Switch from exclusion list to inclusion list
Currently, pseudo tracks all files referenced within its presence unless
they're listed in an exclusion list. The exclusion list has grown to be
fairly unwieldy.
This patch swaps PSEUDO_IGNORE_PATHS for PSEUDO_INCLUDE_PATHS which in
theory should be easier and more explicit to maintain.
This change does drop many directories from pseudo coverage including
/home and /tmp. There may be adapatations needed for recipes/classes
using pseudo in specific ways.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Khem Raj [Thu, 8 May 2025 19:13:18 +0000 (12:13 -0700)]
compiler-rt: Rename the rt libraries if compiled with arm hardfloat ABI
OE does not rely on tuple to deduce hardfloat ABI, but clang/llvm does
arm-yoe-linux-gnueabi is used for both soft and softfp and hardfp float
ABIs in OE, LLVM expects arm-yoe-linux-gnueabihf for it to be treated as
hardfloat ABI, and look for correct name for rt libraries.
We know when we compile them with Hard-float ABI so rename them in such
case so clang can find it when using -rtlib=compiler-rt it needs to
has 'armhf' suffix
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Khem Raj [Thu, 8 May 2025 19:13:16 +0000 (12:13 -0700)]
compiler-rt: Consolidate and fix cmake arguments
Specify CMAKE_C_COMPILER_TARGET and COMPILER_RT_DEFAULT_TARGET_ARCH
in common for native/target/nativesdk
set COMPILER_RT_DEFAULT_TARGET_ARCH to use HOST_ARCH across all recipe
variants
It is not needed to set COMPILER_RT_DEFAULT_TARGET_ARCH for powerpc anymore
as it is already fixed by setting COMPILER_RT_DEFAULT_TARGET_ARCH to
HOST_ARCH
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Changqing Li [Thu, 8 May 2025 09:54:28 +0000 (17:54 +0800)]
libsoup-2.4: fix CVE-2024-52532
CVE-2024-52532:
GNOME libsoup before 3.6.1 has an infinite loop, and memory consumption.
during the reading of certain patterns of WebSocket data from clients.
Praveen Kumar [Wed, 7 May 2025 06:48:23 +0000 (06:48 +0000)]
connman: Fix CVE-2025-32743
In ConnMan through 1.44, the lookup string in ns_resolv in dnsproxy.c
can be NULL or an empty string when the TC (Truncated) bit is set in
a DNS response. This allows attackers to cause a denial of service
(application crash) or possibly execute arbitrary code, because those
lookup values lead to incorrect length calculations and incorrect
memcpy operations.
Yi Zhao [Thu, 8 May 2025 01:27:35 +0000 (09:27 +0800)]
python3-pygobject: RDEPENDS on gobject-introspection
Since 3.51.0, python3-pygobject depends on libgirepository 2.0 provided
by glib-2.0 instead of libgirepository 1.0 provided by
gobject-introspection[1]. It still needs the typelib files from
libgirepository-1.0 package. Add gobject-introspection as a runtime
dependency.
Fixes:
$ python3
Python 3.13.2 (main, Feb 4 2025, 14:51:09) [GCC 14.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import gi
>>> from gi.repository import Gtk
Traceback (most recent call last):
File "/usr/lib64/python3.13/site-packages/gi/importer.py", line 139, in create_module
introspection_module = get_introspection_module(namespace)
File "/usr/lib64/python3.13/site-packages/gi/module.py", line 243, in get_introspection_module
module = IntrospectionModule(namespace, version)
File "/usr/lib64/python3.13/site-packages/gi/module.py", line 111, in __init__
repository.require(namespace, version)
~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^
gi.RepositoryError: Typelib file for namespace 'xlib', version '2.0' not found
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "<python-input-1>", line 1, in <module>
from gi.repository import Gtk
File "/usr/lib64/python3.13/site-packages/gi/importer.py", line 141, in create_module
raise ImportError(e) from e
ImportError: Typelib file for namespace 'xlib', version '2.0' not found
Ross Burton [Sat, 10 May 2025 08:43:56 +0000 (09:43 +0100)]
meson: clean up the native template in nativesdk builds
In a nativesdk build, the native build template should be minimal as it
just needs to ensure that Meson can link with libraries in the SDK's
native sysroot.
Specifically, it shouldn't be passing BUILD_* flags to Meson as these
are for the Yocto build host, not the SDK user.
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Tom Hochstein [Sat, 10 May 2025 08:43:53 +0000 (09:43 +0100)]
meson: Fix host_machine setting for native cross-file
For native and nativesdk, the meson cross-file settings for
`host_machine` are incorrectly set for the build machine, not the
"machine on which the compiled binary will run". See
https://mesonbuild.com/Cross-compilation.html.
Tom Hochstein [Sat, 10 May 2025 08:43:52 +0000 (09:43 +0100)]
toolchain-scripts: Export meson settings for SDK builds
Create a new set of exports for the Meson `host_machine` cross settings.
This allows the target cross file to be created correctly from
meson.cross.template and aligns with meson.bbclass.
Note, one might think that HOST_OS and HOST_ARCH would be appropriate as
inputs here, aligning nicely with the Meson naming. That turns out to be
incorrect since the script is generated in a native/nativesdk build with
HOST_OS and HOST_ARCH set for the "build machine", not the "host
machine", using the Meson terminology. See
https://mesonbuild.com/Cross-compilation.html.
Ross Burton [Sat, 10 May 2025 08:43:48 +0000 (09:43 +0100)]
oeqa/sdk/maturin: be less picky in the list_python test
The test assumed that maturin would only find a single Python binary, in
/usr/bin/python3*.
However in eSDKs with buildtools a Python is shipped with the SDK, so
the test failed.
Generalise the test so that it runs python3 and obtains its path and
version, and then verifies that path and and version are found by
Maturin. This means we're not assuming a single Python, or the paths, or
that the Python is CPython.
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ross Burton [Sat, 10 May 2025 08:43:46 +0000 (09:43 +0100)]
oeqa/sdk/gtk3: build libhandy instead of galculator
galculator hasn't been touched for a decade now[1] and fails to compile
under GCC 15.
Switch to building libhandy, which is the GTK+3 precursor to libadwaita
in the Gnome stack. Whilst this is in low-maintainence mode, will be
updated if it breaks.
[1] https://github.com/galculator/galculator/
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ross Burton [Sat, 10 May 2025 08:43:44 +0000 (09:43 +0100)]
oeqa/sdk/meson: generalise test case
Refactor this test case so the generic "build a meson project" code is
separated out and can be reused.
Also currently meson inside eSDKs only works with fully populated eSDKs,
but our testing uses minimal eSDKS, so skip the test if the eSDK is a
minimal build. A bug has been filed to resolve this.
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ross Burton [Sat, 10 May 2025 08:43:41 +0000 (09:43 +0100)]
oeqa/sdk: add helpers to check for and install packages
The existing tests simply look at the manifest to determine if a test
should be ran or not based on dependencies. Whilst this works for
Traditional SDKs, it fails for Extensible SDKs if they've been built in
minimal mode, where the manifest will be empty. However, minimal eSDKs
might well have available sstate to install the missing dependencies.
Add a pair of helper functions to ensure that a package is available, or
skip the test. This handles nativesdk- vs -native (SDK vs eSDK) and
will try to sdk-install missing dependencies into an eSDK if they're not
already installed.
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ross Burton [Sat, 10 May 2025 08:43:37 +0000 (09:43 +0100)]
oeqa/sdk/context: fix multilib handling bug in hasTargetPackage
hasTargetPackage has some logic to automatically multilibify package
names if needed (for example, so that gtk+3 becomes lib32-gtk+3).
Due to a logic bug if multilib was True but there were no multilibs
configured then this prepended "-" to the package name, which won't
exist. This resulted in tests being skipped as the dependent packages
are not installed.
Solve this by only prepending to the package name if requested and if a
multilib environment has been detected.
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ross Burton [Sat, 10 May 2025 08:43:36 +0000 (09:43 +0100)]
oe/sdk: fix empty SDK manifests
The SDK manifests are generated by listing the sstate was that used, but
it hardcodes that the sstate data filenames end in .tgz.
This has not been the case since sstate switched to Zstd[1] in 2021,
which meant that all of the tests which checked for packages existing
were being skipped as the manifests were empty. For example, see a
representative core-image-sato eSDK test run[2]:
Ross Burton [Sat, 10 May 2025 08:43:35 +0000 (09:43 +0100)]
testsdk: allow user to specify which tests to run
Following the usage of TEST_SUITES in testimage, add TESTSDK_SUITES to
specify the list of tests to execute. By default the variable is empty,
which means to run all discovered tests.
This makes it easier to work on a single test without having to run all
of the tests.
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Trevor Woerner [Wed, 7 May 2025 19:26:34 +0000 (15:26 -0400)]
systemd: disable linker GCS warning on aarch64
openssl has some assembler code that has PAC and BTI hints but not GCS. The
systemd recipe then links to libcrypto from openssl with GCS enabled (as
that is a distro-wide setting) and it - correctly - warns that it is being
told to use GCS but one of the inputs does not have GCS. This would not
be a problem but systemd also links with —fatal-warnings, so the build
explodes.
libcrypto.so: warning: GCS is required by -z gcs, but this shared library lacks the necessary property note. The dynamic loader might not enable GCS or refuse to load the program unless all the shared library dependencies have the GCS marking.
| collect2: error: ld returned 1 exit status
Signed-off-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bruce Ashfield [Tue, 6 May 2025 16:33:00 +0000 (12:33 -0400)]
linux-yocto/6.12: update to v6.12.27
Updating linux-yocto/6.12 to the latest korg -stable release that comprises
the following commits:
b801eaa96a5a Linux 6.12.27 92c6f8c577a0 bpf: Fix BPF_INTERNAL namespace import c72e4daa7ab2 Linux 6.12.26 6b9ebcbd315b mq-deadline: don't call req_get_ioprio from the I/O completion handler ccc4e973fd19 arm64: dts: ti: k3-j784s4-j742s2-main-common: Correct the GICD size 4b814a1c0c6d crypto: Kconfig - Select LIB generic option ab5281d21e37 usb: typec: class: Unlocked on error in typec_register_partner() ff4226252ca5 objtool: Silence more KCOV warnings, part 2 4dc5c03fbda0 objtool: Ignore end-of-section jumps for KCOV/GCOV 1b7647efade7 usb: xhci: Fix Short Packet handling rework ignoring errors 1042d22942c4 nvme: fixup scan failure for non-ANA multipath controllers 8bfe4f02b647 MIPS: cm: Fix warning if MIPS_CM is disabled 62bf68561d3c media: i2c: imx214: Fix uninitialized variable in imx214_set_ctrl() 67727c5764a8 crypto: lib/Kconfig - Hide arch options from user 4833d0a92b59 iommu: Handle race with default domain setup 49d628cb2460 net: dsa: mv88e6xxx: enable STU methods for 6320 family ff83998b6fa7 net: dsa: mv88e6xxx: enable .port_set_policy() for 6320 family 7dd0c1b86e6b net: dsa: mv88e6xxx: enable PVT for 6321 switch f4106753ae0d net: dsa: mv88e6xxx: fix atu_move_port_mask for 6341 family 324fd0ba933c Revert "net: dsa: mv88e6xxx: fix internal PHYs for 6320 family" 40966fc9939e usb: typec: class: Invalidate USB device pointers on partner unregistration 45314999f950 ext4: goto right label 'out_mmap_sem' in ext4_setattr() 9f609f04c2a1 comedi: jr3_pci: Fix synchronous deletion of timer 33e131a10459 vmxnet3: Fix malformed packet sizing in vmxnet3_process_xdp de7c24febd21 usb: typec: class: Fix NULL pointer access 543e0f8765e4 selftests/bpf: Adjust data size to have ETH_HLEN a9b0b9421e34 selftests/bpf: check program redirect in xdp_cpumap_attach b84e7bc48840 selftests/bpf: make xdp_cpumap_attach keep redirect prog attached f8ed4bfb035e selftests/bpf: fix bpf_map_redirect call for cpu map test 94d9c3366e4d xfs: flush inodegc before swapon d6989af0cb1b xfs: rename xfs_iomap_swapfile_activate to xfs_vm_swap_activate 8185e3ba7146 xfs: Do not allow norecovery mount with quotacheck 94c5584f36a9 xfs: do not check NEEDSREPAIR if ro,norecovery mount. 2b344e779d9a driver core: fix potential NULL pointer dereference in dev_uevent() 4f43c1bf2b1a driver core: introduce device_set_driver() helper bfc66c4c2804 Revert "drivers: core: synchronize really_probe() and dev_uevent()" 185d376875ea spi: spi-imx: Add check for spi_imx_setupxfer() 54cbce4fe04b drm/amdgpu: Use the right function for hdp flush 0fd149c26281 drm/amdgpu: use a dummy owner for sysfs triggered cleaner shaders v4 387461fba314 md/raid1: Add check for missing source disk in process_checks() cd0d49958ccb x86/cpu: Add CPU model number for Bartlett Lake CPUs with Raptor Cove cores 3027e5d81147 ubsan: Fix panic from test_ubsan_out_of_bounds 33903ad6274c spi: tegra210-quad: add rate limiting and simplify timeout error message 1b4cf6873a40 spi: tegra210-quad: use WARN_ON_ONCE instead of WARN_ON for timeouts 8f805b3746d2 ksmbd: fix WARNING "do not call blocking ops when !TASK_RUNNING" c9ffbc07920d riscv: Provide all alternative macros all the time d53b2d49a8e2 iomap: skip unnecessary ifs_block_is_uptodate check 2ef6eea2efce netfs: Only create /proc/fs/netfs with CONFIG_PROC_FS 2d097dc242ee x86/i8253: Call clockevent_i8253_disable() with interrupts disabled 40216dc23955 ASoC: fsl_asrc_dma: get codec or cpu dai from backend 0f9802f17422 scsi: pm80xx: Set phy_attached to zero when device is gone acf1610d8ba3 scsi: ufs: exynos: gs101: Put UFS device in reset on .suspend() b7a05edb2867 scsi: ufs: exynos: Move phy calls to .exit() callback c0724ac138db scsi: ufs: exynos: Enable PRDT pre-fetching with UFSHCD_CAP_CRYPTO 09c7a0692870 scsi: ufs: exynos: Ensure pre_link() executes before exynos_ufs_phy_init() 731047980d7e scsi: hisi_sas: Fix I/O errors caused by hardware port ID changes b626bc3c1dce ext4: make block validity check resistent to sb bh corruption b14d98641312 iommu: Clear iommu-dma ops on cleanup 71c3d43c8f70 cifs: Fix querying of WSL CHR and BLK reparse points over SMB1 9f8eeac3a61c timekeeping: Add a lockdep override in tick_freeze() 1776d6d01913 cifs: Fix encoding of SMB1 Session Setup Kerberos Request in non-UNICODE mode f4cb2c042a29 nvmet-fc: put ref when assoc->del_work is already scheduled 9635d486b608 nvmet-fc: take tgtport reference only once bb4b487bbd29 x86/bugs: Don't fill RSB on context switch with eIBRS 3b4fc0785ad4 x86/bugs: Don't fill RSB on VMEXIT with eIBRS+retpoline 5c41b7913fe0 x86/bugs: Use SBPB in write_ibpb() if applicable 6f3e9b256663 selftests/mincore: Allow read-ahead pages to reach the end of the file f1e28d46a01b x86/xen: disable CPU idle and frequency drivers for PVH dom0 5e58b93a1214 gpiolib: of: Move Atmel HSMCI quirk up out of the regulator comment fecf44d47384 objtool: Stop UNRET validation on UD2 ee5521176ad8 nvme: multipath: fix return value of nvme_available_path b9c89c97d70b nvme: re-read ANA log page after ns scan completes 5f3f3087a24f drm/xe/xe3lpg: Apply Wa_14022293748, Wa_22019794406 bbf2d0605247 drm/amdgpu: Increase KIQ invalidate_tlbs timeout bd12979c190c ACPI PPTT: Fix coding mistakes in a couple of sizeof() calls bff38d184b70 ACPI: EC: Set ec_no_wakeup for Lenovo Go S 24ede35eb2ab nvme: requeue namespace scan on missed AENs 781c870bdc20 xen: Change xen-acpi-processor dom0 dependency 90dc6c1e3b20 perf/core: Fix WARN_ON(!ctx) in __free_event() for partial init d6b66c20d585 selftests: ublk: fix test_stripe_04 a4e99cd41590 cgroup/cpuset: Don't allow creation of local partition over a remote one daed646d3cfa KVM: s390: Don't use %pK through debug printing 5e7c90294e7a KVM: s390: Don't use %pK through tracepoints c6c8afdcf824 sched/isolation: Make CONFIG_CPU_ISOLATION depend on CONFIG_SMP e5902d7ec720 kbuild: add dependency from vmlinux to sorttable 3568fd9e440e io_uring: always do atomic put from iowq 2dc0e5ceb3a9 rtc: pcf85063: do a SW reset if POR failed 18296b595176 9p/trans_fd: mark concurrent read and writes to p9_conn->err c548f95688e2 9p/net: fix improper handling of bogus negative read/write replies a3b8d8cf5196 ntb_hw_amd: Add NTB PCI ID for new gen CPU b5f8b03af515 ntb: reduce stack usage in idt_scan_mws 47ab2caba495 qibfs: fix _another_ leak 69578c7d02a9 objtool, lkdtm: Obfuscate the do_nothing() pointer 03bb66ede7ef objtool, regulator: rk808: Remove potential undefined behavior in rk806_set_mode_dcdc() 777e6735fecc objtool, ASoC: codecs: wcd934x: Remove potential undefined behavior in wcd934x_slim_irq_handler() 0485bdf88fb4 objtool, panic: Disable SMAP in __stack_chk_fail() 8b4f2b6389bf objtool: Silence more KCOV warnings da780c4a075b um: work around sched_yield not yielding in time-travel mode 0a205fdbb388 thunderbolt: Scan retimers after device router has been enumerated 7fb9a9d2e320 usb: host: xhci-plat: mvebu: use ->quirks instead of ->init_quirk() func 052fb65335be usb: gadget: aspeed: Add NULL pointer check in ast_vhub_init_dev() 2c97354037aa phy: rockchip: usbdp: Avoid call hpd_event_trigger in dp_phy_init 9ff59cb81500 usb: xhci: Avoid Stop Endpoint retry loop if the endpoint seems Running 2ef4b0e91170 dmaengine: dmatest: Fix dmatest waiting less when interrupted 69bb5d420da7 i3c: master: svc: Add support for Nuvoton npcm845 i3c 635be1360666 xhci: Handle spurious events on Etron host isoc enpoints 16a7a8e6c47f usb: xhci: Fix isochronous Ring Underrun/Overrun event handling cbfa55bda1fe usb: xhci: Complete 'error mid TD' transfers when handling Missed Service 66046b586c0a sound/virtio: Fix cancel_sync warnings on uninitialized work_structs f045fd7d46e8 usb: dwc3: gadget: Avoid using reserved endpoints on Intel Merrifield 2ecae001385e usb: dwc3: gadget: Refactor loop to avoid NULL endpoints 8a5e1d32c620 fs/ntfs3: Fix WARNING in ntfs_extend_initialized_size 8db49e89a7f8 fs/ntfs3: Keep write operations atomic 523bcab993fc usb: host: max3421-hcd: Add missing spi_device_id table 8b7b088925e9 mailbox: pcc: Always clear the platform ack interrupt first a32ebfa7d80b mailbox: pcc: Fix the possible race in updation of chan_in_use flag b817d2bfd6d4 bpf: Reject attaching fexit/fmod_ret to __noreturn functions 4131411f428d bpf: Only fails the busy counter check in bpf_cgrp_storage_get if it creates storage 46df1fe944d0 bpf: bpftool: Setting error code in do_loader() ab57877603ea s390/tty: Fix a potential memory leak bug 3b3aa72636a6 s390/sclp: Add check for get_zeroed_page() 6e026e605088 parisc: PDT: Fix missing prototype warning 4139072087e2 clk: check for disabled clock-provider in of_clk_get_hw_from_clkspec() c5c833f6375f bpf: Fix deadlock between rcu_tasks_trace and event_mutex. 7758e308aeda bpf: Fix kmemleak warning for percpu hashmap 0486de3c1b82 crypto: null - Use spin lock instead of mutex 0195abab4ac8 crypto: lib/Kconfig - Fix lib built-in failure when arch is modular fbea0efa8a1d crypto: ccp - Add support for PCI device 0x1134 eea7d57c4a64 MIPS: cm: Detect CM quirks from device tree 3da037149416 pinctrl: mcp23s08: Get rid of spurious level interrupts d00d598027b6 pinctrl: renesas: rza2: Fix potential NULL pointer dereference 1badc279b4ae selftests/bpf: Fix stdout race condition in traffic monitor caa559d3f74d USB: wdm: add annotation b8bf49f3f650 USB: wdm: wdm_wwan_port_tx_complete mutex in atomic context 52ae15c665b5 USB: wdm: close race between wdm_open and wdm_wwan_port_stop eb4973cf6b38 USB: wdm: handle IO errors in wdm_wwan_port_start 3e52ae347e95 USB: VLI disk crashes if LPM is used d85b7af3bdc5 usb: quirks: Add delay init quirk for SanDisk 3.2Gen1 Flash Drive 9924ee1bcd16 usb: quirks: add DELAY_INIT quirk for Silicon Motion Flash Drive 694fdc6a9c28 usb: dwc3: xilinx: Prevent spike in reset signal 52a7c9d930b9 usb: dwc3: gadget: check that event count does not exceed event buffer length 17c3984a4414 USB: OHCI: Add quirk for LS7A OHCI controller (rev 0x02) 7fb632a131e5 usb: chipidea: ci_hdrc_imx: implement usb_phy_init() error handling c99ace596505 usb: chipidea: ci_hdrc_imx: fix call balance of regulator routines 887902ca7349 usb: chipidea: ci_hdrc_imx: fix usbmisc handling 74cd6e408a4c usb: cdns3: Fix deadlock when using NCM gadget bce3055b08e3 usb: xhci: Fix invalid pointer dereference in Etron workaround 177771486508 xhci: Limit time spent with xHC interrupts disabled during bus resume 54c66c703029 USB: serial: simple: add OWON HDS200 series oscilloscope support 2eff9768197e USB: serial: option: add Sierra Wireless EM9291 ea0d806b94bf USB: serial: ftdi_sio: add support for Abacus Electrics Optical Probe 5d29f884fe9e serial: sifive: lock port in startup()/shutdown() callbacks f6ae572683d4 serial: msm: Configure correct working mode before starting earlycon 6f021bc0083b tty: Require CAP_SYS_ADMIN for all usages of TIOCL_SELMOUSEREPORT f6500093584e firmware: stratix10-svc: Add of_platform_default_populate() 4fb75c0ccc33 misc: microchip: pci1xxxx: Fix incorrect IRQ status handling during ack 12cc2193f2b9 misc: microchip: pci1xxxx: Fix Kernel panic during IRQ handler registration 3670dee37657 char: misc: register chrdev region with all possible minors 26df754de545 KVM: x86: Take irqfds.lock when adding/deleting IRQ bypass producer b5de7ac74f69 KVM: x86: Reset IRTE to host control if *new* route isn't postable a22fe6f84306 KVM: x86: Explicitly treat routing entry type changes as changes 3e243378f27c mei: vsc: Fix fortify-panic caused by invalid counted_by() use 34fafded1ca6 mei: me: add panther lake H DID 1f439fe4d8d9 scsi: Improve CDL control b39bb3b4eb64 USB: storage: quirk for ADATA Portable HDD CH94 40554c0f74bc ata: libata-scsi: Fix ata_msense_control_ata_feature() aa5778d06aeb ata: libata-scsi: Fix ata_mselect_control_ata_feature() return type ef2d6c63469e ata: libata-scsi: Improve CDL control df1a5d5c6134 mcb: fix a double free bug in chameleon_parse_gdd() 4c5f6925e267 cxl/core/regs.c: Skip Memory Space Enable check for RCD and RCH Ports f3cd533c3ae3 KVM: SVM: Allocate IR data using atomic allocation 7a8a6b627fde io_uring: fix 'sync' handling of io_fallback_tw() 74d9e2018789 LoongArch: KVM: Fix PMU pass-through issue if VM exits to host finally be83fd71ac6e LoongArch: KVM: Fully clear some CSRs when VM reboot 3b7f341eee94 LoongArch: Remove a bogus reference to ZONE_DMA 51424fd171ce LoongArch: Return NULL from huge_pte_offset() for invalid PMD 93b7872d3325 LoongArch: Handle fp, lsx, lasx and lbt assembly symbols 3939d6f29d34 irqchip/gic-v2m: Prevent use after free of gicv2m_get_fwnode() 140f05cbbf6b x86/insn: Fix CTEST instruction decoding 1ae30272b992 drm/amd/display: Force full update in gpu reset 3ff83378b6b1 drm/amd/display: Fix gpu reset in multidisplay config 92b58c671b36 drm: panel: jd9365da: fix reset signal polarity in unprepare ea532ba5e1e6 rust: firmware: Use `ffi::c_char` type in `FwFunc` 1909540037d3 scsi: mpi3mr: Fix pending I/O counter 9c31ac781950 net: phy: microchip: force IRQ polling mode for lan88xx c2a6b4d78c12 net: selftests: initialize TCP header and skb payload with zero d6a9c4e6f9b3 xen-netfront: handle NULL returned by xdp_convert_buff_to_frame() 64b816a6c41c crypto: atmel-sha204a - Set hwrng quality to lowest possible 28401a63c01a sched_ext: Use kvzalloc for large exit_dump allocation 30c0d6e778da virtio_console: fix missing byte order handling for cols and rows e17bc10bf30b netfilter: fib: avoid lookup if socket is available f33b678543b9 KVM: SVM: Disable AVIC on SNP-enabled system without HvInUseWrAllowed feature 9b34dffcd943 LoongArch: Make do_xyz() exception handlers more robust a556bb5178a3 LoongArch: Make regs_irqs_disabled() more clear 08bbdcb35c81 LoongArch: Select ARCH_USE_MEMTEST 8d37031464d5 perf/x86: Fix non-sampling (counting) events on certain x86 platforms 955f9ede52b8 bpf: Add namespace to BPF internal symbols 3decda1a3c19 splice: remove duplicate noinline from pipe_clear_nowait bcf6d3158c59 riscv: uprobes: Add missing fence.i after building the XOL buffer 4715ab8435eb riscv: Replace function-like macro by static inline function e22010c3b83f iommu/amd: Return an error if vCPU affinity is set for non-vCPU IRTE 7f24ea6a460b block: never reduce ra_pages in blk_apply_bdi_limits 66d7702b42ff pds_core: make wait_context part of q_info ff207e83dac4 pds_core: Remove unnecessary check in pds_client_adminq_cmd() 6702f5c6b22d pds_core: handle unsupported PDS_CORE_CMD_FW_CONTROL result 2982e07ad72b pds_core: Prevent possible adminq overflow/stuck condition dd6c299390bd net: dsa: mt7530: sync driver-specific behavior of MT7531 variants c6f035044104 net_sched: hfsc: Fix a potential UAF in hfsc_dequeue() too 86cd4641c713 net_sched: hfsc: Fix a UAF vulnerability in class handling a61afd54826a fix a couple of races in MNT_TREE_BENEATH handling by do_move_mount() 4fb743ee2128 net: ethernet: mtk_eth_soc: net: revise NETSYSv3 hardware configuration 0ceef62a328c tipc: fix NULL pointer dereference in tipc_mon_reinit_self() 41143e71052a net: phy: leds: fix memory leak 3340654bbf6b net: lwtunnel: disable BHs when required eeab6618037b scsi: ufs: core: Add NULL check in ufshcd_mcq_compl_pending_transfer() 29daa63f2c75 scsi: core: Clear flags for scsi_cmnd that did not complete fdd2a03561a4 net/mlx5: Move ttc allocation after switch case to prevent leaks 0b682680b12b net/mlx5: Fix null-ptr-deref in mlx5_create_{inner_,}ttc_table() ef258a15e76c vhost-scsi: Fix vhost_scsi_send_status() 0ac4643bf2c9 vhost-scsi: Fix vhost_scsi_send_bad_target() 461c258ba7f6 vhost-scsi: Add better resource allocation failure handling 5d92e582d162 cgroup/cpuset-v1: Add missing support for cpuset_v2_mode 9a447f748f6c btrfs: zoned: return EIO on RAID1 block group write pointer mismatch c8a0c38beb87 btrfs: avoid page_lockend underflow in btrfs_punch_hole_lock_range() 6c1c66580587 cpufreq: fix compile-test defaults ef56c130f6e6 cpufreq: Do not enable by default during compile testing dbe413a8cdc6 cpufreq: cppc: Fix invalid return value in .get() callback 7d002f591486 scsi: ufs: mcq: Add NULL check in ufshcd_mcq_abort() 28fbd7b13b4d cpufreq: scpi: Fix null-ptr-deref in scpi_cpufreq_get_rate() 7ccfadfb2562 cpufreq: scmi: Fix null-ptr-deref in scmi_cpufreq_get_rate() fbdba5f37413 cpufreq: apple-soc: Fix null-ptr-deref in apple_soc_cpufreq_get_rate() 16c8aa5de135 dma/contiguous: avoid warning about unused size_bytes 40bf7f560ca4 cpufreq: sun50i: prevent out-of-bounds access aef37505c496 ceph: Fix incorrect flush end position calculation 984830d902fb lib/Kconfig.ubsan: Remove 'default UBSAN' from UBSAN_INTEGER_WRAP b26ac563704c drm/amd/display/dml2: use vzalloc rather than kzalloc 50ec8c24286e drm/amd/display: Fix unnecessary cast warnings from checkpatch 0fdb612c2072 drm/xe/bmg: Add one additional PCI ID c187aaa9e79b net/niu: Niu requires MSIX ENTRY_DATA fields touch before entry reads 869749e48115 scsi: ufs: exynos: Disable iocc if dma-coherent property isn't set 56f3327cdd18 scsi: ufs: exynos: Move UFS shareability value to drvdata 661380d98218 scsi: ufs: exynos: Add gs101_ufs_drv_init() hook and enable WriteBooster 0e76176edc9b scsi: ufs: exynos: Remove superfluous function parameter ffcdfaecd422 scsi: ufs: exynos: Remove empty drv_init method 1aec4d14cf81 ksmbd: fix use-after-free in __smb2_lease_break_noti() 0fc403192dcc ksmbd: browse interfaces list on FSCTL_QUERY_INTERFACE_INFO IOCTL 8d2c1acc88cb ksmbd: add netdev-up/down event debug print 0772765ac82d ksmbd: use __GFP_RETRY_MAYFAIL 60cb4dfcf739 accel/ivpu: Fix the NPU's DPU frequency calculation 27fcf647818b accel/ivpu: Add auto selection logic for job scheduler 35ba7b2d4dd0 PCI/MSI: Add an option to write MSIX ENTRY_DATA before any reads 46d357520934 PCI/MSI: Handle the NOMASK flag correctly for all PCI/MSI backends aad12468967b PCI/MSI: Convert pci_msi_ignore_mask to per MSI domain flag 8fe536f1026c scsi: ufs: qcom: fix dev reference leaked through of_qcom_ice_get a122b3b1f5b8 of: resolver: Fix device node refcount leakage in of_resolve_phandles() 05576e1304fd of: resolver: Simplify of_resolve_phandles() using __free() 56ddf0023b00 arm64: dts: ti: k3-j784s4-j742s2-main-common: Fix serdes_ln_ctrl reg-masks 107b05f54022 arm64: dts: ti: Refactor J784s4 SoC files to a common file bde067b82ac7 iio: adc: ad7768-1: Fix conversion result sign 68565706b589 iio: adc: ad7768-1: Move setting of val a bit later to avoid unnecessary return value check 8f229785c5b7 net: dsa: mv88e6xxx: fix VTU methods for 6320 family 2afa5ea7c48d block: make sure ->nr_integrity_segments is cloned in blk_rq_prep_clone ed7535b14116 block: remove the ioprio field from struct request 3e12e8c273eb block: remove the write_hint field from struct request 575601d08abf media: ov08x40: Add missing ov08x40_identify_module() call on stream-start 9c00d5445423 media: ov08x40: Move ov08x40_identify_module() function up fc96a720d887 media: i2c: imx214: Fix link frequency validation 5a5ab62e4a76 media: i2c: imx214: Check number of lanes from device tree 2a60b6bef436 media: i2c: imx214: Replace register addresses with macros 694d85794ac6 media: i2c: imx214: Convert to CCI register access helpers a9aa21098974 media: i2c: imx214: Simplify with dev_err_probe() d3a38834b206 media: i2c: imx214: Use subdev active state 9d5752b85378 PM: EM: Address RCU-related sparse warnings db3b3964af11 PM: EM: use kfree_rcu() to simplify the code 27ce35d80a1c mmc: sdhci-msm: fix dev reference leaked through of_qcom_ice_get 311a651fbb78 soc: qcom: ice: introduce devm_of_qcom_ice_get 1c9798bf8145 mm/vmscan: don't try to reclaim hwpoison folio 031273540275 tracing: Verify event formats that have "%*p.." 0b603e775979 tracing: Add __print_dynamic_array() helper e62c31802dcc module: sign with sha512 instead of sha1 by default 2ee7ebed771b mips: Add '-std=gnu11' to vdso CFLAGS b2c792d89ac5 yaffs2: switch from readlink_copy() to vfs_readlink() 807165b1ec1c tools/power/x86/intel-speed-select: Prefix header search path with sysroot e97df805b938 drm/tilcdc: Set preferred depth 7160a4379dcc arch/arm64/configs: remove CONFIG_SM_DISPCC_8650 6d8ac5ebe6e8 aufs6: core 587abc1b64c4 aufs6: standalone 1af41d30ef42 aufs6: mmap 6ee2464d2e9d aufs6: base 103b676505f7 aufs6: kbuild 67281562943f qemux86: add configuration symbol to select values 73f315ca0823 sched/isolation: really align nohz_full with rcu_nocbs 1e4e7f8ab622 clear_warn_once: add a clear_warn_once= boot parameter 918e7a825e8b clear_warn_once: bind a timer to written reset value f533f87c3758 clear_warn_once: expand debugfs to include read support f149ca27cba9 tools: Remove some options from CLANG_CROSS_FLAGS e633abe9c44e libbpf: Fix build warning on ref_ctr_off ec0916a4cfc1 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel. 03721ceb5626 perf: x86-32: explicitly include <errno.h> 4c36c5295bb0 perf: mips64: Convert __u64 to unsigned long long b0200449610d perf: fix bench numa compilation aff0940b2212 perf: add SLANG_INC for slang.h ef912018d28c perf: add sgidefs.h to for mips builds d8860f858b87 perf: change --root to --prefix for python install dc38a0eee6e5 perf: add 'libperl not found' warning 6ed51f8786da perf: force include of <stdbool.h> c538d4c4ac65 fat: Replace prandom_u32() with get_random_u32() 63d94846f0c5 fat: don't use obsolete random32 call in namei_vfat 7816667451ef FAT: Added FAT_NO_83NAME f81dbd60f0d5 FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option 771cdefba44b FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option a24784fd8f88 yaffs2: update to v6.12 folio changes d0a48fd46db8 yaffs2: adapt to v6.10 i_time changes d097e4d4115a yaffs: fix mtime/itime field access 4411e0d49fe3 yaffs2: update VFS ctime operations to 6.6+ 1b6619086e8b yaffs2: v6.5 fixups 25b261ee3c54 yaffs2: Fix miscalculation of devname buffer length 5c07936a5d1c yaffs2: convert user_namespace to mnt_idmap 55986a1284b3 yaffs2: replace bdevname call with sprintf 6f5508f8db8f yaffs2: convert read_page -> readfolio fd179a5df5d5 yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL c9a620dacdd1 yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name 78588208ed17 yaffs2: v5.12+ build fixups (not runtime tested) 8d2dddba272c yaffs: include blkdev.h 8c1ca9ef9712 yaffs: Fix build failure by handling inode i_version with proper atomic API 27005cbac2ed yaffs2: v5.6 build fixups 668211c9f9b7 yaffs2: fix memory leak when /proc/yaffs is read 285f911dcc1c yaffs: add strict check when call yaffs_internal_read_super ffc2ed489ccf yaffs: repair yaffs_get_mtd_device 6dce4b70a5e3 yaffs: Fix build failure by handling inode i_version with proper atomic API 19f283abc5d1 yaffs2: fix memory leak in mount/umount 04e84672b571 yaffs: Avoid setting any ACL releated xattr 4f221d6a32e2 Yaffs:check oob size before auto selecting Yaffs1 81f36004e56b fs: yaffs2: replace CURRENT_TIME by other appropriate apis 26d7a3dd0054 yaffs2: adjust to proper location of MS_RDONLY a7016eac4540 yaffs2: import git revision b4ce1bb (jan, 2020) feb240bbb91e initramfs: allow an optional wrapper script around initramfs generation 874746eaa341 drivers: gpu: drm: msm: registers: improve reproducibility 1d42508faee8 tools: use basename to identify file in gen-mach-types 4b055eca593d iwlwifi: select MAC80211_LEDS conditionally 97e20e275ac0 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119) 6dec58319165 defconfigs: drop obselete options a416ccb5b6c9 linux-yocto: Handle /bin/awk issues 7efe8a1e5158 uvesafb: provide option to specify timeout for task completion 78d10ae07eca uvesafb: print error message when task timeout occurs 80473b7eb8ca compiler.h: Undef before redefining __attribute_const__ ddeff2f1a9a7 vmware: include jiffies.h 3dcdda8912b4 Resolve jiffies wrapping about arp 3b1507db6735 nfs: Allow default io size to be configured. c2fedad05f77 check console device file on fs when booting 208d6fbada3f mount_root: clarify error messages for when no rootfs found dbe9454c8ea0 mconf: fix output of cflags and libraries 7c7b224f5cce menuconfig,mconf-cfg: Allow specification of ncurses location b6c189c81397 modpost: mask trivial warnings a5cc21325ba9 kbuild: exclude meta directory from distclean processing 361ec143c23f powerpc: serialize image targets 605e6ccb304c arm: serialize build targets e94b04fcb7d2 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition 44cc7f69a0a0 cpu/amd: inhibit SMP check for qemux86 a08cb65331e6 x86_64_defconfig: Fix warnings 8ad332ef777b mips: make current_cpu_data preempt safe 754f05ddce3f mips: vdso: fix 'jalr $t9' crash in vdso code 325ff78ff44d mips: Kconfig: add QEMUMIPS64 option 99ae0eadcf11 4kc cache tlb hazard: tlbp cache coherency c6894c66a534 malta uhci quirks: make allowance for slow 4k(e)c 8b52c01f3294 arm64: defconfig: remove CONFIG_IPQ_APSS_5018 16c7629f035e drm/fb-helper: move zeroing code to drm_fb_helper_fill_var 6b60c874cbb0 arm64: defconfig: cleanup config options 8e44673ecd89 vexpress: Pass LOADADDR to Makefile f34e6805aad5 arm: ARM EABI socketcall 94dec9b88de4 ARM: LPAE: Invalidate the TLB for module addresses during translation fault
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Integrating the following commit(s) to linux-yocto/.:
1/3 [
Author: Bruce Ashfield
Email: bruce.ashfield@gmail.com
Subject: genericarm64: build drivers as modules
Date: Tue, 6 May 2025 09:27:53 -0400
Load on demand. They should not be needed
to run the kernel since it has already been
loaded and firmware has already configured HW
enough to boot into kernel.
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
]
2/3 [
Author: Mikko Rapeli
Email: mikko.rapeli@linaro.org
Subject: nft_test.cfg: build CONFIG_LEDS_GPIO as module
Date: Tue, 22 Apr 2025 17:38:28 +0300
The driver can be compiled as module.
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
]
3/3 [
Author: Mikko Rapeli
Email: mikko.rapeli@linaro.org
Subject: nft_test.cfg: build CONFIG_VETH as module
Date: Tue, 22 Apr 2025 17:38:29 +0300
The driver can be compiled as module
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
]
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bruce Ashfield [Tue, 6 May 2025 16:32:57 +0000 (12:32 -0400)]
linux-yocto/6.12: update to v6.12.24
Updating linux-yocto/6.12 to the latest korg -stable release that comprises
the following commits:
b6efa8ce222e Linux 6.12.24 ae5a6a0b425e HSI: ssi_protocol: Fix use after free vulnerability in ssi_protocol Driver Due to Race Condition bdbecb2bf531 s390/cpumf: Fix double free on error in cpumf_pmu_event_init() 281782d2c673 Bluetooth: hci_uart: Fix another race during initialization f87626a55c21 media: mediatek: vcodec: mark vdec_vp9_slice_map_counts_eob_coef noinline 9c03f6194e88 kbuild: Add '-fno-builtin-wcslen' 5f494f482341 libbpf: Prevent compiler warnings/errors bd6eae1f30bf x86/e820: Fix handling of subpage regions when calculating nosave ranges in e820__register_nosave_regions() 6a59b70fe71e nfsd: don't ignore the return code of svc_proc_register() b2b18a9f68f9 NFSD: Fix CB_GETATTR status fix 560c03189615 NFSD: fix decoding in nfs4_xdr_dec_cb_getattr 7005fdceff20 ACPI: platform-profile: Fix CFI violation when accessing sysfs files 20867f094883 x86/paravirt: Move halt paravirt calls under CONFIG_PARAVIRT 5d9484cd372d iommufd: Fail replace if device has not been attached 6d11543bf37a iommufd: Make attach_handle generic than fault specific 9ca4fe357464 arm64: errata: Add newer ARM cores to the spectre_bhb_loop_affected() lists d25a240c5a93 thermal/drivers/mediatek/lvts: Disable Stage 3 thermal threshold 0131251d932f thermal/drivers/mediatek/lvts: Disable monitor mode during suspend 9580b603654d selftests: mptcp: fix incorrect fd checks in main_loop 2f1b4d6725b0 selftests: mptcp: close fd_in before returning in main_loop 0f91e4f69fe6 sched_ext: create_dsq: Return -EEXIST on duplicate request 7a30bbd36cb4 s390: Fix linker error when -no-pie option is unavailable f268ee2fbb53 s390/virtio_ccw: Don't allocate/assign airqs for non-existing queues 05a0f9c40781 s390/pci: Fix zpci_bus_is_isolated_vf() for non-VFs 92ca7270fe5e ring-buffer: Use flush_kernel_vmap_range() over flush_dcache_folio() de08212061ea pinctrl: samsung: add support for eint_fltcon_offset c1368383cd37 pinctrl: qcom: Clear latched interrupt status when changing IRQ type beb9a5cb7aa5 phy: freescale: imx8m-pcie: assert phy reset and perst in power off 869202291aa4 PCI: Fix wrong length of devres array 9707d0c932f4 PCI: Fix reference leak in pci_register_host_bridge() d69ad6e1a579 PCI: Fix reference leak in pci_alloc_child_bus() e4a1d7defbc2 PCI: pciehp: Avoid unnecessary device replacement check ce9643a541b6 PCI: j721e: Fix the value of .linkdown_irq_regfield for J784S4 71bf0769a6c6 PCI: brcmstb: Fix missing of_node_put() in brcm_pcie_probe() 712d84459a53 of/irq: Fix device node refcount leakages in of_irq_init() d0f25a99770f of/irq: Fix device node refcount leakage in API irq_of_parse_and_map() 29cb94963ca9 of/irq: Fix device node refcount leakages in of_irq_count() 3540164c7594 of/irq: Fix device node refcount leakage in API of_irq_parse_raw() dc83eccc93ed of/irq: Fix device node refcount leakage in API of_irq_parse_one() 60faeef98b99 ntb: use 64-bit arithmetic for the MSI doorbell mask 34baf1cfd679 net: mana: Switch to page pool for jumbo frames a2acc67d6155 misc: pci_endpoint_test: Fix displaying 'irq_type' after 'request_irq' error e98f77f74c66 selftests/landlock: Add a new test for setuid() 76ab50fa6e35 selftests/landlock: Split signal_scoping_threads tests b017f2846a3e landlock: Prepare to add second errata 332facfa8075 landlock: Always allow signals between threads of the same process 7dd7f87e0711 landlock: Add erratum for TCP fix ea980ea4d18a landlock: Add the errata interface 9b0d24fa64ca landlock: Move code to ease future backports 7bc5c360375d KVM: x86: Acquire SRCU in KVM_GET_MP_STATE to protect guest memory accesses bbf821c35dab KVM: x86: Explicitly zero-initialize on-stack CPUID unions 99b99032a89e KVM: PPC: Enable CAP_SPAPR_TCE_VFIO on pSeries KVM guests fae0a8796c4f KVM: Allow building irqbypass.ko as as module when kvm.ko is a module 3bc2208c749c gve: handle overflow when reporting TX consumed descriptors 62024ad4c51e gpio: zynq: Fix wakeup source leaks on device unbind 2d66517135de gpio: tegra186: fix resource handling in ACPI probe path e66fb9b4e9ad ftrace: Properly merge notrace hashes 1fce9574b9d5 ftrace: Add cond_resched() to ftrace_graph_set_hash() 3e467f1c74f4 dt-bindings: coresight: qcom,coresight-tpdm: Fix too many 'reg' 58c453801bb9 dt-bindings: coresight: qcom,coresight-tpda: Fix too many 'reg' 74f01c2ca802 dm-verity: fix prefetch-vs-suspend race dd91458a8443 dm-integrity: fix non-constant-time tag verification ba42f98f092b dm-integrity: set ti->error on memory allocation failure a1a4fdc33d9c dm-ebs: fix prefetch-vs-suspend race 08deafddfcb0 dlm: fix error if active rsb is not hashed b77f8a17ef6f dlm: fix error if inactive rsb is not hashed eaa7014aecb5 crypto: ccp - Fix uAPI definitions of PSP errors 5116b340cf88 crypto: ccp - Fix check for the primary ASP device 1f9648e2460b clk: qcom: gdsc: Set retain_ff before moving to HW CTRL 4d6fb2a43f0d clk: qcom: gdsc: Capture pm_genpd_add_subdomain result code 12ef07c4bfe4 clk: qcom: gdsc: Release pm subdomains in reverse add order 809e83a5758e clk: qcom: clk-branch: Fix invert halt status bit check for votable clocks 56c29847bc4c clk: renesas: r9a07g043: Fix HP clock source for RZ/Five 4ed194d9bbf7 cifs: Ensure that all non-client-specific reparse points are processed by the server 2a240405978d cifs: fix integer overflow in match_server() e0717385f5c5 cifs: avoid NULL pointer dereference in dbg call 2eb6e5e0944c CIFS: Propagate min offload along with other parameters from primary to secondary channels. 63d71ae01092 thermal/drivers/rockchip: Add missing rk3328 mapping entry 474b3194c8ff tracing: Do not add length to print format in synthetic events 868df4eb784c tracing: fprobe events: Fix possible UAF on modules a7fda1fd6d6c x86/xen: fix balloon target initialization for PVH dom0 9e7c37fadb3b sctp: detect and prevent references to a freed transport in sendmsg 65b259e3e06d mm/hwpoison: introduce folio_contain_hwpoisoned_page() helper 1fd89407d7cb mm/hugetlb: move hugetlb_sysctl_init() to the __init section 73d17d48df6c mm/hwpoison: do not send SIGBUS to processes with recovered clean pages 14936034de92 mm/userfaultfd: fix release hang over concurrent GUP cc98577f9117 mm: add missing release barrier on PGDAT_RECLAIM_LOCKED unlock 2532df0a9b74 mm/mremap: correctly handle partial mremap() of VMA starting at 0 6dd8d9440fd3 mm: fix lazy mmu docs and usage 83b6b5061ebd mm: make page_mapped_in_vma() hugetlb walk aware 53dc6b00c02d mm/rmap: reject hugetlb folios in folio_make_device_exclusive() ab0af0126023 mm/damon/ops: have damon_get_folio return folio even for tail pages 5f7f6abd92b6 net: Fix null-ptr-deref by sock_lock_init_class_and_name() and rmmod. fba396b79942 sparc/mm: avoid calling arch_enter/leave_lazy_mmu() in set_ptes 690446dc72d5 sparc/mm: disable preemption in lazy mmu mode cb6b9bd66181 iommu/vt-d: Wire up irq_ack() to irq_move_irq() for posted MSIs 6722a0cb8186 iommu/vt-d: Fix possible circular locking dependency e953e11123aa iommu/vt-d: Don't clobber posted vCPU IRTE when host IRQ affinity changes c95a438d2c37 iommu/vt-d: Put IRTE back into posted MSI mode if vCPU posting is disabled e5dd974d6e00 iommu/tegra241-cmdqv: Fix warnings due to dmam_free_coherent() b8b41eac7054 iommufd: Fix uninitialized rc in iommufd_access_rw() 327e6b8b2816 btrfs: zoned: fix zone finishing with missing devices 380ba38801eb btrfs: zoned: fix zone activation with missing devices b9af27d020e4 btrfs: tests: fix chunk map leak after failure to add it to the tree 601db4e8bfe8 btrfs: fix non-empty delayed iputs list on unmount due to compressed write workers 61a5c565fd24 backlight: led_bl: Hold led_access lock when calling led_sysfs_disable() a3b36c9da305 arm64: dts: exynos: gs101: disable pinctrl_gsacore node ac45d49df9dc arm64: dts: mediatek: mt8173: Fix disp-pwm compatible string 1dd288783dcb arm64: mm: Correct the update of max_pfn 21c512430424 arm64: tegra: Remove the Orin NX/Nano suspend key eec737e17e55 arm64: mops: Do not dereference src reg for a set operation 52f251dbfb38 mtd: rawnand: Add status chack in r852_ready() 5479a6af3c96 mtd: inftlcore: Add error check for inftl_read_oob() 6554491b4a77 mptcp: only inc MPJoinAckHMacFailure for HMAC failures dc81e41a307d mptcp: fix NULL pointer in can_accept_new_subflow c7f611e711c8 lib: scatterlist: fix sg_split_phys to preserve original scatterlist offsets 95f0958240e6 locking/lockdep: Decrease nr_unused_locks if lock unused in zap_class() 008b90d36d91 mailbox: tegra-hsp: Define dimensioning masks in SoC data 7b47df6498f2 mfd: ene-kb3930: Fix a potential NULL pointer dereference 4b037851edd7 leds: rgb: leds-qcom-lpg: Fix calculation of best period Hi-Res PWMs 5ae9e361e284 leds: rgb: leds-qcom-lpg: Fix pwm resolution max for Hi-Res PWMs e94314b72768 kbuild: exclude .rodata.(cst|str)* when building ranges 9eaec071f111 jbd2: remove wrong sb->s_sequence check e6bba328578f i3c: Add NULL pointer check in i3c_master_queue_ibi() 34aaf448e204 i3c: master: svc: Use readsb helper for reading MDB 0327683c5571 ima: limit the number of ToMToU integrity violations 48085ab823f0 ima: limit the number of open-writers integrity violations 9a264e4a595d smb311 client: fix missing tcon check when mounting with linux/posix extensions 44a2572a0fdc soc: samsung: exynos-chipid: Add NULL pointer check in exynos_chipid_probe() fbda9cac1bb3 svcrdma: do not unregister device for listeners f3cb81cb96d5 tpm: do not start chip while suspended 76cc21a9a40f udf: Fix inode_getblk() return value 8fd217a99dbb vdpa/mlx5: Fix oversized null mkey longer than 32bit a1dde7457d57 f2fs: fix to avoid atomicity corruption of atomic file 16d9067f00e3 ext4: fix off-by-one error in do_split a77955f7704b bus: mhi: host: Fix race between unprepare and queue_buf 7d12a7d43c7b accel/ivpu: Fix deadlock in ivpu_ms_cleanup() 5c200b7ebdf9 accel/ivpu: Fix warning in ivpu_ipc_send_receive_internal() 7022946773d7 ALSA: hda/realtek: Enable Mute LED on HP OMEN 16 Laptop xd000xx d2a2076d9cb7 ASoC: qdsp6: q6asm-dai: fix q6asm_dai_compr_set_params error path 17f1e4213113 ASoC: qdsp6: q6apm-dai: fix capture pipeline overruns. aa7e9eabe68c ASoC: qdsp6: q6apm-dai: set 10 ms period and buffer alignment. a28217b064f8 ASoC: q6apm-dai: make use of q6apm_get_hw_pointer f5891f204d13 ASoC: q6apm-dai: schedule all available frames to avoid dsp under-runs d383051f8293 ASoC: q6apm: add q6apm_get_hw_pointer helper acadb2e2b3c5 ASoC: codecs: wcd937x: fix a potential memory leak in wcd937x_soc_codec_probe() 3e0356857ed5 io_uring/kbuf: reject zero sized provided buffers b7c6d081c19a io_uring/net: fix io_req_post_cqe abuse by send bundle 0828d6e9add6 io_uring/net: fix accept multishot handling 00026f80c430 wifi: mt76: mt7925: fix the wrong simultaneous cap for MLO 374f2bf7b3ff wifi: mt76: mt7925: fix the wrong link_idx when a p2p_device is present 0dd6c62c1370 wifi: mt76: mt7925: fix country count limitation for CLC 1706a07b38ae wifi: mt76: mt7925: ensure wow pattern command align fw format eb434adf79dd wifi: mac80211: fix integer overflow in hwmp_route_info_get() ef44c9e81172 wifi: mt76: Add check for devm_kstrdup() 9d6b789a8ff9 clocksource/drivers/stm32-lptimer: Use wakeup capable instead of init wakeup 9d99358349e4 mtd: Replace kcalloc() with devm_kcalloc() 2b27df685244 net: dsa: mv88e6xxx: fix internal PHYs for 6320 family 020404265b87 net: dsa: mv88e6xxx: workaround RGMII transmit delay erratum for 6320 family 39fc12742292 mtd: Add check for devm_kcalloc() 91e1405088a9 mptcp: sockopt: fix getting freebind & transparent 1b4ecd033e30 mptcp: sockopt: fix getting IPV6_V6ONLY c59dc7c425cc media: chips-media: wave5: Fix timeout while testing 10bit hevc fluster d595713de7f8 media: chips-media: wave5: Fix a hang after seeking 76cab9f540cc media: chips-media: wave5: Avoid race condition in the interrupt handler 7fafaf00cc5f media: chips-media: wave5: Fix gray color on screen 6f77a6d2ea31 media: i2c: imx214: Rectify probe error handling related to runtime PM 8dd2d1561c6a media: i2c: imx219: Rectify runtime PM handling in probe and remove 99f929914713 media: i2c: imx319: Rectify runtime PM handling probe and remove bb3fd8b7906a media: venus: hfi_parser: refactor hfi packet parsing logic 53e376178cea media: venus: hfi_parser: add check to avoid out of bound access 3da0d7318730 media: nuvoton: Fix reference handling of ece_pdev 4b1bdaadbf19 media: nuvoton: Fix reference handling of ece_node e22fa60bcd85 media: i2c: ov7251: Introduce 1 ms delay between regulators and en GPIO b155aecd7f0f media: i2c: ov7251: Set enable GPIO low in probe ad466aacb17f media: i2c: ccs: Set the device's runtime PM status correctly in probe 983b5434a66b media: i2c: ccs: Set the device's runtime PM status correctly in remove 3ff4feef7af3 Revert "media: imx214: Fix the error handling in imx214_probe()" baea1762cdf2 media: v4l2-dv-timings: prevent possible overflow in v4l2_detect_gtf() b933486f6b80 media: imx219: Adjust PLL settings based on the number of MIPI lanes dd0d323b472f media: platform: stm32: Add check for clk_enable() 3f1f712f80db media: visl: Fix ERANGE error when setting enum controls f67c3f84520b media: hi556: Fix memory leak (on error) in hi556_check_hwcfg() df6ef66cc3ff media: streamzap: prevent processing IR data on URB failure afada73000be accel/ivpu: Fix PM related deadlocks in MS IOCTLs 4c8056fbb17d tpm, tpm_tis: Fix timeout handling when waiting for TPM status 7266066b9469 mtd: rawnand: brcmnand: fix PM resume warning 33607e924023 spi: cadence-qspi: Fix probe on AM62A LP SK c32278961340 KVM: arm64: Tear down vGIC on failed vCPU creation 20c105f58769 arm64: errata: Add KRYO 2XX/3XX/4XX silver cores to Spectre BHB safe list 3b0f2526c87e arm64: errata: Assume that unknown CPUs _are_ vulnerable to Spectre BHB 4af285843525 arm64: errata: Add QCOM_KRYO_4XX_GOLD to the spectre_bhb_k24_list 2ff58c5b260f arm64: cputype: Add MIDR_CORTEX_A76AE 7e619d4d2715 xenfs/xensyms: respect hypervisor's "next" indication 88962f197876 media: rockchip: rga: fix rga offset lookup ceb23f66ef8f media: siano: Fix error handling in smsdvb_module_init() 7631d176086c media: vim2m: print device name after registering device 679424f8b314 media: venus: hfi: add check to handle incorrect queue size 530f623f56a6 media: venus: hfi: add a check to handle OOB in sfr region 72629a582db7 media: intel/ipu6: set the dev_parent of video device to pdev f598940803cd media: mgb4: Fix switched CMT frequency range "magic values" sets 66e35600f726 media: i2c: adv748x: Fix test pattern selection mask 1c673fa8889e media: mgb4: Fix CMT registers update logic ced0ddecc04b media: uapi: rkisp1-config: Fix typo in extensible params example 8c64a2cfdbb8 media: mtk-vcodec: venc: avoid -Wenum-compare-conditional warning 9f009fa823c5 media: mediatek: vcodec: Fix a resource leak related to the scp device in FW initialization 956c5e4965d5 dt-bindings: media: st,stmipid02: correct lane-polarities maxItems a9a73da6e014 auxdisplay: hd44780: Fix an API misuse in hd44780.c bdbc38bd12eb HID: pidff: Fix set_device_control() 1565ead12f5c HID: pidff: Fix 90 degrees direction name North -> East 5318556ed31f HID: pidff: Compute INFINITE value instead of using hardcoded 0xffff b15301f28960 HID: pidff: Clamp effect playback LOOP_COUNT value 42ec3b5bf7e6 HID: pidff: Rename two functions to align them with naming convention b782892cd264 HID: pidff: Remove redundant call to pidff_find_special_keys 239c8ac58cfc HID: pidff: Support device error response from PID_BLOCK_LOAD 2d698115f9b3 HID: pidff: Comment and code style update 35ebc643aff9 HID: hid-universal-pidff: Add Asetek wheelbases support 211861869766 HID: pidff: Make sure to fetch pool before checking SIMULTANEOUS_MAX 13d15dd6175e HID: pidff: Factor out pool report fetch and remove excess declaration 6fbf2ac6d5b6 HID: pidff: Use macros instead of hardcoded min/max values for shorts 87783d301e98 HID: pidff: Simplify pidff_rescale_signed 61e4de1728ac HID: pidff: Move all hid-pidff definitions to a dedicated header 8f0b2d791e0f HID: pidff: Factor out code for setting gain 5243ca2a5c67 HID: pidff: Rescale time values to match field units 7009a060ffef HID: pidff: Define values used in pidff_find_special_fields 9cdd95f9a4f3 HID: pidff: Simplify pidff_upload_effect function 433c4234ff73 HID: pidff: Completely rework and fix pidff_reset function 2b1e13ed295a HID: pidff: Stop all effects before enabling actuators 629405d18543 HID: pidff: Clamp PERIODIC effect period to device's logical range 43e5e2879dee s390/pci: Fix s390_mmio_read/write syscall page fault handling dd3edffae868 ext4: don't treat fhandle lookup of ea_inode as FS corruption 806908d5d978 bpf: support SKF_NET_OFF and SKF_LL_OFF on skb frags 7b9bdd705911 erofs: set error to bio if file-backed IO fails 61f590c6771b pwm: fsl-ftm: Handle clk_get_rate() returning 0 a2786a82de0c pwm: rcar: Improve register calculation 4cb15042b5f3 pwm: mediatek: Prevent divide-by-zero in pwm_mediatek_config() 2bef78f9622d tpm: End any active auth session before shutdown 01c2ed3f7dce tpm, tpm_tis: Workaround failed command reception on Infineon devices a4e3c80cecbe ktest: Fix Test Failures Due to Missing LOG_FILE Directories 9a6be23eb0ff tracing: probe-events: Add comments about entry data storing code 52eafaa56f8f fbdev: omapfb: Add 'plane' value check fb4c507bf24a drm/amdgpu: grab an additional reference on the gang fence v2 5c3cfcf0b4bf PCI: vmd: Make vmd_dev::cfg_lock a raw_spinlock_t type 73d2b9625031 PCI: Check BAR index for validity e64be12f8401 drm/amdgpu: Fix the race condition for draining retry fault 8feefd106afb PCI: Enable Configuration RRS SV early dc4380f34613 drm/amdgpu: handle amdgpu_cgs_create_device() errors in amd_powerplay_create() 7a872981c69d PCI: Add Rockchip Vendor ID 6e415cb823b1 drm/mediatek: mtk_dpi: Explicitly manage TVD clock in power on/off 39a7576d113c drm/mediatek: mtk_dpi: Move the input_2p_en bit to platform data 831c4017f4ab drm/xe/xelp: Move Wa_16011163337 from tunings to workarounds 1a322b330dc0 drm/amdkfd: debugfs hang_hws skip GPU with MES 10ce36501f1e drm/amdkfd: Fix pqm_destroy_queue race with GPU reset ffd37d7d44d7 drm/amdkfd: Fix mode1 reset crash issue 96757c085bd9 drm/amdkfd: clamp queue size to minimum 1c38108a49aa drivers: base: devres: Allow to release group on device release c9323cbc94d5 drm/amd/display: stop DML2 from removing pipes based on planes b22cb42a5ee1 drm/bridge: panel: forbid initializing a panel with unknown connector type f04612890c56 drm/debugfs: fix printk format for bridge index ba5a998f84cd drm: panel-orientation-quirks: Add quirk for OneXPlayer Mini (Intel) a64e0974266e drm: panel-orientation-quirks: Add new quirk for GPD Win 2 5dd6fdb88953 drm: panel-orientation-quirks: Add quirk for AYA NEO Slide 6fe4ed94ee82 drm: panel-orientation-quirks: Add quirks for AYA NEO Flip DS and KB df33b535f0de drm: panel-orientation-quirks: Add support for AYANEO 2S 357ba4ed6980 drm/amdgpu: Unlocked unmap only clear page table leaves c15a9c84494c drm/amd/display: Update Cursor request mode to the beginning prefetch always 2eec2fa8666d drm/xe/vf: Don't try to trigger a full GT reset if VF 4a5f14246bc4 drm/xe/bmg: Add new PCI IDs 044c1b352841 drm: allow encoder mode_set even when connectors change for crtc 09246dfb5c87 Bluetooth: Add quirk for broken READ_PAGE_SCAN_TYPE 035e1bffc063 Bluetooth: Add quirk for broken READ_VOICE_SETTING feed98579d40 Bluetooth: qca: simplify WCN399x NVM loading fe6f1f349d6e Bluetooth: hci_qca: use the power sequencer for wcn6750 a4d49212e316 Bluetooth: btusb: Add 2 HWIDs for MT7922 6b7a32fa9bac Bluetooth: hci_uart: fix race during initialization 082ae971a1db Bluetooth: btintel_pcie: Add device id of Whale Peak 40c70ff44b70 tracing: fix return value in __ftrace_event_enable_disable for TRACE_REG_UNREGISTER 299d7d27af6b net: vlan: don't propagate flags on open fe51630ba2ba wifi: mt76: mt76x2u: add TP-Link TL-WDN6200 ID to device table bf089c4d1141 btrfs: harden block_group::bg_list against list_del() races 0519ba030c3e ahci: Marvell 88SE9215 controllers prefer DMA for ATAPI 7fe3b4deed8b scsi: st: Fix array overflow in st_setup() a8a8076210c2 cdc_ether|r8152: ThinkPad Hybrid USB-C/A Dock quirk eb59cc31b6ea ext4: ignore xattrs past end aa39d45071ec Revert "f2fs: rebuild nat_bits during umount" 5f815757e6de ext4: protect ext4_release_dquot against freezing 202ba2f483cd ahci: add PCI ID for Marvell 88SE9215 SATA Controller 163e8c1083b4 net: sfp: add quirk for FS SFP-10GM-T copper SFP+ module ecc461331604 f2fs: fix to avoid out-of-bounds access in f2fs_truncate_inode_blocks() 3abe15e75648 wifi: ath12k: Fix invalid data access in ath12k_dp_rx_h_undecap_nwifi 1833e1650059 net: sfp: add quirk for 2.5G OEM BX SFP 04c0c555049f ata: libata-eh: Do not use ATAPI DMA for a device limited to PIO mode ccd97c8a4f90 jfs: add sanity check for agwidth in dbMount aeb926e605f9 jfs: Prevent copying of nlink with value 0 from disk inode c802a6a4009f fs/jfs: Prevent integer overflow in AG size calculation 319877db0aa9 fs/jfs: cast inactags to s64 to prevent potential overflow 63148ce4904f jfs: Fix uninit-value access of imap allocated in the diMount() function 8e7bb6636082 can: flexcan: add NXP S32G2/S32G3 SoC support fba5f41f1536 can: flexcan: Add quirk to handle separate interrupt lines for mailboxes 7204335d1991 page_pool: avoid infinite loop to schedule delayed worker de94d0ca9ea5 net: usb: asix_devices: add FiberGecko DeviceID 93a562eedcd5 scsi: target: spc: Fix RSOC parameter data header size 4ae2c7c7d369 wifi: mac80211: ensure sdata->work is canceled before initialized. cca16fbd17b0 wifi: mac80211: add strict mode disabling workarounds c6e50cb8bf57 f2fs: don't retry IO for corrupted data scenario a6bf0fd322ab net: page_pool: don't cast mp param to devmem 65ba18c84dbd scsi: mpi3mr: Synchronous access b/w reset and tm thread for reply queue 6a35449df867 scsi: mpi3mr: Avoid reply queue full condition b1e0b4f494c5 ata: libata-core: Add 'external' to the libata.force kernel parameter 535b666118f6 wifi: ath12k: Fix invalid entry fetch in ath12k_dp_mon_srng_process 3cb47b50926a wifi: ath12k: fix memory leak in ath12k_pci_remove() a3981850f14e wifi: ath11k: fix memory leak in ath11k_xxx_remove() b92c5179db4b wifi: ath11k: Fix DMA buffer allocation to resolve SWIOTLB issues 90a5892d8531 platform/x86: x86-android-tablets: Add select POWER_SUPPLY to Kconfig 7f04c9e8fffe ASoC: amd: yc: update quirk data for new Lenovo model 3a03a7f0f872 ASoC: amd: Add DMI quirk for ACP6X mic support cb1c6cb11056 ALSA: usb-audio: Fix CME quirk for UF series keyboards fe74885e3609 mmc: dw_mmc: add a quirk for accessing 64-bit FIFOs in two halves 6d32a30fa1b5 media: s5p-mfc: Corrected NV12M/NV21M plane-sizes 3c057a49045f media: uvcvideo: Add quirk for Actions UVC05 d4fcd06e1231 ASoC: fsl_audmix: register card device depends on 'dais' property d981c3d2980a ALSA: hda: intel: Add Lenovo IdeaPad Z570 to probe denylist 97ae1d5080f7 ALSA: hda: intel: Fix Optimus when GPU has no sound 25490b45d17c ASoC: amd: ps: use macro for ACP6.3 pci revision id f8f4d77710e1 HID: pidff: Fix null pointer dereference in pidff_find_fields 0301b85fe6f9 HID: pidff: Add PERIODIC_SINE_ONLY quirk f45f26a6b3e7 HID: Add hid-universal-pidff driver and supported device ids 116d4f67aeb5 HID: pidff: Add FIX_WHEEL_DIRECTION quirk ed806fd80eba HID: pidff: Add hid_pidff_init_with_quirks and export as GPL symbol 6a20fae104ef HID: pidff: Add PERMISSIVE_CONTROL quirk fd608e2a06c2 HID: pidff: Add MISSING_PBO quirk and its detection fab3dbb604be HID: pidff: Add MISSING_DELAY quirk and its detection d21ccf544ca1 HID: pidff: Do not send effect envelope if it's empty 1c0785f16472 HID: pidff: Convert infinite length from Linux API to PID standard 5330ce1ee2be ASoC: SOF: topology: Use krealloc_array() to replace krealloc() 377b041c22ac platform/chrome: cros_ec_lpc: Match on Framework ACPI device 97f68e7287e0 zstd: Increase DYNAMIC_BMI2 GCC version cutoff from 4.8 to 11.0 to work around compiler segfault 8d0f280e7aec xen/mcelog: Add __nonstring annotations for unterminated strings cb58e909203e arm64: cputype: Add QCOM_CPU_PART_KRYO_3XX_GOLD ead1fc9f93e2 Flush console log from kernel_power_off() 11ae4fec1f4b PM: hibernate: Avoid deadlock in hibernate_compressor_param_set() 89a4db7a67e7 perf/dwc_pcie: fix some unreleased resources 1b3ebfb15dc0 perf: arm_pmu: Don't disable counter in armpmu_add() f48625eeeb29 x86/cpu: Don't clear X86_FEATURE_LAHF_LM flag in init_amd_k8() on AMD when running in a virtual machine 48e705652db9 x86/ia32: Leave NULL selector values 0~3 unchanged 640bb2252158 x86/percpu: Disable named address spaces for UBSAN_BOOL with KASAN for GCC < 14.2 837f5cb7be9a x86/mm: Clear _PAGE_DIRTY for kernel mappings when we clear _PAGE_RW f8d28fa305b7 pm: cpupower: bench: Prevent NULL dereference on malloc failure 67e85cfa951c umount: Allow superblock owners to force umount 52535688c27f fs: consistently deref the files table with rcu_dereference_raw() fa1827fa968c perf: Fix hang while freeing sigtrap event 7ef5aa081f98 perf/core: Simplify the perf_event_alloc() error path c61feda37350 perf/core: Add aux_pause, aux_resume, aux_start_paused a0842539e8ef iommu/mediatek: Fix NULL pointer deference in mtk_iommu_device_group 5efd53900acc iommu/exynos: Fix suspend/resume with IDENTITY domain 7640c2abb647 nft_set_pipapo: fix incorrect avx2 match of 5th field octet b4c836d33ca8 net: ppp: Add bound checking for skb data on ppp_sync_txmung cc16f7402a91 ipv6: Align behavior across nexthops during path selection a6ed6f8ec81b net: phy: allow MDIO bus PM ops to start/stop state machine for phylink-controlled PHY 6d98cd63426e net: phy: move phy_link_change() prior to mdio_bus_phy_may_suspend() aa5a1e4b8829 smb: client: fix UAF in decryption with multichannel f86293adce0c net_sched: sch_sfq: move the limit validation 70449ca40609 net_sched: sch_sfq: use a temporary work area for validating configuration ec12da4bcc44 nvmet-fcloop: swap list_add_tail arguments c5a906806162 drm/i915/huc: Fix fence not released on early probe errors 0ae84adbc9cc ata: sata_sx4: Add error handling in pdc20621_i2c_read() ad81d666e114 net: libwx: handle page_pool_dev_alloc_pages error c81306c9d6d9 drm/tests: probe-helper: Fix drm_display_mode memory leak 80f4dc6e1f5b drm/tests: modes: Fix drm_display_mode memory leak c7a0a32e6cf7 drm/tests: cmdline: Fix drm_display_mode memory leak f951d643bc26 drm/tests: helpers: Create kunit helper to destroy a drm_display_mode 71dd750a0834 drm/tests: modeset: Fix drm_display_mode memory leak a065b9960526 net: ethtool: Don't call .cleanup_data when prepare_data fails b2f3c3d57a83 tc: Ensure we have enough buffer space when sending filter netlink notifications f0bb06b9f1d0 octeontx2-pf: qos: fix VF root node parent queue index 9fcbca0f8015 net: tls: explicitly disallow disconnect 4d55144b12e7 codel: remove sch->q.qlen check before qdisc_tree_reduce_backlog() 7c5957f7905b tipc: fix memory leak in tipc_link_xmit 1b7685256db2 objtool: Fix INSN_CONTEXT_SWITCH handling in validate_unret() ee2b0301d6bf ata: pata_pxa: Fix potential NULL pointer dereference in pxa_ata_probe() 9e0bdc15579e drm/xe/hw_engine: define sysfs_ops on all directories 857e9432dab9 x86/acpi: Don't limit CPUs to 1 for Xen PV guests due to disabled ACPI 9ddc7edc558a drm/i915: Disable RPG during live selftest caa5c8a23586 ublk: fix handling recovery & reissue in ublk_abort_queue() cb8372e54fdb ublk: refactor recovery configuration flag helpers 206d0df7b6a5 selftests/futex: futex_waitv wouldblock test should fail 179ef2f8109e gpiolib: of: Fix the choice for Ingenic NAND quirk cdb6e724e7c5 cgroup/cpuset: Fix race between newly created partition and dying one 1b06f00edaaa cgroup/cpuset: Further optimize code if CONFIG_CPUSETS_V1 not set 6b145f8b2201 cgroup/cpuset: Enforce at most one rebuild_sched_domains_locked() call per operation 2dbd1b166034 cgroup/cpuset: Revert "Allow suppression of sched domain rebuild in update_cpumasks_hier()" 9701dcbf5fce cgroup/cpuset: Fix error handling in remote_partition_disable() 40bc55e4fcbd cgroup/cpuset: Fix incorrect isolated_cpus update in update_parent_effective_cpumask() b980b832318c ASoC: Intel: adl: add 2xrt1316 audio configuration 2ee7ebed771b mips: Add '-std=gnu11' to vdso CFLAGS b2c792d89ac5 yaffs2: switch from readlink_copy() to vfs_readlink() 807165b1ec1c tools/power/x86/intel-speed-select: Prefix header search path with sysroot e97df805b938 drm/tilcdc: Set preferred depth 7160a4379dcc arch/arm64/configs: remove CONFIG_SM_DISPCC_8650 6d8ac5ebe6e8 aufs6: core 587abc1b64c4 aufs6: standalone 1af41d30ef42 aufs6: mmap 6ee2464d2e9d aufs6: base 103b676505f7 aufs6: kbuild 67281562943f qemux86: add configuration symbol to select values 73f315ca0823 sched/isolation: really align nohz_full with rcu_nocbs 1e4e7f8ab622 clear_warn_once: add a clear_warn_once= boot parameter 918e7a825e8b clear_warn_once: bind a timer to written reset value f533f87c3758 clear_warn_once: expand debugfs to include read support f149ca27cba9 tools: Remove some options from CLANG_CROSS_FLAGS e633abe9c44e libbpf: Fix build warning on ref_ctr_off ec0916a4cfc1 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel. 03721ceb5626 perf: x86-32: explicitly include <errno.h> 4c36c5295bb0 perf: mips64: Convert __u64 to unsigned long long b0200449610d perf: fix bench numa compilation aff0940b2212 perf: add SLANG_INC for slang.h ef912018d28c perf: add sgidefs.h to for mips builds d8860f858b87 perf: change --root to --prefix for python install dc38a0eee6e5 perf: add 'libperl not found' warning 6ed51f8786da perf: force include of <stdbool.h> c538d4c4ac65 fat: Replace prandom_u32() with get_random_u32() 63d94846f0c5 fat: don't use obsolete random32 call in namei_vfat 7816667451ef FAT: Added FAT_NO_83NAME f81dbd60f0d5 FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option 771cdefba44b FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option a24784fd8f88 yaffs2: update to v6.12 folio changes d0a48fd46db8 yaffs2: adapt to v6.10 i_time changes d097e4d4115a yaffs: fix mtime/itime field access 4411e0d49fe3 yaffs2: update VFS ctime operations to 6.6+ 1b6619086e8b yaffs2: v6.5 fixups 25b261ee3c54 yaffs2: Fix miscalculation of devname buffer length 5c07936a5d1c yaffs2: convert user_namespace to mnt_idmap 55986a1284b3 yaffs2: replace bdevname call with sprintf 6f5508f8db8f yaffs2: convert read_page -> readfolio fd179a5df5d5 yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL c9a620dacdd1 yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name 78588208ed17 yaffs2: v5.12+ build fixups (not runtime tested) 8d2dddba272c yaffs: include blkdev.h 8c1ca9ef9712 yaffs: Fix build failure by handling inode i_version with proper atomic API 27005cbac2ed yaffs2: v5.6 build fixups 668211c9f9b7 yaffs2: fix memory leak when /proc/yaffs is read 285f911dcc1c yaffs: add strict check when call yaffs_internal_read_super ffc2ed489ccf yaffs: repair yaffs_get_mtd_device 6dce4b70a5e3 yaffs: Fix build failure by handling inode i_version with proper atomic API 19f283abc5d1 yaffs2: fix memory leak in mount/umount 04e84672b571 yaffs: Avoid setting any ACL releated xattr 4f221d6a32e2 Yaffs:check oob size before auto selecting Yaffs1 81f36004e56b fs: yaffs2: replace CURRENT_TIME by other appropriate apis 26d7a3dd0054 yaffs2: adjust to proper location of MS_RDONLY a7016eac4540 yaffs2: import git revision b4ce1bb (jan, 2020) feb240bbb91e initramfs: allow an optional wrapper script around initramfs generation 874746eaa341 drivers: gpu: drm: msm: registers: improve reproducibility 1d42508faee8 tools: use basename to identify file in gen-mach-types 4b055eca593d iwlwifi: select MAC80211_LEDS conditionally 97e20e275ac0 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119) 6dec58319165 defconfigs: drop obselete options a416ccb5b6c9 linux-yocto: Handle /bin/awk issues 7efe8a1e5158 uvesafb: provide option to specify timeout for task completion 78d10ae07eca uvesafb: print error message when task timeout occurs 80473b7eb8ca compiler.h: Undef before redefining __attribute_const__ ddeff2f1a9a7 vmware: include jiffies.h 3dcdda8912b4 Resolve jiffies wrapping about arp 3b1507db6735 nfs: Allow default io size to be configured. c2fedad05f77 check console device file on fs when booting 208d6fbada3f mount_root: clarify error messages for when no rootfs found dbe9454c8ea0 mconf: fix output of cflags and libraries 7c7b224f5cce menuconfig,mconf-cfg: Allow specification of ncurses location b6c189c81397 modpost: mask trivial warnings a5cc21325ba9 kbuild: exclude meta directory from distclean processing 361ec143c23f powerpc: serialize image targets 605e6ccb304c arm: serialize build targets e94b04fcb7d2 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition 44cc7f69a0a0 cpu/amd: inhibit SMP check for qemux86 a08cb65331e6 x86_64_defconfig: Fix warnings 8ad332ef777b mips: make current_cpu_data preempt safe 754f05ddce3f mips: vdso: fix 'jalr $t9' crash in vdso code 325ff78ff44d mips: Kconfig: add QEMUMIPS64 option 99ae0eadcf11 4kc cache tlb hazard: tlbp cache coherency c6894c66a534 malta uhci quirks: make allowance for slow 4k(e)c 8b52c01f3294 arm64: defconfig: remove CONFIG_IPQ_APSS_5018 16c7629f035e drm/fb-helper: move zeroing code to drm_fb_helper_fill_var 6b60c874cbb0 arm64: defconfig: cleanup config options 8e44673ecd89 vexpress: Pass LOADADDR to Makefile f34e6805aad5 arm: ARM EABI socketcall 94dec9b88de4 ARM: LPAE: Invalidate the TLB for module addresses during translation fault
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bruce Ashfield [Tue, 6 May 2025 16:32:55 +0000 (12:32 -0400)]
kernel-yocto: allow annotated options to be modified
Bumping the kern-tools SRCREV to pickup the following commits:
tools: allow fixups to conditionally change options
Sometimes we have options that should either be =y or =m depending
on the use case.
Rather than force the options into multiple parallel and very similar
fragments (which is error prone and labour intensive), we can allow
an annotation in the configuration fragment that allows the default
value to be overriden by a variable.
The variable in question comes from a -D<var>=<value> on the scc
or spp command line. If the define evaluates to a non-zero value
a fixup is created that will modify the value when scc finishes
gathering meta-data.
An example of a notation would be:
CONFIG_INET_TUNNEL=y # OVERRIDE:$MODULE_OR_Y
CONFIG_INET_TUNNEL will be =y when standard tools (like merge-config)
are used. But when scc/spp see this notation, they check the value
of the variable MODULE_OR_Y, if that variable evalutes to a non-zero
value, a fixup is created that will change CONFIG_INET_TUNNEL to
that value before the kernel is configured.
To use the annotations, scc needs to be passed a value that is used
in the override expression. This has always been possible with defines
(-Dx=y), so we leverage that to control these conditional overrides.
In kernel-yocto, we now have a variable: KMETA_CONFIG_FEATURES
KMETA_CONFIG_FEATURES ?= ""
Which defaults to empty, the only feature that is currently
implemented is "prefer-modules". When prefer-modules is detected
in the kmeta config features, the following define is passed to
scc:
-DMODULE_OR_Y=m
Which as you can see from the above INET_TUNNEL example, will
evaluate to "m" and will override the default of "y".
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Below commits on glibc-2.41 stable branch are updated. 5cb575ca9a elf: tst-audit10: split AVX512F code into dedicated functions [BZ #32882] 046b33800c x86: Detect Intel Diamond Rapids a53e764657 x86: Handle unknown Intel processor with default tuning aca31d2712 x86: Add ARL/PTL/CWF model detection support f68b407d4b x86: Optimize xstate size calculation d6d56af6e7 elf: Fix arm-linux-gnueabihf build break from b861755a84 b861755a84 elf: Extend glibc.rtld.execstack tunable to force executable stack (BZ 32653) 200d20123c x86: Link tst-gnu2-tls2-x86-noxsave{,c,xsavec} with libpthread 80cd656649 x86: Use separate variable for TLSDESC XSAVE/XSAVEC state size (bug 32810) a282e2c0ae x86: Skip XSAVE state size reset if ISA level requires XSAVE bcd4cf9d5f x86_64: Add atanh with FMA 7e72fa7577 x86_64: Add sinh with FMA 6a3a4a5e58 x86_64: Add tanh with FMA ce9b765522 nptl: Check if thread is already terminated in sigcancel_handler (BZ 32782) 98c712855d nptl: PTHREAD_COND_INITIALIZER compatibility with pre-2.41 versions (bug 32786) e22c132484 nptl: clear the whole rseq area before registration 33bfd9020f Linux: Remove attribute access from sched_getattr (bug 32781) 66fc3bd758 math: Remove an extra semicolon in math function declarations 1a3083b999 posix: Move environ helper variables next to environ definition (bug 32541) 91f8cff2c4 configure: Fix spelling of -Wl,--no-error-execstack option fd202462c5 elf: Check if __attribute__ ((aligned (65536))) is supported 746ef8e939 static-pie: Skip the empty PT_LOAD segment at offset 0 [BZ #32763] 56609f8df1 Pass -Wl,--no-error-execstack for tests where -Wl,-z,execstack is used [PR32717] 89be78704e AArch64: Use prefer_sve_ifuncs for SVE memset c47c3890f1 AArch64: Add SVE memset e0bc5f64ea math: Improve layout of exp/exp10 data 009c5a2dca aarch64: Add GCS test with signal handler 8d98ee8d70 aarch64: Add GCS tests for dlopen 61ba3cdfa9 aarch64: Add GCS tests for transitive dependencies fda5730898 aarch64: Add tests for Guarded Control Stack 6d1f97bb06 aarch64: Add configure checks for GCS support 7774a9d07a AArch64: Improve codegen for SVE powf 2025e27a81 AArch64: Improve codegen for SVE pow f3d9c116cb AArch64: Improve codegen for SVE erfcf 94859e8680 Aarch64: Improve codegen in SVE exp and users, and update expf_inline 7c9a086807 Aarch64: Improve codegen in SVE asinh 30992cb5e9 RISC-V: Fix IFUNC resolver cannot access gp pointer 07288c7445 math: Add optimization barrier to ensure a1 + u.d is not reused [BZ #30664] 2cb04444b9 math: Fix `unknown type name '__float128'` for clang 3.4 to 3.8.1 (bug 32694) a900dbaf70 x86 (__HAVE_FLOAT128): Defined to 0 for Intel SYCL compiler [BZ #32723] 1e0e33e1b1 Fix tst-aarch64-pkey to handle ENOSPC as not supported 69fda28279 assert: Add test for CVE-2025-0395 cf88351b68 math: Fix tanf for some inputs (BZ 32630) cb7f206537 nptl: Correct stack size attribute when stack grows up [BZ #32574] d85a771953 math: Fix sinhf for some inputs (BZ 32627) bdccbfbc52 math: Fix log10p1f internal table value (BZ 32626)
Changqing Li [Tue, 6 May 2025 10:53:37 +0000 (18:53 +0800)]
send-error-report: make output align with original design when debug disabled
First, it is better to output the error report web link by default when
the report is uploaded successfully like before. This is useful, user
can find the detail the log info from the return link. Yocto Autobuilder
also benifit from this return link.
Second, why don't set level to logging.INFO to make the error report web
link outputed? Because "-j" option want to "Return the result in json
format, silences all other output", So "INFO:" added by logging system
is not wanted, so use print directly.
Example output:
Without "-j":
Preparing to send errors to: http://x.x.x.x:8000
Your entry can be found here: http://x.x.x.x:8000/Errors/Build/25/
The comment about hostname not being included in base_bindir_progs is wrong after https://git.yoctoproject.org/poky/commit/?id=b9bf37ec6792f82753fe265fdcfc19db7dd51ab6 ,
so remove it to avoid confusion.
Also improve comment about bindir_progs.
Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Follow the changes in Clang search paths and specify sysroot via the
TOOLCHAIN_OPTIONS, otherwise clang will fail to find system headers when
executed by bindgen.
For SDK packages TOOLCHAIN_OPTIONS don't contain full sysroot path, so
specify the correct directory explicitly.
clang: split SPIRV-LLVM-Translator to its own recipe
The translator is not a part of the same source tree. As such it has
tendency to break on clang upgrades. Split it to its own recipe in order
to ease handling of clang.
This also makes it use SPIR-V headers provided by the spirv-headers
recipe instead of vendoring them in.
Peter Marko [Mon, 5 May 2025 10:27:56 +0000 (12:27 +0200)]
vex: fix rootfs manifest
Rootfs VEX file is created by gathering files from CVE_CHECK_DIR
(deploy directory), however recipes generate the files only in
CVE_CHECK_DIR (log directory).
This make the rootfs VEX be always empty without any message.
The code is copied from cve_check class, which writes to both, so let
keep them aligned and make also vex write both files.
Also add a warning for case that a cve file would be still missing.
Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
spdx30: Provide software_packageUrl field in SPDX 3.0 SBOM
Define var-SPDX_PACKAGE_URL to provide software_packageUrl field [1][2]
in SPDX 3.0 SBOM, support to override with package name
SPDX_PACKAGE_URL:<pkgname>
Currently, the format of purl is not defined in Yocto, set empty for now
until we have a comprehensive plan for what Yocto purls look like.
But users could customize their own purl by setting var-SPDX_PACKAGE_URL
Yi Zhao [Fri, 25 Apr 2025 07:37:57 +0000 (15:37 +0800)]
sassc: fix runtime version
The sassc_version.h should be generated from sassc_version.h.in. But
there is already a sassc_version.h file in source directory. When ${S}
!= ${B}, the sassc_version.h is generated in build directory, and the
original sassc_version.h in source directory is not overwritten.
However, the latter is used during the build, resulting in a missing
runtime version. Remove sassc_version.h from source directory to ensure
that the one in build directory is used during the build.
Before the fix:
$ sassc --version
sassc: [NA]
libsass: [NA]
sass2scss: 1.1.1
sass: 3.5
After the fix:
$ sassc --version
sassc: 3.6.2
libsass: 3.6.6
sass2scss: 1.1.1
sass: 3.5
Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Yi Zhao [Fri, 25 Apr 2025 07:37:56 +0000 (15:37 +0800)]
libsass: fix runtime version
The version.h should be generated from version.h.in. But there is
already a version.h file in source directory. When ${S} != ${B}, the
version.h is generated in build directory, and the original version.h in
source directory is not overwritten. However, the latter is used during
the build, resulting in a missing runtime version. Remove version.h from
source directory to ensure that the one in build directory is used
during the build.
Before the fix:
$ sassc --version
sassc: [NA]
libsass: [NA]
sass2scss: 1.1.1
sass: 3.5
After the fix:
$ sassc --version
sassc: 3.6.2
libsass: 3.6.6
sass2scss: 1.1.1
sass: 3.5
Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Khem Raj [Fri, 2 May 2025 16:55:18 +0000 (09:55 -0700)]
mesa: Fix header search paths
mesa build currently emits CLANG_RESOURCE_DIR into compiled objects and
meson calculates it from llvm cmake files from sysroot and it points to
absolute paths in target sysroot. To fix this backport a patch that does
not rely on CLANG_RESOURCE_DIR, however, this patch still leaves it in
code as fallback via FALLBACK_CLANG_RESOURCE_DIR, we are on LLVM 20.x
which will not use this variable, lets just remove detection so it does
not encode hardcoded paths.
Fixes
ERROR: mesa-2_25.0.2-r0 do_package_qa: QA Issue: File /usr/lib/libMesaOpenCL.so.1.0.0 in package libopencl-mesa contains reference to TMPDIR [buildpaths]
ERROR: mesa-2_25.0.2-r0 do_package_qa: Fatal QA errors were found, failing task.
Khem Raj [Mon, 5 May 2025 04:15:18 +0000 (21:15 -0700)]
libsolv: Upgrade to 0.7.32 release
Brings these changes
- build both static and dynamic libraries on new suse distros
- require cmake >= 3.5
- new features:
* support the apk package and repository format (both v2 and v3)
* new dataiterator_final_{repo,solvable} functions
- Enable static libs for OE as well, this fixes a crash/signsegv seen
in stringpool_strn2id () especially when multithreading is in play,
this is brought forward with clang merge patchset when using ipk
backend
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Khem Raj [Mon, 5 May 2025 04:15:17 +0000 (21:15 -0700)]
libcxx,compiler-rt-sanitizers: Add cflags to build with clang compiler
We are using clang-native to build the native versions of these recipes
but we are missing the needed compiler flags to let it c/c++ runtime
appropriately. This also ensures that meta-clang does not have to worry
about the compiler settings for nativesdk/native pieces separately.
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Khem Raj [Mon, 5 May 2025 04:15:16 +0000 (21:15 -0700)]
clang: Upgrade to 20.1.3
Brings following fixes
* 923a5c4f83d2 Revert "[ARM][ConstantIslands] Correct MinNoSplitDisp calculation (#114590)"
* 86f5891c5986 [llvm][Hexagon] Promote operand v2i1 to v2i32 (#135409)
* d55c3c20520a [libc++] Fix misplaced _LIBCPP_POP_MACROS (#134874)
* 9420327ad768 [Clang] Fix a lambda pattern comparison mismatch after ecc7e6ce4 (#133863)
* 4da7285e636e Silence -Wcast-function-type warnings on idiomatic Windows code (#135660)
* c5109be53b7e [LV] Disable epilogue vectorization for FindLastIV if start is poison.
* 91a3f14d9497 [LV] Add tests with FindLastIV and epilogue vectorization.
* 2131242240f7 [LLVM][MemCpyOpt] Unify alias tags if we optimize allocas (#129537)
* 86c98536380b [libc++] Fix deployment targets that were incorrectly bumped (#134278)
* dfd6f123362a [libc++] Guard additional headers with _LIBCPP_HAS_LOCALIZATION (#131921)
* dc9d4f9a7008 [lldb] Respect LaunchInfo::SetExecutable in ProcessLauncherPosixFork (#133093)
* 9c7d72869876 [LoongArch] Move fix-tle-le-sym-type test to test/MC. NFC (#133839)
* 0c30835a63db [X86][AVX10] Remove VAES and VPCLMULQDQ feature from AVX10.1 (#135489)
* 2e0966408283 [X86] Backport saturate-convert intrinsics renaming & YMM rounding intrinsics removal in AVX10.2
* 0dd4235473d4 [SCEV] Use ashr to adjust constant multipliers (#135534)
* a141e58685fd [llvm][CodeGen] avoid repeated interval calculation in window scheduler (#132352)
* d88cd35023b4 [llvm][CodeGen] Fix the empty interval issue in Window Scheduler (#129204)
* 73d1e8598eda [CodeGen] Avoid repeated hash lookups (NFC) (#130237)
* 7034995f1029 [clang] Handle Binary StingLiteral kind in one more place (#132201)
* 2e7710eaffdd [clang] Introduce "binary" StringLiteral for #embed data (#127629)
* e0db588f3db4 [IR] Fix assertion error in User new/delete edge case (#129914)
* d5bb7b866e59 Avoid a race condition in opt-viewer/optrecord (#131214)
* d15fef4209f1 [IndVarSimplify] Handle the case where both operands are the same when widening IV (#135207)
* 91647ae0dffe [X86][SSE] Don't emit SSE2 load instructions in SSE1-only mode (#134547)
* d05543ed0796 [clang-format] Keep the space between `not` and a unary operator (#135035)
* 81220e68a496 [fatlto] Add coroutine passes when using FatLTO with ThinLTO (#134434)
* edb54a7821fe Release/20.x: [clang-format] Set C11 instead of C17 for LK_C
* 4181e829d1db [LLDB][LoongArch] Fix build errors about NT_LOONGARCH_HW_{BREAK,WATCH} (#126020)
* 7436329bfee9 Revert "[clang] [ARM] Explicitly enable NEON for Windows/Darwin targets (#122095)"
* a0c8959cc880 [X86] When expanding LCMPXCHG16B_SAVE_RBX, substitute RBX in base (#134109)
* a8b5fe017a5e [libc++] Add missing release note for LLVM 20 about zip_view (#134144)
* 41aefdbebe64 cuda clang: Fix argument order for __reduce_max_sync (#132881)
* 19c2e1c12d47 [clang-tidy] Fix broken HeaderFilterRegex when read from config file (#133582)
* ac31db0463c0 [Sanitizers][Darwin][Test] XFAIL malloc_zone.cpp
* 53141e4e3c65 [clang] Do not infer lifetimebound for functions with void return type (#131997)
* cf7bb13f0c7f [TailDuplicator] Determine if computed gotos using `blockaddress` (#132536)
* 656289ffa0a6 Bump version to 20.1.3 (#134187)
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Khem Raj [Mon, 5 May 2025 04:15:13 +0000 (21:15 -0700)]
mesa: Pass needed clang flags via BINDGEN_EXTRA_CLANG_ARGS
This is needed for clang to find the c++ headers when invoked via
bindgen
Fixes
| /mnt/b/yoe/master/sources/poky/build/tmp/work/cortexa57-poky-linux/mesa/25.0.2/recipe-sysroot/usr/include/llvm/ADT/DenseMapInfo.h:17:10: fatal error: 'cassert' file not found
| Unable to generate bindings: clang diagnosed error: /mnt/b/yoe/master/sources/poky/build/tmp/work/cortexa57-poky-linux/mesa/25.0.2/recipe-sysroot/usr/include/llvm/ADT/DenseMapInfo.h:17:10: fatal error: 'cassert' file not found
|
Khem Raj [Mon, 5 May 2025 04:15:11 +0000 (21:15 -0700)]
clang: Merge llvm/clang family recipes from meta-clang
This can ensure that meta-clang does not carry them and can rely on core layer
while mesa can use them too.
Omit time stamps in openmp from generated files to improve
reproducibility
fix the issue that:
| file /usr/include/llvm/Config/llvm-config.h conflicts between attempted installs of lib32-llvm-dev-20.1.2-r0.core2_32 and llvm-dev-20.1.2-r0.core2_64
Markus Volk [Sun, 4 May 2025 21:01:02 +0000 (23:01 +0200)]
gtk4: update 4.18.4 -> 4.18.5
Overview of Changes in 4.18.5, 03-05-2025
=========================================
* Bugs fixed:
- #5844 `gdk_surface_get_device_position: assertion 'GDK_IS_SURFACE (surface)'
failed` on popover close (Alessandro Astone)
- #7451 Cairo device scale changes lead to significant performance regression
in cairo blur (Sebastian Keller)
- #7479 gtkmm programs fail to start on Windows with AccessKit support enabled
(Matthias Clasen)
- #7482 Epiphany Crash in GTK file chooser when last used directory has
insufficient filesystem permissions: "GFileInfo created without
standard::type" (Philip Withnall)
- #7495 Failed to link with the mold linker (Matthias Clasen)
- #7513 Broken boxed-list ListBox (Sergey Bugaev)
- #7520 XCompose preventing GTK4 applications from launching (again) (Matthias
Clasen)
- #7522 critical when selecting label with use-underline but mnemonic with
screenreader enabled (Markus Göllnitz)
- !8432 GTK 4.18.4
- !8461 Some cherry-picked fixes for 4.18 (Sebastian Keller, Benjamin Otte,
Florian "sp1rit")
- !8487 early exit if the clipped bound rectangle's area is zero after
snapping (Benjamin Otte)
- !8496 macos: fix crash when unfullscreening windows (4.18 backport) (Arjan
Molenaar)
- !8505 Backport: update macOS job for new CI runner (René de Hesselle)
- !8526 build: pin the msvc build to meson 1.7 (Matthias Clasen)
- !8527 build: pin the msvc build to meson 1.7 (Alessandro Astone, Sébastien
Wilmet, Sergey Bugaev, Vladimir Vaskov, Markus Göllnitz, Michael Weghorn,
Philip Withnall, Lukáš Tyrychtr, Benjamin Otte, Matthias Clasen, Liu
Jinchang, kolunmi, FeRD (Frank Dana))
* Translation updates:
- Bulgarian (Alexander Shopov)
- Catalan (Jordi Mas i Hernandez)
- Chinese (China) (Luming Zh)
- Czech (Daniel Rusek)
- Georgian (Ekaterine Papava)
- Hungarian (Balázs Úr)
- Lithuanian (Aurimas Černius)
- Persian (Danial Behzadi)
- Polish (Piotr Drąg)
- Portuguese (Hugo Carvalho)
- Portuguese (Brazil) (Álvaro Burns)
- Romanian (Antonio Marin)
- Russian (Artur S0)
- Slovenian (Martin)
- Spanish (Daniel Mustieles)
- Swedish (Anders Jonsson)
- Turkish (Emin Tufan Çetin)
- Ukrainian (Yuri Chornoivan)
Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Markus Volk [Mon, 5 May 2025 06:51:51 +0000 (08:51 +0200)]
glib-2.0: update 2.84.0 -> 2.84.1
- remove backport patch
Overview of changes in GLib 2.84.1, 2025-04-03
==============================================
* Fix test failure when building against gobject-introspection ≥1.83.4 (#3634,
work by Philip Withnall)
* Bugs fixed:
- #3630 2.84.0 build failure on Linux: ../gio/gnetworkmonitornetlink.c:47:10:
fatal error: netlink/netlink_route.h: No such file or directory (Philip
Withnall)
- #3634 test failure with gobject-introspection 1.83.4: warning: element
doc:format from state 3 is unknown, ignoring (Philip Withnall)
- #3636 gio/trash does not handle special characters well
- #3642 `g_cancellable_connect()` documentation incorrect (Marco Trevisan
(Treviño))
- #3643 g_cancellable_connect(): is it safe to unref cancellable from
callback? (Marco Trevisan (Treviño))
- #3649 Crash with some registry key values in GWin32AppInfo (Philip Withnall)
- !4484 Memory sanitizer fixes
- !4489 gobject: Be consistent in using atomic logic to handle the
GParamSpecPool
- !4541 gsettings: Port docs to gi-docgen format, add missing annotations and
make various improvements
- !4544 tests: Don't install runner scripts without installed_tests
- !4545 Update French translation
- !4547 Update Catalan translation
- !4548 Update Turkish translation
- !4551 Updated Danish translation
- !4552 Update Persian translation
- !4553 docs: Document GSignalFlags members added after 2.0
- !4554 Update Indonesian translation
- !4555 tests: Add a test for g_object_freeze_notify() being called too often
- !4557 gfileinfo: Slightly expand docs for
g_file_info_get_attribute_as_string()
- !4558 gi: Dynamically set doc-format
- !4561 tests: Various fixes to create temporary files in /tmp rather than the
build directory
- !4562 gdbusnameowning: Convert docs to gi-docgen linking syntax
- !4563 giounix-private: Fix macro for checking for epoll_create1()
- !4565 Fix LGPL in header
- !4567 gutils: make documentation of g_set_prgname() clearer
- !4568 docs: Add some detail
- !4569 Update Romanian translation
- !4570 gspawn-win32: Fix potential integer overflows in argv handling
- !4571 gvarianttype: Improve docs on type validation
* Translation updates:
- Catalan (Jordi Mas)
- Danish (Ask Hjorth Larsen)
- French (Vincent Chatelain)
- Indonesian (Andika Triwidada)
- Persian (Danial Behzadi)
- Romanian (Antonio Marin)
- Turkish (Sabri Ünal)
Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Peter Marko [Sat, 3 May 2025 16:59:54 +0000 (18:59 +0200)]
binutils: mark CVE-2025-1153 as fixed
We had this CVE patched but the patch was removed with last 2.44 branch
updates as it is now included.
Since there is no new version which could be set in NVD DB, this needs
to be explicitly handled.
Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The pixman configuration option now needs to be specified so add a
PACKAGECONFIG entry, defautling to enabled. This is a required dependency
of some of the graphical backends like gtk.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>