Moritz Haase [Fri, 20 Jun 2025 06:37:41 +0000 (08:37 +0200)]
cmake: Correctly handle cost data of tests with arbitrary chars in name
ctest automatically optimizes the order of (parallel) test execution based on
historic test case runtime via the COST property (see [0]), which can have a
significant impact on overall test run times. Sadly this feature is broken in
CMake < 4.0.0 for test cases that have spaces in their name (see [1]).
This commit is a backport of f24178f3 (which itself backports the upstream fix).
The patch was adapted slightly to apply cleanly to the older CMake version in
scarthgap. As repeated test runs are expected to mainly take place inside the
SDK, the patch is only applied to 'nativesdk' builds.
Reported-By: John Drouhard <john@drouhard.dev> Signed-off-by: Moritz Haase <Moritz.Haase@bmw.de> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Peter Marko [Tue, 17 Jun 2025 21:11:48 +0000 (23:11 +0200)]
glibc: stable 2.39 branch updates
$ git log --oneline 3463100f2d47f2897a24ba8023a5c7aaf2d26550..06a70769fd0b2e1f2a3085ad50ab620282bd77b3 06a70769fd ppc64le: Revert "powerpc: Optimized strcmp for power10" (CVE-2025-5702) 3875045da5 ppc64le: Revert "powerpc : Add optimized memchr for POWER10" (Bug 33059) c6240a11f7 ppc64le: Revert "powerpc: Fix performance issues of strcmp power10" (CVE-2025-5702) 2caef2827f elf: Fix subprocess status handling for tst-dlopen-sgid (bug 32987) 9e25c0f445 x86_64: Fix typo in ifunc-impl-list.c. ca99d55315 elf: Test case for bug 32976 (CVE-2025-4802) 71ddb11ccd support: Add support_record_failure_barrier abdeb4b520 support: Use const char * argument in support_capture_subprogram_self_sgid 147bed0a71 elf: Keep using minimal malloc after early DTV resize (bug 32412) 4e5ee49a43 sysdeps/unix/sysv/linux/x86_64/Makefile: Add the end marker 37b30b6a68 sysdeps/x86_64/Makefile (tests): Add the end marker 9fe51d34bb sort-makefile-lines.py: Allow '_' in name and "^# name" 14ec225d85 libio: Correctly link tst-popen-fork against libpthread 1dcfb9479d libio: Fix a deadlock after fork in popen e31ac9a639 libio: Sort test variables in Makefile 68f3f1a1d0 Linux: Switch back to assembly syscall wrapper for prctl (bug 29770) d33d10642f nptl: PTHREAD_COND_INITIALIZER compatibility with pre-2.41 versions (bug 32786) b1eb369aee nptl: Use all of g1_start and g_signals ac5da3c0e4 nptl: rename __condvar_quiesce_and_switch_g1 2fdc0afd07 nptl: Fix indentation 582c99b2c0 nptl: Use a single loop in pthread_cond_wait instaed of a nested loop fc2a25417d nptl: Remove g_refs from condition variables 6f5ba03968 nptl: Remove unnecessary quadruple check in pthread_cond_wait d0da34ad30 nptl: Remove unnecessary catch-all-wake in condvar group switch ea13a35e37 nptl: Update comments and indentation for new condvar implementation 2451ef5c4a pthreads NPTL: lost wakeup fix 2
test results:
Before After Diff
FAIL 207 207 0
PASS 4912 4915 +3
UNSUPPORTED 230 230 0
XFAIL 16 16 0
XPASS 4 4 0
Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Poonam Jadhav [Mon, 16 Jun 2025 04:46:04 +0000 (10:16 +0530)]
libpng: Add ptest
Install libpng test-suite to run it as a ptest.
As the test-suite takes more than 30 seconds to run,
add libpng-ptest to PTESTS_SLOW in ptest-packagelists.inc
Signed-off-by: Poonam Jadhav <poonam.jadhav@kpit.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Peter Marko [Sun, 8 Jun 2025 21:47:17 +0000 (23:47 +0200)]
testimage: get real os-release file
/etc/os-release is a symlink to /usr/lib.
Symlink is retrieved as a dead link which points to nowhere if also the
original file is not accompanying it.
Fetch the real file in addition to this link.
Alternative could be to use "tar -h" (supported also by busybox tar),
however that could lose some important information if links are relevant
for failure analysis.
Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Andrew Fernandes [Thu, 13 Jun 2024 19:54:27 +0000 (12:54 -0700)]
gtk+: add missing libdrm dependency
Fixes [YOCTO #15513]
When built without the wayland feature, gtk4 does not
build due to a missing explicit dependency on libdrm.
Signed-off-by: Andrew Fernandes <andrew@fernandes.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit b32290d9bbcfccc9b85fa5acbeaee5d32d9a9091) Signed-off-by: Steve Sakoman <steve@sakoman.com>
Python 3.12.10 is the latest maintenance release of Python 3.12, and
the last full maintenance release. Subsequent releases of 3.12 will be
security-fixes only.
Security content in this release
* gh-135034: [CVE 2024-12718] [CVE 2025-4138] [CVE 2025-4330]
[CVE 2025-4435] [CVE 2025-4517] Fixes multiple issues that allowed
tarfile extraction filters (filter="data" and filter="tar") to be
bypassed using crafted symlinks and hard links.
* gh-133767: Fix use-after-free in the “unicode-escape” decoder with a
non-“strict” error handler.
* gh-128840: Short-circuit the processing of long IPv6 addresses early
in ipaddress to prevent excessive memory consumption and a minor
denial-of-service.
gh-133767 got meawhile CVE-2025-4516 assigned.
Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Divya Chellam [Thu, 5 Jun 2025 11:01:00 +0000 (16:31 +0530)]
screen: fix CVE-2025-46804
A minor information leak when running Screen with setuid-root
privileges allosw unprivileged users to deduce information
about a path that would otherwise not be available.
Affected are older Screen versions, as well as version 5.0.0.
PR32858 ld segfault on fuzzed object
We missed one place where it is necessary to check for empty groups.
Backport a patch from upstream to fix CVE-2025-5244
Upstream-Status: Backport [https://sourceware.org/git/?p=binutils-gdb.git;a=patch;h=d1458933830456e54223d9fc61f0d9b3a19256f5]
Signed-off-by: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
PR32829, SEGV on objdump function debug_type_samep
u.kenum is always non-NULL, see debug_make_enum_type.
Backport a patch from upstream to fix CVE-2025-5245
Upstream-Status: Backport [https://sourceware.org/git/?p=binutils-gdb.git;a=patch;h=6c3458a8b7ee7d39f070c7b2350851cb2110c65a]
Signed-off-by: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Changqing Li [Tue, 3 Jun 2025 09:21:05 +0000 (17:21 +0800)]
libsoup-2.4: fix do_compile failure
Remove test code for fixing do_compile failure:
../libsoup-2.74.3/tests/auth-test.c:1554:39: error: unknown type name 'SoupServerMessage'; did you mean 'SoupServerClass'?
1554 | SoupServerMessage *msg,
|
Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Richard Purdie [Wed, 28 May 2025 18:39:59 +0000 (19:39 +0100)]
sstatetests: Switch to new CDN
The project is switching the way handle our CDN provision of sstate objects,
update the URL accordingly.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit fea96974f1ee6ae6dceb39e3ca8157797d81586c) Signed-off-by: Steve Sakoman <steve@sakoman.com>
Wang Mingyu [Mon, 12 May 2025 09:02:58 +0000 (17:02 +0800)]
ghostscript: upgrade 10.05.0 -> 10.05.1
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit cc9ba7005fb155f4d5f2be9b23c12d14362a306b) Signed-off-by: Steve Sakoman <steve@sakoman.com>
Bruce Ashfield [Thu, 29 May 2025 16:57:53 +0000 (12:57 -0400)]
linux-yocto/6.6: update to v6.6.91
Updating linux-yocto/6.6 to the latest korg -stable release that comprises
the following commits:
615b9e10e337 Linux 6.6.91 772934d9062a x86/its: FineIBT-paranoid vs ITS 9f69fe3888f6 x86/its: Fix build errors when CONFIG_MODULES=n 3b2234cd50a9 x86/its: Use dynamic thunks for indirect branches 6699bf27a471 x86/ibt: Keep IBT disabled during alternative patching 9e7364c32c6c x86/its: Align RETs in BHB clear sequence to avoid thunking ba1d70362658 x86/its: Add support for RSB stuffing mitigation 61bed1ddb212 x86/its: Add "vmexit" option to skip mitigation on some CPUs f7ef7f6ccf2b x86/its: Enable Indirect Target Selection mitigation 4754e29f43c6 x86/its: Add support for ITS-safe return thunk c5a5d8075231 x86/its: Add support for ITS-safe indirect thunk 195579752c23 x86/its: Enumerate Indirect Target Selection (ITS) bug c6c1319d19fc Documentation: x86/bugs/its: Add ITS documentation a42e9162314f x86/speculation: Remove the extra #ifdef around CALL_NOSPEC 0a90b50ebf24 x86/speculation: Add a conditional CS prefix to CALL_NOSPEC 2eecf5cf21cb x86/speculation: Simplify and make CALL_NOSPEC consistent a8a8826bf655 x86/bhi: Do not set BHI_DIS_S in 32-bit mode a0ff7f679b5d x86/bpf: Add IBHF call at end of classic BPF 1afebfeaf1eb x86/bpf: Call branch history clearing sequence on exit ca8a5626ca0c arm64: proton-pack: Add new CPUs 'k' values for branch mitigation 80251f62028f arm64: bpf: Only mitigate cBPF programs loaded by unprivileged users 42a20cf51011 arm64: bpf: Add BHB mitigation to the epilogue for cBPF programs 73591041a551 arm64: proton-pack: Expose whether the branchy loop k value 854da0ed0671 arm64: proton-pack: Expose whether the platform is mitigated by firmware 054fc98d691a arm64: insn: Add support for encoding DSB 746e7d285dcb io_uring: ensure deferred completions are posted for multishot 51f1389b5fe1 io_uring: always arm linked timeouts prior to issue 00f0dd1a0166 do_umount(): add missing barrier before refcount checks in sync case eba09f42393a nvme: unblock ctrl state transition for firmware update f5a7d616a547 drm/panel: simple: Update timings for AUO G101EVN010 1c0620213f37 MIPS: Fix MAX_REG_OFFSET 66c4ec15e329 iio: adc: dln2: Use aligned_s64 for timestamp 8b5273051b61 iio: accel: adxl355: Make timestamp 64-bit aligned using aligned_s64 9519771908fc types: Complement the aligned types with signed 64-bit one 85d430aef40a iio: temp: maxim-thermocouple: Fix potential lack of DMA safe buffer. 2b58e7c1e4b2 iio: accel: adxl367: fix setting odr for activity time update 37a55b692d42 usb: usbtmc: Fix erroneous generic_read ioctl return 1991ed796d9a usb: usbtmc: Fix erroneous wait_srq ioctl return e96be8bd53ab usb: usbtmc: Fix erroneous get_stb ioctl error returns e2fef620e5e0 USB: usbtmc: use interruptible sleep in usbtmc_read 14f298c52188 usb: typec: ucsi: displayport: Fix NULL pointer access c9d8b0932e2b usb: typec: tcpm: delay SNK_TRY_WAIT_DEBOUNCE to SRC_TRYWAIT transition 2d44ee69e6f5 usb: host: tegra: Prevent host controller crash when OTG port is used 9b09b99a9510 usb: gadget: Use get_status callback to set remote wakeup capability 0b32d03e79c1 usb: gadget: tegra-xudc: ACK ST_RC after clearing CTRL_RUN dffa51cf2d3f usb: gadget: f_ecm: Add get_status callback 1981926eb34a usb: cdnsp: fix L1 resume issue for RTL_REVISION_NEW_LPM version d84603122591 usb: cdnsp: Fix issue with resuming from L1 8c133a08524a ocfs2: stop quota recovery before disabling quotas cc335d4f4e4f ocfs2: implement handshaking with ocfs2 recovery thread c7441aa8d078 ocfs2: switch osb->disable_recovery to enum cbd5108119d7 x86/microcode: Consolidate the loader enablement checking faa9059631d3 module: ensure that kobject_put() is safe for module type kobjects 7e1c7748404b clocksource/i8253: Use raw_spinlock_irqsave() in clockevent_i8253_disable() cbfaf46b88a4 xenbus: Use kref to track req lifetime ffa14d4dc779 xen: swiotlb: Use swiotlb bouncing if kmalloc allocation demands it 2ed98e89ebc2 smb: client: Avoid race in open_cached_dir with lease breaks 671c05434d91 usb: uhci-platform: Make the clock really optional 03f108a718a7 drm/amdgpu/hdp6: use memcfg register to post the write for HDP flush 1824e914e291 drm/amdgpu/hdp5: use memcfg register to post the write for HDP flush 7133ff3bedf3 drm/amdgpu/hdp5.2: use memcfg register to post the write for HDP flush 05340a423c92 drm/amdgpu/hdp4: use memcfg register to post the write for HDP flush f647ce6d9b5d drm/amd/display: Copy AUX read reply data whenever length > 0 79d982ae2f61 drm/amd/display: Fix wrong handling for AUX_DEFER case 89850f11bb7c drm/amd/display: Remove incorrect checking in dmub aux handler cee6856fbf1c drm/amd/display: Fix the checking condition in dmub aux handling c8a91debb020 drm/amd/display: more liberal vmin/vmax update for freesync 12125f7d9c15 drm/v3d: Add job to pending list if the reset was skipped 9ce662851380 iio: imu: st_lsm6dsx: fix possible lockup in st_lsm6dsx_read_tagged_fifo da33c4167b9c iio: imu: st_lsm6dsx: fix possible lockup in st_lsm6dsx_read_fifo 3413b87a9e17 iio: adis16201: Correct inclinometer channel resolution 7748b1b27fbf iio: adc: rockchip: Fix clock initialization sequence badda05d6b99 iio: adc: ad7606: fix serial register access b229fa0d093c drm/amd/display: Shift DMUB AUX reply command if necessary d41072906abe x86/mm: Eliminate window where TLB flushes may be inadvertently skipped 0f2b18c07604 staging: axis-fifo: Correct handling of tx_fifo_depth for size validation f4d6b9f413cb staging: axis-fifo: Remove hardware resets for user errors 90db122533d2 staging: iio: adc: ad7816: Correct conditional logic for store mode f7adc4943853 Input: synaptics - enable InterTouch on TUXEDO InfinityBook Pro 14 v5 85961bb7e494 Input: synaptics - enable SMBus for HP Elitebook 850 G1 cbd085c424db Input: synaptics - enable InterTouch on Dell Precision M3800 82b02402eee1 Input: synaptics - enable InterTouch on Dynabook Portege X30L-G c321045f088c Input: synaptics - enable InterTouch on Dynabook Portege X30-D 2d9d6a4cd3be Input: xpad - fix two controller table values 56b4e8b62124 Input: xpad - add support for 8BitDo Ultimate 2 Wireless Controller cbc82e7db16d Input: xpad - fix Share button on Xbox One controllers 90fa6015ff83 Input: mtk-pmic-keys - fix possible null pointer dereference f72f0172079c Input: cyttsp5 - fix power control issue on wakeup dadbe33fee36 Input: cyttsp5 - ensure minimum reset pulse width ce4e826dbfe7 net: dsa: b53: fix learning on VLAN unaware bridges b1c9c58d09ed net: dsa: b53: always rejoin default untagged VLAN on bridge leave ca071649e291 net: dsa: b53: fix VLAN ID for untagged vlan on bridge leave a143c39add81 net: dsa: b53: fix flushing old pvid VLAN on pvid change aa00a30a28c7 net: dsa: b53: fix clearing PVID of a port 0121c19ebd53 net: dsa: b53: allow leaky reserved multicast 355b0526336c bpf: Scrub packet on bpf_redirect_peer a3dfec485401 netfilter: ipset: fix region locking in hash types adbc8cc11629 ipvs: fix uninit-value for saddr in do_output_route4 42b7a7c962b2 can: gw: fix RCU/BH usage in cgw_create_job() 3455e6394fef can: mcp251xfd: fix TDC setting for low data bit rates 68f29bb97a0e net: ethernet: mtk_eth_soc: reset all TX queues on DMA free 370635397b62 netdevice: add netdev_tx_reset_subqueue() shorthand fa1fe9f3ddb9 gre: Fix again IPv6 link-local address generation. 31ff70ad3948 sch_htb: make htb_deactivate() idempotent af9e2d4732a5 ksmbd: fix memory leak in parse_lease_state() 0236742bd959 openvswitch: Fix unsafe attribute parsing in output_userspace() fec1f9e9a650 ksmbd: Fix UAF in __close_file_table_ids 04c8a38c6034 ksmbd: prevent out-of-bounds stream writes by validating *pos 6ee551672c8c ksmbd: prevent rename with empty string 3482037d0f66 can: mcp251xfd: mcp251xfd_remove(): fix order of unregistration calls 73dde269a1a4 wifi: cfg80211: fix out-of-bounds access during multi-link element defragmentation d2520dc79c2a can: mcan: m_can_class_unregister(): fix order of unregistration calls 0efe9965680b arm64: dts: imx8mm-verdin: Link reg_usdhc2_vqmmc to usdhc2 38433aa31b43 dm: add missing unlock on in dm_keyslot_evict() 9c2dd8954dad Linux 6.6.90 ed3248a40374 dm: fix copying after src array boundaries fe465003bb63 xhci: fix possible null pointer dereference at secondary interrupter removal 3efb29f6a78d usb: xhci: Check for xhci->interrupters being allocated in xhci_mem_clearup() bbc66abcd297 drm/amd/display: Fix slab-use-after-free in hdcp 97a918755a4c drm/amd/display: Add scoped mutexes for amdgpu_dm_dhcp 4306dbd7676e iommu/arm-smmu-v3: Fix iommu_device_probe bug due to duplicated stream ids 3dc33f145a8a iommu/arm-smmu-v3: Use the new rb tree helpers 8f2451ebaf5b drivers: base: handle module_kobject creation ace531f2fea1 kernel: globalize lookup_or_create_module_kobject() 0ecbb45e30ab kernel: param: rename locate_module_kobject baa3ebbad80f xhci: Limit time spent with xHC interrupts disabled during bus resume ebb7195dac40 xhci: support setting interrupt moderation IMOD for secondary interrupters cc64775afb27 usb: xhci: check if 'requested segments' exceeds ERST capacity 3733697cb7dd xhci: Add helper to set an interrupters interrupt moderation interval bcd191d7bab2 xhci: add support to allocate several interrupters ff0a51339a3b xhci: split free interrupter into separate remove and free parts 3f6e8ad65b1e xhci: Clean up stale comment on ERST_SIZE macro f377434945f5 xhci: Use more than one Event Ring segment 6299fb6190fe xhci: Set DESI bits in ERDP register correctly 5e8c311318fa Revert "drm/meson: vclk: fix calculation of 59.94 fractional rates" f129d8aea8b1 arm64: dts: st: Use 128kB size for aliased GIC400 register access on stm32mp25 SoCs ce2fa5bc0158 arm64: dts: st: Adjust interrupt-controller for stm32mp25 SoCs fabe73032383 ARM: dts: opos6ul: add ksz8081 phy properties f68f93c9d043 firmware: arm_ffa: Skip Rx buffer ownership release if not acquired 2fbf6c9695ad firmware: arm_scmi: Balance device refcount when destroying devices e762ec4c7b34 sch_ets: make est_qlen_notify() idempotent 36269156033f sch_qfq: make qfq_qlen_notify() idempotent 9030a91235ae sch_hfsc: make hfsc_qlen_notify() idempotent 077e355dae44 sch_drr: make drr_qlen_notify() idempotent bbbf5e0f8707 sch_htb: make htb_qlen_notify() idempotent b9ded1fb298b riscv: Pass patch_text() the length in bytes 85484bc61138 ASoC: soc-core: Stop using of_property_read_bool() for non-boolean properties 54583776e416 ASoC: Use of_property_read_bool() 29ea1abc7d4f net: vertexcom: mse102x: Fix RX error handling 6ac8ec92f53f net: vertexcom: mse102x: Add range check for CMD_RTS 04d9c3407986 net: vertexcom: mse102x: Fix LEN_MASK e1301580bf0b net: vertexcom: mse102x: Fix possible stuck of SPI interrupt cb5922f74b40 net: hns3: defer calling ptp_clock_register() accb5a8ef129 net: hns3: fixed debugfs tm_qset size c1b1d3b0d8e4 net: hns3: fix an interrupt residual problem 67d587bfa349 net: hns3: store rx VLAN tag offload state for VF 7e1ca1bed3f6 octeon_ep: Fix host hang issue during device reboot 0e32cbcbc4cb net: fec: ERR007885 Workaround for conventional TX dae1ce27ceae net: lan743x: Fix memleak issue when GSO enabled ec00ea56450e nvme-tcp: fix premature queue removal and I/O failover 252a5a67adc7 bnxt_en: Fix ethtool -d byte order for 32-bit values 4d69864915a3 bnxt_en: Fix out-of-bound memcpy() during ethtool -w 3facfd720055 bnxt_en: Fix coredump logic to free allocated buffer e0272844995a net: ipv6: fix UDPv6 GSO segmentation with NAT 8acf08b1e4ec net: dsa: felix: fix broken taprio gate states after clock jump cb625f783f70 net: ethernet: mtk_eth_soc: fix SER panic with 4GB+ RAM 683ad6d7f489 igc: fix lock order in igc_ptp_reset 2399d1a75033 net: mdio: mux-meson-gxl: set reversed bit when using internal phy 1bbbdfc247f4 net: dlink: Correct endianness handling of led_mode 012a413b28e1 nvme-pci: fix queue unquiesce check on slot_reset ce4f77bef276 ALSA: ump: Fix buffer overflow at UMP SysEx message conversion eae60cfe25d0 ice: Check VF VSI Pointer Value in ice_vc_add_fdir_fltr() a43783119e01 net_sched: qfq: Fix double list add in class with netem as child qdisc 72c3da7e6ceb net_sched: ets: Fix double list add in class with netem as child qdisc 6082a87af4c5 net_sched: hfsc: Fix a UAF vulnerability in class with netem as child qdisc db205b92dfe0 net_sched: drr: Fix double list add in class with netem as child qdisc 9b467c5bcdb4 pds_core: remove write-after-free of client_id 0861fccd43b8 pds_core: specify auxiliary_device to be created da23d7edb215 pds_core: make pdsc_auxbus_dev_del() void 452fa190dd2e pds_core: delete VF dev on reset 5e51c0b51b25 pds_core: check health in devcmd wait 5ba9380f79f2 net: ethernet: mtk-star-emac: rearm interrupts in rx_poll only when advised 7cb10f17bddc net: ethernet: mtk-star-emac: fix spinlock recursion issues on rx/tx poll a74777bb1827 net: mscc: ocelot: delete PVID VLAN when readding it as non-PVID dc7ffe02adda net: mscc: ocelot: treat 802.1ad tagged traffic as 802.1Q-untagged 8c7bfb6198a7 Bluetooth: L2CAP: copy RX timestamp to new fragments 8dde02229b3c net: Rename mono_delivery_time to tstamp_type for scalabilty 2e8d44ebaa7b Bluetooth: btusb: avoid NULL pointer dereference in skb_dequeue() dd20a33a0db0 net/mlx5: E-switch, Fix error handling for enabling roce bab395c89127 net/mlx5: E-Switch, Initialize MAC Address for Default GID 3576e9a80b6c vxlan: vnifilter: Fix unlocked deletion of default FDB entry 029f11349ec9 powerpc/boot: Fix dash warning 36a9a2647810 wifi: plfxlc: Remove erroneous assert in plfxlc_mac_release c5a5de348c05 drm/i915/pxp: fix undefined reference to `intel_pxp_gsccs_is_ready_for_sessions' 27a1efe21f9e powerpc/boot: Check for ld-option support 9a8d4d7072d4 book3s64/radix : Align section vmemmap start address to PAGE_SIZE 8890eeae5c82 ASoC: soc-pcm: Fix hw_params() and DAPM widget sequence a6dbcf69d4c4 iommu: Handle race with default domain setup a1723e9c53fe KVM: x86: Load DR6 with guest value only before entering .vcpu_run() loop 46acbfbcc0e2 PCI: imx6: Skip controller_id generation logic for i.MX7D 28cfd94980bb Revert "PCI: imx6: Skip controller_id generation logic for i.MX7D" 47e24c86cb20 selftests/bpf: extend changes_pkt_data with cases w/o subprograms 3a467d938da2 bpf: fix null dereference when computing changes_pkt_data of prog w/o subprogs b7c0d2d4ef13 selftests/bpf: validate that tail call invalidates packet pointers f1692ee23dca bpf: consider that tail calls invalidate packet pointers 70234fbfa266 selftests/bpf: freplace tests for tracking of changes_packet_data 7197fc4acdf2 bpf: check changes_pkt_data property for extension programs 85a30a46396a selftests/bpf: test for changing packet data from global functions 79751e9227a5 bpf: track changes_pkt_data property for global functions 3d496a1eaaec bpf: refactor bpf_helper_changes_pkt_data to use helper number f0b56f1d2fcc bpf: add find_containing_subprog() utility function 056ebbddb8fa tracing: Fix oob write in trace_seq_to_buffer() 25687fd19633 cpufreq: Fix setting policy limits when frequency tables are used cbd54987db25 cpufreq: Avoid using inconsistent policy->min and policy->max e76948644ec7 smb: client: fix zero length for mkdir POSIX create context b44746356223 ksmbd: fix use-after-free in kerberos authentication a45445b6093d platform/x86/intel-uncore-freq: Fix missing uncore sysfs during CPU hotplug 3a868a7f8da4 platform/x86/amd: pmc: Require at least 2.5 seconds between HW sleep cycles f39493cf7023 iommu/vt-d: Apply quirk_iommu_igfx for 8086:0044 (QM57/QS57) 13d67528e1ae iommu/amd: Fix potential buffer overflow in parse_ivrs_acpihid 64e95bb37916 dm: always update the array size in realloc_argv on success ecc7f159d17e dm-integrity: fix a warning on invalid table line c8c83052283b dm-bufio: don't schedule in atomic context 08424a0922fb wifi: brcm80211: fmac: Add error handling for brcmf_usb_dl_writeimage() 8daa71c694b3 tracing: Do not take trace_event_sem in print_event_fields() 75fda0e59168 spi: tegra114: Don't fail set_cs_timing when delays are zero 3aa4aff158ea mmc: renesas_sdhi: Fix error handling in renesas_sdhi_probe 4d1a2d136356 mm/memblock: repeat setting reserved region nid if array is doubled c0fabecd6510 mm/memblock: pass size instead of end to memblock_set_node() dfbaecf7e38f irqchip/qcom-mpm: Prevent crash when trying to handle non-wake GPIOs e51dd7126693 amd-xgbe: Fix to ensure dependent features are toggled with RX checksum offload 34b6fa11431a perf/x86/intel: KVM: Mask PEBS_ENABLE loaded for guest with vCPU's value. 6a098c51d18e parisc: Fix double SIGFPE crash 3821cae9bd5a arm64: errata: Add missing sentinels to Spectre-BHB MIDR arrays ddf4e7f0f509 i2c: imx-lpi2c: Fix clock count when probe defers 78cf306f7214 EDAC/altera: Set DDR and SDMMC interrupt mask before registration 726641633413 EDAC/altera: Test the correct error reg offset 126f5c6e0cb8 drm/nouveau: Fix WARN_ON in nouveau_fence_context_kill() 94808275aa6c drm/fdinfo: Protect against driver unbind b364ee98aca9 btrfs: fix COW handling in run_delalloc_nocow() 3ac18e0a94c1 ALSA: usb-audio: Add second USB ID for Jabra Evolve 65 headset f73ecbfa78ce ALSA: usb-audio: Add retry on -EPROTO from usb_set_interface() fd1aeef3e9c7 Revert "rndis_host: Flag RNDIS modems as WWAN devices" 6a5b2ed82152 ARM: dts: am335x-bone-common: Increase MDIO reset deassert time ceb5fadbf450 Revert "v6.6 -stable -rt merge fixup" 1c2962a164ff v6.6 -stable -rt merge fixup 18abb2787b53 x86/syscall: Mark exit[_group] syscall handlers __noreturn 2879d995e569 pnmtologo: sync with 6.6 43ea1c5e6eb3 lib/build_OID_registry: take -stable reproducibility changes 35046aea43c8 bpftool: Fix undefined bpf macro for unix socket 9a558d4b8621 tools/resolve_btfids: Fix comparison of distinct pointer types warning in resolve_btfids 42b2eec2e503 bpftool: Query only cgroup-related attach types f71bb11887ba cpu/amd: inhibit SMP check for qemux86 c31365597a17 powerpc/uaccess: Fix build errors seen with GCC 13/14 64ebf485c56b usb: dwc3: core: remove lock of otg mode during gadget suspend/resume to avoid deadlock 7c76aad68f6d kselftest: Add a ksft_perror() helper 06644f0d7193 drm/tilcdc: Set preferred depth ff7ae7b32324 crypto: jitter - add RCT/APT support for different OSRs 50cd24ddb6f0 arm64: defconfig: remove CONFIG_IPQ_APSS_5018 58e5c91d6701 x86/alternatives: Disable interrupts and sync when optimizing NOPs in place c878fd2d4c79 x86/alternatives: Sync core before enabling interrupts c2d64b9f52b6 qemux86: add configuration symbol to select values 630c33229e6d sched/isolation: really align nohz_full with rcu_nocbs 0e5e0f68e2e6 clear_warn_once: add a clear_warn_once= boot parameter 46934791b902 clear_warn_once: bind a timer to written reset value cdee9e38ff32 clear_warn_once: expand debugfs to include read support 82b562b81841 tools: Remove some options from CLANG_CROSS_FLAGS 36dc380b776b libbpf: Fix build warning on ref_ctr_off 9e3e1fe20982 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel. e497a4a5da65 perf: x86-32: explicitly include <errno.h> 7b57ddd89565 perf: mips64: Convert __u64 to unsigned long long 1cfc19423dc7 perf: fix bench numa compilation 98bc2815fade perf: add SLANG_INC for slang.h 17209a70b9b3 perf: add sgidefs.h to for mips builds 9cd4258d910a perf: change --root to --prefix for python install 8110a4f26628 perf: add 'libperl not found' warning bc89d5e08f77 perf: force include of <stdbool.h> 4f6c760cc876 fat: Replace prandom_u32() with get_random_u32() bc53117b12b2 fat: don't use obsolete random32 call in namei_vfat 30b2236ab378 FAT: Added FAT_NO_83NAME cef98d22b4ed FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option 0bbd7daba9e1 FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option 5883fc340084 aufs6: adapt to v6.6 i_op->ctime changes c4342d979bf2 aufs6: fix magic.mk include path 35266bc2dc81 aufs6: adapt to v6.6 8edede4e98be aufs6: core 712248233ebe aufs6: standalone 3b71a8a848d8 aufs6: mmap 3e2924871f37 aufs6: base 7f4907a93101 aufs6: kbuild d2f7b03e4aa7 yaffs2: update VFS ctime operations to 6.6+ bcd6cfcd1aa0 yaffs2: v6.5 fixups cc615704b5f5 yaffs2: Fix miscalculation of devname buffer length 8ef2e22dcf91 yaffs2: convert user_namespace to mnt_idmap c9c749f9f7d3 yaffs2: replace bdevname call with sprintf 395b01cdc39d yaffs2: convert read_page -> readfolio d98b07e43ba6 yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL 613c6d50fdbe yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name 622c4648936f yaffs2: v5.12+ build fixups (not runtime tested) 7562133d4090 yaffs: include blkdev.h dbd44252cd59 yaffs: fix misplaced variable declaration c223a10b1ac0 yaffs2: v5.6 build fixups 90f6007cfbf4 yaffs2: fix memory leak when /proc/yaffs is read 37ee169c5ea1 yaffs: add strict check when call yaffs_internal_read_super b6e007b8abb6 yaffs: repair yaffs_get_mtd_device fb98f65a466a yaffs: Fix build failure by handling inode i_version with proper atomic API 51e0aac75ea2 yaffs2: fix memory leak in mount/umount 2b74a0cae7b0 yaffs: Avoid setting any ACL releated xattr ff4130a9c376 Yaffs:check oob size before auto selecting Yaffs1 ba95b409c67c fs: yaffs2: replace CURRENT_TIME by other appropriate apis 8fa35eba9056 yaffs2: adjust to proper location of MS_RDONLY 1eb5deaad8c4 yaffs2: import git revision b4ce1bb (jan, 2020) 4dce67c1e8c8 initramfs: allow an optional wrapper script around initramfs generation 2f603d83fcc4 pnmtologo: use relocatable file name 664a6a0a484b tools: use basename to identify file in gen-mach-types 9de64bc0c185 lib/build_OID_registry: fix reproducibility issues ae9b80797295 vt/conmakehash: improve reproducibility a972323151bd iwlwifi: select MAC80211_LEDS conditionally 15d2adcc0198 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119) 5556a6c04b19 arm64/perf: Fix wrong cast that may cause wrong truncation 5552dc768ffc defconfigs: drop obselete options 00fe4152df31 arm64/perf: fix backtrace for AAPCS with FP enabled 3888d0652edf linux-yocto: Handle /bin/awk issues 3d55d299f23a uvesafb: provide option to specify timeout for task completion 23c068c080be uvesafb: print error message when task timeout occurs edbfc939266e compiler.h: Undef before redefining __attribute_const__ c99ae7e2a19a vmware: include jiffies.h 572d84d928c8 Resolve jiffies wrapping about arp fdcd47cac843 nfs: Allow default io size to be configured. 927d48801098 check console device file on fs when booting 57cc27f821dd mount_root: clarify error messages for when no rootfs found 1b53d82a8152 mconf: fix output of cflags and libraries 1811da09f42c menuconfig,mconf-cfg: Allow specification of ncurses location 83c2e0c6eb1f modpost: mask trivial warnings 6de673039484 kbuild: exclude meta directory from distclean processing 6decd32815f5 powerpc: serialize image targets f6b683b38318 arm: serialize build targets e798b09ebf57 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition dc8a1e5a88f8 x86_64_defconfig: Fix warnings 68491e5f72b6 powerpc/ptrace: Disable array-bounds warning with gcc8 d71ebfce3004 powerpc: Disable attribute-alias warnings from gcc8 62f50884b8b1 powerpc: kexec fix for powerpc64 da6871c62c37 powerpc: Add unwind information for SPE registers of E500 core f161c880c11d mips: make current_cpu_data preempt safe 5e94a8247ce7 mips: vdso: fix 'jalr $t9' crash in vdso code 19e36714b1c7 mips: Kconfig: add QEMUMIPS64 option e2e537db3cbd 4kc cache tlb hazard: tlbp cache coherency aee9870611e5 malta uhci quirks: make allowance for slow 4k(e)c 881948cd1517 drm/fb-helper: move zeroing code to drm_fb_helper_fill_var 98ec1963fcb7 arm64: defconfig: cleanup config options f1727c537ba8 vexpress: Pass LOADADDR to Makefile 4474c32dc24a arm: ARM EABI socketcall 75e31a2b70fd ARM: LPAE: Invalidate the TLB for module addresses during translation fault
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Bruce Ashfield [Thu, 29 May 2025 16:57:52 +0000 (12:57 -0400)]
linux-yocto/6.6: update to v6.6.89
Updating linux-yocto/6.6 to the latest korg -stable release that comprises
the following commits:
71e4ec9b2abc Linux 6.6.89 20bab4eb1c7c objtool: Silence more KCOV warnings, part 2 014a761be083 objtool: Ignore end-of-section jumps for KCOV/GCOV 26084aa1a143 nvme: fixup scan failure for non-ANA multipath controllers 17d41d0f3a26 MIPS: cm: Fix warning if MIPS_CM is disabled eee19a803731 net: dsa: mv88e6xxx: enable STU methods for 6320 family cd17c8638d21 net: dsa: mv88e6xxx: enable .port_set_policy() for 6320 family 13685484072a net: dsa: mv88e6xxx: enable PVT for 6321 switch bfbd730e100b net: dsa: mv88e6xxx: fix atu_move_port_mask for 6341 family 551667f99bcf ext4: goto right label 'out_mmap_sem' in ext4_setattr() ffe79cc6c71d comedi: jr3_pci: Fix synchronous deletion of timer c4312c4d244a vmxnet3: Fix malformed packet sizing in vmxnet3_process_xdp abe56be73eb1 driver core: fix potential NULL pointer dereference in dev_uevent() a55111066205 driver core: introduce device_set_driver() helper d29c2d53357f Revert "drivers: core: synchronize really_probe() and dev_uevent()" 0fd13033d4e7 x86/pvh: Call C code via the kernel virtual mapping 2b4479eb462e spi: spi-imx: Add check for spi_imx_setupxfer() 459098685edf md/raid1: Add check for missing source disk in process_checks() 41866aa93d2e x86/cpu: Add CPU model number for Bartlett Lake CPUs with Raptor Cove cores aa0cf04b6959 ubsan: Fix panic from test_ubsan_out_of_bounds 96ae4c19ed71 spi: tegra210-quad: add rate limiting and simplify timeout error message 0134e326abc3 spi: tegra210-quad: use WARN_ON_ONCE instead of WARN_ON for timeouts 6c2e136ffd05 loop: aio inherit the ioprio of original request f0209397ed2c riscv: Provide all alternative macros all the time ce7e04d26a35 iomap: skip unnecessary ifs_block_is_uptodate check bb7878cca969 x86/i8253: Call clockevent_i8253_disable() with interrupts disabled a862d24e1fc3 scsi: pm80xx: Set phy_attached to zero when device is gone 4cdb02e9f963 scsi: ufs: exynos: Ensure pre_link() executes before exynos_ufs_phy_init() fa99f1886e0a scsi: hisi_sas: Fix I/O errors caused by hardware port ID changes a8550ac19d46 ext4: make block validity check resistent to sb bh corruption ea92c93887f5 cifs: Fix querying of WSL CHR and BLK reparse points over SMB1 dc18c5b1301a timekeeping: Add a lockdep override in tick_freeze() e5208da73954 cifs: Fix encoding of SMB1 Session Setup Kerberos Request in non-UNICODE mode f444c139e820 nvmet-fc: put ref when assoc->del_work is already scheduled e45e8f0dd324 nvmet-fc: take tgtport reference only once 0cad1849e903 x86/bugs: Don't fill RSB on context switch with eIBRS b73c62b1ca43 x86/bugs: Don't fill RSB on VMEXIT with eIBRS+retpoline 19160ed5e5fa x86/bugs: Use SBPB in write_ibpb() if applicable 84b52a6cd012 selftests/mincore: Allow read-ahead pages to reach the end of the file 4978a798a38d gpiolib: of: Move Atmel HSMCI quirk up out of the regulator comment 18082da6ce0e objtool: Stop UNRET validation on UD2 0cf5fd802452 nvme: multipath: fix return value of nvme_available_path 60ed102378a3 nvme: re-read ANA log page after ns scan completes 4c97ba1b0b98 ACPI PPTT: Fix coding mistakes in a couple of sizeof() calls fcf524eaff20 ACPI: EC: Set ec_no_wakeup for Lenovo Go S fe063491e90d nvme: requeue namespace scan on missed AENs 892fcde9941d xen: Change xen-acpi-processor dom0 dependency 1fe9b92eede3 perf/core: Fix WARN_ON(!ctx) in __free_event() for partial init eee189ccd46b selftests: ublk: fix test_stripe_04 b2ff4e9c599b udmabuf: fix a buf size overflow issue during udmabuf creation 6234a3c72784 KVM: s390: Don't use %pK through debug printing 1b2c45697f43 KVM: s390: Don't use %pK through tracepoints b205d02726b3 sched/isolation: Make CONFIG_CPU_ISOLATION depend on CONFIG_SMP c5d4d103005d io_uring: always do atomic put from iowq 7e9b836182c1 rtc: pcf85063: do a SW reset if POR failed a68768e280b7 9p/net: fix improper handling of bogus negative read/write replies 04ebabdbe99d ntb_hw_amd: Add NTB PCI ID for new gen CPU 27f6ee168c00 ntb: reduce stack usage in idt_scan_mws 5d53e88d8370 qibfs: fix _another_ leak db437e985469 objtool, lkdtm: Obfuscate the do_nothing() pointer 11c16b644934 objtool, regulator: rk808: Remove potential undefined behavior in rk806_set_mode_dcdc() 547695db502c objtool, ASoC: codecs: wcd934x: Remove potential undefined behavior in wcd934x_slim_irq_handler() 4ab980b5c309 objtool, panic: Disable SMAP in __stack_chk_fail() 97f70d27bee2 objtool: Silence more KCOV warnings d5ada7bf3dc8 thunderbolt: Scan retimers after device router has been enumerated e59fc484d424 usb: host: xhci-plat: mvebu: use ->quirks instead of ->init_quirk() func cfa7984f6935 usb: gadget: aspeed: Add NULL pointer check in ast_vhub_init_dev() 8b26eb1d8bb2 usb: xhci: Avoid Stop Endpoint retry loop if the endpoint seems Running 2c6a11eaec65 dmaengine: dmatest: Fix dmatest waiting less when interrupted 5be9407b41ea sound/virtio: Fix cancel_sync warnings on uninitialized work_structs a7f9991e4e3c usb: dwc3: gadget: Avoid using reserved endpoints on Intel Merrifield e5aabc76d101 usb: dwc3: gadget: Refactor loop to avoid NULL endpoints db56636beb3e fs/ntfs3: Fix WARNING in ntfs_extend_initialized_size 46a150788e16 usb: host: max3421-hcd: Add missing spi_device_id table 1a0a2d8c6d77 mailbox: pcc: Always clear the platform ack interrupt first a6e3026e0ad6 mailbox: pcc: Fix the possible race in updation of chan_in_use flag 10cf3135c6dc bpf: Reject attaching fexit/fmod_ret to __noreturn functions 4ed42d1a4a5b bpf: Only fails the busy counter check in bpf_cgrp_storage_get if it creates storage c487fcc632e7 bpf: bpftool: Setting error code in do_loader() 7f30987294b7 s390/tty: Fix a potential memory leak bug 28e5a867aa54 s390/sclp: Add check for get_zeroed_page() 96eab3c96a24 parisc: PDT: Fix missing prototype warning 51ae5b7aa96c clk: check for disabled clock-provider in of_clk_get_hw_from_clkspec() b5a528a34e1f bpf: Fix deadlock between rcu_tasks_trace and event_mutex. 1b66a5920b7f crypto: null - Use spin lock instead of mutex d999b11302c4 crypto: ccp - Add support for PCI device 0x1134 02f53b8f2ffc MIPS: cm: Detect CM quirks from device tree 979ba0d694ea pinctrl: renesas: rza2: Fix potential NULL pointer dereference 9c97886f8085 USB: wdm: add annotation 4b0369c53088 USB: wdm: wdm_wwan_port_tx_complete mutex in atomic context 54f7f8978af1 USB: wdm: close race between wdm_open and wdm_wwan_port_stop 8312053acc99 USB: wdm: handle IO errors in wdm_wwan_port_start e455bf315eee USB: VLI disk crashes if LPM is used 097d3c27f871 usb: quirks: Add delay init quirk for SanDisk 3.2Gen1 Flash Drive 57beab8ea4ff usb: quirks: add DELAY_INIT quirk for Silicon Motion Flash Drive 127b6aba32d8 usb: dwc3: xilinx: Prevent spike in reset signal c4d80e41cb42 usb: dwc3: gadget: check that event count does not exceed event buffer length 6a91a198cd30 USB: OHCI: Add quirk for LS7A OHCI controller (rev 0x02) 23d4bb3b0698 usb: chipidea: ci_hdrc_imx: implement usb_phy_init() error handling 15120673da69 usb: chipidea: ci_hdrc_imx: fix call balance of regulator routines 121e9f80ea54 usb: chipidea: ci_hdrc_imx: fix usbmisc handling 48a62deb857f usb: cdns3: Fix deadlock when using NCM gadget 142273a49f2c usb: xhci: Fix invalid pointer dereference in Etron workaround 01eeddf93a8a USB: serial: simple: add OWON HDS200 series oscilloscope support 51d4b23ae5e6 USB: serial: option: add Sierra Wireless EM9291 c6dc3b71bd4b USB: serial: ftdi_sio: add support for Abacus Electrics Optical Probe 3b377f805e97 serial: sifive: lock port in startup()/shutdown() callbacks c2af265beab7 serial: msm: Configure correct working mode before starting earlycon 5d5e8a880c48 misc: microchip: pci1xxxx: Fix incorrect IRQ status handling during ack 62957f58ab3a misc: microchip: pci1xxxx: Fix Kernel panic during IRQ handler registration 5f253cc40e8d char: misc: register chrdev region with all possible minors 3481fd96d801 KVM: x86: Reset IRTE to host control if *new* route isn't postable 9514202882a0 KVM: x86: Explicitly treat routing entry type changes as changes ac0fe095ac21 mei: me: add panther lake H DID 164bc7e26d89 scsi: Improve CDL control 4c2de359b1a2 USB: storage: quirk for ADATA Portable HDD CH94 ff733a91a06b ata: libata-scsi: Fix ata_msense_control_ata_feature() f0a1b054871f ata: libata-scsi: Fix ata_mselect_control_ata_feature() return type f92d5d7134d1 ata: libata-scsi: Improve CDL control 96838eb1836f mcb: fix a double free bug in chameleon_parse_gdd() 406ca74adea0 cxl/core/regs.c: Skip Memory Space Enable check for RCD and RCH Ports ff826d60d9a8 KVM: SVM: Allocate IR data using atomic allocation b675b4c863f1 io_uring: fix 'sync' handling of io_fallback_tw() 20a3f73dd424 LoongArch: Remove a bogus reference to ZONE_DMA 2ca9380b1271 LoongArch: Return NULL from huge_pte_offset() for invalid PMD 2f2803e4b5e4 irqchip/gic-v2m: Prevent use after free of gicv2m_get_fwnode() 3d36fae38312 drm/amd/display: Force full update in gpu reset 253827297c4d drm/amd/display: Fix gpu reset in multidisplay config 689d5be94faa net: phy: microchip: force IRQ polling mode for lan88xx a7b8358eb403 net: selftests: initialize TCP header and skb payload with zero cefd8a2e2de4 xen-netfront: handle NULL returned by xdp_convert_buff_to_frame() 284db2f35b39 crypto: atmel-sha204a - Set hwrng quality to lowest possible ad787442af7b virtio_console: fix missing byte order handling for cols and rows b74fb07153dc LoongArch: Make do_xyz() exception handlers more robust eaa0849818eb LoongArch: Make regs_irqs_disabled() more clear 5767f4ac6428 LoongArch: Select ARCH_USE_MEMTEST cd5970e001f7 perf/x86: Fix non-sampling (counting) events on certain x86 platforms 9e0d94a29222 splice: remove duplicate noinline from pipe_clear_nowait 415f3481ca76 iommu/amd: Return an error if vCPU affinity is set for non-vCPU IRTE 1d7c4b2b0bbf pds_core: make wait_context part of q_info c918ce100d17 pds_core: Remove unnecessary check in pds_client_adminq_cmd() cdd784c96fe2 pds_core: handle unsupported PDS_CORE_CMD_FW_CONTROL result 49083dc3cbb3 net: dsa: mt7530: sync driver-specific behavior of MT7531 variants 76c4c22c2437 net_sched: hfsc: Fix a potential UAF in hfsc_dequeue() too 3aa852e36050 net_sched: hfsc: Fix a UAF vulnerability in class handling 4f435c1f4c48 fix a couple of races in MNT_TREE_BENEATH handling by do_move_mount() e9f67da07753 net: ethernet: mtk_eth_soc: net: revise NETSYSv3 hardware configuration dd6cb0a8575b tipc: fix NULL pointer dereference in tipc_mon_reinit_self() 618541a6cc15 net: phy: leds: fix memory leak d5093d6486d7 net: lwtunnel: disable BHs when required 4d6919dd7c69 scsi: core: Clear flags for scsi_cmnd that did not complete 4a1b61f91078 btrfs: avoid page_lockend underflow in btrfs_punch_hole_lock_range() 1845e03ea787 cpufreq: cppc: Fix invalid return value in .get() callback d6979fabe812 scsi: ufs: mcq: Add NULL check in ufshcd_mcq_abort() 19e0eaa62e88 cpufreq: scpi: Fix null-ptr-deref in scpi_cpufreq_get_rate() ea834c90aa7c cpufreq: scmi: Fix null-ptr-deref in scmi_cpufreq_get_rate() 1053dcf8a504 cpufreq: apple-soc: Fix null-ptr-deref in apple_soc_cpufreq_get_rate() 92d55d705183 dma/contiguous: avoid warning about unused size_bytes f55e7f8abbd3 ceph: Fix incorrect flush end position calculation d70c078c26c0 cpufreq/sched: Explicitly synchronize limits_changed flag handling ada8d7fa0ad4 sched/cpufreq: Rework schedutil governor performance estimation 7fc781ca938f sched/topology: Consolidate and clean up access to a CPU's max compute capacity 485104cd6353 scsi: ufs: qcom: fix dev reference leaked through of_qcom_ice_get bd2a352a0d72 PCI: Fix reference leak in pci_register_host_bridge() 81435b85b2eb of: resolver: Fix device node refcount leakage in of_resolve_phandles() f549a4d2e029 of: resolver: Simplify of_resolve_phandles() using __free() 9549391bb64b clk: renesas: r9a07g043: Fix HP clock source for RZ/Five 3b6f9b555d5b clk: renesas: r9a07g04[34]: Fix typo for sel_shdi variable d56be1857909 clk: renesas: r9a07g04[34]: Use SEL_SDHI1_STS status configuration for SD1 mux a15ff92d5f06 clk: renesas: rzg2l: Refactor SD mux driver 1b9daac2383e clk: renesas: rzg2l: Remove CPG_SDHI_DSEL from generic header 2e1162149b39 clk: renesas: rzg2l: Add struct clk_hw_data aa487374d7f6 clk: renesas: rzg2l: Use u32 for flag and mux_flags e56acd53a91a arm64: tegra: Remove the Orin NX/Nano suspend key 6f21dfc4fadb iio: adc: ad7768-1: Fix conversion result sign 28aadcb759cf iio: adc: ad7768-1: Move setting of val a bit later to avoid unnecessary return value check 8df02691d09e ASoC: q6apm-dai: make use of q6apm_get_hw_pointer 175cb0c28aea ASoC: qcom: Fix trivial code style issues 9f5d3022d8ca ASoC: qcom: lpass: Make asoc_qcom_lpass_cpu_platform_remove() return void 0addfbfd605b ASoC: q6apm-dai: schedule all available frames to avoid dsp under-runs 860c028415d9 ASoC: qcom: q6apm-dai: drop unused 'q6apm_dai_rtd' fields 9973c8192e07 net: dsa: mv88e6xxx: fix VTU methods for 6320 family 70d2b16cdd12 net: dsa: mv88e6xxx: fix internal PHYs for 6320 family 83c12c052cf5 auxdisplay: hd44780: Fix an API misuse in hd44780.c ab239a12fdb2 auxdisplay: hd44780: Convert to platform remove callback returning void 880b1c98d1b4 mmc: sdhci-msm: fix dev reference leaked through of_qcom_ice_get d4f5f29c26a1 soc: qcom: ice: introduce devm_of_qcom_ice_get a505075730d2 media: vimc: skip .s_stream() for stopped entities a64a102e01eb media: subdev: Add v4l2_subdev_is_streaming() 2b3dc697a465 media: subdev: Improve v4l2_subdev_enable/disable_streams_fallback beeeea11ee2a media: subdev: Fix use of sd->enabled_streams in call_s_stream() 4d11fac941d8 tracing: Verify event formats that have "%*p.." e13358c4884d tracing: Add __print_dynamic_array() helper 896e30f76840 tracing: Add __string_len() example 5724654a084f x86/mce: use is_copy_from_user() to determine copy-from-user context 415620362062 x86/extable: Remove unused fixup type EX_TYPE_COPY 247395cbec42 module: sign with sha512 instead of sha1 by default 6a5b2ed82152 ARM: dts: am335x-bone-common: Increase MDIO reset deassert time ceb5fadbf450 Revert "v6.6 -stable -rt merge fixup" 1c2962a164ff v6.6 -stable -rt merge fixup 18abb2787b53 x86/syscall: Mark exit[_group] syscall handlers __noreturn 2879d995e569 pnmtologo: sync with 6.6 43ea1c5e6eb3 lib/build_OID_registry: take -stable reproducibility changes 35046aea43c8 bpftool: Fix undefined bpf macro for unix socket 9a558d4b8621 tools/resolve_btfids: Fix comparison of distinct pointer types warning in resolve_btfids 42b2eec2e503 bpftool: Query only cgroup-related attach types f71bb11887ba cpu/amd: inhibit SMP check for qemux86 c31365597a17 powerpc/uaccess: Fix build errors seen with GCC 13/14 64ebf485c56b usb: dwc3: core: remove lock of otg mode during gadget suspend/resume to avoid deadlock 7c76aad68f6d kselftest: Add a ksft_perror() helper 06644f0d7193 drm/tilcdc: Set preferred depth ff7ae7b32324 crypto: jitter - add RCT/APT support for different OSRs 50cd24ddb6f0 arm64: defconfig: remove CONFIG_IPQ_APSS_5018 58e5c91d6701 x86/alternatives: Disable interrupts and sync when optimizing NOPs in place c878fd2d4c79 x86/alternatives: Sync core before enabling interrupts c2d64b9f52b6 qemux86: add configuration symbol to select values 630c33229e6d sched/isolation: really align nohz_full with rcu_nocbs 0e5e0f68e2e6 clear_warn_once: add a clear_warn_once= boot parameter 46934791b902 clear_warn_once: bind a timer to written reset value cdee9e38ff32 clear_warn_once: expand debugfs to include read support 82b562b81841 tools: Remove some options from CLANG_CROSS_FLAGS 36dc380b776b libbpf: Fix build warning on ref_ctr_off 9e3e1fe20982 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel. e497a4a5da65 perf: x86-32: explicitly include <errno.h> 7b57ddd89565 perf: mips64: Convert __u64 to unsigned long long 1cfc19423dc7 perf: fix bench numa compilation 98bc2815fade perf: add SLANG_INC for slang.h 17209a70b9b3 perf: add sgidefs.h to for mips builds 9cd4258d910a perf: change --root to --prefix for python install 8110a4f26628 perf: add 'libperl not found' warning bc89d5e08f77 perf: force include of <stdbool.h> 4f6c760cc876 fat: Replace prandom_u32() with get_random_u32() bc53117b12b2 fat: don't use obsolete random32 call in namei_vfat 30b2236ab378 FAT: Added FAT_NO_83NAME cef98d22b4ed FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option 0bbd7daba9e1 FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option 5883fc340084 aufs6: adapt to v6.6 i_op->ctime changes c4342d979bf2 aufs6: fix magic.mk include path 35266bc2dc81 aufs6: adapt to v6.6 8edede4e98be aufs6: core 712248233ebe aufs6: standalone 3b71a8a848d8 aufs6: mmap 3e2924871f37 aufs6: base 7f4907a93101 aufs6: kbuild d2f7b03e4aa7 yaffs2: update VFS ctime operations to 6.6+ bcd6cfcd1aa0 yaffs2: v6.5 fixups cc615704b5f5 yaffs2: Fix miscalculation of devname buffer length 8ef2e22dcf91 yaffs2: convert user_namespace to mnt_idmap c9c749f9f7d3 yaffs2: replace bdevname call with sprintf 395b01cdc39d yaffs2: convert read_page -> readfolio d98b07e43ba6 yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL 613c6d50fdbe yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name 622c4648936f yaffs2: v5.12+ build fixups (not runtime tested) 7562133d4090 yaffs: include blkdev.h dbd44252cd59 yaffs: fix misplaced variable declaration c223a10b1ac0 yaffs2: v5.6 build fixups 90f6007cfbf4 yaffs2: fix memory leak when /proc/yaffs is read 37ee169c5ea1 yaffs: add strict check when call yaffs_internal_read_super b6e007b8abb6 yaffs: repair yaffs_get_mtd_device fb98f65a466a yaffs: Fix build failure by handling inode i_version with proper atomic API 51e0aac75ea2 yaffs2: fix memory leak in mount/umount 2b74a0cae7b0 yaffs: Avoid setting any ACL releated xattr ff4130a9c376 Yaffs:check oob size before auto selecting Yaffs1 ba95b409c67c fs: yaffs2: replace CURRENT_TIME by other appropriate apis 8fa35eba9056 yaffs2: adjust to proper location of MS_RDONLY 1eb5deaad8c4 yaffs2: import git revision b4ce1bb (jan, 2020) 4dce67c1e8c8 initramfs: allow an optional wrapper script around initramfs generation 2f603d83fcc4 pnmtologo: use relocatable file name 664a6a0a484b tools: use basename to identify file in gen-mach-types 9de64bc0c185 lib/build_OID_registry: fix reproducibility issues ae9b80797295 vt/conmakehash: improve reproducibility a972323151bd iwlwifi: select MAC80211_LEDS conditionally 15d2adcc0198 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119) 5556a6c04b19 arm64/perf: Fix wrong cast that may cause wrong truncation 5552dc768ffc defconfigs: drop obselete options 00fe4152df31 arm64/perf: fix backtrace for AAPCS with FP enabled 3888d0652edf linux-yocto: Handle /bin/awk issues 3d55d299f23a uvesafb: provide option to specify timeout for task completion 23c068c080be uvesafb: print error message when task timeout occurs edbfc939266e compiler.h: Undef before redefining __attribute_const__ c99ae7e2a19a vmware: include jiffies.h 572d84d928c8 Resolve jiffies wrapping about arp fdcd47cac843 nfs: Allow default io size to be configured. 927d48801098 check console device file on fs when booting 57cc27f821dd mount_root: clarify error messages for when no rootfs found 1b53d82a8152 mconf: fix output of cflags and libraries 1811da09f42c menuconfig,mconf-cfg: Allow specification of ncurses location 83c2e0c6eb1f modpost: mask trivial warnings 6de673039484 kbuild: exclude meta directory from distclean processing 6decd32815f5 powerpc: serialize image targets f6b683b38318 arm: serialize build targets e798b09ebf57 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition dc8a1e5a88f8 x86_64_defconfig: Fix warnings 68491e5f72b6 powerpc/ptrace: Disable array-bounds warning with gcc8 d71ebfce3004 powerpc: Disable attribute-alias warnings from gcc8 62f50884b8b1 powerpc: kexec fix for powerpc64 da6871c62c37 powerpc: Add unwind information for SPE registers of E500 core f161c880c11d mips: make current_cpu_data preempt safe 5e94a8247ce7 mips: vdso: fix 'jalr $t9' crash in vdso code 19e36714b1c7 mips: Kconfig: add QEMUMIPS64 option e2e537db3cbd 4kc cache tlb hazard: tlbp cache coherency aee9870611e5 malta uhci quirks: make allowance for slow 4k(e)c 881948cd1517 drm/fb-helper: move zeroing code to drm_fb_helper_fill_var 98ec1963fcb7 arm64: defconfig: cleanup config options f1727c537ba8 vexpress: Pass LOADADDR to Makefile 4474c32dc24a arm: ARM EABI socketcall 75e31a2b70fd ARM: LPAE: Invalidate the TLB for module addresses during translation fault
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Bruce Ashfield [Thu, 29 May 2025 16:57:50 +0000 (12:57 -0400)]
linux-yocto/6.6: update to v6.6.87
Updating linux-yocto/6.6 to the latest korg -stable release that comprises
the following commits:
:ddddddddddddddddddddddddddddddddddddddddddddd bbbbbbbbbbbbbbbbbbbbbb 814637ca257f Linux 6.6.87 47ee832819f4 tracing: Do not use PERF enums when perf is not defined 661f09d39a59 NFSD: Skip sending CB_RECALL_ANY when the backchannel isn't up 9a81cde8c7ce nfsd: put dl_stid if fail to queue dl_recall 15483afb930f media: streamzap: fix race between device disconnection and urb callback 753a620a7f8e exec: fix the racy usage of fs_struct->in_exec 72a3b5c3d16e jfs: add index corruption check to DT_GETPAGE() a8c31808925b jfs: fix slab-out-of-bounds read in ea_get() 52a5509ab19a ext4: fix OOB read when checking dotdot dir d12a6016281a ext4: don't over-report free space or inodes in statvfs 617a4b0084a5 arm64: Don't call NULL in do_compat_alignment_fixup() 77029c613fac tracing/osnoise: Fix possible recursive locking for cpus_read_lock() fad52c9ae5bd tracing: Fix synth event printk format for str fields fc128e85cfc4 tracing: Ensure module defining synth event cannot be unloaded while tracing 099ef3385800 tracing: Fix use-after-free in print_graph_function_flags during tracer switching 0e36a3e080d6 ksmbd: validate zero num_subauth before sub_auth is accessed 3980770cb147 ksmbd: fix session use-after-free in multichannel connection a8a8ae303a83 ksmbd: fix use-after-free in ksmbd_sessions_deregister() 60b7207893a8 ksmbd: add bounds check for create lease context 8d4848c45943 ksmbd: add bounds check for durable handle context 68d64f7329a5 mmc: sdhci-omap: Disable MMC_CAP_AGGRESSIVE_PM for eMMC/SD d8d7b50586ec mmc: sdhci-pxav3: set NEED_RSP_BUSY capability 261f51775ef5 mmc: omap: Fix memory leak in mmc_omap_new_slot 90bcdefe220a ACPI: resource: Skip IRQ override on ASUS Vivobook 14 X1404VAP c90402d2a226 acpi: nfit: fix narrowing conversion in acpi_nfit_ctl 7085895c59e4 x86/mm: Fix flush_tlb_range() when used for zapping normal PMDs e329d137b076 x86/tsc: Always save/restore TSC sched_clock() on suspend/resume 67e4ca7ddc67 btrfs: handle errors from btrfs_dec_ref() properly 99ddb9c58511 kunit/overflow: Fix UB in overflow_allocation_test e7f6922c8a5b perf/x86/intel: Avoid disable PMU if !cpuc->enabled in sample read 79159fbd13f6 perf/x86/intel: Apply static call for drain_pebs 2e6df032a0b6 ntb_perf: Delete duplicate dmaengine_unmap_put() call in perf_copy_chunk() 3820d20d51fd platform/x86: ISST: Correct command storage data length b1a673850c58 ACPI: x86: Extend Lenovo Yoga Tab 3 quirk with skip GPIO event-handlers 763f4d638f71 x86/microcode/AMD: Fix __apply_microcode_amd()'s return value 10edc4cecad4 x86/hyperv: Fix check of return value from snp_set_vmsa() 7cf8fe2b2bcc LoongArch: BPF: Use move_addr() for BPF_PSEUDO_FUNC 7df2696256a0 LoongArch: BPF: Don't override subprog's return value b3ffad2f02db LoongArch: BPF: Fix off-by-one error in build_prologue() 279ec25c2df4 LoongArch: Increase ARCH_DMA_MINALIGN up to 16 acacd48a37b5 usbnet:fix NPE during rx_complete 032c5407a608 drm/amd/display: Check link_index before accessing dc->links[] 41a2c7abc339 tracing: Correct the refcount if the hist/hist_debug file fails to open d24e5e631849 tracing/hist: Support POLLPRI event for poll on histogram 13edaf997904 tracing/hist: Add poll(POLLIN) support on hist file 77b7dbd3420e tracing: Switch trace_events_hist.c code over to use guard() f568fbe8c603 tracing: Allow creating instances with specified system events 1913adb58b84 perf/core: Fix child_total_time_enabled accounting bug at task exit 40316f29b043 drm/amdgpu/gfx11: fix num_mec 1e458c292f4c net: ibmveth: make veth_pool_store stop hanging ececf8eff6c2 arcnet: Add NULL check in com20020pci_probe() fa2f9fc35f56 ipv6: Do not consider link down nexthops in path selection 21f678f672dc ipv6: Start path selection from the first nexthop 5a2976cc4d9c net: fix geneve_opt length integer overflow 0ae509b075b2 net: dsa: mv88e6xxx: propperly shutdown PPU re-enable timer on destroy fbab7bbf7204 ipv6: fix omitted netlink attributes when using RTEXT_FILTER_SKIP_STATS 28d88ee1e1cc netfilter: nft_tunnel: fix geneve_opt type confusion addition ccc331fd5bca net: decrease cached dst counters in dst_release 858695324644 tunnels: Accept PACKET_HOST in skb_tunnel_check_pmtu(). b0a1055e0a9e vsock: avoid timeout during connect() if the socket is closing aeef6456692c udp: Fix memory accounting leak. 5b0ae1723a7d net: mvpp2: Prevent parser TCAM memory corruption 864ca690ff13 net_sched: skbprio: Remove overly strict queue assertions 1927d0bcd5b8 netlabel: Fix NULL pointer exception caused by CALIPSO on IPv4 sockets 6134d1ea1e14 netfilter: nf_tables: don't unregister hook when table is dormant 073b04796c07 netfilter: nft_set_hash: GC reaps elements with conncount for dynamic sets only aff1860507ea e1000e: change k1 configuration on MTP and later platforms e283a5bf4337 ASoC: imx-card: Add NULL check in imx_card_probe() 8db65e4432b2 riscv: Fix hugetlb retrieval of number of ptes in case of !present pte 992678427eff ASoC: codecs: rt5665: Fix some error handling paths in rt5665_probe() a59594c370cd x86/uaccess: Improve performance by aligning writes to 8 bytes in copy_user_generic(), on non-FSRM/ERMS CPUs f7a53d32cc60 RISC-V: errata: Use medany for relocatable builds b52e13bfd69c ALSA: hda/realtek: Fix built-in mic breakage on ASUS VivoBook X515JA c37616f1521d firmware: cs_dsp: Ensure cs_dsp_load[_coeff]() returns 0 on success 830169a5ceeb ntb: intel: Fix using link status DB's c61a3f2df162 ntb_hw_switchtec: Fix shift-out-of-bounds in switchtec_ntb_mw_set_trans 2174fa133dcc riscv: ftrace: Add parentheses in macro definitions of make_call_t0 and make_call_ra 239ea3c34673 spufs: fix a leak in spufs_create_context() 324f280806aa spufs: fix gang directory lifetimes 90d1b276d1b1 spufs: fix a leak on spufs_new_file() failure 6e75137ac8de hwmon: (nct6775-core) Fix out of bounds access for NCT679{8,9} aaf534ad0720 memory: omap-gpmc: drop no compatible check 68adc6f17a36 can: statistics: use atomic access in hot path 2a435a8cb891 ALSA: hda/realtek: Add mute LED quirk for HP Pavilion x360 14-dy1xxx 05413508bc35 drm/amd: Keep display off while going into S4 5272e986ea96 nvme-pci: fix stuck reset on concurrent DPC and HP d276f4050067 x86/sgx: Warn explicitly if X86_FEATURE_SGX_LC is not enabled 83fa62a06e40 x86/hyperv: Fix output argument to hypercall that changes page visibility e7d8c5703238 locking/semaphore: Use wake_q to wake up processes outside lock critical section e87b8f209cb2 wifi: mac80211: flush the station before moving it to UN-AUTHORIZED state c0863207c012 x86/hyperv/vtl: Stop kernel from probing VTL0 low memory 0ada80483275 sched/deadline: Use online cpus for validating runtime 264f9a797c18 ALSA: hda/realtek: Add support for ASUS Zenbook UM3406KA Laptops using CS35L41 HDA b9fa3901b612 ALSA: hda/realtek: Add support for ASUS ROG Strix G614 Laptops using CS35L41 HDA 4c8865331899 HID: i2c-hid: improve i2c_hid_get_report error message 64f974466183 platform/x86/intel/vsec: Add Diamond Rapids support 84d6da6738ba platform/x86: intel-hid: fix volume buttons on Microsoft Surface Go 4 tablet fa19b53716f9 cifs: fix incorrect validation for num_aces field of smb_acl 68ee6f71a2a9 perf/core: Fix perf_pmu_register() vs. perf_init_event() 11e2ae4fe025 ALSA: hda: Fix speakers on ASUS EXPERTBOOK P5405CSA 1.0 fc424138592a ALSA: hda/realtek: Fix Asus Z13 2025 audio 54fd5a5b7583 affs: don't write overlarge OFS data block size fields 9fcab9c72142 affs: generate OFS sequence numbers starting at 1 ec7315e68d88 wifi: brcmfmac: keep power during suspend if board requires it d9189555fbe5 nvme-pci: skip CMB blocks incompatible with PCI P2P DMA a74dad107e52 nvme-pci: clean up CMBMSC when registering CMB fails 9ca8c6f6a227 nvme-tcp: fix possible UAF in nvme_tcp_poll 60856e6cdb3e wifi: iwlwifi: mvm: use the right version of the rate API aadb8a9a90c0 wifi: iwlwifi: fw: allocate chained SG tables for dump a3160e7f6d90 rcu-tasks: Always inline rcu_irq_work_resched() 0a0813d1277e context_tracking: Always inline ct_{nmi,irq}_{enter,exit}() 698243234d63 sched/smt: Always inline sched_smt_active() 7ae00d2903ee objtool: Fix verbose disassembly if CROSS_COMPILE isn't set 08796bd2389a octeontx2-af: Free NIX_AF_INT_VEC_GEN irq aa042c453227 octeontx2-af: Fix mbox INTR handler when num VFs > 64 f9b61f837eb7 ACPI: processor: idle: Return an error if both P_LVL{2,3} idle states are invalid d32f20470c9e LoongArch: Rework the arch_kgdb_breakpoint() implementation 37319d6d8540 LoongArch: Fix help text of CMDLINE_EXTEND in Kconfig 8f77c286d5e0 objtool: Fix segfault in ignore_unreachable_insn() de37b82be68d ring-buffer: Fix bytes_dropped calculation issue 17e3c520aeef net/mlx5e: SHAMPO, Make reserved size independent of page size 4790bcb269e5 ksmbd: fix r_count dec/increment mismatch a32086cc6444 ksmbd: fix multichannel connection failure 1de7fec4d301 ksmbd: use aead_request_free to match aead_request_alloc 8857aadaecef rndis_host: Flag RNDIS modems as WWAN devices 15f150771e0e rtnetlink: Allocate vfinfo size for VF GUIDs when supported af089264d108 exfat: fix the infinite loop in exfat_find_last_cluster() c6b6b8dcef4a smb: client: Fix netns refcount imbalance causing leaks and use-after-free d7ca0969bf87 NFS: Shut down the nfs_client only after all the superblocks 75b42dfe8765 objtool, media: dib8000: Prevent divide-by-zero in dib8000_set_dds() f2dc3c3b1b85 perf tools: annotate asm_pure_loop.S e6fe7f82f3b9 fs/procfs: fix the comment above proc_pid_wchan() 0a3bf3bc3444 tty: n_tty: use uint for space returned by tty_write_room() 357c1a3deb1f staging: rtl8723bs: select CONFIG_CRYPTO_LIB_AES 769a0f187ba2 perf python: Check if there is space to copy all the event 88f5dd0002f4 perf python: Don't keep a raw_data pointer to consumed ring buffer space 6bc0c3e7582c perf python: Decrement the refcount of just created event on failure b8e2e2cfa319 perf python: Fixup description of sample.id event member 9c764db1794e i3c: master: svc: Fix missing the IBI rules 4ee8160c47e0 um: hostfs: avoid issues on inode number reuse by host c9a6cf3fe680 um: remove copy_from_kernel_nofault_allowed 5e06e6412a73 selftests/mm/cow: fix the incorrect error handling db75d49a4107 fuse: fix dax truncate/punch_hole fault path 4e2a03d766f1 NFSv4: Don't trigger uneccessary scans for return-on-close delegations d03ce46090f6 arch/powerpc: drop GENERIC_PTDUMP from mpc885_ads_defconfig 3d012ba4404a ocfs2: validate l_tree_depth to avoid out-of-bounds access 8c69e83028bf kexec: initialize ELF lowest address to ULONG_MAX 4159cb408f8c kernel/events/uprobes: handle device-exclusive entries correctly in __replace_page() fa55abb99de9 perf units: Fix insufficient array space 8a832ed0f6d6 perf evlist: Add success path to evlist__create_syswide_maps 1f562f8efa72 iio: adc: ad7124: Fix comparison of channel configs a2ae5afa0837 iio: adc: ad4130: Fix comparison of channel setups cb7687e37735 dmaengine: fsl-edma: cleanup chan after dma_async_device_unregister f6d44b1aa46d fs/ntfs3: Prevent integer overflow in hdr_first_de() 0dfe700fbd35 fs/ntfs3: Fix a couple integer overflows on 32bit systems 0566a11d5e65 usb: xhci: correct debug message page size calculation fe2ada4ed436 perf bench: Fix perf bench syscall loop count 31ebc5701a82 perf arm-spe: Fix load-store operation checking d3f0bad2c43e iio: accel: msa311: Fix failure to release runtime pm if direct mode claim fails. 2d8c171e6212 iio: accel: mma8452: Ensure error return on failure to matching oversampling ratio 1287c788f33b ucsi_ccg: Don't show failed to get FW build information error d2b1ee18c1d3 perf pmu: Don't double count common sysfs and json events a8b3879b2e3b coresight-etm4x: add isb() before reading the TRCSTATR 2b34bdc42df0 vhost-scsi: Fix handling of multiple calls to vhost_scsi_set_endpoint 01592ce19138 coresight: catu: Fix number of pages while using 64k pages b302c4d3f42a soundwire: slave: fix an OF node reference leak in soundwire slave device 98fa452d0cf2 isofs: fix KMSAN uninit-value bug in do_isofs_readdir() 6258b8ac583b perf stat: Fix find_stat for mixed legacy/non-legacy events a7bae9f76636 clk: qcom: mmcc-sdm660: fix stuck video_subcore0 clock f2176ab4b30f pinctrl: intel: Fix wrong bypass assignment in intel_pinctrl_probe_pwm() 75f095daf623 crypto: hisilicon/sec2 - fix for aead auth key length b6fc1fdd3e71 x86/dumpstack: Fix inaccurate unwinding from exception stacks due to misplaced assignment 966fdfc45373 leds: Fix LED_OFF brightness race d6f517e8d866 mfd: sm501: Switch to BIT() to mitigate integer overflows 7d8e0ac233d7 pinctrl: renesas: rzv2m: Fix missing of_node_put() call 7c51a6964b45 RDMA/mlx5: Fix mlx5_poll_one() cur_qp update flow c4db297e8896 crypto: nx - Fix uninitialised hv_nxc on error a278a4164bde power: supply: max77693: Fix wrong conversion of charge input threshold value 02586692acdb x86/entry: Fix ORC unwinder for PUSH_REGS with save_ret=1 3d39022704e0 clk: amlogic: g12a: fix mmc A peripheral clock c6f63ae9b51b clk: clk-imx8mp-audiomix: fix dsp/ocram_a clock parents 48e5f4fdadd7 selftests/bpf: Select NUMA_NO_NODE to create map 7061afacc89d clk: amlogic: gxbb: drop non existing 32k clock parent b36254e8f865 clk: amlogic: g12b: fix cluster A parent data 4dc225623804 pinctrl: tegra: Set SFIO mode to Mux Register 5fa3bfd3d025 IB/mad: Check available slots before posting receive WRs 1b2641d16167 remoteproc: qcom_q6v5_mss: Handle platforms with one power domain 667a628ab67d RDMA/erdma: Prevent use-after-free in erdma_accept_newconn() 68438629de34 RDMA/mlx5: Fix calculation of total invalidated pages 0cf80f924aec RDMA/core: Don't expose hw_counters outside of init net namespace 02527e62d7ee clk: rockchip: rk3328: fix wrong clk_ref_usb3otg parent 622d52c99a91 pinctrl: renesas: rzg2l: Fix missing of_node_put() call 182ae87e1435 pinctrl: renesas: rza2: Fix missing of_node_put() call 77461377d3be lib: 842: Improve error handling in sw842_compress() 43681d603ff0 bpf: Use preempt_count() directly in bpf_send_signal_common() 8e3e21129cfe remoteproc: qcom_q6v5_pas: Use resource with CX PD for MSM8226 b32da6cf9d4e RDMA/mana_ib: Ensure variable err is initialized db6f0b88d772 clk: qcom: gcc-msm8953: fix stuck venus0_core0 clock 4d29a6dcb51e clk: samsung: Fix UBSAN panic in samsung_clk_init() b07398e8a5da x86/mm/pat: Fix VM_PAT handling when fork() fails in copy_page_range() 22280deb312f selftests/bpf: Fix string read in strncmp benchmark b55c47027511 libbpf: Fix hypothetical STT_SECTION extern NULL deref case 5db897802c39 remoteproc: qcom_q6v5_pas: Make single-PD handling more robust ba1a885c9012 of: property: Increase NR_FWNODE_REFERENCE_ARGS 7c6bb82a6f3d remoteproc: core: Clear table_sz when rproc_shutdown 8594bbffc266 crypto: hisilicon/sec2 - fix for sec spec check 0aafd0ec5101 crypto: hisilicon/sec2 - fix for aead authsize alignment 2ff09de2c8ff clk: amlogic: gxbb: drop incorrect flag on 32k clock ce88afbc0934 fbdev: sm501fb: Add some geometry checks. 6ed70f3dc68f mdacon: rework dependency list 88ebc63d6a67 fbdev: au1100fb: Move a variable assignment behind a null pointer check f6c1a08e9163 PCI: pciehp: Don't enable HPIE when resuming in poll mode cbcb02cc0e2f PCI: histb: Fix an error handling path in histb_pcie_probe() b3a93a2407ad drm/amd/display: avoid NPD when ASIC does not support DMUB 390304035b32 drm/mediatek: dsi: fix error codes in mtk_dsi_host_transfer() 13ec849fd2ea drm/mediatek: dp: drm_err => dev_err in HPD path to avoid NULL ptr 48b5e31bc354 PCI: xilinx-cpm: Fix IRQ domain leak in error path of probe 745783303c41 PCI: Remove stray put_device() in pci_register_host_bridge() d5563f120575 drm/amd/display: fix type mismatch in CalculateDynamicMetadataParameters() 431f51068a0c PCI: Avoid reset when disabled via sysfs 0aad0d291690 PCI/portdrv: Only disable pciehp interrupts early when needed eeeac24b42e6 PCI: brcmstb: Fix potential premature regulator disabling eedd05483493 PCI: brcmstb: Fix error path after a call to regulator_bulk_get() 8b2853fd6ef8 PCI: brcmstb: Use internal register to change link capability 17a37367d032 PCI: cadence-ep: Fix the driver to send MSG TLP for INTx without data payload 0f88894aa628 drm/amdkfd: Fix Circular Locking Dependency in 'svm_range_cpu_invalidate_pagetables' a984e6108c9c drm/msm/dsi: Set PHY usescase (and mode) before registering DSI host 7570e5693092 drm/msm/dsi: Use existing per-interface slice count in DSC timing 45e03341d2b1 drm/msm/dpu: don't use active in atomic_check() 8b930ddc2044 PCI/ASPM: Fix link state exit during switch upstream function removal 9c44e29cfd76 drm/mediatek: mtk_hdmi: Fix typo for aud_sampe_size member 34c1720a3830 drm/mediatek: mtk_hdmi: Unregister audio platform device on failure 347641b02fbe PCI: Use downstream bridges for distributing resources 561fc0c5cf41 drm/vkms: Fix use after free and double free on init error e2b310717382 drm: xlnx: zynqmp: Fix max dma segment size d360c02cdedb drm/bridge: it6505: fix HDCP V match check is not performed correctly c3b8e7c6809a drm/dp_mst: Fix drm RAD print 8830a2a324c4 drm/bridge: ti-sn65dsi86: Fix multiple instances 1b5f3dc474cb ASoC: ti: j721e-evm: Fix clock configuration for ti,j7200-cpb-audio compatible a589f15d4014 ALSA: hda/realtek: Always honor no_shutup_pins f8e2e91bae08 dt-bindings: vendor-prefixes: add GOcontroll ba65e56f717a HID: remove superfluous (and wrong) Makefile entry for CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER 20bbf66ab4e2 ASoC: cs35l41: check the return value from spi_setup() 756945c13fbb platform/x86: dell-ddv: Fix temperature calculation 693b38ee7c2f media: platform: allgro-dvt: unregister v4l2_device on the error path 57e257d9744c media: verisilicon: HEVC: Initialize start_bit field 63a0b0d052b3 x86/fpu/xstate: Fix inconsistencies in guest FPU xfeatures 4c94efdc5140 x86/traps: Make exc_double_fault() consistently noreturn 36aee8100e8b perf/ring_buffer: Allow the EPOLLRDNORM flag for poll 477b6882f18b lockdep: Don't disable interrupts on RT in disable_irq_nosync_lockdep.*() 01c5ab292477 PM: sleep: Fix handling devices with direct_complete set on errors ac2eb7378319 thermal: int340x: Add NULL check for adev 12c5e76acf55 EDAC/ie31200: Fix the error path order of ie31200_init() 9ca0c34ac1f5 EDAC/ie31200: Fix the DIMM size mask for several SoCs a26d5a100ae0 EDAC/ie31200: Fix the size of EDAC_MC_LAYER_CHIP_SELECT layer 06ca76e7e353 selinux: Chain up tool resolving errors in install_policy.sh b9ad6385ca4d RISC-V: KVM: Disable the kernel perf counter during configure 3c64a5bacb6b PM: sleep: Adjust check before setting power.must_resume 913b739cd2bf lockdep/mm: Fix might_fault() lockdep check of current->mm->mmap_lock 71fc439af51a x86/sev: Add missing RIP_REL_REF() invocations during sme_enable() 7c376f91f2e1 x86/platform: Only allow CONFIG_EISA for 32-bit 2541b0d1ced5 x86/fpu: Avoid copying dynamic FP state from init_task in arch_dup_task_struct() b58c6545db04 x86/fpu: Fix guest FPU state buffer allocation size f2d51d45a507 EDAC/{skx_common,i10nm}: Fix some missing error reports on Emerald Rapids 62173b2fc2ed cpufreq: governor: Fix negative 'idle_time' handling in dbs_update() f7a1e1c2d6de smack: dont compile ipv6 code unless ipv6 is configured e4b3585ad908 cpufreq: scpi: compare kHz instead of Hz b8db5776f042 x86/mm/pat: cpa-test: fix length for CPA_ARRAY test 6dafa2776418 watch_queue: fix pipe accounting mismatch 6a5b2ed82152 ARM: dts: am335x-bone-common: Increase MDIO reset deassert time ceb5fadbf450 Revert "v6.6 -stable -rt merge fixup" 1c2962a164ff v6.6 -stable -rt merge fixup 18abb2787b53 x86/syscall: Mark exit[_group] syscall handlers __noreturn 2879d995e569 pnmtologo: sync with 6.6 43ea1c5e6eb3 lib/build_OID_registry: take -stable reproducibility changes 35046aea43c8 bpftool: Fix undefined bpf macro for unix socket 9a558d4b8621 tools/resolve_btfids: Fix comparison of distinct pointer types warning in resolve_btfids 42b2eec2e503 bpftool: Query only cgroup-related attach types f71bb11887ba cpu/amd: inhibit SMP check for qemux86 c31365597a17 powerpc/uaccess: Fix build errors seen with GCC 13/14 64ebf485c56b usb: dwc3: core: remove lock of otg mode during gadget suspend/resume to avoid deadlock 7c76aad68f6d kselftest: Add a ksft_perror() helper 06644f0d7193 drm/tilcdc: Set preferred depth ff7ae7b32324 crypto: jitter - add RCT/APT support for different OSRs 50cd24ddb6f0 arm64: defconfig: remove CONFIG_IPQ_APSS_5018 58e5c91d6701 x86/alternatives: Disable interrupts and sync when optimizing NOPs in place c878fd2d4c79 x86/alternatives: Sync core before enabling interrupts c2d64b9f52b6 qemux86: add configuration symbol to select values 630c33229e6d sched/isolation: really align nohz_full with rcu_nocbs 0e5e0f68e2e6 clear_warn_once: add a clear_warn_once= boot parameter 46934791b902 clear_warn_once: bind a timer to written reset value cdee9e38ff32 clear_warn_once: expand debugfs to include read support 82b562b81841 tools: Remove some options from CLANG_CROSS_FLAGS 36dc380b776b libbpf: Fix build warning on ref_ctr_off 9e3e1fe20982 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel. e497a4a5da65 perf: x86-32: explicitly include <errno.h> 7b57ddd89565 perf: mips64: Convert __u64 to unsigned long long 1cfc19423dc7 perf: fix bench numa compilation 98bc2815fade perf: add SLANG_INC for slang.h 17209a70b9b3 perf: add sgidefs.h to for mips builds 9cd4258d910a perf: change --root to --prefix for python install 8110a4f26628 perf: add 'libperl not found' warning bc89d5e08f77 perf: force include of <stdbool.h> 4f6c760cc876 fat: Replace prandom_u32() with get_random_u32() bc53117b12b2 fat: don't use obsolete random32 call in namei_vfat 30b2236ab378 FAT: Added FAT_NO_83NAME cef98d22b4ed FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option 0bbd7daba9e1 FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option 5883fc340084 aufs6: adapt to v6.6 i_op->ctime changes c4342d979bf2 aufs6: fix magic.mk include path 35266bc2dc81 aufs6: adapt to v6.6 8edede4e98be aufs6: core 712248233ebe aufs6: standalone 3b71a8a848d8 aufs6: mmap 3e2924871f37 aufs6: base 7f4907a93101 aufs6: kbuild d2f7b03e4aa7 yaffs2: update VFS ctime operations to 6.6+ bcd6cfcd1aa0 yaffs2: v6.5 fixups cc615704b5f5 yaffs2: Fix miscalculation of devname buffer length 8ef2e22dcf91 yaffs2: convert user_namespace to mnt_idmap c9c749f9f7d3 yaffs2: replace bdevname call with sprintf 395b01cdc39d yaffs2: convert read_page -> readfolio d98b07e43ba6 yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL 613c6d50fdbe yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name 622c4648936f yaffs2: v5.12+ build fixups (not runtime tested) 7562133d4090 yaffs: include blkdev.h dbd44252cd59 yaffs: fix misplaced variable declaration c223a10b1ac0 yaffs2: v5.6 build fixups 90f6007cfbf4 yaffs2: fix memory leak when /proc/yaffs is read 37ee169c5ea1 yaffs: add strict check when call yaffs_internal_read_super b6e007b8abb6 yaffs: repair yaffs_get_mtd_device fb98f65a466a yaffs: Fix build failure by handling inode i_version with proper atomic API 51e0aac75ea2 yaffs2: fix memory leak in mount/umount 2b74a0cae7b0 yaffs: Avoid setting any ACL releated xattr ff4130a9c376 Yaffs:check oob size before auto selecting Yaffs1 ba95b409c67c fs: yaffs2: replace CURRENT_TIME by other appropriate apis 8fa35eba9056 yaffs2: adjust to proper location of MS_RDONLY 1eb5deaad8c4 yaffs2: import git revision b4ce1bb (jan, 2020) 4dce67c1e8c8 initramfs: allow an optional wrapper script around initramfs generation 2f603d83fcc4 pnmtologo: use relocatable file name 664a6a0a484b tools: use basename to identify file in gen-mach-types 9de64bc0c185 lib/build_OID_registry: fix reproducibility issues ae9b80797295 vt/conmakehash: improve reproducibility a972323151bd iwlwifi: select MAC80211_LEDS conditionally 15d2adcc0198 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119) 5556a6c04b19 arm64/perf: Fix wrong cast that may cause wrong truncation 5552dc768ffc defconfigs: drop obselete options 00fe4152df31 arm64/perf: fix backtrace for AAPCS with FP enabled 3888d0652edf linux-yocto: Handle /bin/awk issues 3d55d299f23a uvesafb: provide option to specify timeout for task completion 23c068c080be uvesafb: print error message when task timeout occurs edbfc939266e compiler.h: Undef before redefining __attribute_const__ c99ae7e2a19a vmware: include jiffies.h 572d84d928c8 Resolve jiffies wrapping about arp fdcd47cac843 nfs: Allow default io size to be configured. 927d48801098 check console device file on fs when booting 57cc27f821dd mount_root: clarify error messages for when no rootfs found 1b53d82a8152 mconf: fix output of cflags and libraries 1811da09f42c menuconfig,mconf-cfg: Allow specification of ncurses location 83c2e0c6eb1f modpost: mask trivial warnings 6de673039484 kbuild: exclude meta directory from distclean processing 6decd32815f5 powerpc: serialize image targets f6b683b38318 arm: serialize build targets e798b09ebf57 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition dc8a1e5a88f8 x86_64_defconfig: Fix warnings 68491e5f72b6 powerpc/ptrace: Disable array-bounds warning with gcc8 d71ebfce3004 powerpc: Disable attribute-alias warnings from gcc8 62f50884b8b1 powerpc: kexec fix for powerpc64 da6871c62c37 powerpc: Add unwind information for SPE registers of E500 core f161c880c11d mips: make current_cpu_data preempt safe 5e94a8247ce7 mips: vdso: fix 'jalr $t9' crash in vdso code 19e36714b1c7 mips: Kconfig: add QEMUMIPS64 option e2e537db3cbd 4kc cache tlb hazard: tlbp cache coherency aee9870611e5 malta uhci quirks: make allowance for slow 4k(e)c 881948cd1517 drm/fb-helper: move zeroing code to drm_fb_helper_fill_var 98ec1963fcb7 arm64: defconfig: cleanup config options f1727c537ba8 vexpress: Pass LOADADDR to Makefile 4474c32dc24a arm: ARM EABI socketcall 75e31a2b70fd ARM: LPAE: Invalidate the TLB for module addresses during translation fault
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Bruce Ashfield [Thu, 29 May 2025 16:57:48 +0000 (12:57 -0400)]
linux-yocto/6.6: fix beaglebone ethernet
Integrating the following commit(s) to linux-yocto/6.6:
1/1 [
Author: Colin Foster
Email: colin.foster@in-advantage.com
Subject: ARM: dts: am335x-bone-common: Increase MDIO reset deassert time
Date: Fri, 31 May 2024 13:38:17 -0500
Prior to commit df16c1c51d81 ("net: phy: mdio_device: Reset device only
when necessary") MDIO reset deasserts were performed twice during boot.
Now that the second deassert is no longer performed, device probe
failures happen due to the change in timing with the following error
message:
SMSC LAN8710/LAN8720: probe of 4a101000.mdio:00 failed with error -5
Restore the original effective timing, which resolves the probe
failures.
Bruce Ashfield [Thu, 29 May 2025 16:57:47 +0000 (12:57 -0400)]
linux-yocto/6.6: update to v6.6.85
Updating linux-yocto/6.6 to the latest korg -stable release that comprises
the following commits:
d57a7c616960 Linux 6.6.85 fa81cb19f5b7 netfilter: nft_counter: Use u64_stats_t for statistic. 35afffaddbe8 wifi: iwlwifi: mvm: ensure offloading TID queue exists fd82d29c4cfb wifi: iwlwifi: support BIOS override for 5G9 in CA also in LARI version 8 7f306c651fea bnxt_en: Fix receive ring space parameters when XDP is active 9dff3e36ea89 btrfs: make sure that WRITTEN is set on all metadata blocks 690597da35d9 Revert "sched/core: Reduce cost of sched_move_task when config autogroup" 04cd1dc3df7f arm64: dts: rockchip: fix u2phy1_host status for NanoPi R4S 7d5669629422 KVM: arm64: Eagerly switch ZCR_EL{1,2} 93074abedecb KVM: arm64: Mark some header functions as inline 2afe039450a0 KVM: arm64: Refactor exit handlers 30253b3eb685 KVM: arm64: Remove VHE host restore of CPACR_EL1.SMEN 88adb7a00754 KVM: arm64: Remove VHE host restore of CPACR_EL1.ZEN 73f64c676a6b KVM: arm64: Remove host FPSIMD saving for non-protected KVM 806d5c1e1d2e KVM: arm64: Unconditionally save+flush host FPSIMD/SVE/SME state 20c6561c4918 KVM: arm64: Calculate cptr_el2 traps on activating traps b44a37824878 mptcp: Fix data stream corruption in the address announcement d0f87370622a ksmbd: fix incorrect validation for num_aces field of smb_acl 5e0f5166e2dc drm/amd/display: Use HW lock mgr for PSR1 when only one eDP 7803ca385941 drm/amd/display: should support dmub hw lock on Replay 28780816ca29 drm/amdgpu: Fix JPEG video caps max size for navi1x and raven e66a1a616fa6 drm/amdgpu: Fix MPEG2, MPEG4 and VC1 video caps max size c76bd3c99293 drm/sched: Fix fence reference count leak 3ce08215cad5 drm/radeon: fix uninitialized size issue in radeon_vce_cs_parse() f2bbfd50e95b soc: qcom: pdr: Fix the potential deadlock 6e38b4a4b382 batman-adv: Ignore own maximum aggregation size during RX b7b4be1fa432 xsk: fix an integer overflow in xp_create_and_assign_umem() 19f4e715f665 efi/libstub: Avoid physical address 0x0 when doing random allocation 0baa10cf97b5 ARM: shmobile: smp: Enforce shmobile_smp_* alignment d6274b9472d5 ARM: dts: imx6qdl-apalis: Fix poweroff on Apalis iMX6 63b53198aff2 proc: fix UAF in proc_get_inode() 29124ae980e2 mm/migrate: fix shmem xarray update during migration 9efb6b502104 mm: fix error handling in __filemap_get_folio() with FGP_NOWAIT f42c361843fa mmc: atmel-mci: Add missing clk_disable_unprepare() 6d2f8c59747a mmc: sdhci-brcmstb: add cqhci suspend/resume to PM ops db59b24b3858 arm64: dts: rockchip: fix pinmux of UART0 for PX30 Ringneck on Haikou 3db71cf02250 arm64: dts: freescale: imx8mm-verdin-dahlia: add Microphone Jack to sound card 62b5b2eca3e5 arm64: dts: freescale: imx8mp-verdin-dahlia: add Microphone Jack to sound card 4b2a170c2586 accel/qaic: Fix integer overflow in qaic_validate_req() 998b1aae22dc regulator: check that dummy regulator has been probed before using it e26f24ca4fb9 regulator: dummy: force synchronous probing f793c0fdaaf1 riscv: dts: starfive: Fix a typo in StarFive JH7110 pin function definitions 7cd375d46afc drm/v3d: Don't run jobs that have errors flagged in its fence c8eebc9d5b9c can: flexcan: disable transceiver during system PM 6f5481d4ed39 can: flexcan: only change CAN state when link up in system PM cc29775a8a72 can: ucan: fix out of bound read in strscpy() source e5e6bd8e0de5 can: rcar_canfd: Fix page entries in the AFL list b202afc54e94 i2c: omap: fix IRQ storms f0372a4cf285 Revert "gre: Fix IPv6 link-local address generation." ae2ec5a51fa0 net/neighbor: add missing policy for NDTPA_QUEUE_LENBYTES e4f6de68deba net: lwtunnel: fix recursion loops 9566f6ee13b1 net: atm: fix use after free in lec_send() a235ec29c945 ipv6: Set errno after ip_fib_metrics_init() in ip6_route_info_create(). 119dcafe3679 ipv6: Fix memleak of nhc_pcpu_rth_output in fib_check_nh_v6_gw(). 1e842b459008 ARM: davinci: da850: fix selecting ARCH_DAVINCI_DA8XX 3d123ec74d81 accel/qaic: Fix possible data corruption in BOs > 2G 59b683594ff3 Bluetooth: hci_event: Fix connection regression between LE and non-LE adapters ecd06ad0823a Bluetooth: Fix error code in chan_alloc_skb_cb() 9524af58447d RDMA/hns: Fix wrong value of max_sge_rd 0edfba91b773 RDMA/hns: Fix a missing rollback in error path of hns_roce_create_qp_common() 5df88c383715 RDMA/hns: Fix unmatched condition in error path of alloc_user_qp_db() 975355faba56 RDMA/hns: Fix soft lockup during bt pages loop dba5577d8e33 RDMA/bnxt_re: Avoid clearing VLAN_ID mask in modify qp path 1e8d0765da64 ARM: dts: bcm2711: Don't mark timer regs unconfigured e68954ecf8b8 ARM: OMAP1: select CONFIG_GENERIC_IRQ_CHIP 0e6aa61b54a8 RDMA/mlx5: Handle errors returned from mlx5r_ib_rate() 6a788e32f64e RDMA/bnxt_re: Add missing paranthesis in map_qp_id_to_tbl_indx 25be7f9bde2d arm64: dts: rockchip: Remove undocumented sdmmc property from lubancat-1 61820187b3ef ARM: dts: bcm2711: PL011 UARTs are actually r1p5 1b7b036685c3 soc: imx8m: Unregister cpufreq and soc dev in cleanup path 4a58a332eedd soc: imx8m: Use devm_* to simplify probe failure handling d1fb2e767e1c soc: imx8m: Remove global soc_uid 8e1704e5b205 xfrm_output: Force software GSO only in tunnel mode bfb9b9404a53 xfrm: fix tunnel mode TX datapath in packet offload mode e432cb123d89 arm64: dts: freescale: tqma8mpql: Fix vqmmc-supply 555f05de6f46 firmware: imx-scu: fix OF node leak in .probe() ceb5fadbf450 Revert "v6.6 -stable -rt merge fixup" 1c2962a164ff v6.6 -stable -rt merge fixup 18abb2787b53 x86/syscall: Mark exit[_group] syscall handlers __noreturn 2879d995e569 pnmtologo: sync with 6.6 43ea1c5e6eb3 lib/build_OID_registry: take -stable reproducibility changes 35046aea43c8 bpftool: Fix undefined bpf macro for unix socket 9a558d4b8621 tools/resolve_btfids: Fix comparison of distinct pointer types warning in resolve_btfids 42b2eec2e503 bpftool: Query only cgroup-related attach types f71bb11887ba cpu/amd: inhibit SMP check for qemux86 c31365597a17 powerpc/uaccess: Fix build errors seen with GCC 13/14 64ebf485c56b usb: dwc3: core: remove lock of otg mode during gadget suspend/resume to avoid deadlock 7c76aad68f6d kselftest: Add a ksft_perror() helper 06644f0d7193 drm/tilcdc: Set preferred depth ff7ae7b32324 crypto: jitter - add RCT/APT support for different OSRs 50cd24ddb6f0 arm64: defconfig: remove CONFIG_IPQ_APSS_5018 58e5c91d6701 x86/alternatives: Disable interrupts and sync when optimizing NOPs in place c878fd2d4c79 x86/alternatives: Sync core before enabling interrupts c2d64b9f52b6 qemux86: add configuration symbol to select values 630c33229e6d sched/isolation: really align nohz_full with rcu_nocbs 0e5e0f68e2e6 clear_warn_once: add a clear_warn_once= boot parameter 46934791b902 clear_warn_once: bind a timer to written reset value cdee9e38ff32 clear_warn_once: expand debugfs to include read support 82b562b81841 tools: Remove some options from CLANG_CROSS_FLAGS 36dc380b776b libbpf: Fix build warning on ref_ctr_off 9e3e1fe20982 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel. e497a4a5da65 perf: x86-32: explicitly include <errno.h> 7b57ddd89565 perf: mips64: Convert __u64 to unsigned long long 1cfc19423dc7 perf: fix bench numa compilation 98bc2815fade perf: add SLANG_INC for slang.h 17209a70b9b3 perf: add sgidefs.h to for mips builds 9cd4258d910a perf: change --root to --prefix for python install 8110a4f26628 perf: add 'libperl not found' warning bc89d5e08f77 perf: force include of <stdbool.h> 4f6c760cc876 fat: Replace prandom_u32() with get_random_u32() bc53117b12b2 fat: don't use obsolete random32 call in namei_vfat 30b2236ab378 FAT: Added FAT_NO_83NAME cef98d22b4ed FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option 0bbd7daba9e1 FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option 5883fc340084 aufs6: adapt to v6.6 i_op->ctime changes c4342d979bf2 aufs6: fix magic.mk include path 35266bc2dc81 aufs6: adapt to v6.6 8edede4e98be aufs6: core 712248233ebe aufs6: standalone 3b71a8a848d8 aufs6: mmap 3e2924871f37 aufs6: base 7f4907a93101 aufs6: kbuild d2f7b03e4aa7 yaffs2: update VFS ctime operations to 6.6+ bcd6cfcd1aa0 yaffs2: v6.5 fixups cc615704b5f5 yaffs2: Fix miscalculation of devname buffer length 8ef2e22dcf91 yaffs2: convert user_namespace to mnt_idmap c9c749f9f7d3 yaffs2: replace bdevname call with sprintf 395b01cdc39d yaffs2: convert read_page -> readfolio d98b07e43ba6 yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL 613c6d50fdbe yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name 622c4648936f yaffs2: v5.12+ build fixups (not runtime tested) 7562133d4090 yaffs: include blkdev.h dbd44252cd59 yaffs: fix misplaced variable declaration c223a10b1ac0 yaffs2: v5.6 build fixups 90f6007cfbf4 yaffs2: fix memory leak when /proc/yaffs is read 37ee169c5ea1 yaffs: add strict check when call yaffs_internal_read_super b6e007b8abb6 yaffs: repair yaffs_get_mtd_device fb98f65a466a yaffs: Fix build failure by handling inode i_version with proper atomic API 51e0aac75ea2 yaffs2: fix memory leak in mount/umount 2b74a0cae7b0 yaffs: Avoid setting any ACL releated xattr ff4130a9c376 Yaffs:check oob size before auto selecting Yaffs1 ba95b409c67c fs: yaffs2: replace CURRENT_TIME by other appropriate apis 8fa35eba9056 yaffs2: adjust to proper location of MS_RDONLY 1eb5deaad8c4 yaffs2: import git revision b4ce1bb (jan, 2020) 4dce67c1e8c8 initramfs: allow an optional wrapper script around initramfs generation 2f603d83fcc4 pnmtologo: use relocatable file name 664a6a0a484b tools: use basename to identify file in gen-mach-types 9de64bc0c185 lib/build_OID_registry: fix reproducibility issues ae9b80797295 vt/conmakehash: improve reproducibility a972323151bd iwlwifi: select MAC80211_LEDS conditionally 15d2adcc0198 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119) 5556a6c04b19 arm64/perf: Fix wrong cast that may cause wrong truncation 5552dc768ffc defconfigs: drop obselete options 00fe4152df31 arm64/perf: fix backtrace for AAPCS with FP enabled 3888d0652edf linux-yocto: Handle /bin/awk issues 3d55d299f23a uvesafb: provide option to specify timeout for task completion 23c068c080be uvesafb: print error message when task timeout occurs edbfc939266e compiler.h: Undef before redefining __attribute_const__ c99ae7e2a19a vmware: include jiffies.h 572d84d928c8 Resolve jiffies wrapping about arp fdcd47cac843 nfs: Allow default io size to be configured. 927d48801098 check console device file on fs when booting 57cc27f821dd mount_root: clarify error messages for when no rootfs found 1b53d82a8152 mconf: fix output of cflags and libraries 1811da09f42c menuconfig,mconf-cfg: Allow specification of ncurses location 83c2e0c6eb1f modpost: mask trivial warnings 6de673039484 kbuild: exclude meta directory from distclean processing 6decd32815f5 powerpc: serialize image targets f6b683b38318 arm: serialize build targets e798b09ebf57 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition dc8a1e5a88f8 x86_64_defconfig: Fix warnings 68491e5f72b6 powerpc/ptrace: Disable array-bounds warning with gcc8 d71ebfce3004 powerpc: Disable attribute-alias warnings from gcc8 62f50884b8b1 powerpc: kexec fix for powerpc64 da6871c62c37 powerpc: Add unwind information for SPE registers of E500 core f161c880c11d mips: make current_cpu_data preempt safe 5e94a8247ce7 mips: vdso: fix 'jalr $t9' crash in vdso code 19e36714b1c7 mips: Kconfig: add QEMUMIPS64 option e2e537db3cbd 4kc cache tlb hazard: tlbp cache coherency aee9870611e5 malta uhci quirks: make allowance for slow 4k(e)c 881948cd1517 drm/fb-helper: move zeroing code to drm_fb_helper_fill_var 98ec1963fcb7 arm64: defconfig: cleanup config options f1727c537ba8 vexpress: Pass LOADADDR to Makefile 4474c32dc24a arm: ARM EABI socketcall 75e31a2b70fd ARM: LPAE: Invalidate the TLB for module addresses during translation fault
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
to ensure the kernel FIT image signing keys are available when creating
the U-Boot DTB. This is done only if the signing of the kernel FIT image
is enabled (UBOOT_SIGN_ENABLE="1").
The lack of the dependency causes build errors when executing a build
with no kernel FIT keys initially present in the keys directory. In such
cases one would see an output like this in the Bitbake logs:
Log data follows:
| DEBUG: Executing shell function do_uboot_assemble_fitimage
| Couldn't open RSA private key: '/workdir/build/keys/fit/dev.key': No such file or directory
| Failed to sign 'signature' signature node in 'conf-1' conf node
| FIT description: Kernel Image image with one or more FDT blobs
| ...
This issue was introduced by commit 259bfa86f384 where the dependency
between U-Boot and the kernel was removed (for good reasons). Before
that commit the dependency was set via DEPENDS so that, in terms of
tasks, one had:
With the removal of the first dependency, no more guarantees exist that
the keys would be present when assembling the U-Boot FIT image. That's
the situation we are solving with the present commit.
Virendra Thakur [Thu, 22 May 2025 14:12:26 +0000 (19:42 +0530)]
util-linux: Add fix to isolate test fstab entries using CUSTOM_FSTAB
During ptest execution, util-linux adds mount entries in /etc/fstab
and runs `mount -a`, which mounts all available entries from
/etc/fstab. This can cause unintended mounts that are unrelated to
the test, leading to incorrect test behavior.
To avoid this, upstream util-linux introduced a mechanism using
CUSTOM_FSTAB,which isolates test-specific fstab entries. Only entries
listed in CUSTOM_FSTAB are mounted during test execution, ensuring
tests do not interfere with or depend on the system's /etc/fstab.
ffmpeg_6.1.2 is the newest available stable release for 6.1.
It introduces quite a few bug and CVE fixes, which should help all.
CVEs that are fixed in the upgrade:
CVE-2024-32230
CVE-2024-35366
CVE-2024-36613
CVE-2024-36616
CVE-2024-36617
CVE-2024-36619
CVE-2024-7055
During upgrade it was noticed that the CVE scan doesn't pick up the CVEs as unpatched
(CVE-2025-0518, CVE-2025-22919, CVE-2025-22921, CVE-2025-25473,
CVE-2024-36618, CVE-2024-35369, CVE-2024-35368, CVE-2024-35367,
CVE-2024-35365, CVE-2024-28661, CVE-2023-50007, CVE-2023-49528,
CVE-2023-49501), due to improper versioning in NVD,
they are affecting 6.1.2 and hence we are leaving the patches in.
check the changelog mention below for information about fixes.
changelog: https://git.ffmpeg.org/gitweb/ffmpeg.git/shortlog/n6.1.2
This upgrade fixes CVE's hence remove those patches.
Refresh vulkan_av1_stable_API.patch as per new codebase.
Signed-off-by: Divyanshu Rathore <divyanshurathore2022@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Divya Chellam [Fri, 23 May 2025 13:25:42 +0000 (18:55 +0530)]
ruby: fix CVE-2025-27221
In the URI gem before 1.0.3 for Ruby, the URI handling methods
(URI.join, URI#merge, URI#+) have an inadvertent leakage of
authentication credentials because userinfo is retained even
after changing the host.
Praveen Kumar [Fri, 16 May 2025 11:44:21 +0000 (17:14 +0530)]
glib-2.0: fix CVE-2025-4373
A flaw was found in GLib, which is vulnerable to an integer overflow
in the g_string_insert_unichar() function. When the position at which
to insert the character is large, the position will overflow, leading
to a buffer underwrite.
Praveen Kumar [Thu, 15 May 2025 06:12:22 +0000 (11:42 +0530)]
connman :fix CVE-2025-32366
In ConnMan through 1.44, parse_rr in dnsproxy.c has a memcpy length
that depends on an RR RDLENGTH value, i.e., *rdlen=ntohs(rr->rdlen)
and memcpy(response+offset,*end,*rdlen) without a check for whether
the sum of *end and *rdlen exceeds max. Consequently, *rdlen may be
larger than the amount of remaining packet data in the current state
of parsing. Values of stack memory locations may be sent over the
network in a response.
This recipe takes longer time >20min when bitbake for package
write stage. When cross-verified for longer time duration, found
that do_check() stage taking 20min while other stages completes
before 6min.
This recipe gives only below two test binaries in the packages to
test (ptest: glibc-y2038-tests):
io/ftwtest
io/ftwtest-time64
The above test binaries are already included for testing in recipe
glibc-testsuite_2.39.bb.
It is by now well established that glibc itself works as it should,
that all affected 32 bit targets are configured to use 64 bit time_t,
and that any lingering y2038 issues are in components other than the c
library, and usually come from C programming mistakes (e.g. storing
timestamps in long). So this recipe seems to be redundant and
can be removed.
Review comments for fixing above longer time duration ended up in
removing this recipe as a proposal is below
https://lists.openembedded.org/g/openembedded-core/topic/112188476#msg214636
Removed lines having reference to glibc-y2038-tests in the files.
For master branch requested for integration and below is the link
https://lists.openembedded.org/g/openembedded-core/message/215655
Signed-off-by: rajmohan r <semc.2042@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Niko Mauno [Mon, 12 May 2025 15:52:28 +0000 (15:52 +0000)]
cve-check.bbclass: Fix symlink handling also for text files
While backporting commit 7543e4e24a8b ("cve-check.bbclass: Mitigate
symlink related error") I failed to address the fact that in Scarthgap
this bbclass still generates also the text CVE file, in addition to the
JSON file.
In order to avoid the error that occurred with JSON files from
occurring now with CVE files:
ERROR: core-image-base-1.0-r0 do_image_complete: Recipe core-image-base is trying to install files into a shared area when those files already exist. The files and the manifests listing them are:
/home/poky/build/tmp/deploy/images/qemux86-64/.cve
(matched in manifest-qemux86_64-core-image-minimal.image_complete)
Please adjust the recipes so only one recipe provides a given file.
update the symlink handling for the text file variant too.
Signed-off-by: Niko Mauno <niko.mauno@vaisala.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Yi Zhao [Wed, 14 May 2025 07:35:30 +0000 (15:35 +0800)]
iputils: Security fix for CVE-2025-47268
CVE-2025-47268
ping in iputils through 20240905 allows a denial of service (application
error or incorrect data collection) via a crafted ICMP Echo Reply
packet, because of a signed 64-bit integer overflow in timestamp
multiplication.
Praveen Kumar [Wed, 7 May 2025 06:51:15 +0000 (06:51 +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.
Jeroen Hofstee [Sun, 4 May 2025 11:15:35 +0000 (13:15 +0200)]
bluez5: make media control a PACKAGECONFIG option
When not building with the default PACKAGECONFIG options, the build can fail
with:
undefined reference to `media_player_controller_create'
undefined reference to `media_player_set_status'
Otherwise. So disable it when not set and enable it by default.
The packageconfig option is the same as in Styhead.
https://github.com/openembedded/openembedded-core/commit/ebbdb7cf5c0a3f0e6773704d4c4cc570358ec611#diff-9d9284f6f27a81c75dffffd6d601b40c8266ae12e678d0a49c46bdb8356a0e91R52
Signed-off-by: Jeroen Hofstee <jhofstee@victronenergy.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
3463100f2d x86: Detect Intel Diamond Rapids e09436c2cb x86: Handle unknown Intel processor with default tuning 7620d98186 x86: Add ARL/PTL/CWF model detection support 765ff3d0d4 x86: Optimize xstate size calculation 65ae73be01 x86: Use `Avoid_Non_Temporal_Memset` to control non-temporal path 2be36448c4 x86: Tunables may incorrectly set Prefer_PMINUB_for_stringop (bug 32047) bde201e92c x86: Disable non-temporal memset on Skylake Server 38a7632f2d x86: Fix value for `x86_memset_non_temporal_threshold` when it is undesirable cc59fa5dbc x86: Enable non-temporal memset tunable for AMD 0da58e8be0 x86: Add seperate non-temporal tunable for memset 837a36c371 x86: Link tst-gnu2-tls2-x86-noxsave{,c,xsavec} with libpthread 87ab0c7f7f x86: Use separate variable for TLSDESC XSAVE/XSAVEC state size (bug 32810) 60cd7123a6 x86: Skip XSAVE state size reset if ISA level requires XSAVE 4cf3f9df54 x86_64: Add atanh with FMA 01ed435e2e x86_64: Add sinh with FMA 0edcc77fe7 x86_64: Add tanh with FMA 7ecf0d3bde x86-64: Exclude FMA4 IFUNC functions for -mapxf e1fe22368e nptl: clear the whole rseq area before registration dd8c0c3bbd math: Improve layout of exp/exp10 data a1b09e59e2 AArch64: Use prefer_sve_ifuncs for SVE memset d0e2133470 AArch64: Add SVE memset 0cc12d9c47 math: Improve layout of expf data 0cd10047bf AArch64: Remove zva_128 from memset dd1e63ab58 AArch64: Optimize memset 65a96a6f2b AArch64: Improve generic strlen 4073e4ee2c AArch64: Improve codegen for SVE logs 78abd3ef6e AArch64: Improve codegen in SVE tans a10183b633 AArch64: Improve codegen of AdvSIMD atan(2)(f) dcd1229e5b AArch64: Improve codegen of AdvSIMD logf function family 72156cb90b AArch64: Improve codegen in AdvSIMD logs 5e354bf4e2 AArch64: Simplify rounding-multiply pattern in several AdvSIMD routines 80df456112 aarch64: Avoid redundant MOVs in AdvSIMD F32 logs d591876303 aarch64: Fix AdvSIMD libmvec routines for big-endian f6d48470ae assert: Add test for CVE-2025-0395
Peter Marko [Sat, 3 May 2025 16:58:02 +0000 (18:58 +0200)]
sqlite3: mark CVE-2025-29087 as patched
Description of CVE-2025-29087 and CVE-2025-3277 are very similar.
There is no lonk from NVD, but [1] and [2] from Debian mark these two
CVEs as duplicates with the same link for patch.
Soumya Sambu [Mon, 5 May 2025 11:47:11 +0000 (11:47 +0000)]
elfutils: Fix CVE-2025-1371
A vulnerability has been found in GNU elfutils 0.192 and classified as problematic.
This vulnerability affects the function handle_dynamic_symtab of the file readelf.c
of the component eu-read. The manipulation leads to null pointer dereference.
Attacking locally is a requirement. The exploit has been disclosed to the public and
may be used. The patch is identified as b38e562a4c907e08171c76b8b2def8464d5a104a. It
is recommended to apply a patch to fix this issue.
It does not seem to fix the issue it was supposed to fix.
Additionally it breaks code which decides in full/partial update,
because it manipulates timestamp that code is relying on.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit ebc65fdddd7ce51f0f1008baa30d0ae7918ae0bb) Signed-off-by: Steve Sakoman <steve@sakoman.com>
Changqing Li [Mon, 28 Apr 2025 05:53:07 +0000 (13:53 +0800)]
buildtools-tarball: Make buildtools respects host CA certificates
To adapt user network enviroment, buildtools should first try to use
the user configured envs like SSL_CERT_FILE/CURL_CA_BUNDLE/..., if these
envs is not set, then use the auto-detected ca file and ca path, and
finally use the CA certificates in buildtools.
nativesdk-openssl set OPENSSLDIR as "/not/builtin", need set SSL_CERT_FILE/SSL_CERT_DIR to work
nativesdk-curl don't set default ca file, need
SSL_CERT_FILE/SSL_CERT_DIR or CURL_CA_BUNDLE/CURL_CA_PATH to work
nativesdk-git actually use libcurl, and GIT_SSL_CAPATH/GIT_SSL_CAINFO
also works
nativesdk-python3-requests will use cacert.pem under python module certifi by
default, need to set REQUESTS_CA_BUNDLE
Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Changqing Li [Mon, 28 Apr 2025 05:53:06 +0000 (13:53 +0800)]
buildtools-tarball: add envvars into BB_ENV_PASSTHROUGH_ADDITIONS
Here is one testcase:
For recipe tensorflow-lite-host-tools_2.18.0.bb, refer [1],
do_configure[network] = "1"
and it will git clone some repos in CMakeLists.txt
When buildtools is used and nativesdk-git is installed into sdk,
do_configure failed with error:
[1/9] Performing download step (git clone) for 'protobuf-populate'
Cloning into 'protobuf'...
fatal: unable to access 'https://github.com/protocolbuffers/protobuf/': error setting certificate file: /usr/local/oe-sdk-hardcoded-buildpath/sysroots/x86_64-wrlinuxsdk-linux/etc/ssl/certs/ca-certificates.crt
Fix by adding GIT_SSL_CAINFO in BB_ENV_PASSTHROUGH_ADDITIONS, so that
user can export GIT_SSL_CAINFO=${GIT_SSL_CAINFO} in their
do_configure:prepend() to fix above do_configure failure
CURL_CA_BUNDLE and REQUESTS_CA_BUNDLE is similar envvars, so all add
into BB_ENV_PASSTHROUGH_ADDITIONS
Changqing Li [Mon, 28 Apr 2025 05:53:05 +0000 (13:53 +0800)]
buildtools-tarball: move setting of envvars to respective envfile
* make git,curl,python3-requests align with openssl, move the setting of
envvars into respective envfile
* for environment.d-openssl.sh, also check if ca-certificates.crt exist
before export envvars
Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Changqing Li [Mon, 28 Apr 2025 05:51:06 +0000 (13:51 +0800)]
initscripts: add function log_success_msg/log_failure_msg/log_warning_msg
* add function log_success_msg/log_failure_msg/log_warning_msg, some
packages still use these functions, like mariadb, refer [1], without
these function, with sysV init manager, mariadb will report error:
root@qemux86-64:~# /etc/init.d/mysqld status
/etc/init.d/mysqld: line 383: log_success_msg: command not found
* remove RCONFLICTS with lsbinitscripts, LSB support already remove in
[2]