diff --git a/config.tar.bz2 b/config.tar.bz2 index ae361e1..ca73f6b 100644 --- a/config.tar.bz2 +++ b/config.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3cb975a7a088fe02a0717d407a40dc89d3ab7c8cddb20c5ea365ae8f231d26d3 -size 96232 +oid sha256:0e6152dbcbf1e37e576842383a5712b5a07b28ae4482d23758b0c2c1ed239687 +size 96234 diff --git a/dtb.spec.in.in b/dtb.spec.in.in index 279536a..c9533d6 100644 --- a/dtb.spec.in.in +++ b/dtb.spec.in.in @@ -84,13 +84,20 @@ for dts in $ALL_SUPPORTED_DTB; do install -m 755 -d %{buildroot}%{dtbdir}/$(dirname $target) # install -m 644 COPYING %{buildroot}%{dtbdir}/$(dirname $target) install -m 644 $target.dtb %{buildroot}%{dtbdir}/$(dirname $target) -%ifarch aarch64 riscv64 +%ifarch %arm aarch64 riscv64 # HACK: work around U-Boot ignoring vendor dir baselink=%{dtbdir}/$(basename $target).dtb - vendordir=$(basename $(dirname $target)) ln -s $target.dtb %{buildroot}$baselink +%ifarch %arm + case $dts in +$SUBPKG_CASE + esac + echo $baselink >> ../$pkgname.list +%else + vendordir=$(basename $(dirname $target)) echo $baselink >> ../dtb-$vendordir.list %endif +%endif done cd - diff --git a/group-source-files.pl b/group-source-files.pl index 3a8aa85..4b0f6a4 100644 --- a/group-source-files.pl +++ b/group-source-files.pl @@ -19,6 +19,12 @@ sub main &output($dev, $ndev, $dev_output, $ndev_output); } +sub rpm_quote_filename +{ + # technically should also quote % -> %% " -> \" \ -> \\ + return map { "\"$_\"" } @_; +} + sub scan { # Normalize file path, mainly to strip away the ending forward slash, @@ -53,8 +59,14 @@ sub scan $is_devel ? push(@dev, $abs_path) : push(@ndev, $abs_path); } - push(@dev, &calc_dirs($abs_loc, \@dev)); - push(@ndev, &calc_dirs($abs_loc, \@ndev)); + my @dev_dirs = calc_dirs($abs_loc, \@dev); + my @ndev_dirs = calc_dirs($abs_loc, \@ndev); + @dev = rpm_quote_filename(@dev); + @ndev = rpm_quote_filename(@ndev); + @dev_dirs = map { "\%dir $_" } rpm_quote_filename(@dev_dirs); + @ndev_dirs = map { "\%dir $_" } rpm_quote_filename(@ndev_dirs); + push(@dev, @dev_dirs); + push(@ndev, @ndev_dirs); return (\@dev, \@ndev); } @@ -75,7 +87,7 @@ sub calc_dirs # This loop also makes sure that $base itself is included. } - return map { "\%dir $_" } keys %dirs; + return keys %dirs; } sub output diff --git a/kabi.tar.bz2 b/kabi.tar.bz2 index ecf3927..1ea62ff 100644 --- a/kabi.tar.bz2 +++ b/kabi.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c07f8cb0137ba18b6990857c7074633c49886b58d11a04f6f835f89534c57b26 -size 6904667 +oid sha256:253d316b58de24ea0dd3eeea97bec397c1e9da2a56086f3464a6cf559c58017e +size 6903956 diff --git a/kernel-rt.changes b/kernel-rt.changes index d10c08b..178050c 100644 --- a/kernel-rt.changes +++ b/kernel-rt.changes @@ -1,3 +1,1834 @@ +------------------------------------------------------------------- +Fri Mar 22 17:14:57 CET 2024 - mgorman@suse.de + +- printk: nbcon: move locked_port flag to struct uart_port + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- Refresh patches.suse/printk-Update-the-printk-series.patch. +- commit 1025e3e + +------------------------------------------------------------------- +Thu Mar 21 12:03:15 CET 2024 - mgorman@suse.de + +- Update printk to v6.6.20-rt25 +- kernel/panic: Add atomic write enforcement to warn/panic (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- panic: hide unused global functions (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Add non-BKL console basic infrastructure (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Add threaded printing support for BKL consoles (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Consolidate console deferred printing (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Do not take console lock for console_flush_on_panic() (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Perform atomic flush in console_flush_on_panic() (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Rename abandon_console_lock_in_panic() to other_cpu_in_panic() (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Update the printk series (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add acquire/release logic (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add buffer management (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add emit function and callback functions for atomic printing (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add print state functions (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add printer thread wakeups (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add sequence handling (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add write context storage for atomic writes (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Introduce printer threads (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Provide functions for atomic write enforcement (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Stop threads on shutdown/reboot (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: only disable if actually unregistered (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: replace local_irq_save with local_lock for safe mode (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- proc: consoles: Add support for non-BKL consoles (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- rcu: Add atomic write enforcement for rcu stalls (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: 8250: implement non-BKL console +- serial: Make uart_remove_one_port() return void (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: Switch i2c drivers back to use .probe() (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: core: Don't drop port_mutex in serial_core_remove_one_port (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: core: Fix error handling for serial_core_ctrl_device_add() (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: core: Fix probing serial_base_bus devices (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: core: Start managing serial controllers to enable runtime PM (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: pl011: set UART011_CR_RXE in pl011_set_termios after port shutdown (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- tty: serial: fsl_lpuart: Check the return value of dmaengine_tx_status (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- tty: serial: fsl_lpuart: optimize the timer based EOP logic (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- tty: tty_io: Show non-BKL consoles as active (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- Refresh + patches.suse/printk-Add-per-console-suspended-state.patch. + patches.suse/printk-Keep-non-panic-CPUs-out-of-console-lock.patch. + patches.suse/printk-Reduce-console_unblank-usage-in-unsafe-scenarios.patch. +- Delete + patches.suse/printk-Add-NMI-check-to-console_flush_on_panic-and-console_unblank.patch. +- commit cd25188 + +------------------------------------------------------------------- +Thu Mar 21 11:26:07 CET 2024 - mgorman@suse.de + +- Revert v6.5-rt printk +- commit 36c3e65 + +------------------------------------------------------------------- +Wed Mar 20 17:04:34 CET 2024 - mgorman@suse.de + +- series.conf: Move v6.5-rc7-rt4 printk series to prepare for revert and refresh +- Update + patches.suse/kernel-panic-Add-atomic-write-enforcement-to-warn-panic.patch. + patches.suse/printk-Add-NMI-check-to-console_flush_on_panic-and-console_unblank.patch. + patches.suse/printk-Add-non-BKL-console-basic-infrastructure.patch. + patches.suse/printk-Add-per-console-suspended-state.patch. + patches.suse/printk-Add-threaded-printing-support-for-BKL-consoles.patch. + patches.suse/printk-Check-only-for-migration-in-printk_deferred_.patch. + patches.suse/printk-Consolidate-console-deferred-printing.patch. + patches.suse/printk-Keep-non-panic-CPUs-out-of-console-lock.patch. + patches.suse/printk-Monolithic-bring-printk-up-to-date-with-v6.6-rt25.patch. + patches.suse/printk-Perform-atomic-flush-in-console_flush_on_panic.patch. + patches.suse/printk-Reduce-console_unblank-usage-in-unsafe-scenarios.patch. + patches.suse/printk-nobkl-Add-acquire-release-logic.patch. + patches.suse/printk-nobkl-Add-buffer-management.patch. + patches.suse/printk-nobkl-Add-print-state-functions.patch. + patches.suse/printk-nobkl-Add-printer-thread-wakeups.patch. + patches.suse/printk-nobkl-Add-sequence-handling.patch. + patches.suse/printk-nobkl-Add-write-context-storage-for-atomic-writes.patch. + patches.suse/printk-nobkl-Introduce-printer-threads.patch. + patches.suse/printk-nobkl-Provide-functions-for-atomic-write-enforcement.patch. + patches.suse/printk-nobkl-Stop-threads-on-shutdown-reboot.patch. + patches.suse/printk-only-disable-if-actually-unregistered.patch. + patches.suse/printk-replace-local_irq_save-with-local_lock-for-safe-mode.patch. + patches.suse/proc-consoles-Add-support-for-non-BKL-consoles.patch. + patches.suse/rcu-Add-atomic-write-enforcement-for-rcu-stalls.patch. + patches.suse/serial-8250-implement-non-BKL-console.patch. + patches.suse/serial-8250-lock-port-for-omap8250_restore_regs.patch. + patches.suse/serial-8250-lock-port-for-rx_dma-callback.patch. + patches.suse/serial-8250-omap-convert-to-modern-PM-ops.patch. + patches.suse/serial-8250_mtk-Simplify-clock-sequencing-and-runtime-PM.patch. + patches.suse/serial-arc_uart-simplify-flags-handling-in-arc_serial_rx_chars.patch. + patches.suse/serial-drivers-switch-ch-and-flag-to-u8.patch. + patches.suse/serial-exar-Add-RS-485-support-for-Sealevel-XR17V35X-based-cards.patch. + patches.suse/serial-omap-serial-remove-flag-from-serial_omap_rdi.patch. + patches.suse/tty-Explicitly-include-correct-DT-includes.patch. + patches.suse/tty-tty_io-Show-non-BKL-consoles-as-active.patch. +- commit a8be181 + +------------------------------------------------------------------- +Wed Mar 20 16:33:52 CET 2024 - mgorman@suse.de + +- series.conf: Move v6.5-rc7-rt4 printk series to prepare for revert and refresh +- commit 1c36877 + +------------------------------------------------------------------- +Wed Mar 20 14:31:18 CET 2024 - mgorman@suse.de + +- Break out patches from RT monolithic printk update +- serial: 8250: lock port for omap8250_restore_regs() (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- serial: 8250: lock port for rx_dma() callback (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- serial: 8250: omap: convert to modern PM ops (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- serial: 8250_mtk: Simplify clock sequencing and runtime PM + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: arc_uart: simplify flags handling in + arc_serial_rx_chars() (bsc#1214683 (PREEMPT_RT prerequisite + backports)). +- serial: drivers: switch ch and flag to u8 (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- serial: exar: Add RS-485 support for Sealevel XR17V35X based + cards (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: omap-serial: remove flag from serial_omap_rdi() + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- tty: Explicitly include correct DT includes (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- printk: Keep non-panic-CPUs out of console lock (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- printk: Reduce console_unblank() usage in unsafe scenarios + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- Refresh + patches.suse/printk-Monolithic-bring-printk-up-to-date-with-v6.6-rt25.patch. +- commit dde15d2 + +------------------------------------------------------------------- +Mon Mar 18 17:18:14 CET 2024 - jack@suse.cz + +- fs: don't assume arguments are non-NULL (bsc#1221044 + CVE-2023-52591). +- commit ec8f09d + +------------------------------------------------------------------- +Mon Mar 18 17:17:56 CET 2024 - jack@suse.cz + +- fs: Restrict lock_two_nondirectories() to non-directory inodes + (bsc#1221044 CVE-2023-52591). +- commit b103012 + +------------------------------------------------------------------- +Mon Mar 18 17:00:17 CET 2024 - jack@suse.cz + +- fs: ocfs2: check status values (bsc#1221044 CVE-2023-52591). +- commit a281985 + +------------------------------------------------------------------- +Mon Mar 18 16:55:27 CET 2024 - jack@suse.cz + +- rename(): avoid a deadlock in the case of parents having no + common ancestor (bsc#1221044 CVE-2023-52591). +- commit ea7137b + +------------------------------------------------------------------- +Mon Mar 18 16:55:13 CET 2024 - jack@suse.cz + +- kill lock_two_inodes() (bsc#1221044 CVE-2023-52591). +- commit 005222f + +------------------------------------------------------------------- +Mon Mar 18 16:54:57 CET 2024 - jack@suse.cz + +- rename(): fix the locking of subdirectories (bsc#1221044 + CVE-2023-52591). +- commit a6484cb + +------------------------------------------------------------------- +Mon Mar 18 16:54:43 CET 2024 - jack@suse.cz + +- f2fs: Avoid reading renamed directory if parent does not change + (bsc#1221044 CVE-2023-52591). +- commit 3fb2dd8 + +------------------------------------------------------------------- +Mon Mar 18 16:54:28 CET 2024 - jack@suse.cz + +- ext4: don't access the source subdirectory content on + same-directory rename (bsc#1221044 CVE-2023-52591). +- commit ba7d1aa + +------------------------------------------------------------------- +Mon Mar 18 16:54:13 CET 2024 - jack@suse.cz + +- ext2: Avoid reading renamed directory if parent does not change + (bsc#1221044 CVE-2023-52591). +- commit 65af3c2 + +------------------------------------------------------------------- +Mon Mar 18 16:53:55 CET 2024 - jack@suse.cz + +- udf_rename(): only access the child content on cross-directory + rename (bsc#1221044 CVE-2023-52591). +- commit a29fcb6 + +------------------------------------------------------------------- +Mon Mar 18 16:53:12 CET 2024 - jack@suse.cz + +- ocfs2: Avoid touching renamed directory if parent does not + change (bsc#1221044 CVE-2023-52591). +- Update references in + patches.suse/reiserfs-Avoid-touching-renamed-directory-if-parent-.patch + (git-fixes bsc#1221044 CVE-2023-52591). +- commit 0477c34 + +------------------------------------------------------------------- +Mon Mar 18 15:19:09 CET 2024 - tiwai@suse.de + +- Update kabi files: adapting kABI changes for ppc64le, too +- commit bf73791 + +------------------------------------------------------------------- +Mon Mar 18 15:18:37 CET 2024 - mfranc@suse.cz + +- dcssblk: handle alloc_dax() -EOPNOTSUPP failure (git-fixes + bsc#1221626). +- commit eaf806c + +------------------------------------------------------------------- +Mon Mar 18 15:16:59 CET 2024 - mfranc@suse.cz + +- s390/cache: prevent rebuild of shared_cpu_list (git-fixes + bsc#1221625). +- commit d9bc980 + +------------------------------------------------------------------- +Mon Mar 18 15:06:27 CET 2024 - mfranc@suse.cz + +- s390/pai: fix attr_event_free upper limit for pai device drivers + (git-fixes bsc#1221623). +- commit eac0e1f + +------------------------------------------------------------------- +Mon Mar 18 14:50:34 CET 2024 - mfranc@suse.cz + +- KVM: s390: only deliver the set service event bits (git-fixes + bsc#1221620). +- commit 55838c8 + +------------------------------------------------------------------- +Mon Mar 18 14:48:10 CET 2024 - colyli@suse.de + +- dm: treat alloc_dax() -EOPNOTSUPP failure as non-fatal + (git-fixes). +- dm: call the resume method on internal suspend (git-fixes). +- dm raid: fix false positive for requeue needed during reshape + (git-fixes). +- dm ioctl: update DM_DRIVER_EMAIL to new dm-devel mailing list + (git-fixes). +- dm-raid: fix lockdep waring in "pers->hot_add_disk" + (jsc#PED-7542). +- md/raid5: fix atomicity violation in raid5_cache_count + (bsc#1219169, CVE-2024-23307). +- dm: dm-zoned: guard blkdev_zone_mgmt with noio scope + (jsc#PED-7542). +- dm-integrity, dm-verity: reduce stack usage for recheck + (jsc#PED-7542). +- dm-crypt, dm-integrity, dm-verity: bump target version + (jsc#PED-7542). +- dm-verity, dm-crypt: align "struct bvec_iter" correctly + (jsc#PED-7542). +- dm-crypt: recheck the integrity tag after a failure (git-fixes). +- dm-crypt: don't modify the data when using authenticated + encryption (git-fixes). +- dm-verity: recheck the hash after a failure (git-fixes). +- dm-integrity: recheck the integrity tag after a failure + (git-fixes). +- md: Fix missing release of 'active_io' for flush (jsc#PED-7542). +- dm-crypt, dm-verity: disable tasklets (git-fixes). +- dm writecache: allow allocations larger than 2GiB + (jsc#PED-7542). +- dm stats: limit the number of entries (jsc#PED-7542). +- md/raid1: Use blk_opf_t for read and write operations + (git-fixes). +- md: Fix md_seq_ops() regressions (git-fixes). +- md: Whenassemble the array, consult the superblock of the + freshest device (git-fixes). +- md/raid1: remove unnecessary null checking (jsc#PED-7542). +- md: synchronize flush io with array reconfiguration (git-fixes). +- commit 7042e1b + +------------------------------------------------------------------- +Mon Mar 18 14:47:14 CET 2024 - colyli@suse.de + +- md/raid5: remove rcu protection to access rdev from conf + (jsc#PED-7542). +- md/raid1: remove rcu protection to access rdev from conf + (jsc#PED-7542). +- md/raid10: remove rcu protection to access rdev from conf + (jsc#PED-7542). +- md: remove flag RemoveSynchronized (jsc#PED-7542). +- dm audit: fix Kconfig so DM_AUDIT depends on BLK_DEV_DM + (git-fixes). +- dm-integrity: don't modify bio's immutable bio_vec in + integrity_metadata() (git-fixes). +- commit 1587009 + +------------------------------------------------------------------- +Mon Mar 18 14:40:15 CET 2024 - colyli@suse.de + +- raid1: fix use-after-free for original bio in + raid1_write_request() (bsc#1221097). +- commit 296098e + +------------------------------------------------------------------- +Mon Mar 18 14:20:52 CET 2024 - mfranc@suse.cz + +- Update + patches.suse/s390-ptrace-handle-setting-of-fpc-register-correctly.patch + (git-fixes bsc#1219812 CVE-2023-52598 bsc#1221060). +- commit 0d496e7 + +------------------------------------------------------------------- +Mon Mar 18 14:18:36 CET 2024 - mfranc@suse.cz + +- Update + patches.suse/s390-vfio-ap-always-filter-entire-AP-matrix.patch + (git-fixes bsc#1218988 CVE-2024-26620 bsc#1221298). +- commit b046ad1 + +------------------------------------------------------------------- +Mon Mar 18 12:35:48 CET 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add testcases for tailcall infinite loop fixing + (git-fixes). +- bpf, x64: Fix tailcall infinite loop (git-fixes). +- selftests/bpf: Correct map_fd to data_fd in tailcalls + (git-fixes). +- commit 1302854 + +------------------------------------------------------------------- +Mon Mar 18 11:00:57 CET 2024 - spradhan@suse.de + +- btrfs: preallocate temporary extent buffer for inode logging when needed (bsc#1217362). +- commit c7ccbf0 + +------------------------------------------------------------------- +Mon Mar 18 09:42:34 CET 2024 - tiwai@suse.de + +- i3c: dw: Disable IBI IRQ depends on hot-join and SIR enabling + (git-fixes). +- watchdog: stm32_iwdg: initialize default timeout (git-fixes). +- watchdog: starfive: Check pm_runtime_enabled() before + decrementing usage counter (git-fixes). +- commit 357d510 + +------------------------------------------------------------------- +Sat Mar 16 15:52:28 CET 2024 - tiwai@suse.de + +- of: make for_each_property_of_node() available to to !OF + (git-fixes). +- mtd: rawnand: Constrain even more when continuous reads are + enabled (git-fixes). +- mtd: rawnand: Fix and simplify again the continuous read + derivations (git-fixes). +- mtd: rawnand: lpc32xx_mlc: fix irq handler prototype + (git-fixes). +- mtd: rawnand: meson: fix scrambling mode value in command macro + (git-fixes). +- mtd: maps: physmap-core: fix flash size larger than 32-bit + (git-fixes). +- media: usbtv: Remove useless locks in usbtv_video_free() + (git-fixes). +- media: ttpci: fix two memleaks in budget_av_attach (git-fixes). +- media: go7007: fix a memleak in go7007_load_encoder (git-fixes). +- media: dvb-frontends: avoid stack overflow warnings with clang + (git-fixes). +- media: pvrusb2: fix uaf in pvr2_context_set_notify (git-fixes). +- media: i2c: imx290: Fix IMX920 typo (git-fixes). +- media: pvrusb2: fix pvr2_stream_callback casts (git-fixes). +- media: pvrusb2: remove redundant NULL check (git-fixes). +- media: go7007: add check of return value of go7007_read_addr() + (git-fixes). +- media: imx: csc/scaler: fix v4l2_ctrl_handler memory leak + (git-fixes). +- media: sun8i-di: Fix chroma difference threshold (git-fixes). +- media: sun8i-di: Fix power on/off sequences (git-fixes). +- media: sun8i-di: Fix coefficient writes (git-fixes). +- media: cedrus: h265: Fix configuring bitstream size (git-fixes). +- media: edia: dvbdev: fix a use-after-free (git-fixes). +- media: nxp: imx8-isi: Check whether crossbar pad is non-NULL + before access (git-fixes). +- media: mc: Add local pad to pipeline regardless of the link + state (git-fixes). +- net: lan78xx: fix runtime PM count underflow on link stop + (git-fixes). +- commit 9b93c7d + +------------------------------------------------------------------- +Sat Mar 16 15:44:22 CET 2024 - tiwai@suse.de + +- clk: renesas: r8a779g0: Correct PFC/GPIO parent clocks + (git-fixes). +- commit 0b0c529 + +------------------------------------------------------------------- +Sat Mar 16 15:39:58 CET 2024 - tiwai@suse.de + +- crypto: jitter - fix CRYPTO_JITTERENTROPY help text (git-fixes). +- crypto: qat - remove double initialization of value (git-fixes). +- crypto: qat - avoid division by zero (git-fixes). +- crypto: qat - removed unused macro in adf_cnv_dbgfs.c + (git-fixes). +- crypto: qat - remove unused macros in qat_comp_alg.c + (git-fixes). +- crypto: ccp - Avoid discarding errors in + psp_send_platform_access_msg() (git-fixes). +- crypto: arm/sha - fix function cast warnings (git-fixes). +- crypto: qat - resolve race condition during AER recovery + (git-fixes). +- crypto: qat - change SLAs cleanup flow at shutdown (git-fixes). +- crypto: xilinx - call finalize with bh disabled (git-fixes). +- clk: imx: imx8mp: Fix SAI_MCLK_SEL definition (git-fixes). +- clk: samsung: exynos850: Propagate SPI IPCLK rate change + (git-fixes). +- clk: Fix clk_core_get NULL dereference (git-fixes). +- clk: qcom: mmcc-msm8974: fix terminating of frequency table + arrays (git-fixes). +- clk: qcom: mmcc-apq8084: fix terminating of frequency table + arrays (git-fixes). +- clk: qcom: gcc-ipq9574: fix terminating of frequency table + arrays (git-fixes). +- clk: qcom: gcc-ipq8074: fix terminating of frequency table + arrays (git-fixes). +- clk: qcom: gcc-ipq6018: fix terminating of frequency table + arrays (git-fixes). +- clk: qcom: dispcc-sdm845: Adjust internal GDSC wait times + (git-fixes). +- clk: qcom: gcc-sdm845: Add soft dependency on rpmhpd + (git-fixes). +- clk: meson: Add missing clocks to axg_clk_regmaps (git-fixes). +- clk: keystone: sci-clk: Adding support for non contiguous clocks + (git-fixes). +- clk: mediatek: mt7981-topckgen: flag SGM_REG_SEL as critical + (git-fixes). +- clk: mediatek: mt8183: Correct parent of CLK_INFRA_SSPM_32K_SELF + (git-fixes). +- clk: mediatek: mt8135: Fix an error handling path in + clk_mt8135_apmixed_probe() (git-fixes). +- clk: hisilicon: hi3559a: Fix an erroneous devm_kfree() + (git-fixes). +- clk: hisilicon: hi3519: Release the correct number of gates + in hi3519_clk_unregister() (git-fixes). +- clk: zynq: Prevent null pointer dereference caused by kmalloc + failure (git-fixes). +- clk: renesas: r8a779f0: Correct PFC/GPIO parent clock + (git-fixes). +- media: v4l2-mem2mem: fix a memleak in v4l2_m2m_register_entity + (git-fixes). +- media: v4l2-tpg: fix some memleaks in tpg_alloc (git-fixes). +- media: em28xx: annotate unchecked call to + media_device_register() (git-fixes). +- media: videobuf2: Fix doc comment (git-fixes). +- media: xc4000: Fix atomicity violation in xc4000_get_frequency + (git-fixes). +- media: staging: ipu3-imgu: Set fields before + media_entity_pads_init() (git-fixes). +- commit df2e5ae + +------------------------------------------------------------------- +Fri Mar 15 18:14:47 CET 2024 - ailiop@suse.com + +- xfs: shrink failure needs to hold AGI buffer (git-fixes). +- commit e670f77 + +------------------------------------------------------------------- +Fri Mar 15 18:11:09 CET 2024 - ailiop@suse.com + +- xfs: fix imprecise logic in xchk_btree_check_block_owner + (git-fixes). +- commit 24972c0 + +------------------------------------------------------------------- +Fri Mar 15 18:09:50 CET 2024 - ailiop@suse.com + +- xfs: fix SEEK_HOLE/DATA for regions with active COW extents + (git-fixes). +- commit 4197ae0 + +------------------------------------------------------------------- +Fri Mar 15 18:07:59 CET 2024 - ailiop@suse.com + +- xfs: ensure submit buffers on LSN boundaries in error handlers + (git-fixes). +- commit c23fb7a + +------------------------------------------------------------------- +Fri Mar 15 18:05:51 CET 2024 - mgorman@suse.de + +- printk: Monolithic bring printk up to date with v6.6-rt25 + (SLE Realtime Extension). +- serial: 8250_bcm7271: improve bcm7271 8250 port (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- 8250_men_mcb: fix error handling in + read_uarts_available_from_reg() (bsc#1214683 (PREEMPT_RT + prerequisite backports)). +- tty: serial: 8250: Define earlycon for mrvl,mmp-uart + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- 8250_men_mcb: Make UART config auto configurable (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- 8250_men_mcb: Read num ports from register data (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- 8250_men_mcb: Add clockrate speed for G215/F215 boards + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: 8250_rt288x: Remove unnecessary UART_REG_UNMAPPED + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: 8250_rt288x: Name non-standard divisor latch reg + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: 8250: Allow using ports higher than + SERIAL_8250_RUNTIME_UARTS (bsc#1214683 (PREEMPT_RT prerequisite + backports)). +- cpuidle: Use local_clock_noinstr() (bsc#1214683 (PREEMPT_RT + prerequisite backports)). +- sched/clock: Provide local_clock_noinstr() (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- x86/tsc: Provide sched_clock_noinstr() (bsc#1214683 (PREEMPT_RT + prerequisite backports)). +- math64: Always inline u128 version of mul_u64_u64_shr() + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- s390/time: Provide sched_clock_noinstr() (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- arm64/arch_timer: Provide noinstr sched_clock_read() functions + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- arm64/io: Always inline all of __raw_{read,write}[bwlq]() + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- time/sched_clock: Provide sched_clock_noinstr() (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- seqlock/latch: Provide raw_read_seqcount_latch_retry() + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- commit e346663 + +------------------------------------------------------------------- +Fri Mar 15 18:04:47 CET 2024 - ailiop@suse.com + +- afs: Fix endless loop in directory parsing (git-fixes). +- commit d1332b9 + +------------------------------------------------------------------- +Fri Mar 15 18:04:10 CET 2024 - ailiop@suse.com + +- afs: Increase buffer size in afs_update_volume_status() + (git-fixes). +- commit a954f43 + +------------------------------------------------------------------- +Fri Mar 15 17:57:32 CET 2024 - ailiop@suse.com + +- nilfs2: fix hang in nilfs_lookup_dirty_data_buffers() + (git-fixes). +- commit 6c3b10c + +------------------------------------------------------------------- +Fri Mar 15 17:54:24 CET 2024 - ailiop@suse.com + +- nilfs2: convert nilfs_page_mkwrite() to use a folio (git-fixes). +- commit 29291de + +------------------------------------------------------------------- +Fri Mar 15 17:51:31 CET 2024 - ailiop@suse.com + +- erofs: fix handling kern_mount() failure (git-fixes). +- commit ea16f48 + +------------------------------------------------------------------- +Fri Mar 15 17:49:51 CET 2024 - ailiop@suse.com + +- erofs: Don't use certain unnecessary folio_*() functions + (git-fixes). +- commit 021c910 + +------------------------------------------------------------------- +Fri Mar 15 17:47:43 CET 2024 - ailiop@suse.com + +- erofs: fix refcount on the metabuf used for inode lookup + (git-fixes). +- commit 0bf0150 + +------------------------------------------------------------------- +Fri Mar 15 17:46:24 CET 2024 - ailiop@suse.com + +- erofs: clean up zmap.c (git-fixes). +- commit 3625a10 + +------------------------------------------------------------------- +Fri Mar 15 17:44:06 CET 2024 - ailiop@suse.com + +- erofs: fix up compacted indexes for block size < 4096 + (git-fixes). +- commit 458bf09 + +------------------------------------------------------------------- +Fri Mar 15 17:43:22 CET 2024 - ailiop@suse.com + +- erofs: fix memory leak on short-lived bounced pages (git-fixes). +- commit 5efbfc4 + +------------------------------------------------------------------- +Fri Mar 15 17:42:35 CET 2024 - vkarasulli@suse.de + +- iommu/amd: Fix failure return from snp_lookup_rmpentry() + (git-fixes). +- commit 536001e + +------------------------------------------------------------------- +Fri Mar 15 17:42:14 CET 2024 - ailiop@suse.com + +- erofs: allow empty device tags in flatdev mode (git-fixes). +- commit c8ff154 + +------------------------------------------------------------------- +Fri Mar 15 17:20:57 CET 2024 - vkarasulli@suse.de + +- iommu/vt-d: Don't issue ATS Invalidation request when device + is disconnected (git-fixes). +- commit 5d166d5 + +------------------------------------------------------------------- +Fri Mar 15 17:05:49 CET 2024 - mkoutny@suse.com + +- net/sched: Add module alias for sch_fq_pie (bsc#1210335). +- commit 211b413 + +------------------------------------------------------------------- +Fri Mar 15 16:39:35 CET 2024 - mkoutny@suse.com + +- net/sched: Remove alias of sch_clsact (bsc#1210335). +- net/sched: Load modules via their alias (bsc#1210335). +- net/sched: Add module aliases for cls_,sch_,act_ modules + (bsc#1210335). +- net/sched: Add helper macros with module names (bsc#1210335). +- commit 2046cfc + +------------------------------------------------------------------- +Fri Mar 15 14:16:53 CET 2024 - denis.kirjanov@suse.com + +- Refresh + patches.suse/perf-pmu-events-powerpc-Update-json-mapfile-with-Power11-PVR.patch. +- commit 42a5ace + +------------------------------------------------------------------- +Fri Mar 15 14:14:19 CET 2024 - denis.kirjanov@suse.com + +- ionic: restore netdev feature bits after reset (git-fixes). +- commit 898af71 + +------------------------------------------------------------------- +Fri Mar 15 14:12:42 CET 2024 - denis.kirjanov@suse.com + +- ionic: check cmd_regs before copying in or out (git-fixes). +- commit f1dc989 + +------------------------------------------------------------------- +Fri Mar 15 14:11:19 CET 2024 - denis.kirjanov@suse.com + +- ionic: check before releasing pci regions (git-fixes). +- commit 2a1c23c + +------------------------------------------------------------------- +Fri Mar 15 14:09:42 CET 2024 - denis.kirjanov@suse.com + +- net: veth: clear GRO when clearing XDP even when down (git-fixes). +- commit 553eb02 + +------------------------------------------------------------------- +Fri Mar 15 14:08:16 CET 2024 - denis.kirjanov@suse.com + +- tun: Fix xdp_rxq_info's queue_index when detaching (git-fixes). +- commit b7d1001 + +------------------------------------------------------------------- +Fri Mar 15 14:06:31 CET 2024 - denis.kirjanov@suse.com + +- net: dpaa: fman_memac: accept phy-interface-type = "10gbase-r" in the device tree (git-fixes). +- commit 675b36c + +------------------------------------------------------------------- +Fri Mar 15 12:55:55 CET 2024 - denis.kirjanov@suse.com + +- ice: Fix ASSERT_RTNL() warning during certain scenarios (git-fixes). +- commit 8b9399e + +------------------------------------------------------------------- +Fri Mar 15 12:54:26 CET 2024 - denis.kirjanov@suse.com + +- ice: fix pin phase adjust updates on PF reset (git-fixes). +- commit ef21fc4 + +------------------------------------------------------------------- +Fri Mar 15 12:53:03 CET 2024 - denis.kirjanov@suse.com + +- ice: fix dpll periodic work data updates on PF reset (git-fixes). +- commit dc97d19 + +------------------------------------------------------------------- +Fri Mar 15 12:51:37 CET 2024 - denis.kirjanov@suse.com + +- ice: fix dpll and dpll_pin data access on PF reset (git-fixes). +- commit f610e32 + +------------------------------------------------------------------- +Fri Mar 15 12:50:05 CET 2024 - denis.kirjanov@suse.com + +- ice: fix dpll input pin phase_adjust value updates (git-fixes). +- commit cfb9c02 + +------------------------------------------------------------------- +Fri Mar 15 12:48:40 CET 2024 - denis.kirjanov@suse.com + +- ice: fix connection state of DPLL and out pin (git-fixes). +- commit 7176021 + +------------------------------------------------------------------- +Fri Mar 15 12:47:05 CET 2024 - denis.kirjanov@suse.com + +- net: sparx5: Add spinlock for frame transmission from CPU (git-fixes). +- commit 2486a16 + +------------------------------------------------------------------- +Fri Mar 15 12:45:34 CET 2024 - denis.kirjanov@suse.com + +- gtp: fix use-after-free and null-ptr-deref in gtp_genl_dump_pdp() (git-fixes). +- commit 86d216d + +------------------------------------------------------------------- +Fri Mar 15 12:43:57 CET 2024 - denis.kirjanov@suse.com + +- net: ipa: don't overrun IPA suspend interrupt registers (git-fixes). +- commit 7f00d73 + +------------------------------------------------------------------- +Fri Mar 15 12:38:58 CET 2024 - denis.kirjanov@suse.com + +- ethernet: cpts: fix function pointer cast warnings (git-fixes). +- commit d241bc1 + +------------------------------------------------------------------- +Fri Mar 15 12:35:48 CET 2024 - denis.kirjanov@suse.com + +- net: ethernet: ti: cpsw_new: enable mac_managed_pm to fix mdio (git-fixes). +- commit 229f845 + +------------------------------------------------------------------- +Fri Mar 15 12:34:13 CET 2024 - denis.kirjanov@suse.com + +- ppp_async: limit MRU to 64K (git-fixes). +- commit 463471e + +------------------------------------------------------------------- +Fri Mar 15 12:32:46 CET 2024 - denis.kirjanov@suse.com + +- nfp: enable NETDEV_XDP_ACT_REDIRECT feature flag (git-fixes). +- commit 36e79a9 + +------------------------------------------------------------------- +Fri Mar 15 09:19:37 CET 2024 - tiwai@suse.de + +- ALSA: hda/tas2781: remove unnecessary runtime_pm calls + (git-fixes). +- ALSA: hda/realtek - ALC236 fix volume mute & mic mute LED on + some HP models (git-fixes). +- ALSA: hda/realtek: fix ALC285 issues on HP Envy x360 laptops + (git-fixes). +- ALSA: hda: Reuse for_each_pcm_streams() (git-fixes). +- ALSA: usb-audio: Name feature ctl using output if input is PCM + (git-fixes). +- commit fdd39ea + +------------------------------------------------------------------- +Fri Mar 15 09:15:01 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Add quirks for various HP ENVY models + (git-fixes). +- commit 62207c4 + +------------------------------------------------------------------- +Fri Mar 15 09:12:54 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Add "Intel Reference board" SSID in the + ALC256 (git-fixes). +- ALSA: hda/realtek: Remove two HP Laptops using CS35L41 + (git-fixes). +- ALSA: hda: cs35l41: Support HP models without _DSD using dual + Speaker ID (git-fixes). +- ALSA: hda: cs35l41: Support additional HP Envy Models + (git-fixes). +- ALSA: hda/realtek: Add quirks for HP G11 Laptops using CS35L56 + (git-fixes). +- ALSA: hda: realtek: Re-work CS35L41 fixups to re-use for other + amps (git-fixes). +- commit c4f7d5a + +------------------------------------------------------------------- +Fri Mar 15 08:28:03 CET 2024 - tiwai@suse.de + +- nilfs2: prevent kernel bug at submit_bh_wbc() (git-fixes). +- nilfs2: fix failure to detect DAT corruption in btree and + direct mappings (git-fixes). +- selftests/mm: protection_keys: save/restore nr_hugepages + settings (git-fixes). +- selftests/mm: hugetlb_reparenting_test: do not unmount + (git-fixes). +- selftests/mm: dont fail testsuite due to a lack of hugepages + (git-fixes). +- modules: wait do_free_init correctly (git-fixes). +- PCI: qcom: Enable BDF to SID translation properly (git-fixes). +- PCI: dwc: endpoint: Fix advertised resizable BAR size + (git-fixes). +- PCI: brcmstb: Fix broken brcm_pcie_mdio_write() polling + (git-fixes). +- PCI: switchtec: Fix an error handling path in + switchtec_pci_probe() (git-fixes). +- PCI/P2PDMA: Fix a sleeping issue in a RCU read section + (git-fixes). +- PCI: Mark 3ware-9650SE Root Port Extended Tags as broken + (git-fixes). +- PCI/DPC: Print all TLP Prefixes, not just the first (git-fixes). +- pci_iounmap(): Fix MMIO mapping leak (git-fixes). +- PCI/AER: Fix rootport attribute paths in ABI docs (git-fixes). +- platform/mellanox: mlxreg-hotplug: Remove redundant NULL-check + (git-fixes). +- platform/x86/intel/tpmi: Change vsec offset to u64 (git-fixes). +- Revert "platform/x86: asus-wmi: Support WMI event queue" + (git-fixes). +- leds: sgm3140: Add missing timer cleanup and flash gpio control + (git-fixes). +- Revert "leds: Only descend into leds directory when + CONFIG_NEW_LEDS is set" (git-fixes). +- leds: aw2013: Unlock mutex before destroying it (git-fixes). +- mfd: altera-sysmgr: Call of_node_put() only when + of_parse_phandle() takes a ref (git-fixes). +- mfd: syscon: Call of_node_put() only when of_parse_phandle() + takes a ref (git-fixes). +- pinctrl: renesas: r8a779g0: Add missing SCIF_CLK2 pin + group/function (git-fixes). +- pinctrl: mediatek: Drop bogus slew rate register range for + MT8192 (git-fixes). +- pinctrl: mediatek: Drop bogus slew rate register range for + MT8186 (git-fixes). +- HID: lenovo: Add middleclick_workaround sysfs knob for cptkbd + (git-fixes). +- HID: amd_sfh: Avoid disabling the interrupt (git-fixes). +- commit a95f20c + +------------------------------------------------------------------- +Fri Mar 15 08:23:42 CET 2024 - tiwai@suse.de + +- ALSA: usb-audio: Stop parsing channels bits when all channels + are found (git-fixes). +- ALSA: aaci: Delete unused variable in aaci_do_suspend + (git-fixes). +- ASoC: meson: axg-tdm-interface: add frame rate constraint + (git-fixes). +- ASoC: meson: axg-tdm-interface: fix mclk setup without mclk-fs + (git-fixes). +- ASoC: SOF: Add some bounds checking to firmware data + (git-fixes). +- ASoC: meson: t9015: fix function pointer type mismatch + (git-fixes). +- ASoC: meson: aiu: fix function pointer type mismatch + (git-fixes). +- ASoC: sh: rz-ssi: Fix error message print (git-fixes). +- ASoC: SOF: amd: Fix memory leak in amd_sof_acp_probe() + (git-fixes). +- ASoC: amd: acp: Add missing error handling in sof-mach + (git-fixes). +- ALSA: hda/tas2781: restore power state after system_resume + (git-fixes). +- ALSA: hda/tas2781: do not call pm_runtime_force_* in + system_resume/suspend (git-fixes). +- ALSA: hda/tas2781: do not reset cur_* values in runtime_suspend + (git-fixes). +- ALSA: hda/tas2781: add lock to system_suspend (git-fixes). +- ALSA: hda/tas2781: use dev_dbg in system_resume (git-fixes). +- ALSA: seq: fix function cast warnings (git-fixes). +- ALSA: aw2: avoid casting function pointers (git-fixes). +- ALSA: ctxfi: avoid casting function pointers (git-fixes). +- ALSA: hda: cs35l41: Set Channel Index correctly when system + is missing _DSD (git-fixes). +- backlight: lp8788: Fully initialize backlight_properties during + probe (git-fixes). +- backlight: lm3639: Fully initialize backlight_properties during + probe (git-fixes). +- backlight: da9052: Fully initialize backlight_properties during + probe (git-fixes). +- backlight: lm3630a: Don't set bl->props.brightness in + get_brightness (git-fixes). +- backlight: lm3630a: Initialize backlight_properties on init + (git-fixes). +- backlight: ktz8866: Correct the check for of_property_read_u32 + (git-fixes). +- backlight: hx8357: Fix potential NULL pointer dereference + (git-fixes). +- gpio: nomadik: fix offset bug in nmk_pmx_set() (git-fixes). +- HID: amd_sfh: Update HPD sensor structure elements (git-fixes). +- commit 428d278 + +------------------------------------------------------------------- +Thu Mar 14 17:43:21 CET 2024 - tiwai@suse.de + +- Update patch reference for IDXD fix (bsc#1221428) +- commit 20b42d0 + +------------------------------------------------------------------- +Thu Mar 14 16:44:44 CET 2024 - nik.borisov@suse.com + +- KVM/x86: Export RFDS_NO and RFDS_CLEAR to guests (bsc#1213456 CVE-2023-28746). +- commit a59ffeb + +------------------------------------------------------------------- +Thu Mar 14 16:44:27 CET 2024 - nik.borisov@suse.com + +- x86/rfds: Mitigate Register File Data Sampling (RFDS) (bsc#1213456 CVE-2023-28746). +- commit c210394 + +------------------------------------------------------------------- +Thu Mar 14 16:43:01 CET 2024 - nik.borisov@suse.com + +- Documentation/hw-vuln: Add documentation for RFDS (bsc#1213456 CVE-2023-28746). +- commit 0f1938a + +------------------------------------------------------------------- +Thu Mar 14 16:41:56 CET 2024 - nik.borisov@suse.com + +- x86/mmio: Disable KVM mitigation when X86_FEATURE_CLEAR_CPU_BUF is set (bsc#1213456 CVE-2023-28746). +- commit 52997cc + +------------------------------------------------------------------- +Thu Mar 14 16:05:39 CET 2024 - vkarasulli@suse.de + +- iommu/amd: Mark interrupt as managed (git-fixes). +- commit 5ef4be8 + +------------------------------------------------------------------- +Thu Mar 14 15:07:40 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Refactor devicetree for OSM-S module and (git-fixes) +- commit 0049d8d + +------------------------------------------------------------------- +Thu Mar 14 14:54:18 CET 2024 - msuchanek@suse.de + +- Update ppc64le kabi files. +- commit 5c9702d + +------------------------------------------------------------------- +Thu Mar 14 12:45:19 CET 2024 - iivanov@suse.de + +- arm64: dts: sprd: Change UMS512 idle-state nodename to match bindings (git-fixes) +- commit 58013ba + +------------------------------------------------------------------- +Thu Mar 14 12:43:39 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: drop rockchip,trcm-sync-tx-only from rk3588 i2s (git-fixes) +- commit b287ab6 + +------------------------------------------------------------------- +Thu Mar 14 12:42:15 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: fix reset-names for rk356x i2s2 controller (git-fixes) +- commit bfdd563 + +------------------------------------------------------------------- +Thu Mar 14 12:41:07 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: add missing interrupt-names for rk356x vdpu (git-fixes) +- commit b9c1de2 + +------------------------------------------------------------------- +Thu Mar 14 12:39:52 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mp: Set SPI NOR to max 40 MHz on Data Modul i.MX8M (git-fixes) +- commit 5a00002 + +------------------------------------------------------------------- +Thu Mar 14 12:38:28 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-venice-gw71xx: fix USB OTG VBUS (git-fixes) +- commit a9642be + +------------------------------------------------------------------- +Thu Mar 14 12:36:58 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Fix OSM-S devicetrees to match latest (git-fixes) +- commit d17e1b2 + +------------------------------------------------------------------- +Thu Mar 14 12:35:11 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Fix interrupt for RTC on OSM-S i.MX8MM (git-fixes) +- commit 63e3e05 + +------------------------------------------------------------------- +Thu Mar 14 12:34:07 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pull resistors for SD card (git-fixes) +- commit 645b123 + +------------------------------------------------------------------- +Thu Mar 14 12:32:48 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pull resistors for SD card (git-fixes) +- commit 63490f6 + +------------------------------------------------------------------- +Thu Mar 14 12:31:50 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pullups for onboard UART signals (git-fixes) +- commit 980bc4a + +------------------------------------------------------------------- +Thu Mar 14 12:30:45 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pullups for onboard UART signals (git-fixes) +- commit 3a04f44 + +------------------------------------------------------------------- +Thu Mar 14 12:29:49 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pullups for I2C signals on SL/BL (git-fixes) +- commit d23e2ff + +------------------------------------------------------------------- +Thu Mar 14 12:28:37 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pullups for I2C signals on OSM-S (git-fixes) +- commit e658d8c + +------------------------------------------------------------------- +Thu Mar 14 12:27:31 CET 2024 - iivanov@suse.de + +- arm64: dts: allwinner: h6: Add RX DMA channel for SPDIF (git-fixes) +- commit 8098072 + +------------------------------------------------------------------- +Thu Mar 14 12:26:09 CET 2024 - iivanov@suse.de + +- arm64: tegra: Fix Tegra234 MGBE power-domains (git-fixes) +- commit 58db13b + +------------------------------------------------------------------- +Thu Mar 14 12:24:54 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mp: Fix LDB clocks property (git-fixes) +- commit 8815925 + +------------------------------------------------------------------- +Thu Mar 14 12:22:28 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: set num-cs property for spi on px30 (git-fixes) +- commit ac8cd44 + +------------------------------------------------------------------- +Thu Mar 14 12:21:26 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mp: Disable UART4 by default on Data Modul i.MX8M (git-fixes) +- commit d39bc86 + +------------------------------------------------------------------- +Thu Mar 14 12:20:00 CET 2024 - iivanov@suse.de + +- arm64: dts: sprd: Add clock reference for pll2 on UMS512 (git-fixes) +- commit 8ef3da3 + +------------------------------------------------------------------- +Thu Mar 14 12:19:00 CET 2024 - iivanov@suse.de + +- arm64: zynqmp: Fix clock node name in kv260 cards (git-fixes) +- commit 49dfade + +------------------------------------------------------------------- +Thu Mar 14 12:17:48 CET 2024 - iivanov@suse.de + +- arm64: zynqmp: Move fixed clock to / for kv260 (git-fixes) +- commit 8a08b0f + +------------------------------------------------------------------- +Thu Mar 14 11:09:55 CET 2024 - lhenriques@suse.de + +- libceph: init the cursor when preparing sparse read in msgr2 + (bsc#1221393). +- ceph: switch to corrected encoding of max_xattr_size in mdsmap + (bsc#1221392). +- ceph: prevent use-after-free in encode_cap_msg() (bsc#1221391). +- libceph: just wait for more data to be available on the socket + (bsc#1221390). +- libceph: rename read_sparse_msg_*() to + read_partial_sparse_msg_*() (bsc#1221389). +- libceph: fail sparse-read if the data length doesn't match + (bsc#1221388). +- commit 088fe3e + +------------------------------------------------------------------- +Thu Mar 14 10:55:48 CET 2024 - iivanov@suse.de + +- Make NVIDIA Grace-Hopper TPM related drivers build-ins (bsc#1221156) +- commit 32745a0 + +------------------------------------------------------------------- +Thu Mar 14 10:16:37 CET 2024 - tiwai@suse.de + +- kabi/severities: ignore intel_tcc_get_temp() change (git-fixes) +- commit 62d327d + +------------------------------------------------------------------- +Thu Mar 14 10:13:54 CET 2024 - tiwai@suse.de + +- thermal/intel: Fix intel_tcc_get_temp() to support negative + CPU temperature (git-fixes). +- commit 6dc4a23 + +------------------------------------------------------------------- +Thu Mar 14 10:12:16 CET 2024 - tiwai@suse.de + +- memfd: drop warning for missing exec-related flags + (bsc#1221161). +- commit 68995fe + +------------------------------------------------------------------- +Thu Mar 14 08:15:06 CET 2024 - tiwai@suse.de + +- gpiolib: Pass consumer device through to core in + devm_fwnode_gpiod_get_index() (git-fixes). +- commit 446d465 + +------------------------------------------------------------------- +Thu Mar 14 08:13:52 CET 2024 - tiwai@suse.de + +- drm/msm/dpu: add division of drm_display_mode's hskew parameter + (git-fixes). +- media: tc358743: register v4l2 async device only after + successful setup (git-fixes). +- tpm,tpm_tis: Avoid warning splat at shutdown (git-fixes). +- powercap: dtpm_cpu: Fix error check against + freq_qos_add_request() (git-fixes). +- powercap: intel_rapl_tpmi: Fix a register bug (git-fixes). +- powercap: intel_rapl: Fix a NULL pointer dereference + (git-fixes). +- PM: sleep: wakeirq: fix wake irq warning in system suspend + (git-fixes). +- PM: suspend: Set mem_sleep_current during kernel command line + setup (git-fixes). +- selftest: gpio: remove obsolete gpio-mockup test (git-fixes). +- gpio: vf610: allow disabling the vf610 driver (git-fixes). +- regulator: userspace-consumer: add module device table + (git-fixes). +- mmc: core: Fix switch on gp3 partition (git-fixes). +- mmc: wmt-sdmmc: remove an incorrect release_mem_region() + call in the .remove function (git-fixes). +- mmc: tmio: avoid concurrent runs of mmc_request_done() + (git-fixes). +- pwm: mediatek: Update kernel doc for struct pwm_mediatek_of_data + (git-fixes). +- pwm: sti: Fix capture for st,pwm-num-chan < st,capture-num-chan + (git-fixes). +- commit 7ae9bb9 + +------------------------------------------------------------------- +Thu Mar 14 08:07:55 CET 2024 - tiwai@suse.de + +- Add cherry-picked id to amdgpu patch +- commit 1ec0805 + +------------------------------------------------------------------- +Thu Mar 14 08:05:50 CET 2024 - tiwai@suse.de + +- drm/etnaviv: Restore some id values (git-fixes). +- drm/amd/pm: Fix esm reg mask use to get pcie speed (git-fixes). +- drm/amdgpu: Fix missing break in ATOM_ARG_IMM Case of + atom_get_src_int() (git-fixes). +- Revert "drm/amdgpu: Add pcie usage callback to nbio" + (git-fixes). +- Revert "drm/amdgpu: Add pci usage to nbio v7.9" (git-fixes). +- drm/msm/a7xx: Fix LLC typo (git-fixes). +- drm/msm/dpu: finalise global state object (git-fixes). +- drm/msm/dpu: Only enable DSC_MODE_MULTIPLEX if dsc_merge is + enabled (git-fixes). +- drm/msm/dpu: fix the programming of INTF_CFG2_DATA_HCTL_EN + (git-fixes). +- drm/msm/dpu: improve DSC allocation (git-fixes). +- drm/mediatek: Fix a null pointer crash in + mtk_drm_crtc_finish_page_flip (git-fixes). +- drm/mediatek: dsi: Fix DSI RGB666 formats and definitions + (git-fixes). +- drm/tests: helpers: Include missing drm_drv header (git-fixes). +- drm/tidss: Fix sync-lost issue with two displays (git-fixes). +- drm/tidss: Fix initial plane zpos values (git-fixes). +- drm/tegra: put drm_gem_object ref on error in tegra_fb_create + (git-fixes). +- drm/bridge: adv7511: fix crash on irq during probe (git-fixes). +- drm/panel: boe-tv101wum-nl6: make use of prepare_prev_first + (git-fixes). +- drm/amd/display: Add 'replay' NULL check in + 'edp_set_replay_allow_active()' (git-fixes). +- drm/amd/display: fix NULL checks for adev->dm.dc in + amdgpu_dm_fini() (git-fixes). +- drm/radeon/ni: Fix wrong firmware size logging in + ni_init_microcode() (git-fixes). +- drm: ci: use clk_ignore_unused for apq8016 (git-fixes). +- Revert "drm/i915/xe2lpd: Treat cursor plane as regular plane + for DDB allocation" (git-fixes). +- drm/amdgpu: Fix potential out-of-bounds access in + 'amdgpu_discovery_reg_base_init()' (git-fixes). +- drm/amd/display: Fix potential NULL pointer dereferences in + 'dcn10_set_output_transfer_func()' (git-fixes). +- drm/amd/display: Fix a potential buffer overflow in + 'dp_dsc_clock_en_read()' (git-fixes). +- drm/radeon/ni_dpm: remove redundant NULL check (git-fixes). +- drm/radeon: remove dead code in ni_mc_load_microcode() + (git-fixes). +- drm/vmwgfx: Fix the lifetime of the bo cursor memory + (git-fixes). +- drm/vmwgfx: Fix vmw_du_get_cursor_mob fencing of newly-created + MOBs (git-fixes). +- drm/vmwgfx: Fix possible null pointer derefence with invalid + contexts (git-fixes). +- drm/lima: fix a memleak in lima_heap_alloc (git-fixes). +- drm/panel-edp: use put_sync in unprepare (git-fixes). +- drm/rockchip: lvds: do not print scary message when probing + defer (git-fixes). +- drm/rockchip: lvds: do not overwrite error code (git-fixes). +- drm/vmwgfx: Unmap the surface before resetting it on a plane + state (git-fixes). +- drm/vmwgfx: fix a memleak in vmw_gmrid_man_get_node (git-fixes). +- drm/vkms: Avoid reading beyond LUT array (git-fixes). +- drm: Don't treat 0 as -1 in drm_fixp2int_ceil (git-fixes). +- drm/rockchip: inno_hdmi: Fix video timing (git-fixes). +- drm/tegra: output: Fix missing i2c_put_adapter() in the error + handling paths of tegra_output_probe() (git-fixes). +- drm/tegra: rgb: Fix missing clk_put() in the error handling + paths of tegra_dc_rgb_probe() (git-fixes). +- drm/tegra: rgb: Fix some error handling paths in + tegra_dc_rgb_probe() (git-fixes). +- drm/tegra: hdmi: Fix some error handling paths in + tegra_hdmi_probe() (git-fixes). +- drm/tegra: dsi: Fix missing pm_runtime_disable() in the error + handling path of tegra_dsi_probe() (git-fixes). +- drm/tegra: dsi: Fix some error handling paths in + tegra_dsi_probe() (git-fixes). +- drm/tegra: dpaux: Fix PM disable depth imbalance in + tegra_dpaux_probe (git-fixes). +- drm/tegra: dsi: Add missing check for of_find_device_by_node + (git-fixes). +- ACPI: processor_idle: Fix memory leak in + acpi_processor_power_exit() (git-fixes). +- ACPI: resource: Add MAIBENBEN X577 to + irq1_edge_low_force_override (git-fixes). +- ACPI: scan: Fix device check notification handling (git-fixes). +- ACPI: CPPC: enable AMD CPPC V2 support for family 17h processors + (git-fixes). +- cpufreq: qcom-hw: add CONFIG_COMMON_CLK dependency (git-fixes). +- cpufreq: brcmstb-avs-cpufreq: add check for cpufreq_cpu_get's + return value (git-fixes). +- cpufreq: Limit resolving a frequency to policy min/max + (git-fixes). +- cpufreq: amd-pstate: Fix min_perf assignment in + amd_pstate_adjust_perf() (git-fixes). +- commit 451635c + +------------------------------------------------------------------- +Thu Mar 14 07:48:20 CET 2024 - nik.borisov@suse.com + +- RAS: Export helper to get ras_debugfs_dir (jsc#PED-7619). +- commit ddeebbf + +------------------------------------------------------------------- +Wed Mar 13 20:23:05 CET 2024 - msuchanek@suse.de + +- powerpc/64s: Fix get_hugepd_cache_index() build failure + (bsc#1215199). +- powerpc: Remove cpu-as-y completely (bsc#1215199). +- powerpc/64s: Use .machine power4 around dcbt (bsc#1215199). +- powerpc/64s: Move dcbt/dcbtst sequence into a macro + (bsc#1215199). +- powerpc/pseries: Fix potential memleak in papr_get_attr() + (bsc#1215199). +- powerpc/kprobes: Handle error returned by set_memory_rox() + (bsc#1215199). +- powerpc: Implement set_memory_rox() (bsc#1215199). +- powerpc: Use user_mode() macro when possible (bsc#1215199). +- powerpc/rtas: use correct function name for resetting TCE tables + (bsc#1215199). +- commit 35dba53 + +------------------------------------------------------------------- +Wed Mar 13 17:44:47 CET 2024 - fdmanana@suse.com + +- btrfs: avoid copying BTRFS_ROOT_SUBVOL_DEAD flag to snapshot + of subvolume being deleted (bsc#1221282). +- commit adc8e1b + +------------------------------------------------------------------- +Wed Mar 13 17:30:12 CET 2024 - fdmanana@suse.com + +- btrfs: don't abort filesystem when attempting to snapshot + deleted subvolume (bsc#1221282). +- commit 7de0be8 + +------------------------------------------------------------------- +Wed Mar 13 17:26:34 CET 2024 - tiwai@suse.de + +- Fix missing initial value for tcp pingpong threshold (bsc#1221339,bsc#1221305,bsc#1221032,bsc#1221261) + This caused high latencies leading to various network issues +- commit de6f6b8 + +------------------------------------------------------------------- +Wed Mar 13 15:58:37 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/FMPM: Fix off by one when unwinding on error (jsc#PED-7619). +- commit 083602e + +------------------------------------------------------------------- +Wed Mar 13 15:57:19 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/FMPM: Add debugfs interface to print record entries (jsc#PED-7619). +- commit 1a5e647 + +------------------------------------------------------------------- +Wed Mar 13 15:56:56 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/FMPM: Save SPA values (jsc#PED-7619). +- commit 4072c0c + +------------------------------------------------------------------- +Wed Mar 13 15:26:37 CET 2024 - tiwai@suse.de + +- Bluetooth: Fix eir name length (git-fixes). +- wifi: mac80211: update scratch_pos after defrag (git-fixes). +- wifi: mac80211: track capability/opmode NSS separately + (git-fixes). +- wifi: mt76: mt792x: fix a potential loading failure of the + 6Ghz channel config from ACPI (git-fixes). +- wifi: mt76: mt7921e: fix use-after-free in free_irq() + (git-fixes). +- wifi: iwlwifi: mvm: fix warnings from dmi_get_system_info() + (git-fixes). +- wifi: wilc1000: fix RCU usage in connect path (git-fixes). +- commit 76a6eff + +------------------------------------------------------------------- +Wed Mar 13 15:04:29 CET 2024 - tiwai@suse.de + +- blacklist.conf: add a BT entry that breaks kABI +- commit a6a5c3b + +------------------------------------------------------------------- +Wed Mar 13 15:02:47 CET 2024 - tiwai@suse.de + +- gpu/host1x kABI workaround (git-fixes). +- commit 86a9dbb + +------------------------------------------------------------------- +Wed Mar 13 14:53:36 CET 2024 - tiwai@suse.de + +- gpu: host1x: Skip reset assert on Tegra186 (git-fixes). +- commit 88887cf + +------------------------------------------------------------------- +Wed Mar 13 14:52:32 CET 2024 - tiwai@suse.de + +- blacklist.conf: add entries for firewire +- commit f73cdd2 + +------------------------------------------------------------------- +Wed Mar 13 14:50:58 CET 2024 - tiwai@suse.de + +- drm/nouveau: don't fini scheduler before entity flush + (git-fixes). +- commit 3d3c54d + +------------------------------------------------------------------- +Wed Mar 13 14:39:57 CET 2024 - mgorman@suse.de + +- futex: Prevent the reuse of stale pi_state (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- commit 82905f3 + +------------------------------------------------------------------- +Wed Mar 13 13:16:47 CET 2024 - mgorman@suse.de + +- drm/i915/guc: Consider also RCU depth in busy loop (SLE + Realtime Extension). +- srcu: Use try-lock lockdep annotation for NMI-safe access + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- futex/pi: Fix recursive rt_mutex waiter state (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- srcu: Remove extraneous parentheses from srcu_read_lock() etc + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- commit b354209 + +------------------------------------------------------------------- +Wed Mar 13 13:03:56 CET 2024 - mgorman@suse.de + +- srcu: Use try-lock lockdep annotation for NMI-safe access + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- futex/pi: Fix recursive rt_mutex waiter state (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- srcu: Remove extraneous parentheses from srcu_read_lock() etc + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- commit e04ae5b + +------------------------------------------------------------------- +Wed Mar 13 12:41:25 CET 2024 - tiwai@suse.de + +- Update config files: refresh for x86_64 and armv7hl +- commit 8a3dfcc + +------------------------------------------------------------------- +Wed Mar 13 10:26:22 CET 2024 - oneukum@suse.com + +- r8152: fix unknown device for choose_configuration (git-fixes). +- commit 71e2f25 + +------------------------------------------------------------------- +Wed Mar 13 10:02:23 CET 2024 - iivanov@suse.de + +- Update patches.suse/arm64-sme-Always-exit-sme_alloc-early-with-existing-.patch (git-fixes, CVE-2024-26618) + Add reference to CVE-2024-26618. +- commit 50882e3 + +------------------------------------------------------------------- +Wed Mar 13 09:27:26 CET 2024 - tiwai@suse.de + +- bluetooth hci_uart_register_device() kABI workaround + (git-fixes). +- commit 2fcc10e + +------------------------------------------------------------------- +Wed Mar 13 09:17:20 CET 2024 - tiwai@suse.de + +- net: phy: dp83822: Fix RGMII TX delay configuration (git-fixes). +- net: phy: fix phy_get_internal_delay accessing an empty array + (git-fixes). +- Bluetooth: btnxpuart: Fix btnxpuart_close (git-fixes). +- Bluetooth: af_bluetooth: Fix deadlock (git-fixes). +- Bluetooth: hci_core: Fix possible buffer overflow (git-fixes). +- Bluetooth: btrtl: fix out of bounds memory access (git-fixes). +- Bluetooth: hci_h5: Add ability to allocate memory for private + data (git-fixes). +- Bluetooth: hci_qca: don't use IS_ERR_OR_NULL() with + gpiod_get_optional() (git-fixes). +- Bluetooth: hci_event: Fix not indicating new connection for + BIG Sync (git-fixes). +- Bluetooth: Remove superfluous call to hci_conn_check_pending() + (git-fixes). +- Bluetooth: mgmt: Remove leftover queuing of power_off work + (git-fixes). +- Bluetooth: Remove HCI_POWER_OFF_TIMEOUT (git-fixes). +- wifi: brcm80211: handle pmk_op allocation failure (git-fixes). +- wifi: rtw88: 8821c: Fix false alarm count (git-fixes). +- wifi: rtw88: 8821c: Fix beacon loss and disconnect (git-fixes). +- wifi: rtw88: 8821cu: Fix firmware upload fail (git-fixes). +- wifi: mt76: mt7921: fix incorrect type conversion for CLC + command (git-fixes). +- wifi: mt76: mt7996: fix HIF_TXD_V2_1 value (git-fixes). +- wifi: mt76: mt7996: fix efuse reading issue (git-fixes). +- wifi: mt76: mt7996: fix HE beamformer phy cap for station vif + (git-fixes). +- wifi: mt76: mt7996: fix incorrect interpretation of EHT MCS caps + (git-fixes). +- wifi: mt76: mt7996: fix TWT issues (git-fixes). +- sr9800: Add check for usbnet_get_endpoints (git-fixes). +- wifi: ath12k: fix incorrect logic of calculating vdev_stats_id + (git-fixes). +- wifi: ath11k: initialize rx_mcs_80 and rx_mcs_160 before use + (git-fixes). +- wifi: ath11k: change to move WMI_VDEV_PARAM_SET_HEMU_MODE + before WMI_PEER_ASSOC_CMDID (git-fixes). +- wifi: ath9k: delay all of ath9k_wmi_event_tasklet() until init + is complete (git-fixes). +- wifi: wilc1000: revert reset line logic flip (git-fixes). +- wifi: brcmsmac: avoid function pointer casts (git-fixes). +- wifi: wilc1000: prevent use-after-free on vif when cleaning + up all interfaces (git-fixes). +- wifi: iwlwifi: mvm: Fix the listener MAC filter flags + (git-fixes). +- wifi: iwlwifi: mvm: don't set replay counters to 0xff + (git-fixes). +- wifi: iwlwifi: mvm: don't set the MFP flag for the GTK + (git-fixes). +- wifi: iwlwifi: mvm: fix erroneous queue index mask (git-fixes). +- wifi: iwlwifi: support EHT for WH (git-fixes). +- wifi: wfx: fix memory leak when starting AP (git-fixes). +- wifi: brcmsmac: Drop legacy header (git-fixes). +- wifi: libertas: fix some memleaks in lbs_allocate_cmd_buffer() + (git-fixes). +- wifi: iwlwifi: read BIOS PNVM only for non-Intel SKU + (git-fixes). +- wifi: iwlwifi: mvm: fix the TLC command after ADD_STA + (git-fixes). +- wifi: iwlwifi: mvm: use FW rate for non-data only on new devices + (git-fixes). +- wifi: iwlwifi: mvm: d3: fix IPN byte order (git-fixes). +- wifi: iwlwifi: fix EWRD table validity check (git-fixes). +- wifi: iwlwifi: mvm: initialize rates in FW earlier (git-fixes). +- wifi: iwlwifi: acpi: fix WPFC reading (git-fixes). +- wifi: iwlwifi: dbg-tlv: ensure NUL termination (git-fixes). +- wifi: iwlwifi: mvm: report beacon protection failures + (git-fixes). +- wifi: brcmfmac: fix copyright year mentioned in platform_data + header (git-fixes). +- wifi: ath12k: Fix issues in channel list update (git-fixes). +- wifi: ath10k: fix NULL pointer dereference in + ath10k_wmi_tlv_op_pull_mgmt_tx_compl_ev() (git-fixes). +- can: softing: remove redundant NULL check (git-fixes). +- wifi: brcmfmac: avoid invalid list operation when vendor attach + fails (git-fixes). +- wifi: mwifiex: debugfs: Drop unnecessary error check for + debugfs_create_dir() (git-fixes). +- wifi: wilc1000: fix multi-vif management when deleting a vif + (git-fixes). +- wifi: wilc1000: do not realloc workqueue everytime an interface + is added (git-fixes). +- wifi: rtl8xxxu: add cancel_work_sync() for c2hcmd_work + (git-fixes). +- wifi: b43: Disable QoS for bcm4331 (git-fixes). +- wifi: b43: Stop correct queue in DMA worker when QoS is disabled + (git-fixes). +- wifi: b43: Stop/wake correct queue in PIO Tx path when QoS is + disabled (git-fixes). +- wifi: b43: Stop/wake correct queue in DMA Tx path when QoS is + disabled (git-fixes). +- doc-guide: kernel-doc: tell about object-like macros + (git-fixes). +- soc: qcom: llcc: Check return value on Broadcast_OR reg read + (git-fixes). +- soc: qcom: socinfo: rename PM2250 to PM4125 (git-fixes). +- bus: tegra-aconnect: Update dependency to ARCH_TEGRA + (git-fixes). +- firmware: arm_scmi: Fix double free in SMC transport cleanup + path (git-fixes). +- commit d454c2c + +------------------------------------------------------------------- +Wed Mar 13 08:58:39 CET 2024 - tiwai@suse.de + +- Move upstreamed patches into sorted section +- commit 5709f5a + +------------------------------------------------------------------- +Wed Mar 13 08:49:16 CET 2024 - tiwai@suse.de + +- Move upstreamed patches into sorted section +- commit 612fa2e + +------------------------------------------------------------------- +Wed Mar 13 06:13:12 CET 2024 - ddiss@suse.de + +- selinux: only filter copy-up xattrs following initialization + (bsc#1210690). +- commit f42baec + +------------------------------------------------------------------- +Wed Mar 13 01:48:09 CET 2024 - neilb@suse.de + +- NFS: Fix data corruption caused by congestion (git-fixes). +- pNFS: Fix the pnfs block driver's calculation of layoutget size + (git-fixes). +- NFSv4.1: fixup use EXCHGID4_FLAG_USE_PNFS_DS for DS server + (git-fixes). +- NFS: Fix O_DIRECT locking issues (git-fixes). +- commit b64b15f + +------------------------------------------------------------------- +Tue Mar 12 23:31:45 CET 2024 - neilb@suse.de + +- nfsd: don't take fi_lock in nfsd_break_deleg_cb() (git-fixes). +- SUNRPC: fix _xprt_switch_find_current_entry logic (git-fixes). +- NFSv4.1/pnfs: Ensure we handle the error NFS4ERR_RETURNCONFLICT + (git-fixes). +- NFS: Use parent's objective cred in nfs_access_login_time() + (git-fixes). +- blocklayoutdriver: Fix reference leak of pnfs_device_node + (git-fixes). +- SUNRPC: Fix a suspicious RCU usage warning (git-fixes). +- NFSD: Fix "start of NFS reply" pointer passed to + nfsd_cache_update() (git-fixes). +- NFSD: Update nfsd_cache_append() to use xdr_stream (git-fixes). +- nfsd: fix file memleak on client_opens_release (git-fixes). +- SUNRPC: Fix RPC client cleaned up the freed pipefs dentries + (git-fixes). +- NFSv4.1: fix SP4_MACH_CRED protection for pnfs IO (git-fixes). +- SUNRPC: Add an IS_ERR() check back to where it was (git-fixes). +- NFSv4.1: fix handling NFS4ERR_DELAY when testing for session + trunking (git-fixes). +- SUNRPC: ECONNRESET might require a rebind (git-fixes). +- svcrdma: Drop connection after an RDMA Read error (git-fixes). +- nfsd: Handle EOPENSTALE correctly in the filecache (git-fixes). +- nfsd: lock_rename() needs both directories to live on the same + fs (git-fixes). +- pNFS/flexfiles: Check the layout validity in + ff_layout_mirror_prepare_stats (git-fixes). +- pNFS: Fix a hang in nfs4_evict_inode() (git-fixes). +- NFS: Fix potential oops in nfs_inode_remove_request() + (git-fixes). +- nfs42: client needs to strip file mode's suid/sgid bit after + ALLOCATE op (git-fixes). +- nfs: decrement nrequests counter before releasing the req + (git-fixes). +- SUNRPC/TLS: Lock the lower_xprt during the tls handshake + (git-fixes). +- Revert "SUNRPC dont update timeout value on connection reset" + (git-fixes). +- NFSv4: Fix a state manager thread deadlock regression + (git-fixes). +- NFSv4: Fix a nfs4_state_manager() race (git-fixes). +- SUNRPC: Fail quickly when server does not recognize TLS + (git-fixes). +- NFSv4.1: fix zero value filehandle in post open getattr + (git-fixes). +- NFS: More fixes for nfs_direct_write_reschedule_io() + (git-fixes). +- NFS: Use the correct commit info in nfs_join_page_group() + (git-fixes). +- NFS: More O_DIRECT accounting fixes for error paths (git-fixes). +- NFS: Fix error handling for O_DIRECT write scheduling + (git-fixes). +- nfsd: fix change_info in NFSv4 RENAME replies (git-fixes). +- NFSv4.1: use EXCHGID4_FLAG_USE_PNFS_DS for DS server + (git-fixes). +- NFS: Fix a potential data corruption (git-fixes). +- NFSv4/pnfs: minor fix for cleanup path in nfs4_get_device_info + (git-fixes). +- commit e298a32 + +------------------------------------------------------------------- +Tue Mar 12 17:25:48 CET 2024 - lhenriques@suse.de + +- Update + patches.suse/ceph-fix-deadlock-or-deadcode-of-misusing-dget.patch + (bsc#1220453 bsc#1221058 CVE-2023-52583). +- commit 25befcc + +------------------------------------------------------------------- +Tue Mar 12 16:58:11 CET 2024 - mgorman@suse.de + +- sched/fair: Combine EAS check with overutilized access + (bsc#1221157). +- sched/fair: Use helper function to access rd->overutilized + (bsc#1221157). +- sched/fair: Add EAS checks before updating overutilized + (bsc#1221157). +- commit c66ccdb + +------------------------------------------------------------------- +Tue Mar 12 15:53:52 CET 2024 - lhenriques@suse.de + +- netfs, fscache: Prevent Oops in fscache_put_cache() (bsc#1221291 + CVE-2024-26612). +- commit f4e9666 + +------------------------------------------------------------------- +Tue Mar 12 14:33:40 CET 2024 - vbabka@suse.cz + +- mm, vmscan: prevent infinite loop for costly GFP_NOIO | + __GFP_RETRY_MAYFAIL allocations (git-fixes). +- commit 36fac6a + +------------------------------------------------------------------- +Tue Mar 12 12:47:04 CET 2024 - vbabka@suse.cz + +- mm: migrate high-order folios in swap cache correctly + (git-fixes). +- commit 46a5bb6 + +------------------------------------------------------------------- +Tue Mar 12 12:34:27 CET 2024 - vbabka@suse.cz + +- mm/mempolicy: fix set_mempolicy_home_node() previous VMA pointer + (git-fixes). +- commit 436bfc9 + +------------------------------------------------------------------- +Tue Mar 12 12:30:23 CET 2024 - vbabka@suse.cz + +- Refresh patches.suse/mm-mmap-fix-vma_merge-case-7.patch. +- commit 442a3e7 + +------------------------------------------------------------------- +Tue Mar 12 12:20:44 CET 2024 - denis.kirjanov@suse.com + +- bonding: return -ENOMEM instead of BUG in alb_upper_dev_walk + (git-fixes). +- commit bffce9c + +------------------------------------------------------------------- +Tue Mar 12 11:02:49 CET 2024 - denis.kirjanov@suse.com + +- nfp: flower: prevent re-adding mac index for bonded port (git-fixes). +- commit 6661999 + +------------------------------------------------------------------- +Tue Mar 12 11:01:07 CET 2024 - denis.kirjanov@suse.com + +- nfp: use correct macro for LengthSelect in BAR config (git-fixes). +- commit 7d0aeec + +------------------------------------------------------------------- +Tue Mar 12 10:59:40 CET 2024 - denis.kirjanov@suse.com + +- tsnep: Fix mapping for zero copy XDP_TX action (git-fixes). +- commit 3345825 + +------------------------------------------------------------------- +Tue Mar 12 10:57:58 CET 2024 - denis.kirjanov@suse.com + +- net: atlantic: Fix DMA mapping for PTP hwts ring (git-fixes). +- commit b00604d + +------------------------------------------------------------------- +Tue Mar 12 10:55:55 CET 2024 - denis.kirjanov@suse.com + +- netdevsim: avoid potential loop in nsim_dev_trap_report_work() (git-fixes). +- commit 57a7091 + +------------------------------------------------------------------- +Tue Mar 12 10:53:57 CET 2024 - denis.kirjanov@suse.com + +- net: stmmac: Prevent DSA tags from breaking COE (git-fixes). +- commit e8cc0c0 + +------------------------------------------------------------------- +Tue Mar 12 10:01:27 CET 2024 - tiwai@suse.de + +- Move out-of-tree patches into the right section +- commit 6624840 + +------------------------------------------------------------------- +Tue Mar 12 09:59:39 CET 2024 - tiwai@suse.de + +- Documentation: virt: Fix up pre-formatted text block for SEV + ioctls (git-fixes). +- commit b6867f0 + +------------------------------------------------------------------- +Tue Mar 12 09:59:02 CET 2024 - tiwai@suse.de + +- Move upstreamed patches into sorted section +- commit 489fc6e + +------------------------------------------------------------------- +Tue Mar 12 09:52:49 CET 2024 - tiwai@suse.de + +- crypto: ccp - Have it depend on AMD_IOMMU (git-fixes). +- rtc: test: Fix invalid format specifier (git-fixes). +- lib: memcpy_kunit: Fix an invalid format specifier in an + assertion msg (git-fixes). +- lib/cmdline: Fix an invalid format specifier in an assertion + msg (git-fixes). +- selftests/mqueue: Set timeout to 180 seconds (git-fixes). +- Documentation: coresight: fix `make refcheckdocs` warning + (git-fixes). +- commit 2c8fcdc + +------------------------------------------------------------------- +Tue Mar 12 03:32:41 CET 2024 - neilb@suse.de + +- Refresh patches.suse/nfsd-fix-RELEASE_LOCKOWNER.patch. + update mainline commit info +- commit 2c149c7 + +------------------------------------------------------------------- +Mon Mar 11 14:16:45 CET 2024 - denis.kirjanov@suse.com + +- amt: do not use overwrapped cb area (git-fixes). +- commit 1372aac + +------------------------------------------------------------------- +Mon Mar 11 14:14:14 CET 2024 - denis.kirjanov@suse.com + +- bonding: remove print in bond_verify_device_path (git-fixes). +- commit 7a54f95 + +------------------------------------------------------------------- +Mon Mar 11 14:07:35 CET 2024 - denis.kirjanov@suse.com + +- stmmac: preserve KABI in stmmac_txq_cfg (git-fixes). +- commit 034b0ac + +------------------------------------------------------------------- +Mon Mar 11 14:05:31 CET 2024 - denis.kirjanov@suse.com + +- net: stmmac: Tx coe sw fallback (git-fixes). +- commit d5cf563 + +------------------------------------------------------------------- +Mon Mar 11 13:31:45 CET 2024 - denis.kirjanov@suse.com + +- blacklist.conf: update blacklist +- commit 0889c69 + +------------------------------------------------------------------- +Mon Mar 11 11:11:02 CET 2024 - denis.kirjanov@suse.com + +- blacklist.conf: update blacklist +- commit b63446f + +------------------------------------------------------------------- +Mon Mar 11 11:03:50 CET 2024 - denis.kirjanov@suse.com + +- blacklist.conf: update blacklist +- commit ed66a82 + +------------------------------------------------------------------- +Mon Mar 11 10:46:44 CET 2024 - msuchanek@suse.de + +- powerpc/pseries/iommu: IOMMU table is not initialized for + kdump over SR-IOV (bsc#1220492 ltc#205270). +- commit 2026089 + +------------------------------------------------------------------- +Mon Mar 11 10:11:09 CET 2024 - oneukum@suse.com + +- Update + patches.suse/usb-hub-Guard-against-accesses-to-uninitialized-BOS-.patch + (bsc#1220790 CVE-2023-52477). + Added CVE +- commit 61b1ebd + ------------------------------------------------------------------- Sun Mar 10 09:34:05 CET 2024 - tiwai@suse.de @@ -157,6 +1988,15 @@ Thu Mar 7 18:15:41 CET 2024 - tonyj@suse.de Power8 Architecture (jsc#PED-7970 jsc#PED-8065). - commit b9d5dfb +------------------------------------------------------------------- +Thu Mar 7 13:24:07 CET 2024 - msuchanek@suse.de + +- group-source-files.pl: Quote filenames (boo#1221077). + The kernel source now contains a file with a space in the name. + Add quotes in group-source-files.pl to avoid splitting the filename. + Also use -print0 / -0 when updating timestamps. +- commit a005e42 + ------------------------------------------------------------------- Thu Mar 7 11:49:53 CET 2024 - msuchanek@suse.de @@ -17859,6 +19699,18 @@ Fri Feb 16 09:06:11 CET 2024 - pjakobsson@suse.de jsc#PED-5511 jsc#PED-6041 jsc#PED-6069 jsc#PED-6071) - commit c593905 +------------------------------------------------------------------- +Thu Feb 15 23:30:01 CET 2024 - svarbanov@suse.de + +- memory: tegra: add MC client for Tegra234 GPU (bsc#1221330) +- commit f5d121c + +------------------------------------------------------------------- +Thu Feb 15 23:28:11 CET 2024 - svarbanov@suse.de + +- memory: tegra: Add clients used by DRM in Tegra234 (bsc#1221330). +- commit 67c31f5 + ------------------------------------------------------------------- Thu Feb 15 19:46:39 CET 2024 - jwiesner@suse.de @@ -18741,6 +20593,12 @@ Wed Feb 14 00:50:53 CET 2024 - jgross@suse.com counter (jsc#PED-7322). - commit 50f3c68 +------------------------------------------------------------------- +Wed Feb 14 00:27:57 CET 2024 - svarbanov@suse.de + +- supported.conf: Add supported entry for stusb160x (bsc#1221330) +- commit d3bd091 + ------------------------------------------------------------------- Wed Feb 14 00:18:02 CET 2024 - jgross@suse.com @@ -50359,6 +52217,13 @@ Sat Oct 21 13:25:16 CEST 2023 - tiwai@suse.de (git-fixes). - commit 14a1c75 +------------------------------------------------------------------- +Fri Oct 20 18:50:59 CEST 2023 - mwilck@suse.com + +- qedf: Wait for stag work during unload (bsc#1214852). +- qedf: Don't process stag work during unload (bsc#1214852). +- commit dcc092a + ------------------------------------------------------------------- Fri Oct 20 18:31:53 CEST 2023 - jwiesner@suse.de @@ -52529,6 +54394,12 @@ Mon Oct 9 15:07:27 CEST 2023 - nmorey@suse.com - RDMA/mlx5: Remove not-used cache disable flag (git-fixes) - commit d265793 +------------------------------------------------------------------- +Mon Oct 9 12:38:03 CEST 2023 - schwab@suse.de + +- mkspec-dtb: add toplevel symlinks also on arm +- commit ed29cae + ------------------------------------------------------------------- Mon Oct 9 11:31:46 CEST 2023 - nmorey@suse.com @@ -74680,11 +76551,15 @@ Wed Aug 30 10:58:12 CEST 2023 - jlee@suse.com ------------------------------------------------------------------- Wed Aug 30 10:43:48 CEST 2023 - jslaby@suse.cz +- rpm/mkspec-dtb: dtbs have moved to vendor sub-directories in 6.5 + By commit 724ba6751532 ("ARM: dts: Move .dts files to vendor + sub-directories"). + So switch to them. - rpm/mkspec-dtb: support for nested subdirs Commit 724ba6751532 ("ARM: dts: Move .dts files to vendor sub-directories") moved the dts to nested subdirs, add a support for that. That is, generate a %dir entry in %files for them. -- commit 6484eda +- commit 7aee36a ------------------------------------------------------------------- Wed Aug 30 10:34:00 CEST 2023 - jlee@suse.com diff --git a/kernel-rt.spec b/kernel-rt.spec index 7c9775d..8a44868 100644 --- a/kernel-rt.spec +++ b/kernel-rt.spec @@ -19,7 +19,7 @@ %define srcversion 6.4 %define patchversion 6.4.0 -%define git_commit 0d817874d18eca2fc379364350f5d8f656a563b1 +%define git_commit 1025e3e919d23ae8b2a3e5c5ad95f6804136e0e9 %define variant -rt%{nil} %define compress_modules zstd %define compress_vmlinux xz @@ -38,7 +38,7 @@ Name: kernel-rt Version: 6.4.0 %if 0%{?is_kotd} -Release: .g0d81787 +Release: .g1025e3e %else Release: 0 %endif diff --git a/kernel-rt_debug.changes b/kernel-rt_debug.changes index d10c08b..178050c 100644 --- a/kernel-rt_debug.changes +++ b/kernel-rt_debug.changes @@ -1,3 +1,1834 @@ +------------------------------------------------------------------- +Fri Mar 22 17:14:57 CET 2024 - mgorman@suse.de + +- printk: nbcon: move locked_port flag to struct uart_port + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- Refresh patches.suse/printk-Update-the-printk-series.patch. +- commit 1025e3e + +------------------------------------------------------------------- +Thu Mar 21 12:03:15 CET 2024 - mgorman@suse.de + +- Update printk to v6.6.20-rt25 +- kernel/panic: Add atomic write enforcement to warn/panic (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- panic: hide unused global functions (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Add non-BKL console basic infrastructure (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Add threaded printing support for BKL consoles (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Consolidate console deferred printing (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Do not take console lock for console_flush_on_panic() (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Perform atomic flush in console_flush_on_panic() (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Rename abandon_console_lock_in_panic() to other_cpu_in_panic() (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Update the printk series (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add acquire/release logic (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add buffer management (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add emit function and callback functions for atomic printing (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add print state functions (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add printer thread wakeups (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add sequence handling (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add write context storage for atomic writes (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Introduce printer threads (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Provide functions for atomic write enforcement (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Stop threads on shutdown/reboot (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: only disable if actually unregistered (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: replace local_irq_save with local_lock for safe mode (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- proc: consoles: Add support for non-BKL consoles (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- rcu: Add atomic write enforcement for rcu stalls (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: 8250: implement non-BKL console +- serial: Make uart_remove_one_port() return void (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: Switch i2c drivers back to use .probe() (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: core: Don't drop port_mutex in serial_core_remove_one_port (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: core: Fix error handling for serial_core_ctrl_device_add() (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: core: Fix probing serial_base_bus devices (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: core: Start managing serial controllers to enable runtime PM (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: pl011: set UART011_CR_RXE in pl011_set_termios after port shutdown (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- tty: serial: fsl_lpuart: Check the return value of dmaengine_tx_status (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- tty: serial: fsl_lpuart: optimize the timer based EOP logic (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- tty: tty_io: Show non-BKL consoles as active (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- Refresh + patches.suse/printk-Add-per-console-suspended-state.patch. + patches.suse/printk-Keep-non-panic-CPUs-out-of-console-lock.patch. + patches.suse/printk-Reduce-console_unblank-usage-in-unsafe-scenarios.patch. +- Delete + patches.suse/printk-Add-NMI-check-to-console_flush_on_panic-and-console_unblank.patch. +- commit cd25188 + +------------------------------------------------------------------- +Thu Mar 21 11:26:07 CET 2024 - mgorman@suse.de + +- Revert v6.5-rt printk +- commit 36c3e65 + +------------------------------------------------------------------- +Wed Mar 20 17:04:34 CET 2024 - mgorman@suse.de + +- series.conf: Move v6.5-rc7-rt4 printk series to prepare for revert and refresh +- Update + patches.suse/kernel-panic-Add-atomic-write-enforcement-to-warn-panic.patch. + patches.suse/printk-Add-NMI-check-to-console_flush_on_panic-and-console_unblank.patch. + patches.suse/printk-Add-non-BKL-console-basic-infrastructure.patch. + patches.suse/printk-Add-per-console-suspended-state.patch. + patches.suse/printk-Add-threaded-printing-support-for-BKL-consoles.patch. + patches.suse/printk-Check-only-for-migration-in-printk_deferred_.patch. + patches.suse/printk-Consolidate-console-deferred-printing.patch. + patches.suse/printk-Keep-non-panic-CPUs-out-of-console-lock.patch. + patches.suse/printk-Monolithic-bring-printk-up-to-date-with-v6.6-rt25.patch. + patches.suse/printk-Perform-atomic-flush-in-console_flush_on_panic.patch. + patches.suse/printk-Reduce-console_unblank-usage-in-unsafe-scenarios.patch. + patches.suse/printk-nobkl-Add-acquire-release-logic.patch. + patches.suse/printk-nobkl-Add-buffer-management.patch. + patches.suse/printk-nobkl-Add-print-state-functions.patch. + patches.suse/printk-nobkl-Add-printer-thread-wakeups.patch. + patches.suse/printk-nobkl-Add-sequence-handling.patch. + patches.suse/printk-nobkl-Add-write-context-storage-for-atomic-writes.patch. + patches.suse/printk-nobkl-Introduce-printer-threads.patch. + patches.suse/printk-nobkl-Provide-functions-for-atomic-write-enforcement.patch. + patches.suse/printk-nobkl-Stop-threads-on-shutdown-reboot.patch. + patches.suse/printk-only-disable-if-actually-unregistered.patch. + patches.suse/printk-replace-local_irq_save-with-local_lock-for-safe-mode.patch. + patches.suse/proc-consoles-Add-support-for-non-BKL-consoles.patch. + patches.suse/rcu-Add-atomic-write-enforcement-for-rcu-stalls.patch. + patches.suse/serial-8250-implement-non-BKL-console.patch. + patches.suse/serial-8250-lock-port-for-omap8250_restore_regs.patch. + patches.suse/serial-8250-lock-port-for-rx_dma-callback.patch. + patches.suse/serial-8250-omap-convert-to-modern-PM-ops.patch. + patches.suse/serial-8250_mtk-Simplify-clock-sequencing-and-runtime-PM.patch. + patches.suse/serial-arc_uart-simplify-flags-handling-in-arc_serial_rx_chars.patch. + patches.suse/serial-drivers-switch-ch-and-flag-to-u8.patch. + patches.suse/serial-exar-Add-RS-485-support-for-Sealevel-XR17V35X-based-cards.patch. + patches.suse/serial-omap-serial-remove-flag-from-serial_omap_rdi.patch. + patches.suse/tty-Explicitly-include-correct-DT-includes.patch. + patches.suse/tty-tty_io-Show-non-BKL-consoles-as-active.patch. +- commit a8be181 + +------------------------------------------------------------------- +Wed Mar 20 16:33:52 CET 2024 - mgorman@suse.de + +- series.conf: Move v6.5-rc7-rt4 printk series to prepare for revert and refresh +- commit 1c36877 + +------------------------------------------------------------------- +Wed Mar 20 14:31:18 CET 2024 - mgorman@suse.de + +- Break out patches from RT monolithic printk update +- serial: 8250: lock port for omap8250_restore_regs() (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- serial: 8250: lock port for rx_dma() callback (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- serial: 8250: omap: convert to modern PM ops (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- serial: 8250_mtk: Simplify clock sequencing and runtime PM + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: arc_uart: simplify flags handling in + arc_serial_rx_chars() (bsc#1214683 (PREEMPT_RT prerequisite + backports)). +- serial: drivers: switch ch and flag to u8 (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- serial: exar: Add RS-485 support for Sealevel XR17V35X based + cards (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: omap-serial: remove flag from serial_omap_rdi() + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- tty: Explicitly include correct DT includes (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- printk: Keep non-panic-CPUs out of console lock (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- printk: Reduce console_unblank() usage in unsafe scenarios + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- Refresh + patches.suse/printk-Monolithic-bring-printk-up-to-date-with-v6.6-rt25.patch. +- commit dde15d2 + +------------------------------------------------------------------- +Mon Mar 18 17:18:14 CET 2024 - jack@suse.cz + +- fs: don't assume arguments are non-NULL (bsc#1221044 + CVE-2023-52591). +- commit ec8f09d + +------------------------------------------------------------------- +Mon Mar 18 17:17:56 CET 2024 - jack@suse.cz + +- fs: Restrict lock_two_nondirectories() to non-directory inodes + (bsc#1221044 CVE-2023-52591). +- commit b103012 + +------------------------------------------------------------------- +Mon Mar 18 17:00:17 CET 2024 - jack@suse.cz + +- fs: ocfs2: check status values (bsc#1221044 CVE-2023-52591). +- commit a281985 + +------------------------------------------------------------------- +Mon Mar 18 16:55:27 CET 2024 - jack@suse.cz + +- rename(): avoid a deadlock in the case of parents having no + common ancestor (bsc#1221044 CVE-2023-52591). +- commit ea7137b + +------------------------------------------------------------------- +Mon Mar 18 16:55:13 CET 2024 - jack@suse.cz + +- kill lock_two_inodes() (bsc#1221044 CVE-2023-52591). +- commit 005222f + +------------------------------------------------------------------- +Mon Mar 18 16:54:57 CET 2024 - jack@suse.cz + +- rename(): fix the locking of subdirectories (bsc#1221044 + CVE-2023-52591). +- commit a6484cb + +------------------------------------------------------------------- +Mon Mar 18 16:54:43 CET 2024 - jack@suse.cz + +- f2fs: Avoid reading renamed directory if parent does not change + (bsc#1221044 CVE-2023-52591). +- commit 3fb2dd8 + +------------------------------------------------------------------- +Mon Mar 18 16:54:28 CET 2024 - jack@suse.cz + +- ext4: don't access the source subdirectory content on + same-directory rename (bsc#1221044 CVE-2023-52591). +- commit ba7d1aa + +------------------------------------------------------------------- +Mon Mar 18 16:54:13 CET 2024 - jack@suse.cz + +- ext2: Avoid reading renamed directory if parent does not change + (bsc#1221044 CVE-2023-52591). +- commit 65af3c2 + +------------------------------------------------------------------- +Mon Mar 18 16:53:55 CET 2024 - jack@suse.cz + +- udf_rename(): only access the child content on cross-directory + rename (bsc#1221044 CVE-2023-52591). +- commit a29fcb6 + +------------------------------------------------------------------- +Mon Mar 18 16:53:12 CET 2024 - jack@suse.cz + +- ocfs2: Avoid touching renamed directory if parent does not + change (bsc#1221044 CVE-2023-52591). +- Update references in + patches.suse/reiserfs-Avoid-touching-renamed-directory-if-parent-.patch + (git-fixes bsc#1221044 CVE-2023-52591). +- commit 0477c34 + +------------------------------------------------------------------- +Mon Mar 18 15:19:09 CET 2024 - tiwai@suse.de + +- Update kabi files: adapting kABI changes for ppc64le, too +- commit bf73791 + +------------------------------------------------------------------- +Mon Mar 18 15:18:37 CET 2024 - mfranc@suse.cz + +- dcssblk: handle alloc_dax() -EOPNOTSUPP failure (git-fixes + bsc#1221626). +- commit eaf806c + +------------------------------------------------------------------- +Mon Mar 18 15:16:59 CET 2024 - mfranc@suse.cz + +- s390/cache: prevent rebuild of shared_cpu_list (git-fixes + bsc#1221625). +- commit d9bc980 + +------------------------------------------------------------------- +Mon Mar 18 15:06:27 CET 2024 - mfranc@suse.cz + +- s390/pai: fix attr_event_free upper limit for pai device drivers + (git-fixes bsc#1221623). +- commit eac0e1f + +------------------------------------------------------------------- +Mon Mar 18 14:50:34 CET 2024 - mfranc@suse.cz + +- KVM: s390: only deliver the set service event bits (git-fixes + bsc#1221620). +- commit 55838c8 + +------------------------------------------------------------------- +Mon Mar 18 14:48:10 CET 2024 - colyli@suse.de + +- dm: treat alloc_dax() -EOPNOTSUPP failure as non-fatal + (git-fixes). +- dm: call the resume method on internal suspend (git-fixes). +- dm raid: fix false positive for requeue needed during reshape + (git-fixes). +- dm ioctl: update DM_DRIVER_EMAIL to new dm-devel mailing list + (git-fixes). +- dm-raid: fix lockdep waring in "pers->hot_add_disk" + (jsc#PED-7542). +- md/raid5: fix atomicity violation in raid5_cache_count + (bsc#1219169, CVE-2024-23307). +- dm: dm-zoned: guard blkdev_zone_mgmt with noio scope + (jsc#PED-7542). +- dm-integrity, dm-verity: reduce stack usage for recheck + (jsc#PED-7542). +- dm-crypt, dm-integrity, dm-verity: bump target version + (jsc#PED-7542). +- dm-verity, dm-crypt: align "struct bvec_iter" correctly + (jsc#PED-7542). +- dm-crypt: recheck the integrity tag after a failure (git-fixes). +- dm-crypt: don't modify the data when using authenticated + encryption (git-fixes). +- dm-verity: recheck the hash after a failure (git-fixes). +- dm-integrity: recheck the integrity tag after a failure + (git-fixes). +- md: Fix missing release of 'active_io' for flush (jsc#PED-7542). +- dm-crypt, dm-verity: disable tasklets (git-fixes). +- dm writecache: allow allocations larger than 2GiB + (jsc#PED-7542). +- dm stats: limit the number of entries (jsc#PED-7542). +- md/raid1: Use blk_opf_t for read and write operations + (git-fixes). +- md: Fix md_seq_ops() regressions (git-fixes). +- md: Whenassemble the array, consult the superblock of the + freshest device (git-fixes). +- md/raid1: remove unnecessary null checking (jsc#PED-7542). +- md: synchronize flush io with array reconfiguration (git-fixes). +- commit 7042e1b + +------------------------------------------------------------------- +Mon Mar 18 14:47:14 CET 2024 - colyli@suse.de + +- md/raid5: remove rcu protection to access rdev from conf + (jsc#PED-7542). +- md/raid1: remove rcu protection to access rdev from conf + (jsc#PED-7542). +- md/raid10: remove rcu protection to access rdev from conf + (jsc#PED-7542). +- md: remove flag RemoveSynchronized (jsc#PED-7542). +- dm audit: fix Kconfig so DM_AUDIT depends on BLK_DEV_DM + (git-fixes). +- dm-integrity: don't modify bio's immutable bio_vec in + integrity_metadata() (git-fixes). +- commit 1587009 + +------------------------------------------------------------------- +Mon Mar 18 14:40:15 CET 2024 - colyli@suse.de + +- raid1: fix use-after-free for original bio in + raid1_write_request() (bsc#1221097). +- commit 296098e + +------------------------------------------------------------------- +Mon Mar 18 14:20:52 CET 2024 - mfranc@suse.cz + +- Update + patches.suse/s390-ptrace-handle-setting-of-fpc-register-correctly.patch + (git-fixes bsc#1219812 CVE-2023-52598 bsc#1221060). +- commit 0d496e7 + +------------------------------------------------------------------- +Mon Mar 18 14:18:36 CET 2024 - mfranc@suse.cz + +- Update + patches.suse/s390-vfio-ap-always-filter-entire-AP-matrix.patch + (git-fixes bsc#1218988 CVE-2024-26620 bsc#1221298). +- commit b046ad1 + +------------------------------------------------------------------- +Mon Mar 18 12:35:48 CET 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add testcases for tailcall infinite loop fixing + (git-fixes). +- bpf, x64: Fix tailcall infinite loop (git-fixes). +- selftests/bpf: Correct map_fd to data_fd in tailcalls + (git-fixes). +- commit 1302854 + +------------------------------------------------------------------- +Mon Mar 18 11:00:57 CET 2024 - spradhan@suse.de + +- btrfs: preallocate temporary extent buffer for inode logging when needed (bsc#1217362). +- commit c7ccbf0 + +------------------------------------------------------------------- +Mon Mar 18 09:42:34 CET 2024 - tiwai@suse.de + +- i3c: dw: Disable IBI IRQ depends on hot-join and SIR enabling + (git-fixes). +- watchdog: stm32_iwdg: initialize default timeout (git-fixes). +- watchdog: starfive: Check pm_runtime_enabled() before + decrementing usage counter (git-fixes). +- commit 357d510 + +------------------------------------------------------------------- +Sat Mar 16 15:52:28 CET 2024 - tiwai@suse.de + +- of: make for_each_property_of_node() available to to !OF + (git-fixes). +- mtd: rawnand: Constrain even more when continuous reads are + enabled (git-fixes). +- mtd: rawnand: Fix and simplify again the continuous read + derivations (git-fixes). +- mtd: rawnand: lpc32xx_mlc: fix irq handler prototype + (git-fixes). +- mtd: rawnand: meson: fix scrambling mode value in command macro + (git-fixes). +- mtd: maps: physmap-core: fix flash size larger than 32-bit + (git-fixes). +- media: usbtv: Remove useless locks in usbtv_video_free() + (git-fixes). +- media: ttpci: fix two memleaks in budget_av_attach (git-fixes). +- media: go7007: fix a memleak in go7007_load_encoder (git-fixes). +- media: dvb-frontends: avoid stack overflow warnings with clang + (git-fixes). +- media: pvrusb2: fix uaf in pvr2_context_set_notify (git-fixes). +- media: i2c: imx290: Fix IMX920 typo (git-fixes). +- media: pvrusb2: fix pvr2_stream_callback casts (git-fixes). +- media: pvrusb2: remove redundant NULL check (git-fixes). +- media: go7007: add check of return value of go7007_read_addr() + (git-fixes). +- media: imx: csc/scaler: fix v4l2_ctrl_handler memory leak + (git-fixes). +- media: sun8i-di: Fix chroma difference threshold (git-fixes). +- media: sun8i-di: Fix power on/off sequences (git-fixes). +- media: sun8i-di: Fix coefficient writes (git-fixes). +- media: cedrus: h265: Fix configuring bitstream size (git-fixes). +- media: edia: dvbdev: fix a use-after-free (git-fixes). +- media: nxp: imx8-isi: Check whether crossbar pad is non-NULL + before access (git-fixes). +- media: mc: Add local pad to pipeline regardless of the link + state (git-fixes). +- net: lan78xx: fix runtime PM count underflow on link stop + (git-fixes). +- commit 9b93c7d + +------------------------------------------------------------------- +Sat Mar 16 15:44:22 CET 2024 - tiwai@suse.de + +- clk: renesas: r8a779g0: Correct PFC/GPIO parent clocks + (git-fixes). +- commit 0b0c529 + +------------------------------------------------------------------- +Sat Mar 16 15:39:58 CET 2024 - tiwai@suse.de + +- crypto: jitter - fix CRYPTO_JITTERENTROPY help text (git-fixes). +- crypto: qat - remove double initialization of value (git-fixes). +- crypto: qat - avoid division by zero (git-fixes). +- crypto: qat - removed unused macro in adf_cnv_dbgfs.c + (git-fixes). +- crypto: qat - remove unused macros in qat_comp_alg.c + (git-fixes). +- crypto: ccp - Avoid discarding errors in + psp_send_platform_access_msg() (git-fixes). +- crypto: arm/sha - fix function cast warnings (git-fixes). +- crypto: qat - resolve race condition during AER recovery + (git-fixes). +- crypto: qat - change SLAs cleanup flow at shutdown (git-fixes). +- crypto: xilinx - call finalize with bh disabled (git-fixes). +- clk: imx: imx8mp: Fix SAI_MCLK_SEL definition (git-fixes). +- clk: samsung: exynos850: Propagate SPI IPCLK rate change + (git-fixes). +- clk: Fix clk_core_get NULL dereference (git-fixes). +- clk: qcom: mmcc-msm8974: fix terminating of frequency table + arrays (git-fixes). +- clk: qcom: mmcc-apq8084: fix terminating of frequency table + arrays (git-fixes). +- clk: qcom: gcc-ipq9574: fix terminating of frequency table + arrays (git-fixes). +- clk: qcom: gcc-ipq8074: fix terminating of frequency table + arrays (git-fixes). +- clk: qcom: gcc-ipq6018: fix terminating of frequency table + arrays (git-fixes). +- clk: qcom: dispcc-sdm845: Adjust internal GDSC wait times + (git-fixes). +- clk: qcom: gcc-sdm845: Add soft dependency on rpmhpd + (git-fixes). +- clk: meson: Add missing clocks to axg_clk_regmaps (git-fixes). +- clk: keystone: sci-clk: Adding support for non contiguous clocks + (git-fixes). +- clk: mediatek: mt7981-topckgen: flag SGM_REG_SEL as critical + (git-fixes). +- clk: mediatek: mt8183: Correct parent of CLK_INFRA_SSPM_32K_SELF + (git-fixes). +- clk: mediatek: mt8135: Fix an error handling path in + clk_mt8135_apmixed_probe() (git-fixes). +- clk: hisilicon: hi3559a: Fix an erroneous devm_kfree() + (git-fixes). +- clk: hisilicon: hi3519: Release the correct number of gates + in hi3519_clk_unregister() (git-fixes). +- clk: zynq: Prevent null pointer dereference caused by kmalloc + failure (git-fixes). +- clk: renesas: r8a779f0: Correct PFC/GPIO parent clock + (git-fixes). +- media: v4l2-mem2mem: fix a memleak in v4l2_m2m_register_entity + (git-fixes). +- media: v4l2-tpg: fix some memleaks in tpg_alloc (git-fixes). +- media: em28xx: annotate unchecked call to + media_device_register() (git-fixes). +- media: videobuf2: Fix doc comment (git-fixes). +- media: xc4000: Fix atomicity violation in xc4000_get_frequency + (git-fixes). +- media: staging: ipu3-imgu: Set fields before + media_entity_pads_init() (git-fixes). +- commit df2e5ae + +------------------------------------------------------------------- +Fri Mar 15 18:14:47 CET 2024 - ailiop@suse.com + +- xfs: shrink failure needs to hold AGI buffer (git-fixes). +- commit e670f77 + +------------------------------------------------------------------- +Fri Mar 15 18:11:09 CET 2024 - ailiop@suse.com + +- xfs: fix imprecise logic in xchk_btree_check_block_owner + (git-fixes). +- commit 24972c0 + +------------------------------------------------------------------- +Fri Mar 15 18:09:50 CET 2024 - ailiop@suse.com + +- xfs: fix SEEK_HOLE/DATA for regions with active COW extents + (git-fixes). +- commit 4197ae0 + +------------------------------------------------------------------- +Fri Mar 15 18:07:59 CET 2024 - ailiop@suse.com + +- xfs: ensure submit buffers on LSN boundaries in error handlers + (git-fixes). +- commit c23fb7a + +------------------------------------------------------------------- +Fri Mar 15 18:05:51 CET 2024 - mgorman@suse.de + +- printk: Monolithic bring printk up to date with v6.6-rt25 + (SLE Realtime Extension). +- serial: 8250_bcm7271: improve bcm7271 8250 port (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- 8250_men_mcb: fix error handling in + read_uarts_available_from_reg() (bsc#1214683 (PREEMPT_RT + prerequisite backports)). +- tty: serial: 8250: Define earlycon for mrvl,mmp-uart + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- 8250_men_mcb: Make UART config auto configurable (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- 8250_men_mcb: Read num ports from register data (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- 8250_men_mcb: Add clockrate speed for G215/F215 boards + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: 8250_rt288x: Remove unnecessary UART_REG_UNMAPPED + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: 8250_rt288x: Name non-standard divisor latch reg + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: 8250: Allow using ports higher than + SERIAL_8250_RUNTIME_UARTS (bsc#1214683 (PREEMPT_RT prerequisite + backports)). +- cpuidle: Use local_clock_noinstr() (bsc#1214683 (PREEMPT_RT + prerequisite backports)). +- sched/clock: Provide local_clock_noinstr() (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- x86/tsc: Provide sched_clock_noinstr() (bsc#1214683 (PREEMPT_RT + prerequisite backports)). +- math64: Always inline u128 version of mul_u64_u64_shr() + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- s390/time: Provide sched_clock_noinstr() (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- arm64/arch_timer: Provide noinstr sched_clock_read() functions + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- arm64/io: Always inline all of __raw_{read,write}[bwlq]() + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- time/sched_clock: Provide sched_clock_noinstr() (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- seqlock/latch: Provide raw_read_seqcount_latch_retry() + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- commit e346663 + +------------------------------------------------------------------- +Fri Mar 15 18:04:47 CET 2024 - ailiop@suse.com + +- afs: Fix endless loop in directory parsing (git-fixes). +- commit d1332b9 + +------------------------------------------------------------------- +Fri Mar 15 18:04:10 CET 2024 - ailiop@suse.com + +- afs: Increase buffer size in afs_update_volume_status() + (git-fixes). +- commit a954f43 + +------------------------------------------------------------------- +Fri Mar 15 17:57:32 CET 2024 - ailiop@suse.com + +- nilfs2: fix hang in nilfs_lookup_dirty_data_buffers() + (git-fixes). +- commit 6c3b10c + +------------------------------------------------------------------- +Fri Mar 15 17:54:24 CET 2024 - ailiop@suse.com + +- nilfs2: convert nilfs_page_mkwrite() to use a folio (git-fixes). +- commit 29291de + +------------------------------------------------------------------- +Fri Mar 15 17:51:31 CET 2024 - ailiop@suse.com + +- erofs: fix handling kern_mount() failure (git-fixes). +- commit ea16f48 + +------------------------------------------------------------------- +Fri Mar 15 17:49:51 CET 2024 - ailiop@suse.com + +- erofs: Don't use certain unnecessary folio_*() functions + (git-fixes). +- commit 021c910 + +------------------------------------------------------------------- +Fri Mar 15 17:47:43 CET 2024 - ailiop@suse.com + +- erofs: fix refcount on the metabuf used for inode lookup + (git-fixes). +- commit 0bf0150 + +------------------------------------------------------------------- +Fri Mar 15 17:46:24 CET 2024 - ailiop@suse.com + +- erofs: clean up zmap.c (git-fixes). +- commit 3625a10 + +------------------------------------------------------------------- +Fri Mar 15 17:44:06 CET 2024 - ailiop@suse.com + +- erofs: fix up compacted indexes for block size < 4096 + (git-fixes). +- commit 458bf09 + +------------------------------------------------------------------- +Fri Mar 15 17:43:22 CET 2024 - ailiop@suse.com + +- erofs: fix memory leak on short-lived bounced pages (git-fixes). +- commit 5efbfc4 + +------------------------------------------------------------------- +Fri Mar 15 17:42:35 CET 2024 - vkarasulli@suse.de + +- iommu/amd: Fix failure return from snp_lookup_rmpentry() + (git-fixes). +- commit 536001e + +------------------------------------------------------------------- +Fri Mar 15 17:42:14 CET 2024 - ailiop@suse.com + +- erofs: allow empty device tags in flatdev mode (git-fixes). +- commit c8ff154 + +------------------------------------------------------------------- +Fri Mar 15 17:20:57 CET 2024 - vkarasulli@suse.de + +- iommu/vt-d: Don't issue ATS Invalidation request when device + is disconnected (git-fixes). +- commit 5d166d5 + +------------------------------------------------------------------- +Fri Mar 15 17:05:49 CET 2024 - mkoutny@suse.com + +- net/sched: Add module alias for sch_fq_pie (bsc#1210335). +- commit 211b413 + +------------------------------------------------------------------- +Fri Mar 15 16:39:35 CET 2024 - mkoutny@suse.com + +- net/sched: Remove alias of sch_clsact (bsc#1210335). +- net/sched: Load modules via their alias (bsc#1210335). +- net/sched: Add module aliases for cls_,sch_,act_ modules + (bsc#1210335). +- net/sched: Add helper macros with module names (bsc#1210335). +- commit 2046cfc + +------------------------------------------------------------------- +Fri Mar 15 14:16:53 CET 2024 - denis.kirjanov@suse.com + +- Refresh + patches.suse/perf-pmu-events-powerpc-Update-json-mapfile-with-Power11-PVR.patch. +- commit 42a5ace + +------------------------------------------------------------------- +Fri Mar 15 14:14:19 CET 2024 - denis.kirjanov@suse.com + +- ionic: restore netdev feature bits after reset (git-fixes). +- commit 898af71 + +------------------------------------------------------------------- +Fri Mar 15 14:12:42 CET 2024 - denis.kirjanov@suse.com + +- ionic: check cmd_regs before copying in or out (git-fixes). +- commit f1dc989 + +------------------------------------------------------------------- +Fri Mar 15 14:11:19 CET 2024 - denis.kirjanov@suse.com + +- ionic: check before releasing pci regions (git-fixes). +- commit 2a1c23c + +------------------------------------------------------------------- +Fri Mar 15 14:09:42 CET 2024 - denis.kirjanov@suse.com + +- net: veth: clear GRO when clearing XDP even when down (git-fixes). +- commit 553eb02 + +------------------------------------------------------------------- +Fri Mar 15 14:08:16 CET 2024 - denis.kirjanov@suse.com + +- tun: Fix xdp_rxq_info's queue_index when detaching (git-fixes). +- commit b7d1001 + +------------------------------------------------------------------- +Fri Mar 15 14:06:31 CET 2024 - denis.kirjanov@suse.com + +- net: dpaa: fman_memac: accept phy-interface-type = "10gbase-r" in the device tree (git-fixes). +- commit 675b36c + +------------------------------------------------------------------- +Fri Mar 15 12:55:55 CET 2024 - denis.kirjanov@suse.com + +- ice: Fix ASSERT_RTNL() warning during certain scenarios (git-fixes). +- commit 8b9399e + +------------------------------------------------------------------- +Fri Mar 15 12:54:26 CET 2024 - denis.kirjanov@suse.com + +- ice: fix pin phase adjust updates on PF reset (git-fixes). +- commit ef21fc4 + +------------------------------------------------------------------- +Fri Mar 15 12:53:03 CET 2024 - denis.kirjanov@suse.com + +- ice: fix dpll periodic work data updates on PF reset (git-fixes). +- commit dc97d19 + +------------------------------------------------------------------- +Fri Mar 15 12:51:37 CET 2024 - denis.kirjanov@suse.com + +- ice: fix dpll and dpll_pin data access on PF reset (git-fixes). +- commit f610e32 + +------------------------------------------------------------------- +Fri Mar 15 12:50:05 CET 2024 - denis.kirjanov@suse.com + +- ice: fix dpll input pin phase_adjust value updates (git-fixes). +- commit cfb9c02 + +------------------------------------------------------------------- +Fri Mar 15 12:48:40 CET 2024 - denis.kirjanov@suse.com + +- ice: fix connection state of DPLL and out pin (git-fixes). +- commit 7176021 + +------------------------------------------------------------------- +Fri Mar 15 12:47:05 CET 2024 - denis.kirjanov@suse.com + +- net: sparx5: Add spinlock for frame transmission from CPU (git-fixes). +- commit 2486a16 + +------------------------------------------------------------------- +Fri Mar 15 12:45:34 CET 2024 - denis.kirjanov@suse.com + +- gtp: fix use-after-free and null-ptr-deref in gtp_genl_dump_pdp() (git-fixes). +- commit 86d216d + +------------------------------------------------------------------- +Fri Mar 15 12:43:57 CET 2024 - denis.kirjanov@suse.com + +- net: ipa: don't overrun IPA suspend interrupt registers (git-fixes). +- commit 7f00d73 + +------------------------------------------------------------------- +Fri Mar 15 12:38:58 CET 2024 - denis.kirjanov@suse.com + +- ethernet: cpts: fix function pointer cast warnings (git-fixes). +- commit d241bc1 + +------------------------------------------------------------------- +Fri Mar 15 12:35:48 CET 2024 - denis.kirjanov@suse.com + +- net: ethernet: ti: cpsw_new: enable mac_managed_pm to fix mdio (git-fixes). +- commit 229f845 + +------------------------------------------------------------------- +Fri Mar 15 12:34:13 CET 2024 - denis.kirjanov@suse.com + +- ppp_async: limit MRU to 64K (git-fixes). +- commit 463471e + +------------------------------------------------------------------- +Fri Mar 15 12:32:46 CET 2024 - denis.kirjanov@suse.com + +- nfp: enable NETDEV_XDP_ACT_REDIRECT feature flag (git-fixes). +- commit 36e79a9 + +------------------------------------------------------------------- +Fri Mar 15 09:19:37 CET 2024 - tiwai@suse.de + +- ALSA: hda/tas2781: remove unnecessary runtime_pm calls + (git-fixes). +- ALSA: hda/realtek - ALC236 fix volume mute & mic mute LED on + some HP models (git-fixes). +- ALSA: hda/realtek: fix ALC285 issues on HP Envy x360 laptops + (git-fixes). +- ALSA: hda: Reuse for_each_pcm_streams() (git-fixes). +- ALSA: usb-audio: Name feature ctl using output if input is PCM + (git-fixes). +- commit fdd39ea + +------------------------------------------------------------------- +Fri Mar 15 09:15:01 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Add quirks for various HP ENVY models + (git-fixes). +- commit 62207c4 + +------------------------------------------------------------------- +Fri Mar 15 09:12:54 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Add "Intel Reference board" SSID in the + ALC256 (git-fixes). +- ALSA: hda/realtek: Remove two HP Laptops using CS35L41 + (git-fixes). +- ALSA: hda: cs35l41: Support HP models without _DSD using dual + Speaker ID (git-fixes). +- ALSA: hda: cs35l41: Support additional HP Envy Models + (git-fixes). +- ALSA: hda/realtek: Add quirks for HP G11 Laptops using CS35L56 + (git-fixes). +- ALSA: hda: realtek: Re-work CS35L41 fixups to re-use for other + amps (git-fixes). +- commit c4f7d5a + +------------------------------------------------------------------- +Fri Mar 15 08:28:03 CET 2024 - tiwai@suse.de + +- nilfs2: prevent kernel bug at submit_bh_wbc() (git-fixes). +- nilfs2: fix failure to detect DAT corruption in btree and + direct mappings (git-fixes). +- selftests/mm: protection_keys: save/restore nr_hugepages + settings (git-fixes). +- selftests/mm: hugetlb_reparenting_test: do not unmount + (git-fixes). +- selftests/mm: dont fail testsuite due to a lack of hugepages + (git-fixes). +- modules: wait do_free_init correctly (git-fixes). +- PCI: qcom: Enable BDF to SID translation properly (git-fixes). +- PCI: dwc: endpoint: Fix advertised resizable BAR size + (git-fixes). +- PCI: brcmstb: Fix broken brcm_pcie_mdio_write() polling + (git-fixes). +- PCI: switchtec: Fix an error handling path in + switchtec_pci_probe() (git-fixes). +- PCI/P2PDMA: Fix a sleeping issue in a RCU read section + (git-fixes). +- PCI: Mark 3ware-9650SE Root Port Extended Tags as broken + (git-fixes). +- PCI/DPC: Print all TLP Prefixes, not just the first (git-fixes). +- pci_iounmap(): Fix MMIO mapping leak (git-fixes). +- PCI/AER: Fix rootport attribute paths in ABI docs (git-fixes). +- platform/mellanox: mlxreg-hotplug: Remove redundant NULL-check + (git-fixes). +- platform/x86/intel/tpmi: Change vsec offset to u64 (git-fixes). +- Revert "platform/x86: asus-wmi: Support WMI event queue" + (git-fixes). +- leds: sgm3140: Add missing timer cleanup and flash gpio control + (git-fixes). +- Revert "leds: Only descend into leds directory when + CONFIG_NEW_LEDS is set" (git-fixes). +- leds: aw2013: Unlock mutex before destroying it (git-fixes). +- mfd: altera-sysmgr: Call of_node_put() only when + of_parse_phandle() takes a ref (git-fixes). +- mfd: syscon: Call of_node_put() only when of_parse_phandle() + takes a ref (git-fixes). +- pinctrl: renesas: r8a779g0: Add missing SCIF_CLK2 pin + group/function (git-fixes). +- pinctrl: mediatek: Drop bogus slew rate register range for + MT8192 (git-fixes). +- pinctrl: mediatek: Drop bogus slew rate register range for + MT8186 (git-fixes). +- HID: lenovo: Add middleclick_workaround sysfs knob for cptkbd + (git-fixes). +- HID: amd_sfh: Avoid disabling the interrupt (git-fixes). +- commit a95f20c + +------------------------------------------------------------------- +Fri Mar 15 08:23:42 CET 2024 - tiwai@suse.de + +- ALSA: usb-audio: Stop parsing channels bits when all channels + are found (git-fixes). +- ALSA: aaci: Delete unused variable in aaci_do_suspend + (git-fixes). +- ASoC: meson: axg-tdm-interface: add frame rate constraint + (git-fixes). +- ASoC: meson: axg-tdm-interface: fix mclk setup without mclk-fs + (git-fixes). +- ASoC: SOF: Add some bounds checking to firmware data + (git-fixes). +- ASoC: meson: t9015: fix function pointer type mismatch + (git-fixes). +- ASoC: meson: aiu: fix function pointer type mismatch + (git-fixes). +- ASoC: sh: rz-ssi: Fix error message print (git-fixes). +- ASoC: SOF: amd: Fix memory leak in amd_sof_acp_probe() + (git-fixes). +- ASoC: amd: acp: Add missing error handling in sof-mach + (git-fixes). +- ALSA: hda/tas2781: restore power state after system_resume + (git-fixes). +- ALSA: hda/tas2781: do not call pm_runtime_force_* in + system_resume/suspend (git-fixes). +- ALSA: hda/tas2781: do not reset cur_* values in runtime_suspend + (git-fixes). +- ALSA: hda/tas2781: add lock to system_suspend (git-fixes). +- ALSA: hda/tas2781: use dev_dbg in system_resume (git-fixes). +- ALSA: seq: fix function cast warnings (git-fixes). +- ALSA: aw2: avoid casting function pointers (git-fixes). +- ALSA: ctxfi: avoid casting function pointers (git-fixes). +- ALSA: hda: cs35l41: Set Channel Index correctly when system + is missing _DSD (git-fixes). +- backlight: lp8788: Fully initialize backlight_properties during + probe (git-fixes). +- backlight: lm3639: Fully initialize backlight_properties during + probe (git-fixes). +- backlight: da9052: Fully initialize backlight_properties during + probe (git-fixes). +- backlight: lm3630a: Don't set bl->props.brightness in + get_brightness (git-fixes). +- backlight: lm3630a: Initialize backlight_properties on init + (git-fixes). +- backlight: ktz8866: Correct the check for of_property_read_u32 + (git-fixes). +- backlight: hx8357: Fix potential NULL pointer dereference + (git-fixes). +- gpio: nomadik: fix offset bug in nmk_pmx_set() (git-fixes). +- HID: amd_sfh: Update HPD sensor structure elements (git-fixes). +- commit 428d278 + +------------------------------------------------------------------- +Thu Mar 14 17:43:21 CET 2024 - tiwai@suse.de + +- Update patch reference for IDXD fix (bsc#1221428) +- commit 20b42d0 + +------------------------------------------------------------------- +Thu Mar 14 16:44:44 CET 2024 - nik.borisov@suse.com + +- KVM/x86: Export RFDS_NO and RFDS_CLEAR to guests (bsc#1213456 CVE-2023-28746). +- commit a59ffeb + +------------------------------------------------------------------- +Thu Mar 14 16:44:27 CET 2024 - nik.borisov@suse.com + +- x86/rfds: Mitigate Register File Data Sampling (RFDS) (bsc#1213456 CVE-2023-28746). +- commit c210394 + +------------------------------------------------------------------- +Thu Mar 14 16:43:01 CET 2024 - nik.borisov@suse.com + +- Documentation/hw-vuln: Add documentation for RFDS (bsc#1213456 CVE-2023-28746). +- commit 0f1938a + +------------------------------------------------------------------- +Thu Mar 14 16:41:56 CET 2024 - nik.borisov@suse.com + +- x86/mmio: Disable KVM mitigation when X86_FEATURE_CLEAR_CPU_BUF is set (bsc#1213456 CVE-2023-28746). +- commit 52997cc + +------------------------------------------------------------------- +Thu Mar 14 16:05:39 CET 2024 - vkarasulli@suse.de + +- iommu/amd: Mark interrupt as managed (git-fixes). +- commit 5ef4be8 + +------------------------------------------------------------------- +Thu Mar 14 15:07:40 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Refactor devicetree for OSM-S module and (git-fixes) +- commit 0049d8d + +------------------------------------------------------------------- +Thu Mar 14 14:54:18 CET 2024 - msuchanek@suse.de + +- Update ppc64le kabi files. +- commit 5c9702d + +------------------------------------------------------------------- +Thu Mar 14 12:45:19 CET 2024 - iivanov@suse.de + +- arm64: dts: sprd: Change UMS512 idle-state nodename to match bindings (git-fixes) +- commit 58013ba + +------------------------------------------------------------------- +Thu Mar 14 12:43:39 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: drop rockchip,trcm-sync-tx-only from rk3588 i2s (git-fixes) +- commit b287ab6 + +------------------------------------------------------------------- +Thu Mar 14 12:42:15 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: fix reset-names for rk356x i2s2 controller (git-fixes) +- commit bfdd563 + +------------------------------------------------------------------- +Thu Mar 14 12:41:07 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: add missing interrupt-names for rk356x vdpu (git-fixes) +- commit b9c1de2 + +------------------------------------------------------------------- +Thu Mar 14 12:39:52 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mp: Set SPI NOR to max 40 MHz on Data Modul i.MX8M (git-fixes) +- commit 5a00002 + +------------------------------------------------------------------- +Thu Mar 14 12:38:28 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-venice-gw71xx: fix USB OTG VBUS (git-fixes) +- commit a9642be + +------------------------------------------------------------------- +Thu Mar 14 12:36:58 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Fix OSM-S devicetrees to match latest (git-fixes) +- commit d17e1b2 + +------------------------------------------------------------------- +Thu Mar 14 12:35:11 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Fix interrupt for RTC on OSM-S i.MX8MM (git-fixes) +- commit 63e3e05 + +------------------------------------------------------------------- +Thu Mar 14 12:34:07 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pull resistors for SD card (git-fixes) +- commit 645b123 + +------------------------------------------------------------------- +Thu Mar 14 12:32:48 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pull resistors for SD card (git-fixes) +- commit 63490f6 + +------------------------------------------------------------------- +Thu Mar 14 12:31:50 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pullups for onboard UART signals (git-fixes) +- commit 980bc4a + +------------------------------------------------------------------- +Thu Mar 14 12:30:45 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pullups for onboard UART signals (git-fixes) +- commit 3a04f44 + +------------------------------------------------------------------- +Thu Mar 14 12:29:49 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pullups for I2C signals on SL/BL (git-fixes) +- commit d23e2ff + +------------------------------------------------------------------- +Thu Mar 14 12:28:37 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pullups for I2C signals on OSM-S (git-fixes) +- commit e658d8c + +------------------------------------------------------------------- +Thu Mar 14 12:27:31 CET 2024 - iivanov@suse.de + +- arm64: dts: allwinner: h6: Add RX DMA channel for SPDIF (git-fixes) +- commit 8098072 + +------------------------------------------------------------------- +Thu Mar 14 12:26:09 CET 2024 - iivanov@suse.de + +- arm64: tegra: Fix Tegra234 MGBE power-domains (git-fixes) +- commit 58db13b + +------------------------------------------------------------------- +Thu Mar 14 12:24:54 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mp: Fix LDB clocks property (git-fixes) +- commit 8815925 + +------------------------------------------------------------------- +Thu Mar 14 12:22:28 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: set num-cs property for spi on px30 (git-fixes) +- commit ac8cd44 + +------------------------------------------------------------------- +Thu Mar 14 12:21:26 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mp: Disable UART4 by default on Data Modul i.MX8M (git-fixes) +- commit d39bc86 + +------------------------------------------------------------------- +Thu Mar 14 12:20:00 CET 2024 - iivanov@suse.de + +- arm64: dts: sprd: Add clock reference for pll2 on UMS512 (git-fixes) +- commit 8ef3da3 + +------------------------------------------------------------------- +Thu Mar 14 12:19:00 CET 2024 - iivanov@suse.de + +- arm64: zynqmp: Fix clock node name in kv260 cards (git-fixes) +- commit 49dfade + +------------------------------------------------------------------- +Thu Mar 14 12:17:48 CET 2024 - iivanov@suse.de + +- arm64: zynqmp: Move fixed clock to / for kv260 (git-fixes) +- commit 8a08b0f + +------------------------------------------------------------------- +Thu Mar 14 11:09:55 CET 2024 - lhenriques@suse.de + +- libceph: init the cursor when preparing sparse read in msgr2 + (bsc#1221393). +- ceph: switch to corrected encoding of max_xattr_size in mdsmap + (bsc#1221392). +- ceph: prevent use-after-free in encode_cap_msg() (bsc#1221391). +- libceph: just wait for more data to be available on the socket + (bsc#1221390). +- libceph: rename read_sparse_msg_*() to + read_partial_sparse_msg_*() (bsc#1221389). +- libceph: fail sparse-read if the data length doesn't match + (bsc#1221388). +- commit 088fe3e + +------------------------------------------------------------------- +Thu Mar 14 10:55:48 CET 2024 - iivanov@suse.de + +- Make NVIDIA Grace-Hopper TPM related drivers build-ins (bsc#1221156) +- commit 32745a0 + +------------------------------------------------------------------- +Thu Mar 14 10:16:37 CET 2024 - tiwai@suse.de + +- kabi/severities: ignore intel_tcc_get_temp() change (git-fixes) +- commit 62d327d + +------------------------------------------------------------------- +Thu Mar 14 10:13:54 CET 2024 - tiwai@suse.de + +- thermal/intel: Fix intel_tcc_get_temp() to support negative + CPU temperature (git-fixes). +- commit 6dc4a23 + +------------------------------------------------------------------- +Thu Mar 14 10:12:16 CET 2024 - tiwai@suse.de + +- memfd: drop warning for missing exec-related flags + (bsc#1221161). +- commit 68995fe + +------------------------------------------------------------------- +Thu Mar 14 08:15:06 CET 2024 - tiwai@suse.de + +- gpiolib: Pass consumer device through to core in + devm_fwnode_gpiod_get_index() (git-fixes). +- commit 446d465 + +------------------------------------------------------------------- +Thu Mar 14 08:13:52 CET 2024 - tiwai@suse.de + +- drm/msm/dpu: add division of drm_display_mode's hskew parameter + (git-fixes). +- media: tc358743: register v4l2 async device only after + successful setup (git-fixes). +- tpm,tpm_tis: Avoid warning splat at shutdown (git-fixes). +- powercap: dtpm_cpu: Fix error check against + freq_qos_add_request() (git-fixes). +- powercap: intel_rapl_tpmi: Fix a register bug (git-fixes). +- powercap: intel_rapl: Fix a NULL pointer dereference + (git-fixes). +- PM: sleep: wakeirq: fix wake irq warning in system suspend + (git-fixes). +- PM: suspend: Set mem_sleep_current during kernel command line + setup (git-fixes). +- selftest: gpio: remove obsolete gpio-mockup test (git-fixes). +- gpio: vf610: allow disabling the vf610 driver (git-fixes). +- regulator: userspace-consumer: add module device table + (git-fixes). +- mmc: core: Fix switch on gp3 partition (git-fixes). +- mmc: wmt-sdmmc: remove an incorrect release_mem_region() + call in the .remove function (git-fixes). +- mmc: tmio: avoid concurrent runs of mmc_request_done() + (git-fixes). +- pwm: mediatek: Update kernel doc for struct pwm_mediatek_of_data + (git-fixes). +- pwm: sti: Fix capture for st,pwm-num-chan < st,capture-num-chan + (git-fixes). +- commit 7ae9bb9 + +------------------------------------------------------------------- +Thu Mar 14 08:07:55 CET 2024 - tiwai@suse.de + +- Add cherry-picked id to amdgpu patch +- commit 1ec0805 + +------------------------------------------------------------------- +Thu Mar 14 08:05:50 CET 2024 - tiwai@suse.de + +- drm/etnaviv: Restore some id values (git-fixes). +- drm/amd/pm: Fix esm reg mask use to get pcie speed (git-fixes). +- drm/amdgpu: Fix missing break in ATOM_ARG_IMM Case of + atom_get_src_int() (git-fixes). +- Revert "drm/amdgpu: Add pcie usage callback to nbio" + (git-fixes). +- Revert "drm/amdgpu: Add pci usage to nbio v7.9" (git-fixes). +- drm/msm/a7xx: Fix LLC typo (git-fixes). +- drm/msm/dpu: finalise global state object (git-fixes). +- drm/msm/dpu: Only enable DSC_MODE_MULTIPLEX if dsc_merge is + enabled (git-fixes). +- drm/msm/dpu: fix the programming of INTF_CFG2_DATA_HCTL_EN + (git-fixes). +- drm/msm/dpu: improve DSC allocation (git-fixes). +- drm/mediatek: Fix a null pointer crash in + mtk_drm_crtc_finish_page_flip (git-fixes). +- drm/mediatek: dsi: Fix DSI RGB666 formats and definitions + (git-fixes). +- drm/tests: helpers: Include missing drm_drv header (git-fixes). +- drm/tidss: Fix sync-lost issue with two displays (git-fixes). +- drm/tidss: Fix initial plane zpos values (git-fixes). +- drm/tegra: put drm_gem_object ref on error in tegra_fb_create + (git-fixes). +- drm/bridge: adv7511: fix crash on irq during probe (git-fixes). +- drm/panel: boe-tv101wum-nl6: make use of prepare_prev_first + (git-fixes). +- drm/amd/display: Add 'replay' NULL check in + 'edp_set_replay_allow_active()' (git-fixes). +- drm/amd/display: fix NULL checks for adev->dm.dc in + amdgpu_dm_fini() (git-fixes). +- drm/radeon/ni: Fix wrong firmware size logging in + ni_init_microcode() (git-fixes). +- drm: ci: use clk_ignore_unused for apq8016 (git-fixes). +- Revert "drm/i915/xe2lpd: Treat cursor plane as regular plane + for DDB allocation" (git-fixes). +- drm/amdgpu: Fix potential out-of-bounds access in + 'amdgpu_discovery_reg_base_init()' (git-fixes). +- drm/amd/display: Fix potential NULL pointer dereferences in + 'dcn10_set_output_transfer_func()' (git-fixes). +- drm/amd/display: Fix a potential buffer overflow in + 'dp_dsc_clock_en_read()' (git-fixes). +- drm/radeon/ni_dpm: remove redundant NULL check (git-fixes). +- drm/radeon: remove dead code in ni_mc_load_microcode() + (git-fixes). +- drm/vmwgfx: Fix the lifetime of the bo cursor memory + (git-fixes). +- drm/vmwgfx: Fix vmw_du_get_cursor_mob fencing of newly-created + MOBs (git-fixes). +- drm/vmwgfx: Fix possible null pointer derefence with invalid + contexts (git-fixes). +- drm/lima: fix a memleak in lima_heap_alloc (git-fixes). +- drm/panel-edp: use put_sync in unprepare (git-fixes). +- drm/rockchip: lvds: do not print scary message when probing + defer (git-fixes). +- drm/rockchip: lvds: do not overwrite error code (git-fixes). +- drm/vmwgfx: Unmap the surface before resetting it on a plane + state (git-fixes). +- drm/vmwgfx: fix a memleak in vmw_gmrid_man_get_node (git-fixes). +- drm/vkms: Avoid reading beyond LUT array (git-fixes). +- drm: Don't treat 0 as -1 in drm_fixp2int_ceil (git-fixes). +- drm/rockchip: inno_hdmi: Fix video timing (git-fixes). +- drm/tegra: output: Fix missing i2c_put_adapter() in the error + handling paths of tegra_output_probe() (git-fixes). +- drm/tegra: rgb: Fix missing clk_put() in the error handling + paths of tegra_dc_rgb_probe() (git-fixes). +- drm/tegra: rgb: Fix some error handling paths in + tegra_dc_rgb_probe() (git-fixes). +- drm/tegra: hdmi: Fix some error handling paths in + tegra_hdmi_probe() (git-fixes). +- drm/tegra: dsi: Fix missing pm_runtime_disable() in the error + handling path of tegra_dsi_probe() (git-fixes). +- drm/tegra: dsi: Fix some error handling paths in + tegra_dsi_probe() (git-fixes). +- drm/tegra: dpaux: Fix PM disable depth imbalance in + tegra_dpaux_probe (git-fixes). +- drm/tegra: dsi: Add missing check for of_find_device_by_node + (git-fixes). +- ACPI: processor_idle: Fix memory leak in + acpi_processor_power_exit() (git-fixes). +- ACPI: resource: Add MAIBENBEN X577 to + irq1_edge_low_force_override (git-fixes). +- ACPI: scan: Fix device check notification handling (git-fixes). +- ACPI: CPPC: enable AMD CPPC V2 support for family 17h processors + (git-fixes). +- cpufreq: qcom-hw: add CONFIG_COMMON_CLK dependency (git-fixes). +- cpufreq: brcmstb-avs-cpufreq: add check for cpufreq_cpu_get's + return value (git-fixes). +- cpufreq: Limit resolving a frequency to policy min/max + (git-fixes). +- cpufreq: amd-pstate: Fix min_perf assignment in + amd_pstate_adjust_perf() (git-fixes). +- commit 451635c + +------------------------------------------------------------------- +Thu Mar 14 07:48:20 CET 2024 - nik.borisov@suse.com + +- RAS: Export helper to get ras_debugfs_dir (jsc#PED-7619). +- commit ddeebbf + +------------------------------------------------------------------- +Wed Mar 13 20:23:05 CET 2024 - msuchanek@suse.de + +- powerpc/64s: Fix get_hugepd_cache_index() build failure + (bsc#1215199). +- powerpc: Remove cpu-as-y completely (bsc#1215199). +- powerpc/64s: Use .machine power4 around dcbt (bsc#1215199). +- powerpc/64s: Move dcbt/dcbtst sequence into a macro + (bsc#1215199). +- powerpc/pseries: Fix potential memleak in papr_get_attr() + (bsc#1215199). +- powerpc/kprobes: Handle error returned by set_memory_rox() + (bsc#1215199). +- powerpc: Implement set_memory_rox() (bsc#1215199). +- powerpc: Use user_mode() macro when possible (bsc#1215199). +- powerpc/rtas: use correct function name for resetting TCE tables + (bsc#1215199). +- commit 35dba53 + +------------------------------------------------------------------- +Wed Mar 13 17:44:47 CET 2024 - fdmanana@suse.com + +- btrfs: avoid copying BTRFS_ROOT_SUBVOL_DEAD flag to snapshot + of subvolume being deleted (bsc#1221282). +- commit adc8e1b + +------------------------------------------------------------------- +Wed Mar 13 17:30:12 CET 2024 - fdmanana@suse.com + +- btrfs: don't abort filesystem when attempting to snapshot + deleted subvolume (bsc#1221282). +- commit 7de0be8 + +------------------------------------------------------------------- +Wed Mar 13 17:26:34 CET 2024 - tiwai@suse.de + +- Fix missing initial value for tcp pingpong threshold (bsc#1221339,bsc#1221305,bsc#1221032,bsc#1221261) + This caused high latencies leading to various network issues +- commit de6f6b8 + +------------------------------------------------------------------- +Wed Mar 13 15:58:37 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/FMPM: Fix off by one when unwinding on error (jsc#PED-7619). +- commit 083602e + +------------------------------------------------------------------- +Wed Mar 13 15:57:19 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/FMPM: Add debugfs interface to print record entries (jsc#PED-7619). +- commit 1a5e647 + +------------------------------------------------------------------- +Wed Mar 13 15:56:56 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/FMPM: Save SPA values (jsc#PED-7619). +- commit 4072c0c + +------------------------------------------------------------------- +Wed Mar 13 15:26:37 CET 2024 - tiwai@suse.de + +- Bluetooth: Fix eir name length (git-fixes). +- wifi: mac80211: update scratch_pos after defrag (git-fixes). +- wifi: mac80211: track capability/opmode NSS separately + (git-fixes). +- wifi: mt76: mt792x: fix a potential loading failure of the + 6Ghz channel config from ACPI (git-fixes). +- wifi: mt76: mt7921e: fix use-after-free in free_irq() + (git-fixes). +- wifi: iwlwifi: mvm: fix warnings from dmi_get_system_info() + (git-fixes). +- wifi: wilc1000: fix RCU usage in connect path (git-fixes). +- commit 76a6eff + +------------------------------------------------------------------- +Wed Mar 13 15:04:29 CET 2024 - tiwai@suse.de + +- blacklist.conf: add a BT entry that breaks kABI +- commit a6a5c3b + +------------------------------------------------------------------- +Wed Mar 13 15:02:47 CET 2024 - tiwai@suse.de + +- gpu/host1x kABI workaround (git-fixes). +- commit 86a9dbb + +------------------------------------------------------------------- +Wed Mar 13 14:53:36 CET 2024 - tiwai@suse.de + +- gpu: host1x: Skip reset assert on Tegra186 (git-fixes). +- commit 88887cf + +------------------------------------------------------------------- +Wed Mar 13 14:52:32 CET 2024 - tiwai@suse.de + +- blacklist.conf: add entries for firewire +- commit f73cdd2 + +------------------------------------------------------------------- +Wed Mar 13 14:50:58 CET 2024 - tiwai@suse.de + +- drm/nouveau: don't fini scheduler before entity flush + (git-fixes). +- commit 3d3c54d + +------------------------------------------------------------------- +Wed Mar 13 14:39:57 CET 2024 - mgorman@suse.de + +- futex: Prevent the reuse of stale pi_state (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- commit 82905f3 + +------------------------------------------------------------------- +Wed Mar 13 13:16:47 CET 2024 - mgorman@suse.de + +- drm/i915/guc: Consider also RCU depth in busy loop (SLE + Realtime Extension). +- srcu: Use try-lock lockdep annotation for NMI-safe access + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- futex/pi: Fix recursive rt_mutex waiter state (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- srcu: Remove extraneous parentheses from srcu_read_lock() etc + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- commit b354209 + +------------------------------------------------------------------- +Wed Mar 13 13:03:56 CET 2024 - mgorman@suse.de + +- srcu: Use try-lock lockdep annotation for NMI-safe access + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- futex/pi: Fix recursive rt_mutex waiter state (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- srcu: Remove extraneous parentheses from srcu_read_lock() etc + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- commit e04ae5b + +------------------------------------------------------------------- +Wed Mar 13 12:41:25 CET 2024 - tiwai@suse.de + +- Update config files: refresh for x86_64 and armv7hl +- commit 8a3dfcc + +------------------------------------------------------------------- +Wed Mar 13 10:26:22 CET 2024 - oneukum@suse.com + +- r8152: fix unknown device for choose_configuration (git-fixes). +- commit 71e2f25 + +------------------------------------------------------------------- +Wed Mar 13 10:02:23 CET 2024 - iivanov@suse.de + +- Update patches.suse/arm64-sme-Always-exit-sme_alloc-early-with-existing-.patch (git-fixes, CVE-2024-26618) + Add reference to CVE-2024-26618. +- commit 50882e3 + +------------------------------------------------------------------- +Wed Mar 13 09:27:26 CET 2024 - tiwai@suse.de + +- bluetooth hci_uart_register_device() kABI workaround + (git-fixes). +- commit 2fcc10e + +------------------------------------------------------------------- +Wed Mar 13 09:17:20 CET 2024 - tiwai@suse.de + +- net: phy: dp83822: Fix RGMII TX delay configuration (git-fixes). +- net: phy: fix phy_get_internal_delay accessing an empty array + (git-fixes). +- Bluetooth: btnxpuart: Fix btnxpuart_close (git-fixes). +- Bluetooth: af_bluetooth: Fix deadlock (git-fixes). +- Bluetooth: hci_core: Fix possible buffer overflow (git-fixes). +- Bluetooth: btrtl: fix out of bounds memory access (git-fixes). +- Bluetooth: hci_h5: Add ability to allocate memory for private + data (git-fixes). +- Bluetooth: hci_qca: don't use IS_ERR_OR_NULL() with + gpiod_get_optional() (git-fixes). +- Bluetooth: hci_event: Fix not indicating new connection for + BIG Sync (git-fixes). +- Bluetooth: Remove superfluous call to hci_conn_check_pending() + (git-fixes). +- Bluetooth: mgmt: Remove leftover queuing of power_off work + (git-fixes). +- Bluetooth: Remove HCI_POWER_OFF_TIMEOUT (git-fixes). +- wifi: brcm80211: handle pmk_op allocation failure (git-fixes). +- wifi: rtw88: 8821c: Fix false alarm count (git-fixes). +- wifi: rtw88: 8821c: Fix beacon loss and disconnect (git-fixes). +- wifi: rtw88: 8821cu: Fix firmware upload fail (git-fixes). +- wifi: mt76: mt7921: fix incorrect type conversion for CLC + command (git-fixes). +- wifi: mt76: mt7996: fix HIF_TXD_V2_1 value (git-fixes). +- wifi: mt76: mt7996: fix efuse reading issue (git-fixes). +- wifi: mt76: mt7996: fix HE beamformer phy cap for station vif + (git-fixes). +- wifi: mt76: mt7996: fix incorrect interpretation of EHT MCS caps + (git-fixes). +- wifi: mt76: mt7996: fix TWT issues (git-fixes). +- sr9800: Add check for usbnet_get_endpoints (git-fixes). +- wifi: ath12k: fix incorrect logic of calculating vdev_stats_id + (git-fixes). +- wifi: ath11k: initialize rx_mcs_80 and rx_mcs_160 before use + (git-fixes). +- wifi: ath11k: change to move WMI_VDEV_PARAM_SET_HEMU_MODE + before WMI_PEER_ASSOC_CMDID (git-fixes). +- wifi: ath9k: delay all of ath9k_wmi_event_tasklet() until init + is complete (git-fixes). +- wifi: wilc1000: revert reset line logic flip (git-fixes). +- wifi: brcmsmac: avoid function pointer casts (git-fixes). +- wifi: wilc1000: prevent use-after-free on vif when cleaning + up all interfaces (git-fixes). +- wifi: iwlwifi: mvm: Fix the listener MAC filter flags + (git-fixes). +- wifi: iwlwifi: mvm: don't set replay counters to 0xff + (git-fixes). +- wifi: iwlwifi: mvm: don't set the MFP flag for the GTK + (git-fixes). +- wifi: iwlwifi: mvm: fix erroneous queue index mask (git-fixes). +- wifi: iwlwifi: support EHT for WH (git-fixes). +- wifi: wfx: fix memory leak when starting AP (git-fixes). +- wifi: brcmsmac: Drop legacy header (git-fixes). +- wifi: libertas: fix some memleaks in lbs_allocate_cmd_buffer() + (git-fixes). +- wifi: iwlwifi: read BIOS PNVM only for non-Intel SKU + (git-fixes). +- wifi: iwlwifi: mvm: fix the TLC command after ADD_STA + (git-fixes). +- wifi: iwlwifi: mvm: use FW rate for non-data only on new devices + (git-fixes). +- wifi: iwlwifi: mvm: d3: fix IPN byte order (git-fixes). +- wifi: iwlwifi: fix EWRD table validity check (git-fixes). +- wifi: iwlwifi: mvm: initialize rates in FW earlier (git-fixes). +- wifi: iwlwifi: acpi: fix WPFC reading (git-fixes). +- wifi: iwlwifi: dbg-tlv: ensure NUL termination (git-fixes). +- wifi: iwlwifi: mvm: report beacon protection failures + (git-fixes). +- wifi: brcmfmac: fix copyright year mentioned in platform_data + header (git-fixes). +- wifi: ath12k: Fix issues in channel list update (git-fixes). +- wifi: ath10k: fix NULL pointer dereference in + ath10k_wmi_tlv_op_pull_mgmt_tx_compl_ev() (git-fixes). +- can: softing: remove redundant NULL check (git-fixes). +- wifi: brcmfmac: avoid invalid list operation when vendor attach + fails (git-fixes). +- wifi: mwifiex: debugfs: Drop unnecessary error check for + debugfs_create_dir() (git-fixes). +- wifi: wilc1000: fix multi-vif management when deleting a vif + (git-fixes). +- wifi: wilc1000: do not realloc workqueue everytime an interface + is added (git-fixes). +- wifi: rtl8xxxu: add cancel_work_sync() for c2hcmd_work + (git-fixes). +- wifi: b43: Disable QoS for bcm4331 (git-fixes). +- wifi: b43: Stop correct queue in DMA worker when QoS is disabled + (git-fixes). +- wifi: b43: Stop/wake correct queue in PIO Tx path when QoS is + disabled (git-fixes). +- wifi: b43: Stop/wake correct queue in DMA Tx path when QoS is + disabled (git-fixes). +- doc-guide: kernel-doc: tell about object-like macros + (git-fixes). +- soc: qcom: llcc: Check return value on Broadcast_OR reg read + (git-fixes). +- soc: qcom: socinfo: rename PM2250 to PM4125 (git-fixes). +- bus: tegra-aconnect: Update dependency to ARCH_TEGRA + (git-fixes). +- firmware: arm_scmi: Fix double free in SMC transport cleanup + path (git-fixes). +- commit d454c2c + +------------------------------------------------------------------- +Wed Mar 13 08:58:39 CET 2024 - tiwai@suse.de + +- Move upstreamed patches into sorted section +- commit 5709f5a + +------------------------------------------------------------------- +Wed Mar 13 08:49:16 CET 2024 - tiwai@suse.de + +- Move upstreamed patches into sorted section +- commit 612fa2e + +------------------------------------------------------------------- +Wed Mar 13 06:13:12 CET 2024 - ddiss@suse.de + +- selinux: only filter copy-up xattrs following initialization + (bsc#1210690). +- commit f42baec + +------------------------------------------------------------------- +Wed Mar 13 01:48:09 CET 2024 - neilb@suse.de + +- NFS: Fix data corruption caused by congestion (git-fixes). +- pNFS: Fix the pnfs block driver's calculation of layoutget size + (git-fixes). +- NFSv4.1: fixup use EXCHGID4_FLAG_USE_PNFS_DS for DS server + (git-fixes). +- NFS: Fix O_DIRECT locking issues (git-fixes). +- commit b64b15f + +------------------------------------------------------------------- +Tue Mar 12 23:31:45 CET 2024 - neilb@suse.de + +- nfsd: don't take fi_lock in nfsd_break_deleg_cb() (git-fixes). +- SUNRPC: fix _xprt_switch_find_current_entry logic (git-fixes). +- NFSv4.1/pnfs: Ensure we handle the error NFS4ERR_RETURNCONFLICT + (git-fixes). +- NFS: Use parent's objective cred in nfs_access_login_time() + (git-fixes). +- blocklayoutdriver: Fix reference leak of pnfs_device_node + (git-fixes). +- SUNRPC: Fix a suspicious RCU usage warning (git-fixes). +- NFSD: Fix "start of NFS reply" pointer passed to + nfsd_cache_update() (git-fixes). +- NFSD: Update nfsd_cache_append() to use xdr_stream (git-fixes). +- nfsd: fix file memleak on client_opens_release (git-fixes). +- SUNRPC: Fix RPC client cleaned up the freed pipefs dentries + (git-fixes). +- NFSv4.1: fix SP4_MACH_CRED protection for pnfs IO (git-fixes). +- SUNRPC: Add an IS_ERR() check back to where it was (git-fixes). +- NFSv4.1: fix handling NFS4ERR_DELAY when testing for session + trunking (git-fixes). +- SUNRPC: ECONNRESET might require a rebind (git-fixes). +- svcrdma: Drop connection after an RDMA Read error (git-fixes). +- nfsd: Handle EOPENSTALE correctly in the filecache (git-fixes). +- nfsd: lock_rename() needs both directories to live on the same + fs (git-fixes). +- pNFS/flexfiles: Check the layout validity in + ff_layout_mirror_prepare_stats (git-fixes). +- pNFS: Fix a hang in nfs4_evict_inode() (git-fixes). +- NFS: Fix potential oops in nfs_inode_remove_request() + (git-fixes). +- nfs42: client needs to strip file mode's suid/sgid bit after + ALLOCATE op (git-fixes). +- nfs: decrement nrequests counter before releasing the req + (git-fixes). +- SUNRPC/TLS: Lock the lower_xprt during the tls handshake + (git-fixes). +- Revert "SUNRPC dont update timeout value on connection reset" + (git-fixes). +- NFSv4: Fix a state manager thread deadlock regression + (git-fixes). +- NFSv4: Fix a nfs4_state_manager() race (git-fixes). +- SUNRPC: Fail quickly when server does not recognize TLS + (git-fixes). +- NFSv4.1: fix zero value filehandle in post open getattr + (git-fixes). +- NFS: More fixes for nfs_direct_write_reschedule_io() + (git-fixes). +- NFS: Use the correct commit info in nfs_join_page_group() + (git-fixes). +- NFS: More O_DIRECT accounting fixes for error paths (git-fixes). +- NFS: Fix error handling for O_DIRECT write scheduling + (git-fixes). +- nfsd: fix change_info in NFSv4 RENAME replies (git-fixes). +- NFSv4.1: use EXCHGID4_FLAG_USE_PNFS_DS for DS server + (git-fixes). +- NFS: Fix a potential data corruption (git-fixes). +- NFSv4/pnfs: minor fix for cleanup path in nfs4_get_device_info + (git-fixes). +- commit e298a32 + +------------------------------------------------------------------- +Tue Mar 12 17:25:48 CET 2024 - lhenriques@suse.de + +- Update + patches.suse/ceph-fix-deadlock-or-deadcode-of-misusing-dget.patch + (bsc#1220453 bsc#1221058 CVE-2023-52583). +- commit 25befcc + +------------------------------------------------------------------- +Tue Mar 12 16:58:11 CET 2024 - mgorman@suse.de + +- sched/fair: Combine EAS check with overutilized access + (bsc#1221157). +- sched/fair: Use helper function to access rd->overutilized + (bsc#1221157). +- sched/fair: Add EAS checks before updating overutilized + (bsc#1221157). +- commit c66ccdb + +------------------------------------------------------------------- +Tue Mar 12 15:53:52 CET 2024 - lhenriques@suse.de + +- netfs, fscache: Prevent Oops in fscache_put_cache() (bsc#1221291 + CVE-2024-26612). +- commit f4e9666 + +------------------------------------------------------------------- +Tue Mar 12 14:33:40 CET 2024 - vbabka@suse.cz + +- mm, vmscan: prevent infinite loop for costly GFP_NOIO | + __GFP_RETRY_MAYFAIL allocations (git-fixes). +- commit 36fac6a + +------------------------------------------------------------------- +Tue Mar 12 12:47:04 CET 2024 - vbabka@suse.cz + +- mm: migrate high-order folios in swap cache correctly + (git-fixes). +- commit 46a5bb6 + +------------------------------------------------------------------- +Tue Mar 12 12:34:27 CET 2024 - vbabka@suse.cz + +- mm/mempolicy: fix set_mempolicy_home_node() previous VMA pointer + (git-fixes). +- commit 436bfc9 + +------------------------------------------------------------------- +Tue Mar 12 12:30:23 CET 2024 - vbabka@suse.cz + +- Refresh patches.suse/mm-mmap-fix-vma_merge-case-7.patch. +- commit 442a3e7 + +------------------------------------------------------------------- +Tue Mar 12 12:20:44 CET 2024 - denis.kirjanov@suse.com + +- bonding: return -ENOMEM instead of BUG in alb_upper_dev_walk + (git-fixes). +- commit bffce9c + +------------------------------------------------------------------- +Tue Mar 12 11:02:49 CET 2024 - denis.kirjanov@suse.com + +- nfp: flower: prevent re-adding mac index for bonded port (git-fixes). +- commit 6661999 + +------------------------------------------------------------------- +Tue Mar 12 11:01:07 CET 2024 - denis.kirjanov@suse.com + +- nfp: use correct macro for LengthSelect in BAR config (git-fixes). +- commit 7d0aeec + +------------------------------------------------------------------- +Tue Mar 12 10:59:40 CET 2024 - denis.kirjanov@suse.com + +- tsnep: Fix mapping for zero copy XDP_TX action (git-fixes). +- commit 3345825 + +------------------------------------------------------------------- +Tue Mar 12 10:57:58 CET 2024 - denis.kirjanov@suse.com + +- net: atlantic: Fix DMA mapping for PTP hwts ring (git-fixes). +- commit b00604d + +------------------------------------------------------------------- +Tue Mar 12 10:55:55 CET 2024 - denis.kirjanov@suse.com + +- netdevsim: avoid potential loop in nsim_dev_trap_report_work() (git-fixes). +- commit 57a7091 + +------------------------------------------------------------------- +Tue Mar 12 10:53:57 CET 2024 - denis.kirjanov@suse.com + +- net: stmmac: Prevent DSA tags from breaking COE (git-fixes). +- commit e8cc0c0 + +------------------------------------------------------------------- +Tue Mar 12 10:01:27 CET 2024 - tiwai@suse.de + +- Move out-of-tree patches into the right section +- commit 6624840 + +------------------------------------------------------------------- +Tue Mar 12 09:59:39 CET 2024 - tiwai@suse.de + +- Documentation: virt: Fix up pre-formatted text block for SEV + ioctls (git-fixes). +- commit b6867f0 + +------------------------------------------------------------------- +Tue Mar 12 09:59:02 CET 2024 - tiwai@suse.de + +- Move upstreamed patches into sorted section +- commit 489fc6e + +------------------------------------------------------------------- +Tue Mar 12 09:52:49 CET 2024 - tiwai@suse.de + +- crypto: ccp - Have it depend on AMD_IOMMU (git-fixes). +- rtc: test: Fix invalid format specifier (git-fixes). +- lib: memcpy_kunit: Fix an invalid format specifier in an + assertion msg (git-fixes). +- lib/cmdline: Fix an invalid format specifier in an assertion + msg (git-fixes). +- selftests/mqueue: Set timeout to 180 seconds (git-fixes). +- Documentation: coresight: fix `make refcheckdocs` warning + (git-fixes). +- commit 2c8fcdc + +------------------------------------------------------------------- +Tue Mar 12 03:32:41 CET 2024 - neilb@suse.de + +- Refresh patches.suse/nfsd-fix-RELEASE_LOCKOWNER.patch. + update mainline commit info +- commit 2c149c7 + +------------------------------------------------------------------- +Mon Mar 11 14:16:45 CET 2024 - denis.kirjanov@suse.com + +- amt: do not use overwrapped cb area (git-fixes). +- commit 1372aac + +------------------------------------------------------------------- +Mon Mar 11 14:14:14 CET 2024 - denis.kirjanov@suse.com + +- bonding: remove print in bond_verify_device_path (git-fixes). +- commit 7a54f95 + +------------------------------------------------------------------- +Mon Mar 11 14:07:35 CET 2024 - denis.kirjanov@suse.com + +- stmmac: preserve KABI in stmmac_txq_cfg (git-fixes). +- commit 034b0ac + +------------------------------------------------------------------- +Mon Mar 11 14:05:31 CET 2024 - denis.kirjanov@suse.com + +- net: stmmac: Tx coe sw fallback (git-fixes). +- commit d5cf563 + +------------------------------------------------------------------- +Mon Mar 11 13:31:45 CET 2024 - denis.kirjanov@suse.com + +- blacklist.conf: update blacklist +- commit 0889c69 + +------------------------------------------------------------------- +Mon Mar 11 11:11:02 CET 2024 - denis.kirjanov@suse.com + +- blacklist.conf: update blacklist +- commit b63446f + +------------------------------------------------------------------- +Mon Mar 11 11:03:50 CET 2024 - denis.kirjanov@suse.com + +- blacklist.conf: update blacklist +- commit ed66a82 + +------------------------------------------------------------------- +Mon Mar 11 10:46:44 CET 2024 - msuchanek@suse.de + +- powerpc/pseries/iommu: IOMMU table is not initialized for + kdump over SR-IOV (bsc#1220492 ltc#205270). +- commit 2026089 + +------------------------------------------------------------------- +Mon Mar 11 10:11:09 CET 2024 - oneukum@suse.com + +- Update + patches.suse/usb-hub-Guard-against-accesses-to-uninitialized-BOS-.patch + (bsc#1220790 CVE-2023-52477). + Added CVE +- commit 61b1ebd + ------------------------------------------------------------------- Sun Mar 10 09:34:05 CET 2024 - tiwai@suse.de @@ -157,6 +1988,15 @@ Thu Mar 7 18:15:41 CET 2024 - tonyj@suse.de Power8 Architecture (jsc#PED-7970 jsc#PED-8065). - commit b9d5dfb +------------------------------------------------------------------- +Thu Mar 7 13:24:07 CET 2024 - msuchanek@suse.de + +- group-source-files.pl: Quote filenames (boo#1221077). + The kernel source now contains a file with a space in the name. + Add quotes in group-source-files.pl to avoid splitting the filename. + Also use -print0 / -0 when updating timestamps. +- commit a005e42 + ------------------------------------------------------------------- Thu Mar 7 11:49:53 CET 2024 - msuchanek@suse.de @@ -17859,6 +19699,18 @@ Fri Feb 16 09:06:11 CET 2024 - pjakobsson@suse.de jsc#PED-5511 jsc#PED-6041 jsc#PED-6069 jsc#PED-6071) - commit c593905 +------------------------------------------------------------------- +Thu Feb 15 23:30:01 CET 2024 - svarbanov@suse.de + +- memory: tegra: add MC client for Tegra234 GPU (bsc#1221330) +- commit f5d121c + +------------------------------------------------------------------- +Thu Feb 15 23:28:11 CET 2024 - svarbanov@suse.de + +- memory: tegra: Add clients used by DRM in Tegra234 (bsc#1221330). +- commit 67c31f5 + ------------------------------------------------------------------- Thu Feb 15 19:46:39 CET 2024 - jwiesner@suse.de @@ -18741,6 +20593,12 @@ Wed Feb 14 00:50:53 CET 2024 - jgross@suse.com counter (jsc#PED-7322). - commit 50f3c68 +------------------------------------------------------------------- +Wed Feb 14 00:27:57 CET 2024 - svarbanov@suse.de + +- supported.conf: Add supported entry for stusb160x (bsc#1221330) +- commit d3bd091 + ------------------------------------------------------------------- Wed Feb 14 00:18:02 CET 2024 - jgross@suse.com @@ -50359,6 +52217,13 @@ Sat Oct 21 13:25:16 CEST 2023 - tiwai@suse.de (git-fixes). - commit 14a1c75 +------------------------------------------------------------------- +Fri Oct 20 18:50:59 CEST 2023 - mwilck@suse.com + +- qedf: Wait for stag work during unload (bsc#1214852). +- qedf: Don't process stag work during unload (bsc#1214852). +- commit dcc092a + ------------------------------------------------------------------- Fri Oct 20 18:31:53 CEST 2023 - jwiesner@suse.de @@ -52529,6 +54394,12 @@ Mon Oct 9 15:07:27 CEST 2023 - nmorey@suse.com - RDMA/mlx5: Remove not-used cache disable flag (git-fixes) - commit d265793 +------------------------------------------------------------------- +Mon Oct 9 12:38:03 CEST 2023 - schwab@suse.de + +- mkspec-dtb: add toplevel symlinks also on arm +- commit ed29cae + ------------------------------------------------------------------- Mon Oct 9 11:31:46 CEST 2023 - nmorey@suse.com @@ -74680,11 +76551,15 @@ Wed Aug 30 10:58:12 CEST 2023 - jlee@suse.com ------------------------------------------------------------------- Wed Aug 30 10:43:48 CEST 2023 - jslaby@suse.cz +- rpm/mkspec-dtb: dtbs have moved to vendor sub-directories in 6.5 + By commit 724ba6751532 ("ARM: dts: Move .dts files to vendor + sub-directories"). + So switch to them. - rpm/mkspec-dtb: support for nested subdirs Commit 724ba6751532 ("ARM: dts: Move .dts files to vendor sub-directories") moved the dts to nested subdirs, add a support for that. That is, generate a %dir entry in %files for them. -- commit 6484eda +- commit 7aee36a ------------------------------------------------------------------- Wed Aug 30 10:34:00 CEST 2023 - jlee@suse.com diff --git a/kernel-rt_debug.spec b/kernel-rt_debug.spec index 2e119c6..bf37d6d 100644 --- a/kernel-rt_debug.spec +++ b/kernel-rt_debug.spec @@ -19,7 +19,7 @@ %define srcversion 6.4 %define patchversion 6.4.0 -%define git_commit 0d817874d18eca2fc379364350f5d8f656a563b1 +%define git_commit 1025e3e919d23ae8b2a3e5c5ad95f6804136e0e9 %define variant -rt%{nil} %define compress_modules zstd %define compress_vmlinux xz @@ -38,7 +38,7 @@ Name: kernel-rt_debug Version: 6.4.0 %if 0%{?is_kotd} -Release: .g0d81787 +Release: .g1025e3e %else Release: 0 %endif diff --git a/kernel-source-rt.changes b/kernel-source-rt.changes index d10c08b..178050c 100644 --- a/kernel-source-rt.changes +++ b/kernel-source-rt.changes @@ -1,3 +1,1834 @@ +------------------------------------------------------------------- +Fri Mar 22 17:14:57 CET 2024 - mgorman@suse.de + +- printk: nbcon: move locked_port flag to struct uart_port + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- Refresh patches.suse/printk-Update-the-printk-series.patch. +- commit 1025e3e + +------------------------------------------------------------------- +Thu Mar 21 12:03:15 CET 2024 - mgorman@suse.de + +- Update printk to v6.6.20-rt25 +- kernel/panic: Add atomic write enforcement to warn/panic (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- panic: hide unused global functions (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Add non-BKL console basic infrastructure (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Add threaded printing support for BKL consoles (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Consolidate console deferred printing (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Do not take console lock for console_flush_on_panic() (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Perform atomic flush in console_flush_on_panic() (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Rename abandon_console_lock_in_panic() to other_cpu_in_panic() (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Update the printk series (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add acquire/release logic (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add buffer management (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add emit function and callback functions for atomic printing (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add print state functions (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add printer thread wakeups (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add sequence handling (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add write context storage for atomic writes (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Introduce printer threads (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Provide functions for atomic write enforcement (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Stop threads on shutdown/reboot (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: only disable if actually unregistered (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: replace local_irq_save with local_lock for safe mode (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- proc: consoles: Add support for non-BKL consoles (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- rcu: Add atomic write enforcement for rcu stalls (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: 8250: implement non-BKL console +- serial: Make uart_remove_one_port() return void (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: Switch i2c drivers back to use .probe() (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: core: Don't drop port_mutex in serial_core_remove_one_port (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: core: Fix error handling for serial_core_ctrl_device_add() (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: core: Fix probing serial_base_bus devices (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: core: Start managing serial controllers to enable runtime PM (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: pl011: set UART011_CR_RXE in pl011_set_termios after port shutdown (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- tty: serial: fsl_lpuart: Check the return value of dmaengine_tx_status (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- tty: serial: fsl_lpuart: optimize the timer based EOP logic (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- tty: tty_io: Show non-BKL consoles as active (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- Refresh + patches.suse/printk-Add-per-console-suspended-state.patch. + patches.suse/printk-Keep-non-panic-CPUs-out-of-console-lock.patch. + patches.suse/printk-Reduce-console_unblank-usage-in-unsafe-scenarios.patch. +- Delete + patches.suse/printk-Add-NMI-check-to-console_flush_on_panic-and-console_unblank.patch. +- commit cd25188 + +------------------------------------------------------------------- +Thu Mar 21 11:26:07 CET 2024 - mgorman@suse.de + +- Revert v6.5-rt printk +- commit 36c3e65 + +------------------------------------------------------------------- +Wed Mar 20 17:04:34 CET 2024 - mgorman@suse.de + +- series.conf: Move v6.5-rc7-rt4 printk series to prepare for revert and refresh +- Update + patches.suse/kernel-panic-Add-atomic-write-enforcement-to-warn-panic.patch. + patches.suse/printk-Add-NMI-check-to-console_flush_on_panic-and-console_unblank.patch. + patches.suse/printk-Add-non-BKL-console-basic-infrastructure.patch. + patches.suse/printk-Add-per-console-suspended-state.patch. + patches.suse/printk-Add-threaded-printing-support-for-BKL-consoles.patch. + patches.suse/printk-Check-only-for-migration-in-printk_deferred_.patch. + patches.suse/printk-Consolidate-console-deferred-printing.patch. + patches.suse/printk-Keep-non-panic-CPUs-out-of-console-lock.patch. + patches.suse/printk-Monolithic-bring-printk-up-to-date-with-v6.6-rt25.patch. + patches.suse/printk-Perform-atomic-flush-in-console_flush_on_panic.patch. + patches.suse/printk-Reduce-console_unblank-usage-in-unsafe-scenarios.patch. + patches.suse/printk-nobkl-Add-acquire-release-logic.patch. + patches.suse/printk-nobkl-Add-buffer-management.patch. + patches.suse/printk-nobkl-Add-print-state-functions.patch. + patches.suse/printk-nobkl-Add-printer-thread-wakeups.patch. + patches.suse/printk-nobkl-Add-sequence-handling.patch. + patches.suse/printk-nobkl-Add-write-context-storage-for-atomic-writes.patch. + patches.suse/printk-nobkl-Introduce-printer-threads.patch. + patches.suse/printk-nobkl-Provide-functions-for-atomic-write-enforcement.patch. + patches.suse/printk-nobkl-Stop-threads-on-shutdown-reboot.patch. + patches.suse/printk-only-disable-if-actually-unregistered.patch. + patches.suse/printk-replace-local_irq_save-with-local_lock-for-safe-mode.patch. + patches.suse/proc-consoles-Add-support-for-non-BKL-consoles.patch. + patches.suse/rcu-Add-atomic-write-enforcement-for-rcu-stalls.patch. + patches.suse/serial-8250-implement-non-BKL-console.patch. + patches.suse/serial-8250-lock-port-for-omap8250_restore_regs.patch. + patches.suse/serial-8250-lock-port-for-rx_dma-callback.patch. + patches.suse/serial-8250-omap-convert-to-modern-PM-ops.patch. + patches.suse/serial-8250_mtk-Simplify-clock-sequencing-and-runtime-PM.patch. + patches.suse/serial-arc_uart-simplify-flags-handling-in-arc_serial_rx_chars.patch. + patches.suse/serial-drivers-switch-ch-and-flag-to-u8.patch. + patches.suse/serial-exar-Add-RS-485-support-for-Sealevel-XR17V35X-based-cards.patch. + patches.suse/serial-omap-serial-remove-flag-from-serial_omap_rdi.patch. + patches.suse/tty-Explicitly-include-correct-DT-includes.patch. + patches.suse/tty-tty_io-Show-non-BKL-consoles-as-active.patch. +- commit a8be181 + +------------------------------------------------------------------- +Wed Mar 20 16:33:52 CET 2024 - mgorman@suse.de + +- series.conf: Move v6.5-rc7-rt4 printk series to prepare for revert and refresh +- commit 1c36877 + +------------------------------------------------------------------- +Wed Mar 20 14:31:18 CET 2024 - mgorman@suse.de + +- Break out patches from RT monolithic printk update +- serial: 8250: lock port for omap8250_restore_regs() (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- serial: 8250: lock port for rx_dma() callback (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- serial: 8250: omap: convert to modern PM ops (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- serial: 8250_mtk: Simplify clock sequencing and runtime PM + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: arc_uart: simplify flags handling in + arc_serial_rx_chars() (bsc#1214683 (PREEMPT_RT prerequisite + backports)). +- serial: drivers: switch ch and flag to u8 (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- serial: exar: Add RS-485 support for Sealevel XR17V35X based + cards (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: omap-serial: remove flag from serial_omap_rdi() + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- tty: Explicitly include correct DT includes (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- printk: Keep non-panic-CPUs out of console lock (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- printk: Reduce console_unblank() usage in unsafe scenarios + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- Refresh + patches.suse/printk-Monolithic-bring-printk-up-to-date-with-v6.6-rt25.patch. +- commit dde15d2 + +------------------------------------------------------------------- +Mon Mar 18 17:18:14 CET 2024 - jack@suse.cz + +- fs: don't assume arguments are non-NULL (bsc#1221044 + CVE-2023-52591). +- commit ec8f09d + +------------------------------------------------------------------- +Mon Mar 18 17:17:56 CET 2024 - jack@suse.cz + +- fs: Restrict lock_two_nondirectories() to non-directory inodes + (bsc#1221044 CVE-2023-52591). +- commit b103012 + +------------------------------------------------------------------- +Mon Mar 18 17:00:17 CET 2024 - jack@suse.cz + +- fs: ocfs2: check status values (bsc#1221044 CVE-2023-52591). +- commit a281985 + +------------------------------------------------------------------- +Mon Mar 18 16:55:27 CET 2024 - jack@suse.cz + +- rename(): avoid a deadlock in the case of parents having no + common ancestor (bsc#1221044 CVE-2023-52591). +- commit ea7137b + +------------------------------------------------------------------- +Mon Mar 18 16:55:13 CET 2024 - jack@suse.cz + +- kill lock_two_inodes() (bsc#1221044 CVE-2023-52591). +- commit 005222f + +------------------------------------------------------------------- +Mon Mar 18 16:54:57 CET 2024 - jack@suse.cz + +- rename(): fix the locking of subdirectories (bsc#1221044 + CVE-2023-52591). +- commit a6484cb + +------------------------------------------------------------------- +Mon Mar 18 16:54:43 CET 2024 - jack@suse.cz + +- f2fs: Avoid reading renamed directory if parent does not change + (bsc#1221044 CVE-2023-52591). +- commit 3fb2dd8 + +------------------------------------------------------------------- +Mon Mar 18 16:54:28 CET 2024 - jack@suse.cz + +- ext4: don't access the source subdirectory content on + same-directory rename (bsc#1221044 CVE-2023-52591). +- commit ba7d1aa + +------------------------------------------------------------------- +Mon Mar 18 16:54:13 CET 2024 - jack@suse.cz + +- ext2: Avoid reading renamed directory if parent does not change + (bsc#1221044 CVE-2023-52591). +- commit 65af3c2 + +------------------------------------------------------------------- +Mon Mar 18 16:53:55 CET 2024 - jack@suse.cz + +- udf_rename(): only access the child content on cross-directory + rename (bsc#1221044 CVE-2023-52591). +- commit a29fcb6 + +------------------------------------------------------------------- +Mon Mar 18 16:53:12 CET 2024 - jack@suse.cz + +- ocfs2: Avoid touching renamed directory if parent does not + change (bsc#1221044 CVE-2023-52591). +- Update references in + patches.suse/reiserfs-Avoid-touching-renamed-directory-if-parent-.patch + (git-fixes bsc#1221044 CVE-2023-52591). +- commit 0477c34 + +------------------------------------------------------------------- +Mon Mar 18 15:19:09 CET 2024 - tiwai@suse.de + +- Update kabi files: adapting kABI changes for ppc64le, too +- commit bf73791 + +------------------------------------------------------------------- +Mon Mar 18 15:18:37 CET 2024 - mfranc@suse.cz + +- dcssblk: handle alloc_dax() -EOPNOTSUPP failure (git-fixes + bsc#1221626). +- commit eaf806c + +------------------------------------------------------------------- +Mon Mar 18 15:16:59 CET 2024 - mfranc@suse.cz + +- s390/cache: prevent rebuild of shared_cpu_list (git-fixes + bsc#1221625). +- commit d9bc980 + +------------------------------------------------------------------- +Mon Mar 18 15:06:27 CET 2024 - mfranc@suse.cz + +- s390/pai: fix attr_event_free upper limit for pai device drivers + (git-fixes bsc#1221623). +- commit eac0e1f + +------------------------------------------------------------------- +Mon Mar 18 14:50:34 CET 2024 - mfranc@suse.cz + +- KVM: s390: only deliver the set service event bits (git-fixes + bsc#1221620). +- commit 55838c8 + +------------------------------------------------------------------- +Mon Mar 18 14:48:10 CET 2024 - colyli@suse.de + +- dm: treat alloc_dax() -EOPNOTSUPP failure as non-fatal + (git-fixes). +- dm: call the resume method on internal suspend (git-fixes). +- dm raid: fix false positive for requeue needed during reshape + (git-fixes). +- dm ioctl: update DM_DRIVER_EMAIL to new dm-devel mailing list + (git-fixes). +- dm-raid: fix lockdep waring in "pers->hot_add_disk" + (jsc#PED-7542). +- md/raid5: fix atomicity violation in raid5_cache_count + (bsc#1219169, CVE-2024-23307). +- dm: dm-zoned: guard blkdev_zone_mgmt with noio scope + (jsc#PED-7542). +- dm-integrity, dm-verity: reduce stack usage for recheck + (jsc#PED-7542). +- dm-crypt, dm-integrity, dm-verity: bump target version + (jsc#PED-7542). +- dm-verity, dm-crypt: align "struct bvec_iter" correctly + (jsc#PED-7542). +- dm-crypt: recheck the integrity tag after a failure (git-fixes). +- dm-crypt: don't modify the data when using authenticated + encryption (git-fixes). +- dm-verity: recheck the hash after a failure (git-fixes). +- dm-integrity: recheck the integrity tag after a failure + (git-fixes). +- md: Fix missing release of 'active_io' for flush (jsc#PED-7542). +- dm-crypt, dm-verity: disable tasklets (git-fixes). +- dm writecache: allow allocations larger than 2GiB + (jsc#PED-7542). +- dm stats: limit the number of entries (jsc#PED-7542). +- md/raid1: Use blk_opf_t for read and write operations + (git-fixes). +- md: Fix md_seq_ops() regressions (git-fixes). +- md: Whenassemble the array, consult the superblock of the + freshest device (git-fixes). +- md/raid1: remove unnecessary null checking (jsc#PED-7542). +- md: synchronize flush io with array reconfiguration (git-fixes). +- commit 7042e1b + +------------------------------------------------------------------- +Mon Mar 18 14:47:14 CET 2024 - colyli@suse.de + +- md/raid5: remove rcu protection to access rdev from conf + (jsc#PED-7542). +- md/raid1: remove rcu protection to access rdev from conf + (jsc#PED-7542). +- md/raid10: remove rcu protection to access rdev from conf + (jsc#PED-7542). +- md: remove flag RemoveSynchronized (jsc#PED-7542). +- dm audit: fix Kconfig so DM_AUDIT depends on BLK_DEV_DM + (git-fixes). +- dm-integrity: don't modify bio's immutable bio_vec in + integrity_metadata() (git-fixes). +- commit 1587009 + +------------------------------------------------------------------- +Mon Mar 18 14:40:15 CET 2024 - colyli@suse.de + +- raid1: fix use-after-free for original bio in + raid1_write_request() (bsc#1221097). +- commit 296098e + +------------------------------------------------------------------- +Mon Mar 18 14:20:52 CET 2024 - mfranc@suse.cz + +- Update + patches.suse/s390-ptrace-handle-setting-of-fpc-register-correctly.patch + (git-fixes bsc#1219812 CVE-2023-52598 bsc#1221060). +- commit 0d496e7 + +------------------------------------------------------------------- +Mon Mar 18 14:18:36 CET 2024 - mfranc@suse.cz + +- Update + patches.suse/s390-vfio-ap-always-filter-entire-AP-matrix.patch + (git-fixes bsc#1218988 CVE-2024-26620 bsc#1221298). +- commit b046ad1 + +------------------------------------------------------------------- +Mon Mar 18 12:35:48 CET 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add testcases for tailcall infinite loop fixing + (git-fixes). +- bpf, x64: Fix tailcall infinite loop (git-fixes). +- selftests/bpf: Correct map_fd to data_fd in tailcalls + (git-fixes). +- commit 1302854 + +------------------------------------------------------------------- +Mon Mar 18 11:00:57 CET 2024 - spradhan@suse.de + +- btrfs: preallocate temporary extent buffer for inode logging when needed (bsc#1217362). +- commit c7ccbf0 + +------------------------------------------------------------------- +Mon Mar 18 09:42:34 CET 2024 - tiwai@suse.de + +- i3c: dw: Disable IBI IRQ depends on hot-join and SIR enabling + (git-fixes). +- watchdog: stm32_iwdg: initialize default timeout (git-fixes). +- watchdog: starfive: Check pm_runtime_enabled() before + decrementing usage counter (git-fixes). +- commit 357d510 + +------------------------------------------------------------------- +Sat Mar 16 15:52:28 CET 2024 - tiwai@suse.de + +- of: make for_each_property_of_node() available to to !OF + (git-fixes). +- mtd: rawnand: Constrain even more when continuous reads are + enabled (git-fixes). +- mtd: rawnand: Fix and simplify again the continuous read + derivations (git-fixes). +- mtd: rawnand: lpc32xx_mlc: fix irq handler prototype + (git-fixes). +- mtd: rawnand: meson: fix scrambling mode value in command macro + (git-fixes). +- mtd: maps: physmap-core: fix flash size larger than 32-bit + (git-fixes). +- media: usbtv: Remove useless locks in usbtv_video_free() + (git-fixes). +- media: ttpci: fix two memleaks in budget_av_attach (git-fixes). +- media: go7007: fix a memleak in go7007_load_encoder (git-fixes). +- media: dvb-frontends: avoid stack overflow warnings with clang + (git-fixes). +- media: pvrusb2: fix uaf in pvr2_context_set_notify (git-fixes). +- media: i2c: imx290: Fix IMX920 typo (git-fixes). +- media: pvrusb2: fix pvr2_stream_callback casts (git-fixes). +- media: pvrusb2: remove redundant NULL check (git-fixes). +- media: go7007: add check of return value of go7007_read_addr() + (git-fixes). +- media: imx: csc/scaler: fix v4l2_ctrl_handler memory leak + (git-fixes). +- media: sun8i-di: Fix chroma difference threshold (git-fixes). +- media: sun8i-di: Fix power on/off sequences (git-fixes). +- media: sun8i-di: Fix coefficient writes (git-fixes). +- media: cedrus: h265: Fix configuring bitstream size (git-fixes). +- media: edia: dvbdev: fix a use-after-free (git-fixes). +- media: nxp: imx8-isi: Check whether crossbar pad is non-NULL + before access (git-fixes). +- media: mc: Add local pad to pipeline regardless of the link + state (git-fixes). +- net: lan78xx: fix runtime PM count underflow on link stop + (git-fixes). +- commit 9b93c7d + +------------------------------------------------------------------- +Sat Mar 16 15:44:22 CET 2024 - tiwai@suse.de + +- clk: renesas: r8a779g0: Correct PFC/GPIO parent clocks + (git-fixes). +- commit 0b0c529 + +------------------------------------------------------------------- +Sat Mar 16 15:39:58 CET 2024 - tiwai@suse.de + +- crypto: jitter - fix CRYPTO_JITTERENTROPY help text (git-fixes). +- crypto: qat - remove double initialization of value (git-fixes). +- crypto: qat - avoid division by zero (git-fixes). +- crypto: qat - removed unused macro in adf_cnv_dbgfs.c + (git-fixes). +- crypto: qat - remove unused macros in qat_comp_alg.c + (git-fixes). +- crypto: ccp - Avoid discarding errors in + psp_send_platform_access_msg() (git-fixes). +- crypto: arm/sha - fix function cast warnings (git-fixes). +- crypto: qat - resolve race condition during AER recovery + (git-fixes). +- crypto: qat - change SLAs cleanup flow at shutdown (git-fixes). +- crypto: xilinx - call finalize with bh disabled (git-fixes). +- clk: imx: imx8mp: Fix SAI_MCLK_SEL definition (git-fixes). +- clk: samsung: exynos850: Propagate SPI IPCLK rate change + (git-fixes). +- clk: Fix clk_core_get NULL dereference (git-fixes). +- clk: qcom: mmcc-msm8974: fix terminating of frequency table + arrays (git-fixes). +- clk: qcom: mmcc-apq8084: fix terminating of frequency table + arrays (git-fixes). +- clk: qcom: gcc-ipq9574: fix terminating of frequency table + arrays (git-fixes). +- clk: qcom: gcc-ipq8074: fix terminating of frequency table + arrays (git-fixes). +- clk: qcom: gcc-ipq6018: fix terminating of frequency table + arrays (git-fixes). +- clk: qcom: dispcc-sdm845: Adjust internal GDSC wait times + (git-fixes). +- clk: qcom: gcc-sdm845: Add soft dependency on rpmhpd + (git-fixes). +- clk: meson: Add missing clocks to axg_clk_regmaps (git-fixes). +- clk: keystone: sci-clk: Adding support for non contiguous clocks + (git-fixes). +- clk: mediatek: mt7981-topckgen: flag SGM_REG_SEL as critical + (git-fixes). +- clk: mediatek: mt8183: Correct parent of CLK_INFRA_SSPM_32K_SELF + (git-fixes). +- clk: mediatek: mt8135: Fix an error handling path in + clk_mt8135_apmixed_probe() (git-fixes). +- clk: hisilicon: hi3559a: Fix an erroneous devm_kfree() + (git-fixes). +- clk: hisilicon: hi3519: Release the correct number of gates + in hi3519_clk_unregister() (git-fixes). +- clk: zynq: Prevent null pointer dereference caused by kmalloc + failure (git-fixes). +- clk: renesas: r8a779f0: Correct PFC/GPIO parent clock + (git-fixes). +- media: v4l2-mem2mem: fix a memleak in v4l2_m2m_register_entity + (git-fixes). +- media: v4l2-tpg: fix some memleaks in tpg_alloc (git-fixes). +- media: em28xx: annotate unchecked call to + media_device_register() (git-fixes). +- media: videobuf2: Fix doc comment (git-fixes). +- media: xc4000: Fix atomicity violation in xc4000_get_frequency + (git-fixes). +- media: staging: ipu3-imgu: Set fields before + media_entity_pads_init() (git-fixes). +- commit df2e5ae + +------------------------------------------------------------------- +Fri Mar 15 18:14:47 CET 2024 - ailiop@suse.com + +- xfs: shrink failure needs to hold AGI buffer (git-fixes). +- commit e670f77 + +------------------------------------------------------------------- +Fri Mar 15 18:11:09 CET 2024 - ailiop@suse.com + +- xfs: fix imprecise logic in xchk_btree_check_block_owner + (git-fixes). +- commit 24972c0 + +------------------------------------------------------------------- +Fri Mar 15 18:09:50 CET 2024 - ailiop@suse.com + +- xfs: fix SEEK_HOLE/DATA for regions with active COW extents + (git-fixes). +- commit 4197ae0 + +------------------------------------------------------------------- +Fri Mar 15 18:07:59 CET 2024 - ailiop@suse.com + +- xfs: ensure submit buffers on LSN boundaries in error handlers + (git-fixes). +- commit c23fb7a + +------------------------------------------------------------------- +Fri Mar 15 18:05:51 CET 2024 - mgorman@suse.de + +- printk: Monolithic bring printk up to date with v6.6-rt25 + (SLE Realtime Extension). +- serial: 8250_bcm7271: improve bcm7271 8250 port (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- 8250_men_mcb: fix error handling in + read_uarts_available_from_reg() (bsc#1214683 (PREEMPT_RT + prerequisite backports)). +- tty: serial: 8250: Define earlycon for mrvl,mmp-uart + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- 8250_men_mcb: Make UART config auto configurable (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- 8250_men_mcb: Read num ports from register data (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- 8250_men_mcb: Add clockrate speed for G215/F215 boards + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: 8250_rt288x: Remove unnecessary UART_REG_UNMAPPED + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: 8250_rt288x: Name non-standard divisor latch reg + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: 8250: Allow using ports higher than + SERIAL_8250_RUNTIME_UARTS (bsc#1214683 (PREEMPT_RT prerequisite + backports)). +- cpuidle: Use local_clock_noinstr() (bsc#1214683 (PREEMPT_RT + prerequisite backports)). +- sched/clock: Provide local_clock_noinstr() (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- x86/tsc: Provide sched_clock_noinstr() (bsc#1214683 (PREEMPT_RT + prerequisite backports)). +- math64: Always inline u128 version of mul_u64_u64_shr() + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- s390/time: Provide sched_clock_noinstr() (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- arm64/arch_timer: Provide noinstr sched_clock_read() functions + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- arm64/io: Always inline all of __raw_{read,write}[bwlq]() + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- time/sched_clock: Provide sched_clock_noinstr() (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- seqlock/latch: Provide raw_read_seqcount_latch_retry() + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- commit e346663 + +------------------------------------------------------------------- +Fri Mar 15 18:04:47 CET 2024 - ailiop@suse.com + +- afs: Fix endless loop in directory parsing (git-fixes). +- commit d1332b9 + +------------------------------------------------------------------- +Fri Mar 15 18:04:10 CET 2024 - ailiop@suse.com + +- afs: Increase buffer size in afs_update_volume_status() + (git-fixes). +- commit a954f43 + +------------------------------------------------------------------- +Fri Mar 15 17:57:32 CET 2024 - ailiop@suse.com + +- nilfs2: fix hang in nilfs_lookup_dirty_data_buffers() + (git-fixes). +- commit 6c3b10c + +------------------------------------------------------------------- +Fri Mar 15 17:54:24 CET 2024 - ailiop@suse.com + +- nilfs2: convert nilfs_page_mkwrite() to use a folio (git-fixes). +- commit 29291de + +------------------------------------------------------------------- +Fri Mar 15 17:51:31 CET 2024 - ailiop@suse.com + +- erofs: fix handling kern_mount() failure (git-fixes). +- commit ea16f48 + +------------------------------------------------------------------- +Fri Mar 15 17:49:51 CET 2024 - ailiop@suse.com + +- erofs: Don't use certain unnecessary folio_*() functions + (git-fixes). +- commit 021c910 + +------------------------------------------------------------------- +Fri Mar 15 17:47:43 CET 2024 - ailiop@suse.com + +- erofs: fix refcount on the metabuf used for inode lookup + (git-fixes). +- commit 0bf0150 + +------------------------------------------------------------------- +Fri Mar 15 17:46:24 CET 2024 - ailiop@suse.com + +- erofs: clean up zmap.c (git-fixes). +- commit 3625a10 + +------------------------------------------------------------------- +Fri Mar 15 17:44:06 CET 2024 - ailiop@suse.com + +- erofs: fix up compacted indexes for block size < 4096 + (git-fixes). +- commit 458bf09 + +------------------------------------------------------------------- +Fri Mar 15 17:43:22 CET 2024 - ailiop@suse.com + +- erofs: fix memory leak on short-lived bounced pages (git-fixes). +- commit 5efbfc4 + +------------------------------------------------------------------- +Fri Mar 15 17:42:35 CET 2024 - vkarasulli@suse.de + +- iommu/amd: Fix failure return from snp_lookup_rmpentry() + (git-fixes). +- commit 536001e + +------------------------------------------------------------------- +Fri Mar 15 17:42:14 CET 2024 - ailiop@suse.com + +- erofs: allow empty device tags in flatdev mode (git-fixes). +- commit c8ff154 + +------------------------------------------------------------------- +Fri Mar 15 17:20:57 CET 2024 - vkarasulli@suse.de + +- iommu/vt-d: Don't issue ATS Invalidation request when device + is disconnected (git-fixes). +- commit 5d166d5 + +------------------------------------------------------------------- +Fri Mar 15 17:05:49 CET 2024 - mkoutny@suse.com + +- net/sched: Add module alias for sch_fq_pie (bsc#1210335). +- commit 211b413 + +------------------------------------------------------------------- +Fri Mar 15 16:39:35 CET 2024 - mkoutny@suse.com + +- net/sched: Remove alias of sch_clsact (bsc#1210335). +- net/sched: Load modules via their alias (bsc#1210335). +- net/sched: Add module aliases for cls_,sch_,act_ modules + (bsc#1210335). +- net/sched: Add helper macros with module names (bsc#1210335). +- commit 2046cfc + +------------------------------------------------------------------- +Fri Mar 15 14:16:53 CET 2024 - denis.kirjanov@suse.com + +- Refresh + patches.suse/perf-pmu-events-powerpc-Update-json-mapfile-with-Power11-PVR.patch. +- commit 42a5ace + +------------------------------------------------------------------- +Fri Mar 15 14:14:19 CET 2024 - denis.kirjanov@suse.com + +- ionic: restore netdev feature bits after reset (git-fixes). +- commit 898af71 + +------------------------------------------------------------------- +Fri Mar 15 14:12:42 CET 2024 - denis.kirjanov@suse.com + +- ionic: check cmd_regs before copying in or out (git-fixes). +- commit f1dc989 + +------------------------------------------------------------------- +Fri Mar 15 14:11:19 CET 2024 - denis.kirjanov@suse.com + +- ionic: check before releasing pci regions (git-fixes). +- commit 2a1c23c + +------------------------------------------------------------------- +Fri Mar 15 14:09:42 CET 2024 - denis.kirjanov@suse.com + +- net: veth: clear GRO when clearing XDP even when down (git-fixes). +- commit 553eb02 + +------------------------------------------------------------------- +Fri Mar 15 14:08:16 CET 2024 - denis.kirjanov@suse.com + +- tun: Fix xdp_rxq_info's queue_index when detaching (git-fixes). +- commit b7d1001 + +------------------------------------------------------------------- +Fri Mar 15 14:06:31 CET 2024 - denis.kirjanov@suse.com + +- net: dpaa: fman_memac: accept phy-interface-type = "10gbase-r" in the device tree (git-fixes). +- commit 675b36c + +------------------------------------------------------------------- +Fri Mar 15 12:55:55 CET 2024 - denis.kirjanov@suse.com + +- ice: Fix ASSERT_RTNL() warning during certain scenarios (git-fixes). +- commit 8b9399e + +------------------------------------------------------------------- +Fri Mar 15 12:54:26 CET 2024 - denis.kirjanov@suse.com + +- ice: fix pin phase adjust updates on PF reset (git-fixes). +- commit ef21fc4 + +------------------------------------------------------------------- +Fri Mar 15 12:53:03 CET 2024 - denis.kirjanov@suse.com + +- ice: fix dpll periodic work data updates on PF reset (git-fixes). +- commit dc97d19 + +------------------------------------------------------------------- +Fri Mar 15 12:51:37 CET 2024 - denis.kirjanov@suse.com + +- ice: fix dpll and dpll_pin data access on PF reset (git-fixes). +- commit f610e32 + +------------------------------------------------------------------- +Fri Mar 15 12:50:05 CET 2024 - denis.kirjanov@suse.com + +- ice: fix dpll input pin phase_adjust value updates (git-fixes). +- commit cfb9c02 + +------------------------------------------------------------------- +Fri Mar 15 12:48:40 CET 2024 - denis.kirjanov@suse.com + +- ice: fix connection state of DPLL and out pin (git-fixes). +- commit 7176021 + +------------------------------------------------------------------- +Fri Mar 15 12:47:05 CET 2024 - denis.kirjanov@suse.com + +- net: sparx5: Add spinlock for frame transmission from CPU (git-fixes). +- commit 2486a16 + +------------------------------------------------------------------- +Fri Mar 15 12:45:34 CET 2024 - denis.kirjanov@suse.com + +- gtp: fix use-after-free and null-ptr-deref in gtp_genl_dump_pdp() (git-fixes). +- commit 86d216d + +------------------------------------------------------------------- +Fri Mar 15 12:43:57 CET 2024 - denis.kirjanov@suse.com + +- net: ipa: don't overrun IPA suspend interrupt registers (git-fixes). +- commit 7f00d73 + +------------------------------------------------------------------- +Fri Mar 15 12:38:58 CET 2024 - denis.kirjanov@suse.com + +- ethernet: cpts: fix function pointer cast warnings (git-fixes). +- commit d241bc1 + +------------------------------------------------------------------- +Fri Mar 15 12:35:48 CET 2024 - denis.kirjanov@suse.com + +- net: ethernet: ti: cpsw_new: enable mac_managed_pm to fix mdio (git-fixes). +- commit 229f845 + +------------------------------------------------------------------- +Fri Mar 15 12:34:13 CET 2024 - denis.kirjanov@suse.com + +- ppp_async: limit MRU to 64K (git-fixes). +- commit 463471e + +------------------------------------------------------------------- +Fri Mar 15 12:32:46 CET 2024 - denis.kirjanov@suse.com + +- nfp: enable NETDEV_XDP_ACT_REDIRECT feature flag (git-fixes). +- commit 36e79a9 + +------------------------------------------------------------------- +Fri Mar 15 09:19:37 CET 2024 - tiwai@suse.de + +- ALSA: hda/tas2781: remove unnecessary runtime_pm calls + (git-fixes). +- ALSA: hda/realtek - ALC236 fix volume mute & mic mute LED on + some HP models (git-fixes). +- ALSA: hda/realtek: fix ALC285 issues on HP Envy x360 laptops + (git-fixes). +- ALSA: hda: Reuse for_each_pcm_streams() (git-fixes). +- ALSA: usb-audio: Name feature ctl using output if input is PCM + (git-fixes). +- commit fdd39ea + +------------------------------------------------------------------- +Fri Mar 15 09:15:01 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Add quirks for various HP ENVY models + (git-fixes). +- commit 62207c4 + +------------------------------------------------------------------- +Fri Mar 15 09:12:54 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Add "Intel Reference board" SSID in the + ALC256 (git-fixes). +- ALSA: hda/realtek: Remove two HP Laptops using CS35L41 + (git-fixes). +- ALSA: hda: cs35l41: Support HP models without _DSD using dual + Speaker ID (git-fixes). +- ALSA: hda: cs35l41: Support additional HP Envy Models + (git-fixes). +- ALSA: hda/realtek: Add quirks for HP G11 Laptops using CS35L56 + (git-fixes). +- ALSA: hda: realtek: Re-work CS35L41 fixups to re-use for other + amps (git-fixes). +- commit c4f7d5a + +------------------------------------------------------------------- +Fri Mar 15 08:28:03 CET 2024 - tiwai@suse.de + +- nilfs2: prevent kernel bug at submit_bh_wbc() (git-fixes). +- nilfs2: fix failure to detect DAT corruption in btree and + direct mappings (git-fixes). +- selftests/mm: protection_keys: save/restore nr_hugepages + settings (git-fixes). +- selftests/mm: hugetlb_reparenting_test: do not unmount + (git-fixes). +- selftests/mm: dont fail testsuite due to a lack of hugepages + (git-fixes). +- modules: wait do_free_init correctly (git-fixes). +- PCI: qcom: Enable BDF to SID translation properly (git-fixes). +- PCI: dwc: endpoint: Fix advertised resizable BAR size + (git-fixes). +- PCI: brcmstb: Fix broken brcm_pcie_mdio_write() polling + (git-fixes). +- PCI: switchtec: Fix an error handling path in + switchtec_pci_probe() (git-fixes). +- PCI/P2PDMA: Fix a sleeping issue in a RCU read section + (git-fixes). +- PCI: Mark 3ware-9650SE Root Port Extended Tags as broken + (git-fixes). +- PCI/DPC: Print all TLP Prefixes, not just the first (git-fixes). +- pci_iounmap(): Fix MMIO mapping leak (git-fixes). +- PCI/AER: Fix rootport attribute paths in ABI docs (git-fixes). +- platform/mellanox: mlxreg-hotplug: Remove redundant NULL-check + (git-fixes). +- platform/x86/intel/tpmi: Change vsec offset to u64 (git-fixes). +- Revert "platform/x86: asus-wmi: Support WMI event queue" + (git-fixes). +- leds: sgm3140: Add missing timer cleanup and flash gpio control + (git-fixes). +- Revert "leds: Only descend into leds directory when + CONFIG_NEW_LEDS is set" (git-fixes). +- leds: aw2013: Unlock mutex before destroying it (git-fixes). +- mfd: altera-sysmgr: Call of_node_put() only when + of_parse_phandle() takes a ref (git-fixes). +- mfd: syscon: Call of_node_put() only when of_parse_phandle() + takes a ref (git-fixes). +- pinctrl: renesas: r8a779g0: Add missing SCIF_CLK2 pin + group/function (git-fixes). +- pinctrl: mediatek: Drop bogus slew rate register range for + MT8192 (git-fixes). +- pinctrl: mediatek: Drop bogus slew rate register range for + MT8186 (git-fixes). +- HID: lenovo: Add middleclick_workaround sysfs knob for cptkbd + (git-fixes). +- HID: amd_sfh: Avoid disabling the interrupt (git-fixes). +- commit a95f20c + +------------------------------------------------------------------- +Fri Mar 15 08:23:42 CET 2024 - tiwai@suse.de + +- ALSA: usb-audio: Stop parsing channels bits when all channels + are found (git-fixes). +- ALSA: aaci: Delete unused variable in aaci_do_suspend + (git-fixes). +- ASoC: meson: axg-tdm-interface: add frame rate constraint + (git-fixes). +- ASoC: meson: axg-tdm-interface: fix mclk setup without mclk-fs + (git-fixes). +- ASoC: SOF: Add some bounds checking to firmware data + (git-fixes). +- ASoC: meson: t9015: fix function pointer type mismatch + (git-fixes). +- ASoC: meson: aiu: fix function pointer type mismatch + (git-fixes). +- ASoC: sh: rz-ssi: Fix error message print (git-fixes). +- ASoC: SOF: amd: Fix memory leak in amd_sof_acp_probe() + (git-fixes). +- ASoC: amd: acp: Add missing error handling in sof-mach + (git-fixes). +- ALSA: hda/tas2781: restore power state after system_resume + (git-fixes). +- ALSA: hda/tas2781: do not call pm_runtime_force_* in + system_resume/suspend (git-fixes). +- ALSA: hda/tas2781: do not reset cur_* values in runtime_suspend + (git-fixes). +- ALSA: hda/tas2781: add lock to system_suspend (git-fixes). +- ALSA: hda/tas2781: use dev_dbg in system_resume (git-fixes). +- ALSA: seq: fix function cast warnings (git-fixes). +- ALSA: aw2: avoid casting function pointers (git-fixes). +- ALSA: ctxfi: avoid casting function pointers (git-fixes). +- ALSA: hda: cs35l41: Set Channel Index correctly when system + is missing _DSD (git-fixes). +- backlight: lp8788: Fully initialize backlight_properties during + probe (git-fixes). +- backlight: lm3639: Fully initialize backlight_properties during + probe (git-fixes). +- backlight: da9052: Fully initialize backlight_properties during + probe (git-fixes). +- backlight: lm3630a: Don't set bl->props.brightness in + get_brightness (git-fixes). +- backlight: lm3630a: Initialize backlight_properties on init + (git-fixes). +- backlight: ktz8866: Correct the check for of_property_read_u32 + (git-fixes). +- backlight: hx8357: Fix potential NULL pointer dereference + (git-fixes). +- gpio: nomadik: fix offset bug in nmk_pmx_set() (git-fixes). +- HID: amd_sfh: Update HPD sensor structure elements (git-fixes). +- commit 428d278 + +------------------------------------------------------------------- +Thu Mar 14 17:43:21 CET 2024 - tiwai@suse.de + +- Update patch reference for IDXD fix (bsc#1221428) +- commit 20b42d0 + +------------------------------------------------------------------- +Thu Mar 14 16:44:44 CET 2024 - nik.borisov@suse.com + +- KVM/x86: Export RFDS_NO and RFDS_CLEAR to guests (bsc#1213456 CVE-2023-28746). +- commit a59ffeb + +------------------------------------------------------------------- +Thu Mar 14 16:44:27 CET 2024 - nik.borisov@suse.com + +- x86/rfds: Mitigate Register File Data Sampling (RFDS) (bsc#1213456 CVE-2023-28746). +- commit c210394 + +------------------------------------------------------------------- +Thu Mar 14 16:43:01 CET 2024 - nik.borisov@suse.com + +- Documentation/hw-vuln: Add documentation for RFDS (bsc#1213456 CVE-2023-28746). +- commit 0f1938a + +------------------------------------------------------------------- +Thu Mar 14 16:41:56 CET 2024 - nik.borisov@suse.com + +- x86/mmio: Disable KVM mitigation when X86_FEATURE_CLEAR_CPU_BUF is set (bsc#1213456 CVE-2023-28746). +- commit 52997cc + +------------------------------------------------------------------- +Thu Mar 14 16:05:39 CET 2024 - vkarasulli@suse.de + +- iommu/amd: Mark interrupt as managed (git-fixes). +- commit 5ef4be8 + +------------------------------------------------------------------- +Thu Mar 14 15:07:40 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Refactor devicetree for OSM-S module and (git-fixes) +- commit 0049d8d + +------------------------------------------------------------------- +Thu Mar 14 14:54:18 CET 2024 - msuchanek@suse.de + +- Update ppc64le kabi files. +- commit 5c9702d + +------------------------------------------------------------------- +Thu Mar 14 12:45:19 CET 2024 - iivanov@suse.de + +- arm64: dts: sprd: Change UMS512 idle-state nodename to match bindings (git-fixes) +- commit 58013ba + +------------------------------------------------------------------- +Thu Mar 14 12:43:39 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: drop rockchip,trcm-sync-tx-only from rk3588 i2s (git-fixes) +- commit b287ab6 + +------------------------------------------------------------------- +Thu Mar 14 12:42:15 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: fix reset-names for rk356x i2s2 controller (git-fixes) +- commit bfdd563 + +------------------------------------------------------------------- +Thu Mar 14 12:41:07 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: add missing interrupt-names for rk356x vdpu (git-fixes) +- commit b9c1de2 + +------------------------------------------------------------------- +Thu Mar 14 12:39:52 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mp: Set SPI NOR to max 40 MHz on Data Modul i.MX8M (git-fixes) +- commit 5a00002 + +------------------------------------------------------------------- +Thu Mar 14 12:38:28 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-venice-gw71xx: fix USB OTG VBUS (git-fixes) +- commit a9642be + +------------------------------------------------------------------- +Thu Mar 14 12:36:58 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Fix OSM-S devicetrees to match latest (git-fixes) +- commit d17e1b2 + +------------------------------------------------------------------- +Thu Mar 14 12:35:11 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Fix interrupt for RTC on OSM-S i.MX8MM (git-fixes) +- commit 63e3e05 + +------------------------------------------------------------------- +Thu Mar 14 12:34:07 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pull resistors for SD card (git-fixes) +- commit 645b123 + +------------------------------------------------------------------- +Thu Mar 14 12:32:48 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pull resistors for SD card (git-fixes) +- commit 63490f6 + +------------------------------------------------------------------- +Thu Mar 14 12:31:50 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pullups for onboard UART signals (git-fixes) +- commit 980bc4a + +------------------------------------------------------------------- +Thu Mar 14 12:30:45 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pullups for onboard UART signals (git-fixes) +- commit 3a04f44 + +------------------------------------------------------------------- +Thu Mar 14 12:29:49 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pullups for I2C signals on SL/BL (git-fixes) +- commit d23e2ff + +------------------------------------------------------------------- +Thu Mar 14 12:28:37 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pullups for I2C signals on OSM-S (git-fixes) +- commit e658d8c + +------------------------------------------------------------------- +Thu Mar 14 12:27:31 CET 2024 - iivanov@suse.de + +- arm64: dts: allwinner: h6: Add RX DMA channel for SPDIF (git-fixes) +- commit 8098072 + +------------------------------------------------------------------- +Thu Mar 14 12:26:09 CET 2024 - iivanov@suse.de + +- arm64: tegra: Fix Tegra234 MGBE power-domains (git-fixes) +- commit 58db13b + +------------------------------------------------------------------- +Thu Mar 14 12:24:54 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mp: Fix LDB clocks property (git-fixes) +- commit 8815925 + +------------------------------------------------------------------- +Thu Mar 14 12:22:28 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: set num-cs property for spi on px30 (git-fixes) +- commit ac8cd44 + +------------------------------------------------------------------- +Thu Mar 14 12:21:26 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mp: Disable UART4 by default on Data Modul i.MX8M (git-fixes) +- commit d39bc86 + +------------------------------------------------------------------- +Thu Mar 14 12:20:00 CET 2024 - iivanov@suse.de + +- arm64: dts: sprd: Add clock reference for pll2 on UMS512 (git-fixes) +- commit 8ef3da3 + +------------------------------------------------------------------- +Thu Mar 14 12:19:00 CET 2024 - iivanov@suse.de + +- arm64: zynqmp: Fix clock node name in kv260 cards (git-fixes) +- commit 49dfade + +------------------------------------------------------------------- +Thu Mar 14 12:17:48 CET 2024 - iivanov@suse.de + +- arm64: zynqmp: Move fixed clock to / for kv260 (git-fixes) +- commit 8a08b0f + +------------------------------------------------------------------- +Thu Mar 14 11:09:55 CET 2024 - lhenriques@suse.de + +- libceph: init the cursor when preparing sparse read in msgr2 + (bsc#1221393). +- ceph: switch to corrected encoding of max_xattr_size in mdsmap + (bsc#1221392). +- ceph: prevent use-after-free in encode_cap_msg() (bsc#1221391). +- libceph: just wait for more data to be available on the socket + (bsc#1221390). +- libceph: rename read_sparse_msg_*() to + read_partial_sparse_msg_*() (bsc#1221389). +- libceph: fail sparse-read if the data length doesn't match + (bsc#1221388). +- commit 088fe3e + +------------------------------------------------------------------- +Thu Mar 14 10:55:48 CET 2024 - iivanov@suse.de + +- Make NVIDIA Grace-Hopper TPM related drivers build-ins (bsc#1221156) +- commit 32745a0 + +------------------------------------------------------------------- +Thu Mar 14 10:16:37 CET 2024 - tiwai@suse.de + +- kabi/severities: ignore intel_tcc_get_temp() change (git-fixes) +- commit 62d327d + +------------------------------------------------------------------- +Thu Mar 14 10:13:54 CET 2024 - tiwai@suse.de + +- thermal/intel: Fix intel_tcc_get_temp() to support negative + CPU temperature (git-fixes). +- commit 6dc4a23 + +------------------------------------------------------------------- +Thu Mar 14 10:12:16 CET 2024 - tiwai@suse.de + +- memfd: drop warning for missing exec-related flags + (bsc#1221161). +- commit 68995fe + +------------------------------------------------------------------- +Thu Mar 14 08:15:06 CET 2024 - tiwai@suse.de + +- gpiolib: Pass consumer device through to core in + devm_fwnode_gpiod_get_index() (git-fixes). +- commit 446d465 + +------------------------------------------------------------------- +Thu Mar 14 08:13:52 CET 2024 - tiwai@suse.de + +- drm/msm/dpu: add division of drm_display_mode's hskew parameter + (git-fixes). +- media: tc358743: register v4l2 async device only after + successful setup (git-fixes). +- tpm,tpm_tis: Avoid warning splat at shutdown (git-fixes). +- powercap: dtpm_cpu: Fix error check against + freq_qos_add_request() (git-fixes). +- powercap: intel_rapl_tpmi: Fix a register bug (git-fixes). +- powercap: intel_rapl: Fix a NULL pointer dereference + (git-fixes). +- PM: sleep: wakeirq: fix wake irq warning in system suspend + (git-fixes). +- PM: suspend: Set mem_sleep_current during kernel command line + setup (git-fixes). +- selftest: gpio: remove obsolete gpio-mockup test (git-fixes). +- gpio: vf610: allow disabling the vf610 driver (git-fixes). +- regulator: userspace-consumer: add module device table + (git-fixes). +- mmc: core: Fix switch on gp3 partition (git-fixes). +- mmc: wmt-sdmmc: remove an incorrect release_mem_region() + call in the .remove function (git-fixes). +- mmc: tmio: avoid concurrent runs of mmc_request_done() + (git-fixes). +- pwm: mediatek: Update kernel doc for struct pwm_mediatek_of_data + (git-fixes). +- pwm: sti: Fix capture for st,pwm-num-chan < st,capture-num-chan + (git-fixes). +- commit 7ae9bb9 + +------------------------------------------------------------------- +Thu Mar 14 08:07:55 CET 2024 - tiwai@suse.de + +- Add cherry-picked id to amdgpu patch +- commit 1ec0805 + +------------------------------------------------------------------- +Thu Mar 14 08:05:50 CET 2024 - tiwai@suse.de + +- drm/etnaviv: Restore some id values (git-fixes). +- drm/amd/pm: Fix esm reg mask use to get pcie speed (git-fixes). +- drm/amdgpu: Fix missing break in ATOM_ARG_IMM Case of + atom_get_src_int() (git-fixes). +- Revert "drm/amdgpu: Add pcie usage callback to nbio" + (git-fixes). +- Revert "drm/amdgpu: Add pci usage to nbio v7.9" (git-fixes). +- drm/msm/a7xx: Fix LLC typo (git-fixes). +- drm/msm/dpu: finalise global state object (git-fixes). +- drm/msm/dpu: Only enable DSC_MODE_MULTIPLEX if dsc_merge is + enabled (git-fixes). +- drm/msm/dpu: fix the programming of INTF_CFG2_DATA_HCTL_EN + (git-fixes). +- drm/msm/dpu: improve DSC allocation (git-fixes). +- drm/mediatek: Fix a null pointer crash in + mtk_drm_crtc_finish_page_flip (git-fixes). +- drm/mediatek: dsi: Fix DSI RGB666 formats and definitions + (git-fixes). +- drm/tests: helpers: Include missing drm_drv header (git-fixes). +- drm/tidss: Fix sync-lost issue with two displays (git-fixes). +- drm/tidss: Fix initial plane zpos values (git-fixes). +- drm/tegra: put drm_gem_object ref on error in tegra_fb_create + (git-fixes). +- drm/bridge: adv7511: fix crash on irq during probe (git-fixes). +- drm/panel: boe-tv101wum-nl6: make use of prepare_prev_first + (git-fixes). +- drm/amd/display: Add 'replay' NULL check in + 'edp_set_replay_allow_active()' (git-fixes). +- drm/amd/display: fix NULL checks for adev->dm.dc in + amdgpu_dm_fini() (git-fixes). +- drm/radeon/ni: Fix wrong firmware size logging in + ni_init_microcode() (git-fixes). +- drm: ci: use clk_ignore_unused for apq8016 (git-fixes). +- Revert "drm/i915/xe2lpd: Treat cursor plane as regular plane + for DDB allocation" (git-fixes). +- drm/amdgpu: Fix potential out-of-bounds access in + 'amdgpu_discovery_reg_base_init()' (git-fixes). +- drm/amd/display: Fix potential NULL pointer dereferences in + 'dcn10_set_output_transfer_func()' (git-fixes). +- drm/amd/display: Fix a potential buffer overflow in + 'dp_dsc_clock_en_read()' (git-fixes). +- drm/radeon/ni_dpm: remove redundant NULL check (git-fixes). +- drm/radeon: remove dead code in ni_mc_load_microcode() + (git-fixes). +- drm/vmwgfx: Fix the lifetime of the bo cursor memory + (git-fixes). +- drm/vmwgfx: Fix vmw_du_get_cursor_mob fencing of newly-created + MOBs (git-fixes). +- drm/vmwgfx: Fix possible null pointer derefence with invalid + contexts (git-fixes). +- drm/lima: fix a memleak in lima_heap_alloc (git-fixes). +- drm/panel-edp: use put_sync in unprepare (git-fixes). +- drm/rockchip: lvds: do not print scary message when probing + defer (git-fixes). +- drm/rockchip: lvds: do not overwrite error code (git-fixes). +- drm/vmwgfx: Unmap the surface before resetting it on a plane + state (git-fixes). +- drm/vmwgfx: fix a memleak in vmw_gmrid_man_get_node (git-fixes). +- drm/vkms: Avoid reading beyond LUT array (git-fixes). +- drm: Don't treat 0 as -1 in drm_fixp2int_ceil (git-fixes). +- drm/rockchip: inno_hdmi: Fix video timing (git-fixes). +- drm/tegra: output: Fix missing i2c_put_adapter() in the error + handling paths of tegra_output_probe() (git-fixes). +- drm/tegra: rgb: Fix missing clk_put() in the error handling + paths of tegra_dc_rgb_probe() (git-fixes). +- drm/tegra: rgb: Fix some error handling paths in + tegra_dc_rgb_probe() (git-fixes). +- drm/tegra: hdmi: Fix some error handling paths in + tegra_hdmi_probe() (git-fixes). +- drm/tegra: dsi: Fix missing pm_runtime_disable() in the error + handling path of tegra_dsi_probe() (git-fixes). +- drm/tegra: dsi: Fix some error handling paths in + tegra_dsi_probe() (git-fixes). +- drm/tegra: dpaux: Fix PM disable depth imbalance in + tegra_dpaux_probe (git-fixes). +- drm/tegra: dsi: Add missing check for of_find_device_by_node + (git-fixes). +- ACPI: processor_idle: Fix memory leak in + acpi_processor_power_exit() (git-fixes). +- ACPI: resource: Add MAIBENBEN X577 to + irq1_edge_low_force_override (git-fixes). +- ACPI: scan: Fix device check notification handling (git-fixes). +- ACPI: CPPC: enable AMD CPPC V2 support for family 17h processors + (git-fixes). +- cpufreq: qcom-hw: add CONFIG_COMMON_CLK dependency (git-fixes). +- cpufreq: brcmstb-avs-cpufreq: add check for cpufreq_cpu_get's + return value (git-fixes). +- cpufreq: Limit resolving a frequency to policy min/max + (git-fixes). +- cpufreq: amd-pstate: Fix min_perf assignment in + amd_pstate_adjust_perf() (git-fixes). +- commit 451635c + +------------------------------------------------------------------- +Thu Mar 14 07:48:20 CET 2024 - nik.borisov@suse.com + +- RAS: Export helper to get ras_debugfs_dir (jsc#PED-7619). +- commit ddeebbf + +------------------------------------------------------------------- +Wed Mar 13 20:23:05 CET 2024 - msuchanek@suse.de + +- powerpc/64s: Fix get_hugepd_cache_index() build failure + (bsc#1215199). +- powerpc: Remove cpu-as-y completely (bsc#1215199). +- powerpc/64s: Use .machine power4 around dcbt (bsc#1215199). +- powerpc/64s: Move dcbt/dcbtst sequence into a macro + (bsc#1215199). +- powerpc/pseries: Fix potential memleak in papr_get_attr() + (bsc#1215199). +- powerpc/kprobes: Handle error returned by set_memory_rox() + (bsc#1215199). +- powerpc: Implement set_memory_rox() (bsc#1215199). +- powerpc: Use user_mode() macro when possible (bsc#1215199). +- powerpc/rtas: use correct function name for resetting TCE tables + (bsc#1215199). +- commit 35dba53 + +------------------------------------------------------------------- +Wed Mar 13 17:44:47 CET 2024 - fdmanana@suse.com + +- btrfs: avoid copying BTRFS_ROOT_SUBVOL_DEAD flag to snapshot + of subvolume being deleted (bsc#1221282). +- commit adc8e1b + +------------------------------------------------------------------- +Wed Mar 13 17:30:12 CET 2024 - fdmanana@suse.com + +- btrfs: don't abort filesystem when attempting to snapshot + deleted subvolume (bsc#1221282). +- commit 7de0be8 + +------------------------------------------------------------------- +Wed Mar 13 17:26:34 CET 2024 - tiwai@suse.de + +- Fix missing initial value for tcp pingpong threshold (bsc#1221339,bsc#1221305,bsc#1221032,bsc#1221261) + This caused high latencies leading to various network issues +- commit de6f6b8 + +------------------------------------------------------------------- +Wed Mar 13 15:58:37 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/FMPM: Fix off by one when unwinding on error (jsc#PED-7619). +- commit 083602e + +------------------------------------------------------------------- +Wed Mar 13 15:57:19 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/FMPM: Add debugfs interface to print record entries (jsc#PED-7619). +- commit 1a5e647 + +------------------------------------------------------------------- +Wed Mar 13 15:56:56 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/FMPM: Save SPA values (jsc#PED-7619). +- commit 4072c0c + +------------------------------------------------------------------- +Wed Mar 13 15:26:37 CET 2024 - tiwai@suse.de + +- Bluetooth: Fix eir name length (git-fixes). +- wifi: mac80211: update scratch_pos after defrag (git-fixes). +- wifi: mac80211: track capability/opmode NSS separately + (git-fixes). +- wifi: mt76: mt792x: fix a potential loading failure of the + 6Ghz channel config from ACPI (git-fixes). +- wifi: mt76: mt7921e: fix use-after-free in free_irq() + (git-fixes). +- wifi: iwlwifi: mvm: fix warnings from dmi_get_system_info() + (git-fixes). +- wifi: wilc1000: fix RCU usage in connect path (git-fixes). +- commit 76a6eff + +------------------------------------------------------------------- +Wed Mar 13 15:04:29 CET 2024 - tiwai@suse.de + +- blacklist.conf: add a BT entry that breaks kABI +- commit a6a5c3b + +------------------------------------------------------------------- +Wed Mar 13 15:02:47 CET 2024 - tiwai@suse.de + +- gpu/host1x kABI workaround (git-fixes). +- commit 86a9dbb + +------------------------------------------------------------------- +Wed Mar 13 14:53:36 CET 2024 - tiwai@suse.de + +- gpu: host1x: Skip reset assert on Tegra186 (git-fixes). +- commit 88887cf + +------------------------------------------------------------------- +Wed Mar 13 14:52:32 CET 2024 - tiwai@suse.de + +- blacklist.conf: add entries for firewire +- commit f73cdd2 + +------------------------------------------------------------------- +Wed Mar 13 14:50:58 CET 2024 - tiwai@suse.de + +- drm/nouveau: don't fini scheduler before entity flush + (git-fixes). +- commit 3d3c54d + +------------------------------------------------------------------- +Wed Mar 13 14:39:57 CET 2024 - mgorman@suse.de + +- futex: Prevent the reuse of stale pi_state (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- commit 82905f3 + +------------------------------------------------------------------- +Wed Mar 13 13:16:47 CET 2024 - mgorman@suse.de + +- drm/i915/guc: Consider also RCU depth in busy loop (SLE + Realtime Extension). +- srcu: Use try-lock lockdep annotation for NMI-safe access + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- futex/pi: Fix recursive rt_mutex waiter state (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- srcu: Remove extraneous parentheses from srcu_read_lock() etc + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- commit b354209 + +------------------------------------------------------------------- +Wed Mar 13 13:03:56 CET 2024 - mgorman@suse.de + +- srcu: Use try-lock lockdep annotation for NMI-safe access + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- futex/pi: Fix recursive rt_mutex waiter state (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- srcu: Remove extraneous parentheses from srcu_read_lock() etc + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- commit e04ae5b + +------------------------------------------------------------------- +Wed Mar 13 12:41:25 CET 2024 - tiwai@suse.de + +- Update config files: refresh for x86_64 and armv7hl +- commit 8a3dfcc + +------------------------------------------------------------------- +Wed Mar 13 10:26:22 CET 2024 - oneukum@suse.com + +- r8152: fix unknown device for choose_configuration (git-fixes). +- commit 71e2f25 + +------------------------------------------------------------------- +Wed Mar 13 10:02:23 CET 2024 - iivanov@suse.de + +- Update patches.suse/arm64-sme-Always-exit-sme_alloc-early-with-existing-.patch (git-fixes, CVE-2024-26618) + Add reference to CVE-2024-26618. +- commit 50882e3 + +------------------------------------------------------------------- +Wed Mar 13 09:27:26 CET 2024 - tiwai@suse.de + +- bluetooth hci_uart_register_device() kABI workaround + (git-fixes). +- commit 2fcc10e + +------------------------------------------------------------------- +Wed Mar 13 09:17:20 CET 2024 - tiwai@suse.de + +- net: phy: dp83822: Fix RGMII TX delay configuration (git-fixes). +- net: phy: fix phy_get_internal_delay accessing an empty array + (git-fixes). +- Bluetooth: btnxpuart: Fix btnxpuart_close (git-fixes). +- Bluetooth: af_bluetooth: Fix deadlock (git-fixes). +- Bluetooth: hci_core: Fix possible buffer overflow (git-fixes). +- Bluetooth: btrtl: fix out of bounds memory access (git-fixes). +- Bluetooth: hci_h5: Add ability to allocate memory for private + data (git-fixes). +- Bluetooth: hci_qca: don't use IS_ERR_OR_NULL() with + gpiod_get_optional() (git-fixes). +- Bluetooth: hci_event: Fix not indicating new connection for + BIG Sync (git-fixes). +- Bluetooth: Remove superfluous call to hci_conn_check_pending() + (git-fixes). +- Bluetooth: mgmt: Remove leftover queuing of power_off work + (git-fixes). +- Bluetooth: Remove HCI_POWER_OFF_TIMEOUT (git-fixes). +- wifi: brcm80211: handle pmk_op allocation failure (git-fixes). +- wifi: rtw88: 8821c: Fix false alarm count (git-fixes). +- wifi: rtw88: 8821c: Fix beacon loss and disconnect (git-fixes). +- wifi: rtw88: 8821cu: Fix firmware upload fail (git-fixes). +- wifi: mt76: mt7921: fix incorrect type conversion for CLC + command (git-fixes). +- wifi: mt76: mt7996: fix HIF_TXD_V2_1 value (git-fixes). +- wifi: mt76: mt7996: fix efuse reading issue (git-fixes). +- wifi: mt76: mt7996: fix HE beamformer phy cap for station vif + (git-fixes). +- wifi: mt76: mt7996: fix incorrect interpretation of EHT MCS caps + (git-fixes). +- wifi: mt76: mt7996: fix TWT issues (git-fixes). +- sr9800: Add check for usbnet_get_endpoints (git-fixes). +- wifi: ath12k: fix incorrect logic of calculating vdev_stats_id + (git-fixes). +- wifi: ath11k: initialize rx_mcs_80 and rx_mcs_160 before use + (git-fixes). +- wifi: ath11k: change to move WMI_VDEV_PARAM_SET_HEMU_MODE + before WMI_PEER_ASSOC_CMDID (git-fixes). +- wifi: ath9k: delay all of ath9k_wmi_event_tasklet() until init + is complete (git-fixes). +- wifi: wilc1000: revert reset line logic flip (git-fixes). +- wifi: brcmsmac: avoid function pointer casts (git-fixes). +- wifi: wilc1000: prevent use-after-free on vif when cleaning + up all interfaces (git-fixes). +- wifi: iwlwifi: mvm: Fix the listener MAC filter flags + (git-fixes). +- wifi: iwlwifi: mvm: don't set replay counters to 0xff + (git-fixes). +- wifi: iwlwifi: mvm: don't set the MFP flag for the GTK + (git-fixes). +- wifi: iwlwifi: mvm: fix erroneous queue index mask (git-fixes). +- wifi: iwlwifi: support EHT for WH (git-fixes). +- wifi: wfx: fix memory leak when starting AP (git-fixes). +- wifi: brcmsmac: Drop legacy header (git-fixes). +- wifi: libertas: fix some memleaks in lbs_allocate_cmd_buffer() + (git-fixes). +- wifi: iwlwifi: read BIOS PNVM only for non-Intel SKU + (git-fixes). +- wifi: iwlwifi: mvm: fix the TLC command after ADD_STA + (git-fixes). +- wifi: iwlwifi: mvm: use FW rate for non-data only on new devices + (git-fixes). +- wifi: iwlwifi: mvm: d3: fix IPN byte order (git-fixes). +- wifi: iwlwifi: fix EWRD table validity check (git-fixes). +- wifi: iwlwifi: mvm: initialize rates in FW earlier (git-fixes). +- wifi: iwlwifi: acpi: fix WPFC reading (git-fixes). +- wifi: iwlwifi: dbg-tlv: ensure NUL termination (git-fixes). +- wifi: iwlwifi: mvm: report beacon protection failures + (git-fixes). +- wifi: brcmfmac: fix copyright year mentioned in platform_data + header (git-fixes). +- wifi: ath12k: Fix issues in channel list update (git-fixes). +- wifi: ath10k: fix NULL pointer dereference in + ath10k_wmi_tlv_op_pull_mgmt_tx_compl_ev() (git-fixes). +- can: softing: remove redundant NULL check (git-fixes). +- wifi: brcmfmac: avoid invalid list operation when vendor attach + fails (git-fixes). +- wifi: mwifiex: debugfs: Drop unnecessary error check for + debugfs_create_dir() (git-fixes). +- wifi: wilc1000: fix multi-vif management when deleting a vif + (git-fixes). +- wifi: wilc1000: do not realloc workqueue everytime an interface + is added (git-fixes). +- wifi: rtl8xxxu: add cancel_work_sync() for c2hcmd_work + (git-fixes). +- wifi: b43: Disable QoS for bcm4331 (git-fixes). +- wifi: b43: Stop correct queue in DMA worker when QoS is disabled + (git-fixes). +- wifi: b43: Stop/wake correct queue in PIO Tx path when QoS is + disabled (git-fixes). +- wifi: b43: Stop/wake correct queue in DMA Tx path when QoS is + disabled (git-fixes). +- doc-guide: kernel-doc: tell about object-like macros + (git-fixes). +- soc: qcom: llcc: Check return value on Broadcast_OR reg read + (git-fixes). +- soc: qcom: socinfo: rename PM2250 to PM4125 (git-fixes). +- bus: tegra-aconnect: Update dependency to ARCH_TEGRA + (git-fixes). +- firmware: arm_scmi: Fix double free in SMC transport cleanup + path (git-fixes). +- commit d454c2c + +------------------------------------------------------------------- +Wed Mar 13 08:58:39 CET 2024 - tiwai@suse.de + +- Move upstreamed patches into sorted section +- commit 5709f5a + +------------------------------------------------------------------- +Wed Mar 13 08:49:16 CET 2024 - tiwai@suse.de + +- Move upstreamed patches into sorted section +- commit 612fa2e + +------------------------------------------------------------------- +Wed Mar 13 06:13:12 CET 2024 - ddiss@suse.de + +- selinux: only filter copy-up xattrs following initialization + (bsc#1210690). +- commit f42baec + +------------------------------------------------------------------- +Wed Mar 13 01:48:09 CET 2024 - neilb@suse.de + +- NFS: Fix data corruption caused by congestion (git-fixes). +- pNFS: Fix the pnfs block driver's calculation of layoutget size + (git-fixes). +- NFSv4.1: fixup use EXCHGID4_FLAG_USE_PNFS_DS for DS server + (git-fixes). +- NFS: Fix O_DIRECT locking issues (git-fixes). +- commit b64b15f + +------------------------------------------------------------------- +Tue Mar 12 23:31:45 CET 2024 - neilb@suse.de + +- nfsd: don't take fi_lock in nfsd_break_deleg_cb() (git-fixes). +- SUNRPC: fix _xprt_switch_find_current_entry logic (git-fixes). +- NFSv4.1/pnfs: Ensure we handle the error NFS4ERR_RETURNCONFLICT + (git-fixes). +- NFS: Use parent's objective cred in nfs_access_login_time() + (git-fixes). +- blocklayoutdriver: Fix reference leak of pnfs_device_node + (git-fixes). +- SUNRPC: Fix a suspicious RCU usage warning (git-fixes). +- NFSD: Fix "start of NFS reply" pointer passed to + nfsd_cache_update() (git-fixes). +- NFSD: Update nfsd_cache_append() to use xdr_stream (git-fixes). +- nfsd: fix file memleak on client_opens_release (git-fixes). +- SUNRPC: Fix RPC client cleaned up the freed pipefs dentries + (git-fixes). +- NFSv4.1: fix SP4_MACH_CRED protection for pnfs IO (git-fixes). +- SUNRPC: Add an IS_ERR() check back to where it was (git-fixes). +- NFSv4.1: fix handling NFS4ERR_DELAY when testing for session + trunking (git-fixes). +- SUNRPC: ECONNRESET might require a rebind (git-fixes). +- svcrdma: Drop connection after an RDMA Read error (git-fixes). +- nfsd: Handle EOPENSTALE correctly in the filecache (git-fixes). +- nfsd: lock_rename() needs both directories to live on the same + fs (git-fixes). +- pNFS/flexfiles: Check the layout validity in + ff_layout_mirror_prepare_stats (git-fixes). +- pNFS: Fix a hang in nfs4_evict_inode() (git-fixes). +- NFS: Fix potential oops in nfs_inode_remove_request() + (git-fixes). +- nfs42: client needs to strip file mode's suid/sgid bit after + ALLOCATE op (git-fixes). +- nfs: decrement nrequests counter before releasing the req + (git-fixes). +- SUNRPC/TLS: Lock the lower_xprt during the tls handshake + (git-fixes). +- Revert "SUNRPC dont update timeout value on connection reset" + (git-fixes). +- NFSv4: Fix a state manager thread deadlock regression + (git-fixes). +- NFSv4: Fix a nfs4_state_manager() race (git-fixes). +- SUNRPC: Fail quickly when server does not recognize TLS + (git-fixes). +- NFSv4.1: fix zero value filehandle in post open getattr + (git-fixes). +- NFS: More fixes for nfs_direct_write_reschedule_io() + (git-fixes). +- NFS: Use the correct commit info in nfs_join_page_group() + (git-fixes). +- NFS: More O_DIRECT accounting fixes for error paths (git-fixes). +- NFS: Fix error handling for O_DIRECT write scheduling + (git-fixes). +- nfsd: fix change_info in NFSv4 RENAME replies (git-fixes). +- NFSv4.1: use EXCHGID4_FLAG_USE_PNFS_DS for DS server + (git-fixes). +- NFS: Fix a potential data corruption (git-fixes). +- NFSv4/pnfs: minor fix for cleanup path in nfs4_get_device_info + (git-fixes). +- commit e298a32 + +------------------------------------------------------------------- +Tue Mar 12 17:25:48 CET 2024 - lhenriques@suse.de + +- Update + patches.suse/ceph-fix-deadlock-or-deadcode-of-misusing-dget.patch + (bsc#1220453 bsc#1221058 CVE-2023-52583). +- commit 25befcc + +------------------------------------------------------------------- +Tue Mar 12 16:58:11 CET 2024 - mgorman@suse.de + +- sched/fair: Combine EAS check with overutilized access + (bsc#1221157). +- sched/fair: Use helper function to access rd->overutilized + (bsc#1221157). +- sched/fair: Add EAS checks before updating overutilized + (bsc#1221157). +- commit c66ccdb + +------------------------------------------------------------------- +Tue Mar 12 15:53:52 CET 2024 - lhenriques@suse.de + +- netfs, fscache: Prevent Oops in fscache_put_cache() (bsc#1221291 + CVE-2024-26612). +- commit f4e9666 + +------------------------------------------------------------------- +Tue Mar 12 14:33:40 CET 2024 - vbabka@suse.cz + +- mm, vmscan: prevent infinite loop for costly GFP_NOIO | + __GFP_RETRY_MAYFAIL allocations (git-fixes). +- commit 36fac6a + +------------------------------------------------------------------- +Tue Mar 12 12:47:04 CET 2024 - vbabka@suse.cz + +- mm: migrate high-order folios in swap cache correctly + (git-fixes). +- commit 46a5bb6 + +------------------------------------------------------------------- +Tue Mar 12 12:34:27 CET 2024 - vbabka@suse.cz + +- mm/mempolicy: fix set_mempolicy_home_node() previous VMA pointer + (git-fixes). +- commit 436bfc9 + +------------------------------------------------------------------- +Tue Mar 12 12:30:23 CET 2024 - vbabka@suse.cz + +- Refresh patches.suse/mm-mmap-fix-vma_merge-case-7.patch. +- commit 442a3e7 + +------------------------------------------------------------------- +Tue Mar 12 12:20:44 CET 2024 - denis.kirjanov@suse.com + +- bonding: return -ENOMEM instead of BUG in alb_upper_dev_walk + (git-fixes). +- commit bffce9c + +------------------------------------------------------------------- +Tue Mar 12 11:02:49 CET 2024 - denis.kirjanov@suse.com + +- nfp: flower: prevent re-adding mac index for bonded port (git-fixes). +- commit 6661999 + +------------------------------------------------------------------- +Tue Mar 12 11:01:07 CET 2024 - denis.kirjanov@suse.com + +- nfp: use correct macro for LengthSelect in BAR config (git-fixes). +- commit 7d0aeec + +------------------------------------------------------------------- +Tue Mar 12 10:59:40 CET 2024 - denis.kirjanov@suse.com + +- tsnep: Fix mapping for zero copy XDP_TX action (git-fixes). +- commit 3345825 + +------------------------------------------------------------------- +Tue Mar 12 10:57:58 CET 2024 - denis.kirjanov@suse.com + +- net: atlantic: Fix DMA mapping for PTP hwts ring (git-fixes). +- commit b00604d + +------------------------------------------------------------------- +Tue Mar 12 10:55:55 CET 2024 - denis.kirjanov@suse.com + +- netdevsim: avoid potential loop in nsim_dev_trap_report_work() (git-fixes). +- commit 57a7091 + +------------------------------------------------------------------- +Tue Mar 12 10:53:57 CET 2024 - denis.kirjanov@suse.com + +- net: stmmac: Prevent DSA tags from breaking COE (git-fixes). +- commit e8cc0c0 + +------------------------------------------------------------------- +Tue Mar 12 10:01:27 CET 2024 - tiwai@suse.de + +- Move out-of-tree patches into the right section +- commit 6624840 + +------------------------------------------------------------------- +Tue Mar 12 09:59:39 CET 2024 - tiwai@suse.de + +- Documentation: virt: Fix up pre-formatted text block for SEV + ioctls (git-fixes). +- commit b6867f0 + +------------------------------------------------------------------- +Tue Mar 12 09:59:02 CET 2024 - tiwai@suse.de + +- Move upstreamed patches into sorted section +- commit 489fc6e + +------------------------------------------------------------------- +Tue Mar 12 09:52:49 CET 2024 - tiwai@suse.de + +- crypto: ccp - Have it depend on AMD_IOMMU (git-fixes). +- rtc: test: Fix invalid format specifier (git-fixes). +- lib: memcpy_kunit: Fix an invalid format specifier in an + assertion msg (git-fixes). +- lib/cmdline: Fix an invalid format specifier in an assertion + msg (git-fixes). +- selftests/mqueue: Set timeout to 180 seconds (git-fixes). +- Documentation: coresight: fix `make refcheckdocs` warning + (git-fixes). +- commit 2c8fcdc + +------------------------------------------------------------------- +Tue Mar 12 03:32:41 CET 2024 - neilb@suse.de + +- Refresh patches.suse/nfsd-fix-RELEASE_LOCKOWNER.patch. + update mainline commit info +- commit 2c149c7 + +------------------------------------------------------------------- +Mon Mar 11 14:16:45 CET 2024 - denis.kirjanov@suse.com + +- amt: do not use overwrapped cb area (git-fixes). +- commit 1372aac + +------------------------------------------------------------------- +Mon Mar 11 14:14:14 CET 2024 - denis.kirjanov@suse.com + +- bonding: remove print in bond_verify_device_path (git-fixes). +- commit 7a54f95 + +------------------------------------------------------------------- +Mon Mar 11 14:07:35 CET 2024 - denis.kirjanov@suse.com + +- stmmac: preserve KABI in stmmac_txq_cfg (git-fixes). +- commit 034b0ac + +------------------------------------------------------------------- +Mon Mar 11 14:05:31 CET 2024 - denis.kirjanov@suse.com + +- net: stmmac: Tx coe sw fallback (git-fixes). +- commit d5cf563 + +------------------------------------------------------------------- +Mon Mar 11 13:31:45 CET 2024 - denis.kirjanov@suse.com + +- blacklist.conf: update blacklist +- commit 0889c69 + +------------------------------------------------------------------- +Mon Mar 11 11:11:02 CET 2024 - denis.kirjanov@suse.com + +- blacklist.conf: update blacklist +- commit b63446f + +------------------------------------------------------------------- +Mon Mar 11 11:03:50 CET 2024 - denis.kirjanov@suse.com + +- blacklist.conf: update blacklist +- commit ed66a82 + +------------------------------------------------------------------- +Mon Mar 11 10:46:44 CET 2024 - msuchanek@suse.de + +- powerpc/pseries/iommu: IOMMU table is not initialized for + kdump over SR-IOV (bsc#1220492 ltc#205270). +- commit 2026089 + +------------------------------------------------------------------- +Mon Mar 11 10:11:09 CET 2024 - oneukum@suse.com + +- Update + patches.suse/usb-hub-Guard-against-accesses-to-uninitialized-BOS-.patch + (bsc#1220790 CVE-2023-52477). + Added CVE +- commit 61b1ebd + ------------------------------------------------------------------- Sun Mar 10 09:34:05 CET 2024 - tiwai@suse.de @@ -157,6 +1988,15 @@ Thu Mar 7 18:15:41 CET 2024 - tonyj@suse.de Power8 Architecture (jsc#PED-7970 jsc#PED-8065). - commit b9d5dfb +------------------------------------------------------------------- +Thu Mar 7 13:24:07 CET 2024 - msuchanek@suse.de + +- group-source-files.pl: Quote filenames (boo#1221077). + The kernel source now contains a file with a space in the name. + Add quotes in group-source-files.pl to avoid splitting the filename. + Also use -print0 / -0 when updating timestamps. +- commit a005e42 + ------------------------------------------------------------------- Thu Mar 7 11:49:53 CET 2024 - msuchanek@suse.de @@ -17859,6 +19699,18 @@ Fri Feb 16 09:06:11 CET 2024 - pjakobsson@suse.de jsc#PED-5511 jsc#PED-6041 jsc#PED-6069 jsc#PED-6071) - commit c593905 +------------------------------------------------------------------- +Thu Feb 15 23:30:01 CET 2024 - svarbanov@suse.de + +- memory: tegra: add MC client for Tegra234 GPU (bsc#1221330) +- commit f5d121c + +------------------------------------------------------------------- +Thu Feb 15 23:28:11 CET 2024 - svarbanov@suse.de + +- memory: tegra: Add clients used by DRM in Tegra234 (bsc#1221330). +- commit 67c31f5 + ------------------------------------------------------------------- Thu Feb 15 19:46:39 CET 2024 - jwiesner@suse.de @@ -18741,6 +20593,12 @@ Wed Feb 14 00:50:53 CET 2024 - jgross@suse.com counter (jsc#PED-7322). - commit 50f3c68 +------------------------------------------------------------------- +Wed Feb 14 00:27:57 CET 2024 - svarbanov@suse.de + +- supported.conf: Add supported entry for stusb160x (bsc#1221330) +- commit d3bd091 + ------------------------------------------------------------------- Wed Feb 14 00:18:02 CET 2024 - jgross@suse.com @@ -50359,6 +52217,13 @@ Sat Oct 21 13:25:16 CEST 2023 - tiwai@suse.de (git-fixes). - commit 14a1c75 +------------------------------------------------------------------- +Fri Oct 20 18:50:59 CEST 2023 - mwilck@suse.com + +- qedf: Wait for stag work during unload (bsc#1214852). +- qedf: Don't process stag work during unload (bsc#1214852). +- commit dcc092a + ------------------------------------------------------------------- Fri Oct 20 18:31:53 CEST 2023 - jwiesner@suse.de @@ -52529,6 +54394,12 @@ Mon Oct 9 15:07:27 CEST 2023 - nmorey@suse.com - RDMA/mlx5: Remove not-used cache disable flag (git-fixes) - commit d265793 +------------------------------------------------------------------- +Mon Oct 9 12:38:03 CEST 2023 - schwab@suse.de + +- mkspec-dtb: add toplevel symlinks also on arm +- commit ed29cae + ------------------------------------------------------------------- Mon Oct 9 11:31:46 CEST 2023 - nmorey@suse.com @@ -74680,11 +76551,15 @@ Wed Aug 30 10:58:12 CEST 2023 - jlee@suse.com ------------------------------------------------------------------- Wed Aug 30 10:43:48 CEST 2023 - jslaby@suse.cz +- rpm/mkspec-dtb: dtbs have moved to vendor sub-directories in 6.5 + By commit 724ba6751532 ("ARM: dts: Move .dts files to vendor + sub-directories"). + So switch to them. - rpm/mkspec-dtb: support for nested subdirs Commit 724ba6751532 ("ARM: dts: Move .dts files to vendor sub-directories") moved the dts to nested subdirs, add a support for that. That is, generate a %dir entry in %files for them. -- commit 6484eda +- commit 7aee36a ------------------------------------------------------------------- Wed Aug 30 10:34:00 CEST 2023 - jlee@suse.com diff --git a/kernel-source-rt.spec b/kernel-source-rt.spec index fe784cd..6e651cc 100644 --- a/kernel-source-rt.spec +++ b/kernel-source-rt.spec @@ -18,7 +18,7 @@ %define srcversion 6.4 %define patchversion 6.4.0 -%define git_commit 0d817874d18eca2fc379364350f5d8f656a563b1 +%define git_commit 1025e3e919d23ae8b2a3e5c5ad95f6804136e0e9 %define variant -rt%{nil} %include %_sourcedir/kernel-spec-macros @@ -28,7 +28,7 @@ Name: kernel-source-rt Version: 6.4.0 %if 0%{?is_kotd} -Release: .g0d81787 +Release: .g1025e3e %else Release: 0 %endif @@ -326,6 +326,6 @@ done # the future and be thus lower than the timestamps of files built from the # source (bnc#669669). ts="$(head -n1 %_sourcedir/source-timestamp)" -find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts" +find %buildroot/usr/src/linux* ! -type l -print0 | xargs -0 touch -d "$ts" %changelog diff --git a/kernel-source.spec.in b/kernel-source.spec.in index f05665f..ec2b6e0 100644 --- a/kernel-source.spec.in +++ b/kernel-source.spec.in @@ -326,6 +326,6 @@ done # the future and be thus lower than the timestamps of files built from the # source (bnc#669669). ts="$(head -n1 %_sourcedir/source-timestamp)" -find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts" +find %buildroot/usr/src/linux* ! -type l -print0 | xargs -0 touch -d "$ts" %changelog diff --git a/kernel-syms-rt.changes b/kernel-syms-rt.changes index d10c08b..178050c 100644 --- a/kernel-syms-rt.changes +++ b/kernel-syms-rt.changes @@ -1,3 +1,1834 @@ +------------------------------------------------------------------- +Fri Mar 22 17:14:57 CET 2024 - mgorman@suse.de + +- printk: nbcon: move locked_port flag to struct uart_port + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- Refresh patches.suse/printk-Update-the-printk-series.patch. +- commit 1025e3e + +------------------------------------------------------------------- +Thu Mar 21 12:03:15 CET 2024 - mgorman@suse.de + +- Update printk to v6.6.20-rt25 +- kernel/panic: Add atomic write enforcement to warn/panic (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- panic: hide unused global functions (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Add non-BKL console basic infrastructure (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Add threaded printing support for BKL consoles (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Consolidate console deferred printing (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Do not take console lock for console_flush_on_panic() (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Perform atomic flush in console_flush_on_panic() (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Rename abandon_console_lock_in_panic() to other_cpu_in_panic() (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: Update the printk series (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add acquire/release logic (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add buffer management (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add emit function and callback functions for atomic printing (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add print state functions (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add printer thread wakeups (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add sequence handling (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Add write context storage for atomic writes (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Introduce printer threads (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Provide functions for atomic write enforcement (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: nobkl: Stop threads on shutdown/reboot (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: only disable if actually unregistered (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- printk: replace local_irq_save with local_lock for safe mode (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- proc: consoles: Add support for non-BKL consoles (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- rcu: Add atomic write enforcement for rcu stalls (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: 8250: implement non-BKL console +- serial: Make uart_remove_one_port() return void (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: Switch i2c drivers back to use .probe() (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: core: Don't drop port_mutex in serial_core_remove_one_port (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: core: Fix error handling for serial_core_ctrl_device_add() (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: core: Fix probing serial_base_bus devices (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: core: Start managing serial controllers to enable runtime PM (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: pl011: set UART011_CR_RXE in pl011_set_termios after port shutdown (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- tty: serial: fsl_lpuart: Check the return value of dmaengine_tx_status (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- tty: serial: fsl_lpuart: optimize the timer based EOP logic (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- tty: tty_io: Show non-BKL consoles as active (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- Refresh + patches.suse/printk-Add-per-console-suspended-state.patch. + patches.suse/printk-Keep-non-panic-CPUs-out-of-console-lock.patch. + patches.suse/printk-Reduce-console_unblank-usage-in-unsafe-scenarios.patch. +- Delete + patches.suse/printk-Add-NMI-check-to-console_flush_on_panic-and-console_unblank.patch. +- commit cd25188 + +------------------------------------------------------------------- +Thu Mar 21 11:26:07 CET 2024 - mgorman@suse.de + +- Revert v6.5-rt printk +- commit 36c3e65 + +------------------------------------------------------------------- +Wed Mar 20 17:04:34 CET 2024 - mgorman@suse.de + +- series.conf: Move v6.5-rc7-rt4 printk series to prepare for revert and refresh +- Update + patches.suse/kernel-panic-Add-atomic-write-enforcement-to-warn-panic.patch. + patches.suse/printk-Add-NMI-check-to-console_flush_on_panic-and-console_unblank.patch. + patches.suse/printk-Add-non-BKL-console-basic-infrastructure.patch. + patches.suse/printk-Add-per-console-suspended-state.patch. + patches.suse/printk-Add-threaded-printing-support-for-BKL-consoles.patch. + patches.suse/printk-Check-only-for-migration-in-printk_deferred_.patch. + patches.suse/printk-Consolidate-console-deferred-printing.patch. + patches.suse/printk-Keep-non-panic-CPUs-out-of-console-lock.patch. + patches.suse/printk-Monolithic-bring-printk-up-to-date-with-v6.6-rt25.patch. + patches.suse/printk-Perform-atomic-flush-in-console_flush_on_panic.patch. + patches.suse/printk-Reduce-console_unblank-usage-in-unsafe-scenarios.patch. + patches.suse/printk-nobkl-Add-acquire-release-logic.patch. + patches.suse/printk-nobkl-Add-buffer-management.patch. + patches.suse/printk-nobkl-Add-print-state-functions.patch. + patches.suse/printk-nobkl-Add-printer-thread-wakeups.patch. + patches.suse/printk-nobkl-Add-sequence-handling.patch. + patches.suse/printk-nobkl-Add-write-context-storage-for-atomic-writes.patch. + patches.suse/printk-nobkl-Introduce-printer-threads.patch. + patches.suse/printk-nobkl-Provide-functions-for-atomic-write-enforcement.patch. + patches.suse/printk-nobkl-Stop-threads-on-shutdown-reboot.patch. + patches.suse/printk-only-disable-if-actually-unregistered.patch. + patches.suse/printk-replace-local_irq_save-with-local_lock-for-safe-mode.patch. + patches.suse/proc-consoles-Add-support-for-non-BKL-consoles.patch. + patches.suse/rcu-Add-atomic-write-enforcement-for-rcu-stalls.patch. + patches.suse/serial-8250-implement-non-BKL-console.patch. + patches.suse/serial-8250-lock-port-for-omap8250_restore_regs.patch. + patches.suse/serial-8250-lock-port-for-rx_dma-callback.patch. + patches.suse/serial-8250-omap-convert-to-modern-PM-ops.patch. + patches.suse/serial-8250_mtk-Simplify-clock-sequencing-and-runtime-PM.patch. + patches.suse/serial-arc_uart-simplify-flags-handling-in-arc_serial_rx_chars.patch. + patches.suse/serial-drivers-switch-ch-and-flag-to-u8.patch. + patches.suse/serial-exar-Add-RS-485-support-for-Sealevel-XR17V35X-based-cards.patch. + patches.suse/serial-omap-serial-remove-flag-from-serial_omap_rdi.patch. + patches.suse/tty-Explicitly-include-correct-DT-includes.patch. + patches.suse/tty-tty_io-Show-non-BKL-consoles-as-active.patch. +- commit a8be181 + +------------------------------------------------------------------- +Wed Mar 20 16:33:52 CET 2024 - mgorman@suse.de + +- series.conf: Move v6.5-rc7-rt4 printk series to prepare for revert and refresh +- commit 1c36877 + +------------------------------------------------------------------- +Wed Mar 20 14:31:18 CET 2024 - mgorman@suse.de + +- Break out patches from RT monolithic printk update +- serial: 8250: lock port for omap8250_restore_regs() (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- serial: 8250: lock port for rx_dma() callback (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- serial: 8250: omap: convert to modern PM ops (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- serial: 8250_mtk: Simplify clock sequencing and runtime PM + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: arc_uart: simplify flags handling in + arc_serial_rx_chars() (bsc#1214683 (PREEMPT_RT prerequisite + backports)). +- serial: drivers: switch ch and flag to u8 (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- serial: exar: Add RS-485 support for Sealevel XR17V35X based + cards (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: omap-serial: remove flag from serial_omap_rdi() + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- tty: Explicitly include correct DT includes (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- printk: Keep non-panic-CPUs out of console lock (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- printk: Reduce console_unblank() usage in unsafe scenarios + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- Refresh + patches.suse/printk-Monolithic-bring-printk-up-to-date-with-v6.6-rt25.patch. +- commit dde15d2 + +------------------------------------------------------------------- +Mon Mar 18 17:18:14 CET 2024 - jack@suse.cz + +- fs: don't assume arguments are non-NULL (bsc#1221044 + CVE-2023-52591). +- commit ec8f09d + +------------------------------------------------------------------- +Mon Mar 18 17:17:56 CET 2024 - jack@suse.cz + +- fs: Restrict lock_two_nondirectories() to non-directory inodes + (bsc#1221044 CVE-2023-52591). +- commit b103012 + +------------------------------------------------------------------- +Mon Mar 18 17:00:17 CET 2024 - jack@suse.cz + +- fs: ocfs2: check status values (bsc#1221044 CVE-2023-52591). +- commit a281985 + +------------------------------------------------------------------- +Mon Mar 18 16:55:27 CET 2024 - jack@suse.cz + +- rename(): avoid a deadlock in the case of parents having no + common ancestor (bsc#1221044 CVE-2023-52591). +- commit ea7137b + +------------------------------------------------------------------- +Mon Mar 18 16:55:13 CET 2024 - jack@suse.cz + +- kill lock_two_inodes() (bsc#1221044 CVE-2023-52591). +- commit 005222f + +------------------------------------------------------------------- +Mon Mar 18 16:54:57 CET 2024 - jack@suse.cz + +- rename(): fix the locking of subdirectories (bsc#1221044 + CVE-2023-52591). +- commit a6484cb + +------------------------------------------------------------------- +Mon Mar 18 16:54:43 CET 2024 - jack@suse.cz + +- f2fs: Avoid reading renamed directory if parent does not change + (bsc#1221044 CVE-2023-52591). +- commit 3fb2dd8 + +------------------------------------------------------------------- +Mon Mar 18 16:54:28 CET 2024 - jack@suse.cz + +- ext4: don't access the source subdirectory content on + same-directory rename (bsc#1221044 CVE-2023-52591). +- commit ba7d1aa + +------------------------------------------------------------------- +Mon Mar 18 16:54:13 CET 2024 - jack@suse.cz + +- ext2: Avoid reading renamed directory if parent does not change + (bsc#1221044 CVE-2023-52591). +- commit 65af3c2 + +------------------------------------------------------------------- +Mon Mar 18 16:53:55 CET 2024 - jack@suse.cz + +- udf_rename(): only access the child content on cross-directory + rename (bsc#1221044 CVE-2023-52591). +- commit a29fcb6 + +------------------------------------------------------------------- +Mon Mar 18 16:53:12 CET 2024 - jack@suse.cz + +- ocfs2: Avoid touching renamed directory if parent does not + change (bsc#1221044 CVE-2023-52591). +- Update references in + patches.suse/reiserfs-Avoid-touching-renamed-directory-if-parent-.patch + (git-fixes bsc#1221044 CVE-2023-52591). +- commit 0477c34 + +------------------------------------------------------------------- +Mon Mar 18 15:19:09 CET 2024 - tiwai@suse.de + +- Update kabi files: adapting kABI changes for ppc64le, too +- commit bf73791 + +------------------------------------------------------------------- +Mon Mar 18 15:18:37 CET 2024 - mfranc@suse.cz + +- dcssblk: handle alloc_dax() -EOPNOTSUPP failure (git-fixes + bsc#1221626). +- commit eaf806c + +------------------------------------------------------------------- +Mon Mar 18 15:16:59 CET 2024 - mfranc@suse.cz + +- s390/cache: prevent rebuild of shared_cpu_list (git-fixes + bsc#1221625). +- commit d9bc980 + +------------------------------------------------------------------- +Mon Mar 18 15:06:27 CET 2024 - mfranc@suse.cz + +- s390/pai: fix attr_event_free upper limit for pai device drivers + (git-fixes bsc#1221623). +- commit eac0e1f + +------------------------------------------------------------------- +Mon Mar 18 14:50:34 CET 2024 - mfranc@suse.cz + +- KVM: s390: only deliver the set service event bits (git-fixes + bsc#1221620). +- commit 55838c8 + +------------------------------------------------------------------- +Mon Mar 18 14:48:10 CET 2024 - colyli@suse.de + +- dm: treat alloc_dax() -EOPNOTSUPP failure as non-fatal + (git-fixes). +- dm: call the resume method on internal suspend (git-fixes). +- dm raid: fix false positive for requeue needed during reshape + (git-fixes). +- dm ioctl: update DM_DRIVER_EMAIL to new dm-devel mailing list + (git-fixes). +- dm-raid: fix lockdep waring in "pers->hot_add_disk" + (jsc#PED-7542). +- md/raid5: fix atomicity violation in raid5_cache_count + (bsc#1219169, CVE-2024-23307). +- dm: dm-zoned: guard blkdev_zone_mgmt with noio scope + (jsc#PED-7542). +- dm-integrity, dm-verity: reduce stack usage for recheck + (jsc#PED-7542). +- dm-crypt, dm-integrity, dm-verity: bump target version + (jsc#PED-7542). +- dm-verity, dm-crypt: align "struct bvec_iter" correctly + (jsc#PED-7542). +- dm-crypt: recheck the integrity tag after a failure (git-fixes). +- dm-crypt: don't modify the data when using authenticated + encryption (git-fixes). +- dm-verity: recheck the hash after a failure (git-fixes). +- dm-integrity: recheck the integrity tag after a failure + (git-fixes). +- md: Fix missing release of 'active_io' for flush (jsc#PED-7542). +- dm-crypt, dm-verity: disable tasklets (git-fixes). +- dm writecache: allow allocations larger than 2GiB + (jsc#PED-7542). +- dm stats: limit the number of entries (jsc#PED-7542). +- md/raid1: Use blk_opf_t for read and write operations + (git-fixes). +- md: Fix md_seq_ops() regressions (git-fixes). +- md: Whenassemble the array, consult the superblock of the + freshest device (git-fixes). +- md/raid1: remove unnecessary null checking (jsc#PED-7542). +- md: synchronize flush io with array reconfiguration (git-fixes). +- commit 7042e1b + +------------------------------------------------------------------- +Mon Mar 18 14:47:14 CET 2024 - colyli@suse.de + +- md/raid5: remove rcu protection to access rdev from conf + (jsc#PED-7542). +- md/raid1: remove rcu protection to access rdev from conf + (jsc#PED-7542). +- md/raid10: remove rcu protection to access rdev from conf + (jsc#PED-7542). +- md: remove flag RemoveSynchronized (jsc#PED-7542). +- dm audit: fix Kconfig so DM_AUDIT depends on BLK_DEV_DM + (git-fixes). +- dm-integrity: don't modify bio's immutable bio_vec in + integrity_metadata() (git-fixes). +- commit 1587009 + +------------------------------------------------------------------- +Mon Mar 18 14:40:15 CET 2024 - colyli@suse.de + +- raid1: fix use-after-free for original bio in + raid1_write_request() (bsc#1221097). +- commit 296098e + +------------------------------------------------------------------- +Mon Mar 18 14:20:52 CET 2024 - mfranc@suse.cz + +- Update + patches.suse/s390-ptrace-handle-setting-of-fpc-register-correctly.patch + (git-fixes bsc#1219812 CVE-2023-52598 bsc#1221060). +- commit 0d496e7 + +------------------------------------------------------------------- +Mon Mar 18 14:18:36 CET 2024 - mfranc@suse.cz + +- Update + patches.suse/s390-vfio-ap-always-filter-entire-AP-matrix.patch + (git-fixes bsc#1218988 CVE-2024-26620 bsc#1221298). +- commit b046ad1 + +------------------------------------------------------------------- +Mon Mar 18 12:35:48 CET 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add testcases for tailcall infinite loop fixing + (git-fixes). +- bpf, x64: Fix tailcall infinite loop (git-fixes). +- selftests/bpf: Correct map_fd to data_fd in tailcalls + (git-fixes). +- commit 1302854 + +------------------------------------------------------------------- +Mon Mar 18 11:00:57 CET 2024 - spradhan@suse.de + +- btrfs: preallocate temporary extent buffer for inode logging when needed (bsc#1217362). +- commit c7ccbf0 + +------------------------------------------------------------------- +Mon Mar 18 09:42:34 CET 2024 - tiwai@suse.de + +- i3c: dw: Disable IBI IRQ depends on hot-join and SIR enabling + (git-fixes). +- watchdog: stm32_iwdg: initialize default timeout (git-fixes). +- watchdog: starfive: Check pm_runtime_enabled() before + decrementing usage counter (git-fixes). +- commit 357d510 + +------------------------------------------------------------------- +Sat Mar 16 15:52:28 CET 2024 - tiwai@suse.de + +- of: make for_each_property_of_node() available to to !OF + (git-fixes). +- mtd: rawnand: Constrain even more when continuous reads are + enabled (git-fixes). +- mtd: rawnand: Fix and simplify again the continuous read + derivations (git-fixes). +- mtd: rawnand: lpc32xx_mlc: fix irq handler prototype + (git-fixes). +- mtd: rawnand: meson: fix scrambling mode value in command macro + (git-fixes). +- mtd: maps: physmap-core: fix flash size larger than 32-bit + (git-fixes). +- media: usbtv: Remove useless locks in usbtv_video_free() + (git-fixes). +- media: ttpci: fix two memleaks in budget_av_attach (git-fixes). +- media: go7007: fix a memleak in go7007_load_encoder (git-fixes). +- media: dvb-frontends: avoid stack overflow warnings with clang + (git-fixes). +- media: pvrusb2: fix uaf in pvr2_context_set_notify (git-fixes). +- media: i2c: imx290: Fix IMX920 typo (git-fixes). +- media: pvrusb2: fix pvr2_stream_callback casts (git-fixes). +- media: pvrusb2: remove redundant NULL check (git-fixes). +- media: go7007: add check of return value of go7007_read_addr() + (git-fixes). +- media: imx: csc/scaler: fix v4l2_ctrl_handler memory leak + (git-fixes). +- media: sun8i-di: Fix chroma difference threshold (git-fixes). +- media: sun8i-di: Fix power on/off sequences (git-fixes). +- media: sun8i-di: Fix coefficient writes (git-fixes). +- media: cedrus: h265: Fix configuring bitstream size (git-fixes). +- media: edia: dvbdev: fix a use-after-free (git-fixes). +- media: nxp: imx8-isi: Check whether crossbar pad is non-NULL + before access (git-fixes). +- media: mc: Add local pad to pipeline regardless of the link + state (git-fixes). +- net: lan78xx: fix runtime PM count underflow on link stop + (git-fixes). +- commit 9b93c7d + +------------------------------------------------------------------- +Sat Mar 16 15:44:22 CET 2024 - tiwai@suse.de + +- clk: renesas: r8a779g0: Correct PFC/GPIO parent clocks + (git-fixes). +- commit 0b0c529 + +------------------------------------------------------------------- +Sat Mar 16 15:39:58 CET 2024 - tiwai@suse.de + +- crypto: jitter - fix CRYPTO_JITTERENTROPY help text (git-fixes). +- crypto: qat - remove double initialization of value (git-fixes). +- crypto: qat - avoid division by zero (git-fixes). +- crypto: qat - removed unused macro in adf_cnv_dbgfs.c + (git-fixes). +- crypto: qat - remove unused macros in qat_comp_alg.c + (git-fixes). +- crypto: ccp - Avoid discarding errors in + psp_send_platform_access_msg() (git-fixes). +- crypto: arm/sha - fix function cast warnings (git-fixes). +- crypto: qat - resolve race condition during AER recovery + (git-fixes). +- crypto: qat - change SLAs cleanup flow at shutdown (git-fixes). +- crypto: xilinx - call finalize with bh disabled (git-fixes). +- clk: imx: imx8mp: Fix SAI_MCLK_SEL definition (git-fixes). +- clk: samsung: exynos850: Propagate SPI IPCLK rate change + (git-fixes). +- clk: Fix clk_core_get NULL dereference (git-fixes). +- clk: qcom: mmcc-msm8974: fix terminating of frequency table + arrays (git-fixes). +- clk: qcom: mmcc-apq8084: fix terminating of frequency table + arrays (git-fixes). +- clk: qcom: gcc-ipq9574: fix terminating of frequency table + arrays (git-fixes). +- clk: qcom: gcc-ipq8074: fix terminating of frequency table + arrays (git-fixes). +- clk: qcom: gcc-ipq6018: fix terminating of frequency table + arrays (git-fixes). +- clk: qcom: dispcc-sdm845: Adjust internal GDSC wait times + (git-fixes). +- clk: qcom: gcc-sdm845: Add soft dependency on rpmhpd + (git-fixes). +- clk: meson: Add missing clocks to axg_clk_regmaps (git-fixes). +- clk: keystone: sci-clk: Adding support for non contiguous clocks + (git-fixes). +- clk: mediatek: mt7981-topckgen: flag SGM_REG_SEL as critical + (git-fixes). +- clk: mediatek: mt8183: Correct parent of CLK_INFRA_SSPM_32K_SELF + (git-fixes). +- clk: mediatek: mt8135: Fix an error handling path in + clk_mt8135_apmixed_probe() (git-fixes). +- clk: hisilicon: hi3559a: Fix an erroneous devm_kfree() + (git-fixes). +- clk: hisilicon: hi3519: Release the correct number of gates + in hi3519_clk_unregister() (git-fixes). +- clk: zynq: Prevent null pointer dereference caused by kmalloc + failure (git-fixes). +- clk: renesas: r8a779f0: Correct PFC/GPIO parent clock + (git-fixes). +- media: v4l2-mem2mem: fix a memleak in v4l2_m2m_register_entity + (git-fixes). +- media: v4l2-tpg: fix some memleaks in tpg_alloc (git-fixes). +- media: em28xx: annotate unchecked call to + media_device_register() (git-fixes). +- media: videobuf2: Fix doc comment (git-fixes). +- media: xc4000: Fix atomicity violation in xc4000_get_frequency + (git-fixes). +- media: staging: ipu3-imgu: Set fields before + media_entity_pads_init() (git-fixes). +- commit df2e5ae + +------------------------------------------------------------------- +Fri Mar 15 18:14:47 CET 2024 - ailiop@suse.com + +- xfs: shrink failure needs to hold AGI buffer (git-fixes). +- commit e670f77 + +------------------------------------------------------------------- +Fri Mar 15 18:11:09 CET 2024 - ailiop@suse.com + +- xfs: fix imprecise logic in xchk_btree_check_block_owner + (git-fixes). +- commit 24972c0 + +------------------------------------------------------------------- +Fri Mar 15 18:09:50 CET 2024 - ailiop@suse.com + +- xfs: fix SEEK_HOLE/DATA for regions with active COW extents + (git-fixes). +- commit 4197ae0 + +------------------------------------------------------------------- +Fri Mar 15 18:07:59 CET 2024 - ailiop@suse.com + +- xfs: ensure submit buffers on LSN boundaries in error handlers + (git-fixes). +- commit c23fb7a + +------------------------------------------------------------------- +Fri Mar 15 18:05:51 CET 2024 - mgorman@suse.de + +- printk: Monolithic bring printk up to date with v6.6-rt25 + (SLE Realtime Extension). +- serial: 8250_bcm7271: improve bcm7271 8250 port (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- 8250_men_mcb: fix error handling in + read_uarts_available_from_reg() (bsc#1214683 (PREEMPT_RT + prerequisite backports)). +- tty: serial: 8250: Define earlycon for mrvl,mmp-uart + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- 8250_men_mcb: Make UART config auto configurable (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- 8250_men_mcb: Read num ports from register data (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- 8250_men_mcb: Add clockrate speed for G215/F215 boards + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: 8250_rt288x: Remove unnecessary UART_REG_UNMAPPED + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: 8250_rt288x: Name non-standard divisor latch reg + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- serial: 8250: Allow using ports higher than + SERIAL_8250_RUNTIME_UARTS (bsc#1214683 (PREEMPT_RT prerequisite + backports)). +- cpuidle: Use local_clock_noinstr() (bsc#1214683 (PREEMPT_RT + prerequisite backports)). +- sched/clock: Provide local_clock_noinstr() (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- x86/tsc: Provide sched_clock_noinstr() (bsc#1214683 (PREEMPT_RT + prerequisite backports)). +- math64: Always inline u128 version of mul_u64_u64_shr() + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- s390/time: Provide sched_clock_noinstr() (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- arm64/arch_timer: Provide noinstr sched_clock_read() functions + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- arm64/io: Always inline all of __raw_{read,write}[bwlq]() + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- time/sched_clock: Provide sched_clock_noinstr() (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- seqlock/latch: Provide raw_read_seqcount_latch_retry() + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- commit e346663 + +------------------------------------------------------------------- +Fri Mar 15 18:04:47 CET 2024 - ailiop@suse.com + +- afs: Fix endless loop in directory parsing (git-fixes). +- commit d1332b9 + +------------------------------------------------------------------- +Fri Mar 15 18:04:10 CET 2024 - ailiop@suse.com + +- afs: Increase buffer size in afs_update_volume_status() + (git-fixes). +- commit a954f43 + +------------------------------------------------------------------- +Fri Mar 15 17:57:32 CET 2024 - ailiop@suse.com + +- nilfs2: fix hang in nilfs_lookup_dirty_data_buffers() + (git-fixes). +- commit 6c3b10c + +------------------------------------------------------------------- +Fri Mar 15 17:54:24 CET 2024 - ailiop@suse.com + +- nilfs2: convert nilfs_page_mkwrite() to use a folio (git-fixes). +- commit 29291de + +------------------------------------------------------------------- +Fri Mar 15 17:51:31 CET 2024 - ailiop@suse.com + +- erofs: fix handling kern_mount() failure (git-fixes). +- commit ea16f48 + +------------------------------------------------------------------- +Fri Mar 15 17:49:51 CET 2024 - ailiop@suse.com + +- erofs: Don't use certain unnecessary folio_*() functions + (git-fixes). +- commit 021c910 + +------------------------------------------------------------------- +Fri Mar 15 17:47:43 CET 2024 - ailiop@suse.com + +- erofs: fix refcount on the metabuf used for inode lookup + (git-fixes). +- commit 0bf0150 + +------------------------------------------------------------------- +Fri Mar 15 17:46:24 CET 2024 - ailiop@suse.com + +- erofs: clean up zmap.c (git-fixes). +- commit 3625a10 + +------------------------------------------------------------------- +Fri Mar 15 17:44:06 CET 2024 - ailiop@suse.com + +- erofs: fix up compacted indexes for block size < 4096 + (git-fixes). +- commit 458bf09 + +------------------------------------------------------------------- +Fri Mar 15 17:43:22 CET 2024 - ailiop@suse.com + +- erofs: fix memory leak on short-lived bounced pages (git-fixes). +- commit 5efbfc4 + +------------------------------------------------------------------- +Fri Mar 15 17:42:35 CET 2024 - vkarasulli@suse.de + +- iommu/amd: Fix failure return from snp_lookup_rmpentry() + (git-fixes). +- commit 536001e + +------------------------------------------------------------------- +Fri Mar 15 17:42:14 CET 2024 - ailiop@suse.com + +- erofs: allow empty device tags in flatdev mode (git-fixes). +- commit c8ff154 + +------------------------------------------------------------------- +Fri Mar 15 17:20:57 CET 2024 - vkarasulli@suse.de + +- iommu/vt-d: Don't issue ATS Invalidation request when device + is disconnected (git-fixes). +- commit 5d166d5 + +------------------------------------------------------------------- +Fri Mar 15 17:05:49 CET 2024 - mkoutny@suse.com + +- net/sched: Add module alias for sch_fq_pie (bsc#1210335). +- commit 211b413 + +------------------------------------------------------------------- +Fri Mar 15 16:39:35 CET 2024 - mkoutny@suse.com + +- net/sched: Remove alias of sch_clsact (bsc#1210335). +- net/sched: Load modules via their alias (bsc#1210335). +- net/sched: Add module aliases for cls_,sch_,act_ modules + (bsc#1210335). +- net/sched: Add helper macros with module names (bsc#1210335). +- commit 2046cfc + +------------------------------------------------------------------- +Fri Mar 15 14:16:53 CET 2024 - denis.kirjanov@suse.com + +- Refresh + patches.suse/perf-pmu-events-powerpc-Update-json-mapfile-with-Power11-PVR.patch. +- commit 42a5ace + +------------------------------------------------------------------- +Fri Mar 15 14:14:19 CET 2024 - denis.kirjanov@suse.com + +- ionic: restore netdev feature bits after reset (git-fixes). +- commit 898af71 + +------------------------------------------------------------------- +Fri Mar 15 14:12:42 CET 2024 - denis.kirjanov@suse.com + +- ionic: check cmd_regs before copying in or out (git-fixes). +- commit f1dc989 + +------------------------------------------------------------------- +Fri Mar 15 14:11:19 CET 2024 - denis.kirjanov@suse.com + +- ionic: check before releasing pci regions (git-fixes). +- commit 2a1c23c + +------------------------------------------------------------------- +Fri Mar 15 14:09:42 CET 2024 - denis.kirjanov@suse.com + +- net: veth: clear GRO when clearing XDP even when down (git-fixes). +- commit 553eb02 + +------------------------------------------------------------------- +Fri Mar 15 14:08:16 CET 2024 - denis.kirjanov@suse.com + +- tun: Fix xdp_rxq_info's queue_index when detaching (git-fixes). +- commit b7d1001 + +------------------------------------------------------------------- +Fri Mar 15 14:06:31 CET 2024 - denis.kirjanov@suse.com + +- net: dpaa: fman_memac: accept phy-interface-type = "10gbase-r" in the device tree (git-fixes). +- commit 675b36c + +------------------------------------------------------------------- +Fri Mar 15 12:55:55 CET 2024 - denis.kirjanov@suse.com + +- ice: Fix ASSERT_RTNL() warning during certain scenarios (git-fixes). +- commit 8b9399e + +------------------------------------------------------------------- +Fri Mar 15 12:54:26 CET 2024 - denis.kirjanov@suse.com + +- ice: fix pin phase adjust updates on PF reset (git-fixes). +- commit ef21fc4 + +------------------------------------------------------------------- +Fri Mar 15 12:53:03 CET 2024 - denis.kirjanov@suse.com + +- ice: fix dpll periodic work data updates on PF reset (git-fixes). +- commit dc97d19 + +------------------------------------------------------------------- +Fri Mar 15 12:51:37 CET 2024 - denis.kirjanov@suse.com + +- ice: fix dpll and dpll_pin data access on PF reset (git-fixes). +- commit f610e32 + +------------------------------------------------------------------- +Fri Mar 15 12:50:05 CET 2024 - denis.kirjanov@suse.com + +- ice: fix dpll input pin phase_adjust value updates (git-fixes). +- commit cfb9c02 + +------------------------------------------------------------------- +Fri Mar 15 12:48:40 CET 2024 - denis.kirjanov@suse.com + +- ice: fix connection state of DPLL and out pin (git-fixes). +- commit 7176021 + +------------------------------------------------------------------- +Fri Mar 15 12:47:05 CET 2024 - denis.kirjanov@suse.com + +- net: sparx5: Add spinlock for frame transmission from CPU (git-fixes). +- commit 2486a16 + +------------------------------------------------------------------- +Fri Mar 15 12:45:34 CET 2024 - denis.kirjanov@suse.com + +- gtp: fix use-after-free and null-ptr-deref in gtp_genl_dump_pdp() (git-fixes). +- commit 86d216d + +------------------------------------------------------------------- +Fri Mar 15 12:43:57 CET 2024 - denis.kirjanov@suse.com + +- net: ipa: don't overrun IPA suspend interrupt registers (git-fixes). +- commit 7f00d73 + +------------------------------------------------------------------- +Fri Mar 15 12:38:58 CET 2024 - denis.kirjanov@suse.com + +- ethernet: cpts: fix function pointer cast warnings (git-fixes). +- commit d241bc1 + +------------------------------------------------------------------- +Fri Mar 15 12:35:48 CET 2024 - denis.kirjanov@suse.com + +- net: ethernet: ti: cpsw_new: enable mac_managed_pm to fix mdio (git-fixes). +- commit 229f845 + +------------------------------------------------------------------- +Fri Mar 15 12:34:13 CET 2024 - denis.kirjanov@suse.com + +- ppp_async: limit MRU to 64K (git-fixes). +- commit 463471e + +------------------------------------------------------------------- +Fri Mar 15 12:32:46 CET 2024 - denis.kirjanov@suse.com + +- nfp: enable NETDEV_XDP_ACT_REDIRECT feature flag (git-fixes). +- commit 36e79a9 + +------------------------------------------------------------------- +Fri Mar 15 09:19:37 CET 2024 - tiwai@suse.de + +- ALSA: hda/tas2781: remove unnecessary runtime_pm calls + (git-fixes). +- ALSA: hda/realtek - ALC236 fix volume mute & mic mute LED on + some HP models (git-fixes). +- ALSA: hda/realtek: fix ALC285 issues on HP Envy x360 laptops + (git-fixes). +- ALSA: hda: Reuse for_each_pcm_streams() (git-fixes). +- ALSA: usb-audio: Name feature ctl using output if input is PCM + (git-fixes). +- commit fdd39ea + +------------------------------------------------------------------- +Fri Mar 15 09:15:01 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Add quirks for various HP ENVY models + (git-fixes). +- commit 62207c4 + +------------------------------------------------------------------- +Fri Mar 15 09:12:54 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Add "Intel Reference board" SSID in the + ALC256 (git-fixes). +- ALSA: hda/realtek: Remove two HP Laptops using CS35L41 + (git-fixes). +- ALSA: hda: cs35l41: Support HP models without _DSD using dual + Speaker ID (git-fixes). +- ALSA: hda: cs35l41: Support additional HP Envy Models + (git-fixes). +- ALSA: hda/realtek: Add quirks for HP G11 Laptops using CS35L56 + (git-fixes). +- ALSA: hda: realtek: Re-work CS35L41 fixups to re-use for other + amps (git-fixes). +- commit c4f7d5a + +------------------------------------------------------------------- +Fri Mar 15 08:28:03 CET 2024 - tiwai@suse.de + +- nilfs2: prevent kernel bug at submit_bh_wbc() (git-fixes). +- nilfs2: fix failure to detect DAT corruption in btree and + direct mappings (git-fixes). +- selftests/mm: protection_keys: save/restore nr_hugepages + settings (git-fixes). +- selftests/mm: hugetlb_reparenting_test: do not unmount + (git-fixes). +- selftests/mm: dont fail testsuite due to a lack of hugepages + (git-fixes). +- modules: wait do_free_init correctly (git-fixes). +- PCI: qcom: Enable BDF to SID translation properly (git-fixes). +- PCI: dwc: endpoint: Fix advertised resizable BAR size + (git-fixes). +- PCI: brcmstb: Fix broken brcm_pcie_mdio_write() polling + (git-fixes). +- PCI: switchtec: Fix an error handling path in + switchtec_pci_probe() (git-fixes). +- PCI/P2PDMA: Fix a sleeping issue in a RCU read section + (git-fixes). +- PCI: Mark 3ware-9650SE Root Port Extended Tags as broken + (git-fixes). +- PCI/DPC: Print all TLP Prefixes, not just the first (git-fixes). +- pci_iounmap(): Fix MMIO mapping leak (git-fixes). +- PCI/AER: Fix rootport attribute paths in ABI docs (git-fixes). +- platform/mellanox: mlxreg-hotplug: Remove redundant NULL-check + (git-fixes). +- platform/x86/intel/tpmi: Change vsec offset to u64 (git-fixes). +- Revert "platform/x86: asus-wmi: Support WMI event queue" + (git-fixes). +- leds: sgm3140: Add missing timer cleanup and flash gpio control + (git-fixes). +- Revert "leds: Only descend into leds directory when + CONFIG_NEW_LEDS is set" (git-fixes). +- leds: aw2013: Unlock mutex before destroying it (git-fixes). +- mfd: altera-sysmgr: Call of_node_put() only when + of_parse_phandle() takes a ref (git-fixes). +- mfd: syscon: Call of_node_put() only when of_parse_phandle() + takes a ref (git-fixes). +- pinctrl: renesas: r8a779g0: Add missing SCIF_CLK2 pin + group/function (git-fixes). +- pinctrl: mediatek: Drop bogus slew rate register range for + MT8192 (git-fixes). +- pinctrl: mediatek: Drop bogus slew rate register range for + MT8186 (git-fixes). +- HID: lenovo: Add middleclick_workaround sysfs knob for cptkbd + (git-fixes). +- HID: amd_sfh: Avoid disabling the interrupt (git-fixes). +- commit a95f20c + +------------------------------------------------------------------- +Fri Mar 15 08:23:42 CET 2024 - tiwai@suse.de + +- ALSA: usb-audio: Stop parsing channels bits when all channels + are found (git-fixes). +- ALSA: aaci: Delete unused variable in aaci_do_suspend + (git-fixes). +- ASoC: meson: axg-tdm-interface: add frame rate constraint + (git-fixes). +- ASoC: meson: axg-tdm-interface: fix mclk setup without mclk-fs + (git-fixes). +- ASoC: SOF: Add some bounds checking to firmware data + (git-fixes). +- ASoC: meson: t9015: fix function pointer type mismatch + (git-fixes). +- ASoC: meson: aiu: fix function pointer type mismatch + (git-fixes). +- ASoC: sh: rz-ssi: Fix error message print (git-fixes). +- ASoC: SOF: amd: Fix memory leak in amd_sof_acp_probe() + (git-fixes). +- ASoC: amd: acp: Add missing error handling in sof-mach + (git-fixes). +- ALSA: hda/tas2781: restore power state after system_resume + (git-fixes). +- ALSA: hda/tas2781: do not call pm_runtime_force_* in + system_resume/suspend (git-fixes). +- ALSA: hda/tas2781: do not reset cur_* values in runtime_suspend + (git-fixes). +- ALSA: hda/tas2781: add lock to system_suspend (git-fixes). +- ALSA: hda/tas2781: use dev_dbg in system_resume (git-fixes). +- ALSA: seq: fix function cast warnings (git-fixes). +- ALSA: aw2: avoid casting function pointers (git-fixes). +- ALSA: ctxfi: avoid casting function pointers (git-fixes). +- ALSA: hda: cs35l41: Set Channel Index correctly when system + is missing _DSD (git-fixes). +- backlight: lp8788: Fully initialize backlight_properties during + probe (git-fixes). +- backlight: lm3639: Fully initialize backlight_properties during + probe (git-fixes). +- backlight: da9052: Fully initialize backlight_properties during + probe (git-fixes). +- backlight: lm3630a: Don't set bl->props.brightness in + get_brightness (git-fixes). +- backlight: lm3630a: Initialize backlight_properties on init + (git-fixes). +- backlight: ktz8866: Correct the check for of_property_read_u32 + (git-fixes). +- backlight: hx8357: Fix potential NULL pointer dereference + (git-fixes). +- gpio: nomadik: fix offset bug in nmk_pmx_set() (git-fixes). +- HID: amd_sfh: Update HPD sensor structure elements (git-fixes). +- commit 428d278 + +------------------------------------------------------------------- +Thu Mar 14 17:43:21 CET 2024 - tiwai@suse.de + +- Update patch reference for IDXD fix (bsc#1221428) +- commit 20b42d0 + +------------------------------------------------------------------- +Thu Mar 14 16:44:44 CET 2024 - nik.borisov@suse.com + +- KVM/x86: Export RFDS_NO and RFDS_CLEAR to guests (bsc#1213456 CVE-2023-28746). +- commit a59ffeb + +------------------------------------------------------------------- +Thu Mar 14 16:44:27 CET 2024 - nik.borisov@suse.com + +- x86/rfds: Mitigate Register File Data Sampling (RFDS) (bsc#1213456 CVE-2023-28746). +- commit c210394 + +------------------------------------------------------------------- +Thu Mar 14 16:43:01 CET 2024 - nik.borisov@suse.com + +- Documentation/hw-vuln: Add documentation for RFDS (bsc#1213456 CVE-2023-28746). +- commit 0f1938a + +------------------------------------------------------------------- +Thu Mar 14 16:41:56 CET 2024 - nik.borisov@suse.com + +- x86/mmio: Disable KVM mitigation when X86_FEATURE_CLEAR_CPU_BUF is set (bsc#1213456 CVE-2023-28746). +- commit 52997cc + +------------------------------------------------------------------- +Thu Mar 14 16:05:39 CET 2024 - vkarasulli@suse.de + +- iommu/amd: Mark interrupt as managed (git-fixes). +- commit 5ef4be8 + +------------------------------------------------------------------- +Thu Mar 14 15:07:40 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Refactor devicetree for OSM-S module and (git-fixes) +- commit 0049d8d + +------------------------------------------------------------------- +Thu Mar 14 14:54:18 CET 2024 - msuchanek@suse.de + +- Update ppc64le kabi files. +- commit 5c9702d + +------------------------------------------------------------------- +Thu Mar 14 12:45:19 CET 2024 - iivanov@suse.de + +- arm64: dts: sprd: Change UMS512 idle-state nodename to match bindings (git-fixes) +- commit 58013ba + +------------------------------------------------------------------- +Thu Mar 14 12:43:39 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: drop rockchip,trcm-sync-tx-only from rk3588 i2s (git-fixes) +- commit b287ab6 + +------------------------------------------------------------------- +Thu Mar 14 12:42:15 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: fix reset-names for rk356x i2s2 controller (git-fixes) +- commit bfdd563 + +------------------------------------------------------------------- +Thu Mar 14 12:41:07 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: add missing interrupt-names for rk356x vdpu (git-fixes) +- commit b9c1de2 + +------------------------------------------------------------------- +Thu Mar 14 12:39:52 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mp: Set SPI NOR to max 40 MHz on Data Modul i.MX8M (git-fixes) +- commit 5a00002 + +------------------------------------------------------------------- +Thu Mar 14 12:38:28 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-venice-gw71xx: fix USB OTG VBUS (git-fixes) +- commit a9642be + +------------------------------------------------------------------- +Thu Mar 14 12:36:58 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Fix OSM-S devicetrees to match latest (git-fixes) +- commit d17e1b2 + +------------------------------------------------------------------- +Thu Mar 14 12:35:11 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Fix interrupt for RTC on OSM-S i.MX8MM (git-fixes) +- commit 63e3e05 + +------------------------------------------------------------------- +Thu Mar 14 12:34:07 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pull resistors for SD card (git-fixes) +- commit 645b123 + +------------------------------------------------------------------- +Thu Mar 14 12:32:48 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pull resistors for SD card (git-fixes) +- commit 63490f6 + +------------------------------------------------------------------- +Thu Mar 14 12:31:50 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pullups for onboard UART signals (git-fixes) +- commit 980bc4a + +------------------------------------------------------------------- +Thu Mar 14 12:30:45 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pullups for onboard UART signals (git-fixes) +- commit 3a04f44 + +------------------------------------------------------------------- +Thu Mar 14 12:29:49 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pullups for I2C signals on SL/BL (git-fixes) +- commit d23e2ff + +------------------------------------------------------------------- +Thu Mar 14 12:28:37 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mm-kontron: Disable pullups for I2C signals on OSM-S (git-fixes) +- commit e658d8c + +------------------------------------------------------------------- +Thu Mar 14 12:27:31 CET 2024 - iivanov@suse.de + +- arm64: dts: allwinner: h6: Add RX DMA channel for SPDIF (git-fixes) +- commit 8098072 + +------------------------------------------------------------------- +Thu Mar 14 12:26:09 CET 2024 - iivanov@suse.de + +- arm64: tegra: Fix Tegra234 MGBE power-domains (git-fixes) +- commit 58db13b + +------------------------------------------------------------------- +Thu Mar 14 12:24:54 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mp: Fix LDB clocks property (git-fixes) +- commit 8815925 + +------------------------------------------------------------------- +Thu Mar 14 12:22:28 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: set num-cs property for spi on px30 (git-fixes) +- commit ac8cd44 + +------------------------------------------------------------------- +Thu Mar 14 12:21:26 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8mp: Disable UART4 by default on Data Modul i.MX8M (git-fixes) +- commit d39bc86 + +------------------------------------------------------------------- +Thu Mar 14 12:20:00 CET 2024 - iivanov@suse.de + +- arm64: dts: sprd: Add clock reference for pll2 on UMS512 (git-fixes) +- commit 8ef3da3 + +------------------------------------------------------------------- +Thu Mar 14 12:19:00 CET 2024 - iivanov@suse.de + +- arm64: zynqmp: Fix clock node name in kv260 cards (git-fixes) +- commit 49dfade + +------------------------------------------------------------------- +Thu Mar 14 12:17:48 CET 2024 - iivanov@suse.de + +- arm64: zynqmp: Move fixed clock to / for kv260 (git-fixes) +- commit 8a08b0f + +------------------------------------------------------------------- +Thu Mar 14 11:09:55 CET 2024 - lhenriques@suse.de + +- libceph: init the cursor when preparing sparse read in msgr2 + (bsc#1221393). +- ceph: switch to corrected encoding of max_xattr_size in mdsmap + (bsc#1221392). +- ceph: prevent use-after-free in encode_cap_msg() (bsc#1221391). +- libceph: just wait for more data to be available on the socket + (bsc#1221390). +- libceph: rename read_sparse_msg_*() to + read_partial_sparse_msg_*() (bsc#1221389). +- libceph: fail sparse-read if the data length doesn't match + (bsc#1221388). +- commit 088fe3e + +------------------------------------------------------------------- +Thu Mar 14 10:55:48 CET 2024 - iivanov@suse.de + +- Make NVIDIA Grace-Hopper TPM related drivers build-ins (bsc#1221156) +- commit 32745a0 + +------------------------------------------------------------------- +Thu Mar 14 10:16:37 CET 2024 - tiwai@suse.de + +- kabi/severities: ignore intel_tcc_get_temp() change (git-fixes) +- commit 62d327d + +------------------------------------------------------------------- +Thu Mar 14 10:13:54 CET 2024 - tiwai@suse.de + +- thermal/intel: Fix intel_tcc_get_temp() to support negative + CPU temperature (git-fixes). +- commit 6dc4a23 + +------------------------------------------------------------------- +Thu Mar 14 10:12:16 CET 2024 - tiwai@suse.de + +- memfd: drop warning for missing exec-related flags + (bsc#1221161). +- commit 68995fe + +------------------------------------------------------------------- +Thu Mar 14 08:15:06 CET 2024 - tiwai@suse.de + +- gpiolib: Pass consumer device through to core in + devm_fwnode_gpiod_get_index() (git-fixes). +- commit 446d465 + +------------------------------------------------------------------- +Thu Mar 14 08:13:52 CET 2024 - tiwai@suse.de + +- drm/msm/dpu: add division of drm_display_mode's hskew parameter + (git-fixes). +- media: tc358743: register v4l2 async device only after + successful setup (git-fixes). +- tpm,tpm_tis: Avoid warning splat at shutdown (git-fixes). +- powercap: dtpm_cpu: Fix error check against + freq_qos_add_request() (git-fixes). +- powercap: intel_rapl_tpmi: Fix a register bug (git-fixes). +- powercap: intel_rapl: Fix a NULL pointer dereference + (git-fixes). +- PM: sleep: wakeirq: fix wake irq warning in system suspend + (git-fixes). +- PM: suspend: Set mem_sleep_current during kernel command line + setup (git-fixes). +- selftest: gpio: remove obsolete gpio-mockup test (git-fixes). +- gpio: vf610: allow disabling the vf610 driver (git-fixes). +- regulator: userspace-consumer: add module device table + (git-fixes). +- mmc: core: Fix switch on gp3 partition (git-fixes). +- mmc: wmt-sdmmc: remove an incorrect release_mem_region() + call in the .remove function (git-fixes). +- mmc: tmio: avoid concurrent runs of mmc_request_done() + (git-fixes). +- pwm: mediatek: Update kernel doc for struct pwm_mediatek_of_data + (git-fixes). +- pwm: sti: Fix capture for st,pwm-num-chan < st,capture-num-chan + (git-fixes). +- commit 7ae9bb9 + +------------------------------------------------------------------- +Thu Mar 14 08:07:55 CET 2024 - tiwai@suse.de + +- Add cherry-picked id to amdgpu patch +- commit 1ec0805 + +------------------------------------------------------------------- +Thu Mar 14 08:05:50 CET 2024 - tiwai@suse.de + +- drm/etnaviv: Restore some id values (git-fixes). +- drm/amd/pm: Fix esm reg mask use to get pcie speed (git-fixes). +- drm/amdgpu: Fix missing break in ATOM_ARG_IMM Case of + atom_get_src_int() (git-fixes). +- Revert "drm/amdgpu: Add pcie usage callback to nbio" + (git-fixes). +- Revert "drm/amdgpu: Add pci usage to nbio v7.9" (git-fixes). +- drm/msm/a7xx: Fix LLC typo (git-fixes). +- drm/msm/dpu: finalise global state object (git-fixes). +- drm/msm/dpu: Only enable DSC_MODE_MULTIPLEX if dsc_merge is + enabled (git-fixes). +- drm/msm/dpu: fix the programming of INTF_CFG2_DATA_HCTL_EN + (git-fixes). +- drm/msm/dpu: improve DSC allocation (git-fixes). +- drm/mediatek: Fix a null pointer crash in + mtk_drm_crtc_finish_page_flip (git-fixes). +- drm/mediatek: dsi: Fix DSI RGB666 formats and definitions + (git-fixes). +- drm/tests: helpers: Include missing drm_drv header (git-fixes). +- drm/tidss: Fix sync-lost issue with two displays (git-fixes). +- drm/tidss: Fix initial plane zpos values (git-fixes). +- drm/tegra: put drm_gem_object ref on error in tegra_fb_create + (git-fixes). +- drm/bridge: adv7511: fix crash on irq during probe (git-fixes). +- drm/panel: boe-tv101wum-nl6: make use of prepare_prev_first + (git-fixes). +- drm/amd/display: Add 'replay' NULL check in + 'edp_set_replay_allow_active()' (git-fixes). +- drm/amd/display: fix NULL checks for adev->dm.dc in + amdgpu_dm_fini() (git-fixes). +- drm/radeon/ni: Fix wrong firmware size logging in + ni_init_microcode() (git-fixes). +- drm: ci: use clk_ignore_unused for apq8016 (git-fixes). +- Revert "drm/i915/xe2lpd: Treat cursor plane as regular plane + for DDB allocation" (git-fixes). +- drm/amdgpu: Fix potential out-of-bounds access in + 'amdgpu_discovery_reg_base_init()' (git-fixes). +- drm/amd/display: Fix potential NULL pointer dereferences in + 'dcn10_set_output_transfer_func()' (git-fixes). +- drm/amd/display: Fix a potential buffer overflow in + 'dp_dsc_clock_en_read()' (git-fixes). +- drm/radeon/ni_dpm: remove redundant NULL check (git-fixes). +- drm/radeon: remove dead code in ni_mc_load_microcode() + (git-fixes). +- drm/vmwgfx: Fix the lifetime of the bo cursor memory + (git-fixes). +- drm/vmwgfx: Fix vmw_du_get_cursor_mob fencing of newly-created + MOBs (git-fixes). +- drm/vmwgfx: Fix possible null pointer derefence with invalid + contexts (git-fixes). +- drm/lima: fix a memleak in lima_heap_alloc (git-fixes). +- drm/panel-edp: use put_sync in unprepare (git-fixes). +- drm/rockchip: lvds: do not print scary message when probing + defer (git-fixes). +- drm/rockchip: lvds: do not overwrite error code (git-fixes). +- drm/vmwgfx: Unmap the surface before resetting it on a plane + state (git-fixes). +- drm/vmwgfx: fix a memleak in vmw_gmrid_man_get_node (git-fixes). +- drm/vkms: Avoid reading beyond LUT array (git-fixes). +- drm: Don't treat 0 as -1 in drm_fixp2int_ceil (git-fixes). +- drm/rockchip: inno_hdmi: Fix video timing (git-fixes). +- drm/tegra: output: Fix missing i2c_put_adapter() in the error + handling paths of tegra_output_probe() (git-fixes). +- drm/tegra: rgb: Fix missing clk_put() in the error handling + paths of tegra_dc_rgb_probe() (git-fixes). +- drm/tegra: rgb: Fix some error handling paths in + tegra_dc_rgb_probe() (git-fixes). +- drm/tegra: hdmi: Fix some error handling paths in + tegra_hdmi_probe() (git-fixes). +- drm/tegra: dsi: Fix missing pm_runtime_disable() in the error + handling path of tegra_dsi_probe() (git-fixes). +- drm/tegra: dsi: Fix some error handling paths in + tegra_dsi_probe() (git-fixes). +- drm/tegra: dpaux: Fix PM disable depth imbalance in + tegra_dpaux_probe (git-fixes). +- drm/tegra: dsi: Add missing check for of_find_device_by_node + (git-fixes). +- ACPI: processor_idle: Fix memory leak in + acpi_processor_power_exit() (git-fixes). +- ACPI: resource: Add MAIBENBEN X577 to + irq1_edge_low_force_override (git-fixes). +- ACPI: scan: Fix device check notification handling (git-fixes). +- ACPI: CPPC: enable AMD CPPC V2 support for family 17h processors + (git-fixes). +- cpufreq: qcom-hw: add CONFIG_COMMON_CLK dependency (git-fixes). +- cpufreq: brcmstb-avs-cpufreq: add check for cpufreq_cpu_get's + return value (git-fixes). +- cpufreq: Limit resolving a frequency to policy min/max + (git-fixes). +- cpufreq: amd-pstate: Fix min_perf assignment in + amd_pstate_adjust_perf() (git-fixes). +- commit 451635c + +------------------------------------------------------------------- +Thu Mar 14 07:48:20 CET 2024 - nik.borisov@suse.com + +- RAS: Export helper to get ras_debugfs_dir (jsc#PED-7619). +- commit ddeebbf + +------------------------------------------------------------------- +Wed Mar 13 20:23:05 CET 2024 - msuchanek@suse.de + +- powerpc/64s: Fix get_hugepd_cache_index() build failure + (bsc#1215199). +- powerpc: Remove cpu-as-y completely (bsc#1215199). +- powerpc/64s: Use .machine power4 around dcbt (bsc#1215199). +- powerpc/64s: Move dcbt/dcbtst sequence into a macro + (bsc#1215199). +- powerpc/pseries: Fix potential memleak in papr_get_attr() + (bsc#1215199). +- powerpc/kprobes: Handle error returned by set_memory_rox() + (bsc#1215199). +- powerpc: Implement set_memory_rox() (bsc#1215199). +- powerpc: Use user_mode() macro when possible (bsc#1215199). +- powerpc/rtas: use correct function name for resetting TCE tables + (bsc#1215199). +- commit 35dba53 + +------------------------------------------------------------------- +Wed Mar 13 17:44:47 CET 2024 - fdmanana@suse.com + +- btrfs: avoid copying BTRFS_ROOT_SUBVOL_DEAD flag to snapshot + of subvolume being deleted (bsc#1221282). +- commit adc8e1b + +------------------------------------------------------------------- +Wed Mar 13 17:30:12 CET 2024 - fdmanana@suse.com + +- btrfs: don't abort filesystem when attempting to snapshot + deleted subvolume (bsc#1221282). +- commit 7de0be8 + +------------------------------------------------------------------- +Wed Mar 13 17:26:34 CET 2024 - tiwai@suse.de + +- Fix missing initial value for tcp pingpong threshold (bsc#1221339,bsc#1221305,bsc#1221032,bsc#1221261) + This caused high latencies leading to various network issues +- commit de6f6b8 + +------------------------------------------------------------------- +Wed Mar 13 15:58:37 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/FMPM: Fix off by one when unwinding on error (jsc#PED-7619). +- commit 083602e + +------------------------------------------------------------------- +Wed Mar 13 15:57:19 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/FMPM: Add debugfs interface to print record entries (jsc#PED-7619). +- commit 1a5e647 + +------------------------------------------------------------------- +Wed Mar 13 15:56:56 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/FMPM: Save SPA values (jsc#PED-7619). +- commit 4072c0c + +------------------------------------------------------------------- +Wed Mar 13 15:26:37 CET 2024 - tiwai@suse.de + +- Bluetooth: Fix eir name length (git-fixes). +- wifi: mac80211: update scratch_pos after defrag (git-fixes). +- wifi: mac80211: track capability/opmode NSS separately + (git-fixes). +- wifi: mt76: mt792x: fix a potential loading failure of the + 6Ghz channel config from ACPI (git-fixes). +- wifi: mt76: mt7921e: fix use-after-free in free_irq() + (git-fixes). +- wifi: iwlwifi: mvm: fix warnings from dmi_get_system_info() + (git-fixes). +- wifi: wilc1000: fix RCU usage in connect path (git-fixes). +- commit 76a6eff + +------------------------------------------------------------------- +Wed Mar 13 15:04:29 CET 2024 - tiwai@suse.de + +- blacklist.conf: add a BT entry that breaks kABI +- commit a6a5c3b + +------------------------------------------------------------------- +Wed Mar 13 15:02:47 CET 2024 - tiwai@suse.de + +- gpu/host1x kABI workaround (git-fixes). +- commit 86a9dbb + +------------------------------------------------------------------- +Wed Mar 13 14:53:36 CET 2024 - tiwai@suse.de + +- gpu: host1x: Skip reset assert on Tegra186 (git-fixes). +- commit 88887cf + +------------------------------------------------------------------- +Wed Mar 13 14:52:32 CET 2024 - tiwai@suse.de + +- blacklist.conf: add entries for firewire +- commit f73cdd2 + +------------------------------------------------------------------- +Wed Mar 13 14:50:58 CET 2024 - tiwai@suse.de + +- drm/nouveau: don't fini scheduler before entity flush + (git-fixes). +- commit 3d3c54d + +------------------------------------------------------------------- +Wed Mar 13 14:39:57 CET 2024 - mgorman@suse.de + +- futex: Prevent the reuse of stale pi_state (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- commit 82905f3 + +------------------------------------------------------------------- +Wed Mar 13 13:16:47 CET 2024 - mgorman@suse.de + +- drm/i915/guc: Consider also RCU depth in busy loop (SLE + Realtime Extension). +- srcu: Use try-lock lockdep annotation for NMI-safe access + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- futex/pi: Fix recursive rt_mutex waiter state (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- srcu: Remove extraneous parentheses from srcu_read_lock() etc + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- commit b354209 + +------------------------------------------------------------------- +Wed Mar 13 13:03:56 CET 2024 - mgorman@suse.de + +- srcu: Use try-lock lockdep annotation for NMI-safe access + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- futex/pi: Fix recursive rt_mutex waiter state (bsc#1214683 + (PREEMPT_RT prerequisite backports)). +- srcu: Remove extraneous parentheses from srcu_read_lock() etc + (bsc#1214683 (PREEMPT_RT prerequisite backports)). +- commit e04ae5b + +------------------------------------------------------------------- +Wed Mar 13 12:41:25 CET 2024 - tiwai@suse.de + +- Update config files: refresh for x86_64 and armv7hl +- commit 8a3dfcc + +------------------------------------------------------------------- +Wed Mar 13 10:26:22 CET 2024 - oneukum@suse.com + +- r8152: fix unknown device for choose_configuration (git-fixes). +- commit 71e2f25 + +------------------------------------------------------------------- +Wed Mar 13 10:02:23 CET 2024 - iivanov@suse.de + +- Update patches.suse/arm64-sme-Always-exit-sme_alloc-early-with-existing-.patch (git-fixes, CVE-2024-26618) + Add reference to CVE-2024-26618. +- commit 50882e3 + +------------------------------------------------------------------- +Wed Mar 13 09:27:26 CET 2024 - tiwai@suse.de + +- bluetooth hci_uart_register_device() kABI workaround + (git-fixes). +- commit 2fcc10e + +------------------------------------------------------------------- +Wed Mar 13 09:17:20 CET 2024 - tiwai@suse.de + +- net: phy: dp83822: Fix RGMII TX delay configuration (git-fixes). +- net: phy: fix phy_get_internal_delay accessing an empty array + (git-fixes). +- Bluetooth: btnxpuart: Fix btnxpuart_close (git-fixes). +- Bluetooth: af_bluetooth: Fix deadlock (git-fixes). +- Bluetooth: hci_core: Fix possible buffer overflow (git-fixes). +- Bluetooth: btrtl: fix out of bounds memory access (git-fixes). +- Bluetooth: hci_h5: Add ability to allocate memory for private + data (git-fixes). +- Bluetooth: hci_qca: don't use IS_ERR_OR_NULL() with + gpiod_get_optional() (git-fixes). +- Bluetooth: hci_event: Fix not indicating new connection for + BIG Sync (git-fixes). +- Bluetooth: Remove superfluous call to hci_conn_check_pending() + (git-fixes). +- Bluetooth: mgmt: Remove leftover queuing of power_off work + (git-fixes). +- Bluetooth: Remove HCI_POWER_OFF_TIMEOUT (git-fixes). +- wifi: brcm80211: handle pmk_op allocation failure (git-fixes). +- wifi: rtw88: 8821c: Fix false alarm count (git-fixes). +- wifi: rtw88: 8821c: Fix beacon loss and disconnect (git-fixes). +- wifi: rtw88: 8821cu: Fix firmware upload fail (git-fixes). +- wifi: mt76: mt7921: fix incorrect type conversion for CLC + command (git-fixes). +- wifi: mt76: mt7996: fix HIF_TXD_V2_1 value (git-fixes). +- wifi: mt76: mt7996: fix efuse reading issue (git-fixes). +- wifi: mt76: mt7996: fix HE beamformer phy cap for station vif + (git-fixes). +- wifi: mt76: mt7996: fix incorrect interpretation of EHT MCS caps + (git-fixes). +- wifi: mt76: mt7996: fix TWT issues (git-fixes). +- sr9800: Add check for usbnet_get_endpoints (git-fixes). +- wifi: ath12k: fix incorrect logic of calculating vdev_stats_id + (git-fixes). +- wifi: ath11k: initialize rx_mcs_80 and rx_mcs_160 before use + (git-fixes). +- wifi: ath11k: change to move WMI_VDEV_PARAM_SET_HEMU_MODE + before WMI_PEER_ASSOC_CMDID (git-fixes). +- wifi: ath9k: delay all of ath9k_wmi_event_tasklet() until init + is complete (git-fixes). +- wifi: wilc1000: revert reset line logic flip (git-fixes). +- wifi: brcmsmac: avoid function pointer casts (git-fixes). +- wifi: wilc1000: prevent use-after-free on vif when cleaning + up all interfaces (git-fixes). +- wifi: iwlwifi: mvm: Fix the listener MAC filter flags + (git-fixes). +- wifi: iwlwifi: mvm: don't set replay counters to 0xff + (git-fixes). +- wifi: iwlwifi: mvm: don't set the MFP flag for the GTK + (git-fixes). +- wifi: iwlwifi: mvm: fix erroneous queue index mask (git-fixes). +- wifi: iwlwifi: support EHT for WH (git-fixes). +- wifi: wfx: fix memory leak when starting AP (git-fixes). +- wifi: brcmsmac: Drop legacy header (git-fixes). +- wifi: libertas: fix some memleaks in lbs_allocate_cmd_buffer() + (git-fixes). +- wifi: iwlwifi: read BIOS PNVM only for non-Intel SKU + (git-fixes). +- wifi: iwlwifi: mvm: fix the TLC command after ADD_STA + (git-fixes). +- wifi: iwlwifi: mvm: use FW rate for non-data only on new devices + (git-fixes). +- wifi: iwlwifi: mvm: d3: fix IPN byte order (git-fixes). +- wifi: iwlwifi: fix EWRD table validity check (git-fixes). +- wifi: iwlwifi: mvm: initialize rates in FW earlier (git-fixes). +- wifi: iwlwifi: acpi: fix WPFC reading (git-fixes). +- wifi: iwlwifi: dbg-tlv: ensure NUL termination (git-fixes). +- wifi: iwlwifi: mvm: report beacon protection failures + (git-fixes). +- wifi: brcmfmac: fix copyright year mentioned in platform_data + header (git-fixes). +- wifi: ath12k: Fix issues in channel list update (git-fixes). +- wifi: ath10k: fix NULL pointer dereference in + ath10k_wmi_tlv_op_pull_mgmt_tx_compl_ev() (git-fixes). +- can: softing: remove redundant NULL check (git-fixes). +- wifi: brcmfmac: avoid invalid list operation when vendor attach + fails (git-fixes). +- wifi: mwifiex: debugfs: Drop unnecessary error check for + debugfs_create_dir() (git-fixes). +- wifi: wilc1000: fix multi-vif management when deleting a vif + (git-fixes). +- wifi: wilc1000: do not realloc workqueue everytime an interface + is added (git-fixes). +- wifi: rtl8xxxu: add cancel_work_sync() for c2hcmd_work + (git-fixes). +- wifi: b43: Disable QoS for bcm4331 (git-fixes). +- wifi: b43: Stop correct queue in DMA worker when QoS is disabled + (git-fixes). +- wifi: b43: Stop/wake correct queue in PIO Tx path when QoS is + disabled (git-fixes). +- wifi: b43: Stop/wake correct queue in DMA Tx path when QoS is + disabled (git-fixes). +- doc-guide: kernel-doc: tell about object-like macros + (git-fixes). +- soc: qcom: llcc: Check return value on Broadcast_OR reg read + (git-fixes). +- soc: qcom: socinfo: rename PM2250 to PM4125 (git-fixes). +- bus: tegra-aconnect: Update dependency to ARCH_TEGRA + (git-fixes). +- firmware: arm_scmi: Fix double free in SMC transport cleanup + path (git-fixes). +- commit d454c2c + +------------------------------------------------------------------- +Wed Mar 13 08:58:39 CET 2024 - tiwai@suse.de + +- Move upstreamed patches into sorted section +- commit 5709f5a + +------------------------------------------------------------------- +Wed Mar 13 08:49:16 CET 2024 - tiwai@suse.de + +- Move upstreamed patches into sorted section +- commit 612fa2e + +------------------------------------------------------------------- +Wed Mar 13 06:13:12 CET 2024 - ddiss@suse.de + +- selinux: only filter copy-up xattrs following initialization + (bsc#1210690). +- commit f42baec + +------------------------------------------------------------------- +Wed Mar 13 01:48:09 CET 2024 - neilb@suse.de + +- NFS: Fix data corruption caused by congestion (git-fixes). +- pNFS: Fix the pnfs block driver's calculation of layoutget size + (git-fixes). +- NFSv4.1: fixup use EXCHGID4_FLAG_USE_PNFS_DS for DS server + (git-fixes). +- NFS: Fix O_DIRECT locking issues (git-fixes). +- commit b64b15f + +------------------------------------------------------------------- +Tue Mar 12 23:31:45 CET 2024 - neilb@suse.de + +- nfsd: don't take fi_lock in nfsd_break_deleg_cb() (git-fixes). +- SUNRPC: fix _xprt_switch_find_current_entry logic (git-fixes). +- NFSv4.1/pnfs: Ensure we handle the error NFS4ERR_RETURNCONFLICT + (git-fixes). +- NFS: Use parent's objective cred in nfs_access_login_time() + (git-fixes). +- blocklayoutdriver: Fix reference leak of pnfs_device_node + (git-fixes). +- SUNRPC: Fix a suspicious RCU usage warning (git-fixes). +- NFSD: Fix "start of NFS reply" pointer passed to + nfsd_cache_update() (git-fixes). +- NFSD: Update nfsd_cache_append() to use xdr_stream (git-fixes). +- nfsd: fix file memleak on client_opens_release (git-fixes). +- SUNRPC: Fix RPC client cleaned up the freed pipefs dentries + (git-fixes). +- NFSv4.1: fix SP4_MACH_CRED protection for pnfs IO (git-fixes). +- SUNRPC: Add an IS_ERR() check back to where it was (git-fixes). +- NFSv4.1: fix handling NFS4ERR_DELAY when testing for session + trunking (git-fixes). +- SUNRPC: ECONNRESET might require a rebind (git-fixes). +- svcrdma: Drop connection after an RDMA Read error (git-fixes). +- nfsd: Handle EOPENSTALE correctly in the filecache (git-fixes). +- nfsd: lock_rename() needs both directories to live on the same + fs (git-fixes). +- pNFS/flexfiles: Check the layout validity in + ff_layout_mirror_prepare_stats (git-fixes). +- pNFS: Fix a hang in nfs4_evict_inode() (git-fixes). +- NFS: Fix potential oops in nfs_inode_remove_request() + (git-fixes). +- nfs42: client needs to strip file mode's suid/sgid bit after + ALLOCATE op (git-fixes). +- nfs: decrement nrequests counter before releasing the req + (git-fixes). +- SUNRPC/TLS: Lock the lower_xprt during the tls handshake + (git-fixes). +- Revert "SUNRPC dont update timeout value on connection reset" + (git-fixes). +- NFSv4: Fix a state manager thread deadlock regression + (git-fixes). +- NFSv4: Fix a nfs4_state_manager() race (git-fixes). +- SUNRPC: Fail quickly when server does not recognize TLS + (git-fixes). +- NFSv4.1: fix zero value filehandle in post open getattr + (git-fixes). +- NFS: More fixes for nfs_direct_write_reschedule_io() + (git-fixes). +- NFS: Use the correct commit info in nfs_join_page_group() + (git-fixes). +- NFS: More O_DIRECT accounting fixes for error paths (git-fixes). +- NFS: Fix error handling for O_DIRECT write scheduling + (git-fixes). +- nfsd: fix change_info in NFSv4 RENAME replies (git-fixes). +- NFSv4.1: use EXCHGID4_FLAG_USE_PNFS_DS for DS server + (git-fixes). +- NFS: Fix a potential data corruption (git-fixes). +- NFSv4/pnfs: minor fix for cleanup path in nfs4_get_device_info + (git-fixes). +- commit e298a32 + +------------------------------------------------------------------- +Tue Mar 12 17:25:48 CET 2024 - lhenriques@suse.de + +- Update + patches.suse/ceph-fix-deadlock-or-deadcode-of-misusing-dget.patch + (bsc#1220453 bsc#1221058 CVE-2023-52583). +- commit 25befcc + +------------------------------------------------------------------- +Tue Mar 12 16:58:11 CET 2024 - mgorman@suse.de + +- sched/fair: Combine EAS check with overutilized access + (bsc#1221157). +- sched/fair: Use helper function to access rd->overutilized + (bsc#1221157). +- sched/fair: Add EAS checks before updating overutilized + (bsc#1221157). +- commit c66ccdb + +------------------------------------------------------------------- +Tue Mar 12 15:53:52 CET 2024 - lhenriques@suse.de + +- netfs, fscache: Prevent Oops in fscache_put_cache() (bsc#1221291 + CVE-2024-26612). +- commit f4e9666 + +------------------------------------------------------------------- +Tue Mar 12 14:33:40 CET 2024 - vbabka@suse.cz + +- mm, vmscan: prevent infinite loop for costly GFP_NOIO | + __GFP_RETRY_MAYFAIL allocations (git-fixes). +- commit 36fac6a + +------------------------------------------------------------------- +Tue Mar 12 12:47:04 CET 2024 - vbabka@suse.cz + +- mm: migrate high-order folios in swap cache correctly + (git-fixes). +- commit 46a5bb6 + +------------------------------------------------------------------- +Tue Mar 12 12:34:27 CET 2024 - vbabka@suse.cz + +- mm/mempolicy: fix set_mempolicy_home_node() previous VMA pointer + (git-fixes). +- commit 436bfc9 + +------------------------------------------------------------------- +Tue Mar 12 12:30:23 CET 2024 - vbabka@suse.cz + +- Refresh patches.suse/mm-mmap-fix-vma_merge-case-7.patch. +- commit 442a3e7 + +------------------------------------------------------------------- +Tue Mar 12 12:20:44 CET 2024 - denis.kirjanov@suse.com + +- bonding: return -ENOMEM instead of BUG in alb_upper_dev_walk + (git-fixes). +- commit bffce9c + +------------------------------------------------------------------- +Tue Mar 12 11:02:49 CET 2024 - denis.kirjanov@suse.com + +- nfp: flower: prevent re-adding mac index for bonded port (git-fixes). +- commit 6661999 + +------------------------------------------------------------------- +Tue Mar 12 11:01:07 CET 2024 - denis.kirjanov@suse.com + +- nfp: use correct macro for LengthSelect in BAR config (git-fixes). +- commit 7d0aeec + +------------------------------------------------------------------- +Tue Mar 12 10:59:40 CET 2024 - denis.kirjanov@suse.com + +- tsnep: Fix mapping for zero copy XDP_TX action (git-fixes). +- commit 3345825 + +------------------------------------------------------------------- +Tue Mar 12 10:57:58 CET 2024 - denis.kirjanov@suse.com + +- net: atlantic: Fix DMA mapping for PTP hwts ring (git-fixes). +- commit b00604d + +------------------------------------------------------------------- +Tue Mar 12 10:55:55 CET 2024 - denis.kirjanov@suse.com + +- netdevsim: avoid potential loop in nsim_dev_trap_report_work() (git-fixes). +- commit 57a7091 + +------------------------------------------------------------------- +Tue Mar 12 10:53:57 CET 2024 - denis.kirjanov@suse.com + +- net: stmmac: Prevent DSA tags from breaking COE (git-fixes). +- commit e8cc0c0 + +------------------------------------------------------------------- +Tue Mar 12 10:01:27 CET 2024 - tiwai@suse.de + +- Move out-of-tree patches into the right section +- commit 6624840 + +------------------------------------------------------------------- +Tue Mar 12 09:59:39 CET 2024 - tiwai@suse.de + +- Documentation: virt: Fix up pre-formatted text block for SEV + ioctls (git-fixes). +- commit b6867f0 + +------------------------------------------------------------------- +Tue Mar 12 09:59:02 CET 2024 - tiwai@suse.de + +- Move upstreamed patches into sorted section +- commit 489fc6e + +------------------------------------------------------------------- +Tue Mar 12 09:52:49 CET 2024 - tiwai@suse.de + +- crypto: ccp - Have it depend on AMD_IOMMU (git-fixes). +- rtc: test: Fix invalid format specifier (git-fixes). +- lib: memcpy_kunit: Fix an invalid format specifier in an + assertion msg (git-fixes). +- lib/cmdline: Fix an invalid format specifier in an assertion + msg (git-fixes). +- selftests/mqueue: Set timeout to 180 seconds (git-fixes). +- Documentation: coresight: fix `make refcheckdocs` warning + (git-fixes). +- commit 2c8fcdc + +------------------------------------------------------------------- +Tue Mar 12 03:32:41 CET 2024 - neilb@suse.de + +- Refresh patches.suse/nfsd-fix-RELEASE_LOCKOWNER.patch. + update mainline commit info +- commit 2c149c7 + +------------------------------------------------------------------- +Mon Mar 11 14:16:45 CET 2024 - denis.kirjanov@suse.com + +- amt: do not use overwrapped cb area (git-fixes). +- commit 1372aac + +------------------------------------------------------------------- +Mon Mar 11 14:14:14 CET 2024 - denis.kirjanov@suse.com + +- bonding: remove print in bond_verify_device_path (git-fixes). +- commit 7a54f95 + +------------------------------------------------------------------- +Mon Mar 11 14:07:35 CET 2024 - denis.kirjanov@suse.com + +- stmmac: preserve KABI in stmmac_txq_cfg (git-fixes). +- commit 034b0ac + +------------------------------------------------------------------- +Mon Mar 11 14:05:31 CET 2024 - denis.kirjanov@suse.com + +- net: stmmac: Tx coe sw fallback (git-fixes). +- commit d5cf563 + +------------------------------------------------------------------- +Mon Mar 11 13:31:45 CET 2024 - denis.kirjanov@suse.com + +- blacklist.conf: update blacklist +- commit 0889c69 + +------------------------------------------------------------------- +Mon Mar 11 11:11:02 CET 2024 - denis.kirjanov@suse.com + +- blacklist.conf: update blacklist +- commit b63446f + +------------------------------------------------------------------- +Mon Mar 11 11:03:50 CET 2024 - denis.kirjanov@suse.com + +- blacklist.conf: update blacklist +- commit ed66a82 + +------------------------------------------------------------------- +Mon Mar 11 10:46:44 CET 2024 - msuchanek@suse.de + +- powerpc/pseries/iommu: IOMMU table is not initialized for + kdump over SR-IOV (bsc#1220492 ltc#205270). +- commit 2026089 + +------------------------------------------------------------------- +Mon Mar 11 10:11:09 CET 2024 - oneukum@suse.com + +- Update + patches.suse/usb-hub-Guard-against-accesses-to-uninitialized-BOS-.patch + (bsc#1220790 CVE-2023-52477). + Added CVE +- commit 61b1ebd + ------------------------------------------------------------------- Sun Mar 10 09:34:05 CET 2024 - tiwai@suse.de @@ -157,6 +1988,15 @@ Thu Mar 7 18:15:41 CET 2024 - tonyj@suse.de Power8 Architecture (jsc#PED-7970 jsc#PED-8065). - commit b9d5dfb +------------------------------------------------------------------- +Thu Mar 7 13:24:07 CET 2024 - msuchanek@suse.de + +- group-source-files.pl: Quote filenames (boo#1221077). + The kernel source now contains a file with a space in the name. + Add quotes in group-source-files.pl to avoid splitting the filename. + Also use -print0 / -0 when updating timestamps. +- commit a005e42 + ------------------------------------------------------------------- Thu Mar 7 11:49:53 CET 2024 - msuchanek@suse.de @@ -17859,6 +19699,18 @@ Fri Feb 16 09:06:11 CET 2024 - pjakobsson@suse.de jsc#PED-5511 jsc#PED-6041 jsc#PED-6069 jsc#PED-6071) - commit c593905 +------------------------------------------------------------------- +Thu Feb 15 23:30:01 CET 2024 - svarbanov@suse.de + +- memory: tegra: add MC client for Tegra234 GPU (bsc#1221330) +- commit f5d121c + +------------------------------------------------------------------- +Thu Feb 15 23:28:11 CET 2024 - svarbanov@suse.de + +- memory: tegra: Add clients used by DRM in Tegra234 (bsc#1221330). +- commit 67c31f5 + ------------------------------------------------------------------- Thu Feb 15 19:46:39 CET 2024 - jwiesner@suse.de @@ -18741,6 +20593,12 @@ Wed Feb 14 00:50:53 CET 2024 - jgross@suse.com counter (jsc#PED-7322). - commit 50f3c68 +------------------------------------------------------------------- +Wed Feb 14 00:27:57 CET 2024 - svarbanov@suse.de + +- supported.conf: Add supported entry for stusb160x (bsc#1221330) +- commit d3bd091 + ------------------------------------------------------------------- Wed Feb 14 00:18:02 CET 2024 - jgross@suse.com @@ -50359,6 +52217,13 @@ Sat Oct 21 13:25:16 CEST 2023 - tiwai@suse.de (git-fixes). - commit 14a1c75 +------------------------------------------------------------------- +Fri Oct 20 18:50:59 CEST 2023 - mwilck@suse.com + +- qedf: Wait for stag work during unload (bsc#1214852). +- qedf: Don't process stag work during unload (bsc#1214852). +- commit dcc092a + ------------------------------------------------------------------- Fri Oct 20 18:31:53 CEST 2023 - jwiesner@suse.de @@ -52529,6 +54394,12 @@ Mon Oct 9 15:07:27 CEST 2023 - nmorey@suse.com - RDMA/mlx5: Remove not-used cache disable flag (git-fixes) - commit d265793 +------------------------------------------------------------------- +Mon Oct 9 12:38:03 CEST 2023 - schwab@suse.de + +- mkspec-dtb: add toplevel symlinks also on arm +- commit ed29cae + ------------------------------------------------------------------- Mon Oct 9 11:31:46 CEST 2023 - nmorey@suse.com @@ -74680,11 +76551,15 @@ Wed Aug 30 10:58:12 CEST 2023 - jlee@suse.com ------------------------------------------------------------------- Wed Aug 30 10:43:48 CEST 2023 - jslaby@suse.cz +- rpm/mkspec-dtb: dtbs have moved to vendor sub-directories in 6.5 + By commit 724ba6751532 ("ARM: dts: Move .dts files to vendor + sub-directories"). + So switch to them. - rpm/mkspec-dtb: support for nested subdirs Commit 724ba6751532 ("ARM: dts: Move .dts files to vendor sub-directories") moved the dts to nested subdirs, add a support for that. That is, generate a %dir entry in %files for them. -- commit 6484eda +- commit 7aee36a ------------------------------------------------------------------- Wed Aug 30 10:34:00 CEST 2023 - jlee@suse.com diff --git a/kernel-syms-rt.spec b/kernel-syms-rt.spec index 740d420..98730aa 100644 --- a/kernel-syms-rt.spec +++ b/kernel-syms-rt.spec @@ -16,7 +16,7 @@ # -%define git_commit 0d817874d18eca2fc379364350f5d8f656a563b1 +%define git_commit 1025e3e919d23ae8b2a3e5c5ad95f6804136e0e9 %define variant -rt%{nil} %include %_sourcedir/kernel-spec-macros @@ -25,7 +25,7 @@ Name: kernel-syms-rt Version: 6.4.0 %if %using_buildservice %if 0%{?is_kotd} -Release: .g0d81787 +Release: .g1025e3e %else Release: 0 %endif diff --git a/mkspec-dtb b/mkspec-dtb index 32008a3..b2f8600 100644 --- a/mkspec-dtb +++ b/mkspec-dtb @@ -7,54 +7,54 @@ my $spec_in = "dtb.spec.in"; # DTB packages names, ordered by file names my @armv7l_package_list = ( - ['dtb-am335x', 'am335x-*.dts', "TI AM335x based systems"], - ['dtb-am3517', 'am3517*.dts', "TI AM3517 based systems"], # exception: am3517_mt_ventoux.dts - ['dtb-am57xx', 'am57xx-*.dts', "TI AM57xx based systems"], - ['dtb-armada-370', 'armada-370-*.dts', "Armada 370 based systems"], - ['dtb-armada-375', 'armada-375-*.dts', "Armada 375 based systems"], - ['dtb-armada-385', 'armada-385-*.dts', "Armada 385 based systems"], - ['dtb-armada-388', 'armada-388-*.dts', "Armada 388 based systems"], - ['dtb-armada-398', 'armada-398-*.dts', "Armada 398 based systems"], - ['dtb-armada-xp', 'armada-xp-*.dts', "Armada XP based systems"], - ['dtb-bcm2836', 'bcm2836*.dts', "Raspberry Pi 2 Model B"], - ['dtb-dove', 'dove-*.dts', "Marvell dove based systems"], - ['dtb-exynos4', 'exynos4*.dts', "Samsung Exynos 4 based systems"], - ['dtb-exynos5', 'exynos5*.dts', "Samsung Exynos 5 based systems"], - ['dtb-imx5', 'imx5*.dts', "Freescale i.MX51 and i.MX53 based systems"], - ['dtb-imx6', 'imx6*.dts', "Freescale i.MX6 based systems"], - ['dtb-imx7', 'imx7*.dts', "Freescale i.MX7 based systems"], - ['dtb-keystone', 'keystone-*.dts', "TI Keystone 2 based systems"], - ['dtb-meson6', 'meson6-*.dts', "Amlogic Meson 6 based systems"], - ['dtb-meson8', 'meson8-*.dts', "Amlogic Meson 8 based systems"], - ['dtb-meson8b', 'meson8b-*.dts', "Amlogic Meson 8b based systems"], - ['dtb-mt76', 'mt76*.dts', "MediaTek mt76 based systems"], - ['dtb-omap3', 'omap3*.dts', "TI OMAP3 based systems"], - ['dtb-omap4', 'omap4*.dts', "TI OMAP4 based systems"], - ['dtb-omap5', 'omap5*.dts', "TI OMAP5 based systems"], - ['dtb-qcom', 'qcom-*.dts', "Qualcomm Snapdragon based systems"], - ['dtb-rk3', 'rk3*.dts', "Rockchip RK3xxx based systems"], - ['dtb-socfpga', 'socfpga_*.dts', "Altera SoC FPGA based systems"], - ['dtb-ste', 'ste-*.dts', "ST Ericsson based systems"], - ['dtb-sun4i', 'sun4i-*.dts', "Allwinner sun4i based systems"], - ['dtb-sun5i', 'sun5i-*.dts', "Allwinner sun5i based systems"], - ['dtb-sun6i', 'sun6i-*.dts', "Allwinner sun6i based systems"], - ['dtb-sun7i', 'sun7i-*.dts', "Allwinner sun7i based systems"], - ['dtb-sun8i', 'sun8i-*.dts', "Allwinner sun8i based systems"], - ['dtb-sun9i', 'sun9i-*.dts', "Allwinner sun9i based systems"], - ['dtb-tegra2', 'tegra20-*.dts', "NVidia Tegra2 based systems"], - ['dtb-tegra3', 'tegra30-*.dts', "NVidia Tegra3 based systems"], - ['dtb-tegra114', 'tegra114-*.dts', "NVidia Tegra4 based systems"], - ['dtb-tegra124', 'tegra124-*.dts', "NVidia Tegra K1 based systems"], - ['dtb-vexpress', 'vexpress-*.dts', "ARM Versatile Express machines"], - ['dtb-vf500', 'vf500-*.dts', "Freescale Vybrid VF500 based systems"], - ['dtb-vf6', 'vf610-*.dts', "Freescale Vybrid VF610 based systems"], - ['dtb-xenvm', 'xenvm-*.dts', "Xen virtual machines"], - ['dtb-zynq', 'zynq-*.dts', "Xilinx Zynq based systems"], + ['dtb-am335x', 'ti/omap/am335x-*.dts', "TI AM335x based systems"], + ['dtb-am3517', 'ti/omap/am3517*.dts', "TI AM3517 based systems"], # exception: am3517_mt_ventoux.dts + ['dtb-am57xx', 'ti/omap/am57xx-*.dts', "TI AM57xx based systems"], + ['dtb-armada-370', 'marvell/armada-370-*.dts', "Armada 370 based systems"], + ['dtb-armada-375', 'marvell/armada-375-*.dts', "Armada 375 based systems"], + ['dtb-armada-385', 'marvell/armada-385-*.dts', "Armada 385 based systems"], + ['dtb-armada-388', 'marvell/armada-388-*.dts', "Armada 388 based systems"], + ['dtb-armada-398', 'marvell/armada-398-*.dts', "Armada 398 based systems"], + ['dtb-armada-xp', 'marvell/armada-xp-*.dts', "Armada XP based systems"], + ['dtb-bcm2836', 'broadcom/bcm2836*.dts', "Raspberry Pi 2 Model B"], + ['dtb-dove', 'marvell/dove-*.dts', "Marvell dove based systems"], + ['dtb-exynos4', 'samsung/exynos4*.dts', "Samsung Exynos 4 based systems"], + ['dtb-exynos5', 'samsung/exynos5*.dts', "Samsung Exynos 5 based systems"], + ['dtb-imx5', 'nxp/imx/imx5*.dts', "Freescale i.MX51 and i.MX53 based systems"], + ['dtb-imx6', 'nxp/imx/imx6*.dts', "Freescale i.MX6 based systems"], + ['dtb-imx7', 'nxp/imx/imx7*.dts', "Freescale i.MX7 based systems"], + ['dtb-keystone', 'ti/keystone/keystone-*.dts', "TI Keystone 2 based systems"], + ['dtb-meson6', 'amlogic/meson6-*.dts', "Amlogic Meson 6 based systems"], + ['dtb-meson8', 'amlogic/meson8-*.dts', "Amlogic Meson 8 based systems"], + ['dtb-meson8b', 'amlogic/meson8b-*.dts', "Amlogic Meson 8b based systems"], + ['dtb-mt76', 'mediatek/mt76*.dts', "MediaTek mt76 based systems"], + ['dtb-omap3', 'ti/omap/omap3*.dts', "TI OMAP3 based systems"], + ['dtb-omap4', 'ti/omap/omap4*.dts', "TI OMAP4 based systems"], + ['dtb-omap5', 'ti/omap/omap5*.dts', "TI OMAP5 based systems"], + ['dtb-qcom', 'qcom/qcom-*.dts', "Qualcomm Snapdragon based systems"], + ['dtb-rk3', 'rockchip/rk3*.dts', "Rockchip RK3xxx based systems"], + ['dtb-socfpga', 'intel/socfpga/socfpga_*.dts', "Altera SoC FPGA based systems"], + ['dtb-ste', 'st/ste-*.dts', "ST Ericsson based systems"], + ['dtb-sun4i', 'allwinner/sun4i-*.dts', "Allwinner sun4i based systems"], + ['dtb-sun5i', 'allwinner/sun5i-*.dts', "Allwinner sun5i based systems"], + ['dtb-sun6i', 'allwinner/sun6i-*.dts', "Allwinner sun6i based systems"], + ['dtb-sun7i', 'allwinner/sun7i-*.dts', "Allwinner sun7i based systems"], + ['dtb-sun8i', 'allwinner/sun8i-*.dts', "Allwinner sun8i based systems"], + ['dtb-sun9i', 'allwinner/sun9i-*.dts', "Allwinner sun9i based systems"], + ['dtb-tegra2', 'nvidia/tegra20-*.dts', "NVidia Tegra2 based systems"], + ['dtb-tegra3', 'nvidia/tegra30-*.dts', "NVidia Tegra3 based systems"], + ['dtb-tegra114', 'nvidia/tegra114-*.dts', "NVidia Tegra4 based systems"], + ['dtb-tegra124', 'nvidia/tegra124-*.dts', "NVidia Tegra K1 based systems"], + ['dtb-vexpress', 'arm/vexpress-*.dts', "ARM Versatile Express machines"], + ['dtb-vf500', 'nxp/vf/vf500-*.dts', "Freescale Vybrid VF500 based systems"], + ['dtb-vf6', 'nxp/vf/vf610-*.dts', "Freescale Vybrid VF610 based systems"], + ['dtb-xenvm', 'xen/xenvm-*.dts', "Xen virtual machines"], + ['dtb-zynq', 'xilinx/zynq-*.dts', "Xilinx Zynq based systems"], ); # DTB packages names my @armv6l_package_list = ( - ['dtb-bcm2835', 'bcm2835*.dts', "Raspberry Pi 1 (A+, B, B+)"], + ['dtb-bcm2835', 'broadcom/bcm2835*.dts', "Raspberry Pi 1 (A+, B, B+)"], ); # DTB packages names @@ -107,6 +107,7 @@ sub generate_spec($$$) unless ($exclusive_arch eq 'none'); my $subpkg_desc = ""; + my $subpkg_case = ""; my $all_supported_dtb = ""; my $DTS_folder = "arch/arm/boot/dts"; if ($exclusive_arch =~ /aarch64/) { @@ -172,7 +173,7 @@ sub generate_spec($$$) } $subpkg_desc .= - "%ifarch aarch64 riscv64\n" . + "%ifarch %arm aarch64 riscv64\n" . "%files -n $PKG_NAME -f $PKG_NAME.list\n" . "%else\n" . "%files -n $PKG_NAME\n" . @@ -184,6 +185,10 @@ sub generate_spec($$$) "%{dtbdir}/$bin_supported_dtb\n" . "\n"; + if ($main_package eq 'dtb-armv6l' or $main_package eq 'dtb-armv7l') { + # Map dts file name back to subpkg name + $subpkg_case .= " $SUPPORTED_DTB) pkgname=$PKG_NAME;;\n" + } $all_supported_dtb .= "$SUPPORTED_DTB "; } chomp($all_supported_dtb); @@ -195,6 +200,7 @@ sub generate_spec($$$) $_ =~ s/\$DTS_folder/$DTS_folder/g; $_ =~ s/\$SUBPKG_DESC/$subpkg_desc/g; $_ =~ s/\$ALL_SUPPORTED_DTB/$all_supported_dtb/g; + $_ =~ s/\$SUBPKG_CASE\n?/$subpkg_case/g; print SPEC $_; } diff --git a/patches.kabi.tar.bz2 b/patches.kabi.tar.bz2 index 9969f95..ed1a43b 100644 --- a/patches.kabi.tar.bz2 +++ b/patches.kabi.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1f2066188ac14cdbe72dea3d8241520501e0d3e559f598426399d45954c333f6 -size 1014 +oid sha256:dafb51bba219cd7ef8ae9647598bd2e18b0f3065c5a6d6ffad9ee43bf1ebc4f4 +size 3316 diff --git a/patches.suse.tar.bz2 b/patches.suse.tar.bz2 index 600e01c..983183f 100644 --- a/patches.suse.tar.bz2 +++ b/patches.suse.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:16b740d78bac33134589654b62caa5b92d7cea50825071c6d239d0fbfe097d8e -size 18436115 +oid sha256:bf6fe9e4edce4b9a88bf68e14ca3ee3a17a2f9dfb704b9139b4ca762cffbb690 +size 18934999 diff --git a/series.conf b/series.conf index 3e65dc0..d4ac944 100644 --- a/series.conf +++ b/series.conf @@ -61,6 +61,7 @@ patches.suse/Revert-f2fs-fix-potential-corruption-when-movin.patch patches.suse/fs-Establish-locking-order-for-unrelated-direct.patch patches.suse/fs-Lock-moved-directories.patch + patches.suse/fs-Restrict-lock_two_nondirectories-to-non-directory.patch patches.suse/nfsd-use-vfs-setgid-helper.patch patches.suse/SUNRPC-Fix-UAF-in-svc_tcp_listen_data_ready.patch patches.suse/lockd-drop-inappropriate-svc_get-from-locked_ge.patch @@ -72,6 +73,7 @@ patches.suse/erofs-kill-hooked-chains-to-avoid-loops-on-dedu.patch patches.suse/erofs-fix-compact-4B-support-for-16k-block-size.patch patches.suse/erofs-Fix-detection-of-atomic-context.patch + patches.suse/erofs-clean-up-zmap.c.patch patches.suse/btrfs-fix-dirty_metadata_bytes-for-redirtied-bu.patch patches.suse/btrfs-always-read-the-entire-extent_buffer.patch patches.suse/btrfs-don-t-use-btrfs_bio_ctrl-for-extent-buffe.patch @@ -611,6 +613,7 @@ patches.suse/thermal-drivers-sun8i-Fix-some-error-handling-p.patch patches.suse/thermal-drivers-qoriq-Only-enable-supported-sen.patch patches.suse/net-mlx5-Update-the-driver-with-the-recent-thermal-c.patch + patches.suse/srcu-Remove-extraneous-parentheses-from-srcu_read_lock-etc.patch patches.suse/rcu-Mark-additional-concurrent-load-from-cpu_no.patch patches.suse/rcu-Make-rcu_cpu_starting-rely-on-interrupts-be.patch patches.suse/rcu-tasks-Stop-rcu_tasks_invoke_cbs-from-using-.patch @@ -5400,6 +5403,7 @@ patches.suse/s390-decompressor-fix-misaligned-symbol-build-e.patch patches.suse/s390-zcrypt-do-not-retry-administrative-request.patch patches.suse/fs-no-need-to-check-source.patch + patches.suse/fs-don-t-assume-arguments-are-non-NULL.patch patches.suse/tracing-Fix-null-pointer-dereference-in-tracing.patch patches.suse/spi-spi-geni-qcom-enable-SPI_CONTROLLER_MUST_TX.patch patches.suse/spi-bcm-qspi-return-error-if-neither-hif_mspi-n.patch @@ -9935,6 +9939,8 @@ patches.suse/firmware-arm_scmi-Harden-perf-domain-info-access.patch patches.suse/firmware-meson_sm-fix-to-avoid-potential-NULL-pointe.patch patches.suse/firmware-ti_sci-Use-system_state-to-determine-pollin.patch + patches.suse/memory-tegra-Add-clients-used-by-DRM-in-Tegra234.patch + patches.suse/memory-tegra-add-MC-client-for-Tegra234-GPU.patch patches.suse/soc-qcom-ocmem-Fix-NUM_PORTS-NUM_MACROS-macros.patch patches.suse/dt-bindings-arm-msm-kpss-acc-Make-the-optional-reg-t.patch patches.suse/soc-qcom-smem-Fix-incompatible-types-in-comparison.patch @@ -10283,7 +10289,10 @@ patches.suse/NFSv4.2-Fix-READ_PLUS-smatch-warnings.patch patches.suse/NFSv4.2-Fix-READ_PLUS-size-calculations.patch patches.suse/NFSv4.2-Rework-scratch-handling-for-READ_PLUS-again.patch + patches.suse/NFSv4-pnfs-minor-fix-for-cleanup-path-in-nfs4_get_de.patch patches.suse/nfs-blocklayout-Use-the-passed-in-gfp-flags.patch + patches.suse/NFS-Fix-a-potential-data-corruption.patch + patches.suse/NFSv4.1-use-EXCHGID4_FLAG_USE_PNFS_DS-for-DS-server.patch patches.suse/NFS-Guard-against-READDIR-loop-when-entry-names-exce.patch patches.suse/NFSv4.2-fix-handling-of-COPY-ERR_OFFLOAD_NO_REQ.patch patches.suse/pNFS-Fix-assignment-of-xprtdata.cred.patch @@ -11525,6 +11534,7 @@ patches.suse/thermal-of-add-missing-of_node_put.patch patches.suse/thermal-Constify-the-trip-argument-of-the-.get_trend-ebc7abb3.patch patches.suse/PM-hibernate-Fix-the-exclusive-get-block-device-in-t.patch + patches.suse/nfsd-fix-change_info-in-NFSv4-RENAME-replies.patch patches.suse/selftests-tracing-Fix-to-unmount-tracefs-for-recover.patch patches.suse/i2c-aspeed-Reset-the-i2c-controller-when-timeout-occ.patch patches.suse/driver-core-return-an-error-when-dev_set_name-hasn-t.patch @@ -11558,10 +11568,16 @@ patches.suse/x86-purgatory-Remove-LTO-flags.patch patches.suse/gfs2-fix-glock-shrinker-ref-issues.patch patches.suse/netfs-Only-call-folio_start_fscache-one-time-for-each-folio.patch + patches.suse/NFS-Fix-error-handling-for-O_DIRECT-write-scheduling.patch + patches.suse/NFS-Fix-O_DIRECT-locking-issues.patch + patches.suse/NFS-More-O_DIRECT-accounting-fixes-for-error-paths.patch + patches.suse/NFS-Use-the-correct-commit-info-in-nfs_join_page_gro.patch + patches.suse/NFS-More-fixes-for-nfs_direct_write_reschedule_io.patch patches.suse/NFS-pNFS-Report-EINVAL-errors-from-connect-to-the-se.patch patches.suse/SUNRPC-Mark-the-cred-for-revalidation-if-the-server-.patch patches.suse/Revert-SUNRPC-Fail-faster-on-bad-verifier.patch patches.suse/NFSv4.1-fix-pnfs-MDS-DS-session-trunking.patch + patches.suse/NFSv4.1-fix-zero-value-filehandle-in-post-open-getat.patch patches.suse/spi-nxp-fspi-reset-the-FLSHxCR1-registers.patch patches.suse/spi-stm32-add-a-delay-before-SPI-disable.patch patches.suse/spi-intel-pci-Add-support-for-Granite-Rapids-SPI-ser.patch @@ -11862,6 +11878,12 @@ patches.suse/regmap-rbtree-Fix-wrong-register-marked-as-in-cache-.patch patches.suse/regulator-core-regulator_register-set-device-class-e.patch patches.suse/regulator-core-Revert-fix-kobject-release-warning-an.patch + patches.suse/SUNRPC-Fail-quickly-when-server-does-not-recognize-T.patch + patches.suse/NFSv4-Fix-a-nfs4_state_manager-race.patch + patches.suse/NFSv4-Fix-a-state-manager-thread-deadlock-regression.patch + patches.suse/Revert-SUNRPC-dont-update-timeout-value-on-connectio.patch + patches.suse/SUNRPC-TLS-Lock-the-lower_xprt-during-the-tls-handsh.patch + patches.suse/nfs-decrement-nrequests-counter-before-releasing-the.patch patches.suse/leds-Drop-BUG_ON-check-for-LED_COLOR_ID_MULTI.patch patches.suse/drivers-net-process-the-result-of-hdlc_open-and-add-.patch patches.suse/ice-always-add-legacy-32byte-RXDID-in-supported_rxdi.patch @@ -11948,6 +11970,7 @@ patches.suse/HID-intel-ish-hid-ipc-Disable-and-reenable-ACPI-GPE-.patch patches.suse/HID-Add-quirk-to-ignore-the-touchscreen-battery-on-H.patch patches.suse/erofs-fix-memory-leak-of-LZMA-global-compressed-deduplication.patch + patches.suse/erofs-allow-empty-device-tags-in-flatdev-mode.patch patches.suse/1316-drm-i915-Don-t-set-PIPE_CONTROL_FLUSH_L3-for-aux-inv.patch patches.suse/1317-drm-i915-Register-engines-early-to-avoid-type-confus.patch patches.suse/1318-drm-i915-Invalidate-the-TLBs-on-each-GT.patch @@ -12329,6 +12352,11 @@ patches.suse/scsi-qla2xxx-Fix-double-free-of-dsd_list-during-driver-load.patch patches.suse/ACPI-bus-Move-acpi_arm_init-to-the-place-of-after-ac.patch patches.suse/ACPI-irq-Fix-incorrect-return-value-in-acpi_register.patch + patches.suse/nfs42-client-needs-to-strip-file-mode-s-suid-sgid-bi.patch + patches.suse/NFS-Fix-potential-oops-in-nfs_inode_remove_request.patch + patches.suse/pNFS-Fix-a-hang-in-nfs4_evict_inode.patch + patches.suse/pNFS-flexfiles-Check-the-layout-validity-in-ff_layou.patch + patches.suse/NFSv4.1-fixup-use-EXCHGID4_FLAG_USE_PNFS_DS-for-DS-s.patch patches.suse/perf-pmu-Fix-perf-stat-output-with-correct-scale-and-unit.patch patches.suse/perf-dlfilter-Fix-use-of-addr_location__exit-in-dlfilter__object_code.patch patches.suse/perf-dlfilter-Add-a-test-for-object_code.patch @@ -12373,7 +12401,9 @@ patches.suse/vdpa-mlx5-Fix-firmware-error-on-creation-of-1k-VQs.patch patches.suse/vhost-Allow-null-msg.size-on-VHOST_IOTLB_INVALIDATE.patch patches.suse/virtio_pci-fix-the-common-cfg-map-size.patch + patches.suse/nfsd-lock_rename-needs-both-directories-to-live-on-t.patch patches.suse/mm-page_alloc-correct-start-page-when-guard-page-debug-is-enabled.patch + patches.suse/mm-mempolicy-fix-set_mempolicy_home_node-previous-VMA-pointer.patch patches.suse/mm-fix-vm_brk_flags-to-not-bail-out-while-holding-lock.patch patches.suse/mmap-fix-vma_iterator-in-error-path-of-vma_merge.patch patches.suse/mmap-fix-error-paths-with-dup_anon_vma.patch @@ -12464,6 +12494,8 @@ patches.suse/io_uring-use-files_lookup_fd_locked.patch patches.suse/iov_iter-x86-Be-consistent-about-the-__user-tag-on-c.patch patches.suse/infiniband-Use-user_backed_iter-to-see-if-iterator-i.patch + patches.suse/nfsd-Handle-EOPENSTALE-correctly-in-the-filecache.patch + patches.suse/svcrdma-Drop-connection-after-an-RDMA-Read-error.patch patches.suse/bcache-move-closures-to-lib-8c8d.patch patches.suse/closures-closure_wait_event-ced5.patch patches.suse/closures-closure_nr_remaining-48b7.patch @@ -12491,6 +12523,7 @@ patches.suse/sched-Provide-rt_mutex-specific-scheduler-helpers.patch patches.suse/locking-rtmutex-Use-rt_mutex-specific-scheduler-helpers.patch patches.suse/locking-rtmutex-Add-a-lockdep-assert-to-catch-potential-nested-blocking.patch + patches.suse/futex-pi-Fix-recursive-rt_mutex-waiter-state.patch patches.suse/asm-generic-ticket-lock-Optimize-arch_spin_value_unl.patch patches.suse/locking-ww_mutex-test-Use-prng-instead-of-rng-to-avo.patch patches.suse/locking-ww_mutex-test-Fix-potential-workqueue-corrup.patch @@ -12681,6 +12714,9 @@ patches.suse/devlink-introduce-possibility-to-expose-info-about-n.patch patches.suse/net-mlx5e-Set-en-auxiliary-devlink-instance-as-neste.patch patches.suse/selftests-bpf-trace_helpers.c-Optimize-kallsyms-cach.patch + patches.suse/selftests-bpf-Correct-map_fd-to-data_fd-in-tailcalls.patch + patches.suse/bpf-x64-Fix-tailcall-infinite-loop.patch + patches.suse/selftests-bpf-Add-testcases-for-tailcall-infinite-lo.patch patches.suse/xsk-add-multi-buffer-support-for-sockets-sharing-ume.patch patches.suse/bpf-make-it-easier-to-add-new-metadata-kfunc.patch patches.suse/bpf-expose-information-about-supported-xdp-metadata-.patch @@ -12691,6 +12727,7 @@ patches.suse/tls-Use-size_add-in-call-to-struct_size.patch patches.suse/tipc-Use-size_add-in-calls-to-struct_size.patch patches.suse/net-spider_net-Use-size_add-in-call-to-struct_size.patch + patches.suse/net-stmmac-Tx-coe-sw-fallback.patch patches.suse/octeon_ep-restructured-interrupt-handlers.patch patches.suse/net-ethernet-mtk_wed-fix-EXT_INT_STATUS_RX_FBUF-defi.patch patches.suse/net-ethernet-mellanox-Convert-to-platform-remove-cal.patch @@ -15315,6 +15352,7 @@ patches.suse/mm-fix-unaccount-of-memory-on-vma_link-failure.patch patches.suse/0001-mm-mremap-optimize-the-start-addresses-in-move_page_.patch patches.suse/0002-mm-mremap-allow-moves-within-the-same-VMA-for-stack-.patch + patches.suse/memfd-drop-warning-for-missing-exec-related-flags.patch patches.suse/kselftest-vm-fix-mdwe-s-mmap_FIXED-test-case.patch patches.suse/mm-make-PR_MDWE_REFUSE_EXEC_GAIN-an-unsigned-long.patch patches.suse/selftests-clone3-Fix-broken-test-under-CONFIG_TIME_N.patch @@ -15324,6 +15362,7 @@ patches.suse/mm-page_alloc-remove-unnecessary-check-in-break_down_buddy_pages.patch patches.suse/mm-page_alloc-remove-unnecessary-next_page-in-break_down_buddy_pages.patch patches.suse/mm-migrate-record-the-mlocked-page-status-to-remove-unnecessary-lru-drain.patch + patches.suse/fs-ocfs2-check-status-values.patch patches.suse/scripts-gdb-fix-usage-of-MOD_TEXT-not-defined-when-C.patch patches.suse/buildid-reduce-header-file-dependencies-for-module.patch patches.suse/verification-dot2k-Delete-duplicate-imports.patch @@ -15922,6 +15961,11 @@ patches.suse/xfs-introduce-protection-for-drop-nlink.patch patches.suse/xfs-handle-nimaps-0-from-xfs_bmapi_write-in-xfs_alloc_file_space.patch patches.suse/xfs-allow-read-IO-and-FICLONE-to-run-concurrently.patch + patches.suse/SUNRPC-ECONNRESET-might-require-a-rebind.patch + patches.suse/NFSv4.1-fix-handling-NFS4ERR_DELAY-when-testing-for-.patch + patches.suse/SUNRPC-Add-an-IS_ERR-check-back-to-where-it-was.patch + patches.suse/NFSv4.1-fix-SP4_MACH_CRED-protection-for-pnfs-IO.patch + patches.suse/SUNRPC-Fix-RPC-client-cleaned-up-the-freed-pipefs-de.patch patches.suse/iommu-tegra-smmu-Drop-unnecessary-error-check-for-for-debugfs_cr patches.suse/iommu-arm-smmu-qcom-Add-SDM670-MDSS-compatible patches.suse/iommu-arm-smmu-qcom-Add-SM7150-SMMUv2 @@ -16395,6 +16439,9 @@ patches.suse/dm-bufio-fix-no-sleep-mode-2a69.patch patches.suse/dm-verity-don-t-use-blocking-calls-from-tasklets-28f0.patch patches.suse/dm-crypt-start-allocating-with-MAX_ORDER-1364.patch + patches.suse/nfsd-fix-file-memleak-on-client_opens_release.patch + patches.suse/NFSD-Update-nfsd_cache_append-to-use-xdr_stream.patch + patches.suse/NFSD-Fix-start-of-NFS-reply-pointer-passed-to-nfsd_c.patch patches.suse/xfs-factor-out-xfs_defer_pending_abort.patch patches.suse/xfs-abort-intent-items-when-recovery-intents-fail.patch patches.suse/xfs-only-remap-the-written-blocks-in-xfs_reflink_end_cow_extent.patch @@ -16881,6 +16928,7 @@ patches.suse/hwtracing-hisi_ptt-Add-dummy-callback-pmu-read.patch patches.suse/hwtracing-hisi_ptt-Handle-the-interrupt-in-hardirq-c.patch patches.suse/hwtracing-hisi_ptt-Don-t-try-to-attach-a-task.patch + patches.suse/Documentation-coresight-fix-make-refcheckdocs-warnin.patch patches.suse/parport-Add-support-for-Brainboxes-IX-UC-PX-parallel.patch patches.suse/serial-8250-8250_omap-Do-not-start-RX-DMA-on-THRI-in.patch patches.suse/serial-8250_omap-Add-earlycon-support-for-the-AM654-.patch @@ -17052,6 +17100,8 @@ patches.suse/HID-nintendo-Prevent-divide-by-zero-on-code.patch patches.suse/ring-buffer-Fix-slowpath-of-interrupted-event.patch patches.suse/dm-raid-delay-flushing-event_work-after-reconfig_mut-db29.patch + patches.suse/dm-integrity-don-t-modify-bio-s-immutable-bio_vec-in-b86f.patch + patches.suse/dm-audit-fix-Kconfig-so-DM_AUDIT-depends-on-BLK_DEV_-6849.patch patches.suse/platform-x86-thinkpad_acpi-fix-for-incorrect-fan-rep.patch patches.suse/platform-x86-intel-pmc-Fix-hang-in-pmc_core_send_ltr.patch patches.suse/platform-x86-amd-pmc-Move-platform-defines-to-header.patch @@ -17210,6 +17260,7 @@ patches.suse/virtio_blk-fix-snprintf-truncation-compiler-warning.patch patches.suse/kexec-fix-KEXEC_FILE-dependencies.patch patches.suse/maple_tree-do-not-preallocate-nodes-for-slot-stores.patch + patches.suse/mm-migrate-high-order-folios-in-swap-cache-correctly.patch patches.suse/selftests-secretmem-floor-the-memory-size-to-the-mul.patch patches.suse/linux-export-Ensure-natural-alignment-of-kcrctab-arr.patch patches.suse/badblocks-avoid-checking-invalid-range-in-badblocks_-146e.patch @@ -17394,6 +17445,7 @@ patches.suse/mm-gup-fix-follow_devmap_p-mu-d-on-page-NULL-handling.patch patches.suse/selftests-mm-dont-run-ksm_functional_tests-twice.patch patches.suse/mm-migrate-fix-getting-incorrect-page-mapping-during-page-migration.patch + patches.suse/nilfs2-convert-nilfs_page_mkwrite-to-use-a-folio.patch patches.suse/sched-fair-move-unused-stub-functions-to-header.patch patches.suse/x86-sta2x11-include-header-for-sta2x11_get_instance-protot.patch patches.suse/usb-fsl-mph-dr-of-mark-fsl_usb2_mpc5121_init-static.patch @@ -17466,7 +17518,9 @@ patches.suse/afs-fix-the-usage-of-read_seqbegin_or_lock-in-afs_find_server.patch patches.suse/dlm-use-kernel_connect-and-kernel_bind.patch patches.suse/dlm-fix-format-seq-ops-type-4.patch + patches.suse/erofs-fix-memory-leak-on-short-lived-bounced-pages.patch patches.suse/erofs-fix-lz4-inplace-decompression.patch + patches.suse/erofs-fix-up-compacted-indexes-for-block-size-4096.patch patches.suse/pstore-ram-Fix-crash-when-setting-number-of-cpus-to-.patch patches.suse/pstore-ram_core-fix-possible-overflow-in-persistent_.patch patches.suse/nvdimm-btt-replace-deprecated-strncpy-with-strscpy-ab7e.patch @@ -17515,6 +17569,12 @@ patches.suse/crypto-sahara-fix-processing-hash-requests-with-req-.patch patches.suse/crypto-sahara-do-not-resize-req-src-when-doing-hash-.patch patches.suse/crypto-scomp-fix-req-dst-buffer-overflow.patch + patches.suse/SUNRPC-Fix-a-suspicious-RCU-usage-warning.patch + patches.suse/blocklayoutdriver-Fix-reference-leak-of-pnfs_device_.patch + patches.suse/NFS-Use-parent-s-objective-cred-in-nfs_access_login_.patch + patches.suse/NFSv4.1-pnfs-Ensure-we-handle-the-error-NFS4ERR_RETU.patch + patches.suse/SUNRPC-fix-_xprt_switch_find_current_entry-logic.patch + patches.suse/pNFS-Fix-the-pnfs-block-driver-s-calculation-of-layo.patch patches.suse/asm-generic-Fix-32-bit-__generic_cmpxchg_local.patch patches.suse/s390-boot-always-align-vmalloc-area-on-segment-boundary.patch patches.suse/s390-vfio-ap-unpin-pages-on-gisc-registration-failure.patch @@ -17589,6 +17649,7 @@ patches.suse/ice-reserve-number-of-CP-queues.patch patches.suse/rtnetlink-introduce-nlmsg_new_large-and-use-it-in-rt.patch patches.suse/octeon_ep-support-Octeon-CN10K-devices.patch + patches.suse/bonding-return-ENOMEM-instead-of-BUG-in-alb_upper_de.patch patches.suse/net-usb-ax88179_178a-avoid-two-consecutive-device-re.patch patches.suse/net-page_pool-split-the-page_pool_params-into-fast-a.patch patches.suse/net-page_pool-avoid-touching-slow-on-the-fastpath.patch @@ -17609,6 +17670,7 @@ patches.suse/octeontx2-pf-TC-flower-offload-support-for-ICMP-type.patch patches.suse/octeon_ep-Solve-style-issues-in-control-net-files.patch patches.suse/octeon_ep-get-max-rx-packet-length-from-firmware.patch + patches.suse/bonding-remove-print-in-bond_verify_device_path.patch patches.suse/msft-hv-2920-net-mana-Add-remaining-GDMA-stats-for-MANA-to-ethtoo.patch patches.suse/wifi-rtw89-fix-timeout-calculation-in-rtw89_roc_end.patch patches.suse/wifi-plfxlc-check-for-allocation-failure-in-plfxlc_u.patch @@ -17954,8 +18016,12 @@ patches.suse/net-ethernet-cortina-Drop-TSO-support.patch patches.suse/arm64-dts-hisilicon-hikey970-pmic-fix-regulator-cells-properties.patch patches.suse/arm64-dts-imx8mm-Reduce-GPU-to-nominal-speed.patch + patches.suse/arm64-zynqmp-Move-fixed-clock-to-for-kv260.patch + patches.suse/arm64-zynqmp-Fix-clock-node-name-in-kv260-cards.patch patches.suse/arm64-dts-armada-3720-turris-mox-set-irq-type-for-RTC.patch patches.suse/arm64-dts-sprd-fix-the-cpu-node-for-UMS512.patch + patches.suse/arm64-dts-sprd-Add-clock-reference-for-pll2-on-UMS512.patch + patches.suse/arm64-dts-sprd-Change-UMS512-idle-state-nodename-to-match-bindings.patch patches.suse/arm64-dts-rockchip-configure-eth-pad-driver-strength-for-orangepi-r1-plus-lts.patch patches.suse/arm64-dts-rockchip-Fix-rk3588-USB-power-domain-clocks.patch patches.suse/arm64-dts-rockchip-Fix-led-pinctrl-of-lubancat-1.patch @@ -17974,6 +18040,13 @@ patches.suse/ARM-davinci-always-select-CONFIG_CPU_ARM926T.patch patches.suse/dma-mapping-clear-dev-dma_mem-to-NULL-after-freeing-.patch patches.suse/md-bypass-block-throttle-for-superblock-update-d6e0.patch + patches.suse/md-remove-flag-RemoveSynchronized-c891.patch + patches.suse/md-raid10-remove-rcu-protection-to-access-rdev-from--a448.patch + patches.suse/md-raid1-remove-rcu-protection-to-access-rdev-from-c-2d32.patch + patches.suse/md-raid5-remove-rcu-protection-to-access-rdev-from-c-ad86.patch + patches.suse/md-synchronize-flush-io-with-array-reconfiguration-fa2b.patch + patches.suse/md-raid1-remove-unnecessary-null-checking-af14.patch + patches.suse/md-Whenassemble-the-array-consult-the-superblock-of--dc1c.patch patches.suse/virtio_blk-remove-the-broken-zone-revalidation-suppo.patch patches.suse/block-reject-invalid-operation-in-submit_bio_noacct.patch patches.suse/blk-wbt-remove-the-separate-write-cache-tracking.patch @@ -18051,6 +18124,14 @@ patches.suse/kernel-doc-handle-a-void-function-without-producing-.patch patches.suse/ring-buffer-Documentation-Add-documentation-on-buffe.patch patches.suse/reiserfs-Avoid-touching-renamed-directory-if-parent-.patch + patches.suse/ocfs2-Avoid-touching-renamed-directory-if-parent-doe.patch + patches.suse/udf_rename-only-access-the-child-content-on-cross-di.patch + patches.suse/ext2-Avoid-reading-renamed-directory-if-parent-does-.patch + patches.suse/ext4-don-t-access-the-source-subdirectory-content-on.patch + patches.suse/f2fs-Avoid-reading-renamed-directory-if-parent-does-.patch + patches.suse/rename-fix-the-locking-of-subdirectories.patch + patches.suse/kill-lock_two_inodes.patch + patches.suse/rename-avoid-a-deadlock-in-the-case-of-parents-havin.patch patches.suse/drm-panel-edp-Add-AUO-B116XTN02-BOE-NT116WHM-N21-836.patch patches.suse/Revert-drm-tidss-Annotate-dma-fence-critical-section.patch patches.suse/Revert-drm-omapdrm-Annotate-dma-fence-critical-secti.patch @@ -18358,6 +18439,7 @@ patches.suse/of-unittest-Fix-of_count_phandle_with_args-expected-.patch patches.suse/locktorture-Increase-Hamming-distance-between-call_r.patch patches.suse/rcutorture-Add-fqs_holdoff-check-before-fqs_task-is-.patch + patches.suse/srcu-Use-try-lock-lockdep-annotation-for-NMI-safe-access.patch patches.suse/scripts-decode_stacktrace.sh-optionally-use-LLVM-uti.patch patches.suse/kernel-crash_core.c-make-__crash_hotplug_lock-static.patch patches.suse/selftests-mm-hugepage-vmemmap-fails-on-64K-page-size.patch @@ -18626,6 +18708,7 @@ patches.suse/net-qualcomm-rmnet-fix-global-oob-in-rmnet_policy.patch patches.suse/octeontx2-af-CN10KB-Fix-FIFO-length-calculation-for-.patch patches.suse/virtio_net-Fix-d-directive-writing-between-1-and-11-.patch + patches.suse/amt-do-not-use-overwrapped-cb-area.patch patches.suse/net-micrel-Fix-PTP-frame-parsing-for-lan8841.patch patches.suse/net-phy-micrel-populate-.soft_reset-for-KSZ9131.patch patches.suse/net-add-more-sanity-check-in-virtio_net_hdr_to_skb.patch @@ -18636,6 +18719,7 @@ patches.suse/selftests-bonding-add-missing-build-configs.patch patches.suse/net-dsa-vsc73xx-Add-null-pointer-check-to-vsc73xx_gp.patch patches.suse/net-sfp-bus-fix-SFP-mode-detect-from-bitrate.patch + patches.suse/net-stmmac-Prevent-DSA-tags-from-breaking-COE.patch patches.suse/selftests-netdevsim-add-a-config-file.patch patches.suse/selftests-bonding-Add-more-missing-config-options.patch patches.suse/mlxsw-spectrum_acl_erp-Fix-error-flow-of-pool-alloca.patch @@ -18650,10 +18734,13 @@ patches.suse/kdb-Fix-a-potential-buffer-overflow-in-kdb_local.patch patches.suse/kbuild-buildtar-Remove-unused-dirs.patch patches.suse/modpost-move-__attribute__-format-printf-2-3-to-modp.patch + patches.suse/erofs-Don-t-use-certain-unnecessary-folio_-functions.patch patches.suse/io_uring-adjust-defer-tw-counting.patch patches.suse/io_uring-clean-up-local-tw-add-wait-sync.patch patches.suse/io_uring-clean-local_work_add-var-naming.patch patches.suse/io_uring-combine-cq_wait_nr-checks.patch + patches.suse/md-Fix-md_seq_ops-regressions-f9cf.patch + patches.suse/md-raid1-Use-blk_opf_t-for-read-and-write-operations-7dab.patch patches.suse/nvmet-tcp-Fix-a-kernel-panic-when-host-sends-an-inva.patch patches.suse/nvmet-tcp-fix-a-crash-in-nvmet_req_complete.patch patches.suse/nvmet-tcp-remove-boilerplate-code.patch @@ -18763,11 +18850,15 @@ patches.suse/clocksource-drivers-timer-ti-dm-Fix-make-W-n-kerneld.patch patches.suse/tick-sched-Fix-idle-and-iowait-sleeptime-accounting-.patch patches.suse/xen-netback-don-t-produce-zero-size-SKB-frags.patch + patches.suse/btrfs-don-t-abort-filesystem-when-attempting-to-snap.patch + patches.suse/btrfs-avoid-copying-BTRFS_ROOT_SUBVOL_DEAD-flag-to-s.patch patches.suse/btrfs-scrub-avoid-use-after-free-when-chunk-length-i.patch patches.suse/tracing-Ensure-visibility-when-inserting-an-element-into-tracing_map.patch patches.suse/fbdev-savage-Error-out-if-pixclock-equals-zero.patch patches.suse/fbdev-sis-Error-out-if-pixclock-equals-zero.patch patches.suse/exec-Fix-error-handling-in-begin_new_exec.patch + patches.suse/nfsd-fix-RELEASE_LOCKOWNER.patch + patches.suse/netfs-fscache-Prevent-Oops-in-fscache_put_cache.patch patches.suse/afs-Hide-silly-rename-files-from-userspace.patch patches.suse/selftests-bonding-Increase-timeout-to-1200s.patch patches.suse/bnxt_en-Wait-for-FLR-to-complete-during-probe.patch @@ -18873,6 +18964,7 @@ patches.suse/clocksource-Skip-watchdog-check-for-large-watchdog-i.patch patches.suse/tick-sched-Preserve-number-of-idle-sleeps-across-CPU.patch patches.suse/genirq-Initialize-resend_node-hlist-for-all-interrup.patch + patches.suse/futex-Prevent-the-reuse-of-stale-pi_state.patch patches.suse/cxl-region-Fix-overflow-issue-in-alloc_hpa.patch patches.suse/uprobes-use-pagesize-aligned-virtual-address-when-replacing-pages.patch patches.suse/mm-memcontrol-don-t-throttle-dying-tasks-on-memory.high.patch @@ -18920,6 +19012,9 @@ patches.suse/nvme-enable-retries-for-authentication-commands.patch patches.suse/ahci-Extend-ASM1061-43-bit-DMA-address-quirk-to-othe.patch patches.suse/dm-limit-the-number-of-targets-and-parameter-size-ar.patch + patches.suse/dm-stats-limit-the-number-of-entries-9cf1.patch + patches.suse/dm-writecache-allow-allocations-larger-than-2GiB-40ef.patch + patches.suse/dm-crypt-dm-verity-disable-tasklets-0a9b.patch patches.suse/iommu-Allow-ops-default_domain-to-work-when-CONFIG_IOMMU_DMA patches.suse/drm-tegra-Do-not-assume-that-a-NULL-domain-means-no-DMA-IOMMU patches.suse/powerpc-iommu-Bring-back-table-group-release_ownership-call @@ -19029,6 +19124,7 @@ patches.suse/misc-fastrpc-Mark-all-sessions-as-invalid-in-cb_remo.patch patches.suse/xfs-reset-XFS_ATTR_INCOMPLETE-filter-on-node-removal.patch patches.suse/btrfs-do-not-ASSERT-if-the-newly-created-subvolume-a.patch + patches.suse/nfsd-don-t-take-fi_lock-in-nfsd_break_deleg_cb.patch patches.suse/KVM-s390-vsie-fix-race-during-shadow-creation.patch patches.suse/KVM-s390-fix-cc-for-successful-PQAP.patch patches.suse/KVM-x86-Check-irqchip-mode-before-create-PIT.patch @@ -19037,12 +19133,19 @@ patches.suse/x86-coco-Define-cc_vendor-without-CONFIG_ARCH_HAS_CC.patch patches.suse/crypto-ccp-Fix-null-pointer-dereference-in-__sev_pla.patch patches.suse/crypto-algif_hash-Remove-bogus-SGL-free-on-zero-leng.patch + patches.suse/netdevsim-avoid-potential-loop-in-nsim_dev_trap_repo.patch + patches.suse/net-atlantic-Fix-DMA-mapping-for-PTP-hwts-ring.patch patches.suse/selftests-net-cut-more-slack-for-gro-fwd-tests.patch patches.suse/selftests-net-avoid-just-another-constant-wait.patch + patches.suse/tsnep-Fix-mapping-for-zero-copy-XDP_TX-action.patch patches.suse/atm-idt77252-fix-a-memleak-in-open_card_ubr0.patch patches.suse/octeontx2-pf-Fix-a-memleak-otx2_sq_init.patch patches.suse/msft-hv-2942-hv_netvsc-Register-VF-in-netvsc_probe-if-NET_DEVICE_.patch + patches.suse/nfp-use-correct-macro-for-LengthSelect-in-BAR-config.patch + patches.suse/nfp-flower-prevent-re-adding-mac-index-for-bonded-po.patch + patches.suse/nfp-enable-NETDEV_XDP_ACT_REDIRECT-feature-flag.patch patches.suse/selftests-net-let-big_tcp-test-cope-with-slow-env.patch + patches.suse/ppp_async-limit-MRU-to-64K.patch patches.suse/selftests-cmsg_ipv6-repeat-the-exact-packet.patch patches.suse/net-intel-fix-old-compiler-regressions.patch patches.suse/wifi-iwlwifi-fix-double-free-bug.patch @@ -19055,6 +19158,7 @@ patches.suse/wifi-iwlwifi-exit-eSR-only-after-the-FW-does.patch patches.suse/wifi-iwlwifi-do-not-announce-EPCS-support.patch patches.suse/wifi-brcmfmac-Adjust-n_channels-usage-for-__counted_.patch + patches.suse/net-ethernet-ti-cpsw_new-enable-mac_managed_pm-to-fi.patch patches.suse/octeontx2-af-Initialize-maps.patch patches.suse/s390-qeth-Fix-potential-loss-of-L3-IP-in-case-of-network-issues.patch patches.suse/netfilter-nft_set_rbtree-skip-end-interval-element-f.patch @@ -19087,11 +19191,16 @@ patches.suse/tracing-probes-Fix-to-show-a-parse-error-for-bad-type-for-comm.patch patches.suse/ftrace-Fix-DIRECT_CALLS-to-use-SAVE_REGS-by-default.patch patches.suse/tracing-Fix-wasted-memory-in-saved_cmdlines-logic.patch + patches.suse/libceph-fail-sparse-read-if-the-data-length-doesn-t-m.patch + patches.suse/libceph-rename-read_sparse_msg_-to-read_partial_spars.patch + patches.suse/libceph-just-wait-for-more-data-to-be-available-on-th.patch + patches.suse/ceph-prevent-use-after-free-in-encode_cap_msg.patch patches.suse/scsi-core-Move-scsi_host_busy-out-of-host-lock-if-it-is-for-per-command.patch patches.suse/scsi-lpfc-Use-unsigned-type-for-num_sge.patch patches.suse/firewire-core-send-bus-reset-promptly-on-gap-count-e.patch patches.suse/nvme-host-fix-the-updating-of-the-firmware-version.patch patches.suse/nilfs2-fix-data-corruption-in-dsync-block-recovery-f.patch + patches.suse/nilfs2-fix-hang-in-nilfs_lookup_dirty_data_buffers.patch patches.suse/x86-fpu-Stop-relying-on-userspace-for-info-to-fault-in-xsa.patch patches.suse/x86-Kconfig-Transmeta-Crusoe-is-CPU-family-5-not-6.patch patches.suse/HID-wacom-Do-not-register-input-devices-until-after-.patch @@ -19120,6 +19229,7 @@ patches.suse/i40e-avoid-double-calling-i40e_pf_rxq_wait.patch patches.suse/i40e-take-into-account-XDP-Tx-queues-when-stopping-r.patch patches.suse/bnad-fix-work_queue-type-mismatch.patch + patches.suse/ethernet-cpts-fix-function-pointer-cast-warnings.patch patches.suse/wifi-mac80211-reload-info-pointer-in-ieee80211_tx_de.patch patches.suse/wifi-iwlwifi-Fix-some-error-codes.patch patches.suse/wifi-iwlwifi-uninitialized-variable-in-iwl_acpi_get_.patch @@ -19240,13 +19350,18 @@ patches.suse/selftests-bonding-set-active-slave-to-primary-eth1-s.patch patches.suse/ionic-use-pci_is_enabled-not-open-code.patch patches.suse/octeontx2-af-Consider-the-action-set-by-PF.patch + patches.suse/net-ipa-don-t-overrun-IPA-suspend-interrupt-register.patch + patches.suse/gtp-fix-use-after-free-and-null-ptr-deref-in-gtp_gen.patch + patches.suse/net-sparx5-Add-spinlock-for-frame-transmission-from-.patch patches.suse/net-phy-realtek-Fix-rtl8211f_config_init-for-RTL8211.patch patches.suse/l2tp-pass-correct-message-length-to-ip6_append_data.patch patches.suse/cachefiles-fix-memory-leak-in-cachefiles_add_cache.patch + patches.suse/afs-Increase-buffer-size-in-afs_update_volume_status.patch patches.suse/platform-x86-touchscreen_dmi-Allow-partial-prefix-ma.patch patches.suse/platform-x86-intel-vbtn-Stop-calling-VBDL-from-notif.patch patches.suse/platform-x86-thinkpad_acpi-Only-update-profile-if-su.patch patches.suse/selftests-iommu-fix-the-config-fragment.patch + patches.suse/md-Fix-missing-release-of-active_io-for-flush-8556.patch patches.suse/md-Don-t-ignore-suspended-array-in-md_check_recovery-1baa.patch patches.suse/md-Don-t-ignore-read-only-array-in-md_check_recovery-55a4.patch patches.suse/md-Make-sure-md_do_sync-will-set-MD_RECOVERY_DONE-82ec.patch @@ -19268,14 +19383,25 @@ patches.suse/drm-amd-display-Fix-memory-leak-in-dm_sw_fini.patch patches.suse/drm-amd-display-fix-null-pointer-dereference-on-edid.patch patches.suse/drm-amdgpu-Fix-the-runtime-resume-failure-issue.patch + patches.suse/dm-integrity-recheck-the-integrity-tag-after-a-failu-c88f.patch + patches.suse/dm-verity-recheck-the-hash-after-a-failure-9177.patch + patches.suse/dm-crypt-don-t-modify-the-data-when-using-authentica-50c7.patch + patches.suse/dm-crypt-recheck-the-integrity-tag-after-a-failure-42e1.patch + patches.suse/dm-verity-dm-crypt-align-struct-bvec_iter-correctly-787f.patch + patches.suse/dm-crypt-dm-integrity-dm-verity-bump-target-version-0e0c.patch patches.suse/s390-use-the-correct-count-for-__iowrite64_copy.patch patches.suse/s390-cio-fix-invalid-EBUSY-on-ccw_device_start.patch patches.suse/arm64-sme-Restore-SME-registers-on-exit-from-suspend.patch patches.suse/arm64-sme-Restore-SMCR_EL1.EZT0-on-exit-from-suspend.patch patches.suse/ARM-ep93xx-Add-terminator-to-gpiod_lookup_table.patch + patches.suse/arm64-dts-imx8mp-Disable-UART4-by-default-on-Data-Modul-i.MX8M-Plus-eDM-SBC.patch patches.suse/bus-imx-weim-fix-valid-range-check.patch + patches.suse/arm64-dts-rockchip-set-num-cs-property-for-spi-on-px30.patch patches.suse/i2c-imx-when-being-a-target-mark-the-last-read-as-pr.patch + patches.suse/dm-integrity-dm-verity-reduce-stack-usage-for-rechec-66ad.patch patches.suse/powerpc-pseries-iommu-DLPAR-add-doesn-t-completely-i.patch + patches.suse/erofs-fix-handling-kern_mount-failure.patch + patches.suse/erofs-fix-refcount-on-the-metabuf-used-for-inode-lookup.patch patches.suse/PCI-MSI-Prevent-MSI-hardware-interrupt-number-trunca.patch patches.suse/x86-bugs-Add-asm-helpers-for-executing-VERW.patch patches.suse/x86-entry_64-Add-VERW-just-before-userspace-transition.patch @@ -19299,7 +19425,19 @@ patches.suse/mtd-spinand-gigadevice-Fix-the-get-ecc-status-issue.patch patches.suse/mtd-rawnand-marvell-fix-layouts.patch patches.suse/crypto-arm64-neonbs-fix-out-of-bounds-access-on-shor.patch + patches.suse/ice-fix-connection-state-of-DPLL-and-out-pin.patch + patches.suse/ice-fix-dpll-input-pin-phase_adjust-value-updates.patch + patches.suse/ice-fix-dpll-and-dpll_pin-data-access-on-PF-reset.patch + patches.suse/ice-fix-dpll-periodic-work-data-updates-on-PF-reset.patch + patches.suse/ice-fix-pin-phase-adjust-updates-on-PF-reset.patch + patches.suse/ice-Fix-ASSERT_RTNL-warning-during-certain-scenarios.patch + patches.suse/net-dpaa-fman_memac-accept-phy-interface-type-10gbas.patch + patches.suse/tun-Fix-xdp_rxq_info-s-queue_index-when-detaching.patch + patches.suse/net-veth-clear-GRO-when-clearing-XDP-even-when-down.patch patches.suse/lan78xx-enable-auto-speed-configuration-for-LAN7850-.patch + patches.suse/ionic-check-before-releasing-pci-regions.patch + patches.suse/ionic-check-cmd_regs-before-copying-in-or-out.patch + patches.suse/ionic-restore-netdev-feature-bits-after-reset.patch patches.suse/net-usb-dm9601-fix-wrong-return-value-in-dm9601_mdio.patch patches.suse/net-lan78xx-fix-softirq-work-is-pending-error.patch patches.suse/wifi-nl80211-reject-iftype-change-with-mesh-ID-chang.patch @@ -19315,6 +19453,7 @@ patches.suse/Bluetooth-Enforce-validation-on-max-value-of-connect.patch patches.suse/Bluetooth-qca-Fix-wrong-event-type-for-patch-config-.patch patches.suse/tomoyo-fix-UAF-write-bug-in-tomoyo_write_control.patch + patches.suse/gpu-host1x-Skip-reset-assert-on-Tegra186.patch patches.suse/soc-qcom-pmic_glink-Fix-boot-when-QRTR-m.patch patches.suse/drm-tegra-Remove-existing-framebuffer-only-if-we-sup.patch patches.suse/fbcon-always-restore-the-old-font-data-in-fbcon_do_s.patch @@ -19341,20 +19480,29 @@ patches.suse/mmc-mmci-stm32-fix-DMA-API-overlapping-mappings-warn.patch patches.suse/mmc-sdhci-xenon-fix-PHY-init-clock-stability.patch patches.suse/mmc-sdhci-xenon-add-timeout-for-PHY-init-complete.patch + patches.suse/afs-Fix-endless-loop-in-directory-parsing.patch patches.suse/btrfs-fix-double-free-of-anonymous-device-after-snap.patch + patches.suse/ceph-switch-to-corrected-encoding-of-max_xattr_size-i.patch patches.suse/kbuild-Add-Wa-fatal-warnings-to-as-instr-invocation.patch patches.suse/power-supply-bq27xxx-i2c-Do-not-free-non-existing-IR.patch patches.suse/gpio-74x164-Enable-output-pins-after-registers-are-r.patch patches.suse/gpiolib-Fix-the-error-path-order-in-gpiochip_add_dat.patch patches.suse/gpio-fix-resource-unwinding-order-in-error-path.patch patches.suse/x86-e820-Don-t-reserve-SETUP_RNG_SEED-in-e820.patch + patches.suse/powerpc-pseries-iommu-IOMMU-table-is-not-initialized.patch + patches.suse/powerpc-rtas-use-correct-function-name-for-resetting.patch patches.suse/dmaengine-fsl-qdma-fix-SoC-may-hang-on-16-byte-unali.patch patches.suse/dmaengine-fsl-qdma-init-irq-after-reg-initialization.patch patches.suse/dmaengine-idxd-Ensure-safe-user-copy-of-completion-r.patch patches.suse/dmaengine-ptdma-use-consistent-DMA-masks.patch patches.suse/phy-freescale-phy-fsl-imx8-mipi-dphy-Fix-alias-name-.patch patches.suse/integrity-eliminate-unnecessary-Problem-loading-X.50.patch + patches.suse/arm64-dts-imx8mp-Fix-LDB-clocks-property.patch + patches.suse/arm64-tegra-Fix-Tegra234-MGBE-power-domains.patch + patches.suse/net-lan78xx-fix-runtime-PM-count-underflow-on-link-s.patch patches.suse/erofs-apply-proper-VMA-alignment-for-memory-mapped-files-on-THP.patch + patches.suse/mm-vmscan-prevent-infinite-loop-for-costly-GFP_NOIO-__GFP_RETRY_MAYFAIL-allocations.patch + patches.suse/mm-mmap-fix-vma_merge-case-7.patch patches.suse/drm-i915-hdcp-Move-to-direct-reads-for-HDCP.patch patches.suse/drm-i915-hdcp-Remove-additional-timing-for-reading-m.patch patches.suse/drm-i915-hdcp-Extract-hdcp-structure-from-correct-co.patch @@ -19400,9 +19548,393 @@ patches.suse/comedi-comedi_test-Prevent-timers-rescheduling-durin.patch patches.suse/misc-fastrpc-Pass-proper-arguments-to-scm-call.patch patches.suse/mei-gsc_proxy-match-component-when-GSC-is-on-differe.patch + patches.suse/libceph-init-the-cursor-when-preparing-sparse-read-in.patch patches.suse/i2c-i801-Avoid-potential-double-call-to-gpiod_remove.patch patches.suse/i2c-wmt-Fix-an-error-handling-path-in-wmt_i2c_probe.patch patches.suse/i2c-aspeed-Fix-the-dummy-irq-expected-print.patch + patches.suse/selftests-mqueue-Set-timeout-to-180-seconds.patch + patches.suse/lib-cmdline-Fix-an-invalid-format-specifier-in-an-as.patch + patches.suse/lib-memcpy_kunit-Fix-an-invalid-format-specifier-in-.patch + patches.suse/rtc-test-Fix-invalid-format-specifier.patch + patches.suse/dm-dm-zoned-guard-blkdev_zone_mgmt-with-noio-scope-2180.patch + patches.suse/blk-mq-don-t-change-nr_hw_queues-and-nr_maps-for-kdu.patch + patches.suse/md-raid5-fix-atomicity-violation-in-raid5_cache_coun-dfd2.patch + patches.suse/dm-raid-fix-lockdep-waring-in-pers-hot_add_disk-9500.patch + patches.suse/x86-sev-Harden-VC-instruction-emulation-somewhat + patches.suse/x86-mm-Fix-memory-encryption-features-advertisement + patches.suse/x86-sme-Fix-memory-encryption-setting-if-enabled-by-default-and- + patches.suse/x86-cpufeatures-Add-SEV-SNP-CPU-feature + patches.suse/x86-speculation-Do-not-enable-Automatic-IBRS-if-SEV-SNP-is-enabl + patches.suse/iommu-amd-Don-t-rely-on-external-callers-to-enable-IOMMU-SNP-sup + patches.suse/x86-sev-Add-SEV-SNP-host-initialization-support + patches.suse/x86-mtrr-Don-t-print-errors-if-MtrrFixDramModEn-is-set-when-SNP- + patches.suse/x86-sev-Add-RMP-entry-lookup-helpers + patches.suse/x86-fault-Add-helper-for-dumping-RMP-entries + patches.suse/x86-traps-Define-RMP-violation-PF-error-code + patches.suse/x86-fault-Dump-RMP-table-information-when-RMP-page-faults-occur + patches.suse/x86-sev-Add-helper-functions-for-RMPUPDATE-and-PSMASH-instructio + patches.suse/x86-sev-Adjust-the-directmap-to-avoid-inadvertent-RMP-faults + patches.suse/crypto-ccp-Define-the-SEV-SNP-commands + patches.suse/crypto-ccp-Add-support-to-initialize-the-AMD-SP-for-SEV-SNP + patches.suse/crypto-ccp-Provide-an-API-to-issue-SEV-and-SNP-commands + patches.suse/x86-sev-Introduce-an-SNP-leaked-pages-list + patches.suse/crypto-ccp-Handle-the-legacy-TMR-allocation-when-SNP-is-enabled + patches.suse/crypto-ccp-Handle-non-volatile-INIT_EX-data-when-SNP-is-enabled + patches.suse/crypto-ccp-Handle-legacy-SEV-commands-when-SNP-is-enabled + patches.suse/iommu-amd-Clean-up-RMP-entries-for-IOMMU-pages-during-SNP-shutdo + patches.suse/crypto-ccp-Add-panic-notifier-for-SEV-SNP-firmware-shutdown-on-k + patches.suse/KVM-SEV-Make-AVIC-backing-VMSA-and-VMCB-memory-allocation-SNP-sa + patches.suse/x86-cpufeatures-Enable-unmask-SEV-SNP-CPU-feature + patches.suse/crypto-ccp-Add-the-SNP_PLATFORM_STATUS-command + patches.suse/crypto-ccp-Add-the-SNP_COMMIT-command + patches.suse/crypto-ccp-Add-the-SNP_SET_CONFIG-command + patches.suse/Documentation-virt-Fix-up-pre-formatted-text-block-f.patch + patches.suse/0001-iommu-amd-Fix-failure-return-from-snp_lookup_rmpentr.patch + patches.suse/crypto-ccp-Have-it-depend-on-AMD_IOMMU.patch + patches.suse/RAS-Introduce-AMD-Address-Translation-Library.patch + patches.suse/EDAC-amd64-Use-new-AMD-Address-Translation-Library.patch + patches.suse/Documentation-RAS-Add-index-and-address-translation-sectio.patch + patches.suse/RAS-AMD-ATL-Add-MI300-support.patch + patches.suse/RAS-AMD-ATL-Fix-array-overflow-in-get_logical_coh_st_fabri.patch + patches.suse/RAS-AMD-ATL-Add-MI300-DRAM-to-normalized-address-translati.patch + patches.suse/RAS-AMD-ATL-Add-MI300-row-retirement-support.patch + patches.suse/RAS-Introduce-a-FRU-memory-poison-manager.patch + patches.suse/RAS-AMD-ATL-Fix-bit-overflow-in-denorm_addr_df4_np2.patch + patches.suse/RAS-Export-helper-to-get-ras_debugfs_dir.patch + patches.suse/RAS-AMD-FMPM-Save-SPA-values.patch + patches.suse/RAS-AMD-FMPM-Add-debugfs-interface-to-print-record-entries.patch + patches.suse/RAS-AMD-FMPM-Fix-off-by-one-when-unwinding-on-error.patch + patches.suse/x86-mmio-Disable-KVM-mitigation-when-X86_FEATURE_CLEAR_CPU.patch + patches.suse/Documentation-hw-vuln-Add-documentation-for-RFDS.patch + patches.suse/x86-rfds-Mitigate-Register-File-Data-Sampling-RFDS.patch + patches.suse/KVM-x86-Export-RFDS_NO-and-RFDS_CLEAR-to-guests.patch + patches.suse/s390-pai-fix-attr_event_free-upper-limit-for-pai-device-drivers.patch + patches.suse/s390-cache-prevent-rebuild-of-shared_cpu_list.patch + patches.suse/arm64-dts-allwinner-h6-Add-RX-DMA-channel-for-SPDIF.patch + patches.suse/arm64-dts-imx8mm-kontron-Disable-pullups-for-I2C-signals-on-OSM-S-i.MX8MM.patch + patches.suse/arm64-dts-imx8mm-kontron-Disable-pullups-for-I2C-signals-on-SL-BL-i.MX8MM.patch + patches.suse/arm64-dts-imx8mm-kontron-Disable-pullups-for-onboard-UART-signals-on-BL-OSM-S-board.patch + patches.suse/arm64-dts-imx8mm-kontron-Disable-pullups-for-onboard-UART-signals-on-BL-board.patch + patches.suse/arm64-dts-imx8mm-kontron-Disable-pull-resistors-for-SD-card-signals-on-BL-OSM-S-board.patch + patches.suse/arm64-dts-imx8mm-kontron-Disable-pull-resistors-for-SD-card-signals-on-BL-board.patch + patches.suse/arm64-dts-imx8mm-kontron-Fix-interrupt-for-RTC-on-OSM-S-i.MX8MM-module.patch + patches.suse/arm64-dts-imx8mm-kontron-Fix-OSM-S-devicetrees-to-match-latest-hardware.patch + patches.suse/arm64-dts-imx8mm-kontron-Refactor-devicetree-for-OSM-S-module-and-board.patch + patches.suse/arm64-dts-imx8mm-venice-gw71xx-fix-USB-OTG-VBUS.patch + patches.suse/arm64-dts-imx8mp-Set-SPI-NOR-to-max-40-MHz-on-Data-Modul-i.MX8M-Plus-eDM-SBC.patch + patches.suse/arm64-dts-rockchip-add-missing-interrupt-names-for-rk356x-vdpu.patch + patches.suse/arm64-dts-rockchip-fix-reset-names-for-rk356x-i2s2-controller.patch + patches.suse/arm64-dts-rockchip-drop-rockchip-trcm-sync-tx-only-from-rk3588-i2s.patch + patches.suse/firmware-arm_scmi-Fix-double-free-in-SMC-transport-c.patch + patches.suse/bus-tegra-aconnect-Update-dependency-to-ARCH_TEGRA.patch + patches.suse/soc-qcom-socinfo-rename-PM2250-to-PM4125.patch + patches.suse/soc-qcom-llcc-Check-return-value-on-Broadcast_OR-reg.patch + patches.suse/btrfs-preallocate-temporary-extent-buffer-for-inode-.patch + patches.suse/doc-guide-kernel-doc-tell-about-object-like-macros.patch + patches.suse/wifi-b43-Stop-wake-correct-queue-in-DMA-Tx-path-when.patch + patches.suse/wifi-b43-Stop-wake-correct-queue-in-PIO-Tx-path-when.patch + patches.suse/wifi-b43-Stop-correct-queue-in-DMA-worker-when-QoS-i.patch + patches.suse/wifi-b43-Disable-QoS-for-bcm4331.patch + patches.suse/wifi-wilc1000-fix-RCU-usage-in-connect-path.patch + patches.suse/wifi-rtl8xxxu-add-cancel_work_sync-for-c2hcmd_work.patch + patches.suse/wifi-wilc1000-do-not-realloc-workqueue-everytime-an-.patch + patches.suse/wifi-wilc1000-fix-multi-vif-management-when-deleting.patch + patches.suse/wifi-mwifiex-debugfs-Drop-unnecessary-error-check-fo.patch + patches.suse/wifi-brcmfmac-Fix-use-after-free-bug-in-brcmf_cfg802.patch + patches.suse/wifi-brcmfmac-avoid-invalid-list-operation-when-vend.patch + patches.suse/net-sched-Add-helper-macros-with-module-names.patch + patches.suse/net-sched-Add-module-aliases-for-cls_-sch_-act_-modules.patch + patches.suse/net-sched-Load-modules-via-their-alias.patch + patches.suse/net-sched-Remove-alias-of-sch_clsact.patch + patches.suse/net-phy-realtek-add-support-for-RTL8126A-integrated-.patch + patches.suse/r8169-add-support-for-RTL8126A.patch + patches.suse/net-mdio-add-2.5g-and-5g-related-PMA-speed-constants.patch + patches.suse/net-phy-realtek-use-generic-MDIO-constants.patch + patches.suse/net-phy-realtek-add-5Gbps-support-to-rtl822x_config_.patch + patches.suse/can-softing-remove-redundant-NULL-check.patch + patches.suse/wifi-ath10k-fix-NULL-pointer-dereference-in-ath10k_w.patch + patches.suse/wifi-ath12k-Fix-issues-in-channel-list-update.patch + patches.suse/wifi-brcmfmac-fix-copyright-year-mentioned-in-platfo.patch + patches.suse/wifi-iwlwifi-mvm-report-beacon-protection-failures.patch + patches.suse/wifi-iwlwifi-dbg-tlv-ensure-NUL-termination.patch + patches.suse/wifi-iwlwifi-acpi-fix-WPFC-reading.patch + patches.suse/wifi-iwlwifi-mvm-initialize-rates-in-FW-earlier.patch + patches.suse/wifi-iwlwifi-fix-EWRD-table-validity-check.patch + patches.suse/wifi-iwlwifi-mvm-d3-fix-IPN-byte-order.patch + patches.suse/wifi-iwlwifi-mvm-use-FW-rate-for-non-data-only-on-ne.patch + patches.suse/wifi-iwlwifi-mvm-fix-the-TLC-command-after-ADD_STA.patch + patches.suse/wifi-iwlwifi-read-BIOS-PNVM-only-for-non-Intel-SKU.patch + patches.suse/wifi-iwlwifi-mvm-fix-warnings-from-dmi_get_system_in.patch + patches.suse/wifi-libertas-fix-some-memleaks-in-lbs_allocate_cmd_.patch + patches.suse/wifi-brcmsmac-Drop-legacy-header.patch + patches.suse/wifi-wfx-fix-memory-leak-when-starting-AP.patch + patches.suse/wifi-iwlwifi-support-EHT-for-WH.patch + patches.suse/wifi-iwlwifi-mvm-fix-erroneous-queue-index-mask.patch + patches.suse/wifi-iwlwifi-mvm-don-t-set-the-MFP-flag-for-the-GTK.patch + patches.suse/wifi-iwlwifi-mvm-don-t-set-replay-counters-to-0xff.patch + patches.suse/wifi-iwlwifi-mvm-Fix-the-listener-MAC-filter-flags.patch + patches.suse/wifi-wilc1000-prevent-use-after-free-on-vif-when-cle.patch + patches.suse/wifi-brcmsmac-avoid-function-pointer-casts.patch + patches.suse/wifi-wilc1000-revert-reset-line-logic-flip.patch + patches.suse/wifi-ath9k-delay-all-of-ath9k_wmi_event_tasklet-unti.patch + patches.suse/wifi-ath11k-change-to-move-WMI_VDEV_PARAM_SET_HEMU_M.patch + patches.suse/wifi-ath11k-initialize-rx_mcs_80-and-rx_mcs_160-befo.patch + patches.suse/wifi-ath12k-fix-incorrect-logic-of-calculating-vdev_.patch + patches.suse/selftests-bpf-trace_helpers.c-do-not-use-poisoned-ty.patch + patches.suse/sr9800-Add-check-for-usbnet_get_endpoints.patch + patches.suse/wifi-mt76-mt7996-fix-TWT-issues.patch + patches.suse/wifi-mt76-mt7996-fix-incorrect-interpretation-of-EHT.patch + patches.suse/wifi-mt76-mt7996-fix-HE-beamformer-phy-cap-for-stati.patch + patches.suse/wifi-mt76-mt7996-fix-efuse-reading-issue.patch + patches.suse/wifi-mt76-mt7996-fix-HIF_TXD_V2_1-value.patch + patches.suse/wifi-mt76-mt7921e-fix-use-after-free-in-free_irq.patch + patches.suse/wifi-mt76-mt7921-fix-incorrect-type-conversion-for-C.patch + patches.suse/wifi-mt76-mt792x-fix-a-potential-loading-failure-of-.patch + patches.suse/wifi-mac80211-track-capability-opmode-NSS-separately.patch + patches.suse/wifi-mac80211-update-scratch_pos-after-defrag.patch + patches.suse/wifi-rtw88-8821cu-Fix-firmware-upload-fail.patch + patches.suse/wifi-rtw88-8821c-Fix-beacon-loss-and-disconnect.patch + patches.suse/wifi-rtw88-8821c-Fix-false-alarm-count.patch + patches.suse/wifi-brcm80211-handle-pmk_op-allocation-failure.patch + patches.suse/wifi-ath11k-rearrange-IRQ-enable-disable-in-reset-pa.patch + patches.suse/wifi-ath11k-remove-MHI-LOOPBACK-channels.patch + patches.suse/wifi-ath11k-do-not-dump-SRNG-statistics-during-resum.patch + patches.suse/wifi-ath11k-fix-warning-on-DMA-ring-capabilities-eve.patch + patches.suse/wifi-ath11k-thermal-don-t-try-to-register-multiple-t.patch + patches.suse/Bluetooth-Remove-HCI_POWER_OFF_TIMEOUT.patch + patches.suse/Bluetooth-mgmt-Remove-leftover-queuing-of-power_off-.patch + patches.suse/Bluetooth-Remove-superfluous-call-to-hci_conn_check_.patch + patches.suse/Bluetooth-hci_event-Fix-not-indicating-new-connectio.patch + patches.suse/Bluetooth-hci_qca-don-t-use-IS_ERR_OR_NULL-with-gpio.patch + patches.suse/Bluetooth-hci_h5-Add-ability-to-allocate-memory-for-.patch + patches.suse/Bluetooth-btrtl-fix-out-of-bounds-memory-access.patch + patches.suse/Bluetooth-hci_core-Fix-possible-buffer-overflow.patch + patches.suse/Bluetooth-af_bluetooth-Fix-deadlock.patch + patches.suse/Bluetooth-btnxpuart-Fix-btnxpuart_close.patch + patches.suse/Bluetooth-btmtk-Add-MODULE_FIRMWARE-for-MT7922.patch + patches.suse/Bluetooth-Fix-eir-name-length.patch + patches.suse/net-phy-fix-phy_get_internal_delay-accessing-an-empt.patch + patches.suse/net-phy-dp83822-Fix-RGMII-TX-delay-configuration.patch + patches.suse/r8152-fix-unknown-device-for-choose_configuration.patch + patches.suse/selinux-don-t-filter-copy-up-xattrs-while-uninitiali.patch + patches.suse/0001-PCI-Make-pci_dev_is_disconnected-helper-public-for-o.patch + patches.suse/0002-iommu-vt-d-Don-t-issue-ATS-Invalidation-request-when.patch + patches.suse/0001-iommu-amd-Mark-interrupt-as-managed.patch + patches.suse/dm-ioctl-update-DM_DRIVER_EMAIL-to-new-dm-devel-mail-86ab.patch + patches.suse/dm-raid-fix-false-positive-for-requeue-needed-during-b25b.patch + patches.suse/dm-call-the-resume-method-on-internal-suspend-65e8.patch + patches.suse/pwm-sti-Fix-capture-for-st-pwm-num-chan-st-capture-n.patch + patches.suse/pwm-mediatek-Update-kernel-doc-for-struct-pwm_mediat.patch + patches.suse/mmc-tmio-avoid-concurrent-runs-of-mmc_request_done.patch + patches.suse/mmc-wmt-sdmmc-remove-an-incorrect-release_mem_region.patch + patches.suse/mmc-core-Fix-switch-on-gp3-partition.patch + patches.suse/regulator-userspace-consumer-add-module-device-table.patch + patches.suse/gpio-vf610-allow-disabling-the-vf610-driver.patch + patches.suse/gpiolib-Pass-consumer-device-through-to-core-in-devm.patch + patches.suse/selftest-gpio-remove-obsolete-gpio-mockup-test.patch + patches.suse/PM-suspend-Set-mem_sleep_current-during-kernel-comma.patch + patches.suse/PM-sleep-wakeirq-fix-wake-irq-warning-in-system-susp.patch + patches.suse/cpufreq-amd-pstate-Fix-min_perf-assignment-in-amd_ps.patch + patches.suse/cpufreq-Limit-resolving-a-frequency-to-policy-min-ma.patch + patches.suse/cpufreq-brcmstb-avs-cpufreq-add-check-for-cpufreq_cp.patch + patches.suse/cpufreq-qcom-hw-add-CONFIG_COMMON_CLK-dependency.patch + patches.suse/powercap-intel_rapl-Fix-a-NULL-pointer-dereference.patch + patches.suse/powercap-intel_rapl_tpmi-Fix-a-register-bug.patch + patches.suse/powercap-dtpm_cpu-Fix-error-check-against-freq_qos_a.patch + patches.suse/ACPI-CPPC-enable-AMD-CPPC-V2-support-for-family-17h-.patch + patches.suse/ACPI-scan-Fix-device-check-notification-handling.patch + patches.suse/ACPI-resource-Add-MAIBENBEN-X577-to-irq1_edge_low_fo.patch + patches.suse/ACPI-processor_idle-Fix-memory-leak-in-acpi_processo.patch + patches.suse/thermal-intel-Fix-intel_tcc_get_temp-to-support-nega.patch + patches.suse/tpm-tpm_tis-Avoid-warning-splat-at-shutdown.patch + patches.suse/xfs-ensure-submit-buffers-on-LSN-boundaries-in-error-handlers.patch + patches.suse/xfs-fix-SEEK_HOLE-DATA-for-regions-with-active-COW-extents.patch + patches.suse/xfs-fix-imprecise-logic-in-xchk_btree_check_block_owner.patch + patches.suse/xfs-shrink-failure-needs-to-hold-AGI-buffer.patch + patches.suse/drm-tegra-dsi-Add-missing-check-for-of_find_device_b.patch + patches.suse/drm-tegra-dpaux-Fix-PM-disable-depth-imbalance-in-te.patch + patches.suse/drm-tegra-dsi-Fix-some-error-handling-paths-in-tegra.patch + patches.suse/drm-tegra-dsi-Fix-missing-pm_runtime_disable-in-the-.patch + patches.suse/drm-tegra-hdmi-Fix-some-error-handling-paths-in-tegr.patch + patches.suse/drm-tegra-rgb-Fix-some-error-handling-paths-in-tegra.patch + patches.suse/drm-tegra-rgb-Fix-missing-clk_put-in-the-error-handl.patch + patches.suse/drm-tegra-output-Fix-missing-i2c_put_adapter-in-the-.patch + patches.suse/drm-rockchip-inno_hdmi-Fix-video-timing.patch + patches.suse/drm-Don-t-treat-0-as-1-in-drm_fixp2int_ceil.patch + patches.suse/drm-vkms-Avoid-reading-beyond-LUT-array.patch + patches.suse/drm-vmwgfx-fix-a-memleak-in-vmw_gmrid_man_get_node.patch + patches.suse/drm-vmwgfx-Unmap-the-surface-before-resetting-it-on-.patch + patches.suse/drm-rockchip-lvds-do-not-overwrite-error-code.patch + patches.suse/drm-rockchip-lvds-do-not-print-scary-message-when-pr.patch + patches.suse/drm-panel-edp-use-put_sync-in-unprepare.patch + patches.suse/drm-lima-fix-a-memleak-in-lima_heap_alloc.patch + patches.suse/media-tc358743-register-v4l2-async-device-only-after.patch + patches.suse/drm-vmwgfx-Fix-possible-null-pointer-derefence-with-.patch + patches.suse/drm-vmwgfx-Fix-vmw_du_get_cursor_mob-fencing-of-newl.patch + patches.suse/drm-vmwgfx-Fix-the-lifetime-of-the-bo-cursor-memory.patch + patches.suse/drm-radeon-remove-dead-code-in-ni_mc_load_microcode.patch + patches.suse/drm-radeon-ni_dpm-remove-redundant-NULL-check.patch + patches.suse/drm-amd-display-Fix-a-potential-buffer-overflow-in-d.patch + patches.suse/drm-amd-display-Fix-potential-NULL-pointer-dereferen.patch + patches.suse/drm-amdgpu-Fix-potential-out-of-bounds-access-in-amd.patch + patches.suse/Revert-drm-i915-xe2lpd-Treat-cursor-plane-as-regular.patch + patches.suse/drm-ci-use-clk_ignore_unused-for-apq8016.patch + patches.suse/drm-radeon-ni-Fix-wrong-firmware-size-logging-in-ni_.patch + patches.suse/drm-amd-display-fix-NULL-checks-for-adev-dm.dc-in-am.patch + patches.suse/drm-amd-display-Add-replay-NULL-check-in-edp_set_rep.patch + patches.suse/drm-panel-boe-tv101wum-nl6-make-use-of-prepare_prev_.patch + patches.suse/drm-bridge-adv7511-fix-crash-on-irq-during-probe.patch + patches.suse/drm-tegra-put-drm_gem_object-ref-on-error-in-tegra_f.patch + patches.suse/drm-tidss-Fix-initial-plane-zpos-values.patch + patches.suse/drm-tidss-Fix-sync-lost-issue-with-two-displays.patch + patches.suse/drm-tests-helpers-Include-missing-drm_drv-header.patch + patches.suse/drm-mediatek-dsi-Fix-DSI-RGB666-formats-and-definiti.patch + patches.suse/drm-mediatek-Fix-a-null-pointer-crash-in-mtk_drm_crt.patch + patches.suse/drm-msm-dpu-improve-DSC-allocation.patch + patches.suse/drm-msm-dpu-fix-the-programming-of-INTF_CFG2_DATA_HC.patch + patches.suse/drm-msm-dpu-Only-enable-DSC_MODE_MULTIPLEX-if-dsc_me.patch + patches.suse/drm-msm-dpu-finalise-global-state-object.patch + patches.suse/drm-msm-a7xx-Fix-LLC-typo.patch + patches.suse/Revert-drm-amdgpu-Add-pci-usage-to-nbio-v7.9.patch + patches.suse/Revert-drm-amdgpu-Add-pcie-usage-callback-to-nbio.patch + patches.suse/drm-amdgpu-Fix-missing-break-in-ATOM_ARG_IMM-Case-of.patch + patches.suse/drm-amd-pm-Fix-esm-reg-mask-use-to-get-pcie-speed.patch + patches.suse/drm-etnaviv-Restore-some-id-values.patch + patches.suse/drm-msm-dpu-add-division-of-drm_display_mode-s-hskew.patch + patches.suse/HID-amd_sfh-Update-HPD-sensor-structure-elements.patch + patches.suse/HID-amd_sfh-Avoid-disabling-the-interrupt.patch + patches.suse/HID-lenovo-Add-middleclick_workaround-sysfs-knob-for.patch + patches.suse/pinctrl-mediatek-Drop-bogus-slew-rate-register-range.patch + patches.suse/pinctrl-mediatek-Drop-bogus-slew-rate-register-range-e15ab05.patch + patches.suse/pinctrl-renesas-r8a779g0-Add-missing-SCIF_CLK2-pin-g.patch + patches.suse/gpio-nomadik-fix-offset-bug-in-nmk_pmx_set.patch + patches.suse/mfd-syscon-Call-of_node_put-only-when-of_parse_phand.patch + patches.suse/mfd-altera-sysmgr-Call-of_node_put-only-when-of_pars.patch + patches.suse/backlight-hx8357-Fix-potential-NULL-pointer-derefere.patch + patches.suse/backlight-ktz8866-Correct-the-check-for-of_property_.patch + patches.suse/backlight-lm3630a-Initialize-backlight_properties-on.patch + patches.suse/backlight-lm3630a-Don-t-set-bl-props.brightness-in-g.patch + patches.suse/backlight-da9052-Fully-initialize-backlight_properti.patch + patches.suse/backlight-lm3639-Fully-initialize-backlight_properti.patch + patches.suse/backlight-lp8788-Fully-initialize-backlight_properti.patch + patches.suse/leds-aw2013-Unlock-mutex-before-destroying-it.patch + patches.suse/Revert-leds-Only-descend-into-leds-directory-when-CO.patch + patches.suse/leds-sgm3140-Add-missing-timer-cleanup-and-flash-gpi.patch + patches.suse/Revert-platform-x86-asus-wmi-Support-WMI-event-queue.patch + patches.suse/platform-x86-intel-tpmi-Change-vsec-offset-to-u64.patch + patches.suse/platform-mellanox-mlxreg-hotplug-Remove-redundant-NU.patch + patches.suse/PCI-AER-Fix-rootport-attribute-paths-in-ABI-docs.patch + patches.suse/pci_iounmap-Fix-MMIO-mapping-leak.patch + patches.suse/PCI-DPC-Print-all-TLP-Prefixes-not-just-the-first.patch + patches.suse/PCI-Mark-3ware-9650SE-Root-Port-Extended-Tags-as-bro.patch + patches.suse/PCI-P2PDMA-Fix-a-sleeping-issue-in-a-RCU-read-sectio.patch + patches.suse/PCI-switchtec-Fix-an-error-handling-path-in-switchte.patch + patches.suse/PCI-brcmstb-Fix-broken-brcm_pcie_mdio_write-polling.patch + patches.suse/PCI-dwc-endpoint-Fix-advertised-resizable-BAR-size.patch + patches.suse/PCI-qcom-Enable-BDF-to-SID-translation-properly.patch + patches.suse/ALSA-hda-realtek-Re-work-CS35L41-fixups-to-re-use-fo.patch + patches.suse/ALSA-hda-realtek-Add-quirks-for-HP-G11-Laptops-using.patch + patches.suse/ALSA-hda-cs35l41-Set-Channel-Index-correctly-when-sy.patch + patches.suse/ALSA-hda-cs35l41-Support-additional-HP-Envy-Models.patch + patches.suse/ALSA-hda-cs35l41-Support-HP-models-without-_DSD-usin.patch + patches.suse/ALSA-hda-realtek-Add-quirks-for-various-HP-ENVY-mode.patch + patches.suse/ALSA-hda-realtek-Remove-two-HP-Laptops-using-CS35L41.patch + patches.suse/ALSA-hda-realtek-Add-Intel-Reference-board-SSID-in-t.patch + patches.suse/ALSA-ctxfi-avoid-casting-function-pointers.patch + patches.suse/ALSA-aw2-avoid-casting-function-pointers.patch + patches.suse/ALSA-seq-fix-function-cast-warnings.patch + patches.suse/ALSA-usb-audio-Name-feature-ctl-using-output-if-inpu.patch + patches.suse/ALSA-hda-Reuse-for_each_pcm_streams.patch + patches.suse/ALSA-hda-realtek-fix-ALC285-issues-on-HP-Envy-x360-l.patch + patches.suse/ALSA-hda-tas2781-use-dev_dbg-in-system_resume.patch + patches.suse/ALSA-hda-tas2781-add-lock-to-system_suspend.patch + patches.suse/ALSA-hda-tas2781-do-not-reset-cur_-values-in-runtime.patch + patches.suse/ALSA-hda-tas2781-do-not-call-pm_runtime_force_-in-sy.patch + patches.suse/ALSA-hda-tas2781-restore-power-state-after-system_re.patch + patches.suse/ASoC-amd-acp-Add-missing-error-handling-in-sof-mach.patch + patches.suse/ASoC-SOF-amd-Fix-memory-leak-in-amd_sof_acp_probe.patch + patches.suse/ASoC-sh-rz-ssi-Fix-error-message-print.patch + patches.suse/ASoC-meson-aiu-fix-function-pointer-type-mismatch.patch + patches.suse/ASoC-meson-t9015-fix-function-pointer-type-mismatch.patch + patches.suse/ASoC-SOF-Add-some-bounds-checking-to-firmware-data.patch + patches.suse/ASoC-meson-axg-tdm-interface-fix-mclk-setup-without-.patch + patches.suse/ASoC-meson-axg-tdm-interface-add-frame-rate-constrai.patch + patches.suse/ALSA-aaci-Delete-unused-variable-in-aaci_do_suspend.patch + patches.suse/ALSA-hda-realtek-ALC236-fix-volume-mute-mic-mute-LED.patch + patches.suse/ALSA-hda-tas2781-remove-unnecessary-runtime_pm-calls.patch + patches.suse/ALSA-usb-audio-Stop-parsing-channels-bits-when-all-c.patch + patches.suse/perf-pmu-events-powerpc-Update-json-mapfile-with-Power11-PVR.patch + patches.suse/dm-treat-alloc_dax-EOPNOTSUPP-failure-as-non-fatal-c292.patch + patches.suse/dcssblk-handle-alloc_dax-EOPNOTSUPP-failure.patch + patches.suse/modules-wait-do_free_init-correctly.patch + patches.suse/selftests-mm-dont-fail-testsuite-due-to-a-lack-of-hu.patch + patches.suse/selftests-mm-hugetlb_reparenting_test-do-not-unmount.patch + patches.suse/selftests-mm-protection_keys-save-restore-nr_hugepag.patch + patches.suse/nilfs2-fix-failure-to-detect-DAT-corruption-in-btree.patch + patches.suse/nilfs2-prevent-kernel-bug-at-submit_bh_wbc.patch + patches.suse/media-staging-ipu3-imgu-Set-fields-before-media_enti.patch + patches.suse/media-xc4000-Fix-atomicity-violation-in-xc4000_get_f.patch + patches.suse/media-videobuf2-Fix-doc-comment.patch + patches.suse/media-em28xx-annotate-unchecked-call-to-media_device.patch + patches.suse/media-v4l2-tpg-fix-some-memleaks-in-tpg_alloc.patch + patches.suse/media-v4l2-mem2mem-fix-a-memleak-in-v4l2_m2m_registe.patch + patches.suse/media-mc-Add-local-pad-to-pipeline-regardless-of-the.patch + patches.suse/media-nxp-imx8-isi-Check-whether-crossbar-pad-is-non.patch + patches.suse/media-edia-dvbdev-fix-a-use-after-free.patch + patches.suse/media-cedrus-h265-Fix-configuring-bitstream-size.patch + patches.suse/media-sun8i-di-Fix-coefficient-writes.patch + patches.suse/media-sun8i-di-Fix-power-on-off-sequences.patch + patches.suse/media-sun8i-di-Fix-chroma-difference-threshold.patch + patches.suse/media-imx-csc-scaler-fix-v4l2_ctrl_handler-memory-le.patch + patches.suse/media-go7007-add-check-of-return-value-of-go7007_rea.patch + patches.suse/media-pvrusb2-remove-redundant-NULL-check.patch + patches.suse/media-pvrusb2-fix-pvr2_stream_callback-casts.patch + patches.suse/media-i2c-imx290-Fix-IMX920-typo.patch + patches.suse/media-pvrusb2-fix-uaf-in-pvr2_context_set_notify.patch + patches.suse/media-dvb-frontends-avoid-stack-overflow-warnings-wi.patch + patches.suse/media-go7007-fix-a-memleak-in-go7007_load_encoder.patch + patches.suse/media-ttpci-fix-two-memleaks-in-budget_av_attach.patch + patches.suse/media-usbtv-Remove-useless-locks-in-usbtv_video_free.patch + patches.suse/clk-renesas-r8a779g0-Correct-PFC-GPIO-parent-clocks.patch + patches.suse/clk-renesas-r8a779f0-Correct-PFC-GPIO-parent-clock.patch + patches.suse/clk-zynq-Prevent-null-pointer-dereference-caused-by-.patch + patches.suse/clk-hisilicon-hi3519-Release-the-correct-number-of-g.patch + patches.suse/clk-hisilicon-hi3559a-Fix-an-erroneous-devm_kfree.patch + patches.suse/clk-mediatek-mt8135-Fix-an-error-handling-path-in-cl.patch + patches.suse/clk-mediatek-mt8183-Correct-parent-of-CLK_INFRA_SSPM.patch + patches.suse/clk-mediatek-mt7981-topckgen-flag-SGM_REG_SEL-as-cri.patch + patches.suse/clk-keystone-sci-clk-Adding-support-for-non-contiguo.patch + patches.suse/clk-meson-Add-missing-clocks-to-axg_clk_regmaps.patch + patches.suse/clk-qcom-gcc-sdm845-Add-soft-dependency-on-rpmhpd.patch + patches.suse/clk-qcom-dispcc-sdm845-Adjust-internal-GDSC-wait-tim.patch + patches.suse/clk-qcom-gcc-ipq6018-fix-terminating-of-frequency-ta.patch + patches.suse/clk-qcom-gcc-ipq8074-fix-terminating-of-frequency-ta.patch + patches.suse/clk-qcom-gcc-ipq9574-fix-terminating-of-frequency-ta.patch + patches.suse/clk-qcom-mmcc-apq8084-fix-terminating-of-frequency-t.patch + patches.suse/clk-qcom-mmcc-msm8974-fix-terminating-of-frequency-t.patch + patches.suse/clk-Fix-clk_core_get-NULL-dereference.patch + patches.suse/clk-samsung-exynos850-Propagate-SPI-IPCLK-rate-chang.patch + patches.suse/clk-imx-imx8mp-Fix-SAI_MCLK_SEL-definition.patch + patches.suse/mtd-maps-physmap-core-fix-flash-size-larger-than-32-.patch + patches.suse/mtd-rawnand-meson-fix-scrambling-mode-value-in-comma.patch + patches.suse/mtd-rawnand-lpc32xx_mlc-fix-irq-handler-prototype.patch + patches.suse/mtd-rawnand-Fix-and-simplify-again-the-continuous-re.patch + patches.suse/mtd-rawnand-Constrain-even-more-when-continuous-read.patch + patches.suse/of-make-for_each_property_of_node-available-to-to-OF.patch + patches.suse/KVM-s390-only-deliver-the-set-service-event-bits.patch + patches.suse/crypto-xilinx-call-finalize-with-bh-disabled.patch + patches.suse/crypto-qat-change-SLAs-cleanup-flow-at-shutdown.patch + patches.suse/crypto-qat-resolve-race-condition-during-AER-recover.patch + patches.suse/crypto-arm-sha-fix-function-cast-warnings.patch + patches.suse/crypto-ccp-Avoid-discarding-errors-in-psp_send_platf.patch + patches.suse/crypto-qat-remove-unused-macros-in-qat_comp_alg.c.patch + patches.suse/crypto-qat-removed-unused-macro-in-adf_cnv_dbgfs.c.patch + patches.suse/crypto-qat-avoid-division-by-zero.patch + patches.suse/crypto-qat-remove-double-initialization-of-value.patch + patches.suse/crypto-jitter-fix-CRYPTO_JITTERENTROPY-help-text.patch + patches.suse/watchdog-starfive-Check-pm_runtime_enabled-before-de.patch + patches.suse/watchdog-stm32_iwdg-initialize-default-timeout.patch + patches.suse/i3c-dw-Disable-IBI-IRQ-depends-on-hot-join-and-SIR-e.patch # jejb/scsi for-next patches.suse/scsi-mpt3sas-Reload-SBR-without-rebooting-HBA.patch @@ -19434,36 +19966,14 @@ patches.suse/powerpc-perf-power11-performance-monitoring-support.patch patches.suse/powerpc-pseries-Add-a-clear-modifier-to-ibm-pa-pi-fe.patch patches.suse/powerpc-pseries-Set-CPU_FTR_DBELL-according-to-ibm-p.patch - - # tip/tip - patches.suse/x86-sev-Harden-VC-instruction-emulation-somewhat - patches.suse/x86-mm-Fix-memory-encryption-features-advertisement - patches.suse/x86-sme-Fix-memory-encryption-setting-if-enabled-by-default-and- - patches.suse/x86-cpufeatures-Add-SEV-SNP-CPU-feature - patches.suse/x86-speculation-Do-not-enable-Automatic-IBRS-if-SEV-SNP-is-enabl - patches.suse/iommu-amd-Don-t-rely-on-external-callers-to-enable-IOMMU-SNP-sup - patches.suse/x86-sev-Add-SEV-SNP-host-initialization-support - patches.suse/x86-mtrr-Don-t-print-errors-if-MtrrFixDramModEn-is-set-when-SNP- - patches.suse/x86-sev-Add-RMP-entry-lookup-helpers - patches.suse/x86-fault-Add-helper-for-dumping-RMP-entries - patches.suse/x86-traps-Define-RMP-violation-PF-error-code - patches.suse/x86-fault-Dump-RMP-table-information-when-RMP-page-faults-occur - patches.suse/x86-sev-Add-helper-functions-for-RMPUPDATE-and-PSMASH-instructio - patches.suse/x86-sev-Adjust-the-directmap-to-avoid-inadvertent-RMP-faults - patches.suse/crypto-ccp-Define-the-SEV-SNP-commands - patches.suse/crypto-ccp-Add-support-to-initialize-the-AMD-SP-for-SEV-SNP - patches.suse/crypto-ccp-Provide-an-API-to-issue-SEV-and-SNP-commands - patches.suse/x86-sev-Introduce-an-SNP-leaked-pages-list - patches.suse/crypto-ccp-Handle-the-legacy-TMR-allocation-when-SNP-is-enabled - patches.suse/crypto-ccp-Handle-non-volatile-INIT_EX-data-when-SNP-is-enabled - patches.suse/crypto-ccp-Handle-legacy-SEV-commands-when-SNP-is-enabled - patches.suse/iommu-amd-Clean-up-RMP-entries-for-IOMMU-pages-during-SNP-shutdo - patches.suse/crypto-ccp-Add-panic-notifier-for-SEV-SNP-firmware-shutdown-on-k - patches.suse/KVM-SEV-Make-AVIC-backing-VMSA-and-VMCB-memory-allocation-SNP-sa - patches.suse/x86-cpufeatures-Enable-unmask-SEV-SNP-CPU-feature - patches.suse/crypto-ccp-Add-the-SNP_PLATFORM_STATUS-command - patches.suse/crypto-ccp-Add-the-SNP_COMMIT-command - patches.suse/crypto-ccp-Add-the-SNP_SET_CONFIG-command + patches.suse/powerpc-Use-user_mode-macro-when-possible.patch + patches.suse/powerpc-Implement-set_memory_rox.patch + patches.suse/powerpc-kprobes-Handle-error-returned-by-set_memory_.patch + patches.suse/powerpc-pseries-Fix-potential-memleak-in-papr_get_at.patch + patches.suse/powerpc-64s-Move-dcbt-dcbtst-sequence-into-a-macro.patch + patches.suse/powerpc-64s-Use-.machine-power4-around-dcbt.patch + patches.suse/powerpc-Remove-cpu-as-y-completely.patch + patches.suse/powerpc-64s-Fix-get_hugepd_cache_index-build-failure.patch # gregkh/usb usb-next patches.suse/usb-typec-ucsi-Update-connector-cap-and-status.patch @@ -19471,39 +19981,12 @@ # mkp/scsi for-next patches.suse/scsi-lpfc-Replace-deprecated-strncpy-with-strscpy.patch - # git://git.kernel.dk/linux-block.git for-next - patches.suse/blk-mq-don-t-change-nr_hw_queues-and-nr_maps-for-kdu.patch - - # perf/perf-tools-next perf-tools-next - patches.suse/perf-pmu-events-powerpc-Update-json-mapfile-with-Power11-PVR.patch - - # ras/ras edac-for-next - patches.suse/RAS-Introduce-AMD-Address-Translation-Library.patch - patches.suse/EDAC-amd64-Use-new-AMD-Address-Translation-Library.patch - patches.suse/Documentation-RAS-Add-index-and-address-translation-sectio.patch - patches.suse/RAS-AMD-ATL-Add-MI300-support.patch - patches.suse/RAS-AMD-ATL-Fix-array-overflow-in-get_logical_coh_st_fabri.patch - patches.suse/RAS-AMD-ATL-Add-MI300-DRAM-to-normalized-address-translati.patch - patches.suse/RAS-AMD-ATL-Add-MI300-row-retirement-support.patch - patches.suse/RAS-Introduce-a-FRU-memory-poison-manager.patch - patches.suse/RAS-AMD-ATL-Fix-bit-overflow-in-denorm_addr_df4_np2.patch - # masahiroy/linux-kbuild for-next patches.suse/kbuild-Use-fmin-function-alignment-when-available.patch - # bpf/bpf-next - patches.suse/selftests-bpf-trace_helpers.c-do-not-use-poisoned-ty.patch - # out-of-tree patches - patches.suse/block-sed-opal-handle-empty-atoms-when-parsing-respo.patch - patches.suse/uio-introduce-uio_mem_dma_coherent-type.patch - patches.suse/cnic-bnx2-bnx2x-use-uio_mem_dma_coherent.patch - patches.suse/uio_pruss-uio_mem_dma_coherent-conversion.patch - patches.suse/uio_dmem_genirq-uio_mem_dma_coherent-conversion.patch - patches.suse/scsi-target-iscsi-handle-SCSI-immediate-commands.patch - patches.suse/scsi-target-iscsi-don-t-warn-of-R-W-when-no-data.patch - - + patches.suse/raid1-fix-use-after-free-for-original-bio-in-raid1_w.patch + patches.suse/net-sched-Add-module-alias-for-sch_fq_pie.patch ######################################################## # end of sorted patches @@ -19524,12 +20007,6 @@ patches.suse/iwlwifi-cfg-Add-missing-MODULE_FIRMWARE-for-pnvm.patch patches.suse/powerpc-kexec_file-Add-KEXEC_SIG-support.patch patches.suse/firmware-qemu_fw_cfg-Do-not-hard-depend-on-CONFIG_HA.patch - patches.suse/wifi-brcmfmac-Fix-use-after-free-bug-in-brcmf_cfg802.patch - patches.suse/r8169-add-support-for-RTL8126A.patch - patches.suse/net-phy-realtek-add-support-for-RTL8126A-integrated-.patch - patches.suse/net-mdio-add-2.5g-and-5g-related-PMA-speed-constants.patch - patches.suse/net-phy-realtek-use-generic-MDIO-constants.patch - patches.suse/net-phy-realtek-add-5Gbps-support-to-rtl822x_config_.patch patches.suse/0001-lib-stackdepot-Fix-first-entry-having-a-0-handle.patch patches.suse/0002-lib-stackdepot-Move-stack_record-struct-definition-i.patch patches.suse/0003-mm-page_owner-Maintain-own-list-of-stack_records-str.patch @@ -19537,8 +20014,16 @@ patches.suse/0005-mm-page_owner-Display-all-stacks-and-their-count.patch patches.suse/0006-mm-page_owner-Filter-out-stacks-by-a-threshold.patch patches.suse/0007-mm-page_owner-Update-Documentation-regarding-page_ow.patch - patches.suse/mm-mmap-fix-vma_merge-case-7.patch - patches.suse/Bluetooth-btmtk-Add-MODULE_FIRMWARE-for-MT7922.patch + patches.suse/block-sed-opal-handle-empty-atoms-when-parsing-respo.patch + patches.suse/uio-introduce-uio_mem_dma_coherent-type.patch + patches.suse/cnic-bnx2-bnx2x-use-uio_mem_dma_coherent.patch + patches.suse/uio_pruss-uio_mem_dma_coherent-conversion.patch + patches.suse/uio_dmem_genirq-uio_mem_dma_coherent-conversion.patch + patches.suse/scsi-target-iscsi-handle-SCSI-immediate-commands.patch + patches.suse/scsi-target-iscsi-don-t-warn-of-R-W-when-no-data.patch + patches.suse/bus-mhi-host-add-mhi_power_down_no_destroy.patch + patches.suse/net-qrtr-support-suspend-hibernation.patch + patches.suse/wifi-ath11k-support-hibernation.patch ######################################################## # kbuild/module infrastructure fixes @@ -19613,6 +20098,11 @@ # from scratch. +mgorman patches.suse/sched-fair-Revert-update_pick_idlest-Select-group-with-lowest-group_util-when-idle_cpus-are-equal.patch + # Cache line contention reduction pending review upstream + patches.suse/sched-fair-Add-EAS-checks-before-updating-overutilized.patch + patches.suse/sched-fair-Use-helper-function-to-access-rd-overutilized.patch + patches.suse/sched-fair-Combine-EAS-check-with-overutilized-access.patch + ######################################################## # Memory management ######################################################## @@ -19659,7 +20149,7 @@ patches.suse/nfsd-dont-revoke-v4-0-states.patch patches.suse/nfs-access-cache-no-negative.patch patches.suse/NFS-Handle-missing-attributes-in-OPEN-reply.patch - patches.suse/nfsd-fix-RELEASE_LOCKOWNER.patch + patches.suse/NFS-Fix-data-corruption-caused-by-congestion.patch # other @@ -19760,6 +20250,7 @@ ######################################################## # DRM / Graphics ######################################################## + patches.suse/drm-nouveau-don-t-fini-scheduler-before-entity-flush.patch patches.suse/drivers-firmware-skip-simpledrm-if-nvidia-drm.modese.patch patches.suse/Add-parameter-to-disable-simple-framebuffer-devices.patch patches.suse/0001-bsc-1204315-Disable-sysfb-before-creating-simple-fra.patch @@ -19780,6 +20271,8 @@ patches.suse/scsi-lpfc-update-the-obsolete-adapter-list.patch patches.suse/qla2xxx-add-debug-log-for-unmaintained-hw-detected.patch patches.suse/scsi-do-not-put-scsi_common-in-a-separate-module.patch + patches.suse/scsi-qedf-Don-t-process-stag-work-during-unload.patch + patches.suse/scsi-qedf-Wait-for-stag-work-during-unload.patch # CD-ROM patches.suse/scsi-blacklist-add-VMware-ESXi-cdrom-broken-tray-emu.patch @@ -19822,15 +20315,6 @@ ######################################################## patches.suse/b43-missing-firmware-info.patch - patches.suse/wifi-ath11k-rearrange-IRQ-enable-disable-in-reset-pa.patch - patches.suse/wifi-ath11k-remove-MHI-LOOPBACK-channels.patch - patches.suse/wifi-ath11k-do-not-dump-SRNG-statistics-during-resum.patch - patches.suse/wifi-ath11k-fix-warning-on-DMA-ring-capabilities-eve.patch - patches.suse/wifi-ath11k-thermal-don-t-try-to-register-multiple-t.patch - patches.suse/bus-mhi-host-add-mhi_power_down_no_destroy.patch - patches.suse/net-qrtr-support-suspend-hibernation.patch - patches.suse/wifi-ath11k-support-hibernation.patch - ######################################################## # USB ######################################################## @@ -19927,6 +20411,11 @@ # kABI consistency patches ######################################################## patches.kabi/bpf-bpf_prog_aux-kABI-workaround.patch + patches.kabi/bluetooth-hci_uart_register_device-kabi-workaround.patch + patches.kabi/gpu-host1x-kabi-workaround.patch + patches.kabi/stmmac-preserve-KABI-in-stmmac_txq_cfg.patch + patches.kabi/SUNRPC-Fix-RPC-client-cleaned-up-the-freed-pipefs-de.patch + patches.kabi/pNFS-Fix-the-pnfs-block-driver-s-calculation-of-layo.patch ######################################################## # SLE15-SP3 OOT performance patches evaluated but left @@ -19986,30 +20475,30 @@ patches.suse/zram-Replace-bit-spinlocks-with-spinlock_t-for-PREEMPT_RT.patch patches.suse/preempt-Put-preempt_enable-within-an-instrumentation-section.patch patches.suse/kdb-do-not-assume-write-callback-available.patch - patches.suse/printk-Add-NMI-check-to-console_flush_on_panic-and-console_unblank.patch - patches.suse/printk-Consolidate-console-deferred-printing.patch - patches.suse/printk-Add-per-console-suspended-state.patch - patches.suse/printk-Add-non-BKL-console-basic-infrastructure.patch - patches.suse/printk-nobkl-Add-acquire-release-logic.patch - patches.suse/printk-nobkl-Add-buffer-management.patch - patches.suse/printk-nobkl-Add-sequence-handling.patch - patches.suse/printk-nobkl-Add-print-state-functions.patch - patches.suse/printk-nobkl-Add-emit-function-and-callback-functions-for-atomic-printing.patch - patches.suse/printk-nobkl-Introduce-printer-threads.patch - patches.suse/printk-nobkl-Add-printer-thread-wakeups.patch - patches.suse/printk-nobkl-Add-write-context-storage-for-atomic-writes.patch - patches.suse/printk-nobkl-Provide-functions-for-atomic-write-enforcement.patch - patches.suse/printk-nobkl-Stop-threads-on-shutdown-reboot.patch - patches.suse/tty-tty_io-Show-non-BKL-consoles-as-active.patch - patches.suse/proc-consoles-Add-support-for-non-BKL-consoles.patch - patches.suse/kernel-panic-Add-atomic-write-enforcement-to-warn-panic.patch - patches.suse/rcu-Add-atomic-write-enforcement-for-rcu-stalls.patch - patches.suse/printk-Perform-atomic-flush-in-console_flush_on_panic.patch - patches.suse/printk-only-disable-if-actually-unregistered.patch - patches.suse/printk-Add-threaded-printing-support-for-BKL-consoles.patch - patches.suse/printk-replace-local_irq_save-with-local_lock-for-safe-mode.patch - patches.suse/serial-8250-implement-non-BKL-console.patch - patches.suse/printk-Check-only-for-migration-in-printk_deferred_.patch + # patches.suse/printk-Add-NMI-check-to-console_flush_on_panic-and-console_unblank.patch + # patches.suse/printk-Consolidate-console-deferred-printing.patch + # patches.suse/printk-Add-per-console-suspended-state.patch + # patches.suse/printk-Add-non-BKL-console-basic-infrastructure.patch + # patches.suse/printk-nobkl-Add-acquire-release-logic.patch + # patches.suse/printk-nobkl-Add-buffer-management.patch + # patches.suse/printk-nobkl-Add-sequence-handling.patch + # patches.suse/printk-nobkl-Add-print-state-functions.patch + # patches.suse/printk-nobkl-Add-emit-function-and-callback-functions-for-atomic-printing.patch + # patches.suse/printk-nobkl-Introduce-printer-threads.patch + # patches.suse/printk-nobkl-Add-printer-thread-wakeups.patch + # patches.suse/printk-nobkl-Add-write-context-storage-for-atomic-writes.patch + # patches.suse/printk-nobkl-Provide-functions-for-atomic-write-enforcement.patch + # patches.suse/printk-nobkl-Stop-threads-on-shutdown-reboot.patch + # patches.suse/tty-tty_io-Show-non-BKL-consoles-as-active.patch + # patches.suse/proc-consoles-Add-support-for-non-BKL-consoles.patch + # patches.suse/kernel-panic-Add-atomic-write-enforcement-to-warn-panic.patch + # patches.suse/rcu-Add-atomic-write-enforcement-for-rcu-stalls.patch + # patches.suse/printk-Perform-atomic-flush-in-console_flush_on_panic.patch + # patches.suse/printk-only-disable-if-actually-unregistered.patch + # patches.suse/printk-Add-threaded-printing-support-for-BKL-consoles.patch + # patches.suse/printk-replace-local_irq_save-with-local_lock-for-safe-mode.patch + # patches.suse/serial-8250-implement-non-BKL-console.patch + # patches.suse/printk-Check-only-for-migration-in-printk_deferred_.patch patches.suse/drm-i915-Use-preempt_disable-enable_rt-where-recommended.patch patches.suse/drm-i915-Don-t-disable-interrupts-on-PREEMPT_RT-during-atomic-updates.patch patches.suse/drm-i915-Don-t-check-for-atomic-context-on-PREEMPT_RT.patch @@ -20049,6 +20538,82 @@ patches.suse/ASoC-mediatek-mt8186-Remove-unused-mutex.patch patches.suse/signal-Update-the-comment-ptrace_stop.patch + ######################################################## + # preempt-rt backport v6.6.20-rt25 (partial, riscV) + # commit a27814b8cd8f89ad68e29d3d6f8f3b61c65aebf5 + ################################################# + + # Mainline prereqs potentially to risky for SLE 15 SP6 late in the + # development cycle + patches.suse/seqlock-latch-Provide-raw_read_seqcount_latch_retry.patch + patches.suse/time-sched_clock-Provide-sched_clock_noinstr.patch + patches.suse/arm64-io-Always-inline-all-of-__raw_-read-write-bwlq.patch + patches.suse/arm64-arch_timer-Provide-noinstr-sched_clock_read-functions.patch + patches.suse/s390-time-Provide-sched_clock_noinstr.patch + patches.suse/math64-Always-inline-u128-version-of-mul_u64_u64_shr.patch + patches.suse/x86-tsc-Provide-sched_clock_noinstr.patch + patches.suse/sched-clock-Provide-local_clock_noinstr.patch + patches.suse/cpuidle-Use-local_clock_noinstr.patch + patches.suse/serial-8250-Allow-using-ports-higher-than-SERIAL_8250_RUNTIME_UARTS.patch + patches.suse/serial-8250_rt288x-Name-non-standard-divisor-latch-reg.patch + patches.suse/serial-8250_rt288x-Remove-unnecessary-UART_REG_UNMAPPED.patch + patches.suse/8250_men_mcb-Add-clockrate-speed-for-G215-F215-boards.patch + patches.suse/8250_men_mcb-Read-num-ports-from-register-data.patch + patches.suse/8250_men_mcb-Make-UART-config-auto-configurable.patch + patches.suse/tty-serial-8250-Define-earlycon-for-mrvl-mmp-uart.patch + patches.suse/8250_men_mcb-fix-error-handling-in-read_uarts_available_from_reg.patch + patches.suse/serial-8250_bcm7271-improve-bcm7271-8250-port.patch + patches.suse/serial-exar-Add-RS-485-support-for-Sealevel-XR17V35X-based-cards.patch + patches.suse/serial-8250_mtk-Simplify-clock-sequencing-and-runtime-PM.patch + patches.suse/serial-8250-lock-port-for-omap8250_restore_regs.patch + patches.suse/serial-8250-lock-port-for-rx_dma-callback.patch + patches.suse/serial-8250-omap-convert-to-modern-PM-ops.patch + patches.suse/tty-Explicitly-include-correct-DT-includes.patch + patches.suse/serial-arc_uart-simplify-flags-handling-in-arc_serial_rx_chars.patch + patches.suse/serial-omap-serial-remove-flag-from-serial_omap_rdi.patch + patches.suse/serial-drivers-switch-ch-and-flag-to-u8.patch + patches.suse/printk-Reduce-console_unblank-usage-in-unsafe-scenarios.patch + patches.suse/printk-Keep-non-panic-CPUs-out-of-console-lock.patch + patches.suse/printk-Do-not-take-console-lock-for-console_flush_on_panic.patch + patches.suse/printk-Consolidate-console-deferred-printing.patch + patches.suse/printk-Add-per-console-suspended-state.patch + patches.suse/printk-Rename-abandon_console_lock_in_panic-to-other_cpu_in_panic.patch + patches.suse/panic-hide-unused-global-functions.patch + patches.suse/serial-Switch-i2c-drivers-back-to-use-.probe.patch + patches.suse/tty-serial-fsl_lpuart-optimize-the-timer-based-EOP-logic.patch + patches.suse/serial-pl011-set-UART011_CR_RXE-in-pl011_set_termios-after-port-shutdown.patch + patches.suse/serial-Make-uart_remove_one_port-return-void.patch + patches.suse/tty-serial-fsl_lpuart-Check-the-return-value-of-dmaengine_tx_status.patch + patches.suse/serial-core-Start-managing-serial-controllers-to-enable-runtime-PM.patch + patches.suse/serial-core-Don-t-drop-port_mutex-in-serial_core_remove_one_port.patch + patches.suse/serial-core-Fix-probing-serial_base_bus-devices.patch + patches.suse/serial-core-Fix-error-handling-for-serial_core_ctrl_device_add.patch + + # v6.6.20-rt25 + patches.suse/printk-Add-non-BKL-console-basic-infrastructure.patch + patches.suse/printk-nobkl-Add-acquire-release-logic.patch + patches.suse/printk-nobkl-Add-buffer-management.patch + patches.suse/printk-nobkl-Add-sequence-handling.patch + patches.suse/printk-nobkl-Add-print-state-functions.patch + patches.suse/printk-nobkl-Add-emit-function-and-callback-functions-for-atomic-printing.patch + patches.suse/printk-nobkl-Introduce-printer-threads.patch + patches.suse/printk-nobkl-Add-printer-thread-wakeups.patch + patches.suse/printk-nobkl-Add-write-context-storage-for-atomic-writes.patch + patches.suse/printk-nobkl-Provide-functions-for-atomic-write-enforcement.patch + patches.suse/printk-nobkl-Stop-threads-on-shutdown-reboot.patch + patches.suse/tty-tty_io-Show-non-BKL-consoles-as-active.patch + patches.suse/proc-consoles-Add-support-for-non-BKL-consoles.patch + patches.suse/kernel-panic-Add-atomic-write-enforcement-to-warn-panic.patch + patches.suse/rcu-Add-atomic-write-enforcement-for-rcu-stalls.patch + patches.suse/printk-Perform-atomic-flush-in-console_flush_on_panic.patch + patches.suse/printk-only-disable-if-actually-unregistered.patch + patches.suse/printk-Add-threaded-printing-support-for-BKL-consoles.patch + patches.suse/printk-replace-local_irq_save-with-local_lock-for-safe-mode.patch + patches.suse/serial-8250-implement-non-BKL-console.patch + patches.suse/printk-Update-the-printk-series.patch + patches.suse/printk-nbcon-move-locked_port-flag-to-struct-uart_port.patch + patches.suse/drm-i915-guc-Consider-also-RCU-depth-in-busy-loop.patch + ######################################################## # SLERT-specific patches ######################################################## diff --git a/source-timestamp b/source-timestamp index 60a4c6f..4599d6e 100644 --- a/source-timestamp +++ b/source-timestamp @@ -1,3 +1,3 @@ -2024-03-11 17:43:09 +0000 -GIT Revision: 0d817874d18eca2fc379364350f5d8f656a563b1 +2024-03-22 16:18:33 +0000 +GIT Revision: 1025e3e919d23ae8b2a3e5c5ad95f6804136e0e9 GIT Branch: ALP-current-RT diff --git a/supported.conf b/supported.conf index f78eb87..8c45c46 100644 --- a/supported.conf +++ b/supported.conf @@ -5059,7 +5059,7 @@ -!optional drivers/usb/typec/mux/pi3usb30532 - drivers/usb/typec/qcom-pmic-typec - drivers/usb/typec/rt1719 # SP6-NEED-REVIEW -- drivers/usb/typec/stusb160x + drivers/usb/typec/stusb160x - drivers/usb/typec/tcpm/fusb302 +base drivers/usb/typec/tcpm/tcpci - drivers/usb/typec/tcpm/tcpci_maxim