diff --git a/check-for-config-changes b/check-for-config-changes index c92fe14..451315a 100644 --- a/check-for-config-changes +++ b/check-for-config-changes @@ -21,12 +21,14 @@ declare -a IGNORED_CONFIGS_RE=( 'GCC_VERSION' 'G*CC[0-9]*_NO_[A-Z_]*' 'HAVE_[A-Z]*_COMPILER' + 'HAVE_RUST' 'HAVE_SHADOW_CALL_STACK' 'LD_VERSION' 'OBJTOOL' 'PAHOLE_HAS_[A-Z0-9_]*' 'PAHOLE_VERSION' 'RISCV_ISA_[A-Z_]*' + 'RUSTC_SUPPORTS_[A-Z0-9_]*' 'TOOLCHAIN_HAS_[A-Z_]*' 'TOOLCHAIN_NEEDS_[A-Z_]*' 'TOOLS_SUPPORT_[A-Z_]*' diff --git a/config.sh b/config.sh index 5c32ad3..28c42b9 100644 --- a/config.sh +++ b/config.sh @@ -15,11 +15,10 @@ LIVEPATCH=livepatch LIVEPATCH_RT=1 # buildservice projects to build the kernel against OBS_PROJECT=SUSE:ALP:Source:Standard:Core:1.0:Build -OBS_PROJECT_ARM=openSUSE:Factory:ARM IBS_PROJECT=SUSE:ALP:Source:Standard:Core:1.0:Build # Bugzilla info BUGZILLA_SERVER="apibugzilla.suse.com" -BUGZILLA_PRODUCT="ALP" +BUGZILLA_PRODUCT="SUSE Linux Enterprise Micro 6.0" SPLIT_OPTIONAL=No SUPPORTED_MODULES_CHECK=Yes # build documentation in HTML format diff --git a/config.tar.bz2 b/config.tar.bz2 index f666d6e..f0d8a49 100644 --- a/config.tar.bz2 +++ b/config.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3305d41c5afe5909df0e7dcd6091feceda207fa4558a047af1cb91216e226b66 -size 96340 +oid sha256:2d6aec48bc1f8bb1e92332592753e1f4b2063a81e3f6b4e42e784ee2428d0e28 +size 96353 diff --git a/kabi.tar.bz2 b/kabi.tar.bz2 index 5791d93..e85e26c 100644 --- a/kabi.tar.bz2 +++ b/kabi.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:78e01e62911ba2fb7ed338614d27afef28d39d31f457daf0afaa152abaa98748 -size 6906694 +oid sha256:7f3b5f61ee82ba5be946efc7839bf62864068640d3384642cdbb7c9bff17704c +size 6906200 diff --git a/kernel-binary.spec.in b/kernel-binary.spec.in index 11ea8c4..aabefcb 100644 --- a/kernel-binary.spec.in +++ b/kernel-binary.spec.in @@ -135,7 +135,7 @@ ExclusiveArch: do_not_build %define cpu_arch_flavor %cpu_arch/%build_flavor %if 0%{?_project:1} && ( %(echo %_project | grep -Ex -f %_sourcedir/release-projects | grep -vc ^PTF) || %(echo %_project | grep -Ec "^(Devel:)?Kernel:") ) - %define klp_symbols 1 + %define klp_ipa_clones 1 %endif # Define some CONFIG variables as rpm macros as well. (rpm cannot handle @@ -145,7 +145,7 @@ ExclusiveArch: do_not_build %define split_extra ("%CONFIG_MODULES" == "y" && "%CONFIG_SUSE_KERNEL_SUPPORTED" == "y") %if "%CONFIG_MODULES" != "y" - %define klp_symbols 0 + %define klp_ipa_clones 0 %endif %global certs %( space="" ; for f in %_sourcedir/*.crt; do \ @@ -614,7 +614,6 @@ relink ../../linux-%{kernelrelease}%{variant}-obj/"%cpu_arch_flavor" /usr/src/li %dir /usr/src/linux-obj %dir /usr/src/linux-obj/%cpu_arch %ghost /usr/src/linux-obj/%cpu_arch_flavor -%exclude %obj_install_dir/%cpu_arch_flavor/Symbols.list %if %generate_compile_commands %exclude %obj_install_dir/%cpu_arch_flavor/compile_commands.json %endif @@ -653,17 +652,14 @@ static, unlike the %{patch_package}--flavor package names. %dir %modules_dir %endif -%if 0%{?klp_symbols} && "%livepatch" != "" +%if 0%{?klp_ipa_clones} && "%livepatch" != "" && "%CONFIG_LIVEPATCH_IPA_CLONES" == "y" %package %{livepatch}-devel Summary: Kernel symbols file used during kGraft patch development Group: System/Kernel -Provides: klp-symbols = %version %description %{livepatch}-devel -This package brings a file named Symbols.list, which contains a list of all -kernel symbols and its respective kernel object . This list is to be used by -the klp-convert tool, which helps livepatch developers by enabling automatic -symbol resolution. +This package brings ipa-clones files, which are used to to track +set of functions where a code from another function can eventually occur. %files %{livepatch}-devel -f livepatch-files %endif @@ -992,14 +988,9 @@ while true; do fi done -# Generate list of symbols that are used to create kernel livepatches -%if 0%{?klp_symbols} - %_sourcedir/klp-symbols . Symbols.list - - %if %generate_compile_commands - # Generate compile_commands.json - make compile_commands.json - %endif +%if 0%{?klp_ipa_clones} && %generate_compile_commands + # Generate compile_commands.json + make compile_commands.json %endif %install @@ -1188,27 +1179,22 @@ if [ %CONFIG_MODULES = y ]; then mkdir -p %rpm_install_dir/%cpu_arch/%build_flavor cp Module.symvers %rpm_install_dir/%cpu_arch/%build_flavor - # List of symbols that are used to generate kernel livepatches - %if 0%{?klp_symbols} - cp Symbols.list %rpm_install_dir/%cpu_arch/%build_flavor - echo %obj_install_dir/%cpu_arch/%build_flavor/Symbols.list > %my_builddir/livepatch-files.no_dir - + # List of ipa-clones that are used to to track set of functions where a code from another function can eventually occur. + %if 0%{?klp_ipa_clones} && "%CONFIG_LIVEPATCH_IPA_CLONES" == "y" %if %generate_compile_commands cp compile_commands.json %rpm_install_dir/%cpu_arch/%build_flavor echo %obj_install_dir/%cpu_arch/%build_flavor/compile_commands.json >> %my_builddir/livepatch-files.no_dir %endif - %if "%CONFIG_LIVEPATCH_IPA_CLONES" == "y" - find %kernel_build_dir -name "*.ipa-clones" ! -size 0 | sed -e 's|^%kernel_build_dir/||' | sort > ipa-clones.list - cp ipa-clones.list %rpm_install_dir/%cpu_arch/%build_flavor - echo %obj_install_dir/%cpu_arch/%build_flavor/ipa-clones.list >> %my_builddir/livepatch-files.no_dir - tar -C %kernel_build_dir \ + find %kernel_build_dir -name "*.ipa-clones" ! -size 0 | sed -e 's|^%kernel_build_dir/||' | sort > ipa-clones.list + cp ipa-clones.list %rpm_install_dir/%cpu_arch/%build_flavor + echo %obj_install_dir/%cpu_arch/%build_flavor/ipa-clones.list >> %my_builddir/livepatch-files.no_dir + tar -C %kernel_build_dir \ %if ! 0%{?suse_version} || 0%{?suse_version} >= 1500 - --verbatim-files-from \ + --verbatim-files-from \ %endif - -T ipa-clones.list -cf- | tar -C %rpm_install_dir/%cpu_arch/%build_flavor -xvf- - cat ipa-clones.list | sed -e 's|^|%obj_install_dir/%cpu_arch/%build_flavor/|' >> %my_builddir/livepatch-files.no_dir - %endif + -T ipa-clones.list -cf- | tar -C %rpm_install_dir/%cpu_arch/%build_flavor -xvf- + cat ipa-clones.list | sed -e 's|^|%obj_install_dir/%cpu_arch/%build_flavor/|' >> %my_builddir/livepatch-files.no_dir %endif # Table of types used in exported symbols (for modversion debugging). @@ -1403,7 +1389,7 @@ shopt -s nullglob dotglob fi } | add_dirs_to_filelist >%my_builddir/kernel-devel.files ( cd %buildroot ; find .%obj_install_dir/%cpu_arch_flavor -type f ; ) | \ -sed -e 's/^[.]//' | grep -v -e '[.]ipa-clones$' -e '/Symbols[.]list$' -e '/ipa-clones[.]list$'| \ +sed -e 's/^[.]//' | grep -v -e '[.]ipa-clones$' -e '/ipa-clones[.]list$'| \ add_dirs_to_filelist >> %my_builddir/kernel-devel.files { echo %ghost /boot/%image diff --git a/kernel-rt.changes b/kernel-rt.changes index 96700bd..9a6f53f 100644 --- a/kernel-rt.changes +++ b/kernel-rt.changes @@ -1,3 +1,6015 @@ +------------------------------------------------------------------- +Sat Dec 7 09:37:47 CET 2024 - tiwai@suse.de + +- ASoC: Intel: avs: da7219: Remove suspend_pre() and resume_post() + (stable-fixes). +- ALSA: hda/realtek: Add support for Samsung Galaxy Book3 360 + (NP730QFG) (stable-fixes). +- ALSA: hda/realtek: Enable mute and micmute LED on HP ProBook + 430 G8 (stable-fixes). +- ALSA: usb-audio: add mixer mapping for Corsair HS80 + (stable-fixes). +- ALSA: hda/conexant: fix Z60MR100 startup pop issue + (stable-fixes). +- commit 8c25a0a + +------------------------------------------------------------------- +Sat Dec 7 09:34:01 CET 2024 - tiwai@suse.de + +- drm/v3d: Enable Performance Counters before clearing them + (git-fixes). +- drm/sti: Add __iomem for mixer_dbg_mxn's parameter (git-fixes). +- dma-fence: Use kernel's sort for merging fences (git-fixes). +- dma-fence: Fix reference leak on fence merge failure path + (git-fixes). +- ASoC: mediatek: mt8188-mt6359: Remove hardcoded dmic codec + (git-fixes). +- ASoC: SOF: ipc3-topology: fix resource leaks in + sof_ipc3_widget_setup_comp_dai() (git-fixes). +- ALSA: usb-audio: Fix a DMA to stack memory bug (git-fixes). +- regmap: detach regmap from dev on regmap_exit (git-fixes). +- spi: mpc52xx: Add cancel_work_sync before module remove + (git-fixes). +- mmc: core: Further prevent card detect during shutdown + (git-fixes). +- commit 87e627e + +------------------------------------------------------------------- +Fri Dec 6 16:27:36 CET 2024 - tbogendoerfer@suse.de + +- net/mlx5e: kTLS, Fix incorrect page refcounting (CVE-2024-53138 + bsc#1234223). +- ice: protect XDP configuration with a mutex (CVE-2024-46765 + bsc#1230807). +- sch/netem: fix use after free in netem_dequeue (CVE-2024-46800 + bsc#1230827). +- commit c9f3783 + +------------------------------------------------------------------- +Fri Dec 6 15:48:44 CET 2024 - jgross@suse.com + +- vp_vdpa: fix id_table array not null terminated error + (CVE-2024-53110 bsc#1234085). +- commit ffc9457 + +------------------------------------------------------------------- +Fri Dec 6 14:33:58 CET 2024 - tbogendoerfer@suse.de + +- net/mlx5: fs, lock FTE when checking if active (CVE-2024-53121 + bsc#1234078). +- mlxsw: spectrum_ipip: Fix memory leak when changing remote + IPv6 address (CVE-2024-50252 bsc#1233201). +- commit 06c045b + +------------------------------------------------------------------- +Fri Dec 6 13:18:57 CET 2024 - tiwai@suse.de + +- netdevsim: copy addresses for both in and out paths (git-fixes). +- commit daf115e + +------------------------------------------------------------------- +Fri Dec 6 12:49:22 CET 2024 - tiwai@suse.de + +- can: j1939: j1939_session_new(): fix skb reference counting + (git-fixes). +- can: mcp251xfd: mcp251xfd_get_tef_len(): work around erratum + DS80000789E 6 (git-fixes). +- can: ems_usb: ems_usb_rx_err(): fix {rx,tx}_errors statistics + (git-fixes). +- can: sun4i_can: sun4i_can_err(): fix {rx,tx}_errors statistics + (git-fixes). +- can: sja1000: sja1000_err(): fix {rx,tx}_errors statistics + (git-fixes). +- can: hi311x: hi3110_can_ist(): fix {rx,tx}_errors statistics + (git-fixes). +- can: ifi_canfd: ifi_canfd_handle_lec_err(): fix {rx,tx}_errors + statistics (git-fixes). +- can: m_can: m_can_handle_lec_err(): fix {rx,tx}_errors + statistics (git-fixes). +- can: hi311x: hi3110_can_ist(): fix potential use-after-free + (git-fixes). +- can: sun4i_can: sun4i_can_err(): call can_change_state() + even if cf is NULL (git-fixes). +- can: c_can: c_can_handle_bus_err(): update statistics if skb + allocation fails (git-fixes). +- can: dev: can_set_termination(): allow sleeping GPIOs + (git-fixes). +- HID: wacom: fix when get product name maybe null pointer + (git-fixes). +- watchdog: rti: of: honor timeout-sec property (git-fixes). +- watchdog: mediatek: Make sure system reset gets asserted in + mtk_wdt_restart() (git-fixes). +- watchdog: apple: Actually flush writes after requesting watchdog + restart (git-fixes). +- iTCO_wdt: mask NMI_NOW bit for update_no_reboot_bit() call + (git-fixes). +- commit 535e699 + +------------------------------------------------------------------- +Fri Dec 6 09:25:08 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Correct GPIO polarity on brcm BT nodes (git-fixes) +- commit ed87dba + +------------------------------------------------------------------- +Fri Dec 6 09:23:49 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: remove num-slots property from (git-fixes) +- commit cb47197 + +------------------------------------------------------------------- +Fri Dec 6 09:20:06 CET 2024 - iivanov@suse.de + +- kABI: Restore exported __arm_smccc_sve_check (git-fixes) +- commit 3817c3a + +------------------------------------------------------------------- +Thu Dec 5 22:16:43 CET 2024 - dsterba@suse.com + +- drm/i915/hdcp: Add encoder check in intel_hdcp_get_capability (CVE-2024-53051 bsc#1233547) +- commit 5262489 + +------------------------------------------------------------------- +Thu Dec 5 21:21:56 CET 2024 - dsterba@suse.com + +- mctp i2c: handle NULL header address (CVE-2024-53043 bsc#1233523) +- commit 5a81634 + +------------------------------------------------------------------- +Thu Dec 5 21:19:36 CET 2024 - dsterba@suse.com + +- wifi: iwlwifi: mvm: fix 6 GHz scan construction (CVE-2024-53055 bsc#1233550) +- commit c2d5beb + +------------------------------------------------------------------- +Thu Dec 5 19:33:08 CET 2024 - dsterba@suse.com + +- drm/mediatek: Fix potential NULL dereference in mtk_crtc_destroy() (CVE-2024-53056 bsc#1233568) +- commit 95cef70 + +------------------------------------------------------------------- +Thu Dec 5 19:16:12 CET 2024 - dsterba@suse.com + +- Bluetooth: btnxpuart: Resolve TX timeout error in power save stress test (bsc#1230557) +- commit 9ca14b5 + +------------------------------------------------------------------- +Thu Dec 5 19:14:45 CET 2024 - dsterba@suse.com + +- Bluetooth: btnxpuart: Fix random crash seen while removing driver (CVE-2024-46680 bsc#1230557) +- commit 3831431 + +------------------------------------------------------------------- +Thu Dec 5 18:57:57 CET 2024 - dsterba@suse.com + +- net: dsa: fix netdev_priv() dereference before check on non-DSA netdevice events (CVE-2024-26596 bsc#1220355) +- commit 4861dc8 + +------------------------------------------------------------------- +Thu Dec 5 18:44:20 CET 2024 - dsterba@suse.com + +- net: hns3: fix kernel crash when uninstalling driver (CVE-2024-50296 bsc#1233485) +- commit 6e41fd9 + +------------------------------------------------------------------- +Thu Dec 5 17:13:01 CET 2024 - msuchanek@suse.de + +- powerpc/fadump: Move fadump_cma_init to setup_arch() after + initmem_init() (bsc#1215199). +- powerpc/fadump: Refactor and prepare fadump_cma_init for late + init (bsc#1215199). +- powerpc/pseries: Use correct data types from pseries_hp_errorlog + struct (bsc#1215199). +- powerpc/vdso: Inconditionally use CFUNC macro (bsc#1215199). +- powerpc/64s: Fix unnecessary copy to 0 when kernel is booted + at address 0 (bsc#1215199). +- commit d36d28e + +------------------------------------------------------------------- +Thu Dec 5 17:05:26 CET 2024 - iivanov@suse.de + +- bpf, arm64: Remove garbage frame for struct_ops trampoline (git-fixes) +- commit e1353aa + +------------------------------------------------------------------- +Thu Dec 5 17:03:24 CET 2024 - iivanov@suse.de + +- arm64: dts: allwinner: pinephone: Add mount matrix to accelerometer (git-fixes) +- commit 6a9e851 + +------------------------------------------------------------------- +Thu Dec 5 17:01:59 CET 2024 - iivanov@suse.de + +- arm64: dts: freescale: imx8mp-verdin: Fix SD regulator startup delay (git-fixes) +- commit c644bc4 + +------------------------------------------------------------------- +Thu Dec 5 17:00:48 CET 2024 - iivanov@suse.de + +- arm64: dts: freescale: imx8mm-verdin: Fix SD regulator startup delay (git-fixes) +- commit c8b850b + +------------------------------------------------------------------- +Thu Dec 5 16:59:21 CET 2024 - iivanov@suse.de + +- arm64: tls: Fix context-switching of tpidrro_el0 when kpti is enabled (git-fixes) +- commit dd2d99e + +------------------------------------------------------------------- +Thu Dec 5 16:51:05 CET 2024 - iivanov@suse.de + +- arm64: fix .data.rel.ro size assertion when CONFIG_LTO_CLANG (git-fixes) +- commit b16f3b1 + +------------------------------------------------------------------- +Thu Dec 5 16:48:22 CET 2024 - iivanov@suse.de + +- arm64: smccc: Remove broken support for SMCCCv1.3 SVE discard hint (git-fixes) +- commit 10c58e2 + +------------------------------------------------------------------- +Thu Dec 5 16:44:41 CET 2024 - iivanov@suse.de + +- arm64: smccc: replace custom COUNT_ARGS() & CONCATENATE() (git-fixes) +- commit 75545f9 + +------------------------------------------------------------------- +Thu Dec 5 15:58:34 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: remove orphaned pinctrl-names from pinephone (git-fixes) +- commit cc13a0d + +------------------------------------------------------------------- +Thu Dec 5 15:57:02 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix LED triggers on rk3308-roc-cc (git-fixes) +- commit a83a13f + +------------------------------------------------------------------- +Thu Dec 5 15:55:49 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Remove #cooling-cells from fan on Theobroma (git-fixes) +- commit ad38ac0 + +------------------------------------------------------------------- +Thu Dec 5 15:54:32 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Remove undocumented supports-emmc property (git-fixes) +- commit 2a5a31d + +------------------------------------------------------------------- +Thu Dec 5 15:53:20 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix bluetooth properties on Rock960 boards (git-fixes) +- commit 8dd2fe4 + +------------------------------------------------------------------- +Thu Dec 5 15:51:59 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix bluetooth properties on rk3566 box demo (git-fixes) +- commit af29eab + +------------------------------------------------------------------- +Thu Dec 5 15:50:48 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: fix i2c2 pinctrl-names property on (git-fixes) +- commit bffe233 + +------------------------------------------------------------------- +Thu Dec 5 15:49:40 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix reset-gpios property on brcm BT nodes (git-fixes) +- commit 34a0cb0 + +------------------------------------------------------------------- +Thu Dec 5 15:48:14 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix wakeup prop names on PineNote BT node (git-fixes) +- commit 600dbb4 + +------------------------------------------------------------------- +Thu Dec 5 15:33:16 CET 2024 - msuchanek@suse.de + +- powerpc/kexec: Fix return of uninitialized variable + (bsc#1194869). +- powerpc/pseries: Fix KVM guest detection for disabling + hardlockup detector (bsc#1194869). +- powerpc/pseries: Fix dtl_access_lock to be a rw_semaphore + (bsc#1194869). +- powerpc/mm/fault: Fix kfence page fault reporting (bsc#1194869). +- powerpc/powernv: Free name on error in opal_event_init() + (bsc#1194869). +- powerpc/atomic: Use YZ constraints for DS-form instructions + (bsc#1194869). +- powerpc/mm: Fix boot warning with hugepages and + CONFIG_DEBUG_VIRTUAL (bsc#1194869). +- powerpc/mm: Fix boot crash with FLATMEM (bsc#1194869). +- commit 290216a + +------------------------------------------------------------------- +Thu Dec 5 12:34:48 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Remove hdmi's 2nd interrupt on rk3328 (git-fixes) +- commit 428c79d + +------------------------------------------------------------------- +Thu Dec 5 12:27:44 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix rt5651 compatible value on (git-fixes) +- commit 3b24a1d + +------------------------------------------------------------------- +Thu Dec 5 12:26:35 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix rt5651 compatible value on rk3399-eaidk-610 (git-fixes) +- commit eac58a3 + +------------------------------------------------------------------- +Thu Dec 5 12:24:21 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8-ss-vpu: Fix imx8qm VPU IRQs (git-fixes) +- commit 225491d + +------------------------------------------------------------------- +Thu Dec 5 12:23:08 CET 2024 - iivanov@suse.de + +- bpf, arm64: Fix address emission with tag-based KASAN enabled (git-fixes) +- commit a6cd1e5 + +------------------------------------------------------------------- +Thu Dec 5 12:05:42 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Add DTS for FriendlyARM NanoPi R2S Plus (git-fixes) +- commit 8261b13 + +------------------------------------------------------------------- +Thu Dec 5 12:01:15 CET 2024 - iivanov@suse.de + +- arm64: tegra: Move AGX Orin nodes to correct location (git-fixes) +- commit 8c00b3f + +------------------------------------------------------------------- +Thu Dec 5 11:57:36 CET 2024 - iivanov@suse.de + +- arm64: dts: imx93: add nvmem property for eqos (git-fixes) +- commit 05664af + +------------------------------------------------------------------- +Thu Dec 5 11:54:15 CET 2024 - iivanov@suse.de + +- arm64: dts: imx93: add nvmem property for fec1 (git-fixes) +- commit 428b0c1 + +------------------------------------------------------------------- +Thu Dec 5 11:52:31 CET 2024 - iivanov@suse.de + +- arm64: dts: imx93: add ocotp node (git-fixes) +- commit 9645cb0 + +------------------------------------------------------------------- +Thu Dec 5 11:47:21 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8qxp: Add VPU subsystem file (git-fixes) +- commit 1bf0ccc + +------------------------------------------------------------------- +Wed Dec 4 13:01:43 CET 2024 - ailiop@suse.com + +- nfsd: remove unsafe BUG_ON from set_change_info (bsc#1234121). +- commit 6c0f124 + +------------------------------------------------------------------- +Wed Dec 4 11:28:27 CET 2024 - sjaeckel@suse.de + +- tcp: Fix use-after-free of nreq in reqsk_timer_handler() + (CVE-2024-50154 bsc#1233070). +- commit 297942f + +------------------------------------------------------------------- +Wed Dec 4 11:02:35 CET 2024 - tiwai@suse.de + +- f2fs: get out of a repeat loop when getting a locked data page + (bsc#1234011). +- commit dfe277f + +------------------------------------------------------------------- +Wed Dec 4 10:26:17 CET 2024 - pjakobsson@suse.de + +- drm: Expand max DRM device number to full MINORBITS (jsc#PED-11580). +- commit d737023 + +------------------------------------------------------------------- +Wed Dec 4 10:25:43 CET 2024 - pjakobsson@suse.de + +- accel: Use XArray instead of IDR for minors (jsc#PED-11580). +- commit 013fbaa + +------------------------------------------------------------------- +Wed Dec 4 10:25:07 CET 2024 - pjakobsson@suse.de + +- drm: Use XArray instead of IDR for minors (jsc#PED-11580). +- commit b04b73a + +------------------------------------------------------------------- +Wed Dec 4 10:19:48 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: fix a UBSAN warning in DML2.1 (bsc#1233115 CVE-2024-50177) +- commit 2f6004f + +------------------------------------------------------------------- +Wed Dec 4 00:56:19 CET 2024 - henrique.carvalho@suse.com + +- smb: client: Fix use-after-free of network namespace + (bsc#1233642 CVE-2024-53095). + Also applies: + smb: client: fix warning in generic_ip_connect() +- commit 97b3d9a + +------------------------------------------------------------------- +Tue Dec 3 23:04:22 CET 2024 - jack@suse.cz + +- jbd2: fix kernel-doc for j_transaction_overhead_buffers + (bsc#1234042). +- commit 20d4b12 + +------------------------------------------------------------------- +Tue Dec 3 20:21:07 CET 2024 - dsterba@suse.com + +- sctp: set sk_state back to CLOSED if autobind fails in sctp_listen_start (CVE-2024-49944 bsc#1232166) +- commit c7bd304 + +------------------------------------------------------------------- +Tue Dec 3 20:10:02 CET 2024 - dsterba@suse.com + +- netfilter: nf_tables: prevent nf_skb_duplicated corruption (CVE-2024-49952 bsc#1232157) +- commit d0f307b + +------------------------------------------------------------------- +Tue Dec 3 18:17:41 CET 2024 - jack@suse.cz + +- jbd2: Move j_transaction_overhead_buffers into a hole + (bsc#1234042). +- commit 1c42745 + +------------------------------------------------------------------- +Tue Dec 3 18:10:57 CET 2024 - mhocko@suse.com + +- Update + patches.suse/drm-amd-display-Adjust-VSDB-parser-for-replay-featur.patch + (stable-fixes CVE-2024-53108 bsc#1234081). +- Update + patches.suse/fs-ntfs3-Fixed-overflow-check-in-mi_enum_attr.patch + (bsc#1233207 CVE-2024-27407 bsc#1224429). +- Update + patches.suse/ima-fix-buffer-overrun-in-ima_eventdigest_init_commo.patch + (git-fixes CVE-2024-53106 bsc#1234083). +- Update + patches.suse/keys-Fix-overwrite-of-key-expiration-on-instantiation.patch + (git-fixes CVE-2024-36031 bsc#1225713). +- Update + patches.suse/media-uvcvideo-Skip-parsing-frames-of-type-UVC_VS_UN.patch + (git-fixes CVE-2024-53104 bsc#1234025). +- Update + patches.suse/net-relax-socket-state-check-at-accept-time.patch + (git-fixes CVE-2024-36484 bsc#1226872). +- Update + patches.suse/nvme-multipath-defer-partition-scanning.patch + (bsc#122824 git-fixes CVE-2024-53093 bsc#1233640). +- Update + patches.suse/nvme-tcp-avoid-race-between-queue_lock-lock-and-dest.patch + (git-fixes CVE-2024-53100 bsc#1233771). +- Update + patches.suse/ocfs2-uncache-inode-which-has-failed-entering-the-group.patch + (git-fixes CVE-2024-53112 bsc#1234087). +- Update + patches.suse/scsi-mpi3mr-Avoid-memcpy-field-spanning-write-WARNING.patch + (git-fixes CVE-2024-36920 bsc#1225768). +- Update + patches.suse/scsi-pm80xx-Set-phy-enable_completion-only-when-we-wait-for-it.patch + (git-fixes CVE-2024-47666 bsc#1231453). +- Update + patches.suse/tcp-Fix-refcnt-handling-in-__inet_hash_connect.patch + (git-fixes CVE-2024-26864 bsc#1223112). +- Update + patches.suse/tracing-osnoise-Use-a-cpumask-to-know-what-threads-are-kthreads.patch + (git-fixes CVE-2024-46788 bsc#1230817). +- Update + patches.suse/tracing-timerlat-Move-hrtimer_init-to-timerlat_fd-open.patch + (git-fixes CVE-2024-26703 bsc#1222423). +- Update + patches.suse/x86-CPU-AMD-Clear-virtualized-VMLOAD-VMSAVE-on-Zen4-client + (bsc#1233443 CVE-2024-53114 bsc#1234072). +- commit 420eea1 + +------------------------------------------------------------------- +Tue Dec 3 17:42:21 CET 2024 - sjaeckel@suse.de + +- Bluetooth: SCO: Fix UAF on sco_sock_timeout (CVE-2024-50125 + bsc#1232928). +- Refresh + patches.suse/Bluetooth-ISO-Fix-UAF-on-iso_sock_timeout.patch. + Revert Bluetooth-ISO-Fix-UAF-on-iso_sock_timeout.patch to the upstream + version of the patch. + The reverted version was a mix of 1bf4470a and 246b435a, since they were + accidentally identified as two different commits doing the same changes. + The changes are indeed mostly the same, but to different files. +- commit 5725fe5 + +------------------------------------------------------------------- +Tue Dec 3 17:06:26 CET 2024 - mkoutny@suse.com + +- cgroup/bpf: only cgroup v2 can be attached by bpf programs + (bsc#1234108). +- Revert "cgroup: Fix memory leak caused by missing + cgroup_bpf_offline" (bsc#1234108). +- commit 6a48bcc + +------------------------------------------------------------------- +Tue Dec 3 16:27:05 CET 2024 - ptesarik@suse.com + +- kexec_file: fix elfcorehdr digest exclusion when + CONFIG_CRASH_HOTPLUG=y (git-fixes). +- commit 1b2a54a + +------------------------------------------------------------------- +Tue Dec 3 14:36:00 CET 2024 - mkoutny@suse.com + +- signal: restore the override_rlimit logic (CVE-2024-50271 + bsc#1233460). +- ucounts: fix counter leak in inc_rlimit_get_ucounts() + (bsc#1233460). +- commit 232c2a6 + +------------------------------------------------------------------- +Tue Dec 3 14:26:42 CET 2024 - ohering@suse.de + +- hv_sock: Initializing vsk->trans to NULL to prevent a dangling pointer (git-fixes). +- commit 109e508 + +------------------------------------------------------------------- +Tue Dec 3 14:13:52 CET 2024 - mkoutny@suse.com + +- posix-cpu-timers: Clear TICK_DEP_BIT_POSIX_TIMER on clone + (bsc#1234098). +- commit 362812c + +------------------------------------------------------------------- +Tue Dec 3 14:01:19 CET 2024 - mkoutny@suse.com + +- signal: Replace BUG_ON()s (bsc#1234093). +- commit dad9530 + +------------------------------------------------------------------- +Tue Dec 3 13:20:50 CET 2024 - mfranc@suse.cz + +- dm cache: fix out-of-bounds access to the dirty bitset when + resizing (CVE-2024-50279 bsc#1233468). +- commit 2080b22 + +------------------------------------------------------------------- +Tue Dec 3 11:51:24 CET 2024 - mfranc@suse.cz + +- ipv4: ip_tunnel: Fix suspicious RCU usage warning in + ip_tunnel_init_flow() (CVE-2024-53042 bsc#1233540). +- commit 6649f10 + +------------------------------------------------------------------- +Tue Dec 3 10:21:53 CET 2024 - vliaskovitis@suse.com + +- intel_idle: fix ACPI _CST matching for newer Xeon platforms + (bsc#1231630). +- commit 0f23b16 + +------------------------------------------------------------------- +Tue Dec 3 10:19:21 CET 2024 - vliaskovitis@suse.com + +- intel_idle: add Granite Rapids Xeon support (bsc#1231630). +- commit 111abfc + +------------------------------------------------------------------- +Tue Dec 3 09:42:55 CET 2024 - tbogendoerfer@suse.de + +- Update config files. + Enabled IDPF for ARM64 (bsc#1221309) +- commit adee356 + +------------------------------------------------------------------- +Tue Dec 3 08:53:54 CET 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: validate fake register spill/fill precision + backtracking logic (bsc#1232823 CVE-2023-52920). +- bpf: handle fake register spill to stack with BPF_ST_MEM + instruction (bsc#1232823 CVE-2023-52920). +- commit 52cdf87 + +------------------------------------------------------------------- +Tue Dec 3 08:52:17 CET 2024 - neelx@suse.com + +- btrfs: fix a NULL pointer dereference when failed to start a + new trasacntion (CVE-2024-49868 bsc#1232272). +- commit cc68ee3 + +------------------------------------------------------------------- +Tue Dec 3 07:24:38 CET 2024 - jslaby@suse.cz + +- PCI: j721e: Deassert PERST# after a delay of PCIE_T_PVPERL_MS + milliseconds (git-fixes). +- PCI: Add T_PVPERL macro (git-fixes). +- commit 664a849 + +------------------------------------------------------------------- +Mon Dec 2 21:56:21 CET 2024 - vbabka@suse.cz + +- mm/thp: fix deferred split unqueue naming and locking + (CVE-2024-53079 bsc#1233570). +- commit b50ea3e + +------------------------------------------------------------------- +Mon Dec 2 21:16:07 CET 2024 - vliaskovitis@suse.com + +- cxl: downgrade a warning message to debug level in + cxl_probe_component_regs() (bsc#1229165). +- commit 388d64b + +------------------------------------------------------------------- +Mon Dec 2 17:16:15 CET 2024 - dwagner@suse.de + +- nvme-fabrics: fix kernel crash while shutting down controller + (git-fixes). +- nvme-pci: reverse request order in nvme_queue_rqs (git-fixes). +- nvme-pci: fix freeing of the HMB descriptor table (git-fixes). +- nvme/host: Fix RCU list traversal to use SRCU primitive + (git-fixes). +- commit 9f9c907 + +------------------------------------------------------------------- +Mon Dec 2 17:10:36 CET 2024 - dwagner@suse.de + +- nvme-loop: flush off pending I/O while shutting down loop + controller (git-fixes). +- commit 85bcc27 + +------------------------------------------------------------------- +Mon Dec 2 17:09:17 CET 2024 - dwagner@suse.de + +- Rename to + patches.suse/nvme-multipath-defer-partition-scanning.patch. (git-fixes bsc#122824) +- commit 79fcf69 + +------------------------------------------------------------------- +Mon Dec 2 17:06:20 CET 2024 - dwagner@suse.de + +- nvme: tcp: avoid race between queue_lock lock and destroy + (git-fixes). +- commit 0d6537a + +------------------------------------------------------------------- +Mon Dec 2 16:49:45 CET 2024 - dwagner@suse.de + +- Update + patches.suse/scsi-qla2xxx-Update-version-to-10.02.09.300-k.patch + (bsc#1228850 jsc#PED-9943 jsc#PED-11316). + This is the latest greatest version of qla2xxx. Add the jira + reference so that it is tracked. +- commit 8eff9b2 + +------------------------------------------------------------------- +Mon Dec 2 16:48:06 CET 2024 - dwagner@suse.de + +- scsi: lpfc: Copyright updates for 14.4.0.6 patches (bsc#1233241 + jsc#PED-9943). +- scsi: lpfc: Update lpfc version to 14.4.0.6 (bsc#1233241 + jsc#PED-9943). +- scsi: lpfc: Change lpfc_nodelist nlp_flag member into a bitmask + (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Remove NLP_RELEASE_RPI flag from nodelist structure + (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Prevent NDLP reference count underflow in + dev_loss_tmo callback (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Add cleanup of nvmels_wq after HBA reset + (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Check SLI_ACTIVE flag in FDMI cmpl before submitting + follow up FDMI (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Update lpfc_els_flush_cmd() to check for SLI_ACTIVE + before BSG flag (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Call lpfc_sli4_queue_unset() in restart and rmmod + paths (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Check devloss callbk done flag for potential stale + NDLP ptrs (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Modify CGN warning signal calculation based on + EDC response (bsc#1233241 jsc#PED-9943). +- commit 566c7c9 + +------------------------------------------------------------------- +Mon Dec 2 15:46:30 CET 2024 - vbabka@suse.cz + +- mm: always initialise folio->_deferred_list (CVE-2024-53079 + bsc#1233570 prerequisity). +- commit 3c832a9 + +------------------------------------------------------------------- +Mon Dec 2 15:07:02 CET 2024 - osalvador@suse.de + +- mm/hugetlb: fix nodes huge page allocation when there are + surplus pages (bsc#1234012). +- commit 9fde6f7 + +------------------------------------------------------------------- +Mon Dec 2 15:00:04 CET 2024 - oneukum@suse.com + +- Input: xpad - add support for MSI Claw A1M (git-fixes). +- commit d37ec4c + +------------------------------------------------------------------- +Mon Dec 2 14:58:20 CET 2024 - oneukum@suse.com + +- Input: xpad - add support for 8BitDo Ultimate 2C Wireless + Controller (git-fixes). +- commit 0d7bec2 + +------------------------------------------------------------------- +Mon Dec 2 14:55:18 CET 2024 - oneukum@suse.com + +- Input: xpad - add support for Machenike G5 Pro Controller + (git-fixes). +- commit f071586 + +------------------------------------------------------------------- +Mon Dec 2 14:51:08 CET 2024 - oneukum@suse.com + +- Input: xpad - sort xpad_device by vendor and product ID + (git-fixes). +- Refresh + patches.suse/Input-xpad-add-support-for-Snakebyte-GAMEPADs.patch. +- commit 5f46bd9 + +------------------------------------------------------------------- +Mon Dec 2 14:49:37 CET 2024 - oneukum@suse.com + +- Input: xpad - add GameSir T4 Kaleid Controller support + (git-fixes). +- commit d80239f + +------------------------------------------------------------------- +Mon Dec 2 14:48:03 CET 2024 - oneukum@suse.com + +- Input: xpad - add GameSir VID for Xbox One controllers + (git-fixes). +- commit 993ca75 + +------------------------------------------------------------------- +Mon Dec 2 14:46:07 CET 2024 - oneukum@suse.com + +- Input: xpad - fix support for some third-party controllers + (git-fixes). +- commit 1d5b082 + +------------------------------------------------------------------- +Mon Dec 2 14:42:05 CET 2024 - oneukum@suse.com + +- Input: xpad - spelling fixes for "Xbox" (git-fixes). +- Refresh + patches.suse/Input-xpad-add-HyperX-Clutch-Gladiate-Support.patch. +- Refresh + patches.suse/Input-xpad-add-Lenovo-Legion-Go-controllers.patch. +- Refresh patches.suse/Input-xpad-add-PXN-V900-support.patch. +- Refresh + patches.suse/Input-xpad-add-additional-HyperX-Controller-Identifi.patch. +- Refresh + patches.suse/Input-xpad-add-support-for-ASUS-ROG-RAIKIRI.patch. +- Refresh + patches.suse/Input-xpad-add-support-for-Snakebyte-GAMEPADs.patch. +- commit 15a1c29 + +------------------------------------------------------------------- +Mon Dec 2 14:26:37 CET 2024 - jack@suse.cz + +- jbd2: fix soft lockup in journal_finish_inode_data_buffers() + (bsc#1234046). +- commit f32d01d + +------------------------------------------------------------------- +Mon Dec 2 14:26:05 CET 2024 - jack@suse.cz + +- jbd2: correct the printing of write_flags in + jbd2_write_superblock() (bsc#1234045). +- commit fe6bf4e + +------------------------------------------------------------------- +Mon Dec 2 14:25:44 CET 2024 - jack@suse.cz + +- jbd2: fix potential data lost in recovering journal raced with + synchronizing fs bdev (bsc#1234044). +- commit 5fbdfed + +------------------------------------------------------------------- +Mon Dec 2 14:25:43 CET 2024 - vbabka@suse.cz + +- mm: convert free_transhuge_folio() to + folio_undo_large_rmappable() (CVE-2024-53079 bsc#1233570 + prerequisity). +- commit 4e7d9f6 + +------------------------------------------------------------------- +Mon Dec 2 14:22:23 CET 2024 - jack@suse.cz + +- jbd2: avoid memleak in jbd2_journal_write_metadata_buffer + (bsc#1234043). +- commit ffe100a + +------------------------------------------------------------------- +Mon Dec 2 14:21:38 CET 2024 - jack@suse.cz + +- jbd2: precompute number of transaction descriptor blocks + (bsc#1234042). +- commit 3ed7ebf + +------------------------------------------------------------------- +Mon Dec 2 14:20:57 CET 2024 - jack@suse.cz + +- jbd2: make jbd2_journal_get_max_txn_bufs() internal + (bsc#1234041). +- commit ad2f96f + +------------------------------------------------------------------- +Mon Dec 2 14:20:21 CET 2024 - jack@suse.cz + +- jbd2: avoid mount failed when commit block is partial submitted + (bsc#1234040). +- commit 7226fe5 + +------------------------------------------------------------------- +Mon Dec 2 14:19:05 CET 2024 - jack@suse.cz + +- jbd2: avoid infinite transaction commit loop (bsc#1234039). +- commit ad1118f + +------------------------------------------------------------------- +Mon Dec 2 14:07:12 CET 2024 - jack@suse.cz + +- ext4: fix unttached inode after power cut with orphan file + feature enabled (bsc#1234009). +- commit 3e057c0 + +------------------------------------------------------------------- +Mon Dec 2 13:08:10 CET 2024 - tbogendoerfer@suse.de + +- net: arc: fix the device for dma_map_single/dma_unmap_single + (CVE-2024-50295 bsc#1233484). +- net: vertexcom: mse102x: Fix possible double free of TX skb + (CVE-2024-50276 bsc#1233465). +- net: enetc: allocate vf_state during PF probes (CVE-2024-50298 + bsc#1233487). +- net: stmmac: TSO: Fix unbalanced DMA map/unmap for non-paged + SKB data (CVE-2024-53058 bsc#1233552). +- commit ae38000 + +------------------------------------------------------------------- +Mon Dec 2 12:40:06 CET 2024 - jroedel@suse.de + +- x86/CPU/AMD: Clear virtualized VMLOAD/VMSAVE on Zen4 client + (bsc#1233443). +- commit 5beba61 + +------------------------------------------------------------------- +Mon Dec 2 10:48:58 CET 2024 - nik.borisov@suse.com + +- x86: Increase brk randomness entropy for 64-bit systems (git-fixes). +- commit 7e88dd7 + +------------------------------------------------------------------- +Mon Dec 2 10:48:31 CET 2024 - nik.borisov@suse.com + +- x86/resctrl: Remove hard-coded memory bandwidth limit (git-fixes). +- Refresh patches.suse/x86-resctrl-Annotate-get_mem_config-functions-as-__init.patch. +- commit 6888d66 + +------------------------------------------------------------------- +Mon Dec 2 09:56:24 CET 2024 - vkarasulli@suse.de + +- Update + patches.suse/ASoC-dapm-fix-bounds-checker-error-in-dapm_widget_li.patch + (git-fixes CVE-2024-53045 bsc#1233524). +- Update + patches.suse/ASoC-stm32-spdifrx-fix-dma-channel-release-in-stm32_.patch + (git-fixes CVE-2024-50292 bsc#1233481). +- Update + patches.suse/HID-core-zero-initialize-the-report-buffer.patch + (git-fixes CVE-2024-50302 bsc#1233491). +- Update + patches.suse/USB-serial-io_edgeport-fix-use-after-free-in-debug-p.patch + (git-fixes CVE-2024-50267 bsc#1233456). +- Update patches.suse/can-bcm-Fix-UAF-in-bcm_proc_show.patch + (bsc#1012628 CVE-2023-52922 bsc#1233977). +- Update + patches.suse/drm-amdgpu-add-missing-size-check-in-amdgpu_debugfs_.patch + (stable-fixes CVE-2024-50282 bsc#1233471). +- Update + patches.suse/drm-amdgpu-fix-possible-UAF-in-amdgpu_cs_pass1.patch + (jsc#PED-3527 jsc#PED-5475 jsc#PED-6068 jsc#PED-6070 + jsc#PED-6116 jsc#PED-6120 jsc#PED-5065 jsc#PED-5477 jsc#PED-5511 + jsc#PED-6041 jsc#PED-6069 jsc#PED-6071 CVE-2023-52921 + bsc#1233452). +- Update + patches.suse/drm-amdgpu-prevent-NULL-pointer-dereference-if-ATIF-.patch + (git-fixes CVE-2024-53060 bsc#1233554). +- Update + patches.suse/firmware-arm_scmi-Fix-slab-use-after-free-in-scmi_bu.patch + (git-fixes CVE-2024-53068 bsc#1233561). +- Update + patches.suse/fs-Fix-uninitialized-value-issue-in-from_kuid-and-from_kgid.patch + (git-fixes CVE-2024-53101 bsc#1233769). +- Update + patches.suse/i40e-fix-race-condition-by-adding-filter-s-intermedi.patch + (git-fixes CVE-2024-53088 bsc#1233580). +- Update + patches.suse/iio-gts-helper-Fix-memory-leaks-for-the-error-path-o.patch + (git-fixes CVE-2024-53076 bsc#1233567). +- Update + patches.suse/io_uring-rw-fix-missing-NOWAIT-check-for-O_DIRECT-st.patch + (git-fixes CVE-2024-53052 bsc#1233548). +- Update + patches.suse/media-ar0521-don-t-overflow-when-checking-PLL-values.patch + (git-fixes CVE-2024-53081 bsc#1233572). +- Update + patches.suse/media-cx24116-prevent-overflows-on-SNR-calculus.patch + (git-fixes CVE-2024-50290 bsc#1233479). +- Update + patches.suse/media-dvbdev-prevent-the-risk-of-out-of-memory-acces.patch + (git-fixes CVE-2024-53063 bsc#1233557). +- Update + patches.suse/media-s5p-jpeg-prevent-buffer-overflows.patch + (git-fixes CVE-2024-53061 bsc#1233555). +- Update + patches.suse/media-v4l2-tpg-prevent-the-risk-of-a-division-by-zer.patch + (git-fixes CVE-2024-50287 bsc#1233476). +- Update + patches.suse/nfs-Fix-KMSAN-warning-in-decode_getfattr_attrs.patch + (git-fixes CVE-2024-53066 bsc#1233560). +- Update + patches.suse/ocfs2-remove-entry-once-instead-of-null-ptr-dereference-in-ocfs2_xa_remove.patch + (git-fixes CVE-2024-50265 bsc#1233454). +- Update + patches.suse/platform-x86-amd-pmc-Detect-when-STB-is-not-availabl.patch + (git-fixes CVE-2024-53072 bsc#1233564). +- Update + patches.suse/posix-clock-posix-clock-Fix-unbalanced-locking-in-pc.patch + (CVE-2024-50195 bsc#1233103 CVE-2024-50210 bsc#1233097). +- Update + patches.suse/scsi-wd33c93-Don-t-use-stale-scsi_pointer-value.patch + (git-fixes CVE-2024-50026 bsc#1231952). +- Update + patches.suse/security-keys-fix-slab-out-of-bounds-in-key_task_per.patch + (git-fixes CVE-2024-50301 bsc#1233490). +- Update + patches.suse/tpm-Lock-TPM-chip-in-tpm_pm_suspend-first.patch + (bsc#1082555 git-fixes CVE-2024-53085 bsc#1233577). +- Update + patches.suse/usb-musb-sunxi-Fix-accessing-an-released-usb-phy.patch + (git-fixes CVE-2024-50269 bsc#1233458). +- Update + patches.suse/usb-typec-fix-potential-out-of-bounds-in-ucsi_ccg_up.patch + (git-fixes CVE-2024-50268 bsc#1233457). +- Update + patches.suse/wifi-iwlwifi-mvm-Fix-response-handling-in-iwl_mvm_se.patch + (git-fixes CVE-2024-53059 bsc#1233553). +- Update + patches.suse/wifi-iwlwifi-mvm-don-t-leak-a-link-on-AP-removal.patch + (git-fixes CVE-2024-53074 bsc#1233566). +- commit 5a024cd + +------------------------------------------------------------------- +Mon Dec 2 09:42:05 CET 2024 - nik.borisov@suse.com + +- x86/tdx: Enable CPU topology enumeration (git-fixes). +- commit cf1674b + +------------------------------------------------------------------- +Mon Dec 2 09:41:44 CET 2024 - nik.borisov@suse.com + +- x86/tdx: Dynamically disable SEPT violations from causing #VEs (git-fixes). +- commit 29f8884 + +------------------------------------------------------------------- +Mon Dec 2 09:40:56 CET 2024 - nik.borisov@suse.com + +- x86/tdx: Rename tdx_parse_tdinfo() to tdx_setup() (git-fixes). +- commit a66f7df + +------------------------------------------------------------------- +Mon Dec 2 09:40:31 CET 2024 - nik.borisov@suse.com + +- x86/tdx: Introduce wrappers to read and write TD metadata (git-fixes). +- commit 182660e + +------------------------------------------------------------------- +Mon Dec 2 09:36:47 CET 2024 - nik.borisov@suse.com + +- x86/microcode/intel: Remove unnecessary cache writeback and invalidation (git-fixes). +- commit dc97c33 + +------------------------------------------------------------------- +Mon Dec 2 09:31:59 CET 2024 - nik.borisov@suse.com + +- x86/traps: move kmsan check after instrumentation_begin (git-fixes). +- commit 788cc4b + +------------------------------------------------------------------- +Mon Dec 2 09:30:48 CET 2024 - nik.borisov@suse.com + +- x86: fix off-by-one in access_ok() (git-fixes). +- commit ada1011 + +------------------------------------------------------------------- +Mon Dec 2 09:30:26 CET 2024 - nik.borisov@suse.com + +- x86/syscall: Avoid memcpy() for ia32 syscall_get_arguments() (git-fixes). +- commit a421b7f + +------------------------------------------------------------------- +Sun Dec 1 09:31:13 CET 2024 - tiwai@suse.de + +- tools/power turbostat: Fix trailing '\n' parsing (git-fixes). +- modpost: remove incorrect code in do_eisa_entry() (git-fixes). +- rtc: ab-eoz9: don't fail temperature reads on undervoltage + notification (git-fixes). +- rtc: rzn1: fix BCD to rtc_time conversion errors (git-fixes). +- rtc: check if __rtc_read_time was successful in + rtc_timer_do_work() (git-fixes). +- rtc: abx80x: Fix WDT bit position of the status register + (git-fixes). +- rtc: bbnsm: add remove hook (git-fixes). +- rtc: st-lpc: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- tty: ldsic: fix tty_ldisc_autoload sysctl's proc_handler + (git-fixes). +- serial: 8250: omap: Move pm_runtime_get_sync (git-fixes). +- commit 003de2e + +------------------------------------------------------------------- +Sat Nov 30 10:34:31 CET 2024 - tiwai@suse.de + +- USB: chaoskey: Fix possible deadlock chaoskey_list_lock + (git-fixes). +- commit bc5d0b3 + +------------------------------------------------------------------- +Sat Nov 30 10:33:34 CET 2024 - tiwai@suse.de + +- ALSA: hda: Show the codec quirk info at probing (stable-fixes). +- ALSA: hda/realtek: Set PCBeep to default value for ALC274 + (stable-fixes). +- ALSA: usb-audio: Fix out of bounds reads when finding clock + sources (stable-fixes). +- ALSA: pcm: Add sanity NULL check for the default mmap fault + handler (stable-fixes). +- commit 0da3d44 + +------------------------------------------------------------------- +Sat Nov 30 10:27:17 CET 2024 - tiwai@suse.de + +- drm/amd/display: Fix null check for pipe_ctx->plane_state in + hwss_setup_dpp (git-fixes). +- drm/amd/display: Fix null check for pipe_ctx->plane_state in + dcn20_program_pipe (git-fixes). +- drm/amd: Add some missing straps from NBIO 7.11.0 (git-fixes). +- ASoC: SOF: ipc3-topology: Convert the topology pin index to + ALH dai index (git-fixes). +- ASoC: amd: yc: Fix for enabling DMIC on acp6x via _DSD entry + (git-fixes). +- ALSA: ump: Fix evaluation of MIDI 1.0 FB info (git-fixes). +- ALSA: hda/realtek: Update ALC225 depop procedure (git-fixes). +- ALSA: usb-audio: Fix potential out-of-bound accesses for Extigy + and Mbox devices (git-fixes). +- ALSA: hda/realtek: Update ALC256 depop procedure (git-fixes). +- ALSA: ac97: bus: Fix the mistake in the comment (git-fixes). +- =?UTF-8?q?iio:=20accel:=20kxcjk-1013:=20Remove=20redundan?= + =?UTF-8?q?t=20I=C2=B2C=20ID?= (git-fixes). +- iio: Fix fwnode_handle in __fwnode_iio_channel_get_by_name() + (git-fixes). +- iio: accel: kx022a: Fix raw read format (git-fixes). +- iio: gts: fix infinite loop for gain_to_scaletables() + (git-fixes). +- iio: gts: Fix uninitialized symbol 'ret' (git-fixes). +- ad7780: fix division by zero in ad7780_write_raw() (git-fixes). +- iio: adc: ad7923: Fix buffer overflow for tx_buf and ring_xfer + (git-fixes). +- comedi: Flush partial mappings in error case (git-fixes). +- goldfish: Fix unused const variable 'goldfish_pipe_acpi_match' + (git-fixes). +- iio: adc: ad7606: Fix typo in the driver name (git-fixes). +- iio: light: al3010: Fix an error handling path in al3010_probe() + (git-fixes). +- misc: apds990x: Fix missing pm_runtime_disable() (git-fixes). +- firmware_loader: Fix possible resource leak in + fw_log_firmware_info() (git-fixes). +- usb: dwc3: gadget: Fix looping of queued SG entries (git-fixes). +- usb: dwc3: gadget: Fix checking for number of TRBs left + (git-fixes). +- Revert "usb: gadget: composite: fix OS descriptors w_value + logic" (git-fixes). +- usb: ehci-spear: fix call balance of sehci clk handling routines + (git-fixes). +- USB: serial: ftdi_sio: Fix atomicity violation in + get_serial_info() (git-fixes). +- usb: dwc3: gadget: Add missing check for single port RAM in + TxFIFO resizing logic (git-fixes). +- usb: musb: Fix hardware lockup on first Rx endpoint request + (git-fixes). +- usb: xhci: Fix TD invalidation under pending Set TR Dequeue + (git-fixes). +- USB: chaoskey: fail open after removal (git-fixes). +- usb: yurex: make waiting on yurex_write interruptible + (git-fixes). +- usb: using mutex lock and supporting O_NONBLOCK flag in + iowarrior_read() (git-fixes). +- apparmor: fix 'Do simple duplicate message elimination' + (git-fixes). +- apparmor: test: Fix memory leak for aa_unpack_strdup() + (git-fixes). +- apparmor: use kvfree_sensitive to free data->data (git-fixes). +- commit 875afee + +------------------------------------------------------------------- +Fri Nov 29 16:59:51 CET 2024 - nmorey@suse.com + +- RDMA/hns: Disassociate mmap pages for all uctx when HW is being reset (git-fixes) +- commit 41e9c5b + +------------------------------------------------------------------- +Fri Nov 29 16:27:58 CET 2024 - dfaggioli@suse.com + +- bpf, vsock: Drop static vsock_bpf_prot initialization (git-fixes). +- commit 939d649 + +------------------------------------------------------------------- +Fri Nov 29 16:26:26 CET 2024 - dfaggioli@suse.com + +- vsock: Update msg_count on read_skb() (git-fixes). +- commit fce5f41 + +------------------------------------------------------------------- +Fri Nov 29 16:23:46 CET 2024 - dfaggioli@suse.com + +- vsock: Update rx_bytes on read_skb() (git-fixes, bsc#1233320, + CVE-2024-50169). +- commit acfc5df + +------------------------------------------------------------------- +Fri Nov 29 16:19:13 CET 2024 - dfaggioli@suse.com + +- bpf, sockmap: SK_DROP on attempted redirects of unsupported af_vsock (git-fixes). +- commit 8db08f8 + +------------------------------------------------------------------- +Fri Nov 29 13:04:50 CET 2024 - mgorman@suse.de + +- mm: revert "mm: shmem: fix data-race in shmem_getattr()" + (CVE-2024-50228, bsc#1233204, git fixes (mm/shmem)). + CVE is likely a non-issue while the fix introduces real bugs. +- commit b77756a + +------------------------------------------------------------------- +Fri Nov 29 09:29:22 CET 2024 - tiwai@suse.de + +- Bluetooth: MGMT: Fix slab-use-after-free Read in + set_powered_sync (git-fixes). +- net: mdio-ipq4019: add missing error check (git-fixes). +- net: usb: lan78xx: Fix refcounting and autosuspend on invalid + WoL configuration (git-fixes). +- net: usb: lan78xx: Fix memory leak on device unplug by freeing + PHY device (git-fixes). +- net: usb: lan78xx: Fix double free issue with interrupt buffer + allocation (git-fixes). +- spi: Fix acpi deferred irq probe (git-fixes). +- spi: atmel-quadspi: Fix register name in verbose logging + function (git-fixes). +- power: supply: rt9471: Use IC status regfield to report real + charger status (git-fixes). +- power: supply: rt9471: Fix wrong WDT function regfield + declaration (git-fixes). +- power: supply: bq27xxx: Fix registers of bq27426 (git-fixes). +- power: supply: core: Remove might_sleep() from + power_supply_put() (git-fixes). +- commit 0e6f9cb + +------------------------------------------------------------------- +Thu Nov 28 23:22:45 CET 2024 - krisman@suse.de + +- pktgen: use cpus_read_lock() in pg_net_init() (bsc#1230558 + CVE-2024-46681). +- commit ad3c579 + +------------------------------------------------------------------- +Thu Nov 28 17:10:36 CET 2024 - dsterba@suse.com + +- posix-clock: posix-clock: Fix unbalanced locking in pc_clock_settime() (CVE-2024-50195 bsc#1233103) +- commit 6192694 + +------------------------------------------------------------------- +Thu Nov 28 16:33:22 CET 2024 - tiwai@suse.de + +- media: av7110: fix a spectre vulnerability (CVE-2024-50289 + bsc#1233478). +- commit 2969047 + +------------------------------------------------------------------- +Thu Nov 28 12:51:05 CET 2024 - tiwai@suse.de + +- Drop OCFS2 patch causing a regression (bsc#1233255) + Deleted: + patches.suse/ocfs2-fix-the-la-space-leak-when-unmounting-an-ocfs2-volume.patch +- commit 2a24fc4 + +------------------------------------------------------------------- +Thu Nov 28 10:35:25 CET 2024 - sjaeckel@suse.de + +- net: fix out-of-bounds access in ops_init (CVE-2024-36883 + bsc#1225725). +- commit f1b40e8 + +------------------------------------------------------------------- +Thu Nov 28 09:15:07 CET 2024 - tiwai@suse.de + +- efi/memattr: Ignore table if the size is clearly bogus + (bsc#1231465). +- commit c92a68e + +------------------------------------------------------------------- +Thu Nov 28 08:32:59 CET 2024 - tiwai@suse.de + +- thermal: int3400: Fix reading of current_uuid for active policy + (git-fixes). +- gpio: exar: set value when external pull-up or pull-down is + present (git-fixes). +- gpio: zevio: Add missed label initialisation (git-fixes). +- commit a62e144 + +------------------------------------------------------------------- +Thu Nov 28 08:30:58 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Apply quirk for Medion E15433 (bsc#1233298). +- commit 9a99613 + +------------------------------------------------------------------- +Wed Nov 27 17:49:09 CET 2024 - tbogendoerfer@suse.de + +- ice: fix crash on probe for DPLL enabled E810 LOM + (CVE-2024-53048 bsc#1233721). +- commit 5f7ca77 + +------------------------------------------------------------------- +Wed Nov 27 17:46:22 CET 2024 - nmorey@suse.com + +- Update references for patches.suse/RDMA-siw-Add-sendpage_ok-check-to-disable-MSG_SPLICE.patch (bsc#1233641 CVE-2024-53094) +- commit 1f528cf + +------------------------------------------------------------------- +Wed Nov 27 11:51:43 CET 2024 - osalvador@suse.de + +- mm/hugetlb: fix missing hugetlb_lock for resv uncharge + (bsc#1224548 CVE-2024-36000). +- commit 92c1bc7 + +------------------------------------------------------------------- +Wed Nov 27 11:50:37 CET 2024 - osalvador@suse.de + +- mm/huge_memory: don't unpoison huge_zero_folio (bsc#1227842 + CVE-2024-40914). +- commit 14bb799 + +------------------------------------------------------------------- +Wed Nov 27 11:30:16 CET 2024 - tbogendoerfer@suse.de + +- net: xfrm: preserve kabi for xfrm_state (bsc#1233754). +- idpf: avoid vport access in idpf_get_link_ksettings + (CVE-2024-50274 bsc#1233463). +- xfrm: Export symbol xfrm_dev_state_delete (bsc#1233754). +- xfrm: Fix unregister netdevice hang on hardware offload + (bsc#1233754). +- commit 8c4cfeb + +------------------------------------------------------------------- +Wed Nov 27 08:40:26 CET 2024 - tiwai@suse.de + +- hwmon: (tps23861) Fix reporting of negative temperatures + (git-fixes). +- i3c: master: svc: Fix pm_runtime_set_suspended() with runtime + pm enabled (git-fixes). +- i3c: master: Fix miss free init_dyn_addr at + i3c_master_put_i3c_addrs() (git-fixes). +- PCI: Fix reset_method_store() memory leak (git-fixes). +- PCI: rockchip-ep: Fix address translation unit programming + (git-fixes). +- PCI: keystone: Add link up check to ks_pcie_other_map_bus() + (git-fixes). +- PCI: keystone: Set mode as Root Complex for "ti,keystone-pcie" + compatible (git-fixes). +- PCI: endpoint: Clear secondary (not primary) EPC in + pci_epc_remove_epf() (git-fixes). +- commit 29a3aa9 + +------------------------------------------------------------------- +Tue Nov 26 18:06:28 CET 2024 - tiwai@suse.de + +- Move kabi netfilter fix into patches.kabi +- commit 6c82cf8 + +------------------------------------------------------------------- +Tue Nov 26 15:34:51 CET 2024 - farosas@suse.de + +- virtio_net: Add hash_key_length check (CVE-2024-53082 + bsc#1233573). +- commit 1273e47 + +------------------------------------------------------------------- +Tue Nov 26 13:40:37 CET 2024 - sjaeckel@suse.de + +- net: relax socket state check at accept time (git-fixes). +- netfilter: nf_tables: missing iterator type in lookup walk + (git-fixes). +- commit 180e959 + +------------------------------------------------------------------- +Tue Nov 26 13:36:06 CET 2024 - tbogendoerfer@suse.de + +- net: hns3: fix a deadlock problem when config TC during + resetting (CVE-2024-44995 bsc#1230231). +- commit e1fa968 + +------------------------------------------------------------------- +Tue Nov 26 13:11:16 CET 2024 - msuchanek@suse.de + +- KVM: PPC: Book3S HV: Avoid returning to nested hypervisor on + pending doorbells (bsc#1215199). +- KVM: PPC: Book3S HV: Stop using vc->dpdes for nested KVM guests + (bsc#1215199). +- Revert "KVM: PPC: Book3S HV Nested: Stop forwarding all HFUs + to L1" (bsc#1215199). +- commit d27c0c3 + +------------------------------------------------------------------- +Tue Nov 26 11:46:07 CET 2024 - tiwai@suse.de + +- mailbox: arm_mhuv2: clean up loop in get_irq_chan_comb() + (git-fixes). +- pinctrl: k210: Undef K210_PC_DEFAULT (git-fixes). +- pinctrl: qcom: spmi: fix debugfs drive strength (git-fixes). +- pinctrl: zynqmp: drop excess struct member description + (git-fixes). +- lib: string_helpers: silence snprintf() output truncation + warning (git-fixes). +- fbdev: sh7760fb: Fix a possible memory leak in + sh7760fb_alloc_mem() (git-fixes). +- Input: hycon-hy46xx - add missing dependency on REGMAP_I2C + (git-fixes). +- Input: hideep - add missing dependency on REGMAP_I2C + (git-fixes). +- commit 17f846a + +------------------------------------------------------------------- +Tue Nov 26 11:40:04 CET 2024 - msuchanek@suse.de + +- KVM: PPC: Book3S HV: remove unused varible (bsc#1194869). +- commit 932ea3b + +------------------------------------------------------------------- +Tue Nov 26 11:21:25 CET 2024 - sjaeckel@suse.de + +- netrom: fix possible dead-lock in nr_rt_ioctl() (CVE-2024-38589 + bsc#1226748). +- commit 0e7a285 + +------------------------------------------------------------------- +Tue Nov 26 11:02:02 CET 2024 - msuchanek@suse.de + +- tpm: Lock TPM chip in tpm_pm_suspend() first (bsc#1082555 + git-fixes). +- commit 4594f81 + +------------------------------------------------------------------- +Tue Nov 26 10:59:27 CET 2024 - sjaeckel@suse.de + +- kABI fix for netfilter: nft_set_pipapo: walk over current view + on netlink dump (CVE-2024-27017 bsc#1223733). +- commit 2be46c1 + +------------------------------------------------------------------- +Tue Nov 26 09:34:44 CET 2024 - vbabka@suse.cz + +- Update references for + patches.suse/mm-resolve-faulty-mmap_region-error-path-behaviour.patch + (git-fixes CVE-2024-53096 bsc#1233756). +- commit 6c0d091 + +------------------------------------------------------------------- +Tue Nov 26 09:11:53 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Enable speaker pins for Medion E15443 + platform (bsc#1233298). +- ALSA: hda/realtek: Fix Internal Speaker and Mic boost of + Infinix Y4 Max (bsc#1233298). +- commit dd8caae + +------------------------------------------------------------------- +Tue Nov 26 09:10:22 CET 2024 - tiwai@suse.de + +- Move upstreamed patches into sorted section +- commit b72de8f + +------------------------------------------------------------------- +Tue Nov 26 08:25:42 CET 2024 - vbabka@suse.cz + +- kabi, mm: refactor arch_calc_vm_flag_bits() and arm64 MTE + handling (git-fixes kabi). +- mm: refactor arch_calc_vm_flag_bits() and arm64 MTE handling + (git-fixes). +- commit f31b0e3 + +------------------------------------------------------------------- +Mon Nov 25 21:57:38 CET 2024 - vbabka@suse.cz + +- mm: resolve faulty mmap_region() error path behaviour + (git-fixes). +- commit 84c4dfc + +------------------------------------------------------------------- +Mon Nov 25 18:24:50 CET 2024 - vbabka@suse.cz + +- mm: refactor map_deny_write_exec() (git-fixes). +- commit 8c66a90 + +------------------------------------------------------------------- +Mon Nov 25 18:20:13 CET 2024 - vbabka@suse.cz + +- mm: unconditionally close VMAs on error (git-fixes). +- commit f81f7df + +------------------------------------------------------------------- +Mon Nov 25 18:17:22 CET 2024 - vbabka@suse.cz + +- mm: move dummy_vm_ops out of a header (git-fixes prerequisity). +- commit e1045c0 + +------------------------------------------------------------------- +Mon Nov 25 18:06:16 CET 2024 - vbabka@suse.cz + +- mm: avoid unsafe VMA hook invocation when error arises on mmap + hook (git-fixes). +- commit 2b96063 + +------------------------------------------------------------------- +Mon Nov 25 17:21:25 CET 2024 - tbogendoerfer@suse.de + +- fsl/fman: Fix refcount handling of fman-related devices + (CVE-2024-50166 bsc#1233050). +- fsl/fman: Save device references taken in mac_probe() + (CVE-2024-50166 bsc#1233050). +- commit cff0dea + +------------------------------------------------------------------- +Mon Nov 25 16:20:17 CET 2024 - sjaeckel@suse.de + +- tcp: Fix refcnt handling in __inet_hash_connect() (git-fixes). +- commit 2b4c1a0 + +------------------------------------------------------------------- +Mon Nov 25 14:01:51 CET 2024 - sjaeckel@suse.de + +- tipc: fix UAF in error path (CVE-2024-36886 bsc#1225730). +- commit be7d8d3 + +------------------------------------------------------------------- +Mon Nov 25 13:58:02 CET 2024 - sjaeckel@suse.de + +- ipv4: Fix uninit-value access in __ip_make_skb() (CVE-2024-36927 + bsc#1225813). +- commit 5457624 + +------------------------------------------------------------------- +Mon Nov 25 13:17:32 CET 2024 - mfranc@suse.cz + +- vsock/virtio: Initialization of the dangling pointer occurring + in vsk->trans (CVE-2024-50264 bsc#1233453). +- arm64/sve: Discard stale CPU state when handling SVE traps + (CVE-2024-50275 bsc#1233464). +- commit 2855c61 + +------------------------------------------------------------------- +Mon Nov 25 13:03:37 CET 2024 - sjaeckel@suse.de + +- tcp: defer shutdown(SEND_SHUTDOWN) for TCP_SYN_RECV sockets + (CVE-2024-36905 bsc#1225742). +- commit 84c8bd7 + +------------------------------------------------------------------- +Mon Nov 25 11:08:06 CET 2024 - nik.borisov@suse.com + +- kasan: move checks to do_strncpy_from_user (git-fixes). +- commit ca3142b + +------------------------------------------------------------------- +Mon Nov 25 10:56:40 CET 2024 - sjaeckel@suse.de + +- tipc: fix a possible memleak in tipc_buf_append (CVE-2024-36954 + bsc#1225764). +- commit b7093a9 + +------------------------------------------------------------------- +Mon Nov 25 10:53:25 CET 2024 - sjaeckel@suse.de + +- erspan: make sure erspan_base_hdr is present in skb->head + (CVE-2024-35888 bsc#1224518). +- commit aaa779d + +------------------------------------------------------------------- +Mon Nov 25 10:46:58 CET 2024 - sjaeckel@suse.de + +- net: esp: fix bad handling of pages from page_pool + (CVE-2024-26953 bsc#1223656). +- commit b0a65f5 + +------------------------------------------------------------------- +Mon Nov 25 10:45:00 CET 2024 - sjaeckel@suse.de + +- netfilter: nft_set_pipapo: walk over current view on netlink + dump (CVE-2024-27017 bsc#1223733). +- commit d1885c4 + +------------------------------------------------------------------- +Mon Nov 25 10:39:52 CET 2024 - sjaeckel@suse.de + +- dccp/tcp: Unhash sk from ehash for tb2 alloc failure after + check_estalblished() (CVE-2024-26741 bsc#1222587). +- commit 9a5ac8a + +------------------------------------------------------------------- +Sun Nov 24 21:31:48 CET 2024 - lduncan@suse.com + +- minmax: scsi: fix mis-use of 'clamp()' in sr.c (git-fixes). +- commit 46d200b + +------------------------------------------------------------------- +Sun Nov 24 18:09:35 CET 2024 - nmorey@suse.com + +- Fix warning in patches.suse/RDMA-mlx5-Move-events-notifier-registration-to-be-af.patch + Fixes: ff613dcf3cc9c8aa5b4cc959d0bdfac2dec81854 +- commit 56a258b + +------------------------------------------------------------------- +Sun Nov 24 09:49:00 CET 2024 - tiwai@suse.de + +- Move upstreamed crypto patches into sorted section +- commit 7706550 + +------------------------------------------------------------------- +Sun Nov 24 09:22:34 CET 2024 - tiwai@suse.de + +- maple_tree: refine mas_store_root() on storing NULL (git-fixes). +- maple_tree: fix alloc node fail issue (git-fixes). +- unicode: Fix utf8_load() error path (git-fixes). +- commit 7f4b1c4 + +------------------------------------------------------------------- +Sat Nov 23 16:38:17 CET 2024 - nmorey@suse.com + +- RDMA/mlx5: Move events notifier registration to be after device registration (git-fixes) +- commit ff613dc + +------------------------------------------------------------------- +Sat Nov 23 16:20:10 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix different dgids mapping to the same dip_idx (git-fixes) +- commit 482b364 + +------------------------------------------------------------------- +Sat Nov 23 16:19:30 CET 2024 - nmorey@suse.com + +- RDMA/hns: Use macro instead of magic number (git-fixes) +- commit d6d944a + +------------------------------------------------------------------- +Sat Nov 23 16:15:49 CET 2024 - nmorey@suse.com + +- RDMA/hns: Add mutex_destroy() (git-fixes) +- commit 096658f + +------------------------------------------------------------------- +Sat Nov 23 16:12:59 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix NULL pointer derefernce in hns_roce_map_mr_sg() (git-fixes) +- commit abdac11 + +------------------------------------------------------------------- +Sat Nov 23 16:12:49 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix out-of-order issue of requester when setting FENCE (git-fixes) +- commit a53ecd7 + +------------------------------------------------------------------- +Sat Nov 23 16:12:37 CET 2024 - nmorey@suse.com + +- RDMA/rxe: Set queue pair cur_qp_state when being queried (git-fixes) +- commit 74c369b + +------------------------------------------------------------------- +Sat Nov 23 16:12:28 CET 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Check cqe flags to know imm_data vs inv_irkey (git-fixes) +- commit 7a90d31 + +------------------------------------------------------------------- +Sat Nov 23 16:12:19 CET 2024 - nmorey@suse.com + +- RDMA/rxe: Fix the qp flush warnings in req (git-fixes) +- commit 678f36e + +------------------------------------------------------------------- +Sat Nov 23 16:12:04 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix cpu stuck caused by printings during reset (git-fixes) +- commit 0c19d33 + +------------------------------------------------------------------- +Sat Nov 23 16:11:49 CET 2024 - nmorey@suse.com + +- RDMA/hns: Use dev_* printings in hem code instead of ibdev_* (git-fixes) +- commit 21d3575 + +------------------------------------------------------------------- +Sat Nov 23 16:10:37 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix flush cqe error when racing with destroy qp (git-fixes) +- commit 4c3bddb + +------------------------------------------------------------------- +Sat Nov 23 16:07:39 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix an AEQE overflow error caused by untimely update of eq_db_ci (git-fixes) +- commit c0d9dba + +------------------------------------------------------------------- +Sat Nov 23 10:08:30 CET 2024 - tiwai@suse.de + +- cpufreq: CPPC: Fix wrong return value in cppc_get_cpu_power() + (git-fixes). +- cpufreq: CPPC: Fix wrong return value in cppc_get_cpu_cost() + (git-fixes). +- commit b53ff09 + +------------------------------------------------------------------- +Sat Nov 23 10:06:44 CET 2024 - tiwai@suse.de + +- cpufreq: mediatek-hw: Fix wrong return value in + mtk_cpufreq_get_cpu_power() (git-fixes). +- cpufreq: CPPC: Fix possible null-ptr-deref for + cppc_get_cpu_cost() (git-fixes). +- cpufreq: CPPC: Fix possible null-ptr-deref for + cpufreq_cpu_get_raw() (git-fixes). +- Revert "cpufreq: brcmstb-avs-cpufreq: Fix initial command check" + (stable-fixes). +- cpufreq: loongson2: Unregister platform_driver on failure + (git-fixes). +- mtd: rawnand: atmel: Fix possible memory leak (git-fixes). +- mtd: spi-nor: core: replace dummy buswidth from addr to data + (git-fixes). +- clk: qcom: clk-alpha-pll: fix lucid 5lpe pll enabled check + (git-fixes). +- clk: qcom: clk-alpha-pll: drop lucid-evo pll enabled warning + (git-fixes). +- clk: qcom: gcc-qcs404: fix initial rate of GPLL3 (git-fixes). +- clk: clk-axi-clkgen: make sure to enable the AXI bus clock + (git-fixes). +- clk: sunxi-ng: d1: Fix PLL_AUDIO0 preset (git-fixes). +- clk: imx: clk-scu: fix clk enable state save and restore + (git-fixes). +- clk: imx: fracn-gppll: fix pll power up (git-fixes). +- clk: imx: fracn-gppll: correct PLL initialization flow + (git-fixes). +- clk: imx: lpcg-scu: SW workaround for errata (e10858) + (git-fixes). +- clk: renesas: rzg2l: Fix FOUTPOSTDIV clk (git-fixes). +- clk: clk-apple-nco: Add NULL check in applnco_probe (git-fixes). +- leds: lp55xx: Remove redundant test for invalid channel number + (git-fixes). +- mfd: rt5033: Fix missing regmap_del_irq_chip() (git-fixes). +- mfd: tps65010: Use IRQF_NO_AUTOEN flag in request_irq() to + fix race (git-fixes). +- drm/amd: Fix initialization mistake for NBIO 7.7.0 + (stable-fixes). +- drm/amd/display: Adjust VSDB parser for replay feature + (stable-fixes). +- media: dvbdev: fix the logic when DVB_DYNAMIC_MINORS is not set + (stable-fixes). +- commit 15015b2 + +------------------------------------------------------------------- +Sat Nov 23 00:12:11 CET 2024 - lduncan@suse.com + +- scsi: cdrom: kABI: fix cdrom_dev_ops change (git-fixes). +- commit ab3e426 + +------------------------------------------------------------------- +Fri Nov 22 18:38:31 CET 2024 - davide.benini@suse.com + +- netfilter: Fix use-after-free in get_info() (CVE-2024-50257 + bsc#1233244). +- commit 1f00653 + +------------------------------------------------------------------- +Fri Nov 22 11:08:31 CET 2024 - tiwai@suse.de + +- ALSA: usb-audio: Make mic volume workarounds globally applicable + (stable-fixes). +- Refresh + patches.suse/ALSA-usb-audio-Add-quirk-for-HP-320-FHD-Webcam.patch. +- commit 777a5df + +------------------------------------------------------------------- +Fri Nov 22 10:59:49 CET 2024 - tiwai@suse.de + +- drm/vc4: Match drm_dev_enter and exit calls in vc4_hvs_lut_load + (git-fixes). +- ALSA: hda: Poll jack events for LS7A HD-Audio (stable-fixes). +- ALSA: usb-audio: Add Pioneer DJ/AlphaTheta DJM-A9 Mixer + (stable-fixes). +- ALSA: usb-audio: Use snprintf instead of sprintf in + build_mixer_unit_ctl (stable-fixes). +- ALSA: ice1712: Remove redundant code in stac9460_dac_vol_put + (stable-fixes). +- commit e772374 + +------------------------------------------------------------------- +Fri Nov 22 10:51:41 CET 2024 - tiwai@suse.de + +- drm/amdkfd: Fix wrong usage of INIT_WORK() (git-fixes). +- drm/panfrost: Add missing OPP table refcnt decremental + (git-fixes). +- drm: use ATOMIC64_INIT() for atomic64_t (git-fixes). +- drm/vkms: Drop unnecessary call to drm_crtc_cleanup() + (git-fixes). +- drm/etnaviv: hold GPU lock across perfmon sampling (git-fixes). +- drm/etnaviv: Request pages from DMA32 zone on addressing_limited + (git-fixes). +- drm/amd/display: Fix brightness level not retained over reboot + (git-fixes). +- drm/msm/dpu: cast crtc_clk calculation to u64 in + _dpu_core_perf_calc_clk() (git-fixes). +- drm/mediatek: Fix child node refcount handling in early exit + (git-fixes). +- drm/msm/gpu: Check the status of registration to PM QoS + (git-fixes). +- drm/msm/adreno: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- drm/msm: Fix some typos in comment (git-fixes). +- drm/msm/dpu: drop LM_3 / LM_4 on MSM8998 (git-fixes). +- drm/msm/dpu: drop LM_3 / LM_4 on SDM845 (git-fixes). +- drm/msm/dpu: on SDM845 move DSPP_3 to LM_5 block (git-fixes). +- drm: xlnx: zynqmp_dpsub: fix hotplug detection (git-fixes). +- drm: zynqmp_kms: Unplug DRM device before removal (git-fixes). +- drm/nouveau/gr/gf100: Fix missing unlock in gf100_gr_chan_new() + (git-fixes). +- drm/panfrost: Remove unused id_mask from struct panfrost_model + (git-fixes). +- drm/amdgpu: Fix JPEG v4.0.3 register write (git-fixes). +- drm/bridge: tc358767: Fix link properties discovery (git-fixes). +- drm/vc4: Match drm_dev_enter and exit calls in + vc4_hvs_atomic_flush (git-fixes). +- drm/bridge: it6505: Drop EDID cache on bridge power off + (git-fixes). +- drm/bridge: anx7625: Drop EDID cache on bridge power off + (git-fixes). +- drm/v3d: Address race-condition in MMU flush (git-fixes). +- drm/sti: avoid potential dereference of error pointers + (git-fixes). +- drm/sti: avoid potential dereference of error pointers in + sti_gdp_atomic_check (git-fixes). +- drm/sti: avoid potential dereference of error pointers in + sti_hqvdp_atomic_check (git-fixes). +- drm/imx/ipuv3: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- drm/imx/dcss: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- drm/omap: Fix locking in omap_gem_new_dmabuf() (git-fixes). +- drm/omap: Fix possible NULL dereference (git-fixes). +- drm/vc4: hvs: Correct logic on stopping an HVS channel + (git-fixes). +- drm/vc4: hvs: Remove incorrect limit from hvs_dlist debugfs + function (git-fixes). +- drm/vc4: hvs: Fix dlist debug not resetting the next entry + pointer (git-fixes). +- drm/vc4: hdmi: Avoid hang with debug registers when suspended + (git-fixes). +- drm/vc4: hvs: Don't write gamma luts on 2711 (git-fixes). +- drm/mm: Mark drm_mm_interval_tree*() functions with + __maybe_unused (git-fixes). +- ASoC: codecs: Fix atomicity violation in + snd_soc_component_get_drvdata() (git-fixes). +- ASoC: rt722-sdca: Remove logically deadcode in rt722-sdca.c + (git-fixes). +- ASoC: fsl_micfil: fix regmap_write_bits usage (git-fixes). +- ALSA: 6fire: Release resources at card release (git-fixes). +- ALSA: caiaq: Use snd_card_free_when_closed() at disconnection + (git-fixes). +- ALSA: us122l: Use snd_card_free_when_closed() at disconnection + (git-fixes). +- ALSA: usx2y: Use snd_card_free_when_closed() at disconnection + (git-fixes). +- Bluetooth: fix use-after-free in device_for_each_child() + (git-fixes). +- wifi: brcmfmac: release 'root' node in all execution paths + (git-fixes). +- wifi: cw1200: Fix potential NULL dereference (git-fixes). +- wifi: wfx: Fix error handling in wfx_core_init() (git-fixes). +- wifi: ath12k: fix warning when unbinding (git-fixes). +- wifi: ath12k: fix crash when unbinding (git-fixes). +- wifi: ath12k: remove msdu_end structure for WCN7850 (git-fixes). +- wifi: ath11k: Fix CE offset address calculation for WCN6750 + in SSR (git-fixes). +- wifi: ath12k: Skip Rx TID cleanup for self peer (git-fixes). +- wifi: ath10k: fix invalid VHT parameters in + supported_vht_mcs_rate_nss2 (git-fixes). +- wifi: ath10k: fix invalid VHT parameters in + supported_vht_mcs_rate_nss1 (git-fixes). +- wifi: ath9k: add range check for conn_rsp_epid in + htc_connect_service() (git-fixes). +- wifi: mwifiex: Fix memcpy() field-spanning write warning in + mwifiex_config_scan() (git-fixes). +- wifi: mwifiex: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- wifi: p54: Use IRQF_NO_AUTOEN flag in request_irq() (git-fixes). +- commit c54011d + +------------------------------------------------------------------- +Fri Nov 22 01:02:40 CET 2024 - lduncan@suse.com + +- scsi: kABI: restore no_start_on_resume to scsi_device + (git-fixes). +- scsi: sd_zbc: Use kvzalloc() to allocate REPORT ZONES buffer + (git-fixes). +- scsi: mpi3mr: Validate SAS port assignments (git-fixes). +- scsi: scsi_transport_fc: Allow setting rport state to current + state (git-fixes). +- scsi: wd33c93: Don't use stale scsi_pointer value (git-fixes). +- scsi: pm8001: Do not overwrite PCI queue mapping (git-fixes). +- scsi: smartpqi: correct stream detection (git-fixes). +- scsi: NCR5380: Initialize buffer for MSG IN and STATUS transfers + (git-fixes). +- scsi: NCR5380: Check for phase match during PDMA fixup + (git-fixes). +- scsi: mac_scsi: Disallow bus errors during PDMA send + (git-fixes). +- scsi: mac_scsi: Refactor polling loop (git-fixes). +- scsi: mac_scsi: Revise printk(KERN_DEBUG ...) messages + (git-fixes). +- scsi: smartpqi: revert + propagate-the-multipath-failure-to-SML-quickly (git-fixes). +- scsi: aacraid: Rearrange order of struct aac_srb_unit + (git-fixes). +- scsi: sd: Ignore command SYNCHRONIZE CACHE error if format in + progress (git-fixes). +- scsi: core: Fix the return value of scsi_logical_block_count() + (git-fixes). +- scsi: mpt3sas: Avoid IOMMU page faults on REPORT ZONES + (git-fixes). +- scsi: mpi3mr: Avoid IOMMU page faults on REPORT ZONES + (git-fixes). +- scsi: pm80xx: Set phy->enable_completion only when we wait + for it (git-fixes). +- scsi: libsas: Fix exp-attached device scan after probe failure + scanned in again after probe failed (git-fixes). +- scsi: mpi3mr: Fix ATA NCQ priority support (git-fixes). +- scsi: core: Disable CDL by default (git-fixes). +- scsi: core: Handle devices which return an unusually large + VPD page count (git-fixes). +- scsi: qedf: Set qed_slowpath_params to zero before use + (git-fixes). +- scsi: sr: Fix unintentional arithmetic wraparound (git-fixes). +- scsi: core: alua: I/O errors for ALUA state transitions + (git-fixes). +- scsi: hpsa: Fix allocation size for Scsi_Host private data + (git-fixes). +- scsi: libsas: Fix the failure of adding phy with zero-address + to port (git-fixes). +- scsi: mpi3mr: Avoid possible run-time warning with long + manufacturer strings (git-fixes). +- scsi: core: Fix handling of SCMD_FAIL_IF_RECOVERING (git-fixes). +- scsi: hisi_sas: Handle the NCQ error returned by D2H frame + (git-fixes). +- scsi: mpi3mr: Avoid memcpy field-spanning write WARNING + (git-fixes). +- scsi: spi: Fix sshdr use (git-fixes). +- scsi: Remove scsi device no_start_on_resume flag (git-fixes). +- commit d5d37f8 + +------------------------------------------------------------------- +Thu Nov 21 08:11:24 CET 2024 - tiwai@suse.de + +- soc: fsl: rcpm: fix missing of_node_put() in + copy_ippdexpcr1_setting() (git-fixes). +- firmware: arm_scpi: Check the DVFS OPP count returned by the + firmware (git-fixes). +- soc: ti: smartreflex: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- soc: qcom: geni-se: fix array underflow in geni_se_clk_tbl_get() + (git-fixes). +- drivers: soc: xilinx: add the missing kfree in + xlnx_add_cb_for_suspend() (git-fixes). +- efi/libstub: Free correct pointer on failure (git-fixes). +- tpm: fix signed/unsigned bug when checking event logs + (git-fixes). +- efi/libstub: fix efi_parse_options() ignoring the default + command line (git-fixes). +- platform/x86: panasonic-laptop: Return errno correctly in show + callback (git-fixes). +- media: uvcvideo: Skip parsing frames of type UVC_VS_UNDEFINED + in uvc_parse_format (git-fixes). +- media: platform: exynos4-is: Fix an OF node reference leak in + fimc_md_is_isp_available (git-fixes). +- media: atomisp: Add check for rgby_data memory allocation + failure (git-fixes). +- media: gspca: ov534-ov772x: Fix off-by-one error in + set_frame_rate() (git-fixes). +- media: venus: Fix pm_runtime_set_suspended() with runtime pm + enabled (git-fixes). +- media: amphion: Fix pm_runtime_set_suspended() with runtime + pm enabled (git-fixes). +- media: i2c: dw9768: Fix pm_runtime_set_suspended() with runtime + pm enabled (git-fixes). +- media: mantis: remove orphan mantis_core.h (git-fixes). +- media: vb2: Fix comment (git-fixes). +- media: uvcvideo: Stop stream during unregister (git-fixes). +- media: ts2020: fix null-ptr-deref in ts2020_probe() (git-fixes). +- media: platform: allegro-dvt: Fix possible memory leak in + allocate_buffers_internal() (git-fixes). +- media: i2c: tc358743: Fix crash in the probe error path when + using polling (git-fixes). +- media: wl128x: Fix atomicity violation in fmc_send_cmd() + (git-fixes). +- media: imx-jpeg: Ensure power suppliers be suspended before + detach them (git-fixes). +- media: amphion: Set video drvdata before register video device + (git-fixes). +- media: imx-jpeg: Set video drvdata before register video device + (git-fixes). +- media: mtk-jpeg: Fix null-ptr-deref during unload module + (git-fixes). +- media: uvcvideo: Require entities to have a non-zero unique ID + (git-fixes). +- HID: wacom: Interpret tilt data from Intuos Pro BT as signed + values (git-fixes). +- mmc: mmc_spi: drop buggy snprintf() (git-fixes). +- =?UTF-8?q?spi:=20zynqmp-gqspi:=20Undo=20runtime=20PM=20ch?= + =?UTF-8?q?anges=20at=20driver=20exit=20time=E2=80=8B?= + (git-fixes). +- spi: tegra210-quad: Avoid shift-out-of-bounds (git-fixes). +- regmap: irq: Set lockdep class for hierarchical IRQ domains + (git-fixes). +- Documentation: kgdb: Correct parameter error (git-fixes). +- efi/libstub: zboot.lds: Discard .discard sections + (stable-fixes). +- commit fbb8e93 + +------------------------------------------------------------------- +Wed Nov 20 08:53:46 CET 2024 - tiwai@suse.de + +- doc: rcu: update printed dynticks counter bits (git-fixes). +- hwmon: (nct6775-core) Fix overflows seen when writing limit + attributes (git-fixes). +- ACPI: CPPC: Fix _CPC register setting issue (git-fixes). +- thermal: core: Initialize thermal zones before registering them + (git-fixes). +- amd-pstate: Set min_perf to nominal_perf for active mode + performance gov (git-fixes). +- crypto: cavium - Fix an error handling path in + cpt_ucode_load_fw() (git-fixes). +- crypto: bcm - add error check in the ahash_hmac_init function + (git-fixes). +- crypto: caam - add error check to caam_rsa_set_priv_key_form + (git-fixes). +- crypto: inside-secure - Fix the return value of + safexcel_xcbcmac_cra_init() (git-fixes). +- crypto: cavium - Fix the if condition to exit loop after timeout + (git-fixes). +- crypto: x86/aegis128 - access 32-bit arguments as 32-bit + (git-fixes). +- crypto: pcrypt - Call crypto layer directly when + padata_do_parallel() return -EBUSY (git-fixes). +- crypto: qat - remove faulty arbiter config reset (git-fixes). +- crypto: qat/qat_4xxx - fix off by one in uof_get_name() + (git-fixes). +- crypto: qat - remove check after debugfs_create_dir() + (git-fixes). +- crypto: caam - Fix the pointer passed to caam_qi_shutdown() + (git-fixes). +- firmware: google: Unregister driver_info on failure (git-fixes). +- platform/chrome: cros_ec_typec: fix missing fwnode reference + decrement (git-fixes). +- acpi/arm64: Adjust error handling procedure in + gtdt_parse_timer_block() (git-fixes). +- commit af7e948 + +------------------------------------------------------------------- +Tue Nov 19 15:57:33 CET 2024 - fdmanana@suse.com + +- btrfs: reinitialize delayed ref list after deleting it from + the list (bsc#1233462 CVE-2024-50273). +- commit 174bbc2 + +------------------------------------------------------------------- +Mon Nov 18 16:26:54 CET 2024 - msuchanek@suse.de + +- kernel-binary: Enable livepatch package only when livepatch is enabled + Otherwise the filelist may be empty failing the build (bsc#1218644). +- commit f730eec + +------------------------------------------------------------------- +Mon Nov 18 16:01:38 CET 2024 - msuchanek@suse.de + +- Update config files (bsc#1218644). + LIVEPATCH_IPA_CLONES=n => LIVEPATCH=n +- commit cabd446 + +------------------------------------------------------------------- +Mon Nov 18 12:57:29 CET 2024 - tiwai@suse.de + +- ASoC: audio-graph-card2: Purge absent supplies for device tree + nodes (stable-fixes). +- ALSA: hda/realtek: fix mute/micmute LEDs for a HP EliteBook + 645 G10 (stable-fixes). +- ALSA: hda/realtek - Fixed Clevo platform headset Mic issue + (stable-fixes). +- ALSA: usb-audio: Fix Yamaha P-125 Quirk Entry (stable-fixes). +- commit 03ba04a + +------------------------------------------------------------------- +Mon Nov 18 12:55:46 CET 2024 - tiwai@suse.de + +- drm/amdgpu: fix check in gmc_v9_0_get_vm_pte() (git-fixes). +- drm/bridge: tc358768: Fix DSI command tx (git-fixes). +- nouveau/dp: handle retries for AUX CH transfers with GSP + (git-fixes). +- nouveau: handle EBUSY and EAGAIN for GSP aux errors (git-fixes). +- nouveau: fw: sync dma after setup is called (git-fixes). +- drm/rockchip: vop: Fix a dereferenced before check warning + (git-fixes). +- Revert "mmc: dw_mmc: Fix IDMAC operation with pages bigger + than 4K" (git-fixes). +- mmc: sunxi-mmc: Fix A100 compatible description (git-fixes). +- ALSA: hda/realtek - update set GPIO3 to default for Thinkpad + with ALC1318 (git-fixes). +- ASoC: fsl_micfil: Add sample rate constraint (stable-fixes). +- ASoC: rt722-sdca: increase clk_stop_timeout to fix clock stop + issue (stable-fixes). +- ASoC: amd: yc: Fix non-functional mic on ASUS E1404FA + (stable-fixes). +- ASoC: amd: yc: Add quirk for ASUS Vivobook S15 M3502RA + (stable-fixes). +- net: usb: qmi_wwan: add Fibocom FG132 0x0112 composition + (stable-fixes). +- net: wwan: fix global oob in wwan_rtnl_policy (git-fixes). +- HID: lenovo: Add support for Thinkpad X1 Tablet Gen 3 keyboard + (stable-fixes). +- HID: multitouch: Add quirk for Logitech Bolt receiver w/ + Casa touchpad (stable-fixes). +- drm/vmwgfx: Limit display layout ioctl array size to + VMWGFX_NUM_DISPLAY_UNITS (stable-fixes). +- drm/amdkfd: Accounting pdd vram_usage for svm (stable-fixes). +- crypto: api - Fix liveliness check in crypto_alg_tested + (stable-fixes). +- HID: multitouch: Add quirk for HONOR MagicBook Art 14 touchpad + (stable-fixes). +- HID: multitouch: Add support for B2402FVA track point + (stable-fixes). +- commit 42778ee + +------------------------------------------------------------------- +Mon Nov 18 10:12:01 CET 2024 - ailiop@suse.com + +- ocfs2: uncache inode which has failed entering the group + (git-fixes). +- commit 4caa305 + +------------------------------------------------------------------- +Mon Nov 18 10:09:43 CET 2024 - ailiop@suse.com + +- ocfs2: fix UBSAN warning in ocfs2_verify_volume() (git-fixes). +- commit fe96ee2 + +------------------------------------------------------------------- +Mon Nov 18 10:08:42 CET 2024 - ailiop@suse.com + +- ocfs2: remove entry once instead of null-ptr-dereference in + ocfs2_xa_remove() (git-fixes). +- commit 7a347a0 + +------------------------------------------------------------------- +Mon Nov 18 10:01:48 CET 2024 - ailiop@suse.com + +- fs: Fix uninitialized value issue in from_kuid and from_kgid + (git-fixes). +- commit 46de67d + +------------------------------------------------------------------- +Mon Nov 18 09:28:56 CET 2024 - nmorey@suse.com + +- Revert "RDMA/core: Fix ENODEV error for iWARP test over vlan" (git-fixes) +- commit 89dc95f + +------------------------------------------------------------------- +Mon Nov 18 09:28:29 CET 2024 - nmorey@suse.com + +- RDMA/siw: Add sendpage_ok() check to disable MSG_SPLICE_PAGES (git-fixes) +- commit 1e78f0f + +------------------------------------------------------------------- +Sat Nov 16 14:28:26 CET 2024 - mfranc@suse.cz + +- Bluetooth: ISO: Fix UAF on iso_sock_timeout (CVE-2024-50124 + bsc#1232926). +- commit 25f5727 + +------------------------------------------------------------------- +Fri Nov 15 21:26:02 CET 2024 - trenn@suse.com + +- tools/power turbostat: Increase the limit for fd opened + (bsc#1233119). +- commit 58c7a4f + +------------------------------------------------------------------- +Fri Nov 15 19:36:25 CET 2024 - dsterba@suse.com + +- posix-clock: Fix missing timespec64 check in pc_clock_settime() (CVE-2024-50195 bsc#1233103) +- commit 5c410cf + +------------------------------------------------------------------- +Fri Nov 15 19:22:13 CET 2024 - dsterba@suse.com + +- bpf: Use raw_spinlock_t in ringbuf (CVE-2024-50138 bsc#1232935) +- commit 949411a + +------------------------------------------------------------------- +Fri Nov 15 19:15:20 CET 2024 - dsterba@suse.com + +- net: systemport: fix potential memory leak in bcm_sysport_xmit() (CVE-2024-50171 bsc#1233057) +- commit 24f9c7b + +------------------------------------------------------------------- +Fri Nov 15 13:23:36 CET 2024 - msuchanek@suse.de + +- crypto: aes-gcm-p10 - Use the correct bit to test for P10 + (bsc#1232704). +- commit 52eb6a0 + +------------------------------------------------------------------- +Fri Nov 15 12:09:15 CET 2024 - ohering@suse.de + +- add bugreference to a hv_netvsc patch (bsc#1232413). +- commit 14b76c0 + +------------------------------------------------------------------- +Fri Nov 15 10:37:05 CET 2024 - mfranc@suse.cz + +- scsi: target: core: Fix null-ptr-deref in target_alloc_device() + (CVE-2024-50153 bsc#1233061). +- commit 76e65bc + +------------------------------------------------------------------- +Fri Nov 15 10:32:59 CET 2024 - mfranc@suse.cz + +- octeon_ep: Add SKB allocation failures handling in + __octep_oq_process_rx() (CVE-2024-50145 bsc#1233044). +- octeon_ep: Implement helper for iterating packets in Rx queue + (CVE-2024-50145 bsc#1233044). +- commit 6b574c1 + +------------------------------------------------------------------- +Fri Nov 15 10:30:49 CET 2024 - sjaeckel@suse.de + +- Fix for kABI fix for Bluetooth: L2CAP: Fix + div-by-zero in l2cap_le_flowctl_init() (CVE-2024-36968 bsc#1226130). + The chosen position of `mtu` in the `struct hci_conn` in the first + iteration of this patch was done based on the wrong version of the header + and therefore on the wrong position. Correct that. + Fixes: d93ac77c0df4b8dfe469c26e60d4fb45fc305341 +- commit 77fc56a + +------------------------------------------------------------------- +Fri Nov 15 10:15:49 CET 2024 - mfranc@suse.cz + +- net: wwan: fix global oob in wwan_rtnl_policy (CVE-2024-50128 + bsc#1232905). +- commit c939671 + +------------------------------------------------------------------- +Fri Nov 15 10:12:23 CET 2024 - mfranc@suse.cz + +- xfrm: fix one more kernel-infoleak in algo dumping + (CVE-2024-50110 bsc#1232885). +- commit 2ae0e01 + +------------------------------------------------------------------- +Fri Nov 15 10:04:59 CET 2024 - mfranc@suse.cz + +- scsi: ufs: core: Set SDEV_OFFLINE when UFS is shut down + (CVE-2024-50098 bsc#1232881). +- commit f344a8e + +------------------------------------------------------------------- +Fri Nov 15 09:56:09 CET 2024 - mfranc@suse.cz + +- Update + patches.suse/thermal-intel-int340x-processor-Fix-warning-during-m.patch + (git-fixes bsc#1232877 CVE-2024-50093). +- commit 6ec2cb2 + +------------------------------------------------------------------- +Fri Nov 15 09:52:21 CET 2024 - tiwai@suse.de + +- Bluetooth: btintel: Direct exception event to bluetooth stack + (git-fixes). +- Bluetooth: hci_core: Fix calling mgmt_device_connected + (git-fixes). +- USB: serial: qcserial: add support for Sierra Wireless EM86xx + (stable-fixes). +- USB: serial: option: add Quectel RG650V (stable-fixes). +- USB: serial: option: add Fibocom FG132 0x0112 composition + (stable-fixes). +- tools/lib/thermal: Fix sampling handler context ptr (git-fixes). +- drm/amdgpu: add missing size check in + amdgpu_debugfs_gprwave_read() (stable-fixes). +- drm/amdgpu: Adjust debugfs eviction and IB access permissions + (stable-fixes). +- drm/amdgpu: Adjust debugfs register access permissions + (stable-fixes). +- drm/amdgpu: prevent NULL pointer dereference if ATIF is not + supported (git-fixes). +- net: phy: ti: add PHY_RST_AFTER_CLK_EN flag (git-fixes). +- net: wwan: t7xx: Fix off-by-one error in + t7xx_dpmaif_rx_buf_alloc() (git-fixes). +- net: phy: dp83822: Fix reset pin definitions (git-fixes). +- commit 48ec995 + +------------------------------------------------------------------- +Fri Nov 15 09:41:23 CET 2024 - tiwai@suse.de + +- Delete patches.suse/wifi-mac80211-fix-RCU-list-iterations.patch + It was reverted on 6.6.x stable +- commit e2ead50 + +------------------------------------------------------------------- +Fri Nov 15 09:37:00 CET 2024 - mfranc@suse.cz + +- net: explicitly clear the sk pointer, when pf->create fails + (CVE-2024-50186 bsc#1233110). +- commit dfaff4b + +------------------------------------------------------------------- +Fri Nov 15 09:00:18 CET 2024 - mfranc@suse.cz + +- secretmem: disable memfd_secret() if arch cannot set direct map + (CVE-2024-50182 bsc#1233129). +- commit 0d23f21 + +------------------------------------------------------------------- +Fri Nov 15 08:24:28 CET 2024 - jslaby@suse.cz + +- Update + patches.suse/ACPI-CPPC-Make-rmw_lock-a-raw_spin_lock.patch + (git-fixes CVE-2024-50249 bsc#1233197). +- Update + patches.suse/ACPI-PRM-Find-EFI_MEMORY_RUNTIME-block-for-PRM-handl.patch + (git-fixes CVE-2024-50141 bsc#1233065). +- Update + patches.suse/ALSA-firewire-lib-Avoid-division-by-zero-in-apply_co.patch + (git-fixes CVE-2024-50205 bsc#1233293). +- Update + patches.suse/ALSA-hda-cs8409-Fix-possible-NULL-dereference.patch + (git-fixes CVE-2024-50160 bsc#1233074). +- Update + patches.suse/ASoC-qcom-Fix-NULL-Dereference-in-asoc_qcom_lpass_cp.patch + (git-fixes CVE-2024-50103 bsc#1232878). +- Update + patches.suse/Bluetooth-bnep-fix-wild-memory-access-in-proto_unreg.patch + (git-fixes CVE-2024-50148 bsc#1233063). +- Update + patches.suse/Bluetooth-hci-fix-null-ptr-deref-in-hci_read_support.patch + (git-fixes CVE-2024-50255 bsc#1233238). +- Update + patches.suse/HID-amd_sfh-Switch-to-device-managed-dmam_alloc_cohe.patch + (git-fixes CVE-2024-50189 bsc#1233105). +- Update + patches.suse/RDMA-bnxt_re-Add-a-check-for-memory-allocation.patch + (git-fixes CVE-2024-50209 bsc#1233114). +- Update + patches.suse/RDMA-bnxt_re-Avoid-CPU-lockups-due-fifo-occupancy-ch.patch + (git-fixes CVE-2024-50157 bsc#1233032). +- Update + patches.suse/RDMA-bnxt_re-Fix-a-bug-while-setting-up-Level-2-PBL-.patch + (git-fixes CVE-2024-50208 bsc#1233117). +- Update + patches.suse/RDMA-bnxt_re-Fix-a-possible-memory-leak.patch + (git-fixes CVE-2024-50172 bsc#1233029). +- Update patches.suse/RDMA-bnxt_re-Fix-out-of-bound-check.patch + (git-fixes CVE-2024-50158 bsc#1233036). +- Update + patches.suse/RDMA-mad-Improve-handling-of-timed-out-WRs-of-mad-ag.patch + (git-fixes CVE-2024-50095 bsc#1232873). +- Update + patches.suse/USB-gadget-dummy-hcd-Fix-task-hung-problem.patch + (git-fixes CVE-2024-50100 bsc#1232876). +- Update + patches.suse/arm64-probes-Fix-uprobes-for-big-endian-kernels.patch + (git-fixes CVE-2024-50194 bsc#1233111). +- Update + patches.suse/arm64-probes-Remove-broken-LDR-literal-uprobe-support.patch + (git-fixes CVE-2024-50099 bsc#1232887). +- Update + patches.suse/ceph-remove-the-incorrect-Fw-reference-check-when-dir.patch + (bsc#1231182 CVE-2024-50179 bsc#1233123). +- Update + patches.suse/clk-imx-Remove-CLK_SET_PARENT_GATE-for-DRAM-mux-for-.patch + (stable-fixes CVE-2024-50181 bsc#1233127). +- Update + patches.suse/drm-amd-Guard-against-bad-data-for-ATIF-ACPI-method.patch + (git-fixes CVE-2024-50117 bsc#1232897). +- Update + patches.suse/drm-amd-display-Disable-PSR-SU-on-Parade-08-01-TCON-.patch + (stable-fixes CVE-2024-50108 bsc#1232884). +- Update + patches.suse/drm-amd-pm-Vangogh-Fix-kernel-memory-out-of-bounds-w.patch + (git-fixes CVE-2024-50221 bsc#1233185). +- Update + patches.suse/drm-msm-Avoid-NULL-dereference-in-msm_disp_state_pri.patch + (git-fixes CVE-2024-50156 bsc#1233073). +- Update patches.suse/drm-radeon-Fix-encoder-possible_clones.patch + (git-fixes CVE-2024-50201 bsc#1233104). +- Update + patches.suse/drm-vboxvideo-Replace-fake-VLA-at-end-of-vbva_mouse_.patch + (stable-fixes CVE-2024-50134 bsc#1232890). +- Update + patches.suse/drm-vc4-Stop-the-active-perfmon-before-being-destroy.patch + (git-fixes CVE-2024-50187 bsc#1233108). +- Update + patches.suse/ext4-fix-slab-use-after-free-in-ext4_split_extent_at.patch + (bsc#1232201 CVE-2024-49884 bsc#1232198). +- Update patches.suse/fbdev-sisfb-Fix-strbuf-array-overflow.patch + (stable-fixes CVE-2024-50180 bsc#1233125). +- Update + patches.suse/firmware-arm_scmi-Fix-the-double-free-in-scmi_debugf.patch + (git-fixes CVE-2024-50159 bsc#1233041). +- Update + patches.suse/iio-adc-ad7124-fix-division-by-zero-in-ad7124_set_ch.patch + (git-fixes CVE-2024-50232 bsc#1233209). +- Update + patches.suse/iio-gts-helper-Fix-memory-leaks-in-iio_gts_build_ava.patch + (git-fixes CVE-2024-50231 bsc#1233208). +- Update + patches.suse/iio-light-veml6030-fix-IIO-device-retrieval-from-emb.patch + (git-fixes CVE-2024-50198 bsc#1233100). +- Update + patches.suse/iommu-vt-d-Fix-incorrect-pci_for_each_dma_alias-for-.patch + (git-fixes CVE-2024-50101 bsc#1232869). +- Update + patches.suse/maple_tree-correct-tree-corruption-on-spanning-store.patch + (git-fixes CVE-2024-50200 bsc#1233088). +- Update + patches.suse/media-qcom-camss-Remove-use_count-guard-in-stop_stre.patch + (git-fixes CVE-2024-50175 bsc#1233092). +- Update + patches.suse/net-mlx5-Fix-command-bitmask-initialization.patch + (git-fixes CVE-2024-50147 bsc#1233067). +- Update + patches.suse/net-mlx5-Unregister-notifier-on-eswitch-init-failure.patch + (git-fixes CVE-2024-50136 bsc#1232914). +- Update + patches.suse/net-mlx5e-Don-t-call-cleanup-on-profile-rollback-fai.patch + (git-fixes CVE-2024-50146 bsc#1233056). +- Update + patches.suse/net-phy-dp83869-fix-memory-corruption-when-enabling-.patch + (git-fixes CVE-2024-50188 bsc#1233107). +- Update + patches.suse/netdevsim-use-cond_resched-in-nsim_dev_trap_report_w.patch + (git-fixes CVE-2024-50155 bsc#1233035). +- Update + patches.suse/nfsd-cancel-nfsd_shrinker_work-using-sync-mode-in-nf.patch + (git-fixes CVE-2024-50121 bsc#1232925). +- Update + patches.suse/nilfs2-fix-kernel-bug-due-to-missing-clearing-of-buffer-delay-flag.patch + (git-fixes CVE-2024-50116 bsc#1232892). +- Update + patches.suse/nilfs2-fix-potential-deadlock-with-newly-created-symlinks.patch + (git-fixes CVE-2024-50229 bsc#1233205). +- Update + patches.suse/nouveau-dmem-Fix-vulnerability-in-migrate_to_ram-upo.patch + (git-fixes CVE-2024-50096 bsc#1232870). +- Update + patches.suse/nvme-pci-fix-race-condition-between-reset-and-nvme_d.patch + (git-fixes CVE-2024-50135 bsc#1232888). +- Update + patches.suse/nvmet-auth-assign-dh_key-to-NULL-after-kfree_sensiti.patch + (git-fixes CVE-2024-50215 bsc#1233189). +- Update + patches.suse/ocfs2-pass-u64-to-ocfs2_truncate_inline-maybe-overflow.patch + (git-fixes CVE-2024-50218 bsc#1233191). +- Update + patches.suse/phy-qcom-qmp-usb-fix-NULL-deref-on-runtime-suspend.patch + (git-fixes CVE-2024-50240 bsc#1233217). +- Update + patches.suse/pinctrl-ocelot-fix-system-hang-on-level-based-interr.patch + (stable-fixes CVE-2024-50196 bsc#1233113). +- Update + patches.suse/remoteproc-k3-r5-Fix-error-handling-when-power-up-fa.patch + (git-fixes CVE-2024-50176 bsc#1233091). +- Update + patches.suse/scsi-lpfc-Ensure-DA_ID-handling-completion-before-de.patch + (bsc#1232757 CVE-2024-50183 bsc#1233130). +- Update + patches.suse/spi-spi-fsl-dspi-Fix-crash-when-not-using-GPIO-chip-.patch + (git-fixes CVE-2024-50224 bsc#1233188). +- Update + patches.suse/staging-iio-frequency-ad9832-fix-division-by-zero-in.patch + (git-fixes CVE-2024-50233 bsc#1233210). +- Update + patches.suse/thermal-intel-int340x-processor-Fix-warning-during-m.patch + (git-fixes CVE-2024-50093 bsc#1232877). +- Update + patches.suse/tracing-Consider-the-NULL-character-when-validating-the-event-length.patch + (git-fixes CVE-2024-50131 bsc#1232896). +- Update + patches.suse/tracing-timerlat-Drop-interface_lock-in-stop_kthread.patch + (git-fixes CVE-2024-49976 bsc#1232103). +- Update + patches.suse/tracing-timerlat-Only-clear-timer-if-a-kthread-exists.patch + (git-fixes CVE-2024-46845 bsc#1231076). +- Update + patches.suse/unicode-Don-t-special-case-ignorable-code-points.patch + (stable-fixes CVE-2024-50089 bsc#1232860). +- Update + patches.suse/uprobe-avoid-out-of-bounds-memory-access-of-fetching-args.patch + (git-fixes CVE-2024-50067 bsc#1232416). +- Update + patches.suse/uprobes-fix-kernel-info-leak-via-uprobes-vma.patch + (bsc#1231114 CVE-2024-46828 CVE-2024-49975 bsc#1232104). +- Update + patches.suse/usb-typec-altmode-should-keep-reference-to-parent.patch + (git-fixes CVE-2024-50150 bsc#1233051). +- Update + patches.suse/wifi-ath10k-Fix-memory-leak-in-management-tx.patch + (git-fixes CVE-2024-50236 bsc#1233212). +- Update + patches.suse/wifi-cfg80211-clear-wdev-cqm_config-pointer-on-free.patch + (git-fixes CVE-2024-50235 bsc#1233176). +- Update + patches.suse/wifi-iwlegacy-Clear-stale-interrupts-before-resuming.patch + (stable-fixes CVE-2024-50234 bsc#1233211). +- Update + patches.suse/wifi-mac80211-do-not-pass-a-stopped-vif-to-the-drive.patch + (git-fixes CVE-2024-50237 bsc#1233216). +- Update + patches.suse/x86-fix-user-address-masking-non-canonical-speculation-iss.patch + (git-fixes CVE-2024-50102 bsc#1232880). +- Update + patches.suse/xfs-fix-finding-a-last-resort-AG-in-xfs_filestream_pick_ag.patch + (git-fixes CVE-2024-50216 bsc#1233179). +- commit 7d67ea3 + +------------------------------------------------------------------- +Thu Nov 14 21:41:24 CET 2024 - dsterba@suse.com + +- btrfs: fix error propagation of split bios (CVE-2024-50225 bsc#1233193) +- commit ec9c552 + +------------------------------------------------------------------- +Thu Nov 14 21:40:24 CET 2024 - dsterba@suse.com + +- btrfs: merge btrfs_orig_bbio_end_io() into btrfs_bio_end_io() (bsc#1233193) +- commit b9564da + +------------------------------------------------------------------- +Thu Nov 14 21:32:27 CET 2024 - dsterba@suse.com + +- Update references in patches.suse/ntfs3-Add-bounds-checking-to-mi_enum_attr.patch (CVE-2024-50248 bsc#1233219 bsc#1233207) +- commit 56e1d55 + +------------------------------------------------------------------- +Thu Nov 14 21:29:07 CET 2024 - dsterba@suse.com + +- fs/ntfs3: Sequential field availability check in mi_enum_attr() (bsc#1233207) +- commit 95663e2 + +------------------------------------------------------------------- +Thu Nov 14 21:23:01 CET 2024 - dsterba@suse.com + +- fs/ntfs3: Add rough attr alloc_size check (CVE-2024-50246 bsc#1233207) +- commit 378df6a + +------------------------------------------------------------------- +Thu Nov 14 21:21:37 CET 2024 - dsterba@suse.com + +- ntfs3: Add bounds checking to mi_enum_attr() (bsc#1233207) +- commit 418f82a + +------------------------------------------------------------------- +Thu Nov 14 21:20:35 CET 2024 - dsterba@suse.com + +- fs/ntfs3: Fixed overflow check in mi_enum_attr() (bsc#1233207) +- commit 6744037 + +------------------------------------------------------------------- +Thu Nov 14 21:19:03 CET 2024 - dsterba@suse.com + +- fs/ntfs3: Add more attributes checks in mi_enum_attr() (bsc#1233207) +- commit 766ca6e + +------------------------------------------------------------------- +Thu Nov 14 19:53:46 CET 2024 - dsterba@suse.com + +- fs/ntfs3: Fix possible deadlock in mi_read (CVE-2024-50245 bsc#1233203) +- commit 5f9c2da + +------------------------------------------------------------------- +Thu Nov 14 16:57:13 CET 2024 - sjaeckel@suse.de + +- Rename to + patches.kabi/kABI-fix-for-Bluetooth-L2CAP-Fix-div-by-zero-in-l2ca.patch. + Fixes: d93ac77c0df4b8dfe469c26e60d4fb45fc305341 +- commit 1f6a42b + +------------------------------------------------------------------- +Thu Nov 14 16:43:15 CET 2024 - jgross@suse.com + +- virtio_pmem: Check device status before requesting flush + (CVE-2024-50184 bsc#1233135). +- commit 4e28ae6 + +------------------------------------------------------------------- +Thu Nov 14 16:25:22 CET 2024 - jgross@suse.com + +- KVM: SEV-ES: Fix svm_get_msr()/svm_set_msr() for KVM_SEV_ES_INIT + guests (bsc#1232207). +- commit 4b9eff5 + +------------------------------------------------------------------- +Thu Nov 14 13:49:22 CET 2024 - jgross@suse.com + +- KVM: SEV-ES: Prevent MSR access post VMSA encryption + (bsc#1232207). +- commit 61f28ae + +------------------------------------------------------------------- +Thu Nov 14 13:34:42 CET 2024 - ptesarik@suse.com + +- u64_stats: fix u64_stats_init() for lockdep when used repeatedly + in one file (git-fixes). +- commit 017d59a + +------------------------------------------------------------------- +Thu Nov 14 12:11:06 CET 2024 - sjaeckel@suse.de + +- tcp/dccp: Don't use timer_pending() in reqsk_queue_unlink() + (CVE-2024-50154 bsc#1233070). +- commit 43fc2d5 + +------------------------------------------------------------------- +Thu Nov 14 10:16:35 CET 2024 - shung-hsi.yu@suse.com + +- Refresh patches.kabi/bpf-verifier-kABI-workarounds.patch (bsc#1233350) + Correctly workaround kABI breakage that was introduced with fixes + backported for bsc#1225903. +- commit 52684a5 + +------------------------------------------------------------------- +Thu Nov 14 08:19:25 CET 2024 - tiwai@suse.de + +- ASoC: SOF: ipc4-topology: Only handle dai_config with HW_PARAMS + for ChainDMA (bsc#1233305). +- commit 1b06409 + +------------------------------------------------------------------- +Wed Nov 13 20:54:32 CET 2024 - krisman@suse.de + +- io_uring/rw: fix missing NOWAIT check for O_DIRECT start write + (git-fixes). +- io_uring/sqpoll: close race on waiting for sqring entries + (git-fixes). +- commit 83eaece + +------------------------------------------------------------------- +Wed Nov 13 12:35:24 CET 2024 - mgorman@suse.de + +- mm: shmem: fix data-race in shmem_getattr() (CVE-2024-50228, + bsc#1233204, git fixes (mm/shmem)). +- commit 89c94b7 + +------------------------------------------------------------------- +Wed Nov 13 12:09:35 CET 2024 - jslaby@suse.cz + +- irqchip/gic-v4: Correctly deal with set_affinity on + lazily-mapped VPEs (CVE-2024-50192 bsc#1233106). +- commit 4258dbe + +------------------------------------------------------------------- +Wed Nov 13 12:06:59 CET 2024 - jslaby@suse.cz + +- irqchip/gic-v4: Don't allow a VMOVP on a dying VPE + (CVE-2024-50192 bsc#1233106). +- kABI: Don't allow a VMOVP on a dying VPE (kabi CVE-2024-50192 + bsc#1233106). +- irqchip/gic-v3-its: Avoid explicit cpumask allocation on stack + (git-fixes). +- commit 9bd7834 + +------------------------------------------------------------------- +Wed Nov 13 11:40:39 CET 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: add stack access precision test (bsc#1232823 + CVE-2023-52920). +- bpf: support non-r10 register spill/fill to/from stack in + precision tracking (bsc#1232823 CVE-2023-52920). +- Refresh patches.suse/bpf-Fix-accesses-to-uninit-stack-slots.patch +- Refresh patches.kabi/bpf-verifier-kABI-workarounds.patch +- commit 2dc84ae + +------------------------------------------------------------------- +Wed Nov 13 11:22:43 CET 2024 - sjaeckel@suse.de + +- kABI fix for - Bluetooth: L2CAP: Fix + div-by-zero in l2cap_le_flowctl_init() + (CVE-2024-36968 bsc#1226130). - Refresh + patches.suse/Bluetooth-Ignore-too-large-handle-values-in-BIG.patch. +- Refresh + patches.suse/Bluetooth-L2CAP-Fix-deadlock.patch. - Refresh + patches.suse/Bluetooth-btnxpuart-Enable-Power-Save-feature-on-sta.patch. +- Refresh + patches.suse/bluetooth-hci-disallow-setting-handle-bigger-than-HC.patch. +- Refresh + patches.suse/bluetooth-l2cap-sync-sock-recv-cb-and-release.patch. +- commit d93ac77 + +------------------------------------------------------------------- +Wed Nov 13 10:58:33 CET 2024 - tbogendoerfer@suse.de + +- macsec: Fix use-after-free while sending the offloading packet + (CVE-2024-50261 bsc#1233253). +- commit 493a21e + +------------------------------------------------------------------- +Wed Nov 13 10:11:01 CET 2024 - tiwai@suse.de + +- kABI workaround for ASoC SOF (bsc#1233305). +- commit d8b041e + +------------------------------------------------------------------- +Wed Nov 13 09:25:20 CET 2024 - tiwai@suse.de + +- ASoC: SOF: ipc4-topology: Add definition for generic switch/enum + control (bsc#1233305). +- Refresh + patches.suse/ASoC-SOF-ipc4-topology-Correct-data-structures-for-t-e238b68.patch. +- commit 6d4ee28 + +------------------------------------------------------------------- +Wed Nov 13 09:22:31 CET 2024 - tiwai@suse.de + +- ASoC: SOF: topology: Parse DAI type token for dspless mode + (bsc#1233305). +- ASoC: SOF: topology: dynamically allocate and store DAI + widget->private (bsc#1233305). +- ASoC: SOF: ipc4-topology: change chain_dma handling in + dai_config (bsc#1233305). +- ASoC: SOF: ipc4-topology: set config_length based on + device_count (bsc#1233305). +- ASoC: SOF: Rename amd_bt sof_dai_type (bsc#1233305). +- ASoC: SOF: Add i2s bt dai configuration support for AMD + platforms (bsc#1233305). +- ASoC: SOF: Refactor sof_i2s_tokens reading to update acpbt dai + (bsc#1233305). +- ASoC: SOF: IPC4: synchronize fw_config_params with fw + definitions (bsc#1233305). +- ASoC: SOF: Wire up buffer flags (bsc#1233305). +- ASoC: SOF: add alignment for topology header file struct + definition (bsc#1233305). +- ASoC: SOF: align topology header file with sof topology header + (bsc#1233305). +- ASoC: SOF: ipc4-topology: Add module ID print during module + set up (bsc#1233305). +- ASoC: SOF: ipc4: Add data struct for module notification + message from firmware (bsc#1233305). +- ASoC: SOF: ipc4-topology: Helper to find an swidget by + module/instance id (bsc#1233305). +- ASoC: SOF: Add support for configuring PDM interface from + topology (bsc#1233305). +- ASoC: SOF: IPC4: get pipeline priority from topology + (bsc#1233305). +- ASoC: SOF: ipc4-mtrace: move debug slot related definitions + to header.h (bsc#1233305). +- ASoC: SOF: ipc4-control: Add support for ALSA enum control + (bsc#1233305). +- ASoC: SOF: ipc4-control: Add support for ALSA switch control + (bsc#1233305). +- ASoC: SOF: ipc4-topology: export + sof_ipc4_copier_is_single_format (bsc#1233305). +- ASoC: SOF: ipc4: Add new message type: + SOF_IPC4_GLB_LOAD_LIBRARY_PREPARE (bsc#1233305). +- ASoC: SOF: ipc4-topology: Add deep buffer size to debug prints + (bsc#1233305). +- ASoC: SOF: Deprecate invalid enums in IPC3 (bsc#1233305). +- commit ccbfc43 + +------------------------------------------------------------------- +Wed Nov 13 08:39:39 CET 2024 - tiwai@suse.de + +- ima: fix buffer overrun in ima_eventdigest_init_common + (git-fixes). +- commit 200c852 + +------------------------------------------------------------------- +Tue Nov 12 19:04:54 CET 2024 - vkarasulli@suse.de + +- KVM: arm64: Fix shift-out-of-bounds bug (CVE-2024-50139 + bsc#1233062). +- commit dc4add6 + +------------------------------------------------------------------- +Tue Nov 12 18:22:43 CET 2024 - vkarasulli@suse.de + +- KVM: nSVM: Ignore nCR3[4:0] when loading PDPTEs from memory + (CVE-2024-50115 bsc#1232919). +- commit b8f7c4d + +------------------------------------------------------------------- +Tue Nov 12 17:48:16 CET 2024 - sjaeckel@suse.de + +- Bluetooth: L2CAP: Fix div-by-zero in l2cap_le_flowctl_init() + (CVE-2024-36968 bsc#1226130). +- Refresh + patches.suse/Bluetooth-Ignore-too-large-handle-values-in-BIG.patch. +- Refresh patches.suse/Bluetooth-L2CAP-Fix-deadlock.patch. +- Refresh + patches.suse/Bluetooth-btnxpuart-Enable-Power-Save-feature-on-sta.patch. +- Refresh + patches.suse/bluetooth-hci-disallow-setting-handle-bigger-than-HC.patch. +- Refresh + patches.suse/bluetooth-l2cap-sync-sock-recv-cb-and-release.patch. +- commit c95a285 + +------------------------------------------------------------------- +Tue Nov 12 17:47:56 CET 2024 - sjaeckel@suse.de + +- net: sched: fix use-after-free in taprio_change() + (CVE-2024-50127 bsc#1232907). +- commit 8d80c7f + +------------------------------------------------------------------- +Tue Nov 12 17:08:29 CET 2024 - rgoldwyn@suse.com + +- fsdax: dax_unshare_iter needs to copy entire blocks + (bsc#1233226, CVE-2024-50250). +- fsdax: remove zeroing code from dax_unshare_iter (bsc#1233226, + CVE-2024-50250). +- commit 94457ab + +------------------------------------------------------------------- +Tue Nov 12 12:43:07 CET 2024 - ailiop@suse.com + +- nilfs2: fix kernel bug due to missing clearing of checked flag + (bsc#1233206 CVE-2024-50230). +- commit ba9ac5c + +------------------------------------------------------------------- +Tue Nov 12 10:10:29 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check null pointers before used (bsc#1232371 CVE-2024-49921) +- commit 3bf6629 + +------------------------------------------------------------------- +Mon Nov 11 22:33:32 CET 2024 - tbogendoerfer@suse.de + +- net/ncsi: Disable the ncsi work before freeing the associated + structure (CVE-2024-49945 bsc#1232165). +- commit 75d875c + +------------------------------------------------------------------- +Mon Nov 11 22:09:30 CET 2024 - tbogendoerfer@suse.de + +- e1000e: Remove Meteor Lake SMBUS workarounds (git-fixes). +- i40e: fix race condition by adding filter's intermediate sync + state (git-fixes). +- commit f4e661d + +------------------------------------------------------------------- +Mon Nov 11 12:19:25 CET 2024 - jack@suse.cz + +- Revert "mm/writeback: fix possible divide-by-zero in + wb_dirty_limits(), again" (CVE-2024-42102 bsc#1233132). +- commit 696592c + +------------------------------------------------------------------- +Mon Nov 11 08:59:20 CET 2024 - tiwai@suse.de + +- i2c: designware: do not hold SCL low when I2C_DYNAMIC_TAR_UPDATE + is not set (git-fixes). +- USB: serial: io_edgeport: fix use after free in debug printk + (git-fixes). +- usb: typec: fix potential out of bounds in + ucsi_ccg_update_set_new_cam_cmd() (git-fixes). +- usb: musb: sunxi: Fix accessing an released usb phy (git-fixes). +- commit d16f490 + +------------------------------------------------------------------- +Sat Nov 9 15:13:51 CET 2024 - tiwai@suse.de + +- ASoC: stm: Prevent potential division by zero in + stm32_sai_get_clk_div() (stable-fixes). +- ASoC: stm: Prevent potential division by zero in + stm32_sai_mclk_round_rate() (stable-fixes). +- ASoC: amd: yc: Support dmic on another model of Lenovo Thinkpad + E14 Gen 6 (stable-fixes). +- ASoC: amd: yc: fix internal mic on Xiaomi Book Pro 14 2022 + (stable-fixes). +- ASoC: tas2781: Add new driver version for tas2563 & tas2781 + qfn chip (stable-fixes). +- commit 1f9992e + +------------------------------------------------------------------- +Sat Nov 9 15:11:22 CET 2024 - tiwai@suse.de + +- drm/amdgpu: Fix DPX valid mode check on GC 9.4.3 (git-fixes). +- ASoC: SOF: sof-client-probes-ipc4: Set param_size extension bits + (git-fixes). +- ASoC: stm32: spdifrx: fix dma channel release in + stm32_spdifrx_remove (git-fixes). +- ALSA: firewire-lib: fix return value on fail in + amdtp_tscm_init() (git-fixes). +- media: pulse8-cec: fix data timestamp at pulse8_setup() + (git-fixes). +- media: stb0899_algo: initialize cfr before using it (git-fixes). +- media: adv7604: prevent underflow condition when reporting + colorspace (git-fixes). +- media: cx24116: prevent overflows on SNR calculus (git-fixes). +- media: ar0521: don't overflow when checking PLL values + (git-fixes). +- media: s5p-jpeg: prevent buffer overflows (git-fixes). +- media: dvb_frontend: don't play tricks with underflow values + (git-fixes). +- media: dvbdev: prevent the risk of out of memory access + (git-fixes). +- media: v4l2-tpg: prevent the risk of a division by zero + (git-fixes). +- media: v4l2-ctrls-api: fix error handling for v4l2_g_ctrl() + (git-fixes). +- thunderbolt: Honor TMU requirements in the domain when setting + TMU mode (stable-fixes). +- wifi: iwlegacy: Clear stale interrupts before resuming device + (stable-fixes). +- USB: gadget: dummy-hcd: Fix "task hung" problem (git-fixes). +- usb: gadget: dummy_hcd: execute hrtimer callback in softirq + context (git-fixes). +- usb: gadget: dummy_hcd: Set transfer interval to 1 microframe + (stable-fixes). +- usb: gadget: dummy_hcd: Switch to hrtimer transfer scheduler + (stable-fixes). +- commit c5281d0 + +------------------------------------------------------------------- +Sat Nov 9 14:11:38 CET 2024 - ailiop@suse.com + +- nfs: avoid i_lock contention in nfs_clear_invalid_mapping + (git-fixes). +- commit e6016a1 + +------------------------------------------------------------------- +Sat Nov 9 14:10:27 CET 2024 - ailiop@suse.com + +- nfs: Fix KMSAN warning in decode_getfattr_attrs() (git-fixes). +- commit 9358249 + +------------------------------------------------------------------- +Sat Nov 9 14:03:29 CET 2024 - ailiop@suse.com + +- NFS: remove revoked delegation from server's delegation list + (git-fixes). +- commit 6feb8eb + +------------------------------------------------------------------- +Sat Nov 9 14:01:26 CET 2024 - ailiop@suse.com + +- SUNRPC: Remove BUG_ON call sites (git-fixes). +- commit 5969339 + +------------------------------------------------------------------- +Sat Nov 9 14:00:34 CET 2024 - ailiop@suse.com + +- nilfs2: fix potential deadlock with newly created symlinks + (git-fixes). +- commit 002996c + +------------------------------------------------------------------- +Fri Nov 8 18:47:54 CET 2024 - ggherdovich@suse.cz + +- cpufreq: amd-pstate: add check for cpufreq_cpu_get's return + value (CVE-2024-50009 bsc#1232318). +- commit 15f7e86 + +------------------------------------------------------------------- +Fri Nov 8 12:41:05 CET 2024 - jack@suse.cz + +- ext4: fix error message when rejecting the default hash + (bsc#1232264 CVE-2024-49968). +- commit 5d137c7 + +------------------------------------------------------------------- +Fri Nov 8 11:48:14 CET 2024 - ggherdovich@suse.cz + +- sched/deadline: Fix task_struct reference leak (CVE-2024-41023 + bsc#1228430). +- commit 3a83981 + +------------------------------------------------------------------- +Fri Nov 8 10:45:27 CET 2024 - tbogendoerfer@suse.de + +- be2net: fix potential memory leak in be_xmit() (CVE-2024-50167 + bsc#1233049). +- commit 376f8c7 + +------------------------------------------------------------------- +Fri Nov 8 09:33:54 CET 2024 - tiwai@suse.de + +- can: mcp251xfd: mcp251xfd_get_tef_len(): fix length calculation + (git-fixes). +- can: mcp251xfd: mcp251xfd_ring_alloc(): fix coalescing + configuration when switching CAN modes (git-fixes). +- can: c_can: fix {rx,tx}_errors statistics (git-fixes). +- pwm: imx-tpm: Use correct MODULO value for EPWM mode + (git-fixes). +- commit c5fa961 + +------------------------------------------------------------------- +Thu Nov 7 22:19:18 CET 2024 - dsterba@suse.com + +- blk-rq-qos: fix crash on rq_qos_wait vs. rq_qos_wake_function race (CVE-2024-50082 bsc#1232500) +- commit 6a67bac + +------------------------------------------------------------------- +Thu Nov 7 22:06:48 CET 2024 - dsterba@suse.com + +- btrfs: fix uninitialized pointer free on read_alloc_one_name() error (CVE-2024-50087 bsc#1232499) +- commit a3c097a + +------------------------------------------------------------------- +Thu Nov 7 22:05:16 CET 2024 - dsterba@suse.com + +- btrfs: fix uninitialized pointer free in add_inode_ref() (CVE-2024-50088 bsc#1232498) +- commit 75b1127 + +------------------------------------------------------------------- +Thu Nov 7 22:01:46 CET 2024 - dsterba@suse.com + +- net: microchip: vcap api: Fix memory leaks in vcap_api_encode_rule_test() (CVE-2024-50084 bsc#1232494) +- commit e53e21a + +------------------------------------------------------------------- +Thu Nov 7 21:41:14 CET 2024 - dsterba@suse.com + +- drm/amd/display: fix double free issue during amdgpu module unload (CVE-2024-49989 bsc#1232483) +- commit 6511376 + +------------------------------------------------------------------- +Thu Nov 7 21:10:20 CET 2024 - dsterba@suse.com + +- drm/amd/display: update DML2 policy EnhancedPrefetchScheduleAccelerationFinal DCN35 (CVE-2024-50004 bsc#1232396) +- commit d5739f8 + +------------------------------------------------------------------- +Thu Nov 7 20:56:46 CET 2024 - dsterba@suse.com + +- drm/amd/display: Fix system hang while resume with TBT monitor (CVE-2024-50003 bsc#1232385) +- commit 24ceb7a + +------------------------------------------------------------------- +Thu Nov 7 17:02:21 CET 2024 - tiwai@suse.de + +- thermal: intel: int340x: processor: Fix warning during module + unload (git-fixes). +- commit 2c3d870 + +------------------------------------------------------------------- +Thu Nov 7 15:40:50 CET 2024 - sjaeckel@suse.de + +- mptcp: fix double-free on socket dismantle (CVE-2024-26782 + bsc#1222590). +- mptcp: deal with large GSO size (CVE-2023-52778 bsc#1224948). +- commit 86ee052 + +------------------------------------------------------------------- +Thu Nov 7 14:25:16 CET 2024 - mgorman@suse.de + +- Merge branch 'SUSE-2024' (4ab5f0e9752a) into 'SUSE-2024-RT' +- No -rt specific changes this merge. +- commit 64ea9ce + +------------------------------------------------------------------- +Thu Nov 7 13:33:56 CET 2024 - jack@suse.cz + +- ext4: ext4_search_dir should return a proper error (bsc#1231920 + CVE-2024-47701). +- commit 7c02130 + +------------------------------------------------------------------- +Thu Nov 7 13:33:25 CET 2024 - jack@suse.cz + +- ext4: explicitly exit when ext4_find_inline_entry returns an + error (bsc#1231920 CVE-2024-47701). +- commit e600961 + +------------------------------------------------------------------- +Thu Nov 7 13:32:00 CET 2024 - jack@suse.cz + +- ext4: return error on ext4_find_inline_entry (bsc#1231920 + CVE-2024-47701). +- commit 39b6acc + +------------------------------------------------------------------- +Thu Nov 7 13:14:47 CET 2024 - tbogendoerfer@suse.de + +- igb: Disable threaded IRQ for igb_msix_other (git-fixes). +- commit b8afad1 + +------------------------------------------------------------------- +Thu Nov 7 13:04:09 CET 2024 - jack@suse.cz + +- fs/inode: Prevent dump_mapping() accessing invalid + dentry.d_name.name (bsc#1232387 CVE-2024-49934). +- commit cf2a806 + +------------------------------------------------------------------- +Thu Nov 7 13:03:53 CET 2024 - jack@suse.cz + +- ext4: filesystems without casefold feature cannot be mounted + with siphash (bsc#1232264 CVE-2024-49968). +- commit 1907014 + +------------------------------------------------------------------- +Thu Nov 7 13:03:22 CET 2024 - jack@suse.cz + +- ext4: drop ppath from ext4_ext_replay_update_ex() to avoid + double-free (bsc#1232096 CVE-2024-49983). +- commit 4a6ac53 + +------------------------------------------------------------------- +Thu Nov 7 13:03:07 CET 2024 - jack@suse.cz + +- vfs: fix race between evice_inodes() and find_inode()&iput() + (bsc#1231930 CVE-2024-47679). +- commit dcf9f6e + +------------------------------------------------------------------- +Thu Nov 7 13:02:52 CET 2024 - jack@suse.cz + +- ext4: avoid OOB when system.data xattr changes underneath the + filesystem (bsc#1231920 CVE-2024-47701). +- commit f292cb3 + +------------------------------------------------------------------- +Thu Nov 7 09:47:26 CET 2024 - tiwai@suse.de + +- security/keys: fix slab-out-of-bounds in key_task_permission + (git-fixes). +- platform/x86/amd/pmc: Detect when STB is not available + (git-fixes). +- HID: core: zero-initialize the report buffer (git-fixes). +- commit 277fa5f + +------------------------------------------------------------------- +Thu Nov 7 08:52:10 CET 2024 - tbogendoerfer@suse.de + +- mlxbf_gige: disable RX filters until RX path initialized + (git-fixes). +- commit f2b07e9 + +------------------------------------------------------------------- +Thu Nov 7 06:25:00 CET 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add tests for sdiv/smod overflow cases + (CVE-2024-49888 bsc#1232208). +- commit b193d4f + +------------------------------------------------------------------- +Thu Nov 7 05:51:18 CET 2024 - ddiss@suse.de + +- initramfs: avoid filename buffer overrun (bsc#1232436). +- commit 4918398 + +------------------------------------------------------------------- +Thu Nov 7 05:46:24 CET 2024 - shung-hsi.yu@suse.com + +- netfilter: bpf: must hold reference on net namespace + (bsc#1232894 CVE-2024-50130). +- commit 7d292ad + +------------------------------------------------------------------- +Thu Nov 7 04:32:52 CET 2024 - shung-hsi.yu@suse.com + +- bpftool: Fix undefined behavior in qsort(NULL, 0, + ...) (bsc#1232258 CVE-2024-49987). +- commit 80f8e64 + +------------------------------------------------------------------- +Wed Nov 6 17:59:46 CET 2024 - mhocko@suse.com + +- Update + patches.suse/mm-mmap-no-need-to-call-khugepaged_enter_vma-for-sta.patch + (jsc#PED-11442). +- commit d087a3b + +------------------------------------------------------------------- +Wed Nov 6 14:42:55 CET 2024 - jlee@suse.com + +- fbdev: efifb: Register sysfs groups through driver core + (bsc#1232224 CVE-2024-49925). +- commit 4fd0365 + +------------------------------------------------------------------- +Wed Nov 6 13:23:45 CET 2024 - msuchanek@suse.de + +- aes-gcm-p10: Use the correct bit to test for P10 (bsc#1232704). +- commit f0dea0e + +------------------------------------------------------------------- +Tue Nov 5 22:26:42 CET 2024 - krisman@suse.de + +- ublk: don't allow user copy for unprivileged device + (CVE-2024-50080 bsc#1232502). +- commit 267c92f + +------------------------------------------------------------------- +Tue Nov 5 22:24:27 CET 2024 - krisman@suse.de + +- blk-mq: setup queue ->tag_set before initializing hctx + (CVE-2024-50081 bsc#1232501). +- commit 87d4a82 + +------------------------------------------------------------------- +Tue Nov 5 17:41:14 CET 2024 - oneukum@suse.com + +- media: core: v4l2-ioctl: check if ioctl is known to avoid NULL + name (git-fixes). +- commit c862b93 + +------------------------------------------------------------------- +Tue Nov 5 15:39:08 CET 2024 - oneukum@suse.com + +- media: videobuf2: fix typo: vb2_dbuf -> vb2_qbuf (git-fixes). +- commit 92209c4 + +------------------------------------------------------------------- +Tue Nov 5 14:47:17 CET 2024 - oneukum@suse.com + +- media: bttv: use audio defaults for winfast2000 (git-fixes). +- commit 6e1da70 + +------------------------------------------------------------------- +Tue Nov 5 14:39:14 CET 2024 - mfranc@suse.cz + +- scsi: elx: libefc: Fix potential use after free in + efc_nport_vport_del() (CVE-2024-49852 bsc#1232819). +- commit 51395e6 + +------------------------------------------------------------------- +Tue Nov 5 13:57:57 CET 2024 - jwiesner@suse.de + +- Update config files. + c37e85c135ce ("clocksource: Loosen clocksource watchdog constraints") + introduced a new default for the time skew measured by the clocksource + watchdog. The value was raised from 100 to 125 microseconds. Reflect this + change in the kernel config. This is an x86_64 option only. +- commit 14c1b2d + +------------------------------------------------------------------- +Tue Nov 5 13:09:52 CET 2024 - tiwai@suse.de + +- ALSA: usb-audio: Add quirk for HP 320 FHD Webcam (bsc#1232768). +- commit 7c39137 + +------------------------------------------------------------------- +Tue Nov 5 09:35:40 CET 2024 - shung-hsi.yu@suse.com + +- kABI: bpf: struct bpf_func_state kABI workaround (CVE-2024-47703 + bsc#1231946). +- commit fd45833 + +------------------------------------------------------------------- +Tue Nov 5 08:24:15 CET 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Workaround strict bpf_lsm return value check + (CVE-2024-47703 bsc#1231946). +- selftests/bpf: Add verifier tests for bpf lsm (CVE-2024-47703 + bsc#1231946). +- selftests/bpf: Add return value checks for failed tests + (CVE-2024-47703 bsc#1231946). +- bpf: Fix compare error in function retval_range_within + (CVE-2024-47703 bsc#1231946). +- bpf, lsm: Add check for BPF LSM return value (CVE-2024-47703 + bsc#1231946). +- Refresh patches.suse/bpf-Fail-verification-for-sign-extension-of-packet-d.patch +- Refresh patches.kabi/bpf-struct-bpf_insn_access_aux-workaround.patch +- selftests/bpf: fix timer/test_bad_ret subtest on + test_progs-cpuv4 flavor (CVE-2024-47703 bsc#1231946). +- commit a0c7d4f + +------------------------------------------------------------------- +Tue Nov 5 08:16:32 CET 2024 - tiwai@suse.de + +- rpmsg: glink: Handle rejected intent request better (git-fixes). +- firmware: arm_scmi: Fix slab-use-after-free in + scmi_bus_notifier() (git-fixes). +- commit 01fe6bf + +------------------------------------------------------------------- +Mon Nov 4 18:03:58 CET 2024 - dsterba@suse.com + +- Update references for patches.suse/tracing-timerlat-Fix-a-race-during-cpuhp-processing.patch (CVE-2024-49866 bsc#1232259 git-fixes) +- commit d9311d0 + +------------------------------------------------------------------- +Mon Nov 4 16:27:12 CET 2024 - tiwai@suse.de + +- Move out-of-tree patch into a proper section +- commit c581359 + +------------------------------------------------------------------- +Mon Nov 4 16:26:16 CET 2024 - tiwai@suse.de + +- Revert "ALSA: hda/conexant: Mute speakers at suspend / shutdown" + (bsc#1228269). +- commit 13ce240 + +------------------------------------------------------------------- +Mon Nov 4 16:18:22 CET 2024 - dwagner@suse.de + +- scsi: lpfc: Update lpfc version to 14.4.0.5 (bsc#1232757). +- scsi: lpfc: Support loopback tests with VMID enabled + (bsc#1232757). +- scsi: lpfc: Revise TRACE_EVENT log flag severities from KERN_ERR + to KERN_WARNING (bsc#1232757). +- scsi: lpfc: Ensure DA_ID handling completion before deleting + an NPIV instance (bsc#1232757). +- scsi: lpfc: Fix kref imbalance on fabric ndlps from dev_loss_tmo + handler (bsc#1232757). +- scsi: lpfc: Restrict support for 32 byte CDBs to specific HBAs + (bsc#1232757 bsc#1228119). +- scsi: lpfc: Update phba link state conditional before sending + CMF_SYNC_WQE (bsc#1232757). +- scsi: lpfc: Add ELS_RSP cmd to the list of WQEs to flush in + lpfc_els_flush_cmd() (bsc#1232757). +- scsi: lpfc: Remove trailing space after \n newline + (bsc#1232757). +- commit 3cf27b4 + +------------------------------------------------------------------- +Mon Nov 4 16:14:15 CET 2024 - vkarasulli@suse.de + +- ext4: fix timer use-after-free on failed mount (CVE-2024-49960 + bsc#1232395). +- commit bd6997d + +------------------------------------------------------------------- +Mon Nov 4 16:04:43 CET 2024 - mfranc@suse.cz + +- net/xen-netback: prevent UAF in xenvif_flush_hash() + (CVE-2024-49936 bsc#1232424). +- commit ae05dab + +------------------------------------------------------------------- +Mon Nov 4 15:52:22 CET 2024 - vkarasulli@suse.de + +- tipc: guard against string buffer overrun (CVE-2024-49995 + bsc#1232432). +- commit ada263e + +------------------------------------------------------------------- +Mon Nov 4 14:53:58 CET 2024 - tiwai@suse.de + +- drm/amdkfd: amdkfd_free_gtt_mem clear the correct pointer + (CVE-2024-49991 bsc#1232282). +- commit 1b15839 + +------------------------------------------------------------------- +Mon Nov 4 13:19:32 CET 2024 - dwagner@suse.de + +- nvme: re-fix error-handling for io_uring nvme-passthrough + (git-fixes). +- nvmet-auth: assign dh_key to NULL after kfree_sensitive + (git-fixes). +- nvme-pci: fix race condition between reset and + nvme_dev_disable() (git-fixes). +- nvme: null terminate nvme_tls_attrs (git-fixes). +- nvme-pci: set doorbell config before unquiescing (git-fixes). +- commit d7598b1 + +------------------------------------------------------------------- +Mon Nov 4 10:14:41 CET 2024 - vbabka@suse.cz + +- mm: split critical region in remap_file_pages() and invoke + LSMs in between (CVE-2024-47745 bsc#1232135 git-fix). +- commit 8228ecb + +------------------------------------------------------------------- +Mon Nov 4 09:25:15 CET 2024 - tiwai@suse.de + +- Add alt-commit to AMDGPU patch +- commit 9e50980 + +------------------------------------------------------------------- +Mon Nov 4 09:24:06 CET 2024 - tiwai@suse.de + +- phy: tegra: xusb: Add error pointer check in xusb.c (git-fixes). +- phy: freescale: imx8m-pcie: Do CMN_RST just before PHY PLL + lock check (git-fixes). +- phy: ti: phy-j721e-wiz: fix usxgmii configuration (git-fixes). +- phy: qcom: qmp-combo: move driver data initialisation earlier + (git-fixes). +- phy: qcom: qmp-usb: fix NULL-deref on runtime suspend + (git-fixes). +- dmaengine: ti: k3-udma: Set EOP for all TRs in cyclic BCDMA + transfer (git-fixes). +- dmaengine: sh: rz-dmac: handle configs where one address is zero + (git-fixes). +- Revert "driver core: Fix uevent_show() vs driver detach race" + (git-fixes). +- usb: phy: Fix API devm_usb_put_phy() can not release the phy + (git-fixes). +- usb: typec: fix unreleased fwnode_handle in + typec_port_register_altmodes() (git-fixes). +- xhci: Fix Link TRB DMA in command ring stopped completion event + (git-fixes). +- xhci: Use pm_runtime_get to prevent RPM on unsupported systems + (git-fixes). +- usbip: tools: Fix detach_port() invalid port error path + (git-fixes). +- iio: adc: ad7124: fix division by zero in + ad7124_set_channel_odr() (git-fixes). +- staging: iio: frequency: ad9832: fix division by zero in + ad9832_calc_freqreg() (git-fixes). +- iio: light: veml6030: fix microlux value calculation + (git-fixes). +- iio: gts-helper: Fix memory leaks for the error path of + iio_gts_build_avail_scale_table() (git-fixes). +- iio: gts-helper: Fix memory leaks in + iio_gts_build_avail_scale_table() (git-fixes). +- mei: use kvmalloc for read buffer (git-fixes). +- Input: edt-ft5x06 - fix regmap leak when probe fails + (git-fixes). +- modpost: fix input MODULE_DEVICE_TABLE() built for 64-bit on + 32-bit host (git-fixes). +- modpost: fix acpi MODULE_DEVICE_TABLE built with mismatched + endianness (git-fixes). +- sumversion: Fix a memory leak in get_src_version() (git-fixes). +- genirq/msi: Fix off-by-one error in msi_domain_alloc() + (git-fixes). +- commit df7fb9d + +------------------------------------------------------------------- +Mon Nov 4 09:04:48 CET 2024 - jslaby@suse.cz + +- Refresh + patches.suse/PCI-Fix-pci_enable_acs-support-for-the-ACS-quirks.patch. + Update upstream status. +- commit f283868 + +------------------------------------------------------------------- +Mon Nov 4 07:17:46 CET 2024 - neilb@suse.de + +- nfsd: cancel nfsd_shrinker_work using sync mode in + nfs4_state_shutdown_net (git-fixes). +- commit ed2b339 + +------------------------------------------------------------------- +Mon Nov 4 06:45:48 CET 2024 - neilb@suse.de + +- NFSv3: only use NFS timeout for MOUNT when protocols are + compatible (bsc#1231016). +- commit ddbeb4f + +------------------------------------------------------------------- +Mon Nov 4 05:29:33 CET 2024 - jlee@suse.com + +- Update + patches.suse/0002-x86-mm-ident_map-Use-gbpages-only-where-full-GB-page.patch + (bsc#1220382 CVE-2024-50017 bsc#1232312). +- Update patches.suse/ACPI-PAD-fix-crash-in-exit_round_robin.patch + (stable-fixes CVE-2024-49935 bsc#1232370). +- Update + patches.suse/ACPI-battery-Fix-possible-crash-when-unregistering-a.patch + (git-fixes CVE-2024-49955 bsc#1232154). +- Update + patches.suse/ACPI-sysfs-validate-return-type-of-_STR-method.patch + (git-fixes CVE-2024-49860 bsc#1231861). +- Update + patches.suse/ACPICA-check-null-return-of-ACPI_ALLOCATE_ZEROED-in-.patch + (stable-fixes CVE-2024-49962 bsc#1232314). +- Update + patches.suse/ALSA-asihpi-Fix-potential-OOB-array-access.patch + (stable-fixes CVE-2024-50007 bsc#1232394). +- Update + patches.suse/Bluetooth-Call-iso_exit-on-module-unload.patch + (git-fixes CVE-2024-50078 bsc#1232503). +- Update + patches.suse/Bluetooth-ISO-Fix-multiple-init-when-debugfs-is-disa.patch + (git-fixes CVE-2024-50077 bsc#1232504). +- Update + patches.suse/Bluetooth-RFCOMM-FIX-possible-deadlock-in-rfcomm_sk_.patch + (git-fixes CVE-2024-50044 bsc#1231904). +- Update + patches.suse/IB-core-Fix-ib_cache_setup_one-error-flow-cleanup.patch + (git-fixes CVE-2024-47693 bsc#1232013). +- Update + patches.suse/IB-core-Implement-a-limit-on-UMAD-receive-List.patch + (bsc#1228743 CVE-2024-42145 bsc#1223384). +- Update + patches.suse/Input-adp5589-keys-fix-NULL-pointer-dereference.patch + (git-fixes CVE-2024-49871 bsc#1232287). +- Update + patches.suse/KEYS-prevent-NULL-pointer-dereference-in-find_asymme.patch + (git-fixes CVE-2024-47743 bsc#1232129). +- Update + patches.suse/KVM-Use-dedicated-mutex-to-protect-kvm_usage_count-t.patch + (git-fixes CVE-2024-47744 bsc#1232132). +- Update + patches.suse/PCI-keystone-Fix-if-statement-expression-in-ks_pcie_.patch + (git-fixes CVE-2024-47756 bsc#1232185). +- Update + patches.suse/PCI-kirin-Fix-buffer-overflow-in-kirin_pcie_parse_po.patch + (git-fixes CVE-2024-47751 bsc#1232127). +- Update + patches.suse/RDMA-cxgb4-Added-NULL-check-for-lookup_atid.patch + (git-fixes CVE-2024-47749 bsc#1232180). +- Update + patches.suse/RDMA-hns-Fix-Use-After-Free-of-rsv_qp-on-HIP08.patch + (git-fixes CVE-2024-47750 bsc#1232182). +- Update + patches.suse/RDMA-hns-Fix-spin_unlock_irqrestore-called-with-IRQs.patch + (git-fixes CVE-2024-47735 bsc#1232111). +- Update + patches.suse/RDMA-iwcm-Fix-WARNING-at_kernel-workqueue.c-check_fl.patch + (git-fixes CVE-2024-47696 bsc#1231864). +- Update + patches.suse/RDMA-rtrs-clt-Reset-cid-to-con_num-1-to-stay-in-boun.patch + (git-fixes CVE-2024-47695 bsc#1231931). +- Update + patches.suse/RDMA-rtrs-srv-Avoid-null-pointer-deref-during-path-e.patch + (git-fixes CVE-2024-50062 bsc#1232232). +- Update + patches.suse/aoe-fix-the-potential-use-after-free-problem-in-more.patch + (bsc#1218562 CVE-2023-6270 CVE-2024-49982 bsc#1232097). +- Update + patches.suse/bpf-Fail-verification-for-sign-extension-of-packet-d.patch + (git-fixes CVE-2024-47702 bsc#1231924). +- Update + patches.suse/bpf-Fix-helper-writes-to-read-only-maps.patch + (git-fixes CVE-2024-49861 bsc#1232254). +- Update + patches.suse/bpf-Fix-use-after-free-in-bpf_uprobe_multi_link_attach.patch + (git-fixes CVE-2024-47675 bsc#1231926). +- Update + patches.suse/bpf-Zero-former-ARG_PTR_TO_-LONG-INT-args-in-case-of.patch + (git-fixes CVE-2024-47728 bsc#1232076). +- Update + patches.suse/bpf-correctly-handle-malformed-BPF_CORE_TYPE_ID_LOCA.patch + (git-fixes CVE-2024-49850 bsc#1232189). +- Update + patches.suse/cachefiles-fix-dentry-leak-in-cachefiles_open_file.patch + (bsc#1231183 CVE-2024-49870 bsc#1232279). +- Update + patches.suse/can-bcm-Clear-bo-bcm_proc_read-after-remove_proc_ent.patch + (git-fixes CVE-2024-47709 bsc#1232048). +- Update + patches.suse/crypto-iaa-Fix-potential-use-after-free-bug.patch + (git-fixes CVE-2024-47732 bsc#1232109). +- Update + patches.suse/cxl-pci-Fix-disabling-memory-if-DVSEC-CXL-Range-does.patch + (git-fixes CVE-2024-26761 bsc#1230375). +- Update + patches.suse/driver-core-Fix-a-potential-null-ptr-deref-in-module.patch + (git-fixes CVE-2024-47688 bsc#1232009). +- Update + patches.suse/driver-core-bus-Fix-double-free-in-driver-API-bus_re.patch + (stable-fixes CVE-2024-50055 bsc#1232329). +- Update + patches.suse/drivers-media-dvb-frontends-rtl2830-fix-an-out-of-bo.patch + (git-fixes CVE-2024-47697 bsc#1231858). +- Update + patches.suse/drivers-media-dvb-frontends-rtl2832-fix-an-out-of-bo.patch + (git-fixes CVE-2024-47698 bsc#1231859). +- Update + patches.suse/drm-amd-display-Add-null-check-for-set_output_gamma-.patch + (git-fixes CVE-2024-47720 bsc#1232043). +- Update + patches.suse/drm-amd-display-Check-null-pointer-before-dereferenc.patch + (stable-fixes CVE-2024-50049 bsc#1232309). +- Update + patches.suse/drm-amd-display-fixed-integer-types-and-null-check-l.patch + (git-fixes CVE-2024-26767 bsc#1230339). +- Update + patches.suse/drm-omapdrm-Add-missing-check-for-alloc_ordered_work.patch + (git-fixes CVE-2024-49879 bsc#1232349). +- Update + patches.suse/drm-v3d-Stop-the-active-perfmon-before-being-destroy.patch + (git-fixes CVE-2024-50031 bsc#1231947). +- Update + patches.suse/efistub-tpm-Use-ACPI-reclaim-memory-for-event-log-to.patch + (stable-fixes CVE-2024-49858 bsc#1232251). +- Update + patches.suse/ep93xx-clock-Fix-off-by-one-in-ep93xx_div_recalc_rat.patch + (git-fixes CVE-2024-47686 bsc#1232000). +- Update + patches.suse/exfat-fix-memory-leak-in-exfat_load_bitmap.patch + (git-fixes CVE-2024-50013 bsc#1232080). +- Update + patches.suse/fbcon-Fix-a-NULL-pointer-dereference-issue-in-fbcon_.patch + (stable-fixes CVE-2024-50048 bsc#1232310). +- Update + patches.suse/firmware-arm_scmi-Fix-double-free-in-OPTEE-transport.patch + (git-fixes CVE-2024-49853 bsc#1232192). +- Update patches.suse/firmware_loader-Block-path-traversal.patch + (git-fixes CVE-2024-47742 bsc#1232126). +- Update + patches.suse/i2c-stm32f7-Do-not-prepare-unprepare-clock-during-ru.patch + (git-fixes CVE-2024-49985 bsc#1232094). +- Update + patches.suse/i3c-master-cdns-Fix-use-after-free-vulnerability-in-.patch + (stable-fixes CVE-2024-50061 bsc#1232263). +- Update + patches.suse/i3c-master-svc-Fix-use-after-free-vulnerability-in-s.patch + (git-fixes CVE-2024-49874 bsc#1232295). +- Update + patches.suse/i40e-Fix-XDP-program-unloading-while-removing-the-dr.patch + (git-fixes CVE-2024-41047 bsc#1228537). +- Update + patches.suse/idpf-fix-UAFs-when-destroying-the-queues.patch + (git-fixes CVE-2024-44932 bsc#1229808). +- Update + patches.suse/idpf-fix-memory-leaks-and-crashes-while-performing-a.patch + (git-fixes CVE-2024-44964 bsc#1230220). +- Update + patches.suse/iommufd-Protect-against-overflow-of-ALIGN-during-iov.patch + (git-fixes CVE-2024-47719 bsc#1231865). +- Update + patches.suse/jffs2-prevent-xattr-node-from-overflowing-the-eraseblock.patch + (git-fixes CVE-2024-38599 bsc#1226848 bsc#1223384). +- Update patches.suse/jfs-Fix-uaf-in-dbFreeBits.patch (git-fixes + CVE-2024-49903 bsc#1232362). +- Update + patches.suse/jfs-Fix-uninit-value-access-of-new_ea-in-ea_buffer.patch + (git-fixes CVE-2024-49900 bsc#1232359). +- Update + patches.suse/jfs-check-if-leafidx-greater-than-num-leaves-per-dmap-tree.patch + (git-fixes CVE-2024-49902 bsc#1232378). +- Update + patches.suse/jfs-fix-out-of-bounds-in-dbNextAG-and-diAlloc.patch + (git-fixes CVE-2024-47723 bsc#1232050). +- Update + patches.suse/mailbox-bcm2835-Fix-timeout-during-suspend-mode.patch + (git-fixes CVE-2024-49963 bsc#1232147). +- Update + patches.suse/md-Don-t-ignore-suspended-array-in-md_check_recovery-1baa.patch + (bsc#1219596 CVE-2024-26758 bsc#1230341). +- Update patches.suse/media-edia-dvbdev-fix-a-use-after-free.patch + (git-fixes CVE-2024-27043 bsc#1223824 bsc#1218562). +- Update + patches.suse/media-i2c-ar0521-Use-cansleep-version-of-gpiod_set_v.patch + (git-fixes CVE-2024-49961 bsc#1232148). +- Update + patches.suse/media-venus-fix-use-after-free-bug-in-venus_remove-d.patch + (git-fixes CVE-2024-49981 bsc#1232098). +- Update + patches.suse/nbd-fix-race-between-timeout-and-normal-completion.patch + (bsc#1230918 CVE-2024-49855 bsc#1232195). +- Update + patches.suse/net-phy-Remove-LED-entry-from-LEDs-list-on-unregiste.patch + (git-fixes CVE-2024-50023 bsc#1231955). +- Update + patches.suse/net-test-for-not-too-small-csum_start-in-virtio_net_.patch + (git-fixes CVE-2024-49947 bsc#1232162). +- Update + patches.suse/nfsd-call-cache_put-if-xdr_reserve_space-returns-NULL.patch + (git-fixes CVE-2024-47737 bsc#1232056). +- Update + patches.suse/nfsd-map-the-EBADMSG-to-nfserr_io-to-avoid-warning.patch + (git-fixes CVE-2024-49875 bsc#1232333). +- Update + patches.suse/nilfs2-fix-potential-null-ptr-deref-in-nilfs_btree_insert.patch + (git-fixes CVE-2024-47699 bsc#1231916). +- Update + patches.suse/nilfs2-fix-potential-oob-read-in-nilfs_btree_check_delete.patch + (git-fixes CVE-2024-47757 bsc#1232187). +- Update + patches.suse/nouveau-dmem-handle-kcalloc-allocation-failure.patch + (git-fixes CVE-2024-26943 bsc#1230527). +- Update + patches.suse/ocfs2-cancel-dqi_sync_work-before-freeing-oinfo.patch + (git-fixes CVE-2024-49966 bsc#1232141). +- Update + patches.suse/ocfs2-fix-null-ptr-deref-when-journal-load-failed.patch + (git-fixes CVE-2024-49957 bsc#1232152). +- Update + patches.suse/ocfs2-fix-possible-null-ptr-deref-in-ocfs2_set_buffer_uptodate.patch + (git-fixes CVE-2024-49877 bsc#1232339). +- Update + patches.suse/ocfs2-remove-unreasonable-unlock-in-ocfs2_read_blocks.patch + (git-fixes CVE-2024-49965 bsc#1232142). +- Update + patches.suse/parport-Proper-fix-for-array-out-of-bounds-access.patch + (git-fixes CVE-2024-50074 bsc#1232507). +- Update + patches.suse/pinctrl-apple-check-devm_kasprintf-returned-value.patch + (git-fixes CVE-2024-50069 bsc#1232511). +- Update + patches.suse/platform-x86-ISST-Fix-the-KASAN-report-slab-out-of-b.patch + (git-fixes CVE-2024-49886 bsc#1232196). +- Update + patches.suse/powercap-intel_rapl-Fix-off-by-one-in-get_rpi.patch + (git-fixes CVE-2024-49862 bsc#1231871). +- Update + patches.suse/resource-fix-region_intersects-vs-add_memory_driver_.patch + (git-fixes CVE-2024-49878 bsc#1232340). +- Update + patches.suse/scsi-fnic-Move-flush_work-initialization-out-of-if-b.patch + (bsc#1230055 CVE-2024-50025 bsc#1231953). +- Update + patches.suse/scsi-lpfc-validate-hdwq-pointers-before-dereferencing-in.patch + (bsc#1229429 jsc#PED-9899 CVE-2024-49891 bsc#1232218). +- Update + patches.suse/scsi-sd-Fix-off-by-one-error-in-sd_read_block_charac.patch + (bsc#1223848 CVE-2024-47682 bsc#1231856). +- Update + patches.suse/serial-protect-uart_port_dtr_rts-in-uart_shutdown-to.patch + (stable-fixes CVE-2024-50058 bsc#1232285). +- Update + patches.suse/tpm-Clean-up-TPM-space-after-command-failure.patch + (git-fixes CVE-2024-49851 bsc#1232134). +- Update + patches.suse/tty-n_gsm-Fix-use-after-free-in-gsm_cleanup_mux.patch + (stable-fixes CVE-2024-50073 bsc#1232520). +- Update + patches.suse/vhost-scsi-null-ptr-dereference-in-vhost_scsi_get_re.patch + (git-fixes CVE-2024-49863 bsc#1232255). +- Update + patches.suse/vhost_vdpa-assign-irq-bypass-producer-token-correctl.patch + (git-fixes CVE-2024-47748 bsc#1232174). +- Update patches.suse/vmxnet3-Fix-missing-reserved-tailroom.patch + (bsc#1226498 CVE-2024-27026 bsc#1223700). +- Update + patches.suse/vt-prevent-kernel-infoleak-in-con_font_get.patch + (git-fixes CVE-2024-50076 bsc#1232505). +- Update + patches.suse/wifi-ath11k-fix-array-out-of-bound-access-in-SoC-sta.patch + (stable-fixes CVE-2024-49930 bsc#1232260). +- Update + patches.suse/wifi-ath12k-fix-array-out-of-bound-access-in-SoC-sta.patch + (stable-fixes CVE-2024-49931 bsc#1232275). +- Update + patches.suse/wifi-ath9k_htc-Use-__skb_set_length-for-resetting-ur.patch + (stable-fixes CVE-2024-49938 bsc#1232552). +- Update + patches.suse/wifi-cfg80211-Set-correct-chandef-when-starting-CAC.patch + (stable-fixes CVE-2024-49937 bsc#1232427). +- Update + patches.suse/wifi-iwlwifi-mvm-avoid-NULL-pointer-dereference.patch + (stable-fixes CVE-2024-49929 bsc#1232253). +- Update + patches.suse/wifi-mac80211-don-t-use-rate-mask-for-offchannel-TX-.patch + (git-fixes CVE-2024-47738 bsc#1232114). +- Update + patches.suse/wifi-mac80211-use-two-phase-skb-reclamation-in-ieee8.patch + (git-fixes CVE-2024-47713 bsc#1232016). +- Update + patches.suse/wifi-mt76-mt7915-fix-oops-on-non-dbdc-mt7986.patch + (git-fixes CVE-2024-47715 bsc#1231860). +- Update + patches.suse/wifi-mt76-mt7996-fix-NULL-pointer-dereference-in-mt7.patch + (git-fixes CVE-2024-47681 bsc#1231855). +- Update + patches.suse/wifi-mt76-mt7996-use-hweight16-to-get-correct-tx-ant.patch + (git-fixes CVE-2024-47714 bsc#1232018). +- Update + patches.suse/wifi-mwifiex-Fix-memcpy-field-spanning-write-warning.patch + (stable-fixes CVE-2024-50008 bsc#1232317). +- Update + patches.suse/wifi-rtw88-always-wait-for-both-firmware-loading-att.patch + (git-fixes CVE-2024-47718 bsc#1232015). +- Update + patches.suse/wifi-rtw89-avoid-reading-out-of-bounds-when-loading-.patch + (stable-fixes CVE-2024-49928 bsc#1232250). +- Update + patches.suse/wifi-rtw89-avoid-to-add-interface-to-list-twice-when.patch + (stable-fixes CVE-2024-49939 bsc#1232381). +- Update + patches.suse/wifi-wilc1000-fix-potential-RCU-dereference-issue-in.patch + (git-fixes CVE-2024-47712 bsc#1232017). +- Update + patches.suse/xhci-tegra-fix-checked-USB2-port-number.patch + (git-fixes CVE-2024-50075 bsc#1232506). +- commit a270265 + +------------------------------------------------------------------- +Mon Nov 4 05:28:50 CET 2024 - jlee@suse.com + +- Update + patches.suse/i3c-mipi-i3c-hci-Fix-out-of-bounds-access-in-hci_dma.patch + (git-fixes CVE-2023-52766 bsc#1230620). +- Update + patches.suse/media-pci-cx23885-check-cx23885_vdev_init-return.patch + (stable-fixes CVE-2023-52918 bsc#1232047). +- Update + patches.suse/nfc-nci-fix-possible-NULL-pointer-dereference-in-sen.patch + (git-fixes CVE-2023-52919 bsc#1231988). +- Update + patches.suse/ntb-intel-Fix-the-NULL-vs-IS_ERR-bug-for-debugfs_cre.patch + (git-fixes CVE-2023-52917 bsc#1231849). +- Update + patches.suse/tcp-do-not-accept-ACK-of-bytes-we-never-sent.patch + (CVE-2023-52881 bsc#1225611 bsc#1223384). +- Update patches.suse/wifi-ath11k-fix-htt-pktlog-locking.patch + (git-fixes CVE-2023-52800 bsc#1230600). +- commit 9859953 + +------------------------------------------------------------------- +Mon Nov 4 05:11:42 CET 2024 - neilb@suse.de + +- NFSD: Force all NFSv4.2 COPY requests to be synchronous + (CVE-2024-49974 bsc#1232383). +- commit 16045fc + +------------------------------------------------------------------- +Sun Nov 3 21:24:28 CET 2024 - petr.pavlu@suse.com + +- fgraph: Change the name of cpuhp state to "fgraph:online" + (git-fixes). +- commit 59421b3 + +------------------------------------------------------------------- +Sun Nov 3 21:22:36 CET 2024 - petr.pavlu@suse.com + +- fgraph: Fix missing unlock in register_ftrace_graph() + (git-fixes). +- commit 60d91ed + +------------------------------------------------------------------- +Sun Nov 3 19:59:18 CET 2024 - ailiop@suse.com + +- fs/9p: drop inodes immediately on non-.L too (git-fixes). +- commit 5fa5f19 + +------------------------------------------------------------------- +Sun Nov 3 19:58:53 CET 2024 - ailiop@suse.com + +- 9p: explicitly deny setlease attempts (git-fixes). +- commit 474852b + +------------------------------------------------------------------- +Sun Nov 3 19:58:26 CET 2024 - ailiop@suse.com + +- fs/9p: fix the cache always being enabled on files with qid + flags (git-fixes). +- commit 362152c + +------------------------------------------------------------------- +Sun Nov 3 19:52:25 CET 2024 - ailiop@suse.com + +- zonefs: Improve error handling (git-fixes). +- commit cb63c4c + +------------------------------------------------------------------- +Sun Nov 3 19:51:33 CET 2024 - ailiop@suse.com + +- debugfs: fix automount d_fsdata usage (git-fixes). +- commit 5f78a06 + +------------------------------------------------------------------- +Sun Nov 3 19:50:40 CET 2024 - ailiop@suse.com + +- splice: fsnotify_access(in), fsnotify_modify(out) on success + in tee (git-fixes). +- commit d518e6d + +------------------------------------------------------------------- +Sun Nov 3 19:50:06 CET 2024 - ailiop@suse.com + +- splice: fsnotify_access(fd)/fsnotify_modify(fd) in vmsplice + (git-fixes). +- commit d630f18 + +------------------------------------------------------------------- +Sun Nov 3 19:49:32 CET 2024 - ailiop@suse.com + +- splice: always fsnotify_access(in), fsnotify_modify(out) + on success (git-fixes). +- commit e7f8947 + +------------------------------------------------------------------- +Sun Nov 3 19:48:48 CET 2024 - ailiop@suse.com + +- keys: Fix overwrite of key expiration on instantiation + (git-fixes). +- commit 323181d + +------------------------------------------------------------------- +Sun Nov 3 19:47:56 CET 2024 - ailiop@suse.com + +- audit: don't WARN_ON_ONCE(!current->mm) in audit_exe_compare() + (git-fixes). +- commit e2db423 + +------------------------------------------------------------------- +Sun Nov 3 19:32:51 CET 2024 - ailiop@suse.com + +- ocfs2: fix uninit-value in ocfs2_get_block() (git-fixes). +- commit 426a4b1 + +------------------------------------------------------------------- +Sun Nov 3 19:31:08 CET 2024 - ailiop@suse.com + +- keys, dns: Allow key types (eg. DNS) to be reclaimed immediately + on expiry (git-fixes). +- commit ce262a7 + +------------------------------------------------------------------- +Sun Nov 3 19:29:09 CET 2024 - ailiop@suse.com + +- Revert "KEYS: encrypted: Add check for strsep" (git-fixes). +- commit 7aa308c + +------------------------------------------------------------------- +Sun Nov 3 19:26:16 CET 2024 - ailiop@suse.com + +- ubifs: add check for crypto_shash_tfm_digest (git-fixes). +- commit ea9ba15 + +------------------------------------------------------------------- +Sun Nov 3 19:25:49 CET 2024 - ailiop@suse.com + +- ubifs: dbg_orphan_check: Fix missed key type checking + (git-fixes). +- commit 465ad1a + +------------------------------------------------------------------- +Sun Nov 3 19:24:02 CET 2024 - ailiop@suse.com + +- ubifs: Fix adding orphan entry twice for the same inode + (git-fixes). +- commit 93096ab + +------------------------------------------------------------------- +Sun Nov 3 19:21:34 CET 2024 - ailiop@suse.com + +- Revert "ubifs: ubifs_symlink: Fix memleak of inode->i_link in + error path" (git-fixes). +- commit 0a7c17d + +------------------------------------------------------------------- +Sun Nov 3 19:19:23 CET 2024 - ailiop@suse.com + +- ubifs: Fix unattached xattr inode if powercut happens after + deleting (git-fixes). +- commit 6c90268 + +------------------------------------------------------------------- +Sun Nov 3 19:08:05 CET 2024 - ailiop@suse.com + +- audit: don't take task_lock() in audit_exe_compare() code path + (git-fixes). +- Refresh patches.suse/vfs-add-super_operations-get_inode_dev. +- commit d4e23ef + +------------------------------------------------------------------- +Sun Nov 3 16:02:04 CET 2024 - petr.pavlu@suse.com + +- uprobes: fix kernel info leak via "[uprobes]" vma (bsc#1231114 + CVE-2024-46828). +- uprobes: turn xol_area->pages into xol_area->page (bsc#1231114). +- uprobes: introduce the global struct vm_special_mapping + xol_mapping (bsc#1231114). +- commit 4f9954c + +------------------------------------------------------------------- +Sun Nov 3 14:15:34 CET 2024 - petr.pavlu@suse.com + +- sched: sch_cake: fix bulk flow accounting logic for host + fairness (bsc#1231114 CVE-2024-46828). +- commit ad42d5f + +------------------------------------------------------------------- +Sun Nov 3 13:42:31 CET 2024 - ailiop@suse.com + +- xfs: fix finding a last resort AG in xfs_filestream_pick_ag + (git-fixes). +- commit a10af4c + +------------------------------------------------------------------- +Sat Nov 2 14:47:25 CET 2024 - petr.pavlu@suse.com + +- static_call: Handle module init failure correctly in + static_call_del_module() (bsc#1232083 CVE-2024-50002). +- commit af953b9 + +------------------------------------------------------------------- +Sat Nov 2 10:39:31 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Refactor and simplify Samsung Galaxy Book + init (stable-fixes). +- Refresh + patches.suse/ALSA-hda-realtek-Add-quirk-for-Huawei-MateBook-13-KL.patch. +- commit 98d4026 + +------------------------------------------------------------------- +Sat Nov 2 10:39:04 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Enable mic on Vaio VJFH52 (stable-fixes). +- commit 7075c22 + +------------------------------------------------------------------- +Sat Nov 2 10:38:26 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: tas2781: Fix ROG ALLY X audio (stable-fixes). +- commit e26a542 + +------------------------------------------------------------------- +Sat Nov 2 10:34:42 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Fix headset mic on TUXEDO Stellaris 16 Gen6 + mb1 (stable-fixes). +- ALSA: hda/realtek: Fix headset mic on TUXEDO Gemini 17 Gen3 + (stable-fixes). +- ALSA: usb-audio: Add quirks for Dell WD19 dock (stable-fixes). +- ASoC: dapm: fix bounds checker error in dapm_widget_list_create + (git-fixes). +- ASoC: Intel: sst: Fix used of uninitialized ctx to log an error + (git-fixes). +- ASoC: Intel: sst: Support LPE0F28 ACPI HID (stable-fixes). +- ASoC: Intel: bytcr_rt5640: Add DMI quirk for Vexia Edu Atla + 10 tablet (stable-fixes). +- ASoC: Intel: bytcr_rt5640: Add support for non ACPI instantiated + codec (stable-fixes). +- ASoC: codecs: rt5640: Always disable IRQs from + rt5640_cancel_work() (stable-fixes). +- ALSA: hda/realtek: Add subwoofer quirk for Infinix ZERO BOOK 13 + (stable-fixes). +- ALSA: hda/realtek: Limit internal Mic boost on Dell platform + (stable-fixes). +- commit 0d350ca + +------------------------------------------------------------------- +Sat Nov 2 10:32:30 CET 2024 - tiwai@suse.de + +- drm/mediatek: Fix get efuse issue for MT8188 DPTX (git-fixes). +- drm/amd/pm: Vangogh: Fix kernel memory out of bounds write + (git-fixes). +- ACPI: CPPC: Make rmw_lock a raw_spin_lock (git-fixes). +- firmware: arm_sdei: Fix the input parameter of + cpuhp_remove_state() (git-fixes). +- kasan: Fix Software Tag-Based KASAN with GCC (git-fixes). +- commit 2a07e04 + +------------------------------------------------------------------- +Sat Nov 2 10:28:12 CET 2024 - tiwai@suse.de + +- Bluetooth: hci: fix null-ptr-deref in hci_read_supported_codecs + (git-fixes). +- wifi: cfg80211: clear wdev->cqm_config pointer on free + (git-fixes). +- Revert "wifi: iwlwifi: remove retry loops in start" (git-fixes). +- wifi: iwlwifi: mvm: don't add default link in fw restart flow + (git-fixes). +- wifi: iwlwifi: mvm: Fix response handling in + iwl_mvm_send_recovery_cmd() (git-fixes). +- wifi: iwlwifi: mvm: don't leak a link on AP removal (git-fixes). +- wifi: ath11k: Fix invalid ring usage in full monitor mode + (git-fixes). +- wifi: ath10k: Fix memory leak in management tx (git-fixes). +- wifi: brcm80211: BRCM_TRACING should depend on TRACING + (git-fixes). +- wifi: mac80211: skip non-uploaded keys in ieee80211_iter_keys + (git-fixes). +- wifi: mac80211: do not pass a stopped vif to the driver in + .get_txpower (git-fixes). +- mac80211: MAC80211_MESSAGE_TRACING should depend on TRACING + (git-fixes). +- wifi: iwlegacy: Fix "field-spanning write" warning in + il_enqueue_hcmd() (git-fixes). +- ASoC: cs42l51: Fix some error handling paths in cs42l51_probe() + (git-fixes). +- platform/x86: dell-wmi: Ignore suspend notifications + (stable-fixes). +- ACPI: button: Add DMI quirk for Samsung Galaxy Book2 to fix + initial lid detection issue (stable-fixes). +- ACPI: resource: Add LG 16T90SP to irq1_level_low_skip_override[] + (stable-fixes). +- drm/amd/display: Disable PSR-SU on Parade 08-01 TCON too + (stable-fixes). +- drm/amd: Guard against bad data for ATIF ACPI method + (git-fixes). +- usb: gadget: f_uac2: fix return value for UAC2_ATTRIBUTE_STRING + store (git-fixes). +- accel/qaic: Fix the for loop used to walk SG table (git-fixes). +- drm/amd/amdgpu: Fix double unlock in amdgpu_mes_add_ring + (git-fixes). +- drm/msm/dpu: don't always program merge_3d block (git-fixes). +- drm/msm: Allocate memory for disp snapshot with kvzalloc() + (git-fixes). +- drm/msm: Avoid NULL dereference in msm_disp_state_print_regs() + (git-fixes). +- drm/msm/dsi: fix 32-bit signed integer extension in pclk_rate + calculation (git-fixes). +- drm/msm/dsi: improve/fix dsc pclk calculation (git-fixes). +- drm/msm/dpu: check for overflow in _dpu_crtc_setup_lm_bounds() + (git-fixes). +- drm/msm/dpu: move CRTC resource assignment to + dpu_encoder_virt_atomic_check (git-fixes). +- drm/msm/dpu: make sure phys resources are properly initialized + (git-fixes). +- platform/x86: dell-sysman: add support for alienware products + (stable-fixes). +- drm/vboxvideo: Replace fake VLA at end of + vbva_mouse_pointer_shape with real VLA (stable-fixes). +- usb: gadget: f_uac2: fix non-newline-terminated function name + (stable-fixes). +- usb: gadget: f_uac2: Replace snprintf() with the safer + scnprintf() variant (stable-fixes). +- commit 09f40f7 + +------------------------------------------------------------------- +Fri Nov 1 20:01:29 CET 2024 - dsterba@suse.com + +- drm/amd/display: Check null pointers before using them (CVE-2024-49922 bsc#1232374) +- commit 342005c + +------------------------------------------------------------------- +Fri Nov 1 19:47:32 CET 2024 - dsterba@suse.com + +- drm/amd/display: Handle null 'stream_status' in 'planes_changed_for_existing_stream' (CVE-2024-49912 bsc#1232367) +- commit 2394db2 + +------------------------------------------------------------------- +Fri Nov 1 19:39:05 CET 2024 - dsterba@suse.com + +- drm/amd/display: Add NULL check for function pointer in dcn20_set_output_transfer_func (CVE-2024-49911 bsc#1232366) +- commit 6c83ea7 + +------------------------------------------------------------------- +Fri Nov 1 19:22:24 CET 2024 - dsterba@suse.com + +- drm/amd/display: Pass non-null to dcn20_validate_apply_pipe_split_flags (CVE-2024-49923 bsc#1232361) +- commit 3759560 + +------------------------------------------------------------------- +Fri Nov 1 19:15:38 CET 2024 - dsterba@suse.com + +- drm/amd/display: Fix index out of bounds in DCN30 degamma hardware format translation (CVE-2024-49895 bsc#1232352) +- commit f36c162 + +------------------------------------------------------------------- +Fri Nov 1 19:09:39 CET 2024 - dsterba@suse.com + +- drm/amd/display: Initialize denominators' default to 1 (CVE-2024-49899 bsc#1232358) +- commit 282fa51 + +------------------------------------------------------------------- +Fri Nov 1 19:00:40 CET 2024 - dsterba@suse.com + +- Update references for patches.suse/0001-drm-amd-display-Add-null-check-for-afb-in-amdgpu_dm_.patch (bsc#1232335 CVE-2024-49908 bsc#1232357 CVE-2024-49905) +- commit fa3a85a + +------------------------------------------------------------------- +Fri Nov 1 18:52:17 CET 2024 - dsterba@suse.com + +- drm/amd/display: Check phantom_stream before it is used (CVE-2024-49897 bsc#1232355) +- commit d3fcaed + +------------------------------------------------------------------- +Fri Nov 1 18:43:28 CET 2024 - dsterba@suse.com + +- drm/amd/display: Fix index out of bounds in degamma hardware format translation (CVE-2024-49894 bsc#1232354) +- commit db76ccb + +------------------------------------------------------------------- +Fri Nov 1 18:36:48 CET 2024 - dsterba@suse.com + +- drm/amd/display: Add NULL check for function pointer in dcn32_set_output_transfer_func (CVE-2024-49909 bsc#1232337) +- commit 11facc9 + +------------------------------------------------------------------- +Fri Nov 1 18:30:46 CET 2024 - dsterba@suse.com + +- drm/amd/display: Add null check for top_pipe_to_program in commit_planes_for_stream (CVE-2024-49913 bsc#1232307) +- commit 60f7853 + +------------------------------------------------------------------- +Fri Nov 1 18:20:07 CET 2024 - dsterba@suse.com + +- drm/msm/adreno: Assign msm_gpu->pdev earlier to avoid nullptrs (CVE-2024-49901 bsc#1232305) +- commit 69be7bb + +------------------------------------------------------------------- +Fri Nov 1 14:53:56 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/ATL: Implement DF 4.5 NP2 denormalization (jsc#PED-10559). +- commit 52d40f4 + +------------------------------------------------------------------- +Fri Nov 1 14:53:36 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/ATL: Validate address map when information is gathered (jsc#PED-10559). +- commit 94e412f + +------------------------------------------------------------------- +Fri Nov 1 14:53:11 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/ATL: Expand helpers for adding and removing base and hole (jsc#PED-10559). +- commit 2b18348 + +------------------------------------------------------------------- +Fri Nov 1 14:52:54 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/ATL: Read DRAM hole base early (jsc#PED-10559). +- commit e1cf5b5 + +------------------------------------------------------------------- +Fri Nov 1 14:48:59 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/ATL: Add amd_atl pr_fmt() prefix (jsc#PED-10559). +- commit 17f78f9 + +------------------------------------------------------------------- +Fri Nov 1 13:59:05 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check null pointer before try to access it (bsc#1232332 CVE-2024-49906) +- commit f2b2892 + +------------------------------------------------------------------- +Fri Nov 1 13:57:34 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Add null check for pipe_ctx->plane_state in (bsc#1232369 CVE-2024-49914) +- commit c236474 + +------------------------------------------------------------------- +Fri Nov 1 10:58:06 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Add null check for 'afb' in amdgpu_dm_update_cursor (bsc#1232335 CVE-2024-49908) +- commit 64a943f + +------------------------------------------------------------------- +Fri Nov 1 10:47:38 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check null pointers before using dc->clk_mgr (bsc#1232334 CVE-2024-49907) +- commit 366c63a + +------------------------------------------------------------------- +Fri Nov 1 08:27:17 CET 2024 - nmorey@suse.com + +- RDMA/bnxt_re: synchronize the qp-handle table array (git-fixes) +- commit 866dbc5 + +------------------------------------------------------------------- +Fri Nov 1 08:26:48 CET 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix the usage of control path spin locks (git-fixes) +- commit c834f25 + +------------------------------------------------------------------- +Fri Nov 1 08:26:08 CET 2024 - nmorey@suse.com + +- RDMA/mlx5: Round max_rd_atomic/max_dest_rd_atomic up instead of down (git-fixes) +- commit 3c270f2 + +------------------------------------------------------------------- +Fri Nov 1 08:25:29 CET 2024 - nmorey@suse.com + +- RDMA/cxgb4: Dump vendor specific QP details (git-fixes) +- commit 587d3b0 + +------------------------------------------------------------------- +Thu Oct 31 23:06:07 CET 2024 - dsterba@suse.com + +- ext4: fix access to uninitialised lock in fc replay path (CVE-2024-50014 bsc#1232446) +- commit 1b2ba45 + +------------------------------------------------------------------- +Thu Oct 31 22:51:38 CET 2024 - dsterba@suse.com + +- ext4: fix i_data_sem unlock order in ext4_ind_migrate() (CVE-2024-50006 bsc#1232442) +- commit de0e62b + +------------------------------------------------------------------- +Thu Oct 31 21:27:59 CET 2024 - krisman@suse.de + +- scsi: ufs: core: Remove SCSI host only if added (CVE-2024-46843 + bsc#1231100). +- commit b455bee + +------------------------------------------------------------------- +Thu Oct 31 17:50:59 CET 2024 - krisman@suse.de + +- io_uring: check if we need to reschedule during overflow flush + (bsc#1232417 CVE-2024-50060). +- commit 695bc5f + +------------------------------------------------------------------- +Thu Oct 31 17:45:00 CET 2024 - vkarasulli@suse.de + +- iommu/vt-d: Fix potential lockup if qi_submit_sync called + with 0 count (bsc#1232316 CVE-2024-49993). +- commit f1e5ce7 + +------------------------------------------------------------------- +Thu Oct 31 17:09:02 CET 2024 - dsterba@suse.com + +- ext4: dax: fix overflowing extents beyond inode size when partially writing (CVE-2024-50015 bsc#1232079) +- commit 9768b7c + +------------------------------------------------------------------- +Thu Oct 31 16:58:37 CET 2024 - dsterba@suse.com + +- jbd2: stop waiting for space when jbd2_cleanup_journal_tail() returns error (CVE-2024-49959 bsc#1232149) +- commit 8307a3a + +------------------------------------------------------------------- +Thu Oct 31 14:30:50 CET 2024 - dsterba@suse.com + +- of: Add cleanup.h based auto release via __free(device_node) markings (bsc#1232386) +- commit 794e5ba + +------------------------------------------------------------------- +Thu Oct 31 12:23:15 CET 2024 - svarbanov@suse.de + +- net: stmmac: dwmac-tegra: Fix link bring-up sequence (git-fixes) +- commit 277d940 + +------------------------------------------------------------------- +Wed Oct 30 23:17:12 CET 2024 - dsterba@suse.com + +- cpufreq: Avoid a bad reference count on CPU node (CVE-2024-50012 bsc#1232386) +- commit 283b9a0 + +------------------------------------------------------------------- +Wed Oct 30 23:04:36 CET 2024 - dsterba@suse.com + +- ext4: update orig_path in ext4_find_extent() (CVE-2024-49881 bsc#1232201) +- commit 2ed2a04 + +------------------------------------------------------------------- +Wed Oct 30 23:04:06 CET 2024 - dsterba@suse.com + +- ext4: fix slab-use-after-free in ext4_split_extent_at() (bsc#1232201) +- commit c78e4be + +------------------------------------------------------------------- +Wed Oct 30 20:54:24 CET 2024 - krisman@suse.de + +- btrfs: don't BUG_ON on ENOMEM from btrfs_lookup_extent_info() + in walk_down_proc() (CVE-2024-46841 bsc#1231094). +- commit fb4a0c7 + +------------------------------------------------------------------- +Wed Oct 30 18:48:02 CET 2024 - dsterba@suse.com + +- ext4: aovid use-after-free in ext4_ext_insert_extent() (CVE-2024-49883 bsc#1232199) +- commit 2db9cb5 + +------------------------------------------------------------------- +Wed Oct 30 18:38:04 CET 2024 - dsterba@suse.com + +- blk_iocost: fix more out of bound shifts (CVE-2024-49933 bsc#1232368) +- commit df53397 + +------------------------------------------------------------------- +Wed Oct 30 16:48:50 CET 2024 - vkarasulli@suse.de + +- drm/amd/display: Fix index out of bounds in DCN30 color + transformation (CVE-2024-49969 bsc#1232519). +- commit 7d6c264 + +------------------------------------------------------------------- +Wed Oct 30 15:58:31 CET 2024 - petr.pavlu@suse.com + +- static_call: Replace pointless WARN_ON() in + static_call_module_notify() (bsc#1232155 CVE-2024-49954). +- commit 03b6c35 + +------------------------------------------------------------------- +Wed Oct 30 15:54:21 CET 2024 - petr.pavlu@suse.com + +- module: abort module loading when sysfs setup suffer errors + (git-fixes). +- Refresh patches.suse/add-suse-supported-flag.patch. +- commit db27509 + +------------------------------------------------------------------- +Wed Oct 30 15:36:07 CET 2024 - petr.pavlu@suse.com + +- bpf,perf: Fix perf_event_detach_bpf_prog error handling + (git-fixes). +- commit 5b6b2d4 + +------------------------------------------------------------------- +Wed Oct 30 15:33:23 CET 2024 - petr.pavlu@suse.com + +- tracing: Consider the NULL character when validating the event + length (git-fixes). +- commit 6b1d97f + +------------------------------------------------------------------- +Wed Oct 30 15:31:57 CET 2024 - petr.pavlu@suse.com + +- uprobe: avoid out-of-bounds memory access of fetching args + (git-fixes). +- uprobes: encapsulate preparation of uprobe args buffer + (git-fixes). +- commit ead6cfe + +------------------------------------------------------------------- +Wed Oct 30 14:51:36 CET 2024 - mfranc@suse.cz + +- s390/pci: Handle PCI error codes other than 0x3a (git-fixes + bsc#1232629). +- commit e4948be + +------------------------------------------------------------------- +Wed Oct 30 14:49:22 CET 2024 - mfranc@suse.cz + +- s390/sclp: Deactivate sclp after all its users (git-fixes + bsc#1232628). +- commit 9e889e7 + +------------------------------------------------------------------- +Wed Oct 30 14:47:56 CET 2024 - mfranc@suse.cz + +- s390/sclp_vt220: Convert newlines to CRLF instead of LFCR + (git-fixes bsc#1232627). +- commit 5725ee0 + +------------------------------------------------------------------- +Wed Oct 30 14:45:56 CET 2024 - mfranc@suse.cz + +- KVM: s390: Change virtual to physical address access in diag + 0x258 handler (git-fixes bsc#1232626). +- commit 2b0b1e9 + +------------------------------------------------------------------- +Wed Oct 30 14:44:28 CET 2024 - mfranc@suse.cz + +- KVM: s390: gaccess: Check if guest address is in memslot + (git-fixes bsc#1232623). +- commit b583687 + +------------------------------------------------------------------- +Wed Oct 30 14:22:09 CET 2024 - petr.pavlu@suse.com + +- fgraph: Use CPU hotplug mechanism to initialize idle shadow + stacks (git-fixes). +- commit 4265ef9 + +------------------------------------------------------------------- +Wed Oct 30 14:08:07 CET 2024 - petr.pavlu@suse.com + +- mm: khugepaged: fix the arguments order in + khugepaged_collapse_file trace point (git-fixes). +- commit 43546b6 + +------------------------------------------------------------------- +Wed Oct 30 13:50:31 CET 2024 - petr.pavlu@suse.com + +- tracing/hwlat: Fix a race during cpuhp processing (git-fixes). +- tracing/timerlat: Fix a race during cpuhp processing + (git-fixes). +- tracing/timerlat: Drop interface_lock in stop_kthread() + (git-fixes). +- tracing/timerlat: Fix duplicated kthread creation due to CPU + online/offline (git-fixes). +- tracing/osnoise: Fix build when timerlat is not enabled + (git-fixes). +- tracing/timerlat: Add interface_lock around clearing of kthread + in stop_kthread() (git-fixes). +- tracing/timerlat: Only clear timer if a kthread exists + (git-fixes). +- tracing/osnoise: Use a cpumask to know what threads are kthreads + (git-fixes). +- tracing/timerlat: Move hrtimer_init to timerlat_fd open() + (git-fixes). +- tracing/timerlat: Add user-space interface (git-fixes). +- tracing/osnoise: Skip running osnoise if all instances are off + (git-fixes). +- tracing/osnoise: Switch from PF_NO_SETAFFINITY to + migrate_disable (git-fixes). +- commit 8482ad0 + +------------------------------------------------------------------- +Wed Oct 30 12:23:56 CET 2024 - ailiop@suse.com + +- ocfs2: pass u64 to ocfs2_truncate_inline maybe overflow + (git-fixes). +- commit 24fea60 + +------------------------------------------------------------------- +Wed Oct 30 11:58:24 CET 2024 - nik.borisov@suse.com + +- Refresh patches.suse/x86-fix-user-address-masking-non-canonical-speculation-iss.patch. (bsc#1232529) + Give check_range a unique label. Otherwise the macro's 1b label + conflicts with __get_user_1's 1 label and this causes the exception fixup + entry, installed at the end of the file to match the wrong thing. + Instead of matching __get_user_1's 1b label it will match check_range's 1b + label when this macro is expanded for the last time in __get_user_8. + This fixes intermittent random crashes when copying data from userspace. +- commit 3a35fd0 + +------------------------------------------------------------------- +Wed Oct 30 11:24:28 CET 2024 - petr.pavlu@suse.com + +- jump_label: Fix static_key_slow_dec() yet again (git-fixes). +- commit ab363f5 + +------------------------------------------------------------------- +Wed Oct 30 09:20:29 CET 2024 - petr.pavlu@suse.com + +- SUNRPC: Fixup gss_status tracepoint error output (git-fixes). +- commit 84cc417 + +------------------------------------------------------------------- +Tue Oct 29 21:07:53 CET 2024 - dsterba@suse.com + +- drm/amd/display: Deallocate DML memory if allocation fails (CVE-2024-49972 bsc#1232315) +- commit dd5ab13 + +------------------------------------------------------------------- +Tue Oct 29 20:59:47 CET 2024 - dsterba@suse.com + +- drm/amd/display: Check stream before comparing them (CVE-2024-49896 bsc#1232221) +- commit 930546b + +------------------------------------------------------------------- +Tue Oct 29 20:55:31 CET 2024 - dsterba@suse.com + +- drm/amd/pm: ensure the fw_info is not null before using it (CVE-2024-49890 bsc#1232217) +- commit a0e8b9f + +------------------------------------------------------------------- +Tue Oct 29 20:41:30 CET 2024 - dsterba@suse.com + +- drm/amd/display: Initialize get_bytes_per_element's default to 1 (CVE-2024-49892 bsc#1232220) +- commit e1539d0 + +------------------------------------------------------------------- +Tue Oct 29 18:41:23 CET 2024 - dsterba@suse.com + +- drivers/perf: Fix ali_drw_pmu driver interrupt status clearing (CVE-2024-47731 bsc#1232117) +- commit 774dc33 + +------------------------------------------------------------------- +Tue Oct 29 18:39:12 CET 2024 - dsterba@suse.com + +- padata: use integer wrap around to prevent deadlock on seq_nr overflow (CVE-2024-47739 bsc#1232124) +- commit 7e58560 + +------------------------------------------------------------------- +Tue Oct 29 18:33:16 CET 2024 - dsterba@suse.com + +- media: mediatek: vcodec: Fix H264 stateless decoder smatch warning (CVE-2024-47752 bsc#1232130) +- commit 086cd43 + +------------------------------------------------------------------- +Tue Oct 29 18:31:07 CET 2024 - dsterba@suse.com + +- media: mediatek: vcodec: Fix H264 multi stateless decoder smatch warning (CVE-2024-47754 bsc#1232131) +- commit dacb1c6 + +------------------------------------------------------------------- +Tue Oct 29 18:01:27 CET 2024 - dsterba@suse.com + +- media: mediatek: vcodec: Fix VP8 stateless decoder smatch warning (CVE-2024-47753 bsc#1231868) +- commit fed66a9 + +------------------------------------------------------------------- +Tue Oct 29 17:34:26 CET 2024 - vkarasulli@suse.de + +- iommu/vt-d: Always reserve a domain ID for identity setup + (git-fixes). +- commit f7ecad0 + +------------------------------------------------------------------- +Tue Oct 29 16:38:55 CET 2024 - dsterba@suse.com + +- btrfs: clean up our handling of refs == 0 in snapshot delete (CVE-2024-46840 bsc#1231105) +- commit 788d396 + +------------------------------------------------------------------- +Tue Oct 29 16:33:10 CET 2024 - shung-hsi.yu@suse.com + +- kABI: bpf: struct bpf_map kABI workaround (CVE-2024-50063 + bsc#1232435). +- selftests/bpf: Add test for lsm tail call (CVE-2024-50063 + bsc#1232435). +- bpf: Prevent tail call between progs attached to different hooks + (CVE-2024-50063 bsc#1232435). +- commit 666246a + +------------------------------------------------------------------- +Tue Oct 29 16:03:50 CET 2024 - vkarasulli@suse.de + +- iommu/vt-d: Fix incorrect pci_for_each_dma_alias() for non-PCI + devices (git-fixes). +- commit 28951a9 + +------------------------------------------------------------------- +Tue Oct 29 14:55:33 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check null pointers before multiple uses (bsc#1232313 CVE-2024-49920) +- commit 5447aa1 + +------------------------------------------------------------------- +Tue Oct 29 10:57:15 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check link_res->hpo_dp_link_enc before using it (bsc#1231944) +- commit bf57b96 + +------------------------------------------------------------------- +Tue Oct 29 10:52:49 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check null-initialized variables (bsc#1232222 CVE-2024-49898) +- commit a00bfda + +------------------------------------------------------------------- +Tue Oct 29 09:40:48 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check link_res->hpo_dp_link_enc before using it (bsc#1231944 CVE-2024-47704) +- commit 931c899 + +------------------------------------------------------------------- +Tue Oct 29 08:12:37 CET 2024 - tiwai@suse.de + +- spi: spi-fsl-dspi: Fix crash when not using GPIO chip select + (git-fixes). +- spi: mtk-snfi: fix kerneldoc for mtk_snand_is_page_ops() + (git-fixes). +- spi: atmel-quadspi: Fix wrong register value written to MR + (git-fixes). +- commit fd0b348 + +------------------------------------------------------------------- +Mon Oct 28 23:06:31 CET 2024 - krisman@suse.de + +- crypto: stm32/cryp - call finalize with bh disabled + (CVE-2024-47658 bsc#1231436). +- commit 2854148 + +------------------------------------------------------------------- +Mon Oct 28 16:17:52 CET 2024 - henrique.carvalho@suse.com + +- smb: client: fix UAF in async decryption (bsc#1232418 + CVE-2024-50047). +- commit 381863e + +------------------------------------------------------------------- +Mon Oct 28 15:09:34 CET 2024 - tbogendoerfer@suse.de + +- e1000e: fix force smbus during suspend flow (git-fixes). +- commit f9cbf12 + +------------------------------------------------------------------- +Mon Oct 28 15:02:07 CET 2024 - fdmanana@suse.com + +- btrfs: wait for fixup workers before stopping cleaner kthread + during umount (bsc#1232262 CVE-2024-49867). +- btrfs: fix race setting file private on concurrent lseek using + same fd (bsc#1231869 CVE-2024-47741). +- commit af36a3e + +------------------------------------------------------------------- +Mon Oct 28 14:33:54 CET 2024 - tbogendoerfer@suse.de + +- ppp: fix ppp_async_encode() illegal access (CVE-2024-50035 + bsc#1232392). +- net: avoid potential underflow in qdisc_pkt_len_init() with UFO + (CVE-2024-49949 bsc#1232160). +- commit f4bcea0 + +------------------------------------------------------------------- +Mon Oct 28 14:17:25 CET 2024 - tbogendoerfer@suse.de + +- ice: map XDP queues to vectors in ice_vsi_map_rings_to_vectors() + (git-fixes). +- Refresh + patches.suse/ice-move-netif_queue_set_napi-to-rtnl-protected-sect.patch. +- commit 7b44c3c + +------------------------------------------------------------------- +Mon Oct 28 14:14:48 CET 2024 - tbogendoerfer@suse.de + +- net/mlx5: Check capability for fw_reset (git-fixes). +- Refresh + patches.suse/net-mlx5-Fix-MTMP-register-capability-offset-in-MCAM.patch. +- commit 480249d + +------------------------------------------------------------------- +Mon Oct 28 14:08:05 CET 2024 - tbogendoerfer@suse.de + +- net/mlx5e: Don't call cleanup on profile rollback failure + (git-fixes). +- net/mlx5: Unregister notifier on eswitch init failure + (git-fixes). +- net/mlx5: Fix command bitmask initialization (git-fixes). +- net/mlx5: Check for invalid vector index on EQ creation + (git-fixes). +- e1000e: change I219 (19) devices to ADP (git-fixes). +- ice: Flush FDB entries before reset (git-fixes). +- ice: Fix netif_is_ice() in Safe Mode (git-fixes). +- ice: fix VLAN replay after reset (git-fixes). +- ice: disallow DPLL_PIN_STATE_SELECTABLE for dpll output pins + (git-fixes). +- ice: clear port vlan config during reset (git-fixes). +- ice: set correct dst VSI in only LAN filters (git-fixes). +- net/mlx5: Added cond_resched() to crdump collection (git-fixes). +- vduse: avoid using __GFP_NOFAIL (git-fixes). +- igb: Always call igb_xdp_ring_update_tail() under Tx lock + (git-fixes). +- ice: fix VSI lists confusion when adding VLANs (git-fixes). +- ice: fix accounting for filters shared by multiple VSIs + (git-fixes). +- ice: Fix lldp packets dropping after changing the number of + channels (git-fixes). +- net/mlx5: Add missing masks and QoS bit masks for scheduling + elements (git-fixes). +- net/mlx5: Explicitly set scheduling element and TSAR type + (git-fixes). +- net/mlx5e: Add missing link mode to ptys2ext_ethtool_map + (git-fixes). +- net/mlx5e: Add missing link modes to ptys2ethtool_map + (git-fixes). +- net/mlx5: Update the list of the PCI supported devices + (git-fixes). +- ice: do not bring the VSI up, if it was down before the XDP + setup (git-fixes). +- igc: Unlock on error in igc_io_resume() (git-fixes). +- igb: Fix not clearing TimeSync interrupts for 82580 (git-fixes). +- ice: fix truesize operations for PAGE_SIZE >= 8192 (git-fixes). +- ice: fix ICE_LAST_OFFSET formula (git-fixes). +- ice: fix page reuse when PAGE_SIZE is over 8k (git-fixes). +- cxgb4: add forgotten u64 ivlan cast before shift (git-fixes). +- igc: Fix qbv tx latency by setting gtxoffset (git-fixes). +- igc: Fix reset adapter logics when tx mode change (git-fixes). +- igc: Fix qbv_config_change_errors logics (git-fixes). +- igc: Fix packet still tx after gate close by reducing i226 + MAC retry buffer (git-fixes). +- net/mlx5e: Correctly report errors for ethtool rx flows + (git-fixes). +- ice: Fix reset handler (git-fixes). +- idpf: fix UAFs when destroying the queues (git-fixes). +- idpf: fix memleak in vport interrupt configuration (git-fixes). +- idpf: fix memory leaks and crashes while performing a soft reset + (git-fixes). +- igc: Fix double reset adapter triggered from a single taprio + cmd (git-fixes). +- net/mlx5e: Add a check for the return value from + mlx5_port_set_eth_ptys (git-fixes). +- net/mlx5e: Require mlx5 tc classifier action support for IPsec + prio capability (git-fixes). +- net/mlx5: Lag, don't use the hardcoded value of the first port + (git-fixes). +- net/mlx5: Fix error handling in irq_pool_request_irq + (git-fixes). +- ice: add missing WRITE_ONCE when clearing ice_rx_ring::xdp_prog + (git-fixes). +- ice: replace synchronize_rcu with synchronize_net (git-fixes). +- ice: don't busy wait for Rx queue disable in ice_qp_dis() + (git-fixes). +- ice: respect netif readiness in AF_XDP ZC related ndo's + (git-fixes). +- gve: Fix an edge case for TSO skb validity check (git-fixes). +- ice: Fix recipe read procedure (git-fixes). +- gve: Fix XDP TX completion handling when counters overflow + (git-fixes). +- RDMA/mlx5: Use sq timestamp as QP timestamp when RoCE is + disabled (git-fixes). +- idpf: avoid bloating &idpf_q_vector with big %NR_CPUS + (git-fixes). +- i40e: Fix XDP program unloading while removing the driver + (git-fixes). +- ice: use proper macro for testing bit (git-fixes). +- ice: Reject pin requests with unsupported flags (git-fixes). +- e1000e: Fix S0ix residency on corporate systems (git-fixes). +- net/mlx5e: Add mqprio_rl cleanup and free in + mlx5e_priv_cleanup() (git-fixes). +- ice: Rebuild TC queues on VSI queue reconfiguration (git-fixes). +- bnxt_en: Restore PTP tx_avail count in case of skb_pad() error + (git-fixes). +- ice: Fix VSI list rule with ICE_SW_LKUP_LAST type (git-fixes). +- ice: implement AQ download pkg retry (git-fixes). +- ice: fix 200G link speed message log (git-fixes). +- ice: avoid IRQ collision to fix init failure on ACPI S3 resume + (git-fixes). +- bnxt_en: Cap the size of HWRM_PORT_PHY_QCFG forwarded response + (git-fixes). +- gve: ignore nonrelevant GSO type bits when processing TSO + headers (git-fixes). +- net/mlx5e: Fix features validation check for tunneled UDP + (non-VXLAN) packets (git-fixes). +- ice: add flag to distinguish reset from .ndo_bpf in XDP rings + config (git-fixes). +- ice: remove af_xdp_zc_qps bitmap (git-fixes). +- ice: fix reads from NVM Shadow RAM on E830 and E825-C devices + (git-fixes). +- ice: fix iteration of TLVs in Preserved Fields Area (git-fixes). +- net/mlx5: Stop waiting for PCI if pci channel is offline + (git-fixes). +- ice: fix 200G PHY types to link speed mapping (git-fixes). +- e1000e: move force SMBUS near the end of enable_ulp function + (git-fixes). +- ice: fix accounting if a VLAN already exists (git-fixes). +- idpf: don't enable NAPI and interrupts prior to allocating Rx + buffers (git-fixes). +- net/mlx5e: Fix UDP GSO for encapsulated packets (git-fixes). +- net/mlx5e: Use rx_missed_errors instead of rx_dropped for + reporting buffer exhaustion (git-fixes). +- net/mlx5e: Fix IPsec tunnel mode offload feature check + (git-fixes). +- net/mlx5: Lag, do bond only if slaves agree on roce state + (git-fixes). +- idpf: Interpret .set_channels() input differently (git-fixes). +- ice: Interpret .set_channels() input differently (git-fixes). +- idpf: don't skip over ethtool tcp-data-split setting + (git-fixes). +- ice: Fix package download algorithm (git-fixes). +- mlx5: stop warning for 64KB pages (git-fixes). +- mlx5: avoid truncating error message (git-fixes). +- qed: avoid truncating work queue length (git-fixes). +- cxgb4: unnecessary check for 0 in the free_sge_txq_uld() + function (git-fixes). +- cxgb4: Properly lock TX queue for the selftest (git-fixes). +- net: qede: use return from qede_parse_actions() (git-fixes). +- net: qede: use return from qede_parse_flow_attr() for flow_spec + (git-fixes). +- net: qede: use return from qede_parse_flow_attr() for flower + (git-fixes). +- net: qede: sanitize 'rc' in qede_add_tc_flower_fltr() + (git-fixes). +- iavf: Fix TC config comparison with existing adapter TC config + (git-fixes). +- i40e: Report MFS in decimal base instead of hex (git-fixes). +- eth: bnxt: fix counting packets discarded due to OOM and netpoll + (git-fixes). +- bnxt_en: Fix error recovery for 5760X (P7) chips (git-fixes). +- bnxt_en: Fix the PCI-AER routines (git-fixes). +- bnxt_en: refactor reset close code (git-fixes). +- ice: Fix checking for unsupported keys on non-tunnel device + (git-fixes). +- ice: tc: allow zero flags in parsing tc flower (git-fixes). +- ice: tc: check src_vsi in case of traffic from VF (git-fixes). +- vdpa: Fix an error handling path in eni_vdpa_probe() + (git-fixes). +- vdpa_sim_blk: allocate the buffer zeroed (git-fixes). +- vdpa_sim_blk: Fix the potential leak of mgmt_dev (git-fixes). +- commit 58c03fe + +------------------------------------------------------------------- +Mon Oct 28 10:54:33 CET 2024 - nik.borisov@suse.com + +- dcache: keep dentry_hashtable or d_hash_shift even when not used (git-fixes). +- commit d6ce9b3 + +------------------------------------------------------------------- +Mon Oct 28 09:28:40 CET 2024 - nik.borisov@suse.com + +- x86: fix user address masking non-canonical speculation issue (git-fixes). +- commit 561e50e + +------------------------------------------------------------------- +Mon Oct 28 09:19:21 CET 2024 - nik.borisov@suse.com + +- x86: make the masked_user_access_begin() macro use its argument only once (git-fixes). +- commit aa2495e + +------------------------------------------------------------------- +Mon Oct 28 09:19:02 CET 2024 - nik.borisov@suse.com + +- x86: do the user address masking outside the user access area (git-fixes). +- commit a4b9c7b + +------------------------------------------------------------------- +Mon Oct 28 09:13:19 CET 2024 - nik.borisov@suse.com + +- x86: support user address masking instead of non-speculative conditional (git-fixes). +- commit 6536d1f + +------------------------------------------------------------------- +Mon Oct 28 09:03:43 CET 2024 - nik.borisov@suse.com + +- runtime constants: add x86 architecture support (git-fixes). +- commit 32e2def + +------------------------------------------------------------------- +Mon Oct 28 09:03:24 CET 2024 - nik.borisov@suse.com + +- runtime constants: add default dummy infrastructure (git-fixes). +- commit dd17ee6 + +------------------------------------------------------------------- +Mon Oct 28 09:03:06 CET 2024 - nik.borisov@suse.com + +- vfs: dcache: move hashlen_hash() from callers into d_hash() (git-fixes). +- commit c440ebe + +------------------------------------------------------------------- +Mon Oct 28 07:13:50 CET 2024 - ohering@suse.de + +- hv_netvsc: Fix VF namespace also in synthetic NIC NETDEV_REGISTER event (git-fixes). +- commit 3dc5225 + +------------------------------------------------------------------- +Sat Oct 26 10:57:53 CEST 2024 - tiwai@suse.de + +- Drop USB dwc2 patch that caused a regression on RPi3 (bsc#1232342) +- commit c84227d + +------------------------------------------------------------------- +Sat Oct 26 10:00:49 CEST 2024 - tiwai@suse.de + +- ACPI: PRM: Clean up guid type in struct prm_handler_info + (git-fixes). +- commit 8c8a801 + +------------------------------------------------------------------- +Sat Oct 26 09:59:51 CEST 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Add subwoofer quirk for Acer Predator G9-593 + (stable-fixes). +- commit 595e400 + +------------------------------------------------------------------- +Sat Oct 26 09:58:45 CEST 2024 - tiwai@suse.de + +- ACPI: PRM: Find EFI_MEMORY_RUNTIME block for PRM handler and + context (git-fixes). +- ata: libata: Set DID_TIME_OUT for commands that actually timed + out (git-fixes). +- ASoC: max98388: Fix missing increment of variable slot_found + (git-fixes). +- ASoC: qcom: Fix NULL Dereference in + asoc_qcom_lpass_cpu_platform_probe() (git-fixes). +- ALSA: hda/realtek: Update default depop procedure (git-fixes). +- ALSA: hda/tas2781: select CRC32 instead of CRC32_SARWATE + (git-fixes). +- ALSA: firewire-lib: Avoid division by zero in + apply_constraint_to_size() (git-fixes). +- cpufreq/amd-pstate: Fix amd_pstate mode switch on shared memory + systems (git-fixes). +- ntb: intel: Fix the NULL vs IS_ERR() bug for + debugfs_create_dir() (git-fixes). +- commit 33d7ff7 + +------------------------------------------------------------------- +Fri Oct 25 19:09:16 CEST 2024 - vkarasulli@suse.de + +- platform/x86: x86-android-tablets: Fix use after free on + platform_device_register() errors (bsc#1232093 CVE-2024-49986). +- commit a5650bf + +------------------------------------------------------------------- +Fri Oct 25 18:45:05 CEST 2024 - vkarasulli@suse.de + +- thermal: core: Free tzp copy along with the thermal zone + (bsc#1231951 CVE-2024-50027). +- commit 5199a1f + +------------------------------------------------------------------- +Fri Oct 25 18:24:47 CEST 2024 - vkarasulli@suse.de + +- device-dax: correct pgoff align in dax_set_mapping() + (bsc#1231956 CVE-2024-50022). +- commit 527a95e + +------------------------------------------------------------------- +Fri Oct 25 17:54:38 CEST 2024 - tiwai@suse.de + +- ntb: ntb_hw_switchtec: Fix use after free vulnerability in + switchtec_ntb_remove due to race condition (CVE-2024-50059 + bsc#1232345). +- commit 4d86c47 + +------------------------------------------------------------------- +Fri Oct 25 17:07:16 CEST 2024 - vbabka@suse.cz + +- mm: call the security_mmap_file() LSM hook in remap_file_pages() + (CVE-2024-47745 bsc#1232135). +- commit 18a36ea + +------------------------------------------------------------------- +Fri Oct 25 14:54:04 CEST 2024 - sjaeckel@suse.de + +- Bluetooth: L2CAP: Fix uaf in l2cap_connect (CVE-2024-49950 + bsc#1232159). +- commit c906740 + +------------------------------------------------------------------- +Fri Oct 25 12:50:22 CEST 2024 - sjaeckel@suse.de + +- rxrpc: Fix a race between socket set up and I/O thread creation + (CVE-2024-49864 bsc#1232256). +- commit 9a8fa8a + +------------------------------------------------------------------- +Fri Oct 25 12:07:23 CEST 2024 - ailiop@suse.com + +- jfs: Fix sanity check in dbMount (git-fixes). +- commit 82a9085 + +------------------------------------------------------------------- +Fri Oct 25 11:29:51 CEST 2024 - tbogendoerfer@suse.de + +- net/mlx5e: Fix NULL deref in mlx5e_tir_builder_alloc() + (CVE-2024-50000 bsc#1232085). +- commit fe8d0fb + +------------------------------------------------------------------- +Fri Oct 25 11:18:01 CEST 2024 - lhenriques@suse.de + +- ext4: fix double brelse() the buffer of the extents path + (bsc#1232200 CVE-2024-49882). +- ext4: no need to continue when the number of entries is 1 + (bsc#1232140 CVE-2024-49967). +- commit 4a7f79c + +------------------------------------------------------------------- +Fri Oct 25 10:29:35 CEST 2024 - dwagner@suse.de + +- nvme: disable CC.CRIME (NVME_CC_CRIME) (jsc#PED-9901). +- commit e02c81e + +------------------------------------------------------------------- +Fri Oct 25 10:06:22 CEST 2024 - tbogendoerfer@suse.de + +- ice: Fix improper handling of refcount in + ice_sriov_set_msix_vec_count() (CVE-2024-50020 bsc#1231989). +- Refresh patches.suse/ice-Fix-increasing-MSI-X-on-VF.patch. +- commit 879bb19 + +------------------------------------------------------------------- +Fri Oct 25 10:04:06 CEST 2024 - tbogendoerfer@suse.de + +- igb: Do not bring the device up after non-fatal error + (CVE-2024-50040 bsc#1231908). +- ice: Fix improper handling of refcount in + ice_dpll_init_rclk_pins() (CVE-2024-50021 bsc#1231957). +- ppp: do not assume bh is held in ppp_channel_bridge_input() + (CVE-2024-49946 bsc#1232164). +- net/mlx5e: Fix crash caused by calling __xfrm_state_delete() + twice (CVE-2024-49953 bsc#1232156). +- net/mlx5: Fix error path in multi-packet WQE transmit + (CVE-2024-50001 bsc#1232084). +- net: seeq: Fix use after free vulnerability in ether3 Driver + Due to Race Condition (CVE-2024-47747 bsc#1232145). +- vdpa/mlx5: Fix invalid mr resource destroy (CVE-2024-47687 + bsc#1232003). +- Revert "ixgbe: Manual AN-37 for troublesome link partners for + X550 SFI" (git-fixes). +- commit bf0d04c + +------------------------------------------------------------------- +Fri Oct 25 10:01:04 CEST 2024 - oneukum@suse.com + +- net: usb: usbnet: fix name regression (get-fixes). +- commit 05e3778 + +------------------------------------------------------------------- +Fri Oct 25 01:11:46 CEST 2024 - dsterba@suse.com + +- r8169: add tally counter fields added with RTL8125 (CVE-2024-49973 bsc#1232105) +- commit bda1225 + +------------------------------------------------------------------- +Fri Oct 25 01:06:16 CEST 2024 - dsterba@suse.com + +- crypto: hisilicon/qm - flush all work before driver removed (bsc#1232075) +- commit fe52020 + +------------------------------------------------------------------- +Fri Oct 25 01:04:40 CEST 2024 - dsterba@suse.com + +- crypto: hisilicon/qm - inject error before stopping queue (CVE-2024-47730 bsc#1232075) +- commit 2ca1dd9 + +------------------------------------------------------------------- +Thu Oct 24 23:28:01 CEST 2024 - dsterba@suse.com + +- sock_map: Add a cond_resched() in sock_hash_free() (CVE-2024-47710 bsc#1232049) +- commit 0ac9917 + +------------------------------------------------------------------- +Thu Oct 24 21:33:04 CEST 2024 - ematsumiya@suse.de + +- cifs: Fix buffer overflow when parsing NFS reparse points + (bsc#1232089, CVE-2024-49996). +- commit f42a100 + +------------------------------------------------------------------- +Thu Oct 24 21:19:19 CEST 2024 - dsterba@suse.com + +- netfilter: nf_reject_ipv6: fix nf_reject_ip6_tcphdr_put() (CVE-2024-47685 bsc#1231998) +- commit 8da2621 + +------------------------------------------------------------------- +Thu Oct 24 21:07:16 CEST 2024 - dsterba@suse.com + +- net: Fix an unsafe loop on the list (CVE-2024-50024 bsc#1231954) +- commit 89e6925 + +------------------------------------------------------------------- +Thu Oct 24 21:00:39 CEST 2024 - dsterba@suse.com + +- ipv6: avoid possible NULL deref in rt6_uncached_list_flush_dev() (CVE-2024-47707 bsc#1231935) +- commit cc8f915 + +------------------------------------------------------------------- +Thu Oct 24 20:40:04 CEST 2024 - dsterba@suse.com + +- netfilter: br_netfilter: fix panic with metadata_dst skb (CVE-2024-50045 bsc#1231903) +- commit e6591d1 + +------------------------------------------------------------------- +Thu Oct 24 20:01:54 CEST 2024 - dsterba@suse.com + +- block, bfq: fix possible UAF for bfqq->bic with merge chain (CVE-2024-47706 bsc#1231942) +- commit 5c1066e + +------------------------------------------------------------------- +Thu Oct 24 19:46:24 CEST 2024 - dsterba@suse.com + +- tcp: check skb is non-NULL in tcp_rto_delta_us() (CVE-2024-47684 bsc#1231987) +- commit e27a5c2 + +------------------------------------------------------------------- +Thu Oct 24 18:02:07 CEST 2024 - ohering@suse.de + +- add bug references to existing mana changes (bsc#1232033, bsc#1232034, bsc#1232036). +- commit e93ce92 + +------------------------------------------------------------------- +Thu Oct 24 14:26:39 CEST 2024 - rgoldwyn@suse.com + +- filemap: remove use of wait bookmarks (bsc#1224088). +- commit 323bb54 + +------------------------------------------------------------------- +Thu Oct 24 10:53:09 CEST 2024 - nik.borisov@suse.com + +- config: Disable LAM on x86 (bsc#1217845) + LAM is affected by speculative execution vulnerabilities so until LASS + lands it's advisable to be disabled. +- commit 405fa97 + +------------------------------------------------------------------- +Thu Oct 24 10:30:58 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: adjust global_func15 test to validate prog exit + precision (CVE-2024-47703 bsc#1231946). +- selftests/bpf: validate async callback return value check + correctness (CVE-2024-47703 bsc#1231946). +- bpf: enforce precision of R0 on program/async callback return + (CVE-2024-47703 bsc#1231946). +- bpf: unify async callback and program retval checks + (CVE-2024-47703 bsc#1231946). +- commit d5ff894 + +------------------------------------------------------------------- +Thu Oct 24 10:24:51 CEST 2024 - shung-hsi.yu@suse.com + +- bpf: enforce precise retval range on program exit + (CVE-2024-47703 bsc#1231946). +- selftests/bpf: add selftest validating callback result is + enforced (CVE-2024-47703 bsc#1231946). +- bpf: enforce exact retval range on subprog/callback exit + (CVE-2024-47703 bsc#1231946). +- Refresh patches.kabi/bpf-verifier-kABI-workarounds.patch +- bpf: provide correct register name for exception callback + retval check (CVE-2024-47703 bsc#1231946). +- bpf: rearrange bpf_func_state fields to save a bit of memory + (CVE-2024-47703 bsc#1231946). +- Refresh patches.suse/bpf-Add-some-comments-to-stack-representation.patch +- Refresh patches.kabi/bpf-verifier-kABI-workarounds.patch +- bpf: Treat first argument as return value for bpf_throw + (CVE-2024-47703 bsc#1231946). +- commit 5efe683 + +------------------------------------------------------------------- +Thu Oct 24 09:53:03 CEST 2024 - osalvador@suse.de + +- drm/amd/display: Add null check for head_pipe in + dcn32_acquire_idle_pipe_for_head_pipe_in_layer (CVE-2024-49918 + bsc#1231967). +- commit 0e6515f + +------------------------------------------------------------------- +Thu Oct 24 06:35:40 CEST 2024 - osalvador@suse.de + +- drm/amd/display: Add NULL check for clk_mgr and clk_mgr->funcs + in dcn30_init_hw (bsc#1231965 CVE-2024-49917). +- commit 0859f94 + +------------------------------------------------------------------- +Wed Oct 23 19:22:26 CEST 2024 - ailiop@suse.com + +- ocfs2: reserve space for inline xattr before attaching reflink + tree (bsc#1232151 CVE-2024-49958). +- commit 9d01096 + +------------------------------------------------------------------- +Wed Oct 23 17:43:11 CEST 2024 - iivanov@suse.de + +- arm64: probes: Fix uprobes for big-endian kernels (git-fixes) +- commit 5114e0b + +------------------------------------------------------------------- +Wed Oct 23 17:41:37 CEST 2024 - iivanov@suse.de + +- arm64: probes: Fix simulate_ldr*_literal() (git-fixes) +- commit 2795830 + +------------------------------------------------------------------- +Wed Oct 23 17:39:54 CEST 2024 - iivanov@suse.de + +- arm64: probes: Remove broken LDR (literal) uprobe support (git-fixes) +- commit 83d2001 + +------------------------------------------------------------------- +Wed Oct 23 17:38:03 CEST 2024 - dsterba@suse.com + +- spi: hisi-kunpeng: Add verification for the max_frequency provided by the firmware (CVE-2024-47664 bsc#1231442) +- commit 89945c9 + +------------------------------------------------------------------- +Wed Oct 23 17:36:35 CEST 2024 - iivanov@suse.de + +- arm64: Subscribe Microsoft Azure Cobalt 100 to erratum 3194386 (git-fixes) +- commit ad9716f + +------------------------------------------------------------------- +Wed Oct 23 17:35:13 CEST 2024 - iivanov@suse.de + +- arm64: errata: Expand speculative SSBS workaround once more (git-fixes) +- commit f66e878 + +------------------------------------------------------------------- +Wed Oct 23 17:32:20 CEST 2024 - iivanov@suse.de + +- arm64: cputype: Add Neoverse-N3 definitions (git-fixes) +- commit 6a20007 + +------------------------------------------------------------------- +Wed Oct 23 17:26:56 CEST 2024 - iivanov@suse.de + +- arm64: esr: Define ESR_ELx_EC_* constants as UL (git-fixes) +- commit 28e8491 + +------------------------------------------------------------------- +Wed Oct 23 15:17:14 CEST 2024 - pmladek@suse.com + +- printk: Add notation to console_srcu locking (bsc#1232183). +- commit b5edcce + +------------------------------------------------------------------- +Wed Oct 23 15:10:11 CEST 2024 - pmladek@suse.com + +- Update patches.suse/kthread-unpark-only-parked-kthread.patch + (git-fixes, bsc#1231990, CVE-2024-50019). +- commit 1ac001a + +------------------------------------------------------------------- +Wed Oct 23 14:57:40 CEST 2024 - nik.borisov@suse.com + +- x86/bugs: Do not use UNTRAIN_RET with IBPB on entry (git-fixes). +- commit 9059d40 + +------------------------------------------------------------------- +Wed Oct 23 14:56:36 CEST 2024 - nik.borisov@suse.com + +- x86/bugs: Skip RSB fill at VMEXIT (git-fixes). +- commit 1c2e2e9 + +------------------------------------------------------------------- +Wed Oct 23 14:55:06 CEST 2024 - mfranc@suse.cz + +- supported.conf: mark ultravisor userspace access as supported (bsc#1232090) + This is needed for secure execution attestations feature. +- commit 9d4c7ad + +------------------------------------------------------------------- +Wed Oct 23 14:54:57 CEST 2024 - nik.borisov@suse.com + +- x86/entry: Have entry_ibpb() invalidate return predictions (git-fixes). +- commit 8e4a09c + +------------------------------------------------------------------- +Wed Oct 23 14:49:23 CEST 2024 - nik.borisov@suse.com + +- x86/cpufeatures: Add a IBPB_NO_RET BUG flag (git-fixes). +- commit 4411a53 + +------------------------------------------------------------------- +Wed Oct 23 14:43:28 CEST 2024 - mfranc@suse.cz + +- config s390x: build ultravisor userspace access into the kernel (bsc#1232090) + The new s390-tools attestation-related tools depends on this. It's + better to have this built into the kernel just like in all other + branches. +- commit 25c0449 + +------------------------------------------------------------------- +Wed Oct 23 14:38:26 CEST 2024 - nik.borisov@suse.com + +- x86/cpufeatures: Define X86_FEATURE_AMD_IBPB_RET (git-fixes). +- commit 589671a + +------------------------------------------------------------------- +Wed Oct 23 12:32:05 CEST 2024 - nik.borisov@suse.com + +- x86/tdx: Fix "in-kernel MMIO" check (bsc#1232116 CVE-2024-47727). +- commit 9b65946 + +------------------------------------------------------------------- +Wed Oct 23 12:15:26 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add test for sign extension in + coerce_subreg_to_size_sx() (git-fixes). +- selftests/bpf: Add test for truncation after sign extension + in coerce_reg_to_size_sx() (git-fixes). +- bpf: Fix truncation bug in coerce_reg_to_size_sx() (git-fixes). +- selftests/bpf: Add test for sign extension in + coerce_subreg_to_size_sx() (git-fixes). +- selftests/bpf: Add test for truncation after sign extension + in coerce_reg_to_size_sx() (git-fixes). +- bpf: Fix truncation bug in coerce_reg_to_size_sx() (git-fixes). +- commit 34bee66 + +------------------------------------------------------------------- +Wed Oct 23 12:14:23 CEST 2024 - ailiop@suse.com + +- xfs: fix freeing speculative preallocations for preallocated + files (git-fixes). +- commit 80e4f70 + +------------------------------------------------------------------- +Wed Oct 23 12:10:27 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add test for lsm tail call (CVE-2024-50063). +- commit 810e00e + +------------------------------------------------------------------- +Wed Oct 23 12:08:38 CEST 2024 - ailiop@suse.com + +- xfs: make sure sb_fdblocks is non-negative (git-fixes). +- commit 258a678 + +------------------------------------------------------------------- +Wed Oct 23 12:07:27 CEST 2024 - ailiop@suse.com + +- xfs: remove a racy if_bytes check in xfs_reflink_end_cow_extent + (git-fixes). +- commit 4ab4091 + +------------------------------------------------------------------- +Wed Oct 23 12:04:39 CEST 2024 - ailiop@suse.com + +- xfs: convert delayed extents to unwritten when zeroing post + eof blocks (git-fixes). +- commit 6f12db2 + +------------------------------------------------------------------- +Wed Oct 23 12:03:32 CEST 2024 - ailiop@suse.com + +- xfs: make xfs_bmapi_convert_delalloc() to allocate the target + offset (git-fixes). +- commit 9f0f731 + +------------------------------------------------------------------- +Wed Oct 23 12:02:19 CEST 2024 - ailiop@suse.com + +- xfs: make the seq argument to xfs_bmapi_convert_delalloc() + optional (git-fixes). +- commit 504e0bc + +------------------------------------------------------------------- +Wed Oct 23 12:00:51 CEST 2024 - ailiop@suse.com + +- xfs: validate recovered name buffers when recovering xattr items + (git-fixes). +- commit a53fc5e + +------------------------------------------------------------------- +Wed Oct 23 11:59:30 CEST 2024 - ailiop@suse.com + +- xfs: check shortform attr entry flags specifically (git-fixes). +- commit 621ec11 + +------------------------------------------------------------------- +Wed Oct 23 11:55:40 CEST 2024 - shung-hsi.yu@suse.com + +- kABI: bpf: struct bpf_map kABI workaround (CVE-2024-50063). +- bpf: Prevent tail call between progs attached to different hooks + (CVE-2024-50063). +- commit cef79ef + +------------------------------------------------------------------- +Wed Oct 23 11:55:39 CEST 2024 - ailiop@suse.com + +- xfs: check opcode and iovec count match in + xlog_recover_attri_commit_pass2 (git-fixes). +- commit 2398ba4 + +------------------------------------------------------------------- +Wed Oct 23 11:55:00 CEST 2024 - ailiop@suse.com + +- fat: fix uninitialized variable (git-fixes). +- commit 77f5dad + +------------------------------------------------------------------- +Wed Oct 23 11:12:53 CEST 2024 - osalvador@suse.de + +- drm/amd/display: Add null check for head_pipe in + dcn201_acquire_free_pipe_for_layer (CVE-2024-49919 bsc#1231968). +- commit ff31b31 + +------------------------------------------------------------------- +Wed Oct 23 09:42:16 CEST 2024 - tbogendoerfer@suse.de + +- slip: make slhc_remember() more robust against malicious packets + (CVE-2024-50033 bsc#1231914). +- i40e: Fix macvlan leak by synchronizing access to + mac_filter_hash (CVE-2024-50041 bsc#1231907). +- ice: Fix increasing MSI-X on VF (CVE-2024-50042 bsc#1231906). +- commit a1fb8a8 + +------------------------------------------------------------------- +Wed Oct 23 08:18:07 CEST 2024 - tiwai@suse.de + +- pinctrl: ocelot: fix system hang on level based interrupts + (stable-fixes). +- tty: n_gsm: Fix use-after-free in gsm_cleanup_mux + (stable-fixes). +- USB: serial: option: add Telit FN920C04 MBIM compositions + (stable-fixes). +- USB: serial: option: add support for Quectel EG916Q-GL + (stable-fixes). +- drm/vmwgfx: Handle surface check failure correctly (git-fixes). +- drm/amdgpu/swsmu: Only force workload setup on init (git-fixes). +- drm/radeon: Fix encoder->possible_clones (git-fixes). +- commit 4fdf5d1 + +------------------------------------------------------------------- +Wed Oct 23 08:11:28 CEST 2024 - tiwai@suse.de + +- thermal: core: Reference count the zone in + thermal_zone_get_by_id() (CVE-2024-50028 bsc#1231950). +- commit a5813a1 + +------------------------------------------------------------------- +Wed Oct 23 05:24:11 CEST 2024 - shung-hsi.yu@suse.com + +- bpf: Fix a sdiv overflow issue (CVE-2024-49888 bsc#1232208). +- commit ce8f994 + +------------------------------------------------------------------- +Tue Oct 22 23:11:46 CEST 2024 - ailiop@suse.com + +- kabi fix for NFSv4: Prevent NULL-pointer dereference in + nfs42_complete_copies() (bsc#1231902 CVE-2024-50046). +- NFSv4: Prevent NULL-pointer dereference in + nfs42_complete_copies() (bsc#1231902 CVE-2024-50046). +- commit e5e1a89 + +------------------------------------------------------------------- +Tue Oct 22 15:54:23 CEST 2024 - vbabka@suse.cz + +- zram: don't free statically defined names (CVE-2024-50064 + bsc#1231901). +- commit 645eb93 + +------------------------------------------------------------------- +Tue Oct 22 15:52:01 CEST 2024 - vbabka@suse.cz + +- zram: free secondary algorithms names (CVE-2024-50064 + bsc#1231901). +- commit 293822f + +------------------------------------------------------------------- +Tue Oct 22 12:43:04 CEST 2024 - lhenriques@suse.de + +- block: fix potential invalid pointer dereference in + blk_add_partition (bsc#1231872 CVE-2024-47705). +- block: print symbolic error name instead of error code + (bsc#1231872). +- commit fcde2ed + +------------------------------------------------------------------- +Tue Oct 22 12:01:45 CEST 2024 - ddiss@suse.de + +- nfsd: return -EINVAL when namelen is 0 (CVE-2024-47692 + bsc#1231857). +- commit 9ee6831 + +------------------------------------------------------------------- +Tue Oct 22 11:56:22 CEST 2024 - jslaby@suse.cz + +- PCI: Fix pci_enable_acs() support for the ACS quirks (bsc#1229019). +- commit 1bd1860 + +------------------------------------------------------------------- +Tue Oct 22 11:40:54 CEST 2024 - ailiop@suse.com + +- nilfs2: fix kernel bug due to missing clearing of buffer delay + flag (git-fixes). +- commit 472d949 + +------------------------------------------------------------------- +Mon Oct 21 17:08:33 CEST 2024 - jgross@suse.com + +- Update + patches.suse/xen-move-max_pfn-in-xen_memory_setup-out-of-function.patch + (bsc#1226003 bsc#1231828). +- commit ec3e6a6 + +------------------------------------------------------------------- +Mon Oct 21 13:43:20 CEST 2024 - nik.borisov@suse.com + +- x86/sev: Check for MWAITX and MONITORX opcodes in the #VC handler (git-fixes). +- commit 23789e3 + +------------------------------------------------------------------- +Mon Oct 21 13:41:00 CEST 2024 - nik.borisov@suse.com + +- x86/apic: Make x2apic_disable() work correctly (git-fixes). +- commit 546101e + +------------------------------------------------------------------- +Mon Oct 21 13:28:12 CEST 2024 - nik.borisov@suse.com + +- x86/entry: Remove unwanted instrumentation in common_interrupt() (git-fixes). +- commit 846156b + +------------------------------------------------------------------- +Mon Oct 21 13:16:04 CEST 2024 - nik.borisov@suse.com + +- x86/mm: Use IPIs to synchronize LAM enablement (git-fixes). +- commit 8a7a0be + +------------------------------------------------------------------- +Mon Oct 21 13:07:35 CEST 2024 - nik.borisov@suse.com + +- x86/amd_nb: Add new PCI IDs for AMD family 1Ah model 60h (git-fixes). +- commit 60a5f34 + +------------------------------------------------------------------- +Mon Oct 21 13:03:52 CEST 2024 - nik.borisov@suse.com + +- x86/PCI: Check pcie_find_root_port() return for NULL (git-fixes). +- commit 7c1cc11 + +------------------------------------------------------------------- +Mon Oct 21 12:43:44 CEST 2024 - vbabka@suse.cz + +- maple_tree: correct tree corruption on spanning store + (git-fixes). +- commit 2b034f1 + +------------------------------------------------------------------- +Mon Oct 21 12:35:07 CEST 2024 - nik.borisov@suse.com + +- x86/resctrl: Avoid overflow in MB settings in bw_validate() (git-fixes). +- commit b2f0d6d + +------------------------------------------------------------------- +Mon Oct 21 12:34:47 CEST 2024 - nik.borisov@suse.com + +- x86/resctrl: Annotate get_mem_config() functions as __init (git-fixes). +- commit 7e80f38 + +------------------------------------------------------------------- +Mon Oct 21 12:21:56 CEST 2024 - nik.borisov@suse.com + +- x86/apic: Always explicitly disarm TSC-deadline timer (git-fixes). +- commit 312d3e7 + +------------------------------------------------------------------- +Mon Oct 21 12:19:13 CEST 2024 - nik.borisov@suse.com + +- x86/CPU/AMD: Only apply Zenbleed fix for Zen2 during late microcode load (git-fixes). +- commit 0cb125d + +------------------------------------------------------------------- +Mon Oct 21 12:08:59 CEST 2024 - davide.benini@suse.com + +- ethtool: fail closed if we can't get max channel used in + indirection tables (CVE-2024-46834 bsc#1231096). +- commit 5cacc93 + +------------------------------------------------------------------- +Mon Oct 21 09:41:04 CEST 2024 - tiwai@suse.de + +- Bluetooth: btusb: Fix regression with fake CSR controllers + 0a12:0001 (git-fixes). +- Bluetooth: bnep: fix wild-memory-access in proto_unregister + (git-fixes). +- Bluetooth: Remove debugfs directory on module init failure + (git-fixes). +- Bluetooth: Call iso_exit() on module unload (git-fixes). +- Bluetooth: ISO: Fix multiple init when debugfs is disabled + (git-fixes). +- pinctrl: apple: check devm_kasprintf() returned value + (git-fixes). +- parport: Proper fix for array out-of-bounds access (git-fixes). +- iio: frequency: admv4420: fix missing select REMAP_SPI in + Kconfig (git-fixes). +- iio: adc: ti-ads8688: add missing select IIO_(TRIGGERED_)BUFFER + in Kconfig (git-fixes). +- iio: hid-sensors: Fix an error handling path in + _hid_sensor_set_report_latency() (git-fixes). +- iio: dac: stm32-dac-core: add missing select REGMAP_MMIO in + Kconfig (git-fixes). +- iio: dac: ltc1660: add missing select REGMAP_SPI in Kconfig + (git-fixes). +- iio: dac: ad5770r: add missing select REGMAP_SPI in Kconfig + (git-fixes). +- iio: amplifiers: ada4250: add missing select REGMAP_SPI in + Kconfig (git-fixes). +- iio: frequency: adf4377: add missing select REMAP_SPI in Kconfig + (git-fixes). +- iio: proximity: mb1232: add missing select + IIO_(TRIGGERED_)BUFFER in Kconfig (git-fixes). +- iio: dac: ad5766: add missing select IIO_(TRIGGERED_)BUFFER + in Kconfig (git-fixes). +- iio: dac: ad3552r: add missing select IIO_(TRIGGERED_)BUFFER + in Kconfig (git-fixes). +- iio: adc: ti-lmp92064: add missing select REGMAP_SPI in Kconfig + (git-fixes). +- iio: adc: ti-ads124s08: add missing select + IIO_(TRIGGERED_)BUFFER in Kconfig (git-fixes). +- iio: accel: kx022a: add missing select IIO_(TRIGGERED_)BUFFER + in Kconfig (git-fixes). +- iio: light: veml6030: fix ALS sensor resolution (git-fixes). +- iio: light: opt3001: add missing full-scale range value + (git-fixes). +- iio: light: veml6030: fix IIO device retrieval from embedded + device (git-fixes). +- iio: accel: bma400: Fix uninitialized variable field_value in + tap event handling (git-fixes). +- serial: imx: Update mctrl old_status on RTSD interrupt + (git-fixes). +- vt: prevent kernel-infoleak in con_font_get() (git-fixes). +- xhci: Mitigate failed set dequeue pointer commands (git-fixes). +- xhci: Fix incorrect stream context type macro (git-fixes). +- xhci: tegra: fix checked USB2 port number (git-fixes). +- usb: dwc3: Wait for EndXfer completion before restoring + GUSB2PHYCFG (git-fixes). +- usb: typec: altmode should keep reference to parent (git-fixes). +- commit 5e08e81 + +------------------------------------------------------------------- +Sat Oct 19 19:14:25 CEST 2024 - mfranc@suse.cz + +- supported.conf: mark nhpoly1305 module as supported (bsc#1231035) + In 59d03d7c990c, we marked adiantum as a supported module, I'm afraid + we need to mark nhpoly1305 as supported too (as a dependecy) if we + want adiantum to work. + This makes tcrypt test case 219 (adiantum) pass on SLE15-SP6 (tested + on z15 VM). +- commit 01d2906 + +------------------------------------------------------------------- +Fri Oct 18 19:31:45 CEST 2024 - tbogendoerfer@suse.de + +- vmxnet3: Fix packet corruption in vmxnet3_xdp_xmit_frame + (bsc#1226498). +- vmxnet3: Fix missing reserved tailroom (bsc#1226498). +- commit 1bd55aa + +------------------------------------------------------------------- +Fri Oct 18 14:00:12 CEST 2024 - tbogendoerfer@suse.de + +- vmxnet3: update to version 9 (bsc#1226498). +- vmxnet3: add command to allow disabling of offloads + (bsc#1226498). +- vmxnet3: add latency measurement support in vmxnet3 + (bsc#1226498). +- vmxnet3: prepare for version 9 changes (bsc#1226498). +- vmxnet3: Add XDP support (bsc#1226498). +- commit 3fdc8e3 + +------------------------------------------------------------------- +Fri Oct 18 11:38:13 CEST 2024 - ailiop@suse.com + +- SUNRPC: Fix integer overflow in decode_rc_list() (git-fixes). +- commit 15be003 + +------------------------------------------------------------------- +Fri Oct 18 11:37:32 CEST 2024 - ailiop@suse.com + +- NFSD: Mark filecache "down" if init fails (git-fixes). +- commit ceca4b8 + +------------------------------------------------------------------- +Fri Oct 18 11:34:31 CEST 2024 - ailiop@suse.com + +- SUNRPC: clnt.c: Remove misleading comment (git-fixes). +- commit 2e12710 + +------------------------------------------------------------------- +Fri Oct 18 11:26:40 CEST 2024 - ailiop@suse.com + +- nfs: fix memory leak in error path of nfs4_do_reclaim + (git-fixes). +- commit 1994ef6 + +------------------------------------------------------------------- +Fri Oct 18 11:24:48 CEST 2024 - ailiop@suse.com + +- nfsd: fix delegation_blocked() to block correctly for at least + 30 seconds (git-fixes). +- commit f66078d + +------------------------------------------------------------------- +Fri Oct 18 11:23:40 CEST 2024 - ailiop@suse.com + +- nfsd: return -EINVAL when namelen is 0 (git-fixes). +- commit 1bc1c36 + +------------------------------------------------------------------- +Fri Oct 18 11:22:25 CEST 2024 - ailiop@suse.com + +- nfsd: call cache_put if xdr_reserve_space returns NULL + (git-fixes). +- commit 003f784 + +------------------------------------------------------------------- +Fri Oct 18 11:21:41 CEST 2024 - ailiop@suse.com + +- nfsd: map the EBADMSG to nfserr_io to avoid warning (git-fixes). +- commit 5b8020a + +------------------------------------------------------------------- +Fri Oct 18 11:20:45 CEST 2024 - ailiop@suse.com + +- NFSD: Fix NFSv4's PUTPUBFH operation (git-fixes). +- commit 88290fb + +------------------------------------------------------------------- +Fri Oct 18 11:19:24 CEST 2024 - ailiop@suse.com + +- nfsd: fix refcount leak when file is unhashed after being found + (git-fixes). +- commit 5a551a1 + +------------------------------------------------------------------- +Fri Oct 18 11:18:34 CEST 2024 - ailiop@suse.com + +- nfsd: remove unneeded EEXIST error check in nfsd_do_file_acquire + (git-fixes). +- commit 6d18e0e + +------------------------------------------------------------------- +Fri Oct 18 11:17:44 CEST 2024 - ailiop@suse.com + +- NFS: Avoid unnecessary rescanning of the per-server delegation + list (git-fixes). +- commit e5841ef + +------------------------------------------------------------------- +Fri Oct 18 11:16:15 CEST 2024 - ailiop@suse.com + +- NFSv4: Fix clearing of layout segments in layoutreturn + (git-fixes). +- commit ec4c812 + +------------------------------------------------------------------- +Fri Oct 18 10:01:52 CEST 2024 - tiwai@suse.de + +- ALSA: hda/conexant - Use cached pin control for Node 0x1d on + HP EliteOne 1000 G2 (git-fixes). +- ALSA/hda: intel-sdw-acpi: simplify sdw-master-count property + read (stable-fixes). +- ALSA/hda: intel-sdw-acpi: fetch fwnode once in + sdw_intel_scan_controller() (stable-fixes). +- ALSA/hda: intel-sdw-acpi: cleanup sdw_intel_scan_controller + (stable-fixes). +- ALSA: hda/tas2781: Add new quirk for Lenovo, ASUS, Dell projects + (stable-fixes). +- ALSA: line6: update contact information (stable-fixes). +- ALSA: hda/conexant - Fix audio routing for HP EliteOne 1000 G2 + (stable-fixes). +- ALSA: hda: Sound support for HP Spectre x360 16 inch model 2024 + (stable-fixes). +- commit fb6c2ec + +------------------------------------------------------------------- +Fri Oct 18 09:54:54 CEST 2024 - tiwai@suse.de + +- firmware: arm_scmi: Fix the double free in + scmi_debugfs_common_setup() (git-fixes). +- ALSA: hda/cs8409: Fix possible NULL dereference (git-fixes). +- netdevsim: use cond_resched() in nsim_dev_trap_report_work() + (git-fixes). +- macsec: don't increment counters for an unrelated SA + (git-fixes). +- net: usb: usbnet: fix race in probe failure (git-fixes). +- HID: plantronics: Workaround for an unexcepted opposite volume + key (stable-fixes). +- usb: xhci: Fix problem with xhci resume from suspend + (stable-fixes). +- usb: storage: ignore bogus device raised by JieLi BR21 USB + sound chip (stable-fixes). +- net: phy: Remove LED entry from LEDs list on unregister + (git-fixes). +- net: phy: bcm84881: Fix some error handling paths (git-fixes). +- net: phy: dp83869: fix memory corruption when enabling fiber + (git-fixes). +- kthread: unpark only parked kthread (git-fixes). +- unicode: Don't special case ignorable code points + (stable-fixes). +- fbdev: sisfb: Fix strbuf array overflow (stable-fixes). +- fbcon: Fix a NULL pointer dereference issue in fbcon_putcs + (stable-fixes). +- drm/amd/display: Check null pointer before dereferencing se + (stable-fixes). +- driver core: bus: Fix double free in driver API bus_register() + (stable-fixes). +- driver core: bus: Return -EIO instead of 0 when show/store + invalid bus attribute (stable-fixes). +- comedi: ni_routing: tools: Check when the file could not be + opened (stable-fixes). +- serial: protect uart_port_dtr_rts() in uart_shutdown() too + (stable-fixes). +- usb: dwc2: Adjust the timing of USB Driver Interrupt + Registration in the Crashkernel Scenario (stable-fixes). +- usb: chipidea: udc: enable suspend interrupt after usb reset + (stable-fixes). +- i3c: master: cdns: Fix use after free vulnerability in + cdns_i3c_master Driver Due to Race Condition (stable-fixes). +- media: videobuf2-core: clear memory related fields in + __vb2_plane_dmabuf_put() (stable-fixes). +- clk: imx: Remove CLK_SET_PARENT_GATE for DRAM mux for i.MX7D + (stable-fixes). +- clk: bcm: bcm53573: fix OF node leak in init (stable-fixes). +- i2c: i801: Use a different adapter-name for IDF adapters + (stable-fixes). +- mfd: intel_soc_pmic_chtwc: Make Lenovo Yoga Tab 3 X90F DMI + match less strict (stable-fixes). +- soundwire: intel_bus_common: enable interrupts before exiting + reset (stable-fixes). +- PCI: Mark Creative Labs EMU20k2 INTx masking as broken + (stable-fixes). +- PCI: Add ACS quirk for Qualcomm SA8775P (stable-fixes). +- PCI: Add function 0 DMA alias quirk for Glenfly Arise chip + (stable-fixes). +- drm/amd/display: Revert "Check HDCP returned status" + (stable-fixes). +- HID: multitouch: Add support for lenovo Y9000P Touchpad + (stable-fixes). +- drm/amd/display: Remove a redundant check in authenticated_dp + (stable-fixes). +- HID: i2c-hid: Remove I2C_HID_QUIRK_SET_PWR_WAKEUP_DEV quirk + (stable-fixes). +- commit f829d20 + +------------------------------------------------------------------- +Fri Oct 18 08:40:12 CEST 2024 - nmorey@suse.com + +- RDMA/mlx5: Enforce umem boundaries for explicit ODP page faults (git-fixes) +- commit b9b835e + +------------------------------------------------------------------- +Fri Oct 18 08:39:51 CEST 2024 - nmorey@suse.com + +- RDMA/rtrs-srv: Avoid null pointer deref during path establishment (git-fixes) +- commit cf9eccb + +------------------------------------------------------------------- +Fri Oct 18 08:39:22 CEST 2024 - nmorey@suse.com + +- RDMA/mad: Improve handling of timed out WRs of mad agent (git-fixes) +- commit 72bef76 + +------------------------------------------------------------------- +Thu Oct 17 16:49:47 CEST 2024 - krisman@suse.de + +- io_uring/sqpoll: do not put cpumask on stack (git-fixes). +- io_uring/sqpoll: retain test for whether the CPU is valid + (git-fixes). +- commit ff84c2d + +------------------------------------------------------------------- +Thu Oct 17 11:49:13 CEST 2024 - vbabka@suse.cz + +- mm: avoid leaving partial pfn mappings around in error case + (CVE-2024-47674 bsc#1231673). +- commit 83d1625 + +------------------------------------------------------------------- +Thu Oct 17 09:29:21 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Avoid CPU lockups due fifo occupancy check loop (git-fixes) +- commit 21fb93d + +------------------------------------------------------------------- +Thu Oct 17 09:24:11 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix the GID table length (git-fixes) +- commit 6a0779e + +------------------------------------------------------------------- +Thu Oct 17 09:22:54 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix a bug while setting up Level-2 PBL pages (git-fixes) +- commit d91ede3 + +------------------------------------------------------------------- +Thu Oct 17 09:21:04 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Change the sequence of updating the CQ toggle value (git-fixes) +- commit 414cbde + +------------------------------------------------------------------- +Thu Oct 17 09:17:35 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Return more meaningful error (git-fixes) +- commit 6755798 + +------------------------------------------------------------------- +Thu Oct 17 09:16:17 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix incorrect dereference of srq in async event (git-fixes) +- commit 4e1ef61 + +------------------------------------------------------------------- +Thu Oct 17 09:15:12 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix out of bound check (git-fixes) +- commit d8d1339 + +------------------------------------------------------------------- +Thu Oct 17 09:12:59 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix the max CQ WQEs for older adapters (git-fixes) +- commit 598626b + +------------------------------------------------------------------- +Thu Oct 17 09:12:17 CEST 2024 - nmorey@suse.com + +- RDMA/srpt: Make slab cache names unique (git-fixes) +- commit 29c0fcb + +------------------------------------------------------------------- +Thu Oct 17 09:04:27 CEST 2024 - nmorey@suse.com + +- RDMA/irdma: Fix misspelling of "accept*" (git-fixes) +- commit 2566da7 + +------------------------------------------------------------------- +Thu Oct 17 09:03:06 CEST 2024 - nmorey@suse.com + +- RDMA/cxgb4: Fix RDMA_CM_EVENT_UNREACHABLE error for iWARP (git-fixes) +- commit 89fa27f + +------------------------------------------------------------------- +Thu Oct 17 08:59:43 CEST 2024 - nmorey@suse.com + +- RDMA/core: Fix ENODEV error for iWARP test over vlan (git-fixes) +- commit 4c15511 + +------------------------------------------------------------------- +Thu Oct 17 08:59:08 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Add a check for memory allocation (git-fixes) +- commit abea295 + +------------------------------------------------------------------- +Thu Oct 17 08:56:53 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix incorrect AVID type in WQE structure (git-fixes) +- commit ae91db1 + +------------------------------------------------------------------- +Thu Oct 17 08:56:20 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix a possible memory leak (git-fixes) +- commit 77c3f34 + +------------------------------------------------------------------- +Wed Oct 16 22:23:03 CEST 2024 - krisman@suse.de + +- io_uring/rw: fix cflags posting for single issue multishot read + (git-fixes). +- commit 320c7ee + +------------------------------------------------------------------- +Wed Oct 16 22:12:58 CEST 2024 - krisman@suse.de + +- io_uring/net: harden multishot termination case for recv + (git-fixes). +- commit 6529e65 + +------------------------------------------------------------------- +Wed Oct 16 20:26:49 CEST 2024 - krisman@suse.de + +- io_uring: check for presence of task_work rather than + TIF_NOTIFY_SIGNAL (git-fixes). +- commit 5b92400 + +------------------------------------------------------------------- +Wed Oct 16 20:18:34 CEST 2024 - krisman@suse.de + +- io_uring/io-wq: inherit cpuset of cgroup in io worker + (git-fixes). +- commit 474a07e + +------------------------------------------------------------------- +Wed Oct 16 20:13:50 CEST 2024 - krisman@suse.de + +- io_uring/io-wq: do not allow pinning outside of cpuset + (git-fixes). +- commit e99d8a8 + +------------------------------------------------------------------- +Wed Oct 16 19:57:51 CEST 2024 - krisman@suse.de + +- io_uring/rw: treat -EOPNOTSUPP for IOCB_NOWAIT like -EAGAIN + (git-fixes). +- io_uring/sqpoll: do not allow pinning outside of cpuset + (git-fixes). +- commit 37d0dce + +------------------------------------------------------------------- +Wed Oct 16 19:53:10 CEST 2024 - krisman@suse.de + +- io_uring/eventfd: move to more idiomatic RCU free usage + (git-fixes). +- commit 4e262c3 + +------------------------------------------------------------------- +Wed Oct 16 18:23:27 CEST 2024 - jack@suse.cz + +- udf: Avoid excessive partition lengths (bsc#1230773 + CVE-2024-46777). +- commit ec61258 + +------------------------------------------------------------------- +Wed Oct 16 18:23:13 CEST 2024 - jack@suse.cz + +- fsnotify: clear PARENT_WATCHED flags lazily (bsc#1231439 + CVE-2024-47660). +- commit 133a7e9 + +------------------------------------------------------------------- +Wed Oct 16 15:56:19 CEST 2024 - davide.benini@suse.com + +- netem: fix return value if duplicate enqueue fails + (CVE-2024-45016 bsc#1230429). +- commit 8c9c269 + +------------------------------------------------------------------- +Wed Oct 16 13:36:45 CEST 2024 - oneukum@suse.com + +- media: pci: ipu3-cio2: Initialise timing struct to avoid a + compiler warning (git-fixes). +- commit c21df3e + +------------------------------------------------------------------- +Wed Oct 16 12:34:26 CEST 2024 - oneukum@suse.com + +- wifi: rtw88: Fix USB/SDIO devices not transmitting beacons + (git-fixes). +- commit d46bb93 + +------------------------------------------------------------------- +Wed Oct 16 11:48:31 CEST 2024 - msuchanek@suse.de + +- crypto: powerpc/p10-aes-gcm - Add dependency on CRYPTO_SIMD and + re-enable CRYPTO_AES_GCM_P10 (bsc#1230501 ltc#208632). + - Update config files. +- crypto: powerpc/p10-aes-gcm - Register modules as SIMD + (bsc#1230501 ltc#208632). +- crypto: powerpc/p10-aes-gcm - Re-write AES/GCM stitched + implementation (bsc#1230501 ltc#208632). +- crypto: powerpc/p10-aes-gcm - Disable CRYPTO_AES_GCM_P10 + (bsc#1230501 ltc#208632). +- powerpc/crypto: don't build aes-gcm-p10 by default (bsc#1230501 + ltc#208632). +- powerpc/crypto: fix missing skcipher dependency for aes-gcm-p10 + (bsc#1230501 ltc#208632). +- commit a579f42 + +------------------------------------------------------------------- +Tue Oct 15 15:39:00 CEST 2024 - oneukum@suse.com + +- powercap: intel_rapl: Fix off by one in get_rpi() (git-fixes). +- commit 6c73c0c + ------------------------------------------------------------------- Tue Oct 15 14:45:11 CEST 2024 - mgorman@suse.de @@ -5,12 +6017,1289 @@ Tue Oct 15 14:45:11 CEST 2024 - mgorman@suse.de - No -rt specific changes this merge. - commit b49e7e5 +------------------------------------------------------------------- +Tue Oct 15 12:49:45 CEST 2024 - tzimmermann@suse.com + +- drm/amd/display: Disable DMCUB timeout for DCN35 (bsc#1231435 CVE-2024-46870) +- commit 0a39326 + +------------------------------------------------------------------- +Tue Oct 15 10:25:38 CEST 2024 - tzimmermann@suse.com + +- drm/amd/display: Add disable timeout option (bsc#1231435) +- commit cb303b5 + +------------------------------------------------------------------- +Tue Oct 15 08:38:57 CEST 2024 - tiwai@suse.de + +- Refresh patches.suse/paddings-add-paddings-to-TypeC-stuff.patch + Drop superfluous file mode modifications in the patch that broke the + patch expansion recently +- commit e7ac9e1 + +------------------------------------------------------------------- +Tue Oct 15 08:04:58 CEST 2024 - tiwai@suse.de + +- Move upstreamed scsi patch into sorted section +- commit 5db43b0 + +------------------------------------------------------------------- +Mon Oct 14 17:30:00 CEST 2024 - mkubecek@suse.cz + +- nbd: fix race between timeout and normal completion + (bsc#1230918). +- commit 57c54c8 + +------------------------------------------------------------------- +Mon Oct 14 16:34:18 CEST 2024 - lhenriques@suse.de + +- ext4: mark fc as ineligible using an handle in ext4_xattr_set() + (bsc#1231640). +- ext4: use handle to mark fc as ineligible in + __track_dentry_update() (bsc#1231639). +- jbd2: correctly compare tids with tid_geq function in + jbd2_fc_begin_commit (bsc#1231638). +- ext4: fix incorrect tid assumption in ext4_fc_mark_ineligible() + (bsc#1231637). +- ext4: fix fast commit inode enqueueing during a full journal + commit (bsc#1231636). +- ext4: don't track ranges in fast_commit if inode has inlined + data (bsc#1231635). +- ext4: fix possible tid_t sequence overflows (bsc#1231634). +- commit 6951914 + +------------------------------------------------------------------- +Mon Oct 14 15:56:50 CEST 2024 - oneukum@suse.com + +- net: sysfs: Fix /sys/class/net/ path for statistics + (git-fixes). +- commit 54925d7 + +------------------------------------------------------------------- +Mon Oct 14 15:54:12 CEST 2024 - oneukum@suse.com + +- devlink: Fix command annotation documentation (git-fixes). +- commit 2b95827 + +------------------------------------------------------------------- +Mon Oct 14 15:44:49 CEST 2024 - oneukum@suse.com + +- x86/Documentation: Indent 'note::' directive for protocol + version number note (git-fixes). +- commit ec31602 + +------------------------------------------------------------------- +Mon Oct 14 15:42:12 CEST 2024 - ddiss@suse.de + +- mm/filemap: optimize filemap folio adding (bsc#1231617). +- lib/xarray: introduce a new helper xas_get_order (bsc#1231617). +- mm/filemap: return early if failed to allocate memory for split + (bsc#1231617). +- commit c3c5888 + +------------------------------------------------------------------- +Mon Oct 14 15:32:15 CEST 2024 - oneukum@suse.com + +- srcu: Fix callbacks acceleration mishandling (git-fixes). +- task_work: add kerneldoc annotation for 'data' argument + (git-fixes). +- commit a4661ee + +------------------------------------------------------------------- +Mon Oct 14 08:34:06 CEST 2024 - tiwai@suse.de + +- HID: amd_sfh: Switch to device-managed dmam_alloc_coherent() + (git-fixes). +- hid: intel-ish-hid: Fix uninitialized variable 'rv' in + ish_fw_xfer_direct_dma (git-fixes). +- usb: dwc3: core: Stop processing of pending events if controller + is halted (git-fixes). +- usb: gadget: core: force synchronous registration (git-fixes). +- commit 2bb6fd5 + +------------------------------------------------------------------- +Sun Oct 13 09:19:15 CEST 2024 - tiwai@suse.de + +- hwmon: (adt7470) Add missing dependency on REGMAP_I2C + (git-fixes). +- hwmon: (adm9240) Add missing dependency on REGMAP_I2C + (git-fixes). +- hwmon: (mc34vr500) Add missing dependency on REGMAP_I2C + (git-fixes). +- hwmon: (tmp513) Add missing dependency on REGMAP_I2C + (git-fixes). +- hwmon: intel-m10-bmc-hwmon: relabel Columbiaville to CVL Die + Temperature (git-fixes). +- commit 07e1f67 + +------------------------------------------------------------------- +Sat Oct 12 10:12:54 CEST 2024 - tiwai@suse.de + +- gpio: aspeed: Use devm_clk api to manage clock source + (git-fixes). +- gpio: aspeed: Add the flush write to ensure the write complete + (git-fixes). +- ata: libata: avoid superfluous disk spin down + spin up during + hibernation (git-fixes). +- nouveau/dmem: Fix vulnerability in migrate_to_ram upon copy + error (git-fixes). +- nouveau/dmem: Fix privileged error in copy engine channel + (git-fixes). +- drm/vc4: Stop the active perfmon before being destroyed + (git-fixes). +- drm/v3d: Stop the active perfmon before being destroyed + (git-fixes). +- drm/i915/hdcp: fix connector refcounting (git-fixes). +- commit 8534efe + +------------------------------------------------------------------- +Sat Oct 12 05:12:33 CEST 2024 - shung-hsi.yu@suse.com + +- kABI: bpf: struct bpf_insn_acces_aux kABI workaround (git-fixes). +- commit c2cff36 + +------------------------------------------------------------------- +Fri Oct 11 18:25:31 CEST 2024 - vkarasulli@suse.de + +- Update patches.suse/ASoC-meson-axg-card-fix-use-after-free.patch + (git-fixes CVE-2024-46849 bsc#1231073). +- Update + patches.suse/KVM-x86-Acquire-kvm-srcu-when-handling-KVM_SET_VCPU_.patch + (git-fixes CVE-2024-46830 bsc#1231116). +- Update + patches.suse/PCI-keystone-Add-workaround-for-Errata-i2037-AM65x-S.patch + (stable-fixes CVE-2024-47667 bsc#1231481). +- Update patches.suse/USB-usbtmc-prevent-kernel-usb-infoleak.patch + (git-fixes CVE-2024-47671 bsc#1231541). +- Update patches.suse/arm64-tlb-Fix-TLBI-RANGE-operand.patch + (bsc#1229585 CVE-2024-35980 bsc#1224574). +- Update + patches.suse/dma-buf-heaps-Fix-off-by-one-in-CMA-heap-fault-handl.patch + (git-fixes CVE-2024-46852 bsc#1231082). +- Update + patches.suse/drm-amd-amdgpu-Check-tbo-resource-pointer.patch + (stable-fixes CVE-2024-46807 bsc#1231138). +- Update + patches.suse/drm-amd-display-Add-array-index-check-for-hdcp-ddc-a.patch + (stable-fixes CVE-2024-46804 bsc#1231132). +- Update + patches.suse/drm-amd-display-Avoid-overflow-from-uint32_t-to-uint.patch + (stable-fixes CVE-2024-47661 bsc#1231496). +- Update + patches.suse/drm-amd-display-Avoid-race-between-dcn10_set_drr-and.patch + (git-fixes CVE-2024-46851 bsc#1231081). +- Update + patches.suse/drm-amd-display-Check-BIOS-images-before-it-is-used.patch + (stable-fixes CVE-2024-46809 bsc#1231148). +- Update + patches.suse/drm-amd-display-Check-gpio_id-before-used-as-array-i.patch + (stable-fixes CVE-2024-46818 bsc#1231203). +- Update + patches.suse/drm-amd-display-Check-msg_id-before-processing-trans.patch + (stable-fixes CVE-2024-46814 bsc#1231193). +- Update + patches.suse/drm-amd-display-Check-num_valid_sets-before-accessin.patch + (stable-fixes CVE-2024-46815 bsc#1231195). +- Update + patches.suse/drm-amd-display-Correct-the-defined-value-for-AMDGPU.patch + (stable-fixes CVE-2024-46871 bsc#1231434). +- Update + patches.suse/drm-amd-display-Fix-index-may-exceed-array-range-wit.patch + (stable-fixes CVE-2024-46811 bsc#1231179). +- Update + patches.suse/drm-amd-display-Remove-register-from-DCN35-DMCUB-dia.patch + (stable-fixes CVE-2024-47662 bsc#1231440). +- Update + patches.suse/drm-amd-display-Skip-inactive-planes-within-ModeSupp.patch + (stable-fixes CVE-2024-46812 bsc#1231187). +- Update + patches.suse/drm-amd-display-Stop-amdgpu_dm-initialize-when-strea.patch + (stable-fixes CVE-2024-46817 bsc#1231200). +- Update + patches.suse/drm-amd-display-added-NULL-check-at-start-of-dc_vali.patch + (stable-fixes CVE-2024-46802 bsc#1231111). +- Update + patches.suse/drm-amd-pm-Fix-negative-array-index-read.patch + (stable-fixes CVE-2024-46821 bsc#1231169). +- Update + patches.suse/drm-amdgpu-Fix-smatch-static-checker-warning.patch + (stable-fixes CVE-2024-46835 bsc#1231098). +- Update + patches.suse/drm-amdgpu-Fix-the-warning-division-or-modulo-by-zer.patch + (stable-fixes CVE-2024-46806 bsc#1231136). +- Update + patches.suse/drm-amdgpu-fix-the-waring-dereferencing-hive.patch + (stable-fixes CVE-2024-46805 bsc#1231135). +- Update + patches.suse/drm-amdgpu-the-warning-dereferencing-obj-for-nbio_v7.patch + (stable-fixes CVE-2024-46819 bsc#1231202). +- Update + patches.suse/drm-amdkfd-Check-debug-trap-enable-before-write-dbg_.patch + (stable-fixes CVE-2024-46803 bsc#1231131). +- Update + patches.suse/drm-bridge-tc358767-Check-if-fully-initialized-befor.patch + (stable-fixes CVE-2024-46810 bsc#1231178). +- Update + patches.suse/i3c-mipi-i3c-hci-Error-out-instead-on-BUG_ON-in-IBI-.patch + (stable-fixes CVE-2024-47665 bsc#1231452). +- Update + patches.suse/lib-generic-radix-tree.c-Fix-rare-race-in-__genradix.patch + (stable-fixes CVE-2024-47668 bsc#1231502). +- Update + patches.suse/msft-hv-3054-x86-hyperv-fix-kexec-crash-due-to-VP-assist-page-cor.patch + (git-fixes CVE-2024-46864 bsc#1231108). +- Update + patches.suse/nilfs2-fix-state-management-in-error-path-of-log-writing-function.patch + (git-fixes CVE-2024-47669 bsc#1231474). +- Update + patches.suse/ocfs2-add-bounds-checking-to-ocfs2_xattr_find_entry.patch + (bsc#1228410 CVE-2024-41016 CVE-2024-47670 bsc#1231537). +- Update + patches.suse/perf-x86-intel-Limit-the-period-on-Haswell.patch + (git-fixes CVE-2024-46848 bsc#1231072). +- Update + patches.suse/platform-x86-panasonic-laptop-Fix-SINF-array-out-of-.patch + (git-fixes CVE-2024-46859 bsc#1231089). +- Update + patches.suse/rcu-Fix-buffer-overflow-in-print_cpu_stall_info.patch + (bsc#1226623 CVE-2024-38576). +- Update + patches.suse/rcu-tasks-Fix-show_rcu_tasks_trace_gp_kthread-buffer-overflow.patch + (bsc#1226631 CVE-2024-38577). +- Update + patches.suse/scsi-lpfc-Handle-mailbox-timeouts-in-lpfc_get_sfp_in.patch + (bsc#1228857 CVE-2024-46842 bsc#1231101). +- Update + patches.suse/spi-nxp-fspi-fix-the-KASAN-report-out-of-bounds-bug.patch + (git-fixes CVE-2024-46853 bsc#1231083). +- Update + patches.suse/spi-rockchip-Resolve-unbalanced-runtime-PM-system-PM.patch + (git-fixes CVE-2024-46846 bsc#1231075). +- Update + patches.suse/staging-iio-frequency-ad9834-Validate-frequency-para.patch + (git-fixes CVE-2024-47663 bsc#1231441). +- Update + patches.suse/usb-gadget-aspeed_udc-validate-endpoint-index-for-as.patch + (stable-fixes CVE-2024-46836 bsc#1231092). +- Update + patches.suse/usbnet-ipheth-do-not-stop-RX-on-failing-RX-callback.patch + (git-fixes CVE-2024-46861 bsc#1231102). +- Update + patches.suse/wifi-ath12k-fix-firmware-crash-due-to-invalid-peer-n.patch + (stable-fixes CVE-2024-46827 bsc#1231171). +- Update + patches.suse/wifi-iwlwifi-mvm-don-t-wait-for-tx-queues-if-firmwar.patch + (stable-fixes CVE-2024-47672 bsc#1231540). +- Update + patches.suse/wifi-iwlwifi-mvm-pause-TCM-when-the-firmware-is-stop.patch + (stable-fixes CVE-2024-47673 bsc#1231539). +- Update + patches.suse/wifi-iwlwifi-mvm-use-IWL_FW_CHECK-for-link-ID-check.patch + (stable-fixes CVE-2024-46825 bsc#1231170). +- Update + patches.suse/wifi-mt76-mt7921-fix-NULL-pointer-access-in-mt7921_i.patch + (stable-fixes CVE-2024-46860 bsc#1231093). +- commit 1ed6329 + +------------------------------------------------------------------- +Fri Oct 11 14:36:01 CEST 2024 - mgorman@suse.de + +- sched/smt: Fix unbalance sched_smt_present dec/inc + (CVE-2024-44958 bsc#1230179). +- sched/smt: Introduce sched_smt_present_inc/dec() helper + (CVE-2024-44958 bsc#1230179). +- commit b09820b + +------------------------------------------------------------------- +Fri Oct 11 13:25:41 CEST 2024 - tiwai@suse.de + +- crypto: octeontx* - Select CRYPTO_AUTHENC (git-fixes). +- commit 155c418 + +------------------------------------------------------------------- +Fri Oct 11 13:23:57 CEST 2024 - tiwai@suse.de + +- spi: spi-imx: Fix pm_runtime_set_suspended() with runtime pm + enabled (git-fixes). +- spi: s3c64xx: fix timeout counters in flush_fifo (git-fixes). +- i2c: synquacer: Deal with optional PCLK correctly (git-fixes). +- media: imx335: Fix reset-gpio handling (git-fixes). +- i2c: xiic: Try re-initialization on bus busy timeout + (git-fixes). +- platform/x86: touchscreen_dmi: add nanote-next quirk + (stable-fixes). +- platform/x86: lenovo-ymc: Ignore the 0x0 state (stable-fixes). +- hwmon: (nct6775) add G15CF to ASUS WMI monitoring list + (stable-fixes). +- power: reset: brcmstb: Do not go into infinite loop if reset + fails (stable-fixes). +- wifi: ath9k_htc: Use __skb_set_length() for resetting urb + before resubmit (stable-fixes). +- wifi: mt76: mt7915: hold dev->mt76.mutex while disabling tx + worker (stable-fixes). +- wifi: mt76: mt7915: add dummy HW offload of IEEE 802.11 + fragmentation (stable-fixes). +- wifi: mt76: mt7915: disable tx worker during tx BA session + enable/disable (stable-fixes). +- wifi: rtw89: avoid reading out of bounds when loading TX power + FW elements (stable-fixes). +- wifi: rtw89: correct base HT rate mask for firmware + (stable-fixes). +- wifi: mwifiex: Fix memcpy() field-spanning write warning in + mwifiex_cmd_802_11_scan_ext() (stable-fixes). +- wifi: cfg80211: Set correct chandef when starting CAC + (stable-fixes). +- wifi: mac80211: fix RCU list iterations (stable-fixes). +- wifi: iwlwifi: mvm: avoid NULL pointer dereference + (stable-fixes). +- wifi: iwlwifi: allow only CN mcc from WRDD (stable-fixes). +- wifi: iwlwifi: mvm: drop wrong STA selection in TX + (stable-fixes). +- wifi: iwlwifi: mvm: Fix a race in scan abort flow + (stable-fixes). +- wifi: iwlwifi: mvm: use correct key iteration (stable-fixes). +- wifi: ath9k: fix possible integer overflow in + ath9k_get_et_stats() (stable-fixes). +- wifi: ath11k: fix array out-of-bound access in SoC stats + (stable-fixes). +- wifi: ath12k: fix array out-of-bound access in SoC stats + (stable-fixes). +- wifi: rtw89: avoid to add interface to list twice when SER + (stable-fixes). +- wifi: rtw88: select WANT_DEV_COREDUMP (stable-fixes). +- i2c: xiic: improve error message when transfer fails to start + (stable-fixes). +- i2c: synquacer: Remove a clk reference from struct synquacer_i2c + (stable-fixes). +- media: i2c: imx335: Enable regulator supplies (stable-fixes). +- commit 490fb1f + +------------------------------------------------------------------- +Fri Oct 11 13:16:10 CEST 2024 - tiwai@suse.de + +- ALSA: usb-audio: Replace complex quirk lines with macros + (stable-fixes). +- commit 6f67136 + +------------------------------------------------------------------- +Fri Oct 11 13:14:26 CEST 2024 - tiwai@suse.de + +- Bluetooth: RFCOMM: FIX possible deadlock in + rfcomm_sk_state_change (git-fixes). +- ACPI: battery: Fix possible crash when unregistering a battery + hook (git-fixes). +- ACPI: battery: Simplify battery hook locking (stable-fixes). +- ACPI: resource: Add Asus ExpertBook B2502CVA to + irq1_level_low_skip_override[] (stable-fixes). +- ACPI: resource: Add Asus Vivobook X1704VAP to + irq1_level_low_skip_override[] (stable-fixes). +- HID: Ignore battery for all ELAN I2C-HID devices (stable-fixes). +- HID: multitouch: Add support for Thinkpad X12 Gen 2 Kbd + Portfolio (stable-fixes). +- ASoC: codecs: wsa883x: Handle reading version failure + (stable-fixes). +- ALSA: usb-audio: Add logitech Audio profile quirk + (stable-fixes). +- ALSA: usb-audio: Define macros for quirk table entries + (stable-fixes). +- ALSA: hdsp: Break infinite MIDI input flush loop (stable-fixes). +- ALSA: asihpi: Fix potential OOB array access (stable-fixes). +- ALSA: usb-audio: Add input value sanity checks for standard + types (stable-fixes). +- ACPI: PAD: fix crash in exit_round_robin() (stable-fixes). +- ACPI: video: Add force_vendor quirk for Panasonic Toughbook + CF-18 (stable-fixes). +- ACPI: CPPC: Add support for setting EPP register in FFH + (stable-fixes). +- ACPI: EC: Do not release locks during operation region accesses + (stable-fixes). +- ACPICA: iasl: handle empty connection_node (stable-fixes). +- ACPICA: Fix memory leak if acpi_ps_get_next_field() fails + (stable-fixes). +- ACPICA: Fix memory leak if acpi_ps_get_next_namepath() fails + (stable-fixes). +- ACPICA: check null return of ACPI_ALLOCATE_ZEROED() in + acpi_db_convert_to_package() (stable-fixes). +- crypto: octeontx2 - Fix authenc setkey (stable-fixes). +- crypto: octeontx - Fix authenc setkey (stable-fixes). +- Bluetooth: btusb: Add Realtek RTL8852C support ID 0x0489:0xe122 + (stable-fixes). +- can: netlink: avoid call to do_set_data_bittiming callback + with stale can_priv::ctrlmode (stable-fixes). +- commit 650f32e + +------------------------------------------------------------------- +Fri Oct 11 11:33:14 CEST 2024 - ailiop@suse.com + +- ocfs2: fix the la space leak when unmounting an ocfs2 volume + (git-fixes). +- commit 92d1b30 + +------------------------------------------------------------------- +Fri Oct 11 11:29:38 CEST 2024 - ailiop@suse.com + +- jfs: Fix uninit-value access of new_ea in ea_buffer (git-fixes). +- commit b1e0ef1 + +------------------------------------------------------------------- +Fri Oct 11 11:29:02 CEST 2024 - ailiop@suse.com + +- jfs: check if leafidx greater than num leaves per dmap tree + (git-fixes). +- commit 4cb79e7 + +------------------------------------------------------------------- +Fri Oct 11 11:28:08 CEST 2024 - ailiop@suse.com + +- jfs: Fix uaf in dbFreeBits (git-fixes). +- commit da4aab1 + +------------------------------------------------------------------- +Fri Oct 11 11:27:16 CEST 2024 - ailiop@suse.com + +- jfs: UBSAN: shift-out-of-bounds in dbFindBits (git-fixes). +- commit fee8a70 + +------------------------------------------------------------------- +Fri Oct 11 06:57:49 CEST 2024 - shung-hsi.yu@suse.com + +- kABI: bpf: enum bpf_{type_flag,arg_type} kABI workaround (git-fixes). +- commit 93e6047 + +------------------------------------------------------------------- +Thu Oct 10 19:18:41 CEST 2024 - vkarasulli@suse.de + +- iommu/amd: Allocate the page table root using GFP_KERNEL + (git-fixes). +- commit cdbbb3f + +------------------------------------------------------------------- +Thu Oct 10 19:10:13 CEST 2024 - vkarasulli@suse.de + +- iommu/amd: Fix typo of , instead of ; (git-fixes). +- commit baf85d0 + +------------------------------------------------------------------- +Thu Oct 10 17:32:18 CEST 2024 - dwagner@suse.de + +- block: sed-opal: add ioctl IOC_OPAL_SET_SID_PW (bsc#1229677). +- commit 5ca02dc + +------------------------------------------------------------------- +Thu Oct 10 11:54:20 CEST 2024 - hare@suse.de + +- nvme-multipath: suppress partition scan until the disk is ready + (bsc#1228244). +- commit 5accc60 + +------------------------------------------------------------------- +Wed Oct 9 23:52:08 CEST 2024 - krisman@suse.de + +- fix bitmap corruption on close_range() with CLOSE_RANGE_UNSHARE + (CVE-2024-45025 bsc#1230456). +- commit c3824ef + +------------------------------------------------------------------- +Wed Oct 9 19:24:22 CEST 2024 - oneukum@suse.com + +- i2c: core: Setup i2c_adapter runtime-pm before calling + device_add() (git-fixes). +- commit 5095dfb + +------------------------------------------------------------------- +Wed Oct 9 19:15:38 CEST 2024 - oneukum@suse.com + +- i2c: ismt: kill transaction in hardware on timeout (git-fixes). +- commit f6029bb + +------------------------------------------------------------------- +Wed Oct 9 19:11:31 CEST 2024 - vkarasulli@suse.de + +- iommufd: Check the domain owner of the parent before creating + a nesting domain (git-fixes). +- commit 3ff7340 + +------------------------------------------------------------------- +Wed Oct 9 19:01:29 CEST 2024 - vkarasulli@suse.de + +- iommufd: Protect against overflow of ALIGN() during iova + allocation (git-fixes). +- commit fffeb67 + +------------------------------------------------------------------- +Wed Oct 9 18:59:06 CEST 2024 - vkarasulli@suse.de + +- iommu/amd: Do not set the D bit on AMD v2 table entries + (git-fixes). +- commit e3053a9 + +------------------------------------------------------------------- +Wed Oct 9 18:58:44 CEST 2024 - oneukum@suse.com + +- i2c: omap: wakeup the controller during suspend() callback + (git-fixes). +- commit 52f3dad + +------------------------------------------------------------------- +Wed Oct 9 18:57:28 CEST 2024 - oneukum@suse.com + +- i2c: omap: switch to NOIRQ_SYSTEM_SLEEP_PM_OPS() and + RUNTIME_PM_OPS() (git-fixes). +- commit 3fe2f94 + +------------------------------------------------------------------- +Wed Oct 9 17:03:57 CEST 2024 - tiwai@suse.de + +- Drop the previous HD-audio TAS2781 fix (bsc#1230132) + The proposed fix turned out to be incorrect +- commit b3a4c29 + +------------------------------------------------------------------- +Wed Oct 9 16:10:51 CEST 2024 - rgoldwyn@suse.com + +- Update config files: Enable NFSD_V2 (bsc#1230914) + NFSv2 was disabled because of the upstream kernel commit 2f3a4b2ac2f2 + ("nfsd: allow disabling NFSv2 at compile time"). + Enable it for the few users who cannot upgrade to NFSv3. + https://bugzilla.suse.com/show_bug.cgi?id=1230914#c5 +- commit 9e3254d + ------------------------------------------------------------------- Wed Oct 9 16:07:58 CEST 2024 - nstange@suse.de - Enable livepatching related packages on -RT (jsc#PED-1706) - commit cdfdbf1 +------------------------------------------------------------------- +Wed Oct 9 15:24:02 CEST 2024 - oneukum@suse.com + +- i2c: stm32f7: perform most of irq job in threaded handler + (git-fixes). +- commit 4a35980 + +------------------------------------------------------------------- +Wed Oct 9 15:11:44 CEST 2024 - oneukum@suse.com + +- i2c: i801: Add lis3lv02d for Dell XPS 15 7590 (git-fixes). +- commit 38f58af + +------------------------------------------------------------------- +Wed Oct 9 14:59:29 CEST 2024 - oneukum@suse.com + +- i2c: i801: Add lis3lv02d for Dell Precision 3540 (git-fixes). +- commit 036aff9 + +------------------------------------------------------------------- +Wed Oct 9 14:47:22 CEST 2024 - oneukum@suse.com + +- i2c: cpm: Remove linux,i2c-index conversion from be32 + (git-fixes). +- commit 5d04b4e + +------------------------------------------------------------------- +Wed Oct 9 14:42:11 CEST 2024 - oneukum@suse.com + +- i2c: ocores: Move system PM hooks to the NOIRQ phase + (git-fixes). +- commit 0df7a53 + +------------------------------------------------------------------- +Wed Oct 9 14:41:10 CEST 2024 - oneukum@suse.com + +- i2c: ocores: Remove #ifdef guards for PM related functions + (git-fixes). +- commit ead06ad + +------------------------------------------------------------------- +Wed Oct 9 14:38:59 CEST 2024 - tiwai@suse.de + +- wifi: iwlwifi: config: label 'gl' devices as discrete + (git-fixes). +- commit 6321867 + +------------------------------------------------------------------- +Wed Oct 9 14:36:36 CEST 2024 - tiwai@suse.de + +- kconfig: qconf: fix buffer overflow in debug links (git-fixes). +- platform/x86: ISST: Fix the KASAN report slab-out-of-bounds bug + (git-fixes). +- i2c: stm32f7: Do not prepare/unprepare clock during runtime + suspend/resume (git-fixes). +- gpio: davinci: fix lazy disable (git-fixes). +- drm/i915/gem: fix bitwise and logical AND mixup (git-fixes). +- drm/sched: Always wake up correct scheduler in + drm_sched_entity_push_job (git-fixes). +- drm/sched: Add locking to drm_sched_entity_modify_sched + (git-fixes). +- drm: Consistently use struct drm_mode_rect for FB_DAMAGE_CLIPS + (git-fixes). +- Bluetooth: hci_event: Align BR/EDR JUST_WORKS paring with LE + (git-fixes). +- Bluetooth: btmrvl: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- ieee802154: Fix build error (git-fixes). +- Input: adp5589-keys - fix adp5589_gpio_get_value() (git-fixes). +- Input: adp5589-keys - fix NULL pointer dereference (git-fixes). +- drm/amdgpu/vcn: enable AV1 on both instances (stable-fixes). +- drm/amd/display: Validate backlight caps are sane + (stable-fixes). +- drm/amd/display: Skip to enable dsc if it has been off + (stable-fixes). +- drm/amd/display: Add HDMI DSC native YCbCr422 support + (stable-fixes). +- drm/amd/display: Clean up dsc blocks in accelerated mode + (stable-fixes). +- drm/amd/display: Round calculated vtotal (stable-fixes). +- efistub/tpm: Use ACPI reclaim memory for event log to avoid + corruption (stable-fixes). +- iio: magnetometer: ak8975: drop incorrect AK09116 compatible + (git-fixes). +- Input: i8042 - add TUXEDO Stellaris 15 Slim Gen6 AMD to i8042 + quirk table (stable-fixes). +- Input: i8042 - add another board name for TUXEDO Stellaris + Gen5 AMD line (stable-fixes). +- Input: i8042 - add TUXEDO Stellaris 16 Gen5 AMD to i8042 quirk + table (stable-fixes). +- hwmon: (max16065) Fix alarm attributes (git-fixes). +- ACPI: resource: Add another DMI match for the TongFang GMxXGxx + (stable-fixes). +- wifi: rtw88: 8821cu: Remove VID/PID 0bda:c82c (stable-fixes). +- ASoC: tas2781: Use of_property_read_reg() (stable-fixes). +- wifi: iwlwifi: remove AX101, AX201 and AX203 support from LNL + (stable-fixes). +- hwmon: (max16065) Remove use of i2c_match_id() (stable-fixes). +- nouveau/gsp: Avoid addressing beyond end of rpc->entries + (stable-fixes). +- thunderbolt: Improve DisplayPort tunnel setup process to be + more robust (stable-fixes). +- iio: magnetometer: ak8975: Fix 'Unexpected device' error + (git-fixes). +- iio: magnetometer: ak8975: Convert enum->pointer for data in + the match tables (stable-fixes). +- commit 85984c8 + +------------------------------------------------------------------- +Wed Oct 9 14:26:52 CEST 2024 - oneukum@suse.com + +- i2c: core: fix lockdep warning for sparsely nested adapter chain + (git-fixes). +- commit 691570d + +------------------------------------------------------------------- +Wed Oct 9 14:23:18 CEST 2024 - oneukum@suse.com + +- i2c: exynos5: Calculate t_scl_l, t_scl_h according to i2c spec + (git-fixes). +- commit cbbb120 + +------------------------------------------------------------------- +Wed Oct 9 14:15:28 CEST 2024 - oneukum@suse.com + +- i2c: i801: add helper i801_restore_regs (git-fixes). +- commit 3839f86 + +------------------------------------------------------------------- +Wed Oct 9 14:01:22 CEST 2024 - oneukum@suse.com + +- i2c: rcar: properly format a debug output (git-fixes). +- commit e7085c8 + +------------------------------------------------------------------- +Wed Oct 9 12:04:43 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add a test case to write mtu result into .rodata + (git-fixes). +- selftests/bpf: Add a test case to write strtol result into + .rodata (git-fixes). +- commit 805bbba + +------------------------------------------------------------------- +Wed Oct 9 12:03:13 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Rename ARG_PTR_TO_LONG test description + (git-fixes). +- selftests/bpf: Fix ARG_PTR_TO_LONG {half-,}uninitialized test + (git-fixes). +- bpf: Zero former ARG_PTR_TO_{LONG,INT} args in case of error + (git-fixes). +- bpf: Improve check_raw_mode_ok test for MEM_UNINIT-tagged types + (git-fixes). +- commit 4580630 + +------------------------------------------------------------------- +Wed Oct 9 11:27:23 CEST 2024 - shung-hsi.yu@suse.com + +- bpf: Fix helper writes to read-only maps (git-fixes). +- bpf: Remove truncation test in bpf_strtol and bpf_strtoul + helpers (git-fixes). +- bpf: Fix bpf_strtol and bpf_strtoul helpers for 32bit + (git-fixes). +- commit 5fc2ffd + +------------------------------------------------------------------- +Wed Oct 9 11:17:51 CEST 2024 - vkarasulli@suse.de + +- bpf: Remove tst_run from lwt_seg6local_prog_ops (bsc#1230801 + CVE-2024-46754). +- commit a7335b8 + +------------------------------------------------------------------- +Wed Oct 9 11:12:18 CEST 2024 - shung-hsi.yu@suse.com + +- bpf: Fix error message on kfunc arg type mismatch (git-fixes). +- commit 04ed437 + +------------------------------------------------------------------- +Wed Oct 9 10:59:52 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: test for malformed BPF_CORE_TYPE_ID_LOCAL + relocation (git-fixes). +- bpf: correctly handle malformed BPF_CORE_TYPE_ID_LOCAL relos + (git-fixes). +- commit 67ebe66 + +------------------------------------------------------------------- +Wed Oct 9 10:58:29 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add tests for ldsx of pkt data/data_end/data_meta + accesses (git-fixes). +- bpf: Fail verification for sign-extension of packet + data/data_end/data_meta (git-fixes). +- bpf, lsm: Add disabled BPF LSM hook list (git-fixes). +- commit df1486e + +------------------------------------------------------------------- +Wed Oct 9 10:03:28 CEST 2024 - shung-hsi.yu@suse.com + +- bpf, net: Fix a potential race in do_sock_getsockopt() + (git-fixes). +- bpf: Fix tailcall cases in test_bpf (git-fixes). +- bpf, x64: Remove tail call detection (git-fixes). +- bpf, verifier: Correct tail_call_reachable for bpf prog + (git-fixes). +- commit e072387 + +------------------------------------------------------------------- +Tue Oct 8 18:58:44 CEST 2024 - ohering@suse.de + +- add bug reference for a mana change (bsc#1229769). +- commit 64c619e + +------------------------------------------------------------------- +Tue Oct 8 17:54:22 CEST 2024 - dsterba@suse.com + +- net/sched: taprio: extend minimum interval restriction to entire cycle too (CVE-2024-36244 bsc#1226797) +- commit 5ade9d6 + +------------------------------------------------------------------- +Tue Oct 8 17:39:16 CEST 2024 - andrea.porta@suse.com + +- arm64: fix selection of HAVE_DYNAMIC_FTRACE_WITH_ARGS + (git-fixes). +- commit 7e90455 + +------------------------------------------------------------------- +Tue Oct 8 17:01:15 CEST 2024 - andrea.porta@suse.com + +- arm64: errata: Enable the AC03_CPU_38 workaround for ampere1a + (git-fixes). +- commit 994f16f + +------------------------------------------------------------------- +Tue Oct 8 16:00:31 CEST 2024 - jlee@suse.com + +- aoe: fix the potential use-after-free problem in more places + (bsc#1218562 CVE-2023-6270). +- commit 1a991ba + +------------------------------------------------------------------- +Tue Oct 8 14:34:25 CEST 2024 - tiwai@suse.de + +- ALSA: hda: tas2781: Fix missing setup at runtime PM + (bsc#1230132). +- commit 3dc7842 + +------------------------------------------------------------------- +Tue Oct 8 14:33:35 CEST 2024 - tiwai@suse.de + +- Move upstreamed sound patch into sorted section +- commit b11079c + +------------------------------------------------------------------- +Tue Oct 8 14:31:27 CEST 2024 - msuchanek@suse.de + +- kbuild,bpf: Add module-specific pahole flags for distilled + base BTF (bsc#1230414 bsc#1229450). +- kbuild: bpf: Tell pahole to DECL_TAG kfuncs (bsc#1230414 + bsc#1229450). +- kbuild, bpf: Use test-ge check for v1.25-only pahole + (bsc#1230414 bsc#1229450). +- kbuild,bpf: Switch to using --btf_features for pahole v1.26 + and later (bsc#1230414 bsc#1229450). +- kbuild: avoid too many execution of scripts/pahole-flags.sh + (bsc#1230414 bsc#1229450). +- btf, scripts: rust: drop is_rust_module.sh (bsc#1230414 + bsc#1229450). +- commit e2cacce + +------------------------------------------------------------------- +Tue Oct 8 13:40:12 CEST 2024 - tiwai@suse.de + +- Use pahole -j1 option for reproducible builds (bsc#1230414 + bsc#1229450). +- commit 340585e + +------------------------------------------------------------------- +Tue Oct 8 11:56:04 CEST 2024 - lhenriques@suse.de + +- ceph: fix cap ref leak via netfs init_request (bsc#1231384). +- commit ca24d43 + +------------------------------------------------------------------- +Tue Oct 8 11:50:08 CEST 2024 - jgross@suse.com + +- vhost/scsi: null-ptr-dereference in vhost_scsi_get_req() + (git-fixes). +- commit 267df6b + +------------------------------------------------------------------- +Tue Oct 8 11:17:47 CEST 2024 - jgross@suse.com + +- virtio_console: fix misc probe bugs (git-fixes). +- commit f7d3065 + +------------------------------------------------------------------- +Tue Oct 8 11:13:40 CEST 2024 - ohering@suse.de + +- RDMA/mana_ib: use the correct page size for mapping user-mode + doorbell page (git-fixes). +- RDMA/mana_ib: use the correct page table index based on hardware + page size (git-fixes). +- tools: hv: rm .*.cmd when make clean (git-fixes). +- x86/hyperv: Set X86_FEATURE_TSC_KNOWN_FREQ when Hyper-V provides + frequency (git-fixes). +- commit 059fd95 + +------------------------------------------------------------------- +Tue Oct 8 10:45:27 CEST 2024 - jgross@suse.com + +- KVM: VMX: Set PFERR_GUEST_{FINAL,PAGE}_MASK if and only if + the GVA is valid (git-fixes). +- commit bb6f3d3 + +------------------------------------------------------------------- +Tue Oct 8 10:13:08 CEST 2024 - jgross@suse.com + +- KVM: x86/mmu: Skip emulation on page fault iff 1+ SPs were + unprotected (git-fixes). +- commit bcfafe2 + +------------------------------------------------------------------- +Tue Oct 8 09:35:38 CEST 2024 - jgross@suse.com + +- KVM: x86/mmu: Trigger unprotect logic only on write-protection + page faults (git-fixes). +- commit 322cf36 + +------------------------------------------------------------------- +Mon Oct 7 19:31:27 CEST 2024 - jgross@suse.com + +- KVM: VMX: Also clear SGX EDECCSSA in KVM CPU caps when SGX is + disabled (git-fixes). +- commit d7b7771 + +------------------------------------------------------------------- +Mon Oct 7 19:03:42 CEST 2024 - fdmanana@suse.com + +- btrfs: send: fix invalid clone operation for file that got + its size decreased (git-fixes). +- commit 26ee3ac + +------------------------------------------------------------------- +Mon Oct 7 18:25:48 CEST 2024 - jgross@suse.com + +- KVM: x86: Exit to userspace if fastpath triggers one on + instruction skip (git-fixes). +- commit 1621f7b + +------------------------------------------------------------------- +Mon Oct 7 17:53:20 CEST 2024 - jgross@suse.com + +- KVM: x86: Dedup fastpath MSR post-handling logic (git-fixes). +- commit c20ff7c + +------------------------------------------------------------------- +Mon Oct 7 17:19:33 CEST 2024 - jgross@suse.com + +- KVM: x86: Re-enter guest if WRMSR(X2APIC_ICR) fastpath is + successful (git-fixes). +- commit 0dc4c78 + +------------------------------------------------------------------- +Mon Oct 7 16:25:12 CEST 2024 - jgross@suse.com + +- kABI fix of VM: x86: Re-split x2APIC ICR into ICR+ICR2 for AMD + (x2AVIC) (git-fixes). +- commit 0a6716e + +------------------------------------------------------------------- +Mon Oct 7 15:01:37 CEST 2024 - jgross@suse.com + +- KVM: x86: Re-split x2APIC ICR into ICR+ICR2 for AMD (x2AVIC) + (git-fixes). +- commit 6a07b23 + +------------------------------------------------------------------- +Mon Oct 7 14:28:23 CEST 2024 - jgross@suse.com + +- KVM: x86: Move x2APIC ICR helper above kvm_apic_write_nodecode() + (git-fixes). +- commit 4f194f7 + +------------------------------------------------------------------- +Mon Oct 7 14:12:30 CEST 2024 - oneukum@suse.com + +- USB: misc: yurex: fix race between read and write (git-fixes). +- commit 7f6ab55 + +------------------------------------------------------------------- +Mon Oct 7 14:07:19 CEST 2024 - oneukum@suse.com + +- USB: misc: cypress_cy7c63: check for short transfer (git-fixes). +- commit 3dcfad1 + +------------------------------------------------------------------- +Mon Oct 7 14:03:19 CEST 2024 - oneukum@suse.com + +- USB: appledisplay: close race between probe and completion + handler (git-fixes). +- commit 888718f + +------------------------------------------------------------------- +Mon Oct 7 13:37:47 CEST 2024 - jgross@suse.com + +- KVM: x86: Enforce x2APIC's must-be-zero reserved ICR bits + (git-fixes). +- commit 891c3ef + +------------------------------------------------------------------- +Mon Oct 7 13:15:47 CEST 2024 - oneukum@suse.com + +- usb: xhci: fix loss of data on Cadence xHC (git-fixes). +- commit 9e9d585 + +------------------------------------------------------------------- +Mon Oct 7 12:59:08 CEST 2024 - jgross@suse.com + +- KVM: Write the per-page "segment" when clearing (part of) + a guest page (git-fixes). +- commit dae8f10 + +------------------------------------------------------------------- +Mon Oct 7 12:51:27 CEST 2024 - oneukum@suse.com + +- xhci: Add a quirk for writing ERST in high-low order + (git-fixes). +- commit d0eccfc + +------------------------------------------------------------------- +Mon Oct 7 12:34:01 CEST 2024 - tzimmermann@suse.com + +- drm/amd/display: Validate function returns (bsc#1230774 CVE-2024-46775) +- commit fc9ad2b + +------------------------------------------------------------------- +Mon Oct 7 12:19:24 CEST 2024 - jgross@suse.com + +- KVM: Fix coalesced_mmio_has_room() to avoid premature userspace + exit (git-fixes). +- commit 93dbc58 + +------------------------------------------------------------------- +Mon Oct 7 11:39:38 CEST 2024 - jgross@suse.com + +- KVM: Use dedicated mutex to protect kvm_usage_count to avoid + deadlock (git-fixes). +- commit 2ff88a8 + +------------------------------------------------------------------- +Mon Oct 7 11:13:48 CEST 2024 - msuchanek@suse.de + +- Delete some more obsolete scripts +- commit 9bb77f8 + +------------------------------------------------------------------- +Mon Oct 7 10:44:04 CEST 2024 - jgross@suse.com + +- KVM: SVM: Disallow guest from changing userspace's + MSR_AMD64_DE_CFG value (git-fixes). +- commit c8fa16d + +------------------------------------------------------------------- +Mon Oct 7 10:19:47 CEST 2024 - pjakobsson@suse.de + +- drm/amd/display: Stop amdgpu_dm initialize when link nums greater than max_links (CVE-2024-46816 bsc#1231197). +- commit c05e7e2 + +------------------------------------------------------------------- +Mon Oct 7 10:11:27 CEST 2024 - jgross@suse.com + +- net: test for not too small csum_start in + virtio_net_hdr_to_skb() (git-fixes). +- commit ed78dff + +------------------------------------------------------------------- +Mon Oct 7 09:39:06 CEST 2024 - jgross@suse.com + +- vhost_vdpa: assign irq bypass producer token correctly + (git-fixes). +- commit 1a9cba6 + +------------------------------------------------------------------- +Mon Oct 7 09:16:13 CEST 2024 - pjakobsson@suse.de + +- drm/amd/display: Check link_index before accessing dc->links (CVE-2024-46813 bsc#1231191). +- commit eb31596 + +------------------------------------------------------------------- +Mon Oct 7 08:43:09 CEST 2024 - jgross@suse.com + +- minmax: avoid overly complex min()/max() macro arguments in xen + (git-fixes). +- Refresh + patches.suse/xen-move-max_pfn-in-xen_memory_setup-out-of-function.patch. +- commit 754808b + +------------------------------------------------------------------- +Sat Oct 5 09:18:57 CEST 2024 - tiwai@suse.de + +- ALSA: hda/conexant: Fix conflicting quirk for System76 Pangolin + (git-fixes). +- ALSA: line6: add hw monitor volume control to POD HD500X + (stable-fixes). +- ALSA: usb-audio: Add native DSD support for Luxman D-08u + (stable-fixes). +- ALSA: core: add isascii() check to card ID generator + (stable-fixes). +- ASoC: qcom: sm8250: add qrb4210-rb2-sndcard compatible string + (stable-fixes). +- ASoC: imx-card: Set card.owner to avoid a warning calltrace + if SND=m (git-fixes). +- ASoC: fsl_sai: Enable 'FIFO continue on error' FCONT bit + (stable-fixes). +- ASoC: codecs: lpass-rx-macro: add missing + CDC_RX_BCL_VBAT_RF_PROC2 to default regs values (stable-fixes). +- ASoC: atmel: mchp-pdmc: Skip ALSA restoration if substream + runtime is uninitialized (git-fixes). +- ASoC: amd: yc: Add quirk for HP Dragonfly pro one + (stable-fixes). +- Revert "ALSA: hda: Conditionally use snooping for AMD HDMI" + (stable-fixes). +- ALSA: hda/realtek: Add a quirk for HP Pavilion 15z-ec200 + (stable-fixes). +- ALSA: silence integer wrapping warning (stable-fixes). +- ALSA: Reorganize kerneldoc parameter names (stable-fixes). +- ALSA: hda/realtek: Fix the push button function for the ALC257 + (git-fixes). +- ALSA: hda/conexant: fix some typos (stable-fixes). +- ALSA: mixer_oss: Remove some incorrect kfree_const() usages + (git-fixes). +- ALSA: hda/realtek: Add quirk for Huawei MateBook 13 KLV-WX9 + (stable-fixes). +- ALSA: usb-audio: Add delay quirk for VIVO USB-C HEADSET + (stable-fixes). +- ALSA: hda/tas2781: Add new quirk for Lenovo Y990 Laptop + (stable-fixes). +- ALSA: hda/realtek: fix mute/micmute LED for HP mt645 G8 + (stable-fixes). +- commit 1cdc743 + +------------------------------------------------------------------- +Fri Oct 4 17:17:00 CEST 2024 - mkoutny@suse.com + +- rcu-tasks: Fix show_rcu_tasks_trace_gp_kthread buffer overflow + (bsc#1226631). +- commit 36faf07 + +------------------------------------------------------------------- +Fri Oct 4 17:13:50 CEST 2024 - mwilck@suse.com + +- scsi: fnic: Move flush_work initialization out of if block + (bsc#1230055). +- commit 9b5b899 + +------------------------------------------------------------------- +Fri Oct 4 17:11:25 CEST 2024 - mkoutny@suse.com + +- rcu: Fix buffer overflow in print_cpu_stall_info() + (bsc#1226623). +- commit b695829 + +------------------------------------------------------------------- +Fri Oct 4 09:57:09 CEST 2024 - msuchanek@suse.de + +- Replace ALP with SLFO +- Refresh patches.suse/kernel-add-product-identifying-information-to-kernel-build.patch +- Update config files. +- commit 267a9d3 + +------------------------------------------------------------------- +Fri Oct 4 09:49:25 CEST 2024 - msuchanek@suse.de + +- Update config files. + Update SUSE_VERSION to match SLFO project version +- commit 0d531e8 + +------------------------------------------------------------------- +Fri Oct 4 09:44:38 CEST 2024 - msuchanek@suse.de + +- config.sh: Remove Arm build project, we do not build armv7 configs +- commit 359f219 + +------------------------------------------------------------------- +Fri Oct 4 09:43:19 CEST 2024 - msuchanek@suse.de + +- config.sh: Update bugzilla product +- commit 0688dde + +------------------------------------------------------------------- +Fri Oct 4 09:17:31 CEST 2024 - msuchanek@suse.de + +- rpm/release-projects: Add SLFO projects (bsc#1231293). +- commit 9f2c584 + +------------------------------------------------------------------- +Thu Oct 3 18:22:53 CEST 2024 - msuchanek@suse.de + +- Update patches.suse/powerpc-qspinlock-Fix-deadlock-in-MCS-queue.patch + (bsc#1230295 ltc#206656 CVE-2024-46797 bsc#1230831). +- commit af09bb2 + +------------------------------------------------------------------- +Thu Oct 3 17:03:35 CEST 2024 - mfranc@suse.cz + +- KVM: s390: Fix SORTL and DFLTCC instruction format error in + __insn32_query (git-fixes bsc#1231276). +- commit 39bab2d + +------------------------------------------------------------------- +Thu Oct 3 14:28:21 CEST 2024 - tabraham@suse.com + +- s390/mm: Add cond_resched() to cmm_alloc/free_pages() + (bsc#1228747). +- commit d0c79ab + +------------------------------------------------------------------- +Thu Oct 3 00:20:05 CEST 2024 - dsterba@suse.com + +- ELF: fix kernel.randomize_va_space double read (CVE-2024-46826 bsc#1231115) +- commit 0519fb0 + +------------------------------------------------------------------- +Wed Oct 2 17:46:55 CEST 2024 - dsterba@suse.com + +- net/mlx5: Fix bridge mode operations when there are no VFs (CVE-2024-46857 bsc#1231087) +- commit b20fc2c + +------------------------------------------------------------------- +Wed Oct 2 17:39:18 CEST 2024 - dsterba@suse.com + +- netfilter: nft_socket: fix sk refcount leaks (CVE-2024-46855 bsc#1231085) +- commit 6c66212 + +------------------------------------------------------------------- +Wed Oct 2 16:55:39 CEST 2024 - tbogendoerfer@suse.de + +- net: microchip: vcap: Fix use-after-free error in kunit test + (CVE-2024-46831 bsc#1231117). +- commit 630e2e8 + +------------------------------------------------------------------- +Wed Oct 2 10:12:12 CEST 2024 - mhocko@suse.com + +- vmalloc: modify the alloc_vmap_area() error message for better + diagnostics (jsc#PED-10978). +- mm: mmap: no need to call khugepaged_enter_vma() for stack + (jsc#PED-10978). +- commit 41e1775 + +------------------------------------------------------------------- +Wed Oct 2 09:20:43 CEST 2024 - dwagner@suse.de + +- nvme-pci: qdepth 1 quirk (git-fixes). +- commit ee2b909 + +------------------------------------------------------------------- +Wed Oct 2 08:26:33 CEST 2024 - tiwai@suse.de + +- ALSA: hda/generic: Unconditionally prefer preferred_dacs pairs + (bsc#1219803). +- commit 020b49a + +------------------------------------------------------------------- +Tue Oct 1 18:50:14 CEST 2024 - msuchanek@suse.de + +- powerpc/code-patching: Add generic memory patching + (bsc#1194869). +- powerpc/code-patching: Perform hwsync in __patch_instruction() + in case of failure (bsc#1194869). +- commit 33b01a6 + +------------------------------------------------------------------- +Tue Oct 1 16:33:00 CEST 2024 - oneukum@suse.com + +- usbnet: fix cyclical race on disconnect with work queue + (git-fixes). +- Refresh + patches.suse/0002-Add-a-void-suse_kabi_padding-placeholder-to-some-USB.patch. +- commit 8272f2d + +------------------------------------------------------------------- +Tue Oct 1 16:27:57 CEST 2024 - dsterba@suse.com + +- apparmor: fix possible NULL pointer dereference (CVE-2024-46721 bsc#1230710) +- commit 2d35a7c + +------------------------------------------------------------------- +Tue Oct 1 14:20:26 CEST 2024 - msuchanek@suse.de + +- powerpc/64: Convert patch_instruction() to patch_u32() + (bsc#1194869). +- powerpc/boot: Only free if realloc() succeeds (bsc#1194869). +- powerpc/boot: Handle allocation failure in simple_realloc() + (bsc#1194869). +- powerpc/xics: Check return value of kasprintf in + icp_native_map_one_cpu (bsc#1194869). +- powerpc/vdso: Fix VDSO data access when running in a non-root + time namespace (bsc#1194869). +- commit 0dec2e8 + +------------------------------------------------------------------- +Tue Oct 1 14:19:14 CEST 2024 - tbogendoerfer@suse.de + +- net: mana: Improve mana_set_channels() in low mem conditions + (bsc#1230289). +- net: mana: Implement get_ringparam/set_ringparam for mana + (bsc#1229891). +- net: dpaa: Pad packets to ETH_ZLEN (CVE-2024-46854 bsc#1231084). +- ice: move netif_queue_set_napi to rtnl-protected sections + (CVE-2024-46766 bsc#1230762). +- ice: Add netif_device_attach/detach into PF reset flow + (CVE-2024-46770 bsc#1230763). +- bonding: change ipsec_lock from spin lock to mutex + (CVE-2024-46678 bsc#1230550). +- bonding: extract the use of real_device into local variable + (CVE-2024-46678 bsc#1230550). +- bonding: implement xdo_dev_state_free and call it after deletion + (CVE-2024-46678 bsc#1230550). +- commit 9ee67ad + +------------------------------------------------------------------- +Tue Oct 1 13:22:16 CEST 2024 - msuchanek@suse.de + +- powerpc/xmon: Fix disassembly CPU feature checks (bsc#1065729). +- commit c675509 + ------------------------------------------------------------------- Tue Oct 1 11:47:27 CEST 2024 - tiwai@suse.de @@ -29,6 +7318,13 @@ Tue Oct 1 11:41:13 CEST 2024 - lhenriques@suse.de pages (bsc#1231182). - commit ba82da7 +------------------------------------------------------------------- +Tue Oct 1 11:35:14 CEST 2024 - schwab@suse.de + +- rpm/check-for-config-changes: add HAVE_RUST and RUSTC_SUPPORTS_ to IGNORED_CONFIGS_RE + They depend on SHADOW_CALL_STACK. +- commit 65fa52b + ------------------------------------------------------------------- Tue Oct 1 08:04:40 CEST 2024 - tiwai@suse.de @@ -82,6 +7378,20 @@ Tue Oct 1 08:01:28 CEST 2024 - tiwai@suse.de - can: mcp251xfd: properly indent labels (stable-fixes). - commit a530f31 +------------------------------------------------------------------- +Mon Sep 30 19:11:45 CEST 2024 - krisman@suse.de + +- mm/filemap: skip to create PMD-sized page cache if needed + (bsc#1228454 CVE-2024-41031). +- commit 03907fa + +------------------------------------------------------------------- +Mon Sep 30 17:14:19 CEST 2024 - dwagner@suse.de + +- nvme-fabrics: use reserved tag for reg read/write command + (bsc#1228620 CVE-2024-41082). +- commit 239456c + ------------------------------------------------------------------- Mon Sep 30 16:28:50 CEST 2024 - pmladek@suse.com @@ -283,14 +7593,6 @@ Fri Sep 27 18:21:58 CEST 2024 - dsterba@suse.com - drm/amd/display: Check denominator crb_pipes before used (CVE-2024-46772 bsc#1230772) - commit 322be4a -------------------------------------------------------------------- -Fri Sep 27 17:47:54 CEST 2024 - dsterba@suse.com - -- blacklist.conf: CVE-2024-46727 bsc#1230707: not applicable - No OTG code and all return values from - resource_get_otg_master_for_stream() are checked before use. -- commit f44b1e7 - ------------------------------------------------------------------- Fri Sep 27 15:39:02 CEST 2024 - andrea.porta@suse.com @@ -716,12 +8018,6 @@ Wed Sep 25 11:02:22 CEST 2024 - oneukum@suse.com (git-fixes). - commit 45cee3b -------------------------------------------------------------------- -Wed Sep 25 10:53:00 CEST 2024 - oneukum@suse.com - -- blacklist.conf: too risky -- commit f0e13c3 - ------------------------------------------------------------------- Wed Sep 25 10:49:36 CEST 2024 - oneukum@suse.com @@ -887,12 +8183,6 @@ Wed Sep 25 08:20:37 CEST 2024 - nmorey@suse.com - RDMA/core: Remove unused declaration rdma_resolve_ip_route() (git-fixes) - commit 4cb7201 -------------------------------------------------------------------- -Wed Sep 25 08:00:58 CEST 2024 - jslaby@suse.cz - -- blacklist.conf: add one for clang and one PCI git-fixes -- commit b26aea4 - ------------------------------------------------------------------- Wed Sep 25 06:59:40 CEST 2024 - jslaby@suse.cz @@ -902,26 +8192,12 @@ Wed Sep 25 06:59:40 CEST 2024 - jslaby@suse.cz investigate. - commit 3b92a44 -------------------------------------------------------------------- -Tue Sep 24 21:41:32 CEST 2024 - dsterba@suse.com - -- blacklist.conf: CVE-2024-44972 bsc#1230212: not applicable - Subpage code exists but zoned mode is not enabled being hidden behind - CONFIG_BTRFS_DEBUG. -- commit ed17920 - ------------------------------------------------------------------- Tue Sep 24 16:44:45 CEST 2024 - dsterba@suse.com - btrfs: handle errors from btrfs_dec_ref() properly (CVE-2024-46753 bsc#1230796) - commit 3e3b2cb -------------------------------------------------------------------- -Tue Sep 24 14:00:01 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 05421bb - ------------------------------------------------------------------- Tue Sep 24 13:58:04 CEST 2024 - oneukum@suse.com @@ -1169,12 +8445,6 @@ Fri Sep 20 16:00:48 CEST 2024 - fdmanana@suse.com i_size (bsc#1230854). - commit e9cad4b -------------------------------------------------------------------- -Fri Sep 20 11:03:38 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 5244a06 - ------------------------------------------------------------------- Fri Sep 20 10:42:37 CEST 2024 - ailiop@suse.com @@ -1304,16 +8574,6 @@ Thu Sep 19 21:02:08 CEST 2024 - dsterba@suse.com - gtp: fix a potential NULL pointer dereference (CVE-2024-46677 bsc#1230549) - commit 9cdd14b -------------------------------------------------------------------- -Thu Sep 19 20:03:29 CEST 2024 - dsterba@suse.com - -- blacklist.conf: CVE-2024-46711 bsc#1230542: code partially present, fix part of refactoring and fix series - The patch to backport is one in a number of about 30 patches refactoring - and reworking MPTCP subflow handling. Several other patches are needed - just to apply it cleanly but also change some of the logic where the - actual fix would apply. -- commit 1a03613 - ------------------------------------------------------------------- Thu Sep 19 19:35:19 CEST 2024 - dsterba@suse.com @@ -1503,6 +8763,13 @@ Thu Sep 19 08:58:46 CEST 2024 - tiwai@suse.de (stable-fixes). - commit 040b0ea +------------------------------------------------------------------- +Thu Sep 19 03:35:24 CEST 2024 - neilb@suse.de + +- Update patches.suse/NFS-never-reuse-a-NFSv4-0-lock-owner.patch + (bsc#1227726 bsc#1230733 bsc#1230971) +- commit b1f9aec + ------------------------------------------------------------------- Wed Sep 18 19:30:32 CEST 2024 - jdelvare@suse.de @@ -1676,12 +8943,6 @@ Mon Sep 16 17:26:10 CEST 2024 - jgross@suse.com (git-fixes). - commit 6b94c45 -------------------------------------------------------------------- -Mon Sep 16 16:52:08 CEST 2024 - jgross@suse.com - -- blacklist.conf: add 840b2d39a2dc ("virtio_ring: fix KMSAN error for premapped mode") -- commit 2b97440 - ------------------------------------------------------------------- Mon Sep 16 16:51:12 CEST 2024 - jgross@suse.com @@ -1689,12 +8950,6 @@ Mon Sep 16 16:51:12 CEST 2024 - jgross@suse.com and MSR_GS_BASE (git-fixes). - commit aeba695 -------------------------------------------------------------------- -Mon Sep 16 16:15:44 CEST 2024 - jgross@suse.com - -- blacklist.conf: add 611ff1b1ae98 ("xen: privcmd: Fix possible access to a freed kirqfd instance") -- commit d91e53f - ------------------------------------------------------------------- Mon Sep 16 15:47:44 CEST 2024 - lhenriques@suse.de @@ -1829,12 +9084,6 @@ Fri Sep 13 21:16:43 CEST 2024 - tonyj@suse.de functions (git fixes). - commit bb48e43 -------------------------------------------------------------------- -Fri Sep 13 21:15:11 CEST 2024 - tonyj@suse.de - -- blacklist.conf: Add perf git-fix that won't be backported -- commit fbbd522 - ------------------------------------------------------------------- Fri Sep 13 19:40:15 CEST 2024 - dsterba@suse.com @@ -2120,12 +9369,6 @@ Thu Sep 12 16:08:18 CEST 2024 - tiwai@suse.de - Move upstreamed input patch into sorted section - commit e197a51 -------------------------------------------------------------------- -Thu Sep 12 16:07:50 CEST 2024 - jgross@suse.com - -- blacklist.conf: add db5247d9bf5c ("vhost_task: Handle SIGKILL by flushing work and exiting") -- commit 7acfcbb - ------------------------------------------------------------------- Thu Sep 12 16:06:12 CEST 2024 - jgross@suse.com @@ -2157,12 +9400,6 @@ Thu Sep 12 13:58:10 CEST 2024 - jroedel@suse.de patches.suse/iommu-dma-Trace-bounce-buffer-usage-when-mapping-buf.patch. - commit d37ca1f -------------------------------------------------------------------- -Thu Sep 12 13:45:38 CEST 2024 - jgross@suse.com - -- blacklist.conf: add 778c350eb580 ("Revert KVM: async_pf: avoid recursive flushing of work items") -- commit 3ff1683 - ------------------------------------------------------------------- Thu Sep 12 13:44:28 CEST 2024 - jgross@suse.com @@ -2190,18 +9427,6 @@ Thu Sep 12 11:54:51 CEST 2024 - jgross@suse.com entries (git-fixes). - commit e3cb3e5 -------------------------------------------------------------------- -Thu Sep 12 10:18:36 CEST 2024 - jgross@suse.com - -- blacklist.conf: add f62d4c3eb687 ("KVM: arm64: Don't defer TLB invalidation when zapping table entries") -- commit 80a75dc - -------------------------------------------------------------------- -Thu Sep 12 10:11:31 CEST 2024 - jgross@suse.com - -- blacklist.conf: add c60d847be7b8 ("KVM: arm64: Fix double-free following kvm_pgtable_stage2_free_unlinked()") -- commit 518faac - ------------------------------------------------------------------- Thu Sep 12 10:05:18 CEST 2024 - jgross@suse.com @@ -2877,17 +10102,6 @@ Sat Sep 7 10:18:31 CEST 2024 - tiwai@suse.de (git-fixes). - commit 7a89765 -------------------------------------------------------------------- -Fri Sep 6 17:33:50 CEST 2024 - dsterba@suse.com - -- blacklist.conf: CVE-2024-43886 bsc#1229748: not applicable, functionality not present - The fix adds a NULL check but it is already there in this codebase. The - upstream fix is for patch 5db346c256bbac ("drm/amd/display: update pipe - topology log to support subvp") that adds a secondary display and - refactors code so the NULL check gets lost in - resource_log_pipe_topology_update(). -- commit b9c5bf2 - ------------------------------------------------------------------- Fri Sep 6 15:56:40 CEST 2024 - dsterba@suse.com @@ -3028,12 +10242,6 @@ Thu Sep 5 10:01:51 CEST 2024 - iivanov@suse.de - arm64: tlb: Fix TLBI RANGE operand (bsc#1229585) - commit 24bd468 -------------------------------------------------------------------- -Thu Sep 5 09:56:43 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("KVM: arm64: Use TLBI_TTL_UNKNOWN in __kvm_tlb_flush_vmid_range()") (bsc#1229585) -- commit 29fbf2b - ------------------------------------------------------------------- Thu Sep 5 09:52:38 CEST 2024 - iivanov@suse.de @@ -3249,12 +10457,6 @@ Wed Sep 4 07:41:41 CEST 2024 - neilb@suse.de (git-fixes). - commit 3ab58b8 -------------------------------------------------------------------- -Wed Sep 4 07:37:30 CEST 2024 - neilb@suse.de - -- blacklist.conf: These aren't wanted for various reasons. -- commit 39478da - ------------------------------------------------------------------- Wed Sep 4 00:34:05 CEST 2024 - krisman@suse.de @@ -3266,18 +10468,6 @@ Wed Sep 4 00:34:05 CEST 2024 - krisman@suse.de same way, but through a separate kABI patch. - commit 08e57d6 -------------------------------------------------------------------- -Tue Sep 3 16:04:36 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add cf3f9a593dab mm: optimize the redundant loop of mm_update_owner_next() -- commit 3184f0b - -------------------------------------------------------------------- -Tue Sep 3 15:59:41 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: d24f05987ce8 cgroup: Avoid extra dereference in css_populate_dir() -- commit 922f944 - ------------------------------------------------------------------- Tue Sep 3 14:44:24 CEST 2024 - oneukum@suse.com @@ -3674,15 +10864,6 @@ Fri Aug 30 16:03:27 CEST 2024 - vkarasulli@suse.de iommufd_device_do_replace() (git-fixes). - commit bbc9a65 -------------------------------------------------------------------- -Fri Aug 30 13:03:14 CEST 2024 - lhenriques@suse.de - -- blacklist.conf: add 053fc4f755ad fuse: fix UAF in rcu pathwalks - This commit breaks kABI and the data structure has no free room for the - extra field, i.e. memcpy would fail to copy the additional member added by - this patch. -- commit 941b81c - ------------------------------------------------------------------- Fri Aug 30 11:44:34 CEST 2024 - lhenriques@suse.de @@ -3696,12 +10877,6 @@ Fri Aug 30 11:11:17 CEST 2024 - petr.pavlu@suse.com (git-fixes). - commit 88d1dac -------------------------------------------------------------------- -Fri Aug 30 11:00:49 CEST 2024 - petr.pavlu@suse.com - -- blacklist.conf: add a not-relevant tracing commit -- commit 9e3013e - ------------------------------------------------------------------- Fri Aug 30 10:55:19 CEST 2024 - ailiop@suse.com @@ -3947,12 +11122,6 @@ Wed Aug 28 14:06:14 CEST 2024 - pjakobsson@suse.de - drm/amd/display: Fix null pointer deref in dcn20_resource.c (CVE-2024-43899 bsc#1229754). - commit 1811990 -------------------------------------------------------------------- -Wed Aug 28 10:37:01 CEST 2024 - andrea.porta@suse.com - -- blacklist.conf: add 56769ba4b297a629148eb24d554aef72d1ddfd9e -- commit e1cb2aa - ------------------------------------------------------------------- Wed Aug 28 09:55:29 CEST 2024 - mhocko@suse.com @@ -4023,7 +11192,7 @@ Tue Aug 27 18:43:37 CEST 2024 - vkarasulli@suse.de - kABI: vfio: struct virqfd kABI workaround (CVE-2024-26812 bsc#1222808). -- commit ae735c0 +- commit fec2e84 ------------------------------------------------------------------- Tue Aug 27 16:32:25 CEST 2024 - denis.kirjanov@suse.com @@ -4230,21 +11399,21 @@ Fri Aug 23 20:13:46 CEST 2024 - vkarasulli@suse.de - vfio/pci: fix potential memory leak in vfio_intx_enable() (git-fixes). -- commit 45c2786 +- commit b034db2 ------------------------------------------------------------------- Fri Aug 23 19:31:17 CEST 2024 - vkarasulli@suse.de - vfio: Introduce interface to flush virqfd inject workqueue (CVE-2024-26812 bsc#1222808). -- commit 0704da7 +- commit babdbba ------------------------------------------------------------------- Fri Aug 23 16:17:01 CEST 2024 - vkarasulli@suse.de - vfio/pci: Create persistent INTx handler (CVE-2024-26812 bsc#1222808). -- commit c0eeff7 +- commit 8062aa3 ------------------------------------------------------------------- Fri Aug 23 13:54:07 CEST 2024 - mgorman@suse.de @@ -4567,15 +11736,6 @@ Wed Aug 21 17:20:53 CEST 2024 - sjaeckel@suse.de bsc#1226604). - commit 7beae73 -------------------------------------------------------------------- -Wed Aug 21 16:37:18 CEST 2024 - andrea.porta@suse.com - -- blacklist.conf: git-fixes f2eaed1565acc2bdeb5c433f5f6c7bd7a0d62db1 - blacklisted since it involves backporting many other commits not - that are relevnat only to gdb debug scripts and whose dependent - commits may break kABI. -- commit 323e420 - ------------------------------------------------------------------- Wed Aug 21 16:19:21 CEST 2024 - rgoldwyn@suse.com @@ -4770,13 +11930,6 @@ Tue Aug 20 17:34:18 CEST 2024 - dwagner@suse.de Use the version which got upload upstream. - commit 4896f98 -------------------------------------------------------------------- -Tue Aug 20 17:32:22 CEST 2024 - jgross@suse.com - -- blacklist.conf: add ffe6176b7f53 ("virtio: store owner from modules - with register_virtio_driver()") -- commit 08df841 - ------------------------------------------------------------------- Tue Aug 20 17:31:40 CEST 2024 - jgross@suse.com @@ -4981,12 +12134,6 @@ Tue Aug 20 10:32:23 CEST 2024 - mfranc@suse.cz (git-fixes bsc#1229451). - commit 4e0b259 -------------------------------------------------------------------- -Tue Aug 20 10:20:39 CEST 2024 - mfranc@suse.cz - -- blacklist.conf: we don't enable CONFIG_CPUMASK_OFFSTACK on s390 -- commit 8a36035 - ------------------------------------------------------------------- Tue Aug 20 10:11:40 CEST 2024 - pjakobsson@suse.de @@ -5031,12 +12178,6 @@ Tue Aug 20 09:03:13 CEST 2024 - tiwai@suse.de (stable-fixes). - commit a485c9b -------------------------------------------------------------------- -Tue Aug 20 08:53:29 CEST 2024 - tiwai@suse.de - -- blacklist.conf: Add libata upstream revert entry (bsc#1229054) -- commit 5ded40a - ------------------------------------------------------------------- Tue Aug 20 08:24:59 CEST 2024 - shung-hsi.yu@suse.com @@ -5145,12 +12286,6 @@ Mon Aug 19 08:41:03 CEST 2024 - tiwai@suse.de (git-fixes). - commit e3fe681 -------------------------------------------------------------------- -Mon Aug 19 06:55:31 CEST 2024 - neilb@suse.de - -- blacklist.conf: add unwanted nfs/sunrpc patch -- commit 405ec89 - ------------------------------------------------------------------- Mon Aug 19 06:53:37 CEST 2024 - neilb@suse.de @@ -5270,12 +12405,6 @@ Fri Aug 16 18:05:44 CEST 2024 - ailiop@suse.com (git-fixes). - commit 184b713 -------------------------------------------------------------------- -Fri Aug 16 17:59:06 CEST 2024 - jgross@suse.com - -- blacklist.conf: add f99b052256f1 ("KVM: SNP: Fix LBR Virtualization for SNP guest") -- commit c9ad47e - ------------------------------------------------------------------- Fri Aug 16 17:52:51 CEST 2024 - jgross@suse.com @@ -5402,12 +12531,6 @@ Fri Aug 16 14:09:45 CEST 2024 - ailiop@suse.com - xfs: allow symlinks with short remote targets (bsc#1229160). - commit e82d4ad -------------------------------------------------------------------- -Fri Aug 16 14:04:33 CEST 2024 - jgross@suse.com - -- blacklist.conf: add 1c682593096a ("xen: privcmd: Switch from mutex to spinlock for irqfds") -- commit 46d4480 - ------------------------------------------------------------------- Fri Aug 16 14:01:51 CEST 2024 - jgross@suse.com @@ -5491,25 +12614,6 @@ Thu Aug 15 20:27:34 CEST 2024 - msuchanek@suse.de CONFIG_KVM_BOOK3S_HV_POSSIBLE (bsc#1194869). - commit 4e7f0fe -------------------------------------------------------------------- -Thu Aug 15 19:38:47 CEST 2024 - msuchanek@suse.de - -- blacklist.conf: Add a bunch of superfluous ppc changes reported by - git-fixes. -- commit 7c2a851 - -------------------------------------------------------------------- -Thu Aug 15 18:40:14 CEST 2024 - msuchanek@suse.de - -- blacklist.conf: Add ppc more ppc unsupported arch paths and commits. -- commit 66e06b4 - -------------------------------------------------------------------- -Thu Aug 15 18:05:23 CEST 2024 - msuchanek@suse.de - -- blacklist.conf: Add more ppc 32bit paths. -- commit 013a9db - ------------------------------------------------------------------- Thu Aug 15 17:09:55 CEST 2024 - iivanov@suse.de @@ -6315,7 +13419,7 @@ Sat Aug 10 10:27:04 CEST 2024 - tiwai@suse.de Sat Aug 10 09:45:49 CEST 2024 - tiwai@suse.de - Moved upstreamed ASoC patch into sorted section -- commit 3058bc3 +- commit 47c5c29 ------------------------------------------------------------------- Sat Aug 10 09:37:31 CEST 2024 - tiwai@suse.de @@ -6337,24 +13441,7 @@ Sat Aug 10 09:37:31 CEST 2024 - tiwai@suse.de - ALSA: hda: Add HP MP9 G4 Retail System AMS to force connect list (stable-fixes). - ALSA: line6: Fix racy access to midibuf (stable-fixes). -- ASoC: cs35l56: Patch CS35L56_IRQ1_MASK_18 to the default value - (stable-fixes). -- ASoC: amd: yc: Support mic on Lenovo Thinkpad E14 Gen 6 - (stable-fixes). -- ASoC: cs35l56: Handle OTP read latency over SoundWire - (stable-fixes). -- ASoC: nau8822: Lower debug print priority (stable-fixes). -- ASoC: fsl_micfil: Expand the range of FIFO watermark mask - (stable-fixes). -- ASoC: amd: yc: Support mic on HP 14-em0002la (stable-fixes). -- ALSA: hda/realtek: Add Framework Laptop 13 (Intel Core Ultra) - to quirks (stable-fixes). -- ALSA: hda/hdmi: Yet more pin fix for HP EliteDesk 800 G4 - (stable-fixes). -- ALSA: hda: Add HP MP9 G4 Retail System AMS to force connect list - (stable-fixes). -- ALSA: line6: Fix racy access to midibuf (stable-fixes). -- commit a8c8868 +- commit c1044c2 ------------------------------------------------------------------- Sat Aug 10 09:30:52 CEST 2024 - tiwai@suse.de @@ -6368,16 +13455,7 @@ Sat Aug 10 09:30:52 CEST 2024 - tiwai@suse.de - ASoC: codecs: wcd938x-sdw: Correct Soundwire ports mask (git-fixes). - ALSA: usb-audio: Re-add ScratchAmp quirk entries (git-fixes). -- ASoC: meson: axg-fifo: fix irq scheduling issue with PREEMPT_RT - (git-fixes). -- ASoC: SOF: Remove libraries from topology lookups (git-fixes). -- ASoC: codecs: wsa884x: Correct Soundwire ports mask (git-fixes). -- ASoC: codecs: wsa883x: Correct Soundwire ports mask (git-fixes). -- ASoC: codecs: wsa881x: Correct Soundwire ports mask (git-fixes). -- ASoC: codecs: wcd938x-sdw: Correct Soundwire ports mask - (git-fixes). -- ALSA: usb-audio: Re-add ScratchAmp quirk entries (git-fixes). -- commit cdc2939 +- commit 2621ea8 ------------------------------------------------------------------- Fri Aug 9 21:13:42 CEST 2024 - mpdesouza@suse.com @@ -6422,12 +13500,8 @@ Fri Aug 9 16:37:03 CEST 2024 - mfranc@suse.cz ------------------------------------------------------------------- Fri Aug 9 14:35:05 CEST 2024 - pmladek@suse.com -- blacklist.conf: printk/sysctl: breaks kernel without pre-requisite - patches (bsc#1229025) -- Delete - patches.suse/printk-Remove-the-now-superfluous-sentinel-elements-from-ctl_table-array.patch. - blacklist.conf: printk/sysctl: breaks kernel without pre-requisite patches (bsc#1229025) - Delete patches.suse/printk-Remove-the-now-superfluous-sentinel-elements-from-ctl_table-array.patch. -- commit 3560636 +- commit b88511a ------------------------------------------------------------------- Fri Aug 9 13:30:05 CEST 2024 - mfranc@suse.cz @@ -6908,12 +13982,6 @@ Wed Aug 7 14:05:50 CEST 2024 - tbogendoerfer@suse.de (CVE-2024-42162 bsc#1228706). - commit e94d07a -------------------------------------------------------------------- -Wed Aug 7 13:29:08 CEST 2024 - jslaby@suse.cz - -- blacklist.conf: add some IRQ HANDLING ones -- commit 404c094 - ------------------------------------------------------------------- Wed Aug 7 13:07:25 CEST 2024 - mkoutny@suse.com @@ -7060,12 +14128,6 @@ Mon Aug 5 19:10:12 CEST 2024 - msuchanek@suse.de with MSR_EE (bsc#1215199). - commit 6051d0b -------------------------------------------------------------------- -Mon Aug 5 18:57:39 CEST 2024 - msuchanek@suse.de - -- blacklist.conf: KVM PPC APIv2 enablement not included. -- commit b36c39a - ------------------------------------------------------------------- Mon Aug 5 16:35:22 CEST 2024 - tbogendoerfer@suse.de @@ -7714,13 +14776,6 @@ Fri Aug 2 15:36:25 CEST 2024 - sjaeckel@suse.de in nsh_gso_segment() (CVE-2024-36933 bsc#1225832). - commit 6740d82 -------------------------------------------------------------------- -Fri Aug 2 14:48:37 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add 943ad0b62e3c kernel: rerun task_work while freezing in get_signal() - and related io_uring fix. -- commit ead5c32 - ------------------------------------------------------------------- Fri Aug 2 14:12:56 CEST 2024 - sjaeckel@suse.de @@ -7728,12 +14783,6 @@ Fri Aug 2 14:12:56 CEST 2024 - sjaeckel@suse.de (CVE-2024-36929 bsc#1225814). - commit e49ed10 -------------------------------------------------------------------- -Fri Aug 2 13:53:13 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add 7a4479680d7f cgroup_misc: add kernel-doc comments for enum misc_res_type -- commit fe05fa4 - ------------------------------------------------------------------- Fri Aug 2 13:52:28 CEST 2024 - mkoutny@suse.com @@ -7891,13 +14940,6 @@ Wed Jul 31 10:48:53 CEST 2024 - lhenriques@suse.de fscache_try_get_volume() (bsc#1228459 bsc#1228462). - commit a80ddf3 -------------------------------------------------------------------- -Wed Jul 31 10:25:23 CEST 2024 - oneukum@suse.com - -- platform/chrome: cros_ec_proto: Lock device when updating MKBP - version (git-fixes). -- commit ab277a6 - ------------------------------------------------------------------- Wed Jul 31 10:02:32 CEST 2024 - heming.zhao@suse.com @@ -8016,42 +15058,6 @@ Tue Jul 30 11:16:24 CEST 2024 - shung-hsi.yu@suse.com Fix the issue by adding parenthesis around ternary operator. - commit dfba20e -------------------------------------------------------------------- -Tue Jul 30 11:10:16 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add 9c573cd31343 randomize_kstack: Improve entropy diffusion -- commit 095be15 - -------------------------------------------------------------------- -Tue Jul 30 10:53:31 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 1dd3f93 - -------------------------------------------------------------------- -Tue Jul 30 10:50:00 CEST 2024 - oneukum@suse.com - -- blacklist.conf: spelling fix in comment -- commit de0ca0a - -------------------------------------------------------------------- -Tue Jul 30 10:48:26 CEST 2024 - oneukum@suse.com - -- blacklist.conf: cleanup, no code change -- commit 19384b6 - -------------------------------------------------------------------- -Tue Jul 30 10:46:03 CEST 2024 - oneukum@suse.com - -- blacklist.conf: pure cleanup -- commit 21ff021 - -------------------------------------------------------------------- -Tue Jul 30 10:43:49 CEST 2024 - oneukum@suse.com - -- blacklist.conf: pure cleanup -- commit fef6015 - ------------------------------------------------------------------- Tue Jul 30 08:37:32 CEST 2024 - tiwai@suse.de @@ -8579,25 +15585,12 @@ Tue Jul 23 11:57:37 CEST 2024 - nik.borisov@suse.com - x86/resctrl: Remove redundant variable in mbm_config_write_domain() (git-fixes). - commit 7ae6079 -------------------------------------------------------------------- -Tue Jul 23 11:57:14 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: This patch gets reverted -- commit c490f33 - ------------------------------------------------------------------- Tue Jul 23 11:56:24 CEST 2024 - nik.borisov@suse.com - x86/resctrl: Read supported bandwidth sources from CPUID (git-fixes). - commit 907534d -------------------------------------------------------------------- -Tue Jul 23 11:55:05 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: Remove dead-end revert - We never merged the buggy upstream fix. -- commit 9b319fd - ------------------------------------------------------------------- Tue Jul 23 11:50:03 CEST 2024 - nik.borisov@suse.com @@ -8674,7 +15667,7 @@ Tue Jul 23 10:42:33 CEST 2024 - mhocko@suse.com Tue Jul 23 10:31:43 CEST 2024 - jslaby@suse.cz - PCI: Extend ACS configurability (bsc#1228090). -- commit 571e431 +- commit 3be1ce1 ------------------------------------------------------------------- Tue Jul 23 10:21:51 CEST 2024 - nik.borisov@suse.com @@ -8955,13 +15948,6 @@ Mon Jul 22 16:35:48 CEST 2024 - ailiop@suse.com path (bsc#1228211). - commit 4c79a42 -------------------------------------------------------------------- -Mon Jul 22 15:30:13 CEST 2024 - oneukum@suse.com - -- supported.conf: Add support for v4l2-dv-timings - (jsc#PED-8645) -- commit 6262df7 - ------------------------------------------------------------------- Mon Jul 22 15:24:53 CEST 2024 - oneukum@suse.com @@ -9084,12 +16070,6 @@ Mon Jul 22 14:46:53 CEST 2024 - iivanov@suse.de - arm64: dts: imx93-11x11-evk: Remove the 'no-sdio' property (git-fixes) - commit a10e3de -------------------------------------------------------------------- -Mon Jul 22 14:45:36 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: dts: freescale: imx8mm-verdin: Fix GPU speed") -- commit ea9f475 - ------------------------------------------------------------------- Mon Jul 22 14:40:20 CEST 2024 - tiwai@suse.de @@ -10531,15 +17511,6 @@ Wed Jul 17 09:31:55 CEST 2024 - tiwai@suse.de pmic_glink_init (git-fixes). - commit aea26b0 -------------------------------------------------------------------- -Tue Jul 16 18:29:23 CEST 2024 - ailiop@suse.com - -- blacklist.conf: add 54cbc058d86b - commit 54cbc058d86b ("fs/aio: Make io_cancel() generate completions - again") was later reverted upstream by commit 28468cbed92e, so blacklist - it. -- commit bc9be4f - ------------------------------------------------------------------- Tue Jul 16 18:25:16 CEST 2024 - fdmanana@suse.com @@ -11098,12 +18069,6 @@ Mon Jul 15 13:33:32 CEST 2024 - mhocko@suse.com (CVE-2024-27064 bsc#1223740). - commit daf6634 -------------------------------------------------------------------- -Mon Jul 15 13:30:59 CEST 2024 - oneukum@suse.com - -- blacklist.conf: feature, not fix -- commit 7a64b31 - ------------------------------------------------------------------- Mon Jul 15 13:30:17 CEST 2024 - petr.pavlu@suse.com @@ -11117,12 +18082,6 @@ Mon Jul 15 13:12:22 CEST 2024 - mhocko@suse.com tipc_udp_nl_bearer_add() (CVE-2024-26663 bsc#1222326). - commit fff5ef3 -------------------------------------------------------------------- -Mon Jul 15 11:47:14 CEST 2024 - petr.pavlu@suse.com - -- blacklist.conf: add not-relevant tracing fixes -- commit b158327 - ------------------------------------------------------------------- Mon Jul 15 11:41:17 CEST 2024 - petr.pavlu@suse.com @@ -13844,12 +20803,6 @@ Wed Jul 10 10:28:13 CEST 2024 - nik.borisov@suse.com - x86/asm: Fix build of UML with KASAN (git-fixes). - commit 89fc5d7 -------------------------------------------------------------------- -Wed Jul 10 10:27:52 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: Blacklist useless revert -- commit 0a21e69 - ------------------------------------------------------------------- Wed Jul 10 10:04:47 CEST 2024 - nik.borisov@suse.com @@ -14230,12 +21183,6 @@ Thu Jul 4 18:58:54 CEST 2024 - vkarasulli@suse.de - iommu/arm-smmu-v3: Free MSIs in case of ENOMEM (git-fixes). - commit 2fb4aa0 -------------------------------------------------------------------- -Thu Jul 4 17:41:12 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add d988d9a9b9d1 panic: Flush kernel log buffer at the end -- commit 0ce2686 - ------------------------------------------------------------------- Thu Jul 4 15:25:28 CEST 2024 - ptesarik@suse.com @@ -14310,12 +21257,6 @@ Wed Jul 3 14:51:53 CEST 2024 - hare@suse.de CVE-2024-38604). - commit 9e332c1 -------------------------------------------------------------------- -Wed Jul 3 14:41:56 CEST 2024 - pjakobsson@suse.de - -- blacklist.conf: 9cb46b31f3d0 drm/xe/xe_migrate: Cast to output precision before multiplying operands -- commit d95545e - ------------------------------------------------------------------- Wed Jul 3 14:19:36 CEST 2024 - denis.kirjanov@suse.com @@ -15708,12 +22649,6 @@ Fri Jun 28 15:37:51 CEST 2024 - tiwai@suse.de to peer STA/P2PClient (bsc#1227149). - commit 03e12a0 -------------------------------------------------------------------- -Fri Jun 28 15:37:23 CEST 2024 - tiwai@suse.de - -- blacklist: drop the wifi entries to be backported -- commit 891934b - ------------------------------------------------------------------- Fri Jun 28 15:35:23 CEST 2024 - tiwai@suse.de @@ -16605,13 +23540,6 @@ Mon Jun 24 17:40:50 CEST 2024 - nik.borisov@suse.com - x86/uaccess: Fix missed zeroing of ia32 u64 get_user() range checking (git-fixes). - commit 1c4403a -------------------------------------------------------------------- -Mon Jun 24 17:31:22 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: Blacklist invalid commit (git-fixes) - We don't support CPU_MITIGATIONS hence to need for this logic -- commit 6899966 - ------------------------------------------------------------------- Mon Jun 24 09:44:52 CEST 2024 - tbogendoerfer@suse.de @@ -16764,12 +23692,6 @@ Fri Jun 21 17:24:29 CEST 2024 - mkoutny@suse.com parameter in cpu_max_write() (bsc#1226791). - commit 6b67975 -------------------------------------------------------------------- -Fri Jun 21 17:21:26 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add 6fb454606153 sched: Simplify tg_set_cfs_bandwidth() -- commit 4e56705 - ------------------------------------------------------------------- Fri Jun 21 16:31:57 CEST 2024 - dfaggioli@suse.com @@ -16861,12 +23783,6 @@ Thu Jun 20 17:39:41 CEST 2024 - lhenriques@suse.de (bsc#1226588). - commit b238f81 -------------------------------------------------------------------- -Thu Jun 20 12:31:55 CEST 2024 - jslaby@suse.cz - -- blacklist.conf: add ppdev cleanup -- commit 58ce126 - ------------------------------------------------------------------- Thu Jun 20 10:59:35 CEST 2024 - mfranc@suse.cz @@ -17384,12 +24300,6 @@ Fri Jun 14 14:07:11 CEST 2024 - shung-hsi.yu@suse.com (bsc#1225903). - commit 63dfc45 -------------------------------------------------------------------- -Fri Jun 14 13:27:19 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add a7fb0423c201 cgroup: Move rcu_head up near the top of cgroup_root -- commit 3f951ce - ------------------------------------------------------------------- Fri Jun 14 12:18:36 CEST 2024 - denis.kirjanov@suse.com @@ -17786,14 +24696,6 @@ Thu Jun 13 11:57:17 CEST 2024 - ailiop@suse.com since there are no SLE consumers of it, mark it as optional. - commit 264e3d2 -------------------------------------------------------------------- -Thu Jun 13 11:55:02 CEST 2024 - ailiop@suse.com - -- blacklist.conf: add f2fs fixes 87161a2b0aed and 4e0197f9932f - Both are f2fs-related fixes, f2fs is unsupported and not compiled at - all. -- commit e891815 - ------------------------------------------------------------------- Thu Jun 13 11:52:09 CEST 2024 - ailiop@suse.com @@ -17809,12 +24711,6 @@ Thu Jun 13 11:32:01 CEST 2024 - fvogt@suse.de build. - commit aaee141 -------------------------------------------------------------------- -Thu Jun 13 10:11:58 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 70e89e6 - ------------------------------------------------------------------- Thu Jun 13 10:09:33 CEST 2024 - oneukum@suse.com @@ -18009,12 +24905,6 @@ Mon Jun 10 21:03:05 CEST 2024 - krisman@suse.de CVE-2023-52672). - commit 333fe30 -------------------------------------------------------------------- -Mon Jun 10 17:13:33 CEST 2024 - lduncan@suse.com - -- blacklist.conf: add bsc#1223013 CVE-2024-26482, does not apply -- commit a7ff2c2 - ------------------------------------------------------------------- Mon Jun 10 13:36:57 CEST 2024 - davide.benini@suse.com @@ -18022,12 +24912,6 @@ Mon Jun 10 13:36:57 CEST 2024 - davide.benini@suse.com (CVE-2024-36005 bsc#1224539). - commit 5b08b61 -------------------------------------------------------------------- -Mon Jun 10 10:47:24 CEST 2024 - oneukum@suse.com - -- blacklist.conf: irrelevant build fix -- commit 226f27a - ------------------------------------------------------------------- Sat Jun 8 16:22:10 CEST 2024 - lduncan@suse.com @@ -18273,14 +25157,6 @@ Tue Jun 4 20:13:35 CEST 2024 - ematsumiya@suse.de (bsc#1225172, bsc#1225548, CVE-2023-52757). - commit 1b322a8 -------------------------------------------------------------------- -Tue Jun 4 12:28:46 CEST 2024 - davide.benini@suse.com - -- blacklist.conf: add d380ce70058a4ccddc3e5f5c2063165dc07672c6 - netrom: Fix data-races around sysctl_net_busy_read - (CVE-2024-27419 bsc#1224759) -- commit 1fe217c - ------------------------------------------------------------------- Tue Jun 4 12:01:21 CEST 2024 - iivanov@suse.de @@ -18366,732 +25242,6 @@ Mon Jun 3 15:25:22 CEST 2024 - dwagner@suse.de - nvme: fix multipath batched completion accounting (git-fixes). - commit ed3b392 -------------------------------------------------------------------- -Mon Jun 3 14:40:11 CEST 2024 - mfranc@suse.cz - -- Update - patches.suse/ACPI-CPPC-Use-access_width-over-bit_width-for-system.patch - (stable-fixes bsc#1224557 CVE-2024-35995). -- Update - patches.suse/ACPI-LPIT-Avoid-u32-multiplication-overflow.patch - (git-fixes bsc#1224627 CVE-2023-52683). -- Update - patches.suse/ACPI-video-check-for-error-while-searching-for-backl.patch - (git-fixes bsc#1224686 CVE-2023-52693). -- Update - patches.suse/ALSA-hda-intel-sdw-acpi-fix-usage-of-device_get_name.patch - (git-fixes CVE-2024-36955). -- Update - patches.suse/ALSA-usb-audio-Stop-parsing-channels-bits-when-all-c.patch - (git-fixes bsc#1224803 CVE-2024-27436). -- Update - patches.suse/ARM-9381-1-kasan-clear-stale-stack-poison.patch - (git-fixes bsc#1225715 CVE-2024-36906). -- Update - patches.suse/ASoC-Intel-sof_sdw_rt_sdca_jack_common-ctx-headset_c.patch - (git-fixes bsc#1224596 CVE-2023-52697). -- Update - patches.suse/ASoC-SOF-amd-Fix-memory-leak-in-amd_sof_acp_probe.patch - (git-fixes bsc#1224630 CVE-2023-52663). -- Update - patches.suse/ASoC-SOF-ipc4-pcm-Workaround-for-crashed-firmware-on.patch - (stable-fixes bsc#1223831 CVE-2024-27057). -- Update - patches.suse/ASoC-mediatek-sof-common-Add-NULL-check-for-normal_l.patch - (git-fixes bsc#1224688 CVE-2024-35842). -- Update - patches.suse/Bluetooth-Fix-memory-leak-in-hci_req_sync_complete.patch - (git-fixes bsc#1224571 CVE-2024-35978). -- Update - patches.suse/Bluetooth-Fix-use-after-free-bugs-caused-by-sco_sock.patch - (git-fixes bsc#1224174 CVE-2024-27398). -- Update - patches.suse/Bluetooth-HCI-Fix-potential-null-ptr-deref.patch - (git-fixes bsc#1225579 CVE-2024-36011). -- Update - patches.suse/Bluetooth-L2CAP-Fix-not-validating-setsockopt-user-i.patch - (git-fixes bsc#1224579 CVE-2024-35965). -- Update - patches.suse/Bluetooth-RFCOMM-Fix-not-validating-setsockopt-user-.patch - (git-fixes bsc#1224576 CVE-2024-35966). -- Update - patches.suse/Bluetooth-SCO-Fix-not-validating-setsockopt-user-inp.patch - (git-fixes bsc#1224587 CVE-2024-35967). -- Update - patches.suse/Bluetooth-btintel-Fix-null-ptr-deref-in-btintel_read.patch - (stable-fixes bsc#1224640 CVE-2024-35933). -- Update - patches.suse/Bluetooth-hci_event-Fix-handling-of-HCI_EV_IO_CAPA_R.patch - (git-fixes bsc#1224723 CVE-2024-27416). -- Update - patches.suse/Bluetooth-hci_sock-Fix-not-validating-setsockopt-use.patch - (git-fixes bsc#1224582 CVE-2024-35963). -- Update - patches.suse/Bluetooth-l2cap-fix-null-ptr-deref-in-l2cap_chan_tim.patch - (git-fixes bsc#1224177 CVE-2024-27399). -- Update - patches.suse/Bluetooth-msft-fix-slab-use-after-free-in-msft_do_cl.patch - (git-fixes bsc#1225502 CVE-2024-36012). -- Update - patches.suse/Bluetooth-qca-add-missing-firmware-sanity-checks.patch - (git-fixes bsc#1225722 CVE-2024-36880). -- Update - patches.suse/Bluetooth-qca-fix-NULL-deref-on-non-serdev-setup.patch - (git-fixes bsc#1224600 CVE-2024-35850). -- Update - patches.suse/Bluetooth-qca-fix-NULL-deref-on-non-serdev-suspend.patch - (git-fixes bsc#1224509 CVE-2024-35851). -- Update - patches.suse/Bluetooth-qca-fix-firmware-check-error-path.patch - (git-fixes CVE-2024-36942). -- Update - patches.suse/Bluetooth-qca-fix-info-leak-when-fetching-fw-build-i.patch - (git-fixes bsc#1225720 CVE-2024-36032). -- Update - patches.suse/Bluetooth-rfcomm-Fix-null-ptr-deref-in-rfcomm_check_.patch - (bsc#1219170 CVE-2024-22099 bsc#1223187 CVE-2024-26903). -- Update - patches.suse/HID-i2c-hid-remove-I2C_HID_READ_PENDING-flag-to-prev.patch - (git-fixes bsc#1224552 CVE-2024-35997). -- Update - patches.suse/NFS-Fix-nfs_netfs_issue_read-xarray-locking-for-writ.patch - (git-fixes bsc#1223805 CVE-2024-27031). -- Update - patches.suse/NFSv4.2-fix-nfs4_listxattr-kernel-BUG-at-mm-usercopy.patch - (git-fixes bsc#1223113 CVE-2024-26870). -- Update - patches.suse/PCI-PM-Drain-runtime-idle-callbacks-before-driver-re.patch - (stable-fixes bsc#1224738 CVE-2024-35809). -- Update - patches.suse/Reapply-drm-qxl-simplify-qxl_fence_wait.patch - (stable-fixes CVE-2024-36944). -- Update - patches.suse/Revert-drm-amd-pm-resolve-reboot-exception-for-si-ol.patch - (git-fixes bsc#1224722 CVE-2023-52657). -- Update - patches.suse/Revert-net-mlx5-Block-entering-switchdev-mode-with-n.patch - (git-fixes bsc#1224719 CVE-2023-52658). -- Update - patches.suse/SUNRPC-fix-a-memleak-in-gss_import_v2_context.patch - (git-fixes bsc#1223712 CVE-2023-52653). -- Update - patches.suse/SUNRPC-fix-some-memleaks-in-gssx_dec_option_array.patch - (git-fixes bsc#1223744 CVE-2024-27388). -- Update - patches.suse/USB-core-Fix-access-violation-during-port-device-rem.patch - (git-fixes bsc#1225734 CVE-2024-36896). -- Update - patches.suse/USB-core-Fix-deadlock-in-usb_deauthorize_interface.patch - (git-fixes bsc#1223671 CVE-2024-26934). -- Update patches.suse/accel-ivpu-Fix-deadlock-in-context_xa.patch - (git-fixes bsc#1224704 CVE-2024-35953). -- Update - patches.suse/amd-amdkfd-sync-all-devices-to-wait-all-processes-be.patch - (stable-fixes CVE-2024-36949). -- Update - patches.suse/arm64-hibernate-Fix-level3-translation-fault-in-swsu.patch - (git-fixes bsc#1223748 CVE-2024-26989). -- Update patches.suse/ax25-Fix-netdev-refcount-issue.patch - (git-fixes bsc#1224542 CVE-2024-36009). -- Update - patches.suse/ax25-fix-use-after-free-bugs-caused-by-ax25_ds_del_t.patch - (git-fixes bsc#1224663 CVE-2024-35887). -- Update - patches.suse/batman-adv-Avoid-infinite-loop-trying-to-resize-loca.patch - (git-fixes bsc#1224566 CVE-2024-35982). -- Update - patches.suse/block-fix-q-blkg_list-corruption-during-disk-rebind.patch - (bsc#1223591 bsc#1224573 CVE-2024-35974). -- Update - patches.suse/bnxt_en-Fix-possible-memory-leak-in-bnxt_rdma_aux_de.patch - (git-fixes bsc#1224577 CVE-2024-35972). -- Update - patches.suse/bootconfig-use-memblock_free_late-to-free-xbc-memory.patch - (git-fixes bsc#1223637 CVE-2024-26983). -- Update - patches.suse/bpf-Guard-stack-limits-against-32bit-overflow.patch - (git-fixes bsc#1224730 CVE-2023-52676). -- Update - patches.suse/btrfs-fix-deadlock-with-fiemap-and-extent-locking.patch - (bsc#1223285 bsc#1224804 CVE-2024-35784). -- Update - patches.suse/btrfs-fix-information-leak-in-btrfs_ioctl_logical_to.patch - (git-fixes bsc#1224733 CVE-2024-35849). -- Update - patches.suse/btrfs-fix-race-between-ordered-extent-completion-and.patch - (bsc#1223285 bsc#1222426 CVE-2024-26794). -- Update - patches.suse/btrfs-fix-race-when-detecting-delalloc-ranges-during.patch - (bsc#1223285 bsc#1223782 CVE-2024-27080). -- Update - patches.suse/btrfs-handle-chunk-tree-lookup-error-in-btrfs_reloca.patch - (git-fixes bsc#1224644 CVE-2024-35936). -- Update - patches.suse/clk-Get-runtime-PM-before-walking-tree-during-disabl.patch - (git-fixes bsc#1223762 CVE-2024-27004). -- Update - patches.suse/clk-Get-runtime-PM-before-walking-tree-for-clk_summa.patch - (git-fixes bsc#1223761 CVE-2024-27003). -- Update - patches.suse/clk-mediatek-Do-a-runtime-PM-get-on-controllers-duri.patch - (git-fixes bsc#1223759 CVE-2024-27002). -- Update - patches.suse/clk-sunxi-ng-h6-Reparent-CPUX-during-PLL-CPUX-rate-c.patch - (git-fixes bsc#1225692 CVE-2023-52882). -- Update - patches.suse/comedi-vmk80xx-fix-incomplete-endpoint-checking.patch - (git-fixes bsc#1223698 CVE-2024-27001). -- Update - patches.suse/crypto-rsa-add-a-check-for-allocation-failure.patch - (bsc#1222775 bsc#1220430 CVE-2023-52472). -- Update - patches.suse/crypto-s390-aes-Fix-buffer-overread-in-CTR-mode.patch - (git-fixes bsc#1224637 CVE-2023-52669). -- Update - patches.suse/crypto-safexcel-Add-error-handling-for-dma_map_sg-ca.patch - (git-fixes bsc#1224501 CVE-2023-52687). -- Update - patches.suse/cxl-pci-Fix-disabling-memory-if-DVSEC-CXL-Range-does.patch - (git-fixes CVE-2024-26761). -- Update - patches.suse/dm-raid-really-frozen-sync_thread-during-suspend-16c4.patch - (jsc#PED-7542 bsc#1224706 CVE-2024-35794). -- Update - patches.suse/dm-raid456-md-raid456-fix-a-deadlock-for-dm-raid456-4142.patch - (bsc#1219596 bsc#1223654 CVE-2024-26962). -- Update - patches.suse/dma-buf-Fix-NULL-pointer-dereference-in-sanitycheck.patch - (git-fixes bsc#1224480 CVE-2024-35916). -- Update patches.suse/dma-xilinx_dpdma-Fix-locking.patch - (git-fixes bsc#1224559 CVE-2024-35990). -- Update - patches.suse/dmaengine-fsl-qdma-Fix-a-memory-leak-related-to-the--3aa58cb.patch - (git-fixes bsc#1224632 CVE-2024-35833). -- Update - patches.suse/dmaengine-idxd-Fix-oops-during-rmmod-on-single-CPU-p.patch - (git-fixes bsc#1224558 CVE-2024-35989). -- Update - patches.suse/dpll-fix-dpll_pin_on_pin_register-for-multiple-paren.patch - (CVE-2024-27027 bsc#1223787 bsc#1224546 CVE-2024-36002). -- Update - patches.suse/dpll-fix-pin-dump-crash-for-rebound-module.patch - (jsc#PED-6079 bsc#1224633 CVE-2024-35836). -- Update - patches.suse/drm-Check-output-polling-initialized-before-disablin.patch - (stable-fixes bsc#1224654 CVE-2024-35927). -- Update - patches.suse/drm-amd-amdgpu-Fix-potential-ioremap-memory-leaks-in.patch - (stable-fixes bsc#1224653 CVE-2024-35928). -- Update - patches.suse/drm-amd-display-Atom-Integrated-System-Info-v2_2-for.patch - (stable-fixes bsc#1225735 CVE-2024-36897). -- Update - patches.suse/drm-amd-display-Check-writeback-connectors-in-create.patch - (git-fixes bsc#1224506 CVE-2023-52695). -- Update - patches.suse/drm-amd-display-Fix-a-debugfs-null-pointer-error.patch - (git-fixes bsc#1224741 CVE-2023-52673). -- Update - patches.suse/drm-amd-display-Fix-bounds-check-for-dcn35-DcfClocks.patch - (git-fixes bsc#1224709 CVE-2024-35788). -- Update - patches.suse/drm-amd-display-Fix-hang-underflow-when-transitionin.patch - (git-fixes bsc#1224729 CVE-2023-52671). -- Update - patches.suse/drm-amd-display-Prevent-crash-when-disable-stream.patch - (stable-fixes bsc#1224740 CVE-2024-35799). -- Update - patches.suse/drm-amd-pm-fix-a-double-free-in-si_dpm_init.patch - (git-fixes bsc#1224607 CVE-2023-52691). -- Update - patches.suse/drm-amd-pm-fixes-a-random-hang-in-S4-for-SMU-v13.0.4.patch - (stable-fixes bsc#1225705 CVE-2024-36026). -- Update - patches.suse/drm-amdgpu-amdgpu_ttm_gart_bind-set-gtt-bound-flag.patch - (stable-fixes bsc#1224736 CVE-2024-35817). -- Update - patches.suse/drm-amdgpu-fix-deadlock-while-reading-mqd-from-debug.patch - (git-fixes bsc#1224634 CVE-2024-35795). -- Update - patches.suse/drm-amdgpu-fix-mmhub-client-id-out-of-bounds-access.patch - (git-fixes bsc#1223789 CVE-2024-27029). -- Update - patches.suse/drm-amdgpu-once-more-fix-the-call-oder-in-amdgpu_ttm.patch - (git-fixes bsc#1224180 CVE-2024-27400). -- Update - patches.suse/drm-amdgpu-pm-Fix-NULL-pointer-dereference-when-get-.patch - (git-fixes bsc#1223665 CVE-2024-26949). -- Update - patches.suse/drm-amdgpu-validate-the-parameters-of-bo-mapping-ope.patch - (git-fixes bsc#1223315 CVE-2024-26922). -- Update - patches.suse/drm-amdkfd-Confirm-list-is-non-empty-before-utilizin.patch - (git-fixes bsc#1224617 CVE-2023-52678). -- Update - patches.suse/drm-amdkfd-Fix-memory-leak-in-create_process-failure.patch - (git-fixes bsc#1223728 CVE-2024-26986). -- Update - patches.suse/drm-amdkfd-range-check-cp-bad-op-exception-interrupt.patch - (stable-fixes CVE-2024-36951). -- Update - patches.suse/drm-arm-malidp-fix-a-possible-null-pointer-dereferen.patch - (git-fixes bsc#1225593 CVE-2024-36014). -- Update patches.suse/drm-ast-Fix-soft-lockup.patch (git-fixes - bsc#1224705 CVE-2024-35952). -- Update - patches.suse/drm-bridge-tpd12s015-Drop-buggy-__exit-annotation-fo.patch - (git-fixes bsc#1224598 CVE-2023-52694). -- Update - patches.suse/drm-client-Fully-protect-modes-with-dev-mode_config..patch - (stable-fixes bsc#1224703 CVE-2024-35950). -- Update - patches.suse/drm-i915-bios-Tolerate-devdata-NULL-in-intel_bios_en.patch - (stable-fixes bsc#1223678 CVE-2024-26938). -- Update - patches.suse/drm-i915-gt-Reset-queue_priority_hint-on-parking.patch - (git-fixes bsc#1223677 CVE-2024-26937). -- Update - patches.suse/drm-lima-fix-a-memleak-in-lima_heap_alloc.patch - (git-fixes bsc#1224707 CVE-2024-35829). -- Update - patches.suse/drm-nouveau-firmware-Fix-SG_DEBUG-error-with-nvkm_fi.patch - (stable-fixes bsc#1225728 CVE-2024-36885). -- Update - patches.suse/drm-nouveau-fix-stale-locked-mutex-in-nouveau_gem_io.patch - (git-fixes bsc#1224714 CVE-2024-35786). -- Update - patches.suse/drm-nouveau-keep-DMA-buffers-required-for-suspend-re.patch - (git-fixes bsc#1224433 CVE-2024-27411). -- Update patches.suse/drm-nv04-Fix-out-of-bounds-access.patch - (git-fixes bsc#1223802 CVE-2024-27008). -- Update - patches.suse/drm-panfrost-Fix-the-error-path-in-panfrost_mmu_map_.patch - (git-fixes bsc#1224701 CVE-2024-35951). -- Update - patches.suse/drm-tegra-rgb-Fix-missing-clk_put-in-the-error-handl.patch - (git-fixes bsc#1224445 CVE-2023-52661). -- Update - patches.suse/drm-vc4-don-t-check-if-plane-state-fb-state-fb.patch - (stable-fixes bsc#1224650 CVE-2024-35932). -- Update - patches.suse/drm-vmwgfx-Create-debugfs-ttm_resource_manager-entry.patch - (git-fixes bsc#1223718 CVE-2024-26940). -- Update - patches.suse/drm-vmwgfx-Fix-the-lifetime-of-the-bo-cursor-memory.patch - (git-fixes bsc#1224626 CVE-2024-35810). -- Update - patches.suse/drm-vmwgfx-fix-a-memleak-in-vmw_gmrid_man_get_node.patch - (git-fixes bsc#1224449 CVE-2023-52662). -- Update - patches.suse/dyndbg-fix-old-BUG_ON-in-control-parser.patch - (stable-fixes bsc#1224647 CVE-2024-35947). -- Update - patches.suse/efi-capsule-loader-fix-incorrect-allocation-size.patch - (git-fixes bsc#1224438 CVE-2024-27413). -- Update patches.suse/efi-fix-panic-in-kdump-kernel.patch - (git-fixes bsc#1224507 CVE-2024-35800). -- Update patches.suse/efivarfs-Free-s_fs_info-on-unmount.patch - (bsc#1220328 CVE-2023-52463 bsc#1224505 CVE-2023-52681). -- Update - patches.suse/fat-fix-uninitialized-field-in-nostale-filehandles.patch - (git-fixes bsc#1223641 CVE-2024-26973). -- Update - patches.suse/fbmon-prevent-division-by-zero-in-fb_videomode_from_.patch - (stable-fixes bsc#1224660 CVE-2024-35922). -- Update - patches.suse/firewire-ohci-mask-bus-reset-interrupts-between-ISR-.patch - (stable-fixes CVE-2024-36950). -- Update - patches.suse/fs-aio-Check-IOCB_AIO_RW-before-the-struct-aio_kiocb.patch - (bsc#1222721 CVE-2024-26764 bsc#1224685 CVE-2024-35815). -- Update - patches.suse/geneve-fix-header-validation-in-geneve-6-_xmit_skb.patch - (git-fixes bsc#1224586 CVE-2024-35973). -- Update - patches.suse/geneve-make-sure-to-pull-inner-header-in-geneve_rx.patch - (git-fixes bsc#1223058 CVE-2024-26857). -- Update patches.suse/gpiolib-cdev-fix-uninitialised-kfifo.patch - (git-fixes bsc#1225736 CVE-2024-36898). -- Update - patches.suse/i2c-smbus-fix-NULL-function-pointer-dereference.patch - (git-fixes bsc#1224567 CVE-2024-35984). -- Update - patches.suse/i40e-fix-vf-may-be-used-uninitialized-in-this-functi.patch - (git-fixes bsc#1225698 CVE-2024-36020). -- Update - patches.suse/ice-fix-memory-corruption-bug-with-suspend-and-rebui.patch - (git-fixes bsc#1224486 CVE-2024-35911). -- Update - patches.suse/ice-fix-uninitialized-dplls-mutex-usage.patch - (git-fixes bsc#1223039 CVE-2024-26854). -- Update - patches.suse/idpf-fix-kernel-panic-on-unknown-packet-types.patch - (git-fixes bsc#1224517 CVE-2024-35889). -- Update - patches.suse/igc-avoid-returning-frame-twice-in-XDP_REDIRECT.patch - (git-fixes bsc#1223061 CVE-2024-26853). -- Update - patches.suse/init-main.c-Fix-potential-static_command_line-memory.patch - (git-fixes bsc#1223747 CVE-2024-26988). -- Update - patches.suse/iommufd-Fix-iopt_access_list_id-overwrite-bug.patch - (git-fixes bsc#1222780 CVE-2024-26786). -- Update - patches.suse/irqchip-gic-v3-its-Prevent-double-free-on-error.patch - (git-fixes bsc#1224697 CVE-2024-35847). -- Update - patches.suse/kprobes-Fix-possible-use-after-free-issue-on-kprobe-registration.patch - (git-fixes bsc#1224676 CVE-2024-35955). -- Update - patches.suse/mac802154-fix-llsec-key-resources-release-in-mac8021.patch - (git-fixes bsc#1223652 CVE-2024-26961). -- Update - patches.suse/maple_tree-fix-mas_empty_area_rev-null-pointer-deref.patch - (git-fixes bsc#1225710 CVE-2024-36891). -- Update - patches.suse/md-dm-raid-don-t-call-md_reap_sync_thread-directly-cd32.patch - (jsc#PED-7542 bsc#1224623 CVE-2024-35808). -- Update patches.suse/md-fix-kmemleak-of-rdev-serial-6cf3.patch - (jsc#PED-7542 bsc#1223046 CVE-2024-26900). -- Update - patches.suse/media-rkisp1-Fix-IRQ-handling-due-to-shared-interrup.patch - (stable-fixes bsc#1224443 CVE-2023-52660). -- Update - patches.suse/media-tc358743-register-v4l2-async-device-only-after.patch - (git-fixes bsc#1224680 CVE-2024-35830). -- Update - patches.suse/misc-lis3lv02d_i2c-Fix-regulators-getting-en-dis-abl.patch - (git-fixes bsc#1224609 CVE-2024-35824). -- Update - patches.suse/mlxbf_gige-call-request_irq-after-NAPI-initialized.patch - (git-fixes bsc#1224492 CVE-2024-35907). -- Update - patches.suse/mlxbf_gige-stop-interface-during-shutdown.patch - (git-fixes bsc#1224519 CVE-2024-35885). -- Update - patches.suse/mmc-core-Avoid-negative-index-with-array-access.patch - (git-fixes bsc#1224618 CVE-2024-35813). -- Update - patches.suse/mmc-sdhci-msm-pervent-access-to-suspended-controller.patch - (git-fixes bsc#1225708 CVE-2024-36029). -- Update - patches.suse/msft-hv-2971-net-mana-Fix-Rx-DMA-datasize-and-skb_over_panic.patch - (git-fixes bsc#1224495 CVE-2024-35901). -- Update - patches.suse/net-atlantic-eliminate-double-free-in-error-handling.patch - (git-fixes bsc#1224747 CVE-2023-52664). -- Update - patches.suse/net-ena-Fix-incorrect-descriptor-free-behavior.patch - (git-fixes bsc#1224677 CVE-2024-35958). -- Update - patches.suse/net-ethernet-mtk_eth_soc-fix-PPE-hanging-issue.patch - (git-fixes bsc#1224716 CVE-2024-27432). -- Update - patches.suse/net-hns3-fix-kernel-crash-when-1588-is-received-on-H.patch - (git-fixes bsc#1223041 CVE-2024-26881). -- Update - patches.suse/net-hns3-fix-kernel-crash-when-devlink-reload-during.patch - (git-fixes bsc#1225699 CVE-2024-36021). -- Update - patches.suse/net-ice-Fix-potential-NULL-pointer-dereference-in-ic.patch - (git-fixes bsc#1223051 CVE-2024-26855). -- Update - patches.suse/net-ks8851-Handle-softirqs-at-the-end-of-IRQ-thread-.patch - (git-fixes bsc#1224578 CVE-2024-35971). -- Update - patches.suse/net-ll_temac-platform_get_resource-replaced-by-wrong.patch - (git-fixes bsc#1224615 CVE-2024-35796). -- Update - patches.suse/net-mlx5-Properly-link-new-fs-rules-into-the-tree.patch - (git-fixes bsc#1224588 CVE-2024-35960). -- Update - patches.suse/net-mlx5-Register-devlink-first-under-devlink-lock.patch - (git-fixes bsc#1224585 CVE-2024-35961). -- Update - patches.suse/net-mlx5e-Fix-mlx5e_priv_init-cleanup-flow.patch - (git-fixes bsc#1224666 CVE-2024-35959). -- Update - patches.suse/net-mlx5e-Use-a-memory-barrier-to-enforce-PTP-WQ-xmi.patch - (git-fixes bsc#1223020 CVE-2024-26858). -- Update - patches.suse/net-mlx5e-fix-a-double-free-in-arfs_create_groups.patch - (jsc#PED-3311 bsc#1224605 CVE-2024-35835). -- Update - patches.suse/net-mlx5e-fix-a-potential-double-free-in-fs_any_crea.patch - (jsc#PED-3311 bsc#1224603 CVE-2023-52667). -- Update - patches.suse/net-mvpp2-clear-BM-pool-before-initialization.patch - (git-fixes bsc#1224500 CVE-2024-35837). -- Update - patches.suse/net-phy-micrel-Fix-potential-null-pointer-dereferenc.patch - (git-fixes bsc#1224513 CVE-2024-35891). -- Update - patches.suse/net-phy-phy_device-Prevent-nullptr-exceptions-on-ISR.patch - (stable-fixes bsc#1224639 CVE-2024-35945). -- Update - patches.suse/net-sparx5-Fix-use-after-free-inside-sparx5_del_mact.patch - (git-fixes bsc#1223052 CVE-2024-26856). -- Update patches.suse/net-tls-fix-WARNIING-in-__sk_msg_free.patch - (bsc#1221858 bsc#1224687 CVE-2024-35841). -- Update - patches.suse/net-wwan-t7xx-Split-64bit-accesses-to-fix-alignment-.patch - (git-fixes bsc#1224491 CVE-2024-35909). -- Update - patches.suse/nfc-nci-Fix-uninit-value-in-nci_dev_up-and-nci_ntf_p.patch - (git-fixes bsc#1224479 CVE-2024-35915). -- Update - patches.suse/nfp-flower-handle-acti_netdevs-allocation-failure.patch - (git-fixes bsc#1223827 CVE-2024-27046). -- Update - patches.suse/nfs-fix-panic-when-nfs4_ff_layout_prepare_ds-fails.patch - (git-fixes bsc#1223038 CVE-2024-26868). -- Update - patches.suse/nfsd-Fix-error-cleanup-path-in-nfsd_rename.patch - (bsc#1221044 CVE-2023-52591 bsc#1224482 CVE-2024-35914). -- Update - patches.suse/nouveau-dmem-handle-kcalloc-allocation-failure.patch - (git-fixes CVE-2024-26943). -- Update - patches.suse/nouveau-fix-instmem-race-condition-around-ptr-stores.patch - (git-fixes bsc#1223633 CVE-2024-26984). -- Update patches.suse/nouveau-lock-the-client-object-tree.patch - (stable-fixes bsc#1223834 CVE-2024-27062). -- Update - patches.suse/nouveau-uvmm-fix-addr-range-calcs-for-remap-operatio.patch - (git-fixes bsc#1225694 CVE-2024-36018). -- Update - patches.suse/nvme-fc-do-not-wait-in-vain-when-unloading-module.patch - (git-fixes bsc#1223023 CVE-2024-26846). -- Update - patches.suse/nvme-fix-reconnection-fail-due-to-reserved-tag-alloc.patch - (git-fixes bsc#1224717 CVE-2024-27435). -- Update - patches.suse/octeontx2-af-Use-separate-handlers-for-interrupts.patch - (git-fixes bsc#1223790 CVE-2024-27030). -- Update - patches.suse/octeontx2-pf-Fix-transmit-scheduler-resource-leak.patch - (git-fixes bsc#1224569 CVE-2024-35975). -- Update - patches.suse/of-Fix-double-free-in-of_parse_phandle_with_args_map.patch - (git-fixes bsc#1224508 CVE-2023-52679). -- Update - patches.suse/of-dynamic-Synchronize-of_changeset_destroy-with-the.patch - (git-fixes bsc#1224524 CVE-2024-35879). -- Update - patches.suse/of-module-prevent-NULL-pointer-dereference-in-vsnpri.patch - (stable-fixes bsc#1224671 CVE-2024-35878). -- Update - patches.suse/phy-marvell-a3700-comphy-Fix-out-of-bounds-read.patch - (git-fixes bsc#1224555 CVE-2024-35992). -- Update - patches.suse/phy-ti-tusb1210-Resolve-charger-det-crash-if-charger.patch - (git-fixes bsc#1224562 CVE-2024-35986). -- Update - patches.suse/pinctrl-core-delete-incorrect-free-in-pinctrl_enable.patch - (git-fixes CVE-2024-36940). -- Update - patches.suse/pinctrl-devicetree-fix-refcount-leak-in-pinctrl_dt_t.patch - (git-fixes CVE-2024-36959). -- Update - patches.suse/platform-chrome-cros_ec_uart-properly-fix-race-condi.patch - (git-fixes bsc#1224568 CVE-2024-35977). -- Update - patches.suse/power-supply-bq27xxx-i2c-Do-not-free-non-existing-IR.patch - (git-fixes bsc#1224437 CVE-2024-27412). -- Update - patches.suse/powerpc-imc-pmu-Add-a-null-pointer-check-in-update_events_in_group.patch - (git-fixes bsc#1224504 CVE-2023-52675). -- Update - patches.suse/powerpc-powernv-Add-a-null-pointer-check-in-opal_eve.patch - (bsc#1065729 bsc#1224682 CVE-2023-52686). -- Update - patches.suse/powerpc-powernv-Add-a-null-pointer-check-in-opal_pow.patch - (bsc#1181674 ltc#189159 git-fixes bsc#1224601 CVE-2023-52696). -- Update - patches.suse/powerpc-powernv-Add-a-null-pointer-check-to-scom_deb.patch - (bsc#1194869 bsc#1224611 CVE-2023-52690). -- Update - patches.suse/pstore-inode-Only-d_invalidate-is-needed.patch - (git-fixes bsc#1223705 CVE-2024-27389). -- Update - patches.suse/pstore-ram_core-fix-possible-overflow-in-persistent_.patch - (git-fixes bsc#1224728 CVE-2023-52685). -- Update - patches.suse/pstore-zone-Add-a-null-pointer-check-to-the-psz_kmsg.patch - (stable-fixes bsc#1224537 CVE-2024-35940). -- Update - patches.suse/regmap-maple-Fix-cache-corruption-in-regcache_maple_.patch - (git-fixes bsc#1225695 CVE-2024-36019). -- Update - patches.suse/rpmsg-virtio-Free-driver_override-when-rpmsg_remove.patch - (git-fixes bsc#1224696 CVE-2023-52670). -- Update - patches.suse/s390-cio-Ensure-the-copied-buf-is-NUL-terminated.patch - (git-fixes bsc#1223869 bsc#1225747 CVE-2024-36931). -- Update - patches.suse/s390-qeth-Fix-kernel-panic-after-setting-hsuid.patch - (git-fixes bsc#1223874 bsc#1225775 CVE-2024-36928). -- Update - patches.suse/s390-zcrypt-fix-reference-counting-on-zcrypt-card-objects.patch - (git-fixes bsc#1223592 bsc#1223666 CVE-2024-26957). -- Update - patches.suse/scsi-core-Fix-unremoved-procfs-host-directory-regression.patch - (git-fixes bsc#1223675 CVE-2024-26935). -- Update - patches.suse/scsi-lpfc-Fix-possible-memory-leak-in-lpfc_rcv_padis.patch - (bsc#1220021 bsc#1224651 CVE-2024-35930). -- Update - patches.suse/scsi-qla2xxx-Fix-off-by-one-in-qla_edif_app_getstats.patch - (git-fixes bsc#1225704 CVE-2024-36025). -- Update patches.suse/scsi-sg-Avoid-sg-device-teardown-race.patch - (git-fixes bsc#1224675 CVE-2024-35954). -- Update - patches.suse/scsi-smartpqi-Fix-disable_managed_interrupts.patch - (git-fixes bsc#1222608 CVE-2024-26742). -- Update - patches.suse/selinux-avoid-dereference-of-garbage-after-mount-fai.patch - (git-fixes bsc#1224494 CVE-2024-35904). -- Update - patches.suse/serial-mxs-auart-add-spinlock-around-changing-cts-st.patch - (git-fixes bsc#1223757 CVE-2024-27000). -- Update - patches.suse/serial-pmac_zilog-Remove-flawed-mitigation-for-rx-ir.patch - (git-fixes bsc#1223754 CVE-2024-26999). -- Update - patches.suse/soc-fsl-qbman-Always-disable-interrupts-when-taking-.patch - (git-fixes bsc#1224699 CVE-2024-35806). -- Update - patches.suse/soc-fsl-qbman-Use-raw-spinlock-for-cgr_lock.patch - (git-fixes bsc#1224683 CVE-2024-35819). -- Update patches.suse/speakup-Avoid-crash-on-very-long-word.patch - (git-fixes bsc#1223750 CVE-2024-26994). -- Update - patches.suse/spi-fix-null-pointer-dereference-within-spi_sync.patch - (git-fixes CVE-2024-36930). -- Update - patches.suse/spi-lpspi-Avoid-potential-use-after-free-in-probe.patch - (git-fixes bsc#1223024 CVE-2024-26866). -- Update - patches.suse/spi-mchp-pci1xxx-Fix-a-possible-null-pointer-derefer.patch - (git-fixes bsc#1224521 CVE-2024-35883). -- Update - patches.suse/spi-spi-mt65xx-Fix-NULL-pointer-access-in-interrupt-.patch - (git-fixes bsc#1223788 CVE-2024-27028). -- Update - patches.suse/ubifs-Set-page-uptodate-in-the-correct-place.patch - (git-fixes bsc#1224629 CVE-2024-35821). -- Update - patches.suse/usb-cdc-wdm-close-race-between-read-and-workqueue.patch - (git-fixes bsc#1224624 CVE-2024-35812). -- Update - patches.suse/usb-dwc2-host-Fix-dereference-issue-in-DDMA-completi.patch - (git-fixes bsc#1223741 CVE-2024-26997). -- Update - patches.suse/usb-dwc3-am62-fix-module-unload-reload-behavior.patch - (git-fixes bsc#1223651 CVE-2024-26963). -- Update - patches.suse/usb-gadget-f_fs-Fix-race-between-aio_cancel-and-AIO-.patch - (git-fixes bsc#1225749 CVE-2024-36894). -- Update - patches.suse/usb-gadget-f_ncm-Fix-UAF-ncm-object-at-re-bind-after.patch - (stable-fixes bsc#1223752 CVE-2024-26996). -- Update - patches.suse/usb-gadget-ncm-Avoid-dropping-datagrams-of-properly-.patch - (git-fixes bsc#1224423 CVE-2024-27405). -- Update - patches.suse/usb-gadget-ncm-Fix-handling-of-zero-block-length-pac.patch - (git-fixes bsc#1224681 CVE-2024-35825). -- Update - patches.suse/usb-gadget-uvc-use-correct-buffer-size-when-parsing-.patch - (git-fixes bsc#1225750 CVE-2024-36895). -- Update - patches.suse/usb-typec-altmodes-displayport-create-sysfs-nodes-as.patch - (git-fixes bsc#1224712 CVE-2024-35790). -- Update - patches.suse/usb-typec-tcpm-Check-for-port-partner-validity-befor.patch - (git-fixes bsc#1225748 CVE-2024-36893). -- Update - patches.suse/usb-typec-tcpm-Correct-the-PDO-counting-in-pd_set.patch - (git-fixes bsc#1223696 CVE-2024-26995). -- Update - patches.suse/usb-typec-tcpm-fix-double-free-issue-in-tcpm_port_un.patch - (git-fixes bsc#1223649 CVE-2024-26932). -- Update patches.suse/usb-typec-ucsi-Limit-read-size-on-v1.2.patch - (stable-fixes bsc#1224657 CVE-2024-35924). -- Update - patches.suse/usb-udc-remove-warning-when-queue-disabled-ep.patch - (stable-fixes bsc#1224739 CVE-2024-35822). -- Update - patches.suse/usb-xhci-Add-error-handling-in-xhci_map_urb_for_dma.patch - (git-fixes bsc#1223650 CVE-2024-26964). -- Update - patches.suse/vt-fix-unicode-buffer-corruption-when-deleting-chara.patch - (git-fixes bsc#1224692 CVE-2024-35823). -- Update - patches.suse/wifi-ath11k-decrease-MHI-channel-buffer-length-to-8K.patch - (bsc#1207948 bsc#1224643 CVE-2024-35938). -- Update - patches.suse/wifi-brcmfmac-Fix-use-after-free-bug-in-brcmf_cfg802.patch - (CVE-2023-47233 bsc#1216702 bsc#1224592 CVE-2024-35811). -- Update - patches.suse/wifi-cfg80211-check-A-MSDU-format-more-carefully.patch - (stable-fixes bsc#1224526 CVE-2024-35937). -- Update - patches.suse/wifi-iwlwifi-dbg-tlv-ensure-NUL-termination.patch - (git-fixes bsc#1224731 CVE-2024-35845). -- Update - patches.suse/wifi-iwlwifi-mvm-don-t-set-the-MFP-flag-for-the-GTK.patch - (git-fixes bsc#1224710 CVE-2024-27434). -- Update - patches.suse/wifi-iwlwifi-mvm-guard-against-invalid-STA-ID-on-rem.patch - (stable-fixes bsc#1225769 CVE-2024-36921). -- Update - patches.suse/wifi-iwlwifi-mvm-rfi-fix-potential-response-leaks.patch - (git-fixes bsc#1224487 CVE-2024-35912). -- Update - patches.suse/wifi-iwlwifi-read-txq-read_ptr-under-lock.patch - (stable-fixes CVE-2024-36922). -- Update - patches.suse/wifi-libertas-fix-some-memleaks-in-lbs_allocate_cmd_.patch - (git-fixes bsc#1224622 CVE-2024-35828). -- Update - patches.suse/wifi-mac80211-check-clear-fast-rx-for-non-4addr-sta-.patch - (stable-fixes bsc#1224749 CVE-2024-35789). -- Update - patches.suse/wifi-mac80211-fix-potential-sta-link-leak.patch - (git-fixes bsc#1224613 CVE-2024-35838). -- Update - patches.suse/wifi-nl80211-don-t-free-NULL-coalescing-rule.patch - (git-fixes CVE-2024-36941). -- Update - patches.suse/wifi-nl80211-reject-iftype-change-with-mesh-ID-chang.patch - (git-fixes bsc#1224432 CVE-2024-27410). -- Update - patches.suse/wifi-rtw89-fix-null-pointer-access-when-abort-scan.patch - (stable-fixes bsc#1224646 CVE-2024-35946). -- Update - patches.suse/wireguard-netlink-access-device-through-ctx-instead-.patch - (git-fixes bsc#1223661 CVE-2024-26950). -- Update - patches.suse/wireguard-netlink-check-for-dangling-peer-via-is_dea.patch - (git-fixes bsc#1223660 CVE-2024-26951). -- Update - patches.suse/wireguard-receive-annotate-data-race-around-receivin.patch - (git-fixes bsc#1223076 CVE-2024-26861). -- Update - patches.suse/x86-coco-Require-seeding-RNG-with-RDRAND-on-CoCo-systems.patch - (git-fixes bsc#1224665 CVE-2024-35875). -- Update - patches.suse/x86-fpu-Keep-xfd_state-in-sync-with-MSR_IA32_XFD.patch - (git-fixes bsc#1224732 CVE-2024-35801). -- Update - patches.suse/xen-evtchn-avoid-WARN-when-unbinding-an-event-channe.patch - (git-fixes bsc#1223739 CVE-2024-27067). -- Update - patches.suse/xsk-recycle-buffer-in-case-Rx-queue-was-full.patch - (bsc#1221303 CVE-2024-26611 bsc#1224620 CVE-2024-35834). -- commit 0191191 - ------------------------------------------------------------------- Mon Jun 3 14:06:08 CEST 2024 - mfranc@suse.cz @@ -19248,12 +25398,6 @@ Mon Jun 3 13:25:29 CEST 2024 - msuchanek@suse.de lookup (bsc#1187716 ltc#193451 git-fixes). - commit ceab637 -------------------------------------------------------------------- -Mon Jun 3 13:19:17 CEST 2024 - msuchanek@suse.de - -- blacklist.conf: PPC fsl_msi is not used -- commit ae6590d - ------------------------------------------------------------------- Mon Jun 3 13:03:27 CEST 2024 - msuchanek@suse.de @@ -19368,18 +25512,6 @@ Fri May 31 19:39:48 CEST 2024 - dsterba@suse.com - 9p: add missing locking around taking dentry fid list (git-fixes) - commit 581af2d -------------------------------------------------------------------- -Fri May 31 18:08:13 CEST 2024 - dsterba@suse.com - -- blacklist.conf: only a VFS cleanup -- commit f4a0ca8 - -------------------------------------------------------------------- -Fri May 31 18:00:27 CEST 2024 - dsterba@suse.com - -- blacklist.conf: openpromfs not built -- commit 475ff82 - ------------------------------------------------------------------- Fri May 31 17:58:22 CEST 2024 - dsterba@suse.com @@ -19429,24 +25561,12 @@ Fri May 31 17:08:22 CEST 2024 - shung-hsi.yu@suse.com - bpf: handle ldimm64 properly in check_cfg() (bsc#1225756). - commit 9cbb99b -------------------------------------------------------------------- -Fri May 31 16:48:47 CEST 2024 - dsterba@suse.com - -- blacklist.conf: remove add and revert patch pair -- commit f17fe30 - ------------------------------------------------------------------- Fri May 31 16:41:07 CEST 2024 - dsterba@suse.com - fs: indicate request originates from old mount API (git-fixes) - commit 0754468 -------------------------------------------------------------------- -Fri May 31 16:38:52 CEST 2024 - dsterba@suse.com - -- blacklist.conf: only comment fix -- commit b912460 - ------------------------------------------------------------------- Fri May 31 16:36:29 CEST 2024 - dsterba@suse.com @@ -19614,12 +25734,6 @@ Wed May 29 18:24:54 CEST 2024 - nstange@suse.de from the PKCS#7 selftest. - commit cfa0827 -------------------------------------------------------------------- -Wed May 29 17:39:53 CEST 2024 - mbrugger@suse.com - -- blacklist.conf: arm: kernel does not support folios -- commit e0489ca - ------------------------------------------------------------------- Wed May 29 17:23:53 CEST 2024 - pmladek@suse.com @@ -19820,13 +25934,6 @@ Wed May 29 13:45:07 CEST 2024 - pmladek@suse.com klp_resolve_symbols() (bsc#1223539). - commit af0f908 -------------------------------------------------------------------- -Wed May 29 13:33:07 CEST 2024 - pmladek@suse.com - -- blacklist.conf: workqueues: system-wide nr_active enforcement patchset; - not worth the risk (bsc#1225580) -- commit 059cebc - ------------------------------------------------------------------- Wed May 29 13:28:17 CEST 2024 - shung-hsi.yu@suse.com @@ -19872,12 +25979,6 @@ Wed May 29 11:25:39 CEST 2024 - jlee@suse.com (bsc#1224581 CVE-2024-35964). - commit 9d49d44 -------------------------------------------------------------------- -Wed May 29 11:06:17 CEST 2024 - pmladek@suse.com - -- blacklist.conf: workqueues: cosmetic; truncated names in ps output -- commit 2ed068f - ------------------------------------------------------------------- Wed May 29 10:52:47 CEST 2024 - jlee@suse.com @@ -20014,13 +26115,6 @@ Tue May 28 20:07:48 CEST 2024 - ematsumiya@suse.de (bsc#1225172). - commit 3ddf86f -------------------------------------------------------------------- -Tue May 28 16:02:28 CEST 2024 - iivanov@suse.de - -- blacklist.conf: Ignore all devicetree schemes changes - We do not use them, so lets silence all git-fixes for them. -- commit 84a3286 - ------------------------------------------------------------------- Tue May 28 13:34:20 CEST 2024 - nik.borisov@suse.com @@ -20250,18 +26344,6 @@ Mon May 27 15:40:09 CEST 2024 - dsterba@suse.com - btrfs: make error messages more clear when getting a chunk map (git-fixes) - commit 47ecf55 -------------------------------------------------------------------- -Mon May 27 15:38:41 CEST 2024 - dsterba@suse.com - -- blacklist.conf: btrfs: compilation warning fix -- commit 02490e2 - -------------------------------------------------------------------- -Mon May 27 15:37:02 CEST 2024 - dsterba@suse.com - -- blacklist.conf: btrfs: code not built -- commit 5199fc3 - ------------------------------------------------------------------- Mon May 27 15:29:06 CEST 2024 - dsterba@suse.com @@ -20307,12 +26389,6 @@ Mon May 27 15:20:36 CEST 2024 - petr.pavlu@suse.com - tracing: hide unused ftrace_event_id_fops (git-fixes). - commit 61c90c7 -------------------------------------------------------------------- -Mon May 27 15:19:03 CEST 2024 - petr.pavlu@suse.com - -- blacklist.conf: add not-relevant tracing commits -- commit b97c070 - ------------------------------------------------------------------- Mon May 27 11:19:26 CEST 2024 - nik.borisov@suse.com @@ -21596,14 +27672,6 @@ Wed May 22 10:48:23 CEST 2024 - iivanov@suse.de - supported.conf: Add APM X-Gene SoC hardware monitoring driver (bsc#1223265 jsc#PED-8570) - commit 4b0eeb3 -------------------------------------------------------------------- -Wed May 22 10:35:02 CEST 2024 - lhenriques@suse.de - -- blacklist.conf: cephfs client logging infrastructure commits - These two commits are useless in isolation, they are part of a larger set - of commits that add extra info to debug logs. -- commit 2056926 - ------------------------------------------------------------------- Wed May 22 08:47:44 CEST 2024 - tiwai@suse.de @@ -21688,12 +27756,6 @@ Tue May 21 16:07:04 CEST 2024 - jgross@suse.com dirty status (git-fixes). - commit 7bdd69f -------------------------------------------------------------------- -Tue May 21 15:26:06 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add a1fd0b9d751f sched/fair: Allow disabling sched_balance_newidle with sched_relax_domain_level -- commit 3d0aa70 - ------------------------------------------------------------------- Tue May 21 15:16:02 CEST 2024 - tiwai@suse.de @@ -21889,12 +27951,6 @@ Tue May 21 09:57:46 CEST 2024 - jgross@suse.com due to bad index (git-fixes). - commit b2e9cf1 -------------------------------------------------------------------- -Tue May 21 09:22:11 CEST 2024 - shung-hsi.yu@suse.com - -- blacklist.conf: add "libbpf: Fix NULL pointer dereference in bpf_object__collect_prog_relos" -- commit f859338 - ------------------------------------------------------------------- Tue May 21 09:07:54 CEST 2024 - jgross@suse.com @@ -22036,12 +28092,6 @@ Mon May 20 17:28:06 CEST 2024 - dsterba@suse.com - btrfs: sysfs: validate scrub_speed_max value (git-fixes) - commit 333b480 -------------------------------------------------------------------- -Mon May 20 17:26:31 CEST 2024 - dsterba@suse.com - -- blacklist.conf: btrfs: build fix for config we don't use -- commit d489b93 - ------------------------------------------------------------------- Mon May 20 17:25:16 CEST 2024 - dsterba@suse.com @@ -22210,12 +28260,6 @@ Mon May 20 15:37:10 CEST 2024 - nmorey@suse.com - RDMA/rxe: Fix the problem "mutex_destroy missing" (git-fixes) - commit 0a73f85 -------------------------------------------------------------------- -Mon May 20 14:08:23 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: dts: broadcom: bcmbca: bcm4908: set brcm,wp-not-connected") -- commit a7b0273 - ------------------------------------------------------------------- Mon May 20 14:04:41 CEST 2024 - iivanov@suse.de @@ -22265,270 +28309,12 @@ Mon May 20 13:22:07 CEST 2024 - iivanov@suse.de Refresh patches.suse/arm64-dts-rockchip-enable-internal-pull-up-on-PCIE_WAKE-for-RK3399-Puma.patch - commit aeac8db -------------------------------------------------------------------- -Mon May 20 12:53:44 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: display: samsung,ams495qa01: add missing SPI properties") -- commit f4f5a90 - -------------------------------------------------------------------- -Mon May 20 12:53:08 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: iio: health: maxim,max30102: fix compatible check") -- commit 1690e24 - -------------------------------------------------------------------- -Mon May 20 12:52:51 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: pwm: mediatek,pwm-disp: Document power-domains property") -- commit 6958159 - -------------------------------------------------------------------- -Mon May 20 12:52:16 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: fsl-imx-sdma: fix HDMI audio index") -- commit 952bf73 - -------------------------------------------------------------------- -Mon May 20 12:52:05 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: lcdif: Do not require power-domains for i.MX6ULL") -- commit eabdd33 - -------------------------------------------------------------------- -Mon May 20 12:51:52 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: interrupt-controller: renesas,rzg2l-irqc: Update") -- commit ad9009e - -------------------------------------------------------------------- -Mon May 20 12:51:31 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mtd: avoid automatically select from mtd.yaml") -- commit 2d9981a - -------------------------------------------------------------------- -Mon May 20 12:51:15 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: can: mpfs: add missing required clock") -- commit d5f79eb - -------------------------------------------------------------------- -Mon May 20 12:50:57 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mfd: dlg,da9063: Make #interrupt-cells required") -- commit a6ea77b - -------------------------------------------------------------------- -Mon May 20 12:50:46 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: pinctr: pinctrl-zynq: Fix compatible string") -- commit f208a95 - -------------------------------------------------------------------- -Mon May 20 12:49:28 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: msm: qcom, mdss: Include ommited fam-b compatible") -- commit 3478db8 - -------------------------------------------------------------------- -Mon May 20 12:49:08 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: display: ti,am65x-dss: Add support for common1 region") -- commit 7eb6591 - -------------------------------------------------------------------- -Mon May 20 12:48:50 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: opp: drop maxItems from inner items") -- commit 878a019 - -------------------------------------------------------------------- -Mon May 20 12:48:31 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: pwm: amlogic: fix s4 bindings") -- commit e2029e3 - -------------------------------------------------------------------- -Mon May 20 12:48:15 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: arm: rockchip: Correct vendor for Banana Pi R2 Pro") -- commit c1d1519 - -------------------------------------------------------------------- -Mon May 20 12:45:53 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: arm: rockchip: Correct vendor for Orange Pi RK3399 board") -- commit 88539b6 - ------------------------------------------------------------------- Mon May 20 12:45:20 CEST 2024 - iivanov@suse.de - dt-bindings: clock: qcom: Add missing UFS QREF clocks (git-fixes) - commit 4e403e4 -------------------------------------------------------------------- -Mon May 20 12:43:49 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: arm: qcom: drop the superfluous device compatibility") -- commit f6fdbc2 - -------------------------------------------------------------------- -Mon May 20 12:43:00 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: riscv: cpus: Clarify mmu-type interpretation") -- commit 4b6b7f4 - -------------------------------------------------------------------- -Mon May 20 12:42:52 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: power: reset: qcom-pon: fix inconsistent example") -- commit b2da43b - -------------------------------------------------------------------- -Mon May 20 12:42:42 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: rtc: qcom-pm8xxx: fix inconsistent example") -- commit 673e959 - -------------------------------------------------------------------- -Mon May 20 12:42:30 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: phy: qcom,sc8280xp-qmp-usb43dp-phy: fix path to header") -- commit 2965719 - -------------------------------------------------------------------- -Mon May 20 12:42:17 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: phy: amlogic,g12a-mipi-dphy-analog: drop unneeded reg") -- commit 44293cc - -------------------------------------------------------------------- -Mon May 20 12:42:03 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: gpio: xilinx: Fix node address in gpio") -- commit 51eae0f - -------------------------------------------------------------------- -Mon May 20 12:41:48 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: iio/adc: qcom,spmi-vadc: fix example node names") -- commit 5559cae - -------------------------------------------------------------------- -Mon May 20 12:41:19 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: iio/adc: qcom,spmi-iadc: fix example node name") -- commit 6d910c5 - -------------------------------------------------------------------- -Mon May 20 12:39:37 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: PCI: qcom: Correct reset-names property") -- commit cfa6f44 - -------------------------------------------------------------------- -Mon May 20 12:17:43 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mailbox: zynqmp: extend required list") -- commit 193f0ac - -------------------------------------------------------------------- -Mon May 20 12:17:21 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mailbox: qcom,apcs-kpss-global: drop duplicated") -- commit 855a271 - -------------------------------------------------------------------- -Mon May 20 12:17:05 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mfd: hisilicon,hi6421-spmi-pmic: Fix regulator binding") -- commit 9b3e020 - -------------------------------------------------------------------- -Mon May 20 12:16:23 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mfd: hisilicon,hi6421-spmi-pmic: Fix up binding") -- commit a0c4967 - -------------------------------------------------------------------- -Mon May 20 12:16:03 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: remoteproc: qcom: sc7180-pas: Fix SC7280 MPSS PD-names") -- commit de1ba63 - -------------------------------------------------------------------- -Mon May 20 11:58:54 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mmc: sdhci-pxa: Fix 'regs' typo") -- commit 3378497 - -------------------------------------------------------------------- -Mon May 20 11:58:39 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: Remove alt_ref from versal") -- commit 4d14333 - -------------------------------------------------------------------- -Mon May 20 11:58:17 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: watchdog: qcom-wdt: Make the interrupt example edge") -- commit 17a3ab8 - -------------------------------------------------------------------- -Mon May 20 11:57:04 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: display: msm: qcm2290-mdss: Use the non-deprecated DSI") -- commit 4aa1481 - -------------------------------------------------------------------- -Mon May 20 11:56:20 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: arm: stm32: don't mix SCMI and non-SCMI board") -- commit 448ff06 - -------------------------------------------------------------------- -Mon May 20 11:55:42 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: media: mediatek: mdp3: correct RDMA and WROT node with") -- commit ab03332 - -------------------------------------------------------------------- -Mon May 20 11:55:04 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: nvmem: mxs-ocotp: Document fsl,ocotp") -- commit 1d6fc28 - -------------------------------------------------------------------- -Mon May 20 11:54:37 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: interrupt-controller: Allow #power-domain-cells") -- commit 027195f - -------------------------------------------------------------------- -Mon May 20 11:54:05 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt: dt-extract-compatibles: Don't follow symlinks when walking tree") -- commit 60fcfee - -------------------------------------------------------------------- -Mon May 20 11:52:07 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: soc: fsl: cpm_qe: cpm1-scc-qmc: Fix example property") -- commit de60146 - -------------------------------------------------------------------- -Mon May 20 11:51:01 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: PCI: brcm,iproc-pcie: Fix 'msi' child node schema") -- commit d7b96e4 - -------------------------------------------------------------------- -Mon May 20 11:49:15 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: soc: qcom: smd-rpm: Add MSM8909 to qcom,smd-channels") -- commit 1171729 - ------------------------------------------------------------------- Mon May 20 08:14:54 CEST 2024 - tiwai@suse.de @@ -22571,19 +28357,6 @@ Sun May 19 09:24:05 CEST 2024 - tiwai@suse.de (git-fixes). - commit 8bfa411 -------------------------------------------------------------------- -Sun May 19 04:57:25 CEST 2024 - jlee@suse.com - -- Bluetooth: Fix use-after-free bugs caused by sco_sock_timeout - (bsc#1224174 CVE-2024-27398). -- commit 5039ac8 - -------------------------------------------------------------------- -Sat May 18 09:44:27 CEST 2024 - tiwai@suse.de - -- blacklist.conf: Add reverted dmaengine commit entries -- commit 134f997 - ------------------------------------------------------------------- Sat May 18 09:42:47 CEST 2024 - tiwai@suse.de @@ -22713,12 +28486,6 @@ Fri May 17 14:31:26 CEST 2024 - dsterba@suse.com - btrfs: file_remove_privs needs an exclusive lock in direct io write (git-fixes) - commit 0bc88db -------------------------------------------------------------------- -Fri May 17 14:29:12 CEST 2024 - dsterba@suse.com - -- blacklist.conf: btrfs: cleanup, v0 extent removal -- commit fecc398 - ------------------------------------------------------------------- Fri May 17 14:28:15 CEST 2024 - dsterba@suse.com @@ -23048,12 +28815,6 @@ Thu May 16 15:22:52 CEST 2024 - dsterba@suse.com - btrfs: fix off-by-one when checking chunk map includes logical address (git-fixes) - commit e5842bb -------------------------------------------------------------------- -Thu May 16 15:20:56 CEST 2024 - dsterba@suse.com - -- blacklist.conf: btrfs: ref-verify not built -- commit 701d654 - ------------------------------------------------------------------- Thu May 16 15:20:06 CEST 2024 - dsterba@suse.com @@ -23371,12 +29132,6 @@ Wed May 15 14:30:48 CEST 2024 - mkoutny@suse.com - cifs: fix underflow in parse_server_interfaces() (CVE-2024-26828 bsc#1223084). - commit 40aba68 -------------------------------------------------------------------- -Wed May 15 14:27:20 CEST 2024 - dsterba@suse.com - -- blacklist.conf: fs updates -- commit 372a9be - ------------------------------------------------------------------- Wed May 15 13:58:14 CEST 2024 - denis.kirjanov@suse.com @@ -23770,12 +29525,6 @@ Tue May 14 10:50:12 CEST 2024 - nik.borisov@suse.com patches.suse/x86-srso-fix-vulnerability-reporting-for-missing-microcode.patch. - commit 3afb908 -------------------------------------------------------------------- -Tue May 14 10:41:29 CEST 2024 - oneukum@suse.com - -- blacklist.conf: not applicable -- commit 158f7dc - ------------------------------------------------------------------- Tue May 14 10:25:06 CEST 2024 - nik.borisov@suse.com @@ -23850,12 +29599,6 @@ Mon May 13 19:20:28 CEST 2024 - dsterba@suse.com - btrfs: add missing mutex_unlock in btrfs_relocate_sys_chunks() (git-fixes) - commit 8bc326a -------------------------------------------------------------------- -Mon May 13 18:29:29 CEST 2024 - tonyj@suse.de - -- blacklist.conf: add perf patch already known by alias commit -- commit 706da8e - ------------------------------------------------------------------- Mon May 13 17:53:02 CEST 2024 - dsterba@suse.com @@ -23899,12 +29642,6 @@ Mon May 13 17:32:40 CEST 2024 - dsterba@suse.com - btrfs: release path before inode lookup during the ino lookup ioctl (git-fixes) - commit 4b7ba54 -------------------------------------------------------------------- -Mon May 13 17:29:01 CEST 2024 - dsterba@suse.com - -- blacklist.conf: Add 2d6cd791e63e "btrfs: fix race between finishing block group creation and its item update" -- commit ca673ac - ------------------------------------------------------------------- Mon May 13 17:09:25 CEST 2024 - tiwai@suse.de @@ -23933,18 +29670,6 @@ Mon May 13 15:02:10 CEST 2024 - nstange@suse.de - crypto: rsa - add a check for allocation failure (bsc#1222775). - commit 8c6c396 -------------------------------------------------------------------- -Mon May 13 14:53:32 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 70f199a - -------------------------------------------------------------------- -Mon May 13 14:51:33 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 835874a - ------------------------------------------------------------------- Mon May 13 14:00:14 CEST 2024 - tiwai@suse.de @@ -24862,18 +30587,6 @@ Thu May 2 15:14:12 CEST 2024 - iivanov@suse.de - arm64: dts: rockchip: fix rk3328 hdmi ports node (git-fixes) - commit 3f691a1 -------------------------------------------------------------------- -Thu May 2 15:12:55 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: dts: rockchip: mark system power controller on rk3588-evb1") -- commit 24dc024 - -------------------------------------------------------------------- -Thu May 2 15:11:02 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64/mm: Modify range-based tlbi to decrement scale") -- commit 9fd5163 - ------------------------------------------------------------------- Thu May 2 13:38:24 CEST 2024 - jslaby@suse.cz @@ -24992,12 +30705,6 @@ Tue Apr 30 16:11:40 CEST 2024 - tiwai@suse.de (CVE-2024-23848 bsc#1219104). - commit c39ac04 -------------------------------------------------------------------- -Tue Apr 30 16:07:18 CEST 2024 - mfranc@suse.cz - -- blacklist.conf: refactoring, not a fix -- commit d5a22ac - ------------------------------------------------------------------- Tue Apr 30 16:02:50 CEST 2024 - mfranc@suse.cz @@ -25346,12 +31053,6 @@ Sat Apr 27 08:33:05 CEST 2024 - tiwai@suse.de - drm/gma500: Remove lid code (git-fixes). - commit 783bf0e -------------------------------------------------------------------- -Fri Apr 26 18:54:14 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add 246f80a0b17f8 ("sh: push-switch: Reorder cleanup operations to avoid use-after-free bug") -- commit 0fe9e4b - ------------------------------------------------------------------- Fri Apr 26 12:38:44 CEST 2024 - tiwai@suse.de @@ -25795,12 +31496,6 @@ Mon Apr 22 13:54:41 CEST 2024 - nik.borisov@suse.com - x86/bugs: Fix BHI retpoline check (git-fixes). - commit 00081b1 -------------------------------------------------------------------- -Mon Apr 22 13:53:35 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: Blacklist spurious patch -- commit 14b3e73 - ------------------------------------------------------------------- Mon Apr 22 08:45:08 CEST 2024 - msuchanek@suse.de @@ -25910,20 +31605,6 @@ Sat Apr 20 08:38:21 CEST 2024 - tiwai@suse.de - nilfs2: fix OOB in nilfs_set_de_type (git-fixes). - commit de35710 -------------------------------------------------------------------- -Fri Apr 19 21:07:04 CEST 2024 - tonyj@suse.de - -- blacklist.conf: kill erroneous blank line added by 58324b9ff787 -- commit abcb85f - -------------------------------------------------------------------- -Fri Apr 19 19:47:40 CEST 2024 - lduncan@suse.com - -- blacklist.conf: add 3 commits to be skipped - One is a configuration change for an unused options, and - two are for SCSI structure changes that breaks kabi. -- commit c143746 - ------------------------------------------------------------------- Fri Apr 19 18:37:34 CEST 2024 - lduncan@suse.com @@ -26636,13 +32317,6 @@ Tue Apr 16 18:23:07 CEST 2024 - jbohac@suse.cz Refresh patches.suse/kdump-implement-reserve_crashkernel_cma.patch. - commit b256f70 -------------------------------------------------------------------- -Tue Apr 16 16:43:44 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: Disable irrelevant patch - We don't have syscall hardening in our kernels. -- commit 36739c9 - ------------------------------------------------------------------- Tue Apr 16 16:43:33 CEST 2024 - nik.borisov@suse.com @@ -26952,12 +32626,6 @@ Mon Apr 15 10:15:49 CEST 2024 - iivanov@suse.de - Update patches.suse/spi-hisi-sfc-v3xx-Return-IRQ_NONE-if-no-interrupts-w.patch (git-fixes CVE-2024-26776 bsc#1222764) - commit ec068f3 -------------------------------------------------------------------- -Mon Apr 15 09:13:59 CEST 2024 - colyli@suse.de - -- blacklist.conf: add non-backport md git-fixes patch commit. -- commit 58324b9 - ------------------------------------------------------------------- Mon Apr 15 09:12:46 CEST 2024 - colyli@suse.de @@ -27152,12 +32820,6 @@ Thu Apr 11 15:27:33 CEST 2024 - mhocko@suse.com (bsc#1220419 CVE-2024-26752 bsc#1222667). - commit 2f09d95 -------------------------------------------------------------------- -Thu Apr 11 15:17:11 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add d9b3ce8769e3 mm: writeback: ratelimit stat flush from mem_cgroup_wb_stats -- commit 82800cb - ------------------------------------------------------------------- Thu Apr 11 12:01:45 CEST 2024 - jslaby@suse.cz @@ -27720,12 +33382,6 @@ Mon Apr 8 13:38:54 CEST 2024 - iivanov@suse.de - arm64: dts: broadcom: bcmbca: bcm4908: drop invalid switch cells (git-fixes) - commit c68c0f5 -------------------------------------------------------------------- -Mon Apr 8 13:37:17 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: ftrace: Don't forbid CALL_OPS+CC_OPTIMIZE_FOR_SIZE with Clang") -- commit 92045ae - ------------------------------------------------------------------- Mon Apr 8 13:35:46 CEST 2024 - iivanov@suse.de @@ -28322,12 +33978,6 @@ Tue Apr 2 13:36:01 CEST 2024 - tiwai@suse.de (bsc#1193599). - commit 3dfca11 -------------------------------------------------------------------- -Tue Apr 2 10:38:32 CEST 2024 - pjakobsson@suse.de - -- blacklist.conf: fbdev: flush deferred IO before closing (bsc#1221814) -- commit 6339fe4 - ------------------------------------------------------------------- Tue Apr 2 09:02:40 CEST 2024 - mkubecek@suse.cz @@ -28414,12 +34064,6 @@ Sat Mar 30 09:55:11 CET 2024 - tiwai@suse.de in acpi_db_walk_for_fields() (git-fixes). - commit 3764402 -------------------------------------------------------------------- -Fri Mar 29 11:21:01 CET 2024 - mkoutny@suse.com - -- README.BRANCH: Remove copy of branch name -- commit 85aeac7 - ------------------------------------------------------------------- Fri Mar 29 11:21:00 CET 2024 - mkoutny@suse.com @@ -29507,12 +35151,6 @@ Mon Mar 25 10:15:05 CET 2024 - denis.kirjanov@suse.com - Update references - commit 2642ab1 -------------------------------------------------------------------- -Mon Mar 25 09:10:29 CET 2024 - jslaby@suse.cz - -- blacklist.conf: add one PCI miss -- commit 45d2467 - ------------------------------------------------------------------- Mon Mar 25 09:06:28 CET 2024 - jslaby@suse.cz @@ -30077,12 +35715,6 @@ Wed Mar 20 14:31:18 CET 2024 - mgorman@suse.de patches.suse/printk-Monolithic-bring-printk-up-to-date-with-v6.6-rt25.patch. - commit dde15d2 -------------------------------------------------------------------- -Wed Mar 20 13:05:54 CET 2024 - jslaby@suse.cz - -- blacklist.conf: add one x86/mem_encrypt entry -- commit 6d2cc3b - ------------------------------------------------------------------- Wed Mar 20 13:04:03 CET 2024 - jslaby@suse.cz @@ -30168,12 +35800,6 @@ Wed Mar 20 02:06:22 CET 2024 - neilb@suse.de - SUNRPC: fix a memleak in gss_import_v2_context (git-fixes). - commit cf1cfe0 -------------------------------------------------------------------- -Wed Mar 20 01:13:52 CET 2024 - neilb@suse.de - -- blacklist.conf: add a 'cosmetic' commit -- commit 704be6f - ------------------------------------------------------------------- Tue Mar 19 18:30:13 CET 2024 - mkoutny@suse.com @@ -31785,12 +37411,6 @@ Wed Mar 13 15:26:37 CET 2024 - tiwai@suse.de - 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 @@ -31803,12 +37423,6 @@ 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 @@ -32261,24 +37875,6 @@ 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 @@ -32533,12 +38129,6 @@ Wed Mar 6 17:32:46 CET 2024 - msuchanek@suse.de (jsc#PED-7970). - commit 1346447 -------------------------------------------------------------------- -Wed Mar 6 16:34:55 CET 2024 - mkoutny@suse.com - -- blacklist.conf: Add 118642d7f606 mm: memcontrol: clarify swapaccount=0 deprecation warning -- commit b280e82 - ------------------------------------------------------------------- Wed Mar 6 15:32:29 CET 2024 - iivanov@suse.de @@ -32627,12 +38217,6 @@ Wed Mar 6 04:43:19 CET 2024 - ailiop@suse.com (bsc#1220897 CVE-2023-52526). - commit ff061f8 -------------------------------------------------------------------- -Tue Mar 5 23:08:29 CET 2024 - tonyj@suse.de - -- blacklist.conf: Mark "Fix 'perf script' tests on s390" as irrelvant -- commit 80d8ff7 - ------------------------------------------------------------------- Tue Mar 5 23:07:57 CET 2024 - tonyj@suse.de @@ -32861,12 +38445,6 @@ Tue Mar 5 13:13:04 CET 2024 - tiwai@suse.de - drm/amd/display: Fix a debugfs null pointer error (git-fixes). - commit 36bc980 -------------------------------------------------------------------- -Tue Mar 5 13:12:26 CET 2024 - tiwai@suse.de - -- blacklist.conf: drop amdgpu commit that will be backported now -- commit eac0ec4 - ------------------------------------------------------------------- Tue Mar 5 13:11:19 CET 2024 - nstange@suse.de @@ -33508,14 +39086,6 @@ Thu Feb 29 19:05:14 CET 2024 - mhocko@suse.com (git-fixes, bsc#1220398, CVE-2024-26602). - commit 2095c13 -------------------------------------------------------------------- -Thu Feb 29 18:59:01 CET 2024 - krisman@suse.de - -- blacklist.conf: Add duplicated commit "io_uring/af_unix: disable sending io_uring over sockets" - This was merged twice, through net and io_uring trees. Since we already - applied the net version as a CVE fix, blacklist the io_uring hash. -- commit ebf8ff8 - ------------------------------------------------------------------- Thu Feb 29 15:34:13 CET 2024 - petr.pavlu@suse.com @@ -35063,12 +40633,6 @@ Mon Feb 26 16:20:43 CET 2024 - iivanov@suse.de - arm64/signal: Don't assume that TIF_SVE means we saved SVE state (git-fixes) - commit 09cd4e0 -------------------------------------------------------------------- -Mon Feb 26 16:19:42 CET 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: scs: Disable LTO for SCS patching code") -- commit 58e088b - ------------------------------------------------------------------- Mon Feb 26 16:16:26 CET 2024 - iivanov@suse.de @@ -35184,12 +40748,6 @@ Mon Feb 26 12:54:01 CET 2024 - tiwai@suse.de - Drop ath11k hibernation patches for refreshing to the new patch set (bsc#1207948) - commit f6e50f6 -------------------------------------------------------------------- -Mon Feb 26 12:25:59 CET 2024 - msuchanek@suse.de - -- blacklist.conf: Add reverted commit. -- commit c46ef6f - ------------------------------------------------------------------- Mon Feb 26 10:22:14 CET 2024 - pjakobsson@suse.de @@ -35197,12 +40755,6 @@ Mon Feb 26 10:22:14 CET 2024 - pjakobsson@suse.de dc_dmub_srv (git-fixes). - commit 351cd92 -------------------------------------------------------------------- -Mon Feb 26 10:21:12 CET 2024 - pjakobsson@suse.de - -- blacklist.conf: dbf5d3d02987 drm/amd/display: Check writeback connectors in create_validate_stream_for_sink -- commit f11d1ed - ------------------------------------------------------------------- Mon Feb 26 10:19:59 CET 2024 - pjakobsson@suse.de @@ -36442,12 +41994,6 @@ Tue Feb 20 11:41:41 CET 2024 - jgross@suse.com (git-fixes). - commit fb286cc -------------------------------------------------------------------- -Tue Feb 20 11:07:23 CET 2024 - jgross@suse.com - -- blacklist.conf: add 7d8c67dd5d4f2 (only comment changes) -- commit c4873a4 - ------------------------------------------------------------------- Tue Feb 20 11:04:11 CET 2024 - jgross@suse.com @@ -36466,12 +42012,6 @@ Tue Feb 20 10:06:08 CET 2024 - oneukum@suse.com - timers: Tag (hr)timer softirq as hotplug safe (git-fixes). - commit 37f54ca -------------------------------------------------------------------- -Tue Feb 20 10:01:24 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive, fixed feature not backported -- commit 6569781 - ------------------------------------------------------------------- Tue Feb 20 09:57:03 CET 2024 - jgross@suse.com @@ -36564,16 +42104,11 @@ Mon Feb 19 16:52:01 CET 2024 - msuchanek@suse.de - commit 72b942a ------------------------------------------------------------------- -Mon Feb 19 15:53:41 CET 2024 - msuchanek@suse.de +Mon Feb 19 16:16:15 CET 2024 - lhruska@suse.cz -- blacklist: Add more files for unsupported powerpc architectures -- commit 47ca633 - -------------------------------------------------------------------- -Mon Feb 19 15:29:10 CET 2024 - mbrugger@suse.com - -- blacklist.conf: fix for config we don't have -- commit 6278860 +- rpm/scripts: Remove obsolete Symbols.list + Symbols.list is not longer needed by the new klp-convert implementation. (bsc#1218644) +- commit 596cf9f ------------------------------------------------------------------- Mon Feb 19 15:22:04 CET 2024 - msuchanek@suse.de @@ -50767,12 +56302,6 @@ Wed Feb 14 15:58:54 CET 2024 - jgross@suse.com - Update config files. - commit 6e3621a -------------------------------------------------------------------- -Wed Feb 14 15:48:32 CET 2024 - oneukum@suse.com - -- blacklist.conf: obsoleted -- commit c534e08 - ------------------------------------------------------------------- Wed Feb 14 15:26:00 CET 2024 - oneukum@suse.com @@ -50868,12 +56397,6 @@ Wed Feb 14 14:41:06 CET 2024 - oneukum@suse.com and v1.9.0 (git-fixes). - commit c7b4716 -------------------------------------------------------------------- -Wed Feb 14 14:33:32 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive -- commit 88b8f1d - ------------------------------------------------------------------- Wed Feb 14 14:28:52 CET 2024 - oneukum@suse.com @@ -51045,12 +56568,6 @@ Wed Feb 14 12:31:44 CET 2024 - denis.kirjanov@suse.com - net: ravb: Use pm_runtime_resume_and_get() (git-fixes). - commit f02fced -------------------------------------------------------------------- -Wed Feb 14 12:30:47 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive -- commit 569fb89 - ------------------------------------------------------------------- Wed Feb 14 12:30:19 CET 2024 - denis.kirjanov@suse.com @@ -51064,12 +56581,6 @@ Wed Feb 14 12:28:50 CET 2024 - denis.kirjanov@suse.com - net: libwx: fix memory leak on msix entry (git-fixes). - commit 159ffaa -------------------------------------------------------------------- -Wed Feb 14 12:24:16 CET 2024 - oneukum@suse.com - -- blacklist.conf: stupid cleanup -- commit 7489b61 - ------------------------------------------------------------------- Wed Feb 14 12:21:18 CET 2024 - jgross@suse.com @@ -51323,12 +56834,6 @@ Tue Feb 13 17:38:00 CET 2024 - jgross@suse.com (jsc#PED-7322). - commit 8de3668 -------------------------------------------------------------------- -Tue Feb 13 17:18:08 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive -- commit 3612d1b - ------------------------------------------------------------------- Tue Feb 13 17:15:19 CET 2024 - colyli@suse.de @@ -52027,12 +57532,6 @@ Fri Feb 9 14:28:37 CET 2024 - denis.kirjanov@suse.com for MT7986 SoC (git-fixes). - commit be286c4 -------------------------------------------------------------------- -Fri Feb 9 14:28:23 CET 2024 - tiwai@suse.de - -- blacklist.conf: drop two entries to be revived (bsc#1219692) -- commit ba7ec6f - ------------------------------------------------------------------- Fri Feb 9 14:26:52 CET 2024 - denis.kirjanov@suse.com @@ -52372,12 +57871,6 @@ Tue Feb 6 12:36:41 CET 2024 - jroedel@suse.de - Update config files. - commit 646dbdf -------------------------------------------------------------------- -Tue Feb 6 12:32:50 CET 2024 - vbabka@suse.cz - -- blacklist.conf: add f96c48670319 ("mm: disable CONFIG_PER_VMA_LOCK until its fixed") -- commit 8e3f9d5 - ------------------------------------------------------------------- Tue Feb 6 12:26:12 CET 2024 - fweisbecker@suse.de @@ -52936,13 +58429,6 @@ Mon Feb 5 21:17:53 CET 2024 - vbabka@suse.cz section of file mapping lock (bsc#1219558). - commit 4a16ce1 -------------------------------------------------------------------- -Mon Feb 5 19:22:20 CET 2024 - dwagner@suse.de - -- blacklist.conf: add 'nvme: fix error-handling for io_uring - nvme-passthrough' -- commit 36e1796 - ------------------------------------------------------------------- Mon Feb 5 19:14:18 CET 2024 - dwagner@suse.de @@ -56026,12 +61512,6 @@ Wed Jan 24 15:25:26 CET 2024 - iivanov@suse.de - arm64: add dependency between vmlinuz.efi and Image (git-fixes) - commit d79de8f -------------------------------------------------------------------- -Wed Jan 24 15:24:15 CET 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: dts: rockchip: Add NanoPC T6 PCIe e-key support") -- commit a24916f - ------------------------------------------------------------------- Wed Jan 24 15:22:57 CET 2024 - iivanov@suse.de @@ -56082,18 +61562,6 @@ Tue Jan 23 17:34:56 CET 2024 - jack@suse.cz - blk-wbt: Fix detection of dirty-throttled tasks (bsc#1218272). - commit 497a3db -------------------------------------------------------------------- -Tue Jan 23 13:33:21 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive, driver not backported -- commit f337957 - -------------------------------------------------------------------- -Tue Jan 23 13:28:37 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive without driver conversion to glue layer -- commit 5276996 - ------------------------------------------------------------------- Tue Jan 23 13:12:13 CET 2024 - tiwai@suse.de @@ -58103,18 +63571,6 @@ Tue Jan 16 19:40:07 CET 2024 - lduncan@suse.com - scsi: libsas: Simplify sas_check_eeds() (bsc#1216435). - commit 0820552 -------------------------------------------------------------------- -Tue Jan 16 18:44:09 CET 2024 - mkoutny@suse.com - -- blacklist.conf: Add 24e41bf8a6b4 mm: add a NO_INHERIT flag to the PR_SET_MDWE prctl -- commit b099e35 - -------------------------------------------------------------------- -Tue Jan 16 18:39:20 CET 2024 - mkoutny@suse.com - -- blacklist.conf: Add 793838138c15 prctl: Disable prctl(PR_SET_MDWE) on parisc -- commit 892fb82 - ------------------------------------------------------------------- Tue Jan 16 18:37:39 CET 2024 - mkoutny@suse.com @@ -58612,13 +64068,6 @@ Mon Jan 15 19:38:42 CET 2024 - hare@suse.de (bsc#1218785). - commit 34e3536 -------------------------------------------------------------------- -Mon Jan 15 19:06:12 CET 2024 - tonyj@suse.de - -- blacklist.conf: blacklist "perf test: Remove x permission from - lib/stat_output.sh" change -- commit d50c64f - ------------------------------------------------------------------- Mon Jan 15 19:00:35 CET 2024 - tonyj@suse.de @@ -61149,12 +66598,6 @@ Thu Jan 11 15:42:40 CET 2024 - tiwai@suse.de Fix compile warning due to trailing spaces - commit 3d15652 -------------------------------------------------------------------- -Thu Jan 11 15:34:47 CET 2024 - tiwai@suse.de - -- blacklist.conf: Add cfg80211 commit that was reverted in stable -- commit fa9d6ac - ------------------------------------------------------------------- Thu Jan 11 15:27:25 CET 2024 - tiwai@suse.de @@ -62728,12 +68171,6 @@ Fri Jan 5 10:14:48 CET 2024 - tiwai@suse.de - ALSA: hda/tas2781: do not use regcache (git-fixes). - commit 38d6c8e -------------------------------------------------------------------- -Fri Jan 5 09:05:34 CET 2024 - pjakobsson@suse.de - -- blacklist.conf: 7a0e005c7957 drm/amd/display: edp do not add non-edid timings -- commit 82e295c - ------------------------------------------------------------------- Fri Jan 5 09:00:59 CET 2024 - pjakobsson@suse.de @@ -63494,24 +68931,12 @@ Wed Jan 3 16:56:08 CET 2024 - tbogendoerfer@suse.de (jsc#PED-4876). - commit ca3b156 -------------------------------------------------------------------- -Wed Jan 3 16:25:32 CET 2024 - mkoutny@suse.com - -- blacklist.conf: e63a57303599 blk-cgroup: bypass blkcg_deactivate_policy after destroying -- commit 11bfa0e - ------------------------------------------------------------------- Wed Jan 3 11:44:52 CET 2024 - msuchanek@suse.de - rpm/config.sh: Enable multibuild. - commit 8362cb4 -------------------------------------------------------------------- -Wed Jan 3 00:43:17 CET 2024 - lduncan@suse.com - -- blacklist.conf: add commit with duplicate id -- commit d39fdcd - ------------------------------------------------------------------- Wed Jan 3 00:32:44 CET 2024 - tonyj@suse.de @@ -65555,13 +70980,6 @@ Tue Dec 12 14:45:48 CET 2023 - tiwai@suse.de (git-fixes). - commit f3ff4cb -------------------------------------------------------------------- -Tue Dec 12 14:37:05 CET 2023 - tiwai@suse.de - -- blacklist.conf: ignore loongarch, smb server and rust patches - Those are disabled on SUSE kernels -- commit 7c646fb - ------------------------------------------------------------------- Tue Dec 12 14:26:58 CET 2023 - tiwai@suse.de @@ -82094,12 +87512,6 @@ Fri Oct 27 20:23:43 CEST 2023 - msuchanek@suse.de (bsc#1215199). - commit 17dca43 -------------------------------------------------------------------- -Fri Oct 27 20:14:07 CEST 2023 - msuchanek@suse.de - -- blacklist.conf: Add ff9e8f415136 powerpc/mm: Allow ARCH_FORCE_MAX_ORDER up to 12 -- commit e7a922b - ------------------------------------------------------------------- Fri Oct 27 20:10:23 CEST 2023 - msuchanek@suse.de @@ -83843,12 +89255,6 @@ Thu Oct 19 08:09:16 CEST 2023 - hare@suse.de - net/tcp: don't peek at tail for io_uring zc (bsc#1216396). - commit 1cbac60 -------------------------------------------------------------------- -Wed Oct 18 15:47:41 CEST 2023 - hare@suse.de - -- blacklist.conf: Add kernel-doc only commit -- commit 2ddda2d - ------------------------------------------------------------------- Wed Oct 18 15:47:32 CEST 2023 - hare@suse.de @@ -83888,12 +89294,6 @@ Tue Oct 17 18:00:55 CEST 2023 - msuchanek@suse.de - Refresh SED OPAL patches to current version. - commit 8de998c -------------------------------------------------------------------- -Tue Oct 17 16:39:52 CEST 2023 - osalvador@suse.de - -- blacklist.conf: Updated -- commit a30a51f - ------------------------------------------------------------------- Tue Oct 17 16:38:53 CEST 2023 - osalvador@suse.de @@ -84311,12 +89711,6 @@ Mon Oct 16 09:50:00 CEST 2023 - mhocko@suse.com (git-fixes). - commit 76715d0 -------------------------------------------------------------------- -Fri Oct 13 16:36:23 CEST 2023 - mfranc@suse.cz - -- blacklist.conf: happens only for CONFIG_SMC=y and CONFIG_ISM=m -- commit e983db0 - ------------------------------------------------------------------- Fri Oct 13 11:56:54 CEST 2023 - mfranc@suse.cz @@ -84851,12 +90245,6 @@ Mon Oct 9 18:17:02 CEST 2023 - mkoutny@suse.com installed before init (bsc#1216062). - commit 82eb0da -------------------------------------------------------------------- -Mon Oct 9 17:51:35 CEST 2023 - mkoutny@suse.com - -- blacklist.conf: Add 82b90b6c5b38 cgroup:namespace: Remove unused cgroup_namespaces_init() -- commit 8f5c0b6 - ------------------------------------------------------------------- Mon Oct 9 17:41:37 CEST 2023 - tiwai@suse.de @@ -86391,12 +91779,6 @@ Mon Oct 2 17:09:57 CEST 2023 - ohering@suse.de - Update patch headers to reflect state of TDX for Hyper-V (bsc#1206453). - commit 4f4b833 -------------------------------------------------------------------- -Mon Oct 2 17:07:37 CEST 2023 - pmladek@suse.com - -- blacklist.conf: livepatch: cosmetic -- commit 634df5c - ------------------------------------------------------------------- Mon Oct 2 17:03:58 CEST 2023 - pmladek@suse.com @@ -86912,12 +92294,6 @@ Tue Sep 26 14:39:19 CEST 2023 - petr.pavlu@suse.com * Fix typos and improve some wording. - commit 640988f -------------------------------------------------------------------- -Tue Sep 26 12:36:18 CEST 2023 - lhenriques@suse.de - -- blacklist.conf: Add 3af5ae22030c ("ceph: make members in struct ceph_mds_request_args_ext a union") -- commit 02fca20 - ------------------------------------------------------------------- Tue Sep 26 09:39:36 CEST 2023 - jlee@suse.com @@ -104137,12 +109513,6 @@ Mon Sep 11 14:34:56 CEST 2023 - ohering@suse.de - clocksource/drivers/hyper-v: Rework clocksource and sched clock setup (git-fixes). - commit 31e4022 -------------------------------------------------------------------- -Mon Sep 11 12:14:43 CEST 2023 - msuchanek@suse.de - -- blacklist.conf: Add ef73dcaa3121 ("powerpc: xmon: remove unused variables") -- commit 54a0db2 - ------------------------------------------------------------------- Mon Sep 11 12:08:42 CEST 2023 - msuchanek@suse.de @@ -104177,12 +109547,6 @@ Mon Sep 11 11:32:07 CEST 2023 - petr.pavlu@suse.com - net/mlx4: Remove many unnecessary NULL values (bsc#1187236). - commit e58c7a4 -------------------------------------------------------------------- -Mon Sep 11 10:25:12 CEST 2023 - msuchanek@suse.de - -- blacklist.conf: Add 750bd41aeaeb powerpc/pseries: Fix hcall tracepoints with JUMP_LABEL=n -- commit a91431a - ------------------------------------------------------------------- Mon Sep 11 10:24:24 CEST 2023 - msuchanek@suse.de @@ -104579,18 +109943,6 @@ Thu Sep 7 08:20:22 CEST 2023 - tiwai@suse.de (bsc#1012628). - commit 603fb0d -------------------------------------------------------------------- -Thu Sep 7 08:19:54 CEST 2023 - tiwai@suse.de - -- blacklist.conf: drop entry backported in stable 6.4.15 -- commit aa9afe7 - -------------------------------------------------------------------- -Wed Sep 6 23:36:02 CEST 2023 - tbogendoerfer@suse.de - -- blacklist.conf: Added temporary blacklist until mlx5 backport could be done (missing PED number) -- commit 653e287 - ------------------------------------------------------------------- Wed Sep 6 18:43:31 CEST 2023 - oneukum@suse.com @@ -104714,13 +110066,6 @@ Wed Sep 6 17:29:41 CEST 2023 - oneukum@suse.com (jsc#PED-6061). - commit 81b59d1 -------------------------------------------------------------------- -Wed Sep 6 17:27:40 CEST 2023 - mhocko@suse.com - -- blacklist.conf: 9011e49d54dc ("modules: only allow symbol_get of - EXPORT_SYMBOL_GPL modules") is not really fixing any existing bug. -- commit 541c06b - ------------------------------------------------------------------- Wed Sep 6 17:19:34 CEST 2023 - oneukum@suse.com @@ -105813,12 +111158,6 @@ Fri Sep 1 12:42:57 CEST 2023 - denis.kirjanov@suse.com - Update metadata - commit 94184dc -------------------------------------------------------------------- -Fri Sep 1 11:11:11 CEST 2023 - tiwai@suse.de - -- blacklist.conf: add entries that have been already cherry-picked in 6.4 -- commit 3bbc83b - ------------------------------------------------------------------- Fri Sep 1 10:03:35 CEST 2023 - tiwai@suse.de diff --git a/kernel-rt.spec b/kernel-rt.spec index a305549..e68b77d 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 b49e7e52bdc1b46f45fadb1bc0aa310f52f5ac80 +%define git_commit 76e28cef5375feb1d7dcea0d112f8b50524eb429 %define variant -rt%{nil} %define compress_modules zstd %define compress_vmlinux xz @@ -34,12 +34,12 @@ %include %_sourcedir/kernel-spec-macros -%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,log.sh,try-disable-staging-driver,compress-vmlinux.sh,mkspec-dtb,check-module-license,klp-symbols,splitflist,mergedep,moddep,modflist,kernel-subpackage-build}) +%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,log.sh,try-disable-staging-driver,compress-vmlinux.sh,mkspec-dtb,check-module-license,splitflist,mergedep,moddep,modflist,kernel-subpackage-build}) Name: kernel-rt Version: 6.4.0 %if 0%{?is_kotd} -Release: .gb49e7e5 +Release: .g76e28ce %else Release: 0 %endif @@ -135,7 +135,7 @@ ExclusiveArch: do_not_build %define cpu_arch_flavor %cpu_arch/%build_flavor %if 0%{?_project:1} && ( %(echo %_project | grep -Ex -f %_sourcedir/release-projects | grep -vc ^PTF) || %(echo %_project | grep -Ec "^(Devel:)?Kernel:") ) - %define klp_symbols 1 + %define klp_ipa_clones 1 %endif # Define some CONFIG variables as rpm macros as well. (rpm cannot handle @@ -145,7 +145,7 @@ ExclusiveArch: do_not_build %define split_extra ("%CONFIG_MODULES" == "y" && "%CONFIG_SUSE_KERNEL_SUPPORTED" == "y") %if "%CONFIG_MODULES" != "y" - %define klp_symbols 0 + %define klp_ipa_clones 0 %endif %global certs %( space="" ; for f in %_sourcedir/*.crt; do \ @@ -209,7 +209,6 @@ Source73: dtb.spec.in.in Source74: mkspec-dtb Source75: release-projects Source76: check-module-license -Source77: klp-symbols Source78: modules.fips Source79: splitflist Source80: mergedep @@ -279,7 +278,6 @@ NoSource: 73 NoSource: 74 NoSource: 75 NoSource: 76 -NoSource: 77 NoSource: 78 NoSource: 79 NoSource: 80 @@ -820,7 +818,6 @@ relink ../../linux-%{kernelrelease}%{variant}-obj/"%cpu_arch_flavor" /usr/src/li %dir /usr/src/linux-obj %dir /usr/src/linux-obj/%cpu_arch %ghost /usr/src/linux-obj/%cpu_arch_flavor -%exclude %obj_install_dir/%cpu_arch_flavor/Symbols.list %if %generate_compile_commands %exclude %obj_install_dir/%cpu_arch_flavor/compile_commands.json %endif @@ -859,17 +856,14 @@ static, unlike the %{patch_package}--flavor package names. %dir %modules_dir %endif -%if 0%{?klp_symbols} && "%livepatch" != "" +%if 0%{?klp_ipa_clones} && "%livepatch" != "" && "%CONFIG_LIVEPATCH_IPA_CLONES" == "y" %package %{livepatch}-devel Summary: Kernel symbols file used during kGraft patch development Group: System/Kernel -Provides: klp-symbols = %version %description %{livepatch}-devel -This package brings a file named Symbols.list, which contains a list of all -kernel symbols and its respective kernel object . This list is to be used by -the klp-convert tool, which helps livepatch developers by enabling automatic -symbol resolution. +This package brings ipa-clones files, which are used to to track +set of functions where a code from another function can eventually occur. %files %{livepatch}-devel -f livepatch-files %endif @@ -1480,14 +1474,9 @@ while true; do fi done -# Generate list of symbols that are used to create kernel livepatches -%if 0%{?klp_symbols} - %_sourcedir/klp-symbols . Symbols.list - - %if %generate_compile_commands - # Generate compile_commands.json - make compile_commands.json - %endif +%if 0%{?klp_ipa_clones} && %generate_compile_commands + # Generate compile_commands.json + make compile_commands.json %endif %install @@ -1676,27 +1665,22 @@ if [ %CONFIG_MODULES = y ]; then mkdir -p %rpm_install_dir/%cpu_arch/%build_flavor cp Module.symvers %rpm_install_dir/%cpu_arch/%build_flavor - # List of symbols that are used to generate kernel livepatches - %if 0%{?klp_symbols} - cp Symbols.list %rpm_install_dir/%cpu_arch/%build_flavor - echo %obj_install_dir/%cpu_arch/%build_flavor/Symbols.list > %my_builddir/livepatch-files.no_dir - + # List of ipa-clones that are used to to track set of functions where a code from another function can eventually occur. + %if 0%{?klp_ipa_clones} && "%CONFIG_LIVEPATCH_IPA_CLONES" == "y" %if %generate_compile_commands cp compile_commands.json %rpm_install_dir/%cpu_arch/%build_flavor echo %obj_install_dir/%cpu_arch/%build_flavor/compile_commands.json >> %my_builddir/livepatch-files.no_dir %endif - %if "%CONFIG_LIVEPATCH_IPA_CLONES" == "y" - find %kernel_build_dir -name "*.ipa-clones" ! -size 0 | sed -e 's|^%kernel_build_dir/||' | sort > ipa-clones.list - cp ipa-clones.list %rpm_install_dir/%cpu_arch/%build_flavor - echo %obj_install_dir/%cpu_arch/%build_flavor/ipa-clones.list >> %my_builddir/livepatch-files.no_dir - tar -C %kernel_build_dir \ + find %kernel_build_dir -name "*.ipa-clones" ! -size 0 | sed -e 's|^%kernel_build_dir/||' | sort > ipa-clones.list + cp ipa-clones.list %rpm_install_dir/%cpu_arch/%build_flavor + echo %obj_install_dir/%cpu_arch/%build_flavor/ipa-clones.list >> %my_builddir/livepatch-files.no_dir + tar -C %kernel_build_dir \ %if ! 0%{?suse_version} || 0%{?suse_version} >= 1500 - --verbatim-files-from \ + --verbatim-files-from \ %endif - -T ipa-clones.list -cf- | tar -C %rpm_install_dir/%cpu_arch/%build_flavor -xvf- - cat ipa-clones.list | sed -e 's|^|%obj_install_dir/%cpu_arch/%build_flavor/|' >> %my_builddir/livepatch-files.no_dir - %endif + -T ipa-clones.list -cf- | tar -C %rpm_install_dir/%cpu_arch/%build_flavor -xvf- + cat ipa-clones.list | sed -e 's|^|%obj_install_dir/%cpu_arch/%build_flavor/|' >> %my_builddir/livepatch-files.no_dir %endif # Table of types used in exported symbols (for modversion debugging). @@ -1891,7 +1875,7 @@ shopt -s nullglob dotglob fi } | add_dirs_to_filelist >%my_builddir/kernel-devel.files ( cd %buildroot ; find .%obj_install_dir/%cpu_arch_flavor -type f ; ) | \ -sed -e 's/^[.]//' | grep -v -e '[.]ipa-clones$' -e '/Symbols[.]list$' -e '/ipa-clones[.]list$'| \ +sed -e 's/^[.]//' | grep -v -e '[.]ipa-clones$' -e '/ipa-clones[.]list$'| \ add_dirs_to_filelist >> %my_builddir/kernel-devel.files { echo %ghost /boot/%image diff --git a/kernel-rt_debug.changes b/kernel-rt_debug.changes index 96700bd..9a6f53f 100644 --- a/kernel-rt_debug.changes +++ b/kernel-rt_debug.changes @@ -1,3 +1,6015 @@ +------------------------------------------------------------------- +Sat Dec 7 09:37:47 CET 2024 - tiwai@suse.de + +- ASoC: Intel: avs: da7219: Remove suspend_pre() and resume_post() + (stable-fixes). +- ALSA: hda/realtek: Add support for Samsung Galaxy Book3 360 + (NP730QFG) (stable-fixes). +- ALSA: hda/realtek: Enable mute and micmute LED on HP ProBook + 430 G8 (stable-fixes). +- ALSA: usb-audio: add mixer mapping for Corsair HS80 + (stable-fixes). +- ALSA: hda/conexant: fix Z60MR100 startup pop issue + (stable-fixes). +- commit 8c25a0a + +------------------------------------------------------------------- +Sat Dec 7 09:34:01 CET 2024 - tiwai@suse.de + +- drm/v3d: Enable Performance Counters before clearing them + (git-fixes). +- drm/sti: Add __iomem for mixer_dbg_mxn's parameter (git-fixes). +- dma-fence: Use kernel's sort for merging fences (git-fixes). +- dma-fence: Fix reference leak on fence merge failure path + (git-fixes). +- ASoC: mediatek: mt8188-mt6359: Remove hardcoded dmic codec + (git-fixes). +- ASoC: SOF: ipc3-topology: fix resource leaks in + sof_ipc3_widget_setup_comp_dai() (git-fixes). +- ALSA: usb-audio: Fix a DMA to stack memory bug (git-fixes). +- regmap: detach regmap from dev on regmap_exit (git-fixes). +- spi: mpc52xx: Add cancel_work_sync before module remove + (git-fixes). +- mmc: core: Further prevent card detect during shutdown + (git-fixes). +- commit 87e627e + +------------------------------------------------------------------- +Fri Dec 6 16:27:36 CET 2024 - tbogendoerfer@suse.de + +- net/mlx5e: kTLS, Fix incorrect page refcounting (CVE-2024-53138 + bsc#1234223). +- ice: protect XDP configuration with a mutex (CVE-2024-46765 + bsc#1230807). +- sch/netem: fix use after free in netem_dequeue (CVE-2024-46800 + bsc#1230827). +- commit c9f3783 + +------------------------------------------------------------------- +Fri Dec 6 15:48:44 CET 2024 - jgross@suse.com + +- vp_vdpa: fix id_table array not null terminated error + (CVE-2024-53110 bsc#1234085). +- commit ffc9457 + +------------------------------------------------------------------- +Fri Dec 6 14:33:58 CET 2024 - tbogendoerfer@suse.de + +- net/mlx5: fs, lock FTE when checking if active (CVE-2024-53121 + bsc#1234078). +- mlxsw: spectrum_ipip: Fix memory leak when changing remote + IPv6 address (CVE-2024-50252 bsc#1233201). +- commit 06c045b + +------------------------------------------------------------------- +Fri Dec 6 13:18:57 CET 2024 - tiwai@suse.de + +- netdevsim: copy addresses for both in and out paths (git-fixes). +- commit daf115e + +------------------------------------------------------------------- +Fri Dec 6 12:49:22 CET 2024 - tiwai@suse.de + +- can: j1939: j1939_session_new(): fix skb reference counting + (git-fixes). +- can: mcp251xfd: mcp251xfd_get_tef_len(): work around erratum + DS80000789E 6 (git-fixes). +- can: ems_usb: ems_usb_rx_err(): fix {rx,tx}_errors statistics + (git-fixes). +- can: sun4i_can: sun4i_can_err(): fix {rx,tx}_errors statistics + (git-fixes). +- can: sja1000: sja1000_err(): fix {rx,tx}_errors statistics + (git-fixes). +- can: hi311x: hi3110_can_ist(): fix {rx,tx}_errors statistics + (git-fixes). +- can: ifi_canfd: ifi_canfd_handle_lec_err(): fix {rx,tx}_errors + statistics (git-fixes). +- can: m_can: m_can_handle_lec_err(): fix {rx,tx}_errors + statistics (git-fixes). +- can: hi311x: hi3110_can_ist(): fix potential use-after-free + (git-fixes). +- can: sun4i_can: sun4i_can_err(): call can_change_state() + even if cf is NULL (git-fixes). +- can: c_can: c_can_handle_bus_err(): update statistics if skb + allocation fails (git-fixes). +- can: dev: can_set_termination(): allow sleeping GPIOs + (git-fixes). +- HID: wacom: fix when get product name maybe null pointer + (git-fixes). +- watchdog: rti: of: honor timeout-sec property (git-fixes). +- watchdog: mediatek: Make sure system reset gets asserted in + mtk_wdt_restart() (git-fixes). +- watchdog: apple: Actually flush writes after requesting watchdog + restart (git-fixes). +- iTCO_wdt: mask NMI_NOW bit for update_no_reboot_bit() call + (git-fixes). +- commit 535e699 + +------------------------------------------------------------------- +Fri Dec 6 09:25:08 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Correct GPIO polarity on brcm BT nodes (git-fixes) +- commit ed87dba + +------------------------------------------------------------------- +Fri Dec 6 09:23:49 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: remove num-slots property from (git-fixes) +- commit cb47197 + +------------------------------------------------------------------- +Fri Dec 6 09:20:06 CET 2024 - iivanov@suse.de + +- kABI: Restore exported __arm_smccc_sve_check (git-fixes) +- commit 3817c3a + +------------------------------------------------------------------- +Thu Dec 5 22:16:43 CET 2024 - dsterba@suse.com + +- drm/i915/hdcp: Add encoder check in intel_hdcp_get_capability (CVE-2024-53051 bsc#1233547) +- commit 5262489 + +------------------------------------------------------------------- +Thu Dec 5 21:21:56 CET 2024 - dsterba@suse.com + +- mctp i2c: handle NULL header address (CVE-2024-53043 bsc#1233523) +- commit 5a81634 + +------------------------------------------------------------------- +Thu Dec 5 21:19:36 CET 2024 - dsterba@suse.com + +- wifi: iwlwifi: mvm: fix 6 GHz scan construction (CVE-2024-53055 bsc#1233550) +- commit c2d5beb + +------------------------------------------------------------------- +Thu Dec 5 19:33:08 CET 2024 - dsterba@suse.com + +- drm/mediatek: Fix potential NULL dereference in mtk_crtc_destroy() (CVE-2024-53056 bsc#1233568) +- commit 95cef70 + +------------------------------------------------------------------- +Thu Dec 5 19:16:12 CET 2024 - dsterba@suse.com + +- Bluetooth: btnxpuart: Resolve TX timeout error in power save stress test (bsc#1230557) +- commit 9ca14b5 + +------------------------------------------------------------------- +Thu Dec 5 19:14:45 CET 2024 - dsterba@suse.com + +- Bluetooth: btnxpuart: Fix random crash seen while removing driver (CVE-2024-46680 bsc#1230557) +- commit 3831431 + +------------------------------------------------------------------- +Thu Dec 5 18:57:57 CET 2024 - dsterba@suse.com + +- net: dsa: fix netdev_priv() dereference before check on non-DSA netdevice events (CVE-2024-26596 bsc#1220355) +- commit 4861dc8 + +------------------------------------------------------------------- +Thu Dec 5 18:44:20 CET 2024 - dsterba@suse.com + +- net: hns3: fix kernel crash when uninstalling driver (CVE-2024-50296 bsc#1233485) +- commit 6e41fd9 + +------------------------------------------------------------------- +Thu Dec 5 17:13:01 CET 2024 - msuchanek@suse.de + +- powerpc/fadump: Move fadump_cma_init to setup_arch() after + initmem_init() (bsc#1215199). +- powerpc/fadump: Refactor and prepare fadump_cma_init for late + init (bsc#1215199). +- powerpc/pseries: Use correct data types from pseries_hp_errorlog + struct (bsc#1215199). +- powerpc/vdso: Inconditionally use CFUNC macro (bsc#1215199). +- powerpc/64s: Fix unnecessary copy to 0 when kernel is booted + at address 0 (bsc#1215199). +- commit d36d28e + +------------------------------------------------------------------- +Thu Dec 5 17:05:26 CET 2024 - iivanov@suse.de + +- bpf, arm64: Remove garbage frame for struct_ops trampoline (git-fixes) +- commit e1353aa + +------------------------------------------------------------------- +Thu Dec 5 17:03:24 CET 2024 - iivanov@suse.de + +- arm64: dts: allwinner: pinephone: Add mount matrix to accelerometer (git-fixes) +- commit 6a9e851 + +------------------------------------------------------------------- +Thu Dec 5 17:01:59 CET 2024 - iivanov@suse.de + +- arm64: dts: freescale: imx8mp-verdin: Fix SD regulator startup delay (git-fixes) +- commit c644bc4 + +------------------------------------------------------------------- +Thu Dec 5 17:00:48 CET 2024 - iivanov@suse.de + +- arm64: dts: freescale: imx8mm-verdin: Fix SD regulator startup delay (git-fixes) +- commit c8b850b + +------------------------------------------------------------------- +Thu Dec 5 16:59:21 CET 2024 - iivanov@suse.de + +- arm64: tls: Fix context-switching of tpidrro_el0 when kpti is enabled (git-fixes) +- commit dd2d99e + +------------------------------------------------------------------- +Thu Dec 5 16:51:05 CET 2024 - iivanov@suse.de + +- arm64: fix .data.rel.ro size assertion when CONFIG_LTO_CLANG (git-fixes) +- commit b16f3b1 + +------------------------------------------------------------------- +Thu Dec 5 16:48:22 CET 2024 - iivanov@suse.de + +- arm64: smccc: Remove broken support for SMCCCv1.3 SVE discard hint (git-fixes) +- commit 10c58e2 + +------------------------------------------------------------------- +Thu Dec 5 16:44:41 CET 2024 - iivanov@suse.de + +- arm64: smccc: replace custom COUNT_ARGS() & CONCATENATE() (git-fixes) +- commit 75545f9 + +------------------------------------------------------------------- +Thu Dec 5 15:58:34 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: remove orphaned pinctrl-names from pinephone (git-fixes) +- commit cc13a0d + +------------------------------------------------------------------- +Thu Dec 5 15:57:02 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix LED triggers on rk3308-roc-cc (git-fixes) +- commit a83a13f + +------------------------------------------------------------------- +Thu Dec 5 15:55:49 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Remove #cooling-cells from fan on Theobroma (git-fixes) +- commit ad38ac0 + +------------------------------------------------------------------- +Thu Dec 5 15:54:32 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Remove undocumented supports-emmc property (git-fixes) +- commit 2a5a31d + +------------------------------------------------------------------- +Thu Dec 5 15:53:20 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix bluetooth properties on Rock960 boards (git-fixes) +- commit 8dd2fe4 + +------------------------------------------------------------------- +Thu Dec 5 15:51:59 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix bluetooth properties on rk3566 box demo (git-fixes) +- commit af29eab + +------------------------------------------------------------------- +Thu Dec 5 15:50:48 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: fix i2c2 pinctrl-names property on (git-fixes) +- commit bffe233 + +------------------------------------------------------------------- +Thu Dec 5 15:49:40 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix reset-gpios property on brcm BT nodes (git-fixes) +- commit 34a0cb0 + +------------------------------------------------------------------- +Thu Dec 5 15:48:14 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix wakeup prop names on PineNote BT node (git-fixes) +- commit 600dbb4 + +------------------------------------------------------------------- +Thu Dec 5 15:33:16 CET 2024 - msuchanek@suse.de + +- powerpc/kexec: Fix return of uninitialized variable + (bsc#1194869). +- powerpc/pseries: Fix KVM guest detection for disabling + hardlockup detector (bsc#1194869). +- powerpc/pseries: Fix dtl_access_lock to be a rw_semaphore + (bsc#1194869). +- powerpc/mm/fault: Fix kfence page fault reporting (bsc#1194869). +- powerpc/powernv: Free name on error in opal_event_init() + (bsc#1194869). +- powerpc/atomic: Use YZ constraints for DS-form instructions + (bsc#1194869). +- powerpc/mm: Fix boot warning with hugepages and + CONFIG_DEBUG_VIRTUAL (bsc#1194869). +- powerpc/mm: Fix boot crash with FLATMEM (bsc#1194869). +- commit 290216a + +------------------------------------------------------------------- +Thu Dec 5 12:34:48 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Remove hdmi's 2nd interrupt on rk3328 (git-fixes) +- commit 428c79d + +------------------------------------------------------------------- +Thu Dec 5 12:27:44 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix rt5651 compatible value on (git-fixes) +- commit 3b24a1d + +------------------------------------------------------------------- +Thu Dec 5 12:26:35 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix rt5651 compatible value on rk3399-eaidk-610 (git-fixes) +- commit eac58a3 + +------------------------------------------------------------------- +Thu Dec 5 12:24:21 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8-ss-vpu: Fix imx8qm VPU IRQs (git-fixes) +- commit 225491d + +------------------------------------------------------------------- +Thu Dec 5 12:23:08 CET 2024 - iivanov@suse.de + +- bpf, arm64: Fix address emission with tag-based KASAN enabled (git-fixes) +- commit a6cd1e5 + +------------------------------------------------------------------- +Thu Dec 5 12:05:42 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Add DTS for FriendlyARM NanoPi R2S Plus (git-fixes) +- commit 8261b13 + +------------------------------------------------------------------- +Thu Dec 5 12:01:15 CET 2024 - iivanov@suse.de + +- arm64: tegra: Move AGX Orin nodes to correct location (git-fixes) +- commit 8c00b3f + +------------------------------------------------------------------- +Thu Dec 5 11:57:36 CET 2024 - iivanov@suse.de + +- arm64: dts: imx93: add nvmem property for eqos (git-fixes) +- commit 05664af + +------------------------------------------------------------------- +Thu Dec 5 11:54:15 CET 2024 - iivanov@suse.de + +- arm64: dts: imx93: add nvmem property for fec1 (git-fixes) +- commit 428b0c1 + +------------------------------------------------------------------- +Thu Dec 5 11:52:31 CET 2024 - iivanov@suse.de + +- arm64: dts: imx93: add ocotp node (git-fixes) +- commit 9645cb0 + +------------------------------------------------------------------- +Thu Dec 5 11:47:21 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8qxp: Add VPU subsystem file (git-fixes) +- commit 1bf0ccc + +------------------------------------------------------------------- +Wed Dec 4 13:01:43 CET 2024 - ailiop@suse.com + +- nfsd: remove unsafe BUG_ON from set_change_info (bsc#1234121). +- commit 6c0f124 + +------------------------------------------------------------------- +Wed Dec 4 11:28:27 CET 2024 - sjaeckel@suse.de + +- tcp: Fix use-after-free of nreq in reqsk_timer_handler() + (CVE-2024-50154 bsc#1233070). +- commit 297942f + +------------------------------------------------------------------- +Wed Dec 4 11:02:35 CET 2024 - tiwai@suse.de + +- f2fs: get out of a repeat loop when getting a locked data page + (bsc#1234011). +- commit dfe277f + +------------------------------------------------------------------- +Wed Dec 4 10:26:17 CET 2024 - pjakobsson@suse.de + +- drm: Expand max DRM device number to full MINORBITS (jsc#PED-11580). +- commit d737023 + +------------------------------------------------------------------- +Wed Dec 4 10:25:43 CET 2024 - pjakobsson@suse.de + +- accel: Use XArray instead of IDR for minors (jsc#PED-11580). +- commit 013fbaa + +------------------------------------------------------------------- +Wed Dec 4 10:25:07 CET 2024 - pjakobsson@suse.de + +- drm: Use XArray instead of IDR for minors (jsc#PED-11580). +- commit b04b73a + +------------------------------------------------------------------- +Wed Dec 4 10:19:48 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: fix a UBSAN warning in DML2.1 (bsc#1233115 CVE-2024-50177) +- commit 2f6004f + +------------------------------------------------------------------- +Wed Dec 4 00:56:19 CET 2024 - henrique.carvalho@suse.com + +- smb: client: Fix use-after-free of network namespace + (bsc#1233642 CVE-2024-53095). + Also applies: + smb: client: fix warning in generic_ip_connect() +- commit 97b3d9a + +------------------------------------------------------------------- +Tue Dec 3 23:04:22 CET 2024 - jack@suse.cz + +- jbd2: fix kernel-doc for j_transaction_overhead_buffers + (bsc#1234042). +- commit 20d4b12 + +------------------------------------------------------------------- +Tue Dec 3 20:21:07 CET 2024 - dsterba@suse.com + +- sctp: set sk_state back to CLOSED if autobind fails in sctp_listen_start (CVE-2024-49944 bsc#1232166) +- commit c7bd304 + +------------------------------------------------------------------- +Tue Dec 3 20:10:02 CET 2024 - dsterba@suse.com + +- netfilter: nf_tables: prevent nf_skb_duplicated corruption (CVE-2024-49952 bsc#1232157) +- commit d0f307b + +------------------------------------------------------------------- +Tue Dec 3 18:17:41 CET 2024 - jack@suse.cz + +- jbd2: Move j_transaction_overhead_buffers into a hole + (bsc#1234042). +- commit 1c42745 + +------------------------------------------------------------------- +Tue Dec 3 18:10:57 CET 2024 - mhocko@suse.com + +- Update + patches.suse/drm-amd-display-Adjust-VSDB-parser-for-replay-featur.patch + (stable-fixes CVE-2024-53108 bsc#1234081). +- Update + patches.suse/fs-ntfs3-Fixed-overflow-check-in-mi_enum_attr.patch + (bsc#1233207 CVE-2024-27407 bsc#1224429). +- Update + patches.suse/ima-fix-buffer-overrun-in-ima_eventdigest_init_commo.patch + (git-fixes CVE-2024-53106 bsc#1234083). +- Update + patches.suse/keys-Fix-overwrite-of-key-expiration-on-instantiation.patch + (git-fixes CVE-2024-36031 bsc#1225713). +- Update + patches.suse/media-uvcvideo-Skip-parsing-frames-of-type-UVC_VS_UN.patch + (git-fixes CVE-2024-53104 bsc#1234025). +- Update + patches.suse/net-relax-socket-state-check-at-accept-time.patch + (git-fixes CVE-2024-36484 bsc#1226872). +- Update + patches.suse/nvme-multipath-defer-partition-scanning.patch + (bsc#122824 git-fixes CVE-2024-53093 bsc#1233640). +- Update + patches.suse/nvme-tcp-avoid-race-between-queue_lock-lock-and-dest.patch + (git-fixes CVE-2024-53100 bsc#1233771). +- Update + patches.suse/ocfs2-uncache-inode-which-has-failed-entering-the-group.patch + (git-fixes CVE-2024-53112 bsc#1234087). +- Update + patches.suse/scsi-mpi3mr-Avoid-memcpy-field-spanning-write-WARNING.patch + (git-fixes CVE-2024-36920 bsc#1225768). +- Update + patches.suse/scsi-pm80xx-Set-phy-enable_completion-only-when-we-wait-for-it.patch + (git-fixes CVE-2024-47666 bsc#1231453). +- Update + patches.suse/tcp-Fix-refcnt-handling-in-__inet_hash_connect.patch + (git-fixes CVE-2024-26864 bsc#1223112). +- Update + patches.suse/tracing-osnoise-Use-a-cpumask-to-know-what-threads-are-kthreads.patch + (git-fixes CVE-2024-46788 bsc#1230817). +- Update + patches.suse/tracing-timerlat-Move-hrtimer_init-to-timerlat_fd-open.patch + (git-fixes CVE-2024-26703 bsc#1222423). +- Update + patches.suse/x86-CPU-AMD-Clear-virtualized-VMLOAD-VMSAVE-on-Zen4-client + (bsc#1233443 CVE-2024-53114 bsc#1234072). +- commit 420eea1 + +------------------------------------------------------------------- +Tue Dec 3 17:42:21 CET 2024 - sjaeckel@suse.de + +- Bluetooth: SCO: Fix UAF on sco_sock_timeout (CVE-2024-50125 + bsc#1232928). +- Refresh + patches.suse/Bluetooth-ISO-Fix-UAF-on-iso_sock_timeout.patch. + Revert Bluetooth-ISO-Fix-UAF-on-iso_sock_timeout.patch to the upstream + version of the patch. + The reverted version was a mix of 1bf4470a and 246b435a, since they were + accidentally identified as two different commits doing the same changes. + The changes are indeed mostly the same, but to different files. +- commit 5725fe5 + +------------------------------------------------------------------- +Tue Dec 3 17:06:26 CET 2024 - mkoutny@suse.com + +- cgroup/bpf: only cgroup v2 can be attached by bpf programs + (bsc#1234108). +- Revert "cgroup: Fix memory leak caused by missing + cgroup_bpf_offline" (bsc#1234108). +- commit 6a48bcc + +------------------------------------------------------------------- +Tue Dec 3 16:27:05 CET 2024 - ptesarik@suse.com + +- kexec_file: fix elfcorehdr digest exclusion when + CONFIG_CRASH_HOTPLUG=y (git-fixes). +- commit 1b2a54a + +------------------------------------------------------------------- +Tue Dec 3 14:36:00 CET 2024 - mkoutny@suse.com + +- signal: restore the override_rlimit logic (CVE-2024-50271 + bsc#1233460). +- ucounts: fix counter leak in inc_rlimit_get_ucounts() + (bsc#1233460). +- commit 232c2a6 + +------------------------------------------------------------------- +Tue Dec 3 14:26:42 CET 2024 - ohering@suse.de + +- hv_sock: Initializing vsk->trans to NULL to prevent a dangling pointer (git-fixes). +- commit 109e508 + +------------------------------------------------------------------- +Tue Dec 3 14:13:52 CET 2024 - mkoutny@suse.com + +- posix-cpu-timers: Clear TICK_DEP_BIT_POSIX_TIMER on clone + (bsc#1234098). +- commit 362812c + +------------------------------------------------------------------- +Tue Dec 3 14:01:19 CET 2024 - mkoutny@suse.com + +- signal: Replace BUG_ON()s (bsc#1234093). +- commit dad9530 + +------------------------------------------------------------------- +Tue Dec 3 13:20:50 CET 2024 - mfranc@suse.cz + +- dm cache: fix out-of-bounds access to the dirty bitset when + resizing (CVE-2024-50279 bsc#1233468). +- commit 2080b22 + +------------------------------------------------------------------- +Tue Dec 3 11:51:24 CET 2024 - mfranc@suse.cz + +- ipv4: ip_tunnel: Fix suspicious RCU usage warning in + ip_tunnel_init_flow() (CVE-2024-53042 bsc#1233540). +- commit 6649f10 + +------------------------------------------------------------------- +Tue Dec 3 10:21:53 CET 2024 - vliaskovitis@suse.com + +- intel_idle: fix ACPI _CST matching for newer Xeon platforms + (bsc#1231630). +- commit 0f23b16 + +------------------------------------------------------------------- +Tue Dec 3 10:19:21 CET 2024 - vliaskovitis@suse.com + +- intel_idle: add Granite Rapids Xeon support (bsc#1231630). +- commit 111abfc + +------------------------------------------------------------------- +Tue Dec 3 09:42:55 CET 2024 - tbogendoerfer@suse.de + +- Update config files. + Enabled IDPF for ARM64 (bsc#1221309) +- commit adee356 + +------------------------------------------------------------------- +Tue Dec 3 08:53:54 CET 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: validate fake register spill/fill precision + backtracking logic (bsc#1232823 CVE-2023-52920). +- bpf: handle fake register spill to stack with BPF_ST_MEM + instruction (bsc#1232823 CVE-2023-52920). +- commit 52cdf87 + +------------------------------------------------------------------- +Tue Dec 3 08:52:17 CET 2024 - neelx@suse.com + +- btrfs: fix a NULL pointer dereference when failed to start a + new trasacntion (CVE-2024-49868 bsc#1232272). +- commit cc68ee3 + +------------------------------------------------------------------- +Tue Dec 3 07:24:38 CET 2024 - jslaby@suse.cz + +- PCI: j721e: Deassert PERST# after a delay of PCIE_T_PVPERL_MS + milliseconds (git-fixes). +- PCI: Add T_PVPERL macro (git-fixes). +- commit 664a849 + +------------------------------------------------------------------- +Mon Dec 2 21:56:21 CET 2024 - vbabka@suse.cz + +- mm/thp: fix deferred split unqueue naming and locking + (CVE-2024-53079 bsc#1233570). +- commit b50ea3e + +------------------------------------------------------------------- +Mon Dec 2 21:16:07 CET 2024 - vliaskovitis@suse.com + +- cxl: downgrade a warning message to debug level in + cxl_probe_component_regs() (bsc#1229165). +- commit 388d64b + +------------------------------------------------------------------- +Mon Dec 2 17:16:15 CET 2024 - dwagner@suse.de + +- nvme-fabrics: fix kernel crash while shutting down controller + (git-fixes). +- nvme-pci: reverse request order in nvme_queue_rqs (git-fixes). +- nvme-pci: fix freeing of the HMB descriptor table (git-fixes). +- nvme/host: Fix RCU list traversal to use SRCU primitive + (git-fixes). +- commit 9f9c907 + +------------------------------------------------------------------- +Mon Dec 2 17:10:36 CET 2024 - dwagner@suse.de + +- nvme-loop: flush off pending I/O while shutting down loop + controller (git-fixes). +- commit 85bcc27 + +------------------------------------------------------------------- +Mon Dec 2 17:09:17 CET 2024 - dwagner@suse.de + +- Rename to + patches.suse/nvme-multipath-defer-partition-scanning.patch. (git-fixes bsc#122824) +- commit 79fcf69 + +------------------------------------------------------------------- +Mon Dec 2 17:06:20 CET 2024 - dwagner@suse.de + +- nvme: tcp: avoid race between queue_lock lock and destroy + (git-fixes). +- commit 0d6537a + +------------------------------------------------------------------- +Mon Dec 2 16:49:45 CET 2024 - dwagner@suse.de + +- Update + patches.suse/scsi-qla2xxx-Update-version-to-10.02.09.300-k.patch + (bsc#1228850 jsc#PED-9943 jsc#PED-11316). + This is the latest greatest version of qla2xxx. Add the jira + reference so that it is tracked. +- commit 8eff9b2 + +------------------------------------------------------------------- +Mon Dec 2 16:48:06 CET 2024 - dwagner@suse.de + +- scsi: lpfc: Copyright updates for 14.4.0.6 patches (bsc#1233241 + jsc#PED-9943). +- scsi: lpfc: Update lpfc version to 14.4.0.6 (bsc#1233241 + jsc#PED-9943). +- scsi: lpfc: Change lpfc_nodelist nlp_flag member into a bitmask + (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Remove NLP_RELEASE_RPI flag from nodelist structure + (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Prevent NDLP reference count underflow in + dev_loss_tmo callback (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Add cleanup of nvmels_wq after HBA reset + (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Check SLI_ACTIVE flag in FDMI cmpl before submitting + follow up FDMI (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Update lpfc_els_flush_cmd() to check for SLI_ACTIVE + before BSG flag (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Call lpfc_sli4_queue_unset() in restart and rmmod + paths (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Check devloss callbk done flag for potential stale + NDLP ptrs (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Modify CGN warning signal calculation based on + EDC response (bsc#1233241 jsc#PED-9943). +- commit 566c7c9 + +------------------------------------------------------------------- +Mon Dec 2 15:46:30 CET 2024 - vbabka@suse.cz + +- mm: always initialise folio->_deferred_list (CVE-2024-53079 + bsc#1233570 prerequisity). +- commit 3c832a9 + +------------------------------------------------------------------- +Mon Dec 2 15:07:02 CET 2024 - osalvador@suse.de + +- mm/hugetlb: fix nodes huge page allocation when there are + surplus pages (bsc#1234012). +- commit 9fde6f7 + +------------------------------------------------------------------- +Mon Dec 2 15:00:04 CET 2024 - oneukum@suse.com + +- Input: xpad - add support for MSI Claw A1M (git-fixes). +- commit d37ec4c + +------------------------------------------------------------------- +Mon Dec 2 14:58:20 CET 2024 - oneukum@suse.com + +- Input: xpad - add support for 8BitDo Ultimate 2C Wireless + Controller (git-fixes). +- commit 0d7bec2 + +------------------------------------------------------------------- +Mon Dec 2 14:55:18 CET 2024 - oneukum@suse.com + +- Input: xpad - add support for Machenike G5 Pro Controller + (git-fixes). +- commit f071586 + +------------------------------------------------------------------- +Mon Dec 2 14:51:08 CET 2024 - oneukum@suse.com + +- Input: xpad - sort xpad_device by vendor and product ID + (git-fixes). +- Refresh + patches.suse/Input-xpad-add-support-for-Snakebyte-GAMEPADs.patch. +- commit 5f46bd9 + +------------------------------------------------------------------- +Mon Dec 2 14:49:37 CET 2024 - oneukum@suse.com + +- Input: xpad - add GameSir T4 Kaleid Controller support + (git-fixes). +- commit d80239f + +------------------------------------------------------------------- +Mon Dec 2 14:48:03 CET 2024 - oneukum@suse.com + +- Input: xpad - add GameSir VID for Xbox One controllers + (git-fixes). +- commit 993ca75 + +------------------------------------------------------------------- +Mon Dec 2 14:46:07 CET 2024 - oneukum@suse.com + +- Input: xpad - fix support for some third-party controllers + (git-fixes). +- commit 1d5b082 + +------------------------------------------------------------------- +Mon Dec 2 14:42:05 CET 2024 - oneukum@suse.com + +- Input: xpad - spelling fixes for "Xbox" (git-fixes). +- Refresh + patches.suse/Input-xpad-add-HyperX-Clutch-Gladiate-Support.patch. +- Refresh + patches.suse/Input-xpad-add-Lenovo-Legion-Go-controllers.patch. +- Refresh patches.suse/Input-xpad-add-PXN-V900-support.patch. +- Refresh + patches.suse/Input-xpad-add-additional-HyperX-Controller-Identifi.patch. +- Refresh + patches.suse/Input-xpad-add-support-for-ASUS-ROG-RAIKIRI.patch. +- Refresh + patches.suse/Input-xpad-add-support-for-Snakebyte-GAMEPADs.patch. +- commit 15a1c29 + +------------------------------------------------------------------- +Mon Dec 2 14:26:37 CET 2024 - jack@suse.cz + +- jbd2: fix soft lockup in journal_finish_inode_data_buffers() + (bsc#1234046). +- commit f32d01d + +------------------------------------------------------------------- +Mon Dec 2 14:26:05 CET 2024 - jack@suse.cz + +- jbd2: correct the printing of write_flags in + jbd2_write_superblock() (bsc#1234045). +- commit fe6bf4e + +------------------------------------------------------------------- +Mon Dec 2 14:25:44 CET 2024 - jack@suse.cz + +- jbd2: fix potential data lost in recovering journal raced with + synchronizing fs bdev (bsc#1234044). +- commit 5fbdfed + +------------------------------------------------------------------- +Mon Dec 2 14:25:43 CET 2024 - vbabka@suse.cz + +- mm: convert free_transhuge_folio() to + folio_undo_large_rmappable() (CVE-2024-53079 bsc#1233570 + prerequisity). +- commit 4e7d9f6 + +------------------------------------------------------------------- +Mon Dec 2 14:22:23 CET 2024 - jack@suse.cz + +- jbd2: avoid memleak in jbd2_journal_write_metadata_buffer + (bsc#1234043). +- commit ffe100a + +------------------------------------------------------------------- +Mon Dec 2 14:21:38 CET 2024 - jack@suse.cz + +- jbd2: precompute number of transaction descriptor blocks + (bsc#1234042). +- commit 3ed7ebf + +------------------------------------------------------------------- +Mon Dec 2 14:20:57 CET 2024 - jack@suse.cz + +- jbd2: make jbd2_journal_get_max_txn_bufs() internal + (bsc#1234041). +- commit ad2f96f + +------------------------------------------------------------------- +Mon Dec 2 14:20:21 CET 2024 - jack@suse.cz + +- jbd2: avoid mount failed when commit block is partial submitted + (bsc#1234040). +- commit 7226fe5 + +------------------------------------------------------------------- +Mon Dec 2 14:19:05 CET 2024 - jack@suse.cz + +- jbd2: avoid infinite transaction commit loop (bsc#1234039). +- commit ad1118f + +------------------------------------------------------------------- +Mon Dec 2 14:07:12 CET 2024 - jack@suse.cz + +- ext4: fix unttached inode after power cut with orphan file + feature enabled (bsc#1234009). +- commit 3e057c0 + +------------------------------------------------------------------- +Mon Dec 2 13:08:10 CET 2024 - tbogendoerfer@suse.de + +- net: arc: fix the device for dma_map_single/dma_unmap_single + (CVE-2024-50295 bsc#1233484). +- net: vertexcom: mse102x: Fix possible double free of TX skb + (CVE-2024-50276 bsc#1233465). +- net: enetc: allocate vf_state during PF probes (CVE-2024-50298 + bsc#1233487). +- net: stmmac: TSO: Fix unbalanced DMA map/unmap for non-paged + SKB data (CVE-2024-53058 bsc#1233552). +- commit ae38000 + +------------------------------------------------------------------- +Mon Dec 2 12:40:06 CET 2024 - jroedel@suse.de + +- x86/CPU/AMD: Clear virtualized VMLOAD/VMSAVE on Zen4 client + (bsc#1233443). +- commit 5beba61 + +------------------------------------------------------------------- +Mon Dec 2 10:48:58 CET 2024 - nik.borisov@suse.com + +- x86: Increase brk randomness entropy for 64-bit systems (git-fixes). +- commit 7e88dd7 + +------------------------------------------------------------------- +Mon Dec 2 10:48:31 CET 2024 - nik.borisov@suse.com + +- x86/resctrl: Remove hard-coded memory bandwidth limit (git-fixes). +- Refresh patches.suse/x86-resctrl-Annotate-get_mem_config-functions-as-__init.patch. +- commit 6888d66 + +------------------------------------------------------------------- +Mon Dec 2 09:56:24 CET 2024 - vkarasulli@suse.de + +- Update + patches.suse/ASoC-dapm-fix-bounds-checker-error-in-dapm_widget_li.patch + (git-fixes CVE-2024-53045 bsc#1233524). +- Update + patches.suse/ASoC-stm32-spdifrx-fix-dma-channel-release-in-stm32_.patch + (git-fixes CVE-2024-50292 bsc#1233481). +- Update + patches.suse/HID-core-zero-initialize-the-report-buffer.patch + (git-fixes CVE-2024-50302 bsc#1233491). +- Update + patches.suse/USB-serial-io_edgeport-fix-use-after-free-in-debug-p.patch + (git-fixes CVE-2024-50267 bsc#1233456). +- Update patches.suse/can-bcm-Fix-UAF-in-bcm_proc_show.patch + (bsc#1012628 CVE-2023-52922 bsc#1233977). +- Update + patches.suse/drm-amdgpu-add-missing-size-check-in-amdgpu_debugfs_.patch + (stable-fixes CVE-2024-50282 bsc#1233471). +- Update + patches.suse/drm-amdgpu-fix-possible-UAF-in-amdgpu_cs_pass1.patch + (jsc#PED-3527 jsc#PED-5475 jsc#PED-6068 jsc#PED-6070 + jsc#PED-6116 jsc#PED-6120 jsc#PED-5065 jsc#PED-5477 jsc#PED-5511 + jsc#PED-6041 jsc#PED-6069 jsc#PED-6071 CVE-2023-52921 + bsc#1233452). +- Update + patches.suse/drm-amdgpu-prevent-NULL-pointer-dereference-if-ATIF-.patch + (git-fixes CVE-2024-53060 bsc#1233554). +- Update + patches.suse/firmware-arm_scmi-Fix-slab-use-after-free-in-scmi_bu.patch + (git-fixes CVE-2024-53068 bsc#1233561). +- Update + patches.suse/fs-Fix-uninitialized-value-issue-in-from_kuid-and-from_kgid.patch + (git-fixes CVE-2024-53101 bsc#1233769). +- Update + patches.suse/i40e-fix-race-condition-by-adding-filter-s-intermedi.patch + (git-fixes CVE-2024-53088 bsc#1233580). +- Update + patches.suse/iio-gts-helper-Fix-memory-leaks-for-the-error-path-o.patch + (git-fixes CVE-2024-53076 bsc#1233567). +- Update + patches.suse/io_uring-rw-fix-missing-NOWAIT-check-for-O_DIRECT-st.patch + (git-fixes CVE-2024-53052 bsc#1233548). +- Update + patches.suse/media-ar0521-don-t-overflow-when-checking-PLL-values.patch + (git-fixes CVE-2024-53081 bsc#1233572). +- Update + patches.suse/media-cx24116-prevent-overflows-on-SNR-calculus.patch + (git-fixes CVE-2024-50290 bsc#1233479). +- Update + patches.suse/media-dvbdev-prevent-the-risk-of-out-of-memory-acces.patch + (git-fixes CVE-2024-53063 bsc#1233557). +- Update + patches.suse/media-s5p-jpeg-prevent-buffer-overflows.patch + (git-fixes CVE-2024-53061 bsc#1233555). +- Update + patches.suse/media-v4l2-tpg-prevent-the-risk-of-a-division-by-zer.patch + (git-fixes CVE-2024-50287 bsc#1233476). +- Update + patches.suse/nfs-Fix-KMSAN-warning-in-decode_getfattr_attrs.patch + (git-fixes CVE-2024-53066 bsc#1233560). +- Update + patches.suse/ocfs2-remove-entry-once-instead-of-null-ptr-dereference-in-ocfs2_xa_remove.patch + (git-fixes CVE-2024-50265 bsc#1233454). +- Update + patches.suse/platform-x86-amd-pmc-Detect-when-STB-is-not-availabl.patch + (git-fixes CVE-2024-53072 bsc#1233564). +- Update + patches.suse/posix-clock-posix-clock-Fix-unbalanced-locking-in-pc.patch + (CVE-2024-50195 bsc#1233103 CVE-2024-50210 bsc#1233097). +- Update + patches.suse/scsi-wd33c93-Don-t-use-stale-scsi_pointer-value.patch + (git-fixes CVE-2024-50026 bsc#1231952). +- Update + patches.suse/security-keys-fix-slab-out-of-bounds-in-key_task_per.patch + (git-fixes CVE-2024-50301 bsc#1233490). +- Update + patches.suse/tpm-Lock-TPM-chip-in-tpm_pm_suspend-first.patch + (bsc#1082555 git-fixes CVE-2024-53085 bsc#1233577). +- Update + patches.suse/usb-musb-sunxi-Fix-accessing-an-released-usb-phy.patch + (git-fixes CVE-2024-50269 bsc#1233458). +- Update + patches.suse/usb-typec-fix-potential-out-of-bounds-in-ucsi_ccg_up.patch + (git-fixes CVE-2024-50268 bsc#1233457). +- Update + patches.suse/wifi-iwlwifi-mvm-Fix-response-handling-in-iwl_mvm_se.patch + (git-fixes CVE-2024-53059 bsc#1233553). +- Update + patches.suse/wifi-iwlwifi-mvm-don-t-leak-a-link-on-AP-removal.patch + (git-fixes CVE-2024-53074 bsc#1233566). +- commit 5a024cd + +------------------------------------------------------------------- +Mon Dec 2 09:42:05 CET 2024 - nik.borisov@suse.com + +- x86/tdx: Enable CPU topology enumeration (git-fixes). +- commit cf1674b + +------------------------------------------------------------------- +Mon Dec 2 09:41:44 CET 2024 - nik.borisov@suse.com + +- x86/tdx: Dynamically disable SEPT violations from causing #VEs (git-fixes). +- commit 29f8884 + +------------------------------------------------------------------- +Mon Dec 2 09:40:56 CET 2024 - nik.borisov@suse.com + +- x86/tdx: Rename tdx_parse_tdinfo() to tdx_setup() (git-fixes). +- commit a66f7df + +------------------------------------------------------------------- +Mon Dec 2 09:40:31 CET 2024 - nik.borisov@suse.com + +- x86/tdx: Introduce wrappers to read and write TD metadata (git-fixes). +- commit 182660e + +------------------------------------------------------------------- +Mon Dec 2 09:36:47 CET 2024 - nik.borisov@suse.com + +- x86/microcode/intel: Remove unnecessary cache writeback and invalidation (git-fixes). +- commit dc97c33 + +------------------------------------------------------------------- +Mon Dec 2 09:31:59 CET 2024 - nik.borisov@suse.com + +- x86/traps: move kmsan check after instrumentation_begin (git-fixes). +- commit 788cc4b + +------------------------------------------------------------------- +Mon Dec 2 09:30:48 CET 2024 - nik.borisov@suse.com + +- x86: fix off-by-one in access_ok() (git-fixes). +- commit ada1011 + +------------------------------------------------------------------- +Mon Dec 2 09:30:26 CET 2024 - nik.borisov@suse.com + +- x86/syscall: Avoid memcpy() for ia32 syscall_get_arguments() (git-fixes). +- commit a421b7f + +------------------------------------------------------------------- +Sun Dec 1 09:31:13 CET 2024 - tiwai@suse.de + +- tools/power turbostat: Fix trailing '\n' parsing (git-fixes). +- modpost: remove incorrect code in do_eisa_entry() (git-fixes). +- rtc: ab-eoz9: don't fail temperature reads on undervoltage + notification (git-fixes). +- rtc: rzn1: fix BCD to rtc_time conversion errors (git-fixes). +- rtc: check if __rtc_read_time was successful in + rtc_timer_do_work() (git-fixes). +- rtc: abx80x: Fix WDT bit position of the status register + (git-fixes). +- rtc: bbnsm: add remove hook (git-fixes). +- rtc: st-lpc: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- tty: ldsic: fix tty_ldisc_autoload sysctl's proc_handler + (git-fixes). +- serial: 8250: omap: Move pm_runtime_get_sync (git-fixes). +- commit 003de2e + +------------------------------------------------------------------- +Sat Nov 30 10:34:31 CET 2024 - tiwai@suse.de + +- USB: chaoskey: Fix possible deadlock chaoskey_list_lock + (git-fixes). +- commit bc5d0b3 + +------------------------------------------------------------------- +Sat Nov 30 10:33:34 CET 2024 - tiwai@suse.de + +- ALSA: hda: Show the codec quirk info at probing (stable-fixes). +- ALSA: hda/realtek: Set PCBeep to default value for ALC274 + (stable-fixes). +- ALSA: usb-audio: Fix out of bounds reads when finding clock + sources (stable-fixes). +- ALSA: pcm: Add sanity NULL check for the default mmap fault + handler (stable-fixes). +- commit 0da3d44 + +------------------------------------------------------------------- +Sat Nov 30 10:27:17 CET 2024 - tiwai@suse.de + +- drm/amd/display: Fix null check for pipe_ctx->plane_state in + hwss_setup_dpp (git-fixes). +- drm/amd/display: Fix null check for pipe_ctx->plane_state in + dcn20_program_pipe (git-fixes). +- drm/amd: Add some missing straps from NBIO 7.11.0 (git-fixes). +- ASoC: SOF: ipc3-topology: Convert the topology pin index to + ALH dai index (git-fixes). +- ASoC: amd: yc: Fix for enabling DMIC on acp6x via _DSD entry + (git-fixes). +- ALSA: ump: Fix evaluation of MIDI 1.0 FB info (git-fixes). +- ALSA: hda/realtek: Update ALC225 depop procedure (git-fixes). +- ALSA: usb-audio: Fix potential out-of-bound accesses for Extigy + and Mbox devices (git-fixes). +- ALSA: hda/realtek: Update ALC256 depop procedure (git-fixes). +- ALSA: ac97: bus: Fix the mistake in the comment (git-fixes). +- =?UTF-8?q?iio:=20accel:=20kxcjk-1013:=20Remove=20redundan?= + =?UTF-8?q?t=20I=C2=B2C=20ID?= (git-fixes). +- iio: Fix fwnode_handle in __fwnode_iio_channel_get_by_name() + (git-fixes). +- iio: accel: kx022a: Fix raw read format (git-fixes). +- iio: gts: fix infinite loop for gain_to_scaletables() + (git-fixes). +- iio: gts: Fix uninitialized symbol 'ret' (git-fixes). +- ad7780: fix division by zero in ad7780_write_raw() (git-fixes). +- iio: adc: ad7923: Fix buffer overflow for tx_buf and ring_xfer + (git-fixes). +- comedi: Flush partial mappings in error case (git-fixes). +- goldfish: Fix unused const variable 'goldfish_pipe_acpi_match' + (git-fixes). +- iio: adc: ad7606: Fix typo in the driver name (git-fixes). +- iio: light: al3010: Fix an error handling path in al3010_probe() + (git-fixes). +- misc: apds990x: Fix missing pm_runtime_disable() (git-fixes). +- firmware_loader: Fix possible resource leak in + fw_log_firmware_info() (git-fixes). +- usb: dwc3: gadget: Fix looping of queued SG entries (git-fixes). +- usb: dwc3: gadget: Fix checking for number of TRBs left + (git-fixes). +- Revert "usb: gadget: composite: fix OS descriptors w_value + logic" (git-fixes). +- usb: ehci-spear: fix call balance of sehci clk handling routines + (git-fixes). +- USB: serial: ftdi_sio: Fix atomicity violation in + get_serial_info() (git-fixes). +- usb: dwc3: gadget: Add missing check for single port RAM in + TxFIFO resizing logic (git-fixes). +- usb: musb: Fix hardware lockup on first Rx endpoint request + (git-fixes). +- usb: xhci: Fix TD invalidation under pending Set TR Dequeue + (git-fixes). +- USB: chaoskey: fail open after removal (git-fixes). +- usb: yurex: make waiting on yurex_write interruptible + (git-fixes). +- usb: using mutex lock and supporting O_NONBLOCK flag in + iowarrior_read() (git-fixes). +- apparmor: fix 'Do simple duplicate message elimination' + (git-fixes). +- apparmor: test: Fix memory leak for aa_unpack_strdup() + (git-fixes). +- apparmor: use kvfree_sensitive to free data->data (git-fixes). +- commit 875afee + +------------------------------------------------------------------- +Fri Nov 29 16:59:51 CET 2024 - nmorey@suse.com + +- RDMA/hns: Disassociate mmap pages for all uctx when HW is being reset (git-fixes) +- commit 41e9c5b + +------------------------------------------------------------------- +Fri Nov 29 16:27:58 CET 2024 - dfaggioli@suse.com + +- bpf, vsock: Drop static vsock_bpf_prot initialization (git-fixes). +- commit 939d649 + +------------------------------------------------------------------- +Fri Nov 29 16:26:26 CET 2024 - dfaggioli@suse.com + +- vsock: Update msg_count on read_skb() (git-fixes). +- commit fce5f41 + +------------------------------------------------------------------- +Fri Nov 29 16:23:46 CET 2024 - dfaggioli@suse.com + +- vsock: Update rx_bytes on read_skb() (git-fixes, bsc#1233320, + CVE-2024-50169). +- commit acfc5df + +------------------------------------------------------------------- +Fri Nov 29 16:19:13 CET 2024 - dfaggioli@suse.com + +- bpf, sockmap: SK_DROP on attempted redirects of unsupported af_vsock (git-fixes). +- commit 8db08f8 + +------------------------------------------------------------------- +Fri Nov 29 13:04:50 CET 2024 - mgorman@suse.de + +- mm: revert "mm: shmem: fix data-race in shmem_getattr()" + (CVE-2024-50228, bsc#1233204, git fixes (mm/shmem)). + CVE is likely a non-issue while the fix introduces real bugs. +- commit b77756a + +------------------------------------------------------------------- +Fri Nov 29 09:29:22 CET 2024 - tiwai@suse.de + +- Bluetooth: MGMT: Fix slab-use-after-free Read in + set_powered_sync (git-fixes). +- net: mdio-ipq4019: add missing error check (git-fixes). +- net: usb: lan78xx: Fix refcounting and autosuspend on invalid + WoL configuration (git-fixes). +- net: usb: lan78xx: Fix memory leak on device unplug by freeing + PHY device (git-fixes). +- net: usb: lan78xx: Fix double free issue with interrupt buffer + allocation (git-fixes). +- spi: Fix acpi deferred irq probe (git-fixes). +- spi: atmel-quadspi: Fix register name in verbose logging + function (git-fixes). +- power: supply: rt9471: Use IC status regfield to report real + charger status (git-fixes). +- power: supply: rt9471: Fix wrong WDT function regfield + declaration (git-fixes). +- power: supply: bq27xxx: Fix registers of bq27426 (git-fixes). +- power: supply: core: Remove might_sleep() from + power_supply_put() (git-fixes). +- commit 0e6f9cb + +------------------------------------------------------------------- +Thu Nov 28 23:22:45 CET 2024 - krisman@suse.de + +- pktgen: use cpus_read_lock() in pg_net_init() (bsc#1230558 + CVE-2024-46681). +- commit ad3c579 + +------------------------------------------------------------------- +Thu Nov 28 17:10:36 CET 2024 - dsterba@suse.com + +- posix-clock: posix-clock: Fix unbalanced locking in pc_clock_settime() (CVE-2024-50195 bsc#1233103) +- commit 6192694 + +------------------------------------------------------------------- +Thu Nov 28 16:33:22 CET 2024 - tiwai@suse.de + +- media: av7110: fix a spectre vulnerability (CVE-2024-50289 + bsc#1233478). +- commit 2969047 + +------------------------------------------------------------------- +Thu Nov 28 12:51:05 CET 2024 - tiwai@suse.de + +- Drop OCFS2 patch causing a regression (bsc#1233255) + Deleted: + patches.suse/ocfs2-fix-the-la-space-leak-when-unmounting-an-ocfs2-volume.patch +- commit 2a24fc4 + +------------------------------------------------------------------- +Thu Nov 28 10:35:25 CET 2024 - sjaeckel@suse.de + +- net: fix out-of-bounds access in ops_init (CVE-2024-36883 + bsc#1225725). +- commit f1b40e8 + +------------------------------------------------------------------- +Thu Nov 28 09:15:07 CET 2024 - tiwai@suse.de + +- efi/memattr: Ignore table if the size is clearly bogus + (bsc#1231465). +- commit c92a68e + +------------------------------------------------------------------- +Thu Nov 28 08:32:59 CET 2024 - tiwai@suse.de + +- thermal: int3400: Fix reading of current_uuid for active policy + (git-fixes). +- gpio: exar: set value when external pull-up or pull-down is + present (git-fixes). +- gpio: zevio: Add missed label initialisation (git-fixes). +- commit a62e144 + +------------------------------------------------------------------- +Thu Nov 28 08:30:58 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Apply quirk for Medion E15433 (bsc#1233298). +- commit 9a99613 + +------------------------------------------------------------------- +Wed Nov 27 17:49:09 CET 2024 - tbogendoerfer@suse.de + +- ice: fix crash on probe for DPLL enabled E810 LOM + (CVE-2024-53048 bsc#1233721). +- commit 5f7ca77 + +------------------------------------------------------------------- +Wed Nov 27 17:46:22 CET 2024 - nmorey@suse.com + +- Update references for patches.suse/RDMA-siw-Add-sendpage_ok-check-to-disable-MSG_SPLICE.patch (bsc#1233641 CVE-2024-53094) +- commit 1f528cf + +------------------------------------------------------------------- +Wed Nov 27 11:51:43 CET 2024 - osalvador@suse.de + +- mm/hugetlb: fix missing hugetlb_lock for resv uncharge + (bsc#1224548 CVE-2024-36000). +- commit 92c1bc7 + +------------------------------------------------------------------- +Wed Nov 27 11:50:37 CET 2024 - osalvador@suse.de + +- mm/huge_memory: don't unpoison huge_zero_folio (bsc#1227842 + CVE-2024-40914). +- commit 14bb799 + +------------------------------------------------------------------- +Wed Nov 27 11:30:16 CET 2024 - tbogendoerfer@suse.de + +- net: xfrm: preserve kabi for xfrm_state (bsc#1233754). +- idpf: avoid vport access in idpf_get_link_ksettings + (CVE-2024-50274 bsc#1233463). +- xfrm: Export symbol xfrm_dev_state_delete (bsc#1233754). +- xfrm: Fix unregister netdevice hang on hardware offload + (bsc#1233754). +- commit 8c4cfeb + +------------------------------------------------------------------- +Wed Nov 27 08:40:26 CET 2024 - tiwai@suse.de + +- hwmon: (tps23861) Fix reporting of negative temperatures + (git-fixes). +- i3c: master: svc: Fix pm_runtime_set_suspended() with runtime + pm enabled (git-fixes). +- i3c: master: Fix miss free init_dyn_addr at + i3c_master_put_i3c_addrs() (git-fixes). +- PCI: Fix reset_method_store() memory leak (git-fixes). +- PCI: rockchip-ep: Fix address translation unit programming + (git-fixes). +- PCI: keystone: Add link up check to ks_pcie_other_map_bus() + (git-fixes). +- PCI: keystone: Set mode as Root Complex for "ti,keystone-pcie" + compatible (git-fixes). +- PCI: endpoint: Clear secondary (not primary) EPC in + pci_epc_remove_epf() (git-fixes). +- commit 29a3aa9 + +------------------------------------------------------------------- +Tue Nov 26 18:06:28 CET 2024 - tiwai@suse.de + +- Move kabi netfilter fix into patches.kabi +- commit 6c82cf8 + +------------------------------------------------------------------- +Tue Nov 26 15:34:51 CET 2024 - farosas@suse.de + +- virtio_net: Add hash_key_length check (CVE-2024-53082 + bsc#1233573). +- commit 1273e47 + +------------------------------------------------------------------- +Tue Nov 26 13:40:37 CET 2024 - sjaeckel@suse.de + +- net: relax socket state check at accept time (git-fixes). +- netfilter: nf_tables: missing iterator type in lookup walk + (git-fixes). +- commit 180e959 + +------------------------------------------------------------------- +Tue Nov 26 13:36:06 CET 2024 - tbogendoerfer@suse.de + +- net: hns3: fix a deadlock problem when config TC during + resetting (CVE-2024-44995 bsc#1230231). +- commit e1fa968 + +------------------------------------------------------------------- +Tue Nov 26 13:11:16 CET 2024 - msuchanek@suse.de + +- KVM: PPC: Book3S HV: Avoid returning to nested hypervisor on + pending doorbells (bsc#1215199). +- KVM: PPC: Book3S HV: Stop using vc->dpdes for nested KVM guests + (bsc#1215199). +- Revert "KVM: PPC: Book3S HV Nested: Stop forwarding all HFUs + to L1" (bsc#1215199). +- commit d27c0c3 + +------------------------------------------------------------------- +Tue Nov 26 11:46:07 CET 2024 - tiwai@suse.de + +- mailbox: arm_mhuv2: clean up loop in get_irq_chan_comb() + (git-fixes). +- pinctrl: k210: Undef K210_PC_DEFAULT (git-fixes). +- pinctrl: qcom: spmi: fix debugfs drive strength (git-fixes). +- pinctrl: zynqmp: drop excess struct member description + (git-fixes). +- lib: string_helpers: silence snprintf() output truncation + warning (git-fixes). +- fbdev: sh7760fb: Fix a possible memory leak in + sh7760fb_alloc_mem() (git-fixes). +- Input: hycon-hy46xx - add missing dependency on REGMAP_I2C + (git-fixes). +- Input: hideep - add missing dependency on REGMAP_I2C + (git-fixes). +- commit 17f846a + +------------------------------------------------------------------- +Tue Nov 26 11:40:04 CET 2024 - msuchanek@suse.de + +- KVM: PPC: Book3S HV: remove unused varible (bsc#1194869). +- commit 932ea3b + +------------------------------------------------------------------- +Tue Nov 26 11:21:25 CET 2024 - sjaeckel@suse.de + +- netrom: fix possible dead-lock in nr_rt_ioctl() (CVE-2024-38589 + bsc#1226748). +- commit 0e7a285 + +------------------------------------------------------------------- +Tue Nov 26 11:02:02 CET 2024 - msuchanek@suse.de + +- tpm: Lock TPM chip in tpm_pm_suspend() first (bsc#1082555 + git-fixes). +- commit 4594f81 + +------------------------------------------------------------------- +Tue Nov 26 10:59:27 CET 2024 - sjaeckel@suse.de + +- kABI fix for netfilter: nft_set_pipapo: walk over current view + on netlink dump (CVE-2024-27017 bsc#1223733). +- commit 2be46c1 + +------------------------------------------------------------------- +Tue Nov 26 09:34:44 CET 2024 - vbabka@suse.cz + +- Update references for + patches.suse/mm-resolve-faulty-mmap_region-error-path-behaviour.patch + (git-fixes CVE-2024-53096 bsc#1233756). +- commit 6c0d091 + +------------------------------------------------------------------- +Tue Nov 26 09:11:53 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Enable speaker pins for Medion E15443 + platform (bsc#1233298). +- ALSA: hda/realtek: Fix Internal Speaker and Mic boost of + Infinix Y4 Max (bsc#1233298). +- commit dd8caae + +------------------------------------------------------------------- +Tue Nov 26 09:10:22 CET 2024 - tiwai@suse.de + +- Move upstreamed patches into sorted section +- commit b72de8f + +------------------------------------------------------------------- +Tue Nov 26 08:25:42 CET 2024 - vbabka@suse.cz + +- kabi, mm: refactor arch_calc_vm_flag_bits() and arm64 MTE + handling (git-fixes kabi). +- mm: refactor arch_calc_vm_flag_bits() and arm64 MTE handling + (git-fixes). +- commit f31b0e3 + +------------------------------------------------------------------- +Mon Nov 25 21:57:38 CET 2024 - vbabka@suse.cz + +- mm: resolve faulty mmap_region() error path behaviour + (git-fixes). +- commit 84c4dfc + +------------------------------------------------------------------- +Mon Nov 25 18:24:50 CET 2024 - vbabka@suse.cz + +- mm: refactor map_deny_write_exec() (git-fixes). +- commit 8c66a90 + +------------------------------------------------------------------- +Mon Nov 25 18:20:13 CET 2024 - vbabka@suse.cz + +- mm: unconditionally close VMAs on error (git-fixes). +- commit f81f7df + +------------------------------------------------------------------- +Mon Nov 25 18:17:22 CET 2024 - vbabka@suse.cz + +- mm: move dummy_vm_ops out of a header (git-fixes prerequisity). +- commit e1045c0 + +------------------------------------------------------------------- +Mon Nov 25 18:06:16 CET 2024 - vbabka@suse.cz + +- mm: avoid unsafe VMA hook invocation when error arises on mmap + hook (git-fixes). +- commit 2b96063 + +------------------------------------------------------------------- +Mon Nov 25 17:21:25 CET 2024 - tbogendoerfer@suse.de + +- fsl/fman: Fix refcount handling of fman-related devices + (CVE-2024-50166 bsc#1233050). +- fsl/fman: Save device references taken in mac_probe() + (CVE-2024-50166 bsc#1233050). +- commit cff0dea + +------------------------------------------------------------------- +Mon Nov 25 16:20:17 CET 2024 - sjaeckel@suse.de + +- tcp: Fix refcnt handling in __inet_hash_connect() (git-fixes). +- commit 2b4c1a0 + +------------------------------------------------------------------- +Mon Nov 25 14:01:51 CET 2024 - sjaeckel@suse.de + +- tipc: fix UAF in error path (CVE-2024-36886 bsc#1225730). +- commit be7d8d3 + +------------------------------------------------------------------- +Mon Nov 25 13:58:02 CET 2024 - sjaeckel@suse.de + +- ipv4: Fix uninit-value access in __ip_make_skb() (CVE-2024-36927 + bsc#1225813). +- commit 5457624 + +------------------------------------------------------------------- +Mon Nov 25 13:17:32 CET 2024 - mfranc@suse.cz + +- vsock/virtio: Initialization of the dangling pointer occurring + in vsk->trans (CVE-2024-50264 bsc#1233453). +- arm64/sve: Discard stale CPU state when handling SVE traps + (CVE-2024-50275 bsc#1233464). +- commit 2855c61 + +------------------------------------------------------------------- +Mon Nov 25 13:03:37 CET 2024 - sjaeckel@suse.de + +- tcp: defer shutdown(SEND_SHUTDOWN) for TCP_SYN_RECV sockets + (CVE-2024-36905 bsc#1225742). +- commit 84c8bd7 + +------------------------------------------------------------------- +Mon Nov 25 11:08:06 CET 2024 - nik.borisov@suse.com + +- kasan: move checks to do_strncpy_from_user (git-fixes). +- commit ca3142b + +------------------------------------------------------------------- +Mon Nov 25 10:56:40 CET 2024 - sjaeckel@suse.de + +- tipc: fix a possible memleak in tipc_buf_append (CVE-2024-36954 + bsc#1225764). +- commit b7093a9 + +------------------------------------------------------------------- +Mon Nov 25 10:53:25 CET 2024 - sjaeckel@suse.de + +- erspan: make sure erspan_base_hdr is present in skb->head + (CVE-2024-35888 bsc#1224518). +- commit aaa779d + +------------------------------------------------------------------- +Mon Nov 25 10:46:58 CET 2024 - sjaeckel@suse.de + +- net: esp: fix bad handling of pages from page_pool + (CVE-2024-26953 bsc#1223656). +- commit b0a65f5 + +------------------------------------------------------------------- +Mon Nov 25 10:45:00 CET 2024 - sjaeckel@suse.de + +- netfilter: nft_set_pipapo: walk over current view on netlink + dump (CVE-2024-27017 bsc#1223733). +- commit d1885c4 + +------------------------------------------------------------------- +Mon Nov 25 10:39:52 CET 2024 - sjaeckel@suse.de + +- dccp/tcp: Unhash sk from ehash for tb2 alloc failure after + check_estalblished() (CVE-2024-26741 bsc#1222587). +- commit 9a5ac8a + +------------------------------------------------------------------- +Sun Nov 24 21:31:48 CET 2024 - lduncan@suse.com + +- minmax: scsi: fix mis-use of 'clamp()' in sr.c (git-fixes). +- commit 46d200b + +------------------------------------------------------------------- +Sun Nov 24 18:09:35 CET 2024 - nmorey@suse.com + +- Fix warning in patches.suse/RDMA-mlx5-Move-events-notifier-registration-to-be-af.patch + Fixes: ff613dcf3cc9c8aa5b4cc959d0bdfac2dec81854 +- commit 56a258b + +------------------------------------------------------------------- +Sun Nov 24 09:49:00 CET 2024 - tiwai@suse.de + +- Move upstreamed crypto patches into sorted section +- commit 7706550 + +------------------------------------------------------------------- +Sun Nov 24 09:22:34 CET 2024 - tiwai@suse.de + +- maple_tree: refine mas_store_root() on storing NULL (git-fixes). +- maple_tree: fix alloc node fail issue (git-fixes). +- unicode: Fix utf8_load() error path (git-fixes). +- commit 7f4b1c4 + +------------------------------------------------------------------- +Sat Nov 23 16:38:17 CET 2024 - nmorey@suse.com + +- RDMA/mlx5: Move events notifier registration to be after device registration (git-fixes) +- commit ff613dc + +------------------------------------------------------------------- +Sat Nov 23 16:20:10 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix different dgids mapping to the same dip_idx (git-fixes) +- commit 482b364 + +------------------------------------------------------------------- +Sat Nov 23 16:19:30 CET 2024 - nmorey@suse.com + +- RDMA/hns: Use macro instead of magic number (git-fixes) +- commit d6d944a + +------------------------------------------------------------------- +Sat Nov 23 16:15:49 CET 2024 - nmorey@suse.com + +- RDMA/hns: Add mutex_destroy() (git-fixes) +- commit 096658f + +------------------------------------------------------------------- +Sat Nov 23 16:12:59 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix NULL pointer derefernce in hns_roce_map_mr_sg() (git-fixes) +- commit abdac11 + +------------------------------------------------------------------- +Sat Nov 23 16:12:49 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix out-of-order issue of requester when setting FENCE (git-fixes) +- commit a53ecd7 + +------------------------------------------------------------------- +Sat Nov 23 16:12:37 CET 2024 - nmorey@suse.com + +- RDMA/rxe: Set queue pair cur_qp_state when being queried (git-fixes) +- commit 74c369b + +------------------------------------------------------------------- +Sat Nov 23 16:12:28 CET 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Check cqe flags to know imm_data vs inv_irkey (git-fixes) +- commit 7a90d31 + +------------------------------------------------------------------- +Sat Nov 23 16:12:19 CET 2024 - nmorey@suse.com + +- RDMA/rxe: Fix the qp flush warnings in req (git-fixes) +- commit 678f36e + +------------------------------------------------------------------- +Sat Nov 23 16:12:04 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix cpu stuck caused by printings during reset (git-fixes) +- commit 0c19d33 + +------------------------------------------------------------------- +Sat Nov 23 16:11:49 CET 2024 - nmorey@suse.com + +- RDMA/hns: Use dev_* printings in hem code instead of ibdev_* (git-fixes) +- commit 21d3575 + +------------------------------------------------------------------- +Sat Nov 23 16:10:37 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix flush cqe error when racing with destroy qp (git-fixes) +- commit 4c3bddb + +------------------------------------------------------------------- +Sat Nov 23 16:07:39 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix an AEQE overflow error caused by untimely update of eq_db_ci (git-fixes) +- commit c0d9dba + +------------------------------------------------------------------- +Sat Nov 23 10:08:30 CET 2024 - tiwai@suse.de + +- cpufreq: CPPC: Fix wrong return value in cppc_get_cpu_power() + (git-fixes). +- cpufreq: CPPC: Fix wrong return value in cppc_get_cpu_cost() + (git-fixes). +- commit b53ff09 + +------------------------------------------------------------------- +Sat Nov 23 10:06:44 CET 2024 - tiwai@suse.de + +- cpufreq: mediatek-hw: Fix wrong return value in + mtk_cpufreq_get_cpu_power() (git-fixes). +- cpufreq: CPPC: Fix possible null-ptr-deref for + cppc_get_cpu_cost() (git-fixes). +- cpufreq: CPPC: Fix possible null-ptr-deref for + cpufreq_cpu_get_raw() (git-fixes). +- Revert "cpufreq: brcmstb-avs-cpufreq: Fix initial command check" + (stable-fixes). +- cpufreq: loongson2: Unregister platform_driver on failure + (git-fixes). +- mtd: rawnand: atmel: Fix possible memory leak (git-fixes). +- mtd: spi-nor: core: replace dummy buswidth from addr to data + (git-fixes). +- clk: qcom: clk-alpha-pll: fix lucid 5lpe pll enabled check + (git-fixes). +- clk: qcom: clk-alpha-pll: drop lucid-evo pll enabled warning + (git-fixes). +- clk: qcom: gcc-qcs404: fix initial rate of GPLL3 (git-fixes). +- clk: clk-axi-clkgen: make sure to enable the AXI bus clock + (git-fixes). +- clk: sunxi-ng: d1: Fix PLL_AUDIO0 preset (git-fixes). +- clk: imx: clk-scu: fix clk enable state save and restore + (git-fixes). +- clk: imx: fracn-gppll: fix pll power up (git-fixes). +- clk: imx: fracn-gppll: correct PLL initialization flow + (git-fixes). +- clk: imx: lpcg-scu: SW workaround for errata (e10858) + (git-fixes). +- clk: renesas: rzg2l: Fix FOUTPOSTDIV clk (git-fixes). +- clk: clk-apple-nco: Add NULL check in applnco_probe (git-fixes). +- leds: lp55xx: Remove redundant test for invalid channel number + (git-fixes). +- mfd: rt5033: Fix missing regmap_del_irq_chip() (git-fixes). +- mfd: tps65010: Use IRQF_NO_AUTOEN flag in request_irq() to + fix race (git-fixes). +- drm/amd: Fix initialization mistake for NBIO 7.7.0 + (stable-fixes). +- drm/amd/display: Adjust VSDB parser for replay feature + (stable-fixes). +- media: dvbdev: fix the logic when DVB_DYNAMIC_MINORS is not set + (stable-fixes). +- commit 15015b2 + +------------------------------------------------------------------- +Sat Nov 23 00:12:11 CET 2024 - lduncan@suse.com + +- scsi: cdrom: kABI: fix cdrom_dev_ops change (git-fixes). +- commit ab3e426 + +------------------------------------------------------------------- +Fri Nov 22 18:38:31 CET 2024 - davide.benini@suse.com + +- netfilter: Fix use-after-free in get_info() (CVE-2024-50257 + bsc#1233244). +- commit 1f00653 + +------------------------------------------------------------------- +Fri Nov 22 11:08:31 CET 2024 - tiwai@suse.de + +- ALSA: usb-audio: Make mic volume workarounds globally applicable + (stable-fixes). +- Refresh + patches.suse/ALSA-usb-audio-Add-quirk-for-HP-320-FHD-Webcam.patch. +- commit 777a5df + +------------------------------------------------------------------- +Fri Nov 22 10:59:49 CET 2024 - tiwai@suse.de + +- drm/vc4: Match drm_dev_enter and exit calls in vc4_hvs_lut_load + (git-fixes). +- ALSA: hda: Poll jack events for LS7A HD-Audio (stable-fixes). +- ALSA: usb-audio: Add Pioneer DJ/AlphaTheta DJM-A9 Mixer + (stable-fixes). +- ALSA: usb-audio: Use snprintf instead of sprintf in + build_mixer_unit_ctl (stable-fixes). +- ALSA: ice1712: Remove redundant code in stac9460_dac_vol_put + (stable-fixes). +- commit e772374 + +------------------------------------------------------------------- +Fri Nov 22 10:51:41 CET 2024 - tiwai@suse.de + +- drm/amdkfd: Fix wrong usage of INIT_WORK() (git-fixes). +- drm/panfrost: Add missing OPP table refcnt decremental + (git-fixes). +- drm: use ATOMIC64_INIT() for atomic64_t (git-fixes). +- drm/vkms: Drop unnecessary call to drm_crtc_cleanup() + (git-fixes). +- drm/etnaviv: hold GPU lock across perfmon sampling (git-fixes). +- drm/etnaviv: Request pages from DMA32 zone on addressing_limited + (git-fixes). +- drm/amd/display: Fix brightness level not retained over reboot + (git-fixes). +- drm/msm/dpu: cast crtc_clk calculation to u64 in + _dpu_core_perf_calc_clk() (git-fixes). +- drm/mediatek: Fix child node refcount handling in early exit + (git-fixes). +- drm/msm/gpu: Check the status of registration to PM QoS + (git-fixes). +- drm/msm/adreno: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- drm/msm: Fix some typos in comment (git-fixes). +- drm/msm/dpu: drop LM_3 / LM_4 on MSM8998 (git-fixes). +- drm/msm/dpu: drop LM_3 / LM_4 on SDM845 (git-fixes). +- drm/msm/dpu: on SDM845 move DSPP_3 to LM_5 block (git-fixes). +- drm: xlnx: zynqmp_dpsub: fix hotplug detection (git-fixes). +- drm: zynqmp_kms: Unplug DRM device before removal (git-fixes). +- drm/nouveau/gr/gf100: Fix missing unlock in gf100_gr_chan_new() + (git-fixes). +- drm/panfrost: Remove unused id_mask from struct panfrost_model + (git-fixes). +- drm/amdgpu: Fix JPEG v4.0.3 register write (git-fixes). +- drm/bridge: tc358767: Fix link properties discovery (git-fixes). +- drm/vc4: Match drm_dev_enter and exit calls in + vc4_hvs_atomic_flush (git-fixes). +- drm/bridge: it6505: Drop EDID cache on bridge power off + (git-fixes). +- drm/bridge: anx7625: Drop EDID cache on bridge power off + (git-fixes). +- drm/v3d: Address race-condition in MMU flush (git-fixes). +- drm/sti: avoid potential dereference of error pointers + (git-fixes). +- drm/sti: avoid potential dereference of error pointers in + sti_gdp_atomic_check (git-fixes). +- drm/sti: avoid potential dereference of error pointers in + sti_hqvdp_atomic_check (git-fixes). +- drm/imx/ipuv3: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- drm/imx/dcss: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- drm/omap: Fix locking in omap_gem_new_dmabuf() (git-fixes). +- drm/omap: Fix possible NULL dereference (git-fixes). +- drm/vc4: hvs: Correct logic on stopping an HVS channel + (git-fixes). +- drm/vc4: hvs: Remove incorrect limit from hvs_dlist debugfs + function (git-fixes). +- drm/vc4: hvs: Fix dlist debug not resetting the next entry + pointer (git-fixes). +- drm/vc4: hdmi: Avoid hang with debug registers when suspended + (git-fixes). +- drm/vc4: hvs: Don't write gamma luts on 2711 (git-fixes). +- drm/mm: Mark drm_mm_interval_tree*() functions with + __maybe_unused (git-fixes). +- ASoC: codecs: Fix atomicity violation in + snd_soc_component_get_drvdata() (git-fixes). +- ASoC: rt722-sdca: Remove logically deadcode in rt722-sdca.c + (git-fixes). +- ASoC: fsl_micfil: fix regmap_write_bits usage (git-fixes). +- ALSA: 6fire: Release resources at card release (git-fixes). +- ALSA: caiaq: Use snd_card_free_when_closed() at disconnection + (git-fixes). +- ALSA: us122l: Use snd_card_free_when_closed() at disconnection + (git-fixes). +- ALSA: usx2y: Use snd_card_free_when_closed() at disconnection + (git-fixes). +- Bluetooth: fix use-after-free in device_for_each_child() + (git-fixes). +- wifi: brcmfmac: release 'root' node in all execution paths + (git-fixes). +- wifi: cw1200: Fix potential NULL dereference (git-fixes). +- wifi: wfx: Fix error handling in wfx_core_init() (git-fixes). +- wifi: ath12k: fix warning when unbinding (git-fixes). +- wifi: ath12k: fix crash when unbinding (git-fixes). +- wifi: ath12k: remove msdu_end structure for WCN7850 (git-fixes). +- wifi: ath11k: Fix CE offset address calculation for WCN6750 + in SSR (git-fixes). +- wifi: ath12k: Skip Rx TID cleanup for self peer (git-fixes). +- wifi: ath10k: fix invalid VHT parameters in + supported_vht_mcs_rate_nss2 (git-fixes). +- wifi: ath10k: fix invalid VHT parameters in + supported_vht_mcs_rate_nss1 (git-fixes). +- wifi: ath9k: add range check for conn_rsp_epid in + htc_connect_service() (git-fixes). +- wifi: mwifiex: Fix memcpy() field-spanning write warning in + mwifiex_config_scan() (git-fixes). +- wifi: mwifiex: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- wifi: p54: Use IRQF_NO_AUTOEN flag in request_irq() (git-fixes). +- commit c54011d + +------------------------------------------------------------------- +Fri Nov 22 01:02:40 CET 2024 - lduncan@suse.com + +- scsi: kABI: restore no_start_on_resume to scsi_device + (git-fixes). +- scsi: sd_zbc: Use kvzalloc() to allocate REPORT ZONES buffer + (git-fixes). +- scsi: mpi3mr: Validate SAS port assignments (git-fixes). +- scsi: scsi_transport_fc: Allow setting rport state to current + state (git-fixes). +- scsi: wd33c93: Don't use stale scsi_pointer value (git-fixes). +- scsi: pm8001: Do not overwrite PCI queue mapping (git-fixes). +- scsi: smartpqi: correct stream detection (git-fixes). +- scsi: NCR5380: Initialize buffer for MSG IN and STATUS transfers + (git-fixes). +- scsi: NCR5380: Check for phase match during PDMA fixup + (git-fixes). +- scsi: mac_scsi: Disallow bus errors during PDMA send + (git-fixes). +- scsi: mac_scsi: Refactor polling loop (git-fixes). +- scsi: mac_scsi: Revise printk(KERN_DEBUG ...) messages + (git-fixes). +- scsi: smartpqi: revert + propagate-the-multipath-failure-to-SML-quickly (git-fixes). +- scsi: aacraid: Rearrange order of struct aac_srb_unit + (git-fixes). +- scsi: sd: Ignore command SYNCHRONIZE CACHE error if format in + progress (git-fixes). +- scsi: core: Fix the return value of scsi_logical_block_count() + (git-fixes). +- scsi: mpt3sas: Avoid IOMMU page faults on REPORT ZONES + (git-fixes). +- scsi: mpi3mr: Avoid IOMMU page faults on REPORT ZONES + (git-fixes). +- scsi: pm80xx: Set phy->enable_completion only when we wait + for it (git-fixes). +- scsi: libsas: Fix exp-attached device scan after probe failure + scanned in again after probe failed (git-fixes). +- scsi: mpi3mr: Fix ATA NCQ priority support (git-fixes). +- scsi: core: Disable CDL by default (git-fixes). +- scsi: core: Handle devices which return an unusually large + VPD page count (git-fixes). +- scsi: qedf: Set qed_slowpath_params to zero before use + (git-fixes). +- scsi: sr: Fix unintentional arithmetic wraparound (git-fixes). +- scsi: core: alua: I/O errors for ALUA state transitions + (git-fixes). +- scsi: hpsa: Fix allocation size for Scsi_Host private data + (git-fixes). +- scsi: libsas: Fix the failure of adding phy with zero-address + to port (git-fixes). +- scsi: mpi3mr: Avoid possible run-time warning with long + manufacturer strings (git-fixes). +- scsi: core: Fix handling of SCMD_FAIL_IF_RECOVERING (git-fixes). +- scsi: hisi_sas: Handle the NCQ error returned by D2H frame + (git-fixes). +- scsi: mpi3mr: Avoid memcpy field-spanning write WARNING + (git-fixes). +- scsi: spi: Fix sshdr use (git-fixes). +- scsi: Remove scsi device no_start_on_resume flag (git-fixes). +- commit d5d37f8 + +------------------------------------------------------------------- +Thu Nov 21 08:11:24 CET 2024 - tiwai@suse.de + +- soc: fsl: rcpm: fix missing of_node_put() in + copy_ippdexpcr1_setting() (git-fixes). +- firmware: arm_scpi: Check the DVFS OPP count returned by the + firmware (git-fixes). +- soc: ti: smartreflex: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- soc: qcom: geni-se: fix array underflow in geni_se_clk_tbl_get() + (git-fixes). +- drivers: soc: xilinx: add the missing kfree in + xlnx_add_cb_for_suspend() (git-fixes). +- efi/libstub: Free correct pointer on failure (git-fixes). +- tpm: fix signed/unsigned bug when checking event logs + (git-fixes). +- efi/libstub: fix efi_parse_options() ignoring the default + command line (git-fixes). +- platform/x86: panasonic-laptop: Return errno correctly in show + callback (git-fixes). +- media: uvcvideo: Skip parsing frames of type UVC_VS_UNDEFINED + in uvc_parse_format (git-fixes). +- media: platform: exynos4-is: Fix an OF node reference leak in + fimc_md_is_isp_available (git-fixes). +- media: atomisp: Add check for rgby_data memory allocation + failure (git-fixes). +- media: gspca: ov534-ov772x: Fix off-by-one error in + set_frame_rate() (git-fixes). +- media: venus: Fix pm_runtime_set_suspended() with runtime pm + enabled (git-fixes). +- media: amphion: Fix pm_runtime_set_suspended() with runtime + pm enabled (git-fixes). +- media: i2c: dw9768: Fix pm_runtime_set_suspended() with runtime + pm enabled (git-fixes). +- media: mantis: remove orphan mantis_core.h (git-fixes). +- media: vb2: Fix comment (git-fixes). +- media: uvcvideo: Stop stream during unregister (git-fixes). +- media: ts2020: fix null-ptr-deref in ts2020_probe() (git-fixes). +- media: platform: allegro-dvt: Fix possible memory leak in + allocate_buffers_internal() (git-fixes). +- media: i2c: tc358743: Fix crash in the probe error path when + using polling (git-fixes). +- media: wl128x: Fix atomicity violation in fmc_send_cmd() + (git-fixes). +- media: imx-jpeg: Ensure power suppliers be suspended before + detach them (git-fixes). +- media: amphion: Set video drvdata before register video device + (git-fixes). +- media: imx-jpeg: Set video drvdata before register video device + (git-fixes). +- media: mtk-jpeg: Fix null-ptr-deref during unload module + (git-fixes). +- media: uvcvideo: Require entities to have a non-zero unique ID + (git-fixes). +- HID: wacom: Interpret tilt data from Intuos Pro BT as signed + values (git-fixes). +- mmc: mmc_spi: drop buggy snprintf() (git-fixes). +- =?UTF-8?q?spi:=20zynqmp-gqspi:=20Undo=20runtime=20PM=20ch?= + =?UTF-8?q?anges=20at=20driver=20exit=20time=E2=80=8B?= + (git-fixes). +- spi: tegra210-quad: Avoid shift-out-of-bounds (git-fixes). +- regmap: irq: Set lockdep class for hierarchical IRQ domains + (git-fixes). +- Documentation: kgdb: Correct parameter error (git-fixes). +- efi/libstub: zboot.lds: Discard .discard sections + (stable-fixes). +- commit fbb8e93 + +------------------------------------------------------------------- +Wed Nov 20 08:53:46 CET 2024 - tiwai@suse.de + +- doc: rcu: update printed dynticks counter bits (git-fixes). +- hwmon: (nct6775-core) Fix overflows seen when writing limit + attributes (git-fixes). +- ACPI: CPPC: Fix _CPC register setting issue (git-fixes). +- thermal: core: Initialize thermal zones before registering them + (git-fixes). +- amd-pstate: Set min_perf to nominal_perf for active mode + performance gov (git-fixes). +- crypto: cavium - Fix an error handling path in + cpt_ucode_load_fw() (git-fixes). +- crypto: bcm - add error check in the ahash_hmac_init function + (git-fixes). +- crypto: caam - add error check to caam_rsa_set_priv_key_form + (git-fixes). +- crypto: inside-secure - Fix the return value of + safexcel_xcbcmac_cra_init() (git-fixes). +- crypto: cavium - Fix the if condition to exit loop after timeout + (git-fixes). +- crypto: x86/aegis128 - access 32-bit arguments as 32-bit + (git-fixes). +- crypto: pcrypt - Call crypto layer directly when + padata_do_parallel() return -EBUSY (git-fixes). +- crypto: qat - remove faulty arbiter config reset (git-fixes). +- crypto: qat/qat_4xxx - fix off by one in uof_get_name() + (git-fixes). +- crypto: qat - remove check after debugfs_create_dir() + (git-fixes). +- crypto: caam - Fix the pointer passed to caam_qi_shutdown() + (git-fixes). +- firmware: google: Unregister driver_info on failure (git-fixes). +- platform/chrome: cros_ec_typec: fix missing fwnode reference + decrement (git-fixes). +- acpi/arm64: Adjust error handling procedure in + gtdt_parse_timer_block() (git-fixes). +- commit af7e948 + +------------------------------------------------------------------- +Tue Nov 19 15:57:33 CET 2024 - fdmanana@suse.com + +- btrfs: reinitialize delayed ref list after deleting it from + the list (bsc#1233462 CVE-2024-50273). +- commit 174bbc2 + +------------------------------------------------------------------- +Mon Nov 18 16:26:54 CET 2024 - msuchanek@suse.de + +- kernel-binary: Enable livepatch package only when livepatch is enabled + Otherwise the filelist may be empty failing the build (bsc#1218644). +- commit f730eec + +------------------------------------------------------------------- +Mon Nov 18 16:01:38 CET 2024 - msuchanek@suse.de + +- Update config files (bsc#1218644). + LIVEPATCH_IPA_CLONES=n => LIVEPATCH=n +- commit cabd446 + +------------------------------------------------------------------- +Mon Nov 18 12:57:29 CET 2024 - tiwai@suse.de + +- ASoC: audio-graph-card2: Purge absent supplies for device tree + nodes (stable-fixes). +- ALSA: hda/realtek: fix mute/micmute LEDs for a HP EliteBook + 645 G10 (stable-fixes). +- ALSA: hda/realtek - Fixed Clevo platform headset Mic issue + (stable-fixes). +- ALSA: usb-audio: Fix Yamaha P-125 Quirk Entry (stable-fixes). +- commit 03ba04a + +------------------------------------------------------------------- +Mon Nov 18 12:55:46 CET 2024 - tiwai@suse.de + +- drm/amdgpu: fix check in gmc_v9_0_get_vm_pte() (git-fixes). +- drm/bridge: tc358768: Fix DSI command tx (git-fixes). +- nouveau/dp: handle retries for AUX CH transfers with GSP + (git-fixes). +- nouveau: handle EBUSY and EAGAIN for GSP aux errors (git-fixes). +- nouveau: fw: sync dma after setup is called (git-fixes). +- drm/rockchip: vop: Fix a dereferenced before check warning + (git-fixes). +- Revert "mmc: dw_mmc: Fix IDMAC operation with pages bigger + than 4K" (git-fixes). +- mmc: sunxi-mmc: Fix A100 compatible description (git-fixes). +- ALSA: hda/realtek - update set GPIO3 to default for Thinkpad + with ALC1318 (git-fixes). +- ASoC: fsl_micfil: Add sample rate constraint (stable-fixes). +- ASoC: rt722-sdca: increase clk_stop_timeout to fix clock stop + issue (stable-fixes). +- ASoC: amd: yc: Fix non-functional mic on ASUS E1404FA + (stable-fixes). +- ASoC: amd: yc: Add quirk for ASUS Vivobook S15 M3502RA + (stable-fixes). +- net: usb: qmi_wwan: add Fibocom FG132 0x0112 composition + (stable-fixes). +- net: wwan: fix global oob in wwan_rtnl_policy (git-fixes). +- HID: lenovo: Add support for Thinkpad X1 Tablet Gen 3 keyboard + (stable-fixes). +- HID: multitouch: Add quirk for Logitech Bolt receiver w/ + Casa touchpad (stable-fixes). +- drm/vmwgfx: Limit display layout ioctl array size to + VMWGFX_NUM_DISPLAY_UNITS (stable-fixes). +- drm/amdkfd: Accounting pdd vram_usage for svm (stable-fixes). +- crypto: api - Fix liveliness check in crypto_alg_tested + (stable-fixes). +- HID: multitouch: Add quirk for HONOR MagicBook Art 14 touchpad + (stable-fixes). +- HID: multitouch: Add support for B2402FVA track point + (stable-fixes). +- commit 42778ee + +------------------------------------------------------------------- +Mon Nov 18 10:12:01 CET 2024 - ailiop@suse.com + +- ocfs2: uncache inode which has failed entering the group + (git-fixes). +- commit 4caa305 + +------------------------------------------------------------------- +Mon Nov 18 10:09:43 CET 2024 - ailiop@suse.com + +- ocfs2: fix UBSAN warning in ocfs2_verify_volume() (git-fixes). +- commit fe96ee2 + +------------------------------------------------------------------- +Mon Nov 18 10:08:42 CET 2024 - ailiop@suse.com + +- ocfs2: remove entry once instead of null-ptr-dereference in + ocfs2_xa_remove() (git-fixes). +- commit 7a347a0 + +------------------------------------------------------------------- +Mon Nov 18 10:01:48 CET 2024 - ailiop@suse.com + +- fs: Fix uninitialized value issue in from_kuid and from_kgid + (git-fixes). +- commit 46de67d + +------------------------------------------------------------------- +Mon Nov 18 09:28:56 CET 2024 - nmorey@suse.com + +- Revert "RDMA/core: Fix ENODEV error for iWARP test over vlan" (git-fixes) +- commit 89dc95f + +------------------------------------------------------------------- +Mon Nov 18 09:28:29 CET 2024 - nmorey@suse.com + +- RDMA/siw: Add sendpage_ok() check to disable MSG_SPLICE_PAGES (git-fixes) +- commit 1e78f0f + +------------------------------------------------------------------- +Sat Nov 16 14:28:26 CET 2024 - mfranc@suse.cz + +- Bluetooth: ISO: Fix UAF on iso_sock_timeout (CVE-2024-50124 + bsc#1232926). +- commit 25f5727 + +------------------------------------------------------------------- +Fri Nov 15 21:26:02 CET 2024 - trenn@suse.com + +- tools/power turbostat: Increase the limit for fd opened + (bsc#1233119). +- commit 58c7a4f + +------------------------------------------------------------------- +Fri Nov 15 19:36:25 CET 2024 - dsterba@suse.com + +- posix-clock: Fix missing timespec64 check in pc_clock_settime() (CVE-2024-50195 bsc#1233103) +- commit 5c410cf + +------------------------------------------------------------------- +Fri Nov 15 19:22:13 CET 2024 - dsterba@suse.com + +- bpf: Use raw_spinlock_t in ringbuf (CVE-2024-50138 bsc#1232935) +- commit 949411a + +------------------------------------------------------------------- +Fri Nov 15 19:15:20 CET 2024 - dsterba@suse.com + +- net: systemport: fix potential memory leak in bcm_sysport_xmit() (CVE-2024-50171 bsc#1233057) +- commit 24f9c7b + +------------------------------------------------------------------- +Fri Nov 15 13:23:36 CET 2024 - msuchanek@suse.de + +- crypto: aes-gcm-p10 - Use the correct bit to test for P10 + (bsc#1232704). +- commit 52eb6a0 + +------------------------------------------------------------------- +Fri Nov 15 12:09:15 CET 2024 - ohering@suse.de + +- add bugreference to a hv_netvsc patch (bsc#1232413). +- commit 14b76c0 + +------------------------------------------------------------------- +Fri Nov 15 10:37:05 CET 2024 - mfranc@suse.cz + +- scsi: target: core: Fix null-ptr-deref in target_alloc_device() + (CVE-2024-50153 bsc#1233061). +- commit 76e65bc + +------------------------------------------------------------------- +Fri Nov 15 10:32:59 CET 2024 - mfranc@suse.cz + +- octeon_ep: Add SKB allocation failures handling in + __octep_oq_process_rx() (CVE-2024-50145 bsc#1233044). +- octeon_ep: Implement helper for iterating packets in Rx queue + (CVE-2024-50145 bsc#1233044). +- commit 6b574c1 + +------------------------------------------------------------------- +Fri Nov 15 10:30:49 CET 2024 - sjaeckel@suse.de + +- Fix for kABI fix for Bluetooth: L2CAP: Fix + div-by-zero in l2cap_le_flowctl_init() (CVE-2024-36968 bsc#1226130). + The chosen position of `mtu` in the `struct hci_conn` in the first + iteration of this patch was done based on the wrong version of the header + and therefore on the wrong position. Correct that. + Fixes: d93ac77c0df4b8dfe469c26e60d4fb45fc305341 +- commit 77fc56a + +------------------------------------------------------------------- +Fri Nov 15 10:15:49 CET 2024 - mfranc@suse.cz + +- net: wwan: fix global oob in wwan_rtnl_policy (CVE-2024-50128 + bsc#1232905). +- commit c939671 + +------------------------------------------------------------------- +Fri Nov 15 10:12:23 CET 2024 - mfranc@suse.cz + +- xfrm: fix one more kernel-infoleak in algo dumping + (CVE-2024-50110 bsc#1232885). +- commit 2ae0e01 + +------------------------------------------------------------------- +Fri Nov 15 10:04:59 CET 2024 - mfranc@suse.cz + +- scsi: ufs: core: Set SDEV_OFFLINE when UFS is shut down + (CVE-2024-50098 bsc#1232881). +- commit f344a8e + +------------------------------------------------------------------- +Fri Nov 15 09:56:09 CET 2024 - mfranc@suse.cz + +- Update + patches.suse/thermal-intel-int340x-processor-Fix-warning-during-m.patch + (git-fixes bsc#1232877 CVE-2024-50093). +- commit 6ec2cb2 + +------------------------------------------------------------------- +Fri Nov 15 09:52:21 CET 2024 - tiwai@suse.de + +- Bluetooth: btintel: Direct exception event to bluetooth stack + (git-fixes). +- Bluetooth: hci_core: Fix calling mgmt_device_connected + (git-fixes). +- USB: serial: qcserial: add support for Sierra Wireless EM86xx + (stable-fixes). +- USB: serial: option: add Quectel RG650V (stable-fixes). +- USB: serial: option: add Fibocom FG132 0x0112 composition + (stable-fixes). +- tools/lib/thermal: Fix sampling handler context ptr (git-fixes). +- drm/amdgpu: add missing size check in + amdgpu_debugfs_gprwave_read() (stable-fixes). +- drm/amdgpu: Adjust debugfs eviction and IB access permissions + (stable-fixes). +- drm/amdgpu: Adjust debugfs register access permissions + (stable-fixes). +- drm/amdgpu: prevent NULL pointer dereference if ATIF is not + supported (git-fixes). +- net: phy: ti: add PHY_RST_AFTER_CLK_EN flag (git-fixes). +- net: wwan: t7xx: Fix off-by-one error in + t7xx_dpmaif_rx_buf_alloc() (git-fixes). +- net: phy: dp83822: Fix reset pin definitions (git-fixes). +- commit 48ec995 + +------------------------------------------------------------------- +Fri Nov 15 09:41:23 CET 2024 - tiwai@suse.de + +- Delete patches.suse/wifi-mac80211-fix-RCU-list-iterations.patch + It was reverted on 6.6.x stable +- commit e2ead50 + +------------------------------------------------------------------- +Fri Nov 15 09:37:00 CET 2024 - mfranc@suse.cz + +- net: explicitly clear the sk pointer, when pf->create fails + (CVE-2024-50186 bsc#1233110). +- commit dfaff4b + +------------------------------------------------------------------- +Fri Nov 15 09:00:18 CET 2024 - mfranc@suse.cz + +- secretmem: disable memfd_secret() if arch cannot set direct map + (CVE-2024-50182 bsc#1233129). +- commit 0d23f21 + +------------------------------------------------------------------- +Fri Nov 15 08:24:28 CET 2024 - jslaby@suse.cz + +- Update + patches.suse/ACPI-CPPC-Make-rmw_lock-a-raw_spin_lock.patch + (git-fixes CVE-2024-50249 bsc#1233197). +- Update + patches.suse/ACPI-PRM-Find-EFI_MEMORY_RUNTIME-block-for-PRM-handl.patch + (git-fixes CVE-2024-50141 bsc#1233065). +- Update + patches.suse/ALSA-firewire-lib-Avoid-division-by-zero-in-apply_co.patch + (git-fixes CVE-2024-50205 bsc#1233293). +- Update + patches.suse/ALSA-hda-cs8409-Fix-possible-NULL-dereference.patch + (git-fixes CVE-2024-50160 bsc#1233074). +- Update + patches.suse/ASoC-qcom-Fix-NULL-Dereference-in-asoc_qcom_lpass_cp.patch + (git-fixes CVE-2024-50103 bsc#1232878). +- Update + patches.suse/Bluetooth-bnep-fix-wild-memory-access-in-proto_unreg.patch + (git-fixes CVE-2024-50148 bsc#1233063). +- Update + patches.suse/Bluetooth-hci-fix-null-ptr-deref-in-hci_read_support.patch + (git-fixes CVE-2024-50255 bsc#1233238). +- Update + patches.suse/HID-amd_sfh-Switch-to-device-managed-dmam_alloc_cohe.patch + (git-fixes CVE-2024-50189 bsc#1233105). +- Update + patches.suse/RDMA-bnxt_re-Add-a-check-for-memory-allocation.patch + (git-fixes CVE-2024-50209 bsc#1233114). +- Update + patches.suse/RDMA-bnxt_re-Avoid-CPU-lockups-due-fifo-occupancy-ch.patch + (git-fixes CVE-2024-50157 bsc#1233032). +- Update + patches.suse/RDMA-bnxt_re-Fix-a-bug-while-setting-up-Level-2-PBL-.patch + (git-fixes CVE-2024-50208 bsc#1233117). +- Update + patches.suse/RDMA-bnxt_re-Fix-a-possible-memory-leak.patch + (git-fixes CVE-2024-50172 bsc#1233029). +- Update patches.suse/RDMA-bnxt_re-Fix-out-of-bound-check.patch + (git-fixes CVE-2024-50158 bsc#1233036). +- Update + patches.suse/RDMA-mad-Improve-handling-of-timed-out-WRs-of-mad-ag.patch + (git-fixes CVE-2024-50095 bsc#1232873). +- Update + patches.suse/USB-gadget-dummy-hcd-Fix-task-hung-problem.patch + (git-fixes CVE-2024-50100 bsc#1232876). +- Update + patches.suse/arm64-probes-Fix-uprobes-for-big-endian-kernels.patch + (git-fixes CVE-2024-50194 bsc#1233111). +- Update + patches.suse/arm64-probes-Remove-broken-LDR-literal-uprobe-support.patch + (git-fixes CVE-2024-50099 bsc#1232887). +- Update + patches.suse/ceph-remove-the-incorrect-Fw-reference-check-when-dir.patch + (bsc#1231182 CVE-2024-50179 bsc#1233123). +- Update + patches.suse/clk-imx-Remove-CLK_SET_PARENT_GATE-for-DRAM-mux-for-.patch + (stable-fixes CVE-2024-50181 bsc#1233127). +- Update + patches.suse/drm-amd-Guard-against-bad-data-for-ATIF-ACPI-method.patch + (git-fixes CVE-2024-50117 bsc#1232897). +- Update + patches.suse/drm-amd-display-Disable-PSR-SU-on-Parade-08-01-TCON-.patch + (stable-fixes CVE-2024-50108 bsc#1232884). +- Update + patches.suse/drm-amd-pm-Vangogh-Fix-kernel-memory-out-of-bounds-w.patch + (git-fixes CVE-2024-50221 bsc#1233185). +- Update + patches.suse/drm-msm-Avoid-NULL-dereference-in-msm_disp_state_pri.patch + (git-fixes CVE-2024-50156 bsc#1233073). +- Update patches.suse/drm-radeon-Fix-encoder-possible_clones.patch + (git-fixes CVE-2024-50201 bsc#1233104). +- Update + patches.suse/drm-vboxvideo-Replace-fake-VLA-at-end-of-vbva_mouse_.patch + (stable-fixes CVE-2024-50134 bsc#1232890). +- Update + patches.suse/drm-vc4-Stop-the-active-perfmon-before-being-destroy.patch + (git-fixes CVE-2024-50187 bsc#1233108). +- Update + patches.suse/ext4-fix-slab-use-after-free-in-ext4_split_extent_at.patch + (bsc#1232201 CVE-2024-49884 bsc#1232198). +- Update patches.suse/fbdev-sisfb-Fix-strbuf-array-overflow.patch + (stable-fixes CVE-2024-50180 bsc#1233125). +- Update + patches.suse/firmware-arm_scmi-Fix-the-double-free-in-scmi_debugf.patch + (git-fixes CVE-2024-50159 bsc#1233041). +- Update + patches.suse/iio-adc-ad7124-fix-division-by-zero-in-ad7124_set_ch.patch + (git-fixes CVE-2024-50232 bsc#1233209). +- Update + patches.suse/iio-gts-helper-Fix-memory-leaks-in-iio_gts_build_ava.patch + (git-fixes CVE-2024-50231 bsc#1233208). +- Update + patches.suse/iio-light-veml6030-fix-IIO-device-retrieval-from-emb.patch + (git-fixes CVE-2024-50198 bsc#1233100). +- Update + patches.suse/iommu-vt-d-Fix-incorrect-pci_for_each_dma_alias-for-.patch + (git-fixes CVE-2024-50101 bsc#1232869). +- Update + patches.suse/maple_tree-correct-tree-corruption-on-spanning-store.patch + (git-fixes CVE-2024-50200 bsc#1233088). +- Update + patches.suse/media-qcom-camss-Remove-use_count-guard-in-stop_stre.patch + (git-fixes CVE-2024-50175 bsc#1233092). +- Update + patches.suse/net-mlx5-Fix-command-bitmask-initialization.patch + (git-fixes CVE-2024-50147 bsc#1233067). +- Update + patches.suse/net-mlx5-Unregister-notifier-on-eswitch-init-failure.patch + (git-fixes CVE-2024-50136 bsc#1232914). +- Update + patches.suse/net-mlx5e-Don-t-call-cleanup-on-profile-rollback-fai.patch + (git-fixes CVE-2024-50146 bsc#1233056). +- Update + patches.suse/net-phy-dp83869-fix-memory-corruption-when-enabling-.patch + (git-fixes CVE-2024-50188 bsc#1233107). +- Update + patches.suse/netdevsim-use-cond_resched-in-nsim_dev_trap_report_w.patch + (git-fixes CVE-2024-50155 bsc#1233035). +- Update + patches.suse/nfsd-cancel-nfsd_shrinker_work-using-sync-mode-in-nf.patch + (git-fixes CVE-2024-50121 bsc#1232925). +- Update + patches.suse/nilfs2-fix-kernel-bug-due-to-missing-clearing-of-buffer-delay-flag.patch + (git-fixes CVE-2024-50116 bsc#1232892). +- Update + patches.suse/nilfs2-fix-potential-deadlock-with-newly-created-symlinks.patch + (git-fixes CVE-2024-50229 bsc#1233205). +- Update + patches.suse/nouveau-dmem-Fix-vulnerability-in-migrate_to_ram-upo.patch + (git-fixes CVE-2024-50096 bsc#1232870). +- Update + patches.suse/nvme-pci-fix-race-condition-between-reset-and-nvme_d.patch + (git-fixes CVE-2024-50135 bsc#1232888). +- Update + patches.suse/nvmet-auth-assign-dh_key-to-NULL-after-kfree_sensiti.patch + (git-fixes CVE-2024-50215 bsc#1233189). +- Update + patches.suse/ocfs2-pass-u64-to-ocfs2_truncate_inline-maybe-overflow.patch + (git-fixes CVE-2024-50218 bsc#1233191). +- Update + patches.suse/phy-qcom-qmp-usb-fix-NULL-deref-on-runtime-suspend.patch + (git-fixes CVE-2024-50240 bsc#1233217). +- Update + patches.suse/pinctrl-ocelot-fix-system-hang-on-level-based-interr.patch + (stable-fixes CVE-2024-50196 bsc#1233113). +- Update + patches.suse/remoteproc-k3-r5-Fix-error-handling-when-power-up-fa.patch + (git-fixes CVE-2024-50176 bsc#1233091). +- Update + patches.suse/scsi-lpfc-Ensure-DA_ID-handling-completion-before-de.patch + (bsc#1232757 CVE-2024-50183 bsc#1233130). +- Update + patches.suse/spi-spi-fsl-dspi-Fix-crash-when-not-using-GPIO-chip-.patch + (git-fixes CVE-2024-50224 bsc#1233188). +- Update + patches.suse/staging-iio-frequency-ad9832-fix-division-by-zero-in.patch + (git-fixes CVE-2024-50233 bsc#1233210). +- Update + patches.suse/thermal-intel-int340x-processor-Fix-warning-during-m.patch + (git-fixes CVE-2024-50093 bsc#1232877). +- Update + patches.suse/tracing-Consider-the-NULL-character-when-validating-the-event-length.patch + (git-fixes CVE-2024-50131 bsc#1232896). +- Update + patches.suse/tracing-timerlat-Drop-interface_lock-in-stop_kthread.patch + (git-fixes CVE-2024-49976 bsc#1232103). +- Update + patches.suse/tracing-timerlat-Only-clear-timer-if-a-kthread-exists.patch + (git-fixes CVE-2024-46845 bsc#1231076). +- Update + patches.suse/unicode-Don-t-special-case-ignorable-code-points.patch + (stable-fixes CVE-2024-50089 bsc#1232860). +- Update + patches.suse/uprobe-avoid-out-of-bounds-memory-access-of-fetching-args.patch + (git-fixes CVE-2024-50067 bsc#1232416). +- Update + patches.suse/uprobes-fix-kernel-info-leak-via-uprobes-vma.patch + (bsc#1231114 CVE-2024-46828 CVE-2024-49975 bsc#1232104). +- Update + patches.suse/usb-typec-altmode-should-keep-reference-to-parent.patch + (git-fixes CVE-2024-50150 bsc#1233051). +- Update + patches.suse/wifi-ath10k-Fix-memory-leak-in-management-tx.patch + (git-fixes CVE-2024-50236 bsc#1233212). +- Update + patches.suse/wifi-cfg80211-clear-wdev-cqm_config-pointer-on-free.patch + (git-fixes CVE-2024-50235 bsc#1233176). +- Update + patches.suse/wifi-iwlegacy-Clear-stale-interrupts-before-resuming.patch + (stable-fixes CVE-2024-50234 bsc#1233211). +- Update + patches.suse/wifi-mac80211-do-not-pass-a-stopped-vif-to-the-drive.patch + (git-fixes CVE-2024-50237 bsc#1233216). +- Update + patches.suse/x86-fix-user-address-masking-non-canonical-speculation-iss.patch + (git-fixes CVE-2024-50102 bsc#1232880). +- Update + patches.suse/xfs-fix-finding-a-last-resort-AG-in-xfs_filestream_pick_ag.patch + (git-fixes CVE-2024-50216 bsc#1233179). +- commit 7d67ea3 + +------------------------------------------------------------------- +Thu Nov 14 21:41:24 CET 2024 - dsterba@suse.com + +- btrfs: fix error propagation of split bios (CVE-2024-50225 bsc#1233193) +- commit ec9c552 + +------------------------------------------------------------------- +Thu Nov 14 21:40:24 CET 2024 - dsterba@suse.com + +- btrfs: merge btrfs_orig_bbio_end_io() into btrfs_bio_end_io() (bsc#1233193) +- commit b9564da + +------------------------------------------------------------------- +Thu Nov 14 21:32:27 CET 2024 - dsterba@suse.com + +- Update references in patches.suse/ntfs3-Add-bounds-checking-to-mi_enum_attr.patch (CVE-2024-50248 bsc#1233219 bsc#1233207) +- commit 56e1d55 + +------------------------------------------------------------------- +Thu Nov 14 21:29:07 CET 2024 - dsterba@suse.com + +- fs/ntfs3: Sequential field availability check in mi_enum_attr() (bsc#1233207) +- commit 95663e2 + +------------------------------------------------------------------- +Thu Nov 14 21:23:01 CET 2024 - dsterba@suse.com + +- fs/ntfs3: Add rough attr alloc_size check (CVE-2024-50246 bsc#1233207) +- commit 378df6a + +------------------------------------------------------------------- +Thu Nov 14 21:21:37 CET 2024 - dsterba@suse.com + +- ntfs3: Add bounds checking to mi_enum_attr() (bsc#1233207) +- commit 418f82a + +------------------------------------------------------------------- +Thu Nov 14 21:20:35 CET 2024 - dsterba@suse.com + +- fs/ntfs3: Fixed overflow check in mi_enum_attr() (bsc#1233207) +- commit 6744037 + +------------------------------------------------------------------- +Thu Nov 14 21:19:03 CET 2024 - dsterba@suse.com + +- fs/ntfs3: Add more attributes checks in mi_enum_attr() (bsc#1233207) +- commit 766ca6e + +------------------------------------------------------------------- +Thu Nov 14 19:53:46 CET 2024 - dsterba@suse.com + +- fs/ntfs3: Fix possible deadlock in mi_read (CVE-2024-50245 bsc#1233203) +- commit 5f9c2da + +------------------------------------------------------------------- +Thu Nov 14 16:57:13 CET 2024 - sjaeckel@suse.de + +- Rename to + patches.kabi/kABI-fix-for-Bluetooth-L2CAP-Fix-div-by-zero-in-l2ca.patch. + Fixes: d93ac77c0df4b8dfe469c26e60d4fb45fc305341 +- commit 1f6a42b + +------------------------------------------------------------------- +Thu Nov 14 16:43:15 CET 2024 - jgross@suse.com + +- virtio_pmem: Check device status before requesting flush + (CVE-2024-50184 bsc#1233135). +- commit 4e28ae6 + +------------------------------------------------------------------- +Thu Nov 14 16:25:22 CET 2024 - jgross@suse.com + +- KVM: SEV-ES: Fix svm_get_msr()/svm_set_msr() for KVM_SEV_ES_INIT + guests (bsc#1232207). +- commit 4b9eff5 + +------------------------------------------------------------------- +Thu Nov 14 13:49:22 CET 2024 - jgross@suse.com + +- KVM: SEV-ES: Prevent MSR access post VMSA encryption + (bsc#1232207). +- commit 61f28ae + +------------------------------------------------------------------- +Thu Nov 14 13:34:42 CET 2024 - ptesarik@suse.com + +- u64_stats: fix u64_stats_init() for lockdep when used repeatedly + in one file (git-fixes). +- commit 017d59a + +------------------------------------------------------------------- +Thu Nov 14 12:11:06 CET 2024 - sjaeckel@suse.de + +- tcp/dccp: Don't use timer_pending() in reqsk_queue_unlink() + (CVE-2024-50154 bsc#1233070). +- commit 43fc2d5 + +------------------------------------------------------------------- +Thu Nov 14 10:16:35 CET 2024 - shung-hsi.yu@suse.com + +- Refresh patches.kabi/bpf-verifier-kABI-workarounds.patch (bsc#1233350) + Correctly workaround kABI breakage that was introduced with fixes + backported for bsc#1225903. +- commit 52684a5 + +------------------------------------------------------------------- +Thu Nov 14 08:19:25 CET 2024 - tiwai@suse.de + +- ASoC: SOF: ipc4-topology: Only handle dai_config with HW_PARAMS + for ChainDMA (bsc#1233305). +- commit 1b06409 + +------------------------------------------------------------------- +Wed Nov 13 20:54:32 CET 2024 - krisman@suse.de + +- io_uring/rw: fix missing NOWAIT check for O_DIRECT start write + (git-fixes). +- io_uring/sqpoll: close race on waiting for sqring entries + (git-fixes). +- commit 83eaece + +------------------------------------------------------------------- +Wed Nov 13 12:35:24 CET 2024 - mgorman@suse.de + +- mm: shmem: fix data-race in shmem_getattr() (CVE-2024-50228, + bsc#1233204, git fixes (mm/shmem)). +- commit 89c94b7 + +------------------------------------------------------------------- +Wed Nov 13 12:09:35 CET 2024 - jslaby@suse.cz + +- irqchip/gic-v4: Correctly deal with set_affinity on + lazily-mapped VPEs (CVE-2024-50192 bsc#1233106). +- commit 4258dbe + +------------------------------------------------------------------- +Wed Nov 13 12:06:59 CET 2024 - jslaby@suse.cz + +- irqchip/gic-v4: Don't allow a VMOVP on a dying VPE + (CVE-2024-50192 bsc#1233106). +- kABI: Don't allow a VMOVP on a dying VPE (kabi CVE-2024-50192 + bsc#1233106). +- irqchip/gic-v3-its: Avoid explicit cpumask allocation on stack + (git-fixes). +- commit 9bd7834 + +------------------------------------------------------------------- +Wed Nov 13 11:40:39 CET 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: add stack access precision test (bsc#1232823 + CVE-2023-52920). +- bpf: support non-r10 register spill/fill to/from stack in + precision tracking (bsc#1232823 CVE-2023-52920). +- Refresh patches.suse/bpf-Fix-accesses-to-uninit-stack-slots.patch +- Refresh patches.kabi/bpf-verifier-kABI-workarounds.patch +- commit 2dc84ae + +------------------------------------------------------------------- +Wed Nov 13 11:22:43 CET 2024 - sjaeckel@suse.de + +- kABI fix for - Bluetooth: L2CAP: Fix + div-by-zero in l2cap_le_flowctl_init() + (CVE-2024-36968 bsc#1226130). - Refresh + patches.suse/Bluetooth-Ignore-too-large-handle-values-in-BIG.patch. +- Refresh + patches.suse/Bluetooth-L2CAP-Fix-deadlock.patch. - Refresh + patches.suse/Bluetooth-btnxpuart-Enable-Power-Save-feature-on-sta.patch. +- Refresh + patches.suse/bluetooth-hci-disallow-setting-handle-bigger-than-HC.patch. +- Refresh + patches.suse/bluetooth-l2cap-sync-sock-recv-cb-and-release.patch. +- commit d93ac77 + +------------------------------------------------------------------- +Wed Nov 13 10:58:33 CET 2024 - tbogendoerfer@suse.de + +- macsec: Fix use-after-free while sending the offloading packet + (CVE-2024-50261 bsc#1233253). +- commit 493a21e + +------------------------------------------------------------------- +Wed Nov 13 10:11:01 CET 2024 - tiwai@suse.de + +- kABI workaround for ASoC SOF (bsc#1233305). +- commit d8b041e + +------------------------------------------------------------------- +Wed Nov 13 09:25:20 CET 2024 - tiwai@suse.de + +- ASoC: SOF: ipc4-topology: Add definition for generic switch/enum + control (bsc#1233305). +- Refresh + patches.suse/ASoC-SOF-ipc4-topology-Correct-data-structures-for-t-e238b68.patch. +- commit 6d4ee28 + +------------------------------------------------------------------- +Wed Nov 13 09:22:31 CET 2024 - tiwai@suse.de + +- ASoC: SOF: topology: Parse DAI type token for dspless mode + (bsc#1233305). +- ASoC: SOF: topology: dynamically allocate and store DAI + widget->private (bsc#1233305). +- ASoC: SOF: ipc4-topology: change chain_dma handling in + dai_config (bsc#1233305). +- ASoC: SOF: ipc4-topology: set config_length based on + device_count (bsc#1233305). +- ASoC: SOF: Rename amd_bt sof_dai_type (bsc#1233305). +- ASoC: SOF: Add i2s bt dai configuration support for AMD + platforms (bsc#1233305). +- ASoC: SOF: Refactor sof_i2s_tokens reading to update acpbt dai + (bsc#1233305). +- ASoC: SOF: IPC4: synchronize fw_config_params with fw + definitions (bsc#1233305). +- ASoC: SOF: Wire up buffer flags (bsc#1233305). +- ASoC: SOF: add alignment for topology header file struct + definition (bsc#1233305). +- ASoC: SOF: align topology header file with sof topology header + (bsc#1233305). +- ASoC: SOF: ipc4-topology: Add module ID print during module + set up (bsc#1233305). +- ASoC: SOF: ipc4: Add data struct for module notification + message from firmware (bsc#1233305). +- ASoC: SOF: ipc4-topology: Helper to find an swidget by + module/instance id (bsc#1233305). +- ASoC: SOF: Add support for configuring PDM interface from + topology (bsc#1233305). +- ASoC: SOF: IPC4: get pipeline priority from topology + (bsc#1233305). +- ASoC: SOF: ipc4-mtrace: move debug slot related definitions + to header.h (bsc#1233305). +- ASoC: SOF: ipc4-control: Add support for ALSA enum control + (bsc#1233305). +- ASoC: SOF: ipc4-control: Add support for ALSA switch control + (bsc#1233305). +- ASoC: SOF: ipc4-topology: export + sof_ipc4_copier_is_single_format (bsc#1233305). +- ASoC: SOF: ipc4: Add new message type: + SOF_IPC4_GLB_LOAD_LIBRARY_PREPARE (bsc#1233305). +- ASoC: SOF: ipc4-topology: Add deep buffer size to debug prints + (bsc#1233305). +- ASoC: SOF: Deprecate invalid enums in IPC3 (bsc#1233305). +- commit ccbfc43 + +------------------------------------------------------------------- +Wed Nov 13 08:39:39 CET 2024 - tiwai@suse.de + +- ima: fix buffer overrun in ima_eventdigest_init_common + (git-fixes). +- commit 200c852 + +------------------------------------------------------------------- +Tue Nov 12 19:04:54 CET 2024 - vkarasulli@suse.de + +- KVM: arm64: Fix shift-out-of-bounds bug (CVE-2024-50139 + bsc#1233062). +- commit dc4add6 + +------------------------------------------------------------------- +Tue Nov 12 18:22:43 CET 2024 - vkarasulli@suse.de + +- KVM: nSVM: Ignore nCR3[4:0] when loading PDPTEs from memory + (CVE-2024-50115 bsc#1232919). +- commit b8f7c4d + +------------------------------------------------------------------- +Tue Nov 12 17:48:16 CET 2024 - sjaeckel@suse.de + +- Bluetooth: L2CAP: Fix div-by-zero in l2cap_le_flowctl_init() + (CVE-2024-36968 bsc#1226130). +- Refresh + patches.suse/Bluetooth-Ignore-too-large-handle-values-in-BIG.patch. +- Refresh patches.suse/Bluetooth-L2CAP-Fix-deadlock.patch. +- Refresh + patches.suse/Bluetooth-btnxpuart-Enable-Power-Save-feature-on-sta.patch. +- Refresh + patches.suse/bluetooth-hci-disallow-setting-handle-bigger-than-HC.patch. +- Refresh + patches.suse/bluetooth-l2cap-sync-sock-recv-cb-and-release.patch. +- commit c95a285 + +------------------------------------------------------------------- +Tue Nov 12 17:47:56 CET 2024 - sjaeckel@suse.de + +- net: sched: fix use-after-free in taprio_change() + (CVE-2024-50127 bsc#1232907). +- commit 8d80c7f + +------------------------------------------------------------------- +Tue Nov 12 17:08:29 CET 2024 - rgoldwyn@suse.com + +- fsdax: dax_unshare_iter needs to copy entire blocks + (bsc#1233226, CVE-2024-50250). +- fsdax: remove zeroing code from dax_unshare_iter (bsc#1233226, + CVE-2024-50250). +- commit 94457ab + +------------------------------------------------------------------- +Tue Nov 12 12:43:07 CET 2024 - ailiop@suse.com + +- nilfs2: fix kernel bug due to missing clearing of checked flag + (bsc#1233206 CVE-2024-50230). +- commit ba9ac5c + +------------------------------------------------------------------- +Tue Nov 12 10:10:29 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check null pointers before used (bsc#1232371 CVE-2024-49921) +- commit 3bf6629 + +------------------------------------------------------------------- +Mon Nov 11 22:33:32 CET 2024 - tbogendoerfer@suse.de + +- net/ncsi: Disable the ncsi work before freeing the associated + structure (CVE-2024-49945 bsc#1232165). +- commit 75d875c + +------------------------------------------------------------------- +Mon Nov 11 22:09:30 CET 2024 - tbogendoerfer@suse.de + +- e1000e: Remove Meteor Lake SMBUS workarounds (git-fixes). +- i40e: fix race condition by adding filter's intermediate sync + state (git-fixes). +- commit f4e661d + +------------------------------------------------------------------- +Mon Nov 11 12:19:25 CET 2024 - jack@suse.cz + +- Revert "mm/writeback: fix possible divide-by-zero in + wb_dirty_limits(), again" (CVE-2024-42102 bsc#1233132). +- commit 696592c + +------------------------------------------------------------------- +Mon Nov 11 08:59:20 CET 2024 - tiwai@suse.de + +- i2c: designware: do not hold SCL low when I2C_DYNAMIC_TAR_UPDATE + is not set (git-fixes). +- USB: serial: io_edgeport: fix use after free in debug printk + (git-fixes). +- usb: typec: fix potential out of bounds in + ucsi_ccg_update_set_new_cam_cmd() (git-fixes). +- usb: musb: sunxi: Fix accessing an released usb phy (git-fixes). +- commit d16f490 + +------------------------------------------------------------------- +Sat Nov 9 15:13:51 CET 2024 - tiwai@suse.de + +- ASoC: stm: Prevent potential division by zero in + stm32_sai_get_clk_div() (stable-fixes). +- ASoC: stm: Prevent potential division by zero in + stm32_sai_mclk_round_rate() (stable-fixes). +- ASoC: amd: yc: Support dmic on another model of Lenovo Thinkpad + E14 Gen 6 (stable-fixes). +- ASoC: amd: yc: fix internal mic on Xiaomi Book Pro 14 2022 + (stable-fixes). +- ASoC: tas2781: Add new driver version for tas2563 & tas2781 + qfn chip (stable-fixes). +- commit 1f9992e + +------------------------------------------------------------------- +Sat Nov 9 15:11:22 CET 2024 - tiwai@suse.de + +- drm/amdgpu: Fix DPX valid mode check on GC 9.4.3 (git-fixes). +- ASoC: SOF: sof-client-probes-ipc4: Set param_size extension bits + (git-fixes). +- ASoC: stm32: spdifrx: fix dma channel release in + stm32_spdifrx_remove (git-fixes). +- ALSA: firewire-lib: fix return value on fail in + amdtp_tscm_init() (git-fixes). +- media: pulse8-cec: fix data timestamp at pulse8_setup() + (git-fixes). +- media: stb0899_algo: initialize cfr before using it (git-fixes). +- media: adv7604: prevent underflow condition when reporting + colorspace (git-fixes). +- media: cx24116: prevent overflows on SNR calculus (git-fixes). +- media: ar0521: don't overflow when checking PLL values + (git-fixes). +- media: s5p-jpeg: prevent buffer overflows (git-fixes). +- media: dvb_frontend: don't play tricks with underflow values + (git-fixes). +- media: dvbdev: prevent the risk of out of memory access + (git-fixes). +- media: v4l2-tpg: prevent the risk of a division by zero + (git-fixes). +- media: v4l2-ctrls-api: fix error handling for v4l2_g_ctrl() + (git-fixes). +- thunderbolt: Honor TMU requirements in the domain when setting + TMU mode (stable-fixes). +- wifi: iwlegacy: Clear stale interrupts before resuming device + (stable-fixes). +- USB: gadget: dummy-hcd: Fix "task hung" problem (git-fixes). +- usb: gadget: dummy_hcd: execute hrtimer callback in softirq + context (git-fixes). +- usb: gadget: dummy_hcd: Set transfer interval to 1 microframe + (stable-fixes). +- usb: gadget: dummy_hcd: Switch to hrtimer transfer scheduler + (stable-fixes). +- commit c5281d0 + +------------------------------------------------------------------- +Sat Nov 9 14:11:38 CET 2024 - ailiop@suse.com + +- nfs: avoid i_lock contention in nfs_clear_invalid_mapping + (git-fixes). +- commit e6016a1 + +------------------------------------------------------------------- +Sat Nov 9 14:10:27 CET 2024 - ailiop@suse.com + +- nfs: Fix KMSAN warning in decode_getfattr_attrs() (git-fixes). +- commit 9358249 + +------------------------------------------------------------------- +Sat Nov 9 14:03:29 CET 2024 - ailiop@suse.com + +- NFS: remove revoked delegation from server's delegation list + (git-fixes). +- commit 6feb8eb + +------------------------------------------------------------------- +Sat Nov 9 14:01:26 CET 2024 - ailiop@suse.com + +- SUNRPC: Remove BUG_ON call sites (git-fixes). +- commit 5969339 + +------------------------------------------------------------------- +Sat Nov 9 14:00:34 CET 2024 - ailiop@suse.com + +- nilfs2: fix potential deadlock with newly created symlinks + (git-fixes). +- commit 002996c + +------------------------------------------------------------------- +Fri Nov 8 18:47:54 CET 2024 - ggherdovich@suse.cz + +- cpufreq: amd-pstate: add check for cpufreq_cpu_get's return + value (CVE-2024-50009 bsc#1232318). +- commit 15f7e86 + +------------------------------------------------------------------- +Fri Nov 8 12:41:05 CET 2024 - jack@suse.cz + +- ext4: fix error message when rejecting the default hash + (bsc#1232264 CVE-2024-49968). +- commit 5d137c7 + +------------------------------------------------------------------- +Fri Nov 8 11:48:14 CET 2024 - ggherdovich@suse.cz + +- sched/deadline: Fix task_struct reference leak (CVE-2024-41023 + bsc#1228430). +- commit 3a83981 + +------------------------------------------------------------------- +Fri Nov 8 10:45:27 CET 2024 - tbogendoerfer@suse.de + +- be2net: fix potential memory leak in be_xmit() (CVE-2024-50167 + bsc#1233049). +- commit 376f8c7 + +------------------------------------------------------------------- +Fri Nov 8 09:33:54 CET 2024 - tiwai@suse.de + +- can: mcp251xfd: mcp251xfd_get_tef_len(): fix length calculation + (git-fixes). +- can: mcp251xfd: mcp251xfd_ring_alloc(): fix coalescing + configuration when switching CAN modes (git-fixes). +- can: c_can: fix {rx,tx}_errors statistics (git-fixes). +- pwm: imx-tpm: Use correct MODULO value for EPWM mode + (git-fixes). +- commit c5fa961 + +------------------------------------------------------------------- +Thu Nov 7 22:19:18 CET 2024 - dsterba@suse.com + +- blk-rq-qos: fix crash on rq_qos_wait vs. rq_qos_wake_function race (CVE-2024-50082 bsc#1232500) +- commit 6a67bac + +------------------------------------------------------------------- +Thu Nov 7 22:06:48 CET 2024 - dsterba@suse.com + +- btrfs: fix uninitialized pointer free on read_alloc_one_name() error (CVE-2024-50087 bsc#1232499) +- commit a3c097a + +------------------------------------------------------------------- +Thu Nov 7 22:05:16 CET 2024 - dsterba@suse.com + +- btrfs: fix uninitialized pointer free in add_inode_ref() (CVE-2024-50088 bsc#1232498) +- commit 75b1127 + +------------------------------------------------------------------- +Thu Nov 7 22:01:46 CET 2024 - dsterba@suse.com + +- net: microchip: vcap api: Fix memory leaks in vcap_api_encode_rule_test() (CVE-2024-50084 bsc#1232494) +- commit e53e21a + +------------------------------------------------------------------- +Thu Nov 7 21:41:14 CET 2024 - dsterba@suse.com + +- drm/amd/display: fix double free issue during amdgpu module unload (CVE-2024-49989 bsc#1232483) +- commit 6511376 + +------------------------------------------------------------------- +Thu Nov 7 21:10:20 CET 2024 - dsterba@suse.com + +- drm/amd/display: update DML2 policy EnhancedPrefetchScheduleAccelerationFinal DCN35 (CVE-2024-50004 bsc#1232396) +- commit d5739f8 + +------------------------------------------------------------------- +Thu Nov 7 20:56:46 CET 2024 - dsterba@suse.com + +- drm/amd/display: Fix system hang while resume with TBT monitor (CVE-2024-50003 bsc#1232385) +- commit 24ceb7a + +------------------------------------------------------------------- +Thu Nov 7 17:02:21 CET 2024 - tiwai@suse.de + +- thermal: intel: int340x: processor: Fix warning during module + unload (git-fixes). +- commit 2c3d870 + +------------------------------------------------------------------- +Thu Nov 7 15:40:50 CET 2024 - sjaeckel@suse.de + +- mptcp: fix double-free on socket dismantle (CVE-2024-26782 + bsc#1222590). +- mptcp: deal with large GSO size (CVE-2023-52778 bsc#1224948). +- commit 86ee052 + +------------------------------------------------------------------- +Thu Nov 7 14:25:16 CET 2024 - mgorman@suse.de + +- Merge branch 'SUSE-2024' (4ab5f0e9752a) into 'SUSE-2024-RT' +- No -rt specific changes this merge. +- commit 64ea9ce + +------------------------------------------------------------------- +Thu Nov 7 13:33:56 CET 2024 - jack@suse.cz + +- ext4: ext4_search_dir should return a proper error (bsc#1231920 + CVE-2024-47701). +- commit 7c02130 + +------------------------------------------------------------------- +Thu Nov 7 13:33:25 CET 2024 - jack@suse.cz + +- ext4: explicitly exit when ext4_find_inline_entry returns an + error (bsc#1231920 CVE-2024-47701). +- commit e600961 + +------------------------------------------------------------------- +Thu Nov 7 13:32:00 CET 2024 - jack@suse.cz + +- ext4: return error on ext4_find_inline_entry (bsc#1231920 + CVE-2024-47701). +- commit 39b6acc + +------------------------------------------------------------------- +Thu Nov 7 13:14:47 CET 2024 - tbogendoerfer@suse.de + +- igb: Disable threaded IRQ for igb_msix_other (git-fixes). +- commit b8afad1 + +------------------------------------------------------------------- +Thu Nov 7 13:04:09 CET 2024 - jack@suse.cz + +- fs/inode: Prevent dump_mapping() accessing invalid + dentry.d_name.name (bsc#1232387 CVE-2024-49934). +- commit cf2a806 + +------------------------------------------------------------------- +Thu Nov 7 13:03:53 CET 2024 - jack@suse.cz + +- ext4: filesystems without casefold feature cannot be mounted + with siphash (bsc#1232264 CVE-2024-49968). +- commit 1907014 + +------------------------------------------------------------------- +Thu Nov 7 13:03:22 CET 2024 - jack@suse.cz + +- ext4: drop ppath from ext4_ext_replay_update_ex() to avoid + double-free (bsc#1232096 CVE-2024-49983). +- commit 4a6ac53 + +------------------------------------------------------------------- +Thu Nov 7 13:03:07 CET 2024 - jack@suse.cz + +- vfs: fix race between evice_inodes() and find_inode()&iput() + (bsc#1231930 CVE-2024-47679). +- commit dcf9f6e + +------------------------------------------------------------------- +Thu Nov 7 13:02:52 CET 2024 - jack@suse.cz + +- ext4: avoid OOB when system.data xattr changes underneath the + filesystem (bsc#1231920 CVE-2024-47701). +- commit f292cb3 + +------------------------------------------------------------------- +Thu Nov 7 09:47:26 CET 2024 - tiwai@suse.de + +- security/keys: fix slab-out-of-bounds in key_task_permission + (git-fixes). +- platform/x86/amd/pmc: Detect when STB is not available + (git-fixes). +- HID: core: zero-initialize the report buffer (git-fixes). +- commit 277fa5f + +------------------------------------------------------------------- +Thu Nov 7 08:52:10 CET 2024 - tbogendoerfer@suse.de + +- mlxbf_gige: disable RX filters until RX path initialized + (git-fixes). +- commit f2b07e9 + +------------------------------------------------------------------- +Thu Nov 7 06:25:00 CET 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add tests for sdiv/smod overflow cases + (CVE-2024-49888 bsc#1232208). +- commit b193d4f + +------------------------------------------------------------------- +Thu Nov 7 05:51:18 CET 2024 - ddiss@suse.de + +- initramfs: avoid filename buffer overrun (bsc#1232436). +- commit 4918398 + +------------------------------------------------------------------- +Thu Nov 7 05:46:24 CET 2024 - shung-hsi.yu@suse.com + +- netfilter: bpf: must hold reference on net namespace + (bsc#1232894 CVE-2024-50130). +- commit 7d292ad + +------------------------------------------------------------------- +Thu Nov 7 04:32:52 CET 2024 - shung-hsi.yu@suse.com + +- bpftool: Fix undefined behavior in qsort(NULL, 0, + ...) (bsc#1232258 CVE-2024-49987). +- commit 80f8e64 + +------------------------------------------------------------------- +Wed Nov 6 17:59:46 CET 2024 - mhocko@suse.com + +- Update + patches.suse/mm-mmap-no-need-to-call-khugepaged_enter_vma-for-sta.patch + (jsc#PED-11442). +- commit d087a3b + +------------------------------------------------------------------- +Wed Nov 6 14:42:55 CET 2024 - jlee@suse.com + +- fbdev: efifb: Register sysfs groups through driver core + (bsc#1232224 CVE-2024-49925). +- commit 4fd0365 + +------------------------------------------------------------------- +Wed Nov 6 13:23:45 CET 2024 - msuchanek@suse.de + +- aes-gcm-p10: Use the correct bit to test for P10 (bsc#1232704). +- commit f0dea0e + +------------------------------------------------------------------- +Tue Nov 5 22:26:42 CET 2024 - krisman@suse.de + +- ublk: don't allow user copy for unprivileged device + (CVE-2024-50080 bsc#1232502). +- commit 267c92f + +------------------------------------------------------------------- +Tue Nov 5 22:24:27 CET 2024 - krisman@suse.de + +- blk-mq: setup queue ->tag_set before initializing hctx + (CVE-2024-50081 bsc#1232501). +- commit 87d4a82 + +------------------------------------------------------------------- +Tue Nov 5 17:41:14 CET 2024 - oneukum@suse.com + +- media: core: v4l2-ioctl: check if ioctl is known to avoid NULL + name (git-fixes). +- commit c862b93 + +------------------------------------------------------------------- +Tue Nov 5 15:39:08 CET 2024 - oneukum@suse.com + +- media: videobuf2: fix typo: vb2_dbuf -> vb2_qbuf (git-fixes). +- commit 92209c4 + +------------------------------------------------------------------- +Tue Nov 5 14:47:17 CET 2024 - oneukum@suse.com + +- media: bttv: use audio defaults for winfast2000 (git-fixes). +- commit 6e1da70 + +------------------------------------------------------------------- +Tue Nov 5 14:39:14 CET 2024 - mfranc@suse.cz + +- scsi: elx: libefc: Fix potential use after free in + efc_nport_vport_del() (CVE-2024-49852 bsc#1232819). +- commit 51395e6 + +------------------------------------------------------------------- +Tue Nov 5 13:57:57 CET 2024 - jwiesner@suse.de + +- Update config files. + c37e85c135ce ("clocksource: Loosen clocksource watchdog constraints") + introduced a new default for the time skew measured by the clocksource + watchdog. The value was raised from 100 to 125 microseconds. Reflect this + change in the kernel config. This is an x86_64 option only. +- commit 14c1b2d + +------------------------------------------------------------------- +Tue Nov 5 13:09:52 CET 2024 - tiwai@suse.de + +- ALSA: usb-audio: Add quirk for HP 320 FHD Webcam (bsc#1232768). +- commit 7c39137 + +------------------------------------------------------------------- +Tue Nov 5 09:35:40 CET 2024 - shung-hsi.yu@suse.com + +- kABI: bpf: struct bpf_func_state kABI workaround (CVE-2024-47703 + bsc#1231946). +- commit fd45833 + +------------------------------------------------------------------- +Tue Nov 5 08:24:15 CET 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Workaround strict bpf_lsm return value check + (CVE-2024-47703 bsc#1231946). +- selftests/bpf: Add verifier tests for bpf lsm (CVE-2024-47703 + bsc#1231946). +- selftests/bpf: Add return value checks for failed tests + (CVE-2024-47703 bsc#1231946). +- bpf: Fix compare error in function retval_range_within + (CVE-2024-47703 bsc#1231946). +- bpf, lsm: Add check for BPF LSM return value (CVE-2024-47703 + bsc#1231946). +- Refresh patches.suse/bpf-Fail-verification-for-sign-extension-of-packet-d.patch +- Refresh patches.kabi/bpf-struct-bpf_insn_access_aux-workaround.patch +- selftests/bpf: fix timer/test_bad_ret subtest on + test_progs-cpuv4 flavor (CVE-2024-47703 bsc#1231946). +- commit a0c7d4f + +------------------------------------------------------------------- +Tue Nov 5 08:16:32 CET 2024 - tiwai@suse.de + +- rpmsg: glink: Handle rejected intent request better (git-fixes). +- firmware: arm_scmi: Fix slab-use-after-free in + scmi_bus_notifier() (git-fixes). +- commit 01fe6bf + +------------------------------------------------------------------- +Mon Nov 4 18:03:58 CET 2024 - dsterba@suse.com + +- Update references for patches.suse/tracing-timerlat-Fix-a-race-during-cpuhp-processing.patch (CVE-2024-49866 bsc#1232259 git-fixes) +- commit d9311d0 + +------------------------------------------------------------------- +Mon Nov 4 16:27:12 CET 2024 - tiwai@suse.de + +- Move out-of-tree patch into a proper section +- commit c581359 + +------------------------------------------------------------------- +Mon Nov 4 16:26:16 CET 2024 - tiwai@suse.de + +- Revert "ALSA: hda/conexant: Mute speakers at suspend / shutdown" + (bsc#1228269). +- commit 13ce240 + +------------------------------------------------------------------- +Mon Nov 4 16:18:22 CET 2024 - dwagner@suse.de + +- scsi: lpfc: Update lpfc version to 14.4.0.5 (bsc#1232757). +- scsi: lpfc: Support loopback tests with VMID enabled + (bsc#1232757). +- scsi: lpfc: Revise TRACE_EVENT log flag severities from KERN_ERR + to KERN_WARNING (bsc#1232757). +- scsi: lpfc: Ensure DA_ID handling completion before deleting + an NPIV instance (bsc#1232757). +- scsi: lpfc: Fix kref imbalance on fabric ndlps from dev_loss_tmo + handler (bsc#1232757). +- scsi: lpfc: Restrict support for 32 byte CDBs to specific HBAs + (bsc#1232757 bsc#1228119). +- scsi: lpfc: Update phba link state conditional before sending + CMF_SYNC_WQE (bsc#1232757). +- scsi: lpfc: Add ELS_RSP cmd to the list of WQEs to flush in + lpfc_els_flush_cmd() (bsc#1232757). +- scsi: lpfc: Remove trailing space after \n newline + (bsc#1232757). +- commit 3cf27b4 + +------------------------------------------------------------------- +Mon Nov 4 16:14:15 CET 2024 - vkarasulli@suse.de + +- ext4: fix timer use-after-free on failed mount (CVE-2024-49960 + bsc#1232395). +- commit bd6997d + +------------------------------------------------------------------- +Mon Nov 4 16:04:43 CET 2024 - mfranc@suse.cz + +- net/xen-netback: prevent UAF in xenvif_flush_hash() + (CVE-2024-49936 bsc#1232424). +- commit ae05dab + +------------------------------------------------------------------- +Mon Nov 4 15:52:22 CET 2024 - vkarasulli@suse.de + +- tipc: guard against string buffer overrun (CVE-2024-49995 + bsc#1232432). +- commit ada263e + +------------------------------------------------------------------- +Mon Nov 4 14:53:58 CET 2024 - tiwai@suse.de + +- drm/amdkfd: amdkfd_free_gtt_mem clear the correct pointer + (CVE-2024-49991 bsc#1232282). +- commit 1b15839 + +------------------------------------------------------------------- +Mon Nov 4 13:19:32 CET 2024 - dwagner@suse.de + +- nvme: re-fix error-handling for io_uring nvme-passthrough + (git-fixes). +- nvmet-auth: assign dh_key to NULL after kfree_sensitive + (git-fixes). +- nvme-pci: fix race condition between reset and + nvme_dev_disable() (git-fixes). +- nvme: null terminate nvme_tls_attrs (git-fixes). +- nvme-pci: set doorbell config before unquiescing (git-fixes). +- commit d7598b1 + +------------------------------------------------------------------- +Mon Nov 4 10:14:41 CET 2024 - vbabka@suse.cz + +- mm: split critical region in remap_file_pages() and invoke + LSMs in between (CVE-2024-47745 bsc#1232135 git-fix). +- commit 8228ecb + +------------------------------------------------------------------- +Mon Nov 4 09:25:15 CET 2024 - tiwai@suse.de + +- Add alt-commit to AMDGPU patch +- commit 9e50980 + +------------------------------------------------------------------- +Mon Nov 4 09:24:06 CET 2024 - tiwai@suse.de + +- phy: tegra: xusb: Add error pointer check in xusb.c (git-fixes). +- phy: freescale: imx8m-pcie: Do CMN_RST just before PHY PLL + lock check (git-fixes). +- phy: ti: phy-j721e-wiz: fix usxgmii configuration (git-fixes). +- phy: qcom: qmp-combo: move driver data initialisation earlier + (git-fixes). +- phy: qcom: qmp-usb: fix NULL-deref on runtime suspend + (git-fixes). +- dmaengine: ti: k3-udma: Set EOP for all TRs in cyclic BCDMA + transfer (git-fixes). +- dmaengine: sh: rz-dmac: handle configs where one address is zero + (git-fixes). +- Revert "driver core: Fix uevent_show() vs driver detach race" + (git-fixes). +- usb: phy: Fix API devm_usb_put_phy() can not release the phy + (git-fixes). +- usb: typec: fix unreleased fwnode_handle in + typec_port_register_altmodes() (git-fixes). +- xhci: Fix Link TRB DMA in command ring stopped completion event + (git-fixes). +- xhci: Use pm_runtime_get to prevent RPM on unsupported systems + (git-fixes). +- usbip: tools: Fix detach_port() invalid port error path + (git-fixes). +- iio: adc: ad7124: fix division by zero in + ad7124_set_channel_odr() (git-fixes). +- staging: iio: frequency: ad9832: fix division by zero in + ad9832_calc_freqreg() (git-fixes). +- iio: light: veml6030: fix microlux value calculation + (git-fixes). +- iio: gts-helper: Fix memory leaks for the error path of + iio_gts_build_avail_scale_table() (git-fixes). +- iio: gts-helper: Fix memory leaks in + iio_gts_build_avail_scale_table() (git-fixes). +- mei: use kvmalloc for read buffer (git-fixes). +- Input: edt-ft5x06 - fix regmap leak when probe fails + (git-fixes). +- modpost: fix input MODULE_DEVICE_TABLE() built for 64-bit on + 32-bit host (git-fixes). +- modpost: fix acpi MODULE_DEVICE_TABLE built with mismatched + endianness (git-fixes). +- sumversion: Fix a memory leak in get_src_version() (git-fixes). +- genirq/msi: Fix off-by-one error in msi_domain_alloc() + (git-fixes). +- commit df7fb9d + +------------------------------------------------------------------- +Mon Nov 4 09:04:48 CET 2024 - jslaby@suse.cz + +- Refresh + patches.suse/PCI-Fix-pci_enable_acs-support-for-the-ACS-quirks.patch. + Update upstream status. +- commit f283868 + +------------------------------------------------------------------- +Mon Nov 4 07:17:46 CET 2024 - neilb@suse.de + +- nfsd: cancel nfsd_shrinker_work using sync mode in + nfs4_state_shutdown_net (git-fixes). +- commit ed2b339 + +------------------------------------------------------------------- +Mon Nov 4 06:45:48 CET 2024 - neilb@suse.de + +- NFSv3: only use NFS timeout for MOUNT when protocols are + compatible (bsc#1231016). +- commit ddbeb4f + +------------------------------------------------------------------- +Mon Nov 4 05:29:33 CET 2024 - jlee@suse.com + +- Update + patches.suse/0002-x86-mm-ident_map-Use-gbpages-only-where-full-GB-page.patch + (bsc#1220382 CVE-2024-50017 bsc#1232312). +- Update patches.suse/ACPI-PAD-fix-crash-in-exit_round_robin.patch + (stable-fixes CVE-2024-49935 bsc#1232370). +- Update + patches.suse/ACPI-battery-Fix-possible-crash-when-unregistering-a.patch + (git-fixes CVE-2024-49955 bsc#1232154). +- Update + patches.suse/ACPI-sysfs-validate-return-type-of-_STR-method.patch + (git-fixes CVE-2024-49860 bsc#1231861). +- Update + patches.suse/ACPICA-check-null-return-of-ACPI_ALLOCATE_ZEROED-in-.patch + (stable-fixes CVE-2024-49962 bsc#1232314). +- Update + patches.suse/ALSA-asihpi-Fix-potential-OOB-array-access.patch + (stable-fixes CVE-2024-50007 bsc#1232394). +- Update + patches.suse/Bluetooth-Call-iso_exit-on-module-unload.patch + (git-fixes CVE-2024-50078 bsc#1232503). +- Update + patches.suse/Bluetooth-ISO-Fix-multiple-init-when-debugfs-is-disa.patch + (git-fixes CVE-2024-50077 bsc#1232504). +- Update + patches.suse/Bluetooth-RFCOMM-FIX-possible-deadlock-in-rfcomm_sk_.patch + (git-fixes CVE-2024-50044 bsc#1231904). +- Update + patches.suse/IB-core-Fix-ib_cache_setup_one-error-flow-cleanup.patch + (git-fixes CVE-2024-47693 bsc#1232013). +- Update + patches.suse/IB-core-Implement-a-limit-on-UMAD-receive-List.patch + (bsc#1228743 CVE-2024-42145 bsc#1223384). +- Update + patches.suse/Input-adp5589-keys-fix-NULL-pointer-dereference.patch + (git-fixes CVE-2024-49871 bsc#1232287). +- Update + patches.suse/KEYS-prevent-NULL-pointer-dereference-in-find_asymme.patch + (git-fixes CVE-2024-47743 bsc#1232129). +- Update + patches.suse/KVM-Use-dedicated-mutex-to-protect-kvm_usage_count-t.patch + (git-fixes CVE-2024-47744 bsc#1232132). +- Update + patches.suse/PCI-keystone-Fix-if-statement-expression-in-ks_pcie_.patch + (git-fixes CVE-2024-47756 bsc#1232185). +- Update + patches.suse/PCI-kirin-Fix-buffer-overflow-in-kirin_pcie_parse_po.patch + (git-fixes CVE-2024-47751 bsc#1232127). +- Update + patches.suse/RDMA-cxgb4-Added-NULL-check-for-lookup_atid.patch + (git-fixes CVE-2024-47749 bsc#1232180). +- Update + patches.suse/RDMA-hns-Fix-Use-After-Free-of-rsv_qp-on-HIP08.patch + (git-fixes CVE-2024-47750 bsc#1232182). +- Update + patches.suse/RDMA-hns-Fix-spin_unlock_irqrestore-called-with-IRQs.patch + (git-fixes CVE-2024-47735 bsc#1232111). +- Update + patches.suse/RDMA-iwcm-Fix-WARNING-at_kernel-workqueue.c-check_fl.patch + (git-fixes CVE-2024-47696 bsc#1231864). +- Update + patches.suse/RDMA-rtrs-clt-Reset-cid-to-con_num-1-to-stay-in-boun.patch + (git-fixes CVE-2024-47695 bsc#1231931). +- Update + patches.suse/RDMA-rtrs-srv-Avoid-null-pointer-deref-during-path-e.patch + (git-fixes CVE-2024-50062 bsc#1232232). +- Update + patches.suse/aoe-fix-the-potential-use-after-free-problem-in-more.patch + (bsc#1218562 CVE-2023-6270 CVE-2024-49982 bsc#1232097). +- Update + patches.suse/bpf-Fail-verification-for-sign-extension-of-packet-d.patch + (git-fixes CVE-2024-47702 bsc#1231924). +- Update + patches.suse/bpf-Fix-helper-writes-to-read-only-maps.patch + (git-fixes CVE-2024-49861 bsc#1232254). +- Update + patches.suse/bpf-Fix-use-after-free-in-bpf_uprobe_multi_link_attach.patch + (git-fixes CVE-2024-47675 bsc#1231926). +- Update + patches.suse/bpf-Zero-former-ARG_PTR_TO_-LONG-INT-args-in-case-of.patch + (git-fixes CVE-2024-47728 bsc#1232076). +- Update + patches.suse/bpf-correctly-handle-malformed-BPF_CORE_TYPE_ID_LOCA.patch + (git-fixes CVE-2024-49850 bsc#1232189). +- Update + patches.suse/cachefiles-fix-dentry-leak-in-cachefiles_open_file.patch + (bsc#1231183 CVE-2024-49870 bsc#1232279). +- Update + patches.suse/can-bcm-Clear-bo-bcm_proc_read-after-remove_proc_ent.patch + (git-fixes CVE-2024-47709 bsc#1232048). +- Update + patches.suse/crypto-iaa-Fix-potential-use-after-free-bug.patch + (git-fixes CVE-2024-47732 bsc#1232109). +- Update + patches.suse/cxl-pci-Fix-disabling-memory-if-DVSEC-CXL-Range-does.patch + (git-fixes CVE-2024-26761 bsc#1230375). +- Update + patches.suse/driver-core-Fix-a-potential-null-ptr-deref-in-module.patch + (git-fixes CVE-2024-47688 bsc#1232009). +- Update + patches.suse/driver-core-bus-Fix-double-free-in-driver-API-bus_re.patch + (stable-fixes CVE-2024-50055 bsc#1232329). +- Update + patches.suse/drivers-media-dvb-frontends-rtl2830-fix-an-out-of-bo.patch + (git-fixes CVE-2024-47697 bsc#1231858). +- Update + patches.suse/drivers-media-dvb-frontends-rtl2832-fix-an-out-of-bo.patch + (git-fixes CVE-2024-47698 bsc#1231859). +- Update + patches.suse/drm-amd-display-Add-null-check-for-set_output_gamma-.patch + (git-fixes CVE-2024-47720 bsc#1232043). +- Update + patches.suse/drm-amd-display-Check-null-pointer-before-dereferenc.patch + (stable-fixes CVE-2024-50049 bsc#1232309). +- Update + patches.suse/drm-amd-display-fixed-integer-types-and-null-check-l.patch + (git-fixes CVE-2024-26767 bsc#1230339). +- Update + patches.suse/drm-omapdrm-Add-missing-check-for-alloc_ordered_work.patch + (git-fixes CVE-2024-49879 bsc#1232349). +- Update + patches.suse/drm-v3d-Stop-the-active-perfmon-before-being-destroy.patch + (git-fixes CVE-2024-50031 bsc#1231947). +- Update + patches.suse/efistub-tpm-Use-ACPI-reclaim-memory-for-event-log-to.patch + (stable-fixes CVE-2024-49858 bsc#1232251). +- Update + patches.suse/ep93xx-clock-Fix-off-by-one-in-ep93xx_div_recalc_rat.patch + (git-fixes CVE-2024-47686 bsc#1232000). +- Update + patches.suse/exfat-fix-memory-leak-in-exfat_load_bitmap.patch + (git-fixes CVE-2024-50013 bsc#1232080). +- Update + patches.suse/fbcon-Fix-a-NULL-pointer-dereference-issue-in-fbcon_.patch + (stable-fixes CVE-2024-50048 bsc#1232310). +- Update + patches.suse/firmware-arm_scmi-Fix-double-free-in-OPTEE-transport.patch + (git-fixes CVE-2024-49853 bsc#1232192). +- Update patches.suse/firmware_loader-Block-path-traversal.patch + (git-fixes CVE-2024-47742 bsc#1232126). +- Update + patches.suse/i2c-stm32f7-Do-not-prepare-unprepare-clock-during-ru.patch + (git-fixes CVE-2024-49985 bsc#1232094). +- Update + patches.suse/i3c-master-cdns-Fix-use-after-free-vulnerability-in-.patch + (stable-fixes CVE-2024-50061 bsc#1232263). +- Update + patches.suse/i3c-master-svc-Fix-use-after-free-vulnerability-in-s.patch + (git-fixes CVE-2024-49874 bsc#1232295). +- Update + patches.suse/i40e-Fix-XDP-program-unloading-while-removing-the-dr.patch + (git-fixes CVE-2024-41047 bsc#1228537). +- Update + patches.suse/idpf-fix-UAFs-when-destroying-the-queues.patch + (git-fixes CVE-2024-44932 bsc#1229808). +- Update + patches.suse/idpf-fix-memory-leaks-and-crashes-while-performing-a.patch + (git-fixes CVE-2024-44964 bsc#1230220). +- Update + patches.suse/iommufd-Protect-against-overflow-of-ALIGN-during-iov.patch + (git-fixes CVE-2024-47719 bsc#1231865). +- Update + patches.suse/jffs2-prevent-xattr-node-from-overflowing-the-eraseblock.patch + (git-fixes CVE-2024-38599 bsc#1226848 bsc#1223384). +- Update patches.suse/jfs-Fix-uaf-in-dbFreeBits.patch (git-fixes + CVE-2024-49903 bsc#1232362). +- Update + patches.suse/jfs-Fix-uninit-value-access-of-new_ea-in-ea_buffer.patch + (git-fixes CVE-2024-49900 bsc#1232359). +- Update + patches.suse/jfs-check-if-leafidx-greater-than-num-leaves-per-dmap-tree.patch + (git-fixes CVE-2024-49902 bsc#1232378). +- Update + patches.suse/jfs-fix-out-of-bounds-in-dbNextAG-and-diAlloc.patch + (git-fixes CVE-2024-47723 bsc#1232050). +- Update + patches.suse/mailbox-bcm2835-Fix-timeout-during-suspend-mode.patch + (git-fixes CVE-2024-49963 bsc#1232147). +- Update + patches.suse/md-Don-t-ignore-suspended-array-in-md_check_recovery-1baa.patch + (bsc#1219596 CVE-2024-26758 bsc#1230341). +- Update patches.suse/media-edia-dvbdev-fix-a-use-after-free.patch + (git-fixes CVE-2024-27043 bsc#1223824 bsc#1218562). +- Update + patches.suse/media-i2c-ar0521-Use-cansleep-version-of-gpiod_set_v.patch + (git-fixes CVE-2024-49961 bsc#1232148). +- Update + patches.suse/media-venus-fix-use-after-free-bug-in-venus_remove-d.patch + (git-fixes CVE-2024-49981 bsc#1232098). +- Update + patches.suse/nbd-fix-race-between-timeout-and-normal-completion.patch + (bsc#1230918 CVE-2024-49855 bsc#1232195). +- Update + patches.suse/net-phy-Remove-LED-entry-from-LEDs-list-on-unregiste.patch + (git-fixes CVE-2024-50023 bsc#1231955). +- Update + patches.suse/net-test-for-not-too-small-csum_start-in-virtio_net_.patch + (git-fixes CVE-2024-49947 bsc#1232162). +- Update + patches.suse/nfsd-call-cache_put-if-xdr_reserve_space-returns-NULL.patch + (git-fixes CVE-2024-47737 bsc#1232056). +- Update + patches.suse/nfsd-map-the-EBADMSG-to-nfserr_io-to-avoid-warning.patch + (git-fixes CVE-2024-49875 bsc#1232333). +- Update + patches.suse/nilfs2-fix-potential-null-ptr-deref-in-nilfs_btree_insert.patch + (git-fixes CVE-2024-47699 bsc#1231916). +- Update + patches.suse/nilfs2-fix-potential-oob-read-in-nilfs_btree_check_delete.patch + (git-fixes CVE-2024-47757 bsc#1232187). +- Update + patches.suse/nouveau-dmem-handle-kcalloc-allocation-failure.patch + (git-fixes CVE-2024-26943 bsc#1230527). +- Update + patches.suse/ocfs2-cancel-dqi_sync_work-before-freeing-oinfo.patch + (git-fixes CVE-2024-49966 bsc#1232141). +- Update + patches.suse/ocfs2-fix-null-ptr-deref-when-journal-load-failed.patch + (git-fixes CVE-2024-49957 bsc#1232152). +- Update + patches.suse/ocfs2-fix-possible-null-ptr-deref-in-ocfs2_set_buffer_uptodate.patch + (git-fixes CVE-2024-49877 bsc#1232339). +- Update + patches.suse/ocfs2-remove-unreasonable-unlock-in-ocfs2_read_blocks.patch + (git-fixes CVE-2024-49965 bsc#1232142). +- Update + patches.suse/parport-Proper-fix-for-array-out-of-bounds-access.patch + (git-fixes CVE-2024-50074 bsc#1232507). +- Update + patches.suse/pinctrl-apple-check-devm_kasprintf-returned-value.patch + (git-fixes CVE-2024-50069 bsc#1232511). +- Update + patches.suse/platform-x86-ISST-Fix-the-KASAN-report-slab-out-of-b.patch + (git-fixes CVE-2024-49886 bsc#1232196). +- Update + patches.suse/powercap-intel_rapl-Fix-off-by-one-in-get_rpi.patch + (git-fixes CVE-2024-49862 bsc#1231871). +- Update + patches.suse/resource-fix-region_intersects-vs-add_memory_driver_.patch + (git-fixes CVE-2024-49878 bsc#1232340). +- Update + patches.suse/scsi-fnic-Move-flush_work-initialization-out-of-if-b.patch + (bsc#1230055 CVE-2024-50025 bsc#1231953). +- Update + patches.suse/scsi-lpfc-validate-hdwq-pointers-before-dereferencing-in.patch + (bsc#1229429 jsc#PED-9899 CVE-2024-49891 bsc#1232218). +- Update + patches.suse/scsi-sd-Fix-off-by-one-error-in-sd_read_block_charac.patch + (bsc#1223848 CVE-2024-47682 bsc#1231856). +- Update + patches.suse/serial-protect-uart_port_dtr_rts-in-uart_shutdown-to.patch + (stable-fixes CVE-2024-50058 bsc#1232285). +- Update + patches.suse/tpm-Clean-up-TPM-space-after-command-failure.patch + (git-fixes CVE-2024-49851 bsc#1232134). +- Update + patches.suse/tty-n_gsm-Fix-use-after-free-in-gsm_cleanup_mux.patch + (stable-fixes CVE-2024-50073 bsc#1232520). +- Update + patches.suse/vhost-scsi-null-ptr-dereference-in-vhost_scsi_get_re.patch + (git-fixes CVE-2024-49863 bsc#1232255). +- Update + patches.suse/vhost_vdpa-assign-irq-bypass-producer-token-correctl.patch + (git-fixes CVE-2024-47748 bsc#1232174). +- Update patches.suse/vmxnet3-Fix-missing-reserved-tailroom.patch + (bsc#1226498 CVE-2024-27026 bsc#1223700). +- Update + patches.suse/vt-prevent-kernel-infoleak-in-con_font_get.patch + (git-fixes CVE-2024-50076 bsc#1232505). +- Update + patches.suse/wifi-ath11k-fix-array-out-of-bound-access-in-SoC-sta.patch + (stable-fixes CVE-2024-49930 bsc#1232260). +- Update + patches.suse/wifi-ath12k-fix-array-out-of-bound-access-in-SoC-sta.patch + (stable-fixes CVE-2024-49931 bsc#1232275). +- Update + patches.suse/wifi-ath9k_htc-Use-__skb_set_length-for-resetting-ur.patch + (stable-fixes CVE-2024-49938 bsc#1232552). +- Update + patches.suse/wifi-cfg80211-Set-correct-chandef-when-starting-CAC.patch + (stable-fixes CVE-2024-49937 bsc#1232427). +- Update + patches.suse/wifi-iwlwifi-mvm-avoid-NULL-pointer-dereference.patch + (stable-fixes CVE-2024-49929 bsc#1232253). +- Update + patches.suse/wifi-mac80211-don-t-use-rate-mask-for-offchannel-TX-.patch + (git-fixes CVE-2024-47738 bsc#1232114). +- Update + patches.suse/wifi-mac80211-use-two-phase-skb-reclamation-in-ieee8.patch + (git-fixes CVE-2024-47713 bsc#1232016). +- Update + patches.suse/wifi-mt76-mt7915-fix-oops-on-non-dbdc-mt7986.patch + (git-fixes CVE-2024-47715 bsc#1231860). +- Update + patches.suse/wifi-mt76-mt7996-fix-NULL-pointer-dereference-in-mt7.patch + (git-fixes CVE-2024-47681 bsc#1231855). +- Update + patches.suse/wifi-mt76-mt7996-use-hweight16-to-get-correct-tx-ant.patch + (git-fixes CVE-2024-47714 bsc#1232018). +- Update + patches.suse/wifi-mwifiex-Fix-memcpy-field-spanning-write-warning.patch + (stable-fixes CVE-2024-50008 bsc#1232317). +- Update + patches.suse/wifi-rtw88-always-wait-for-both-firmware-loading-att.patch + (git-fixes CVE-2024-47718 bsc#1232015). +- Update + patches.suse/wifi-rtw89-avoid-reading-out-of-bounds-when-loading-.patch + (stable-fixes CVE-2024-49928 bsc#1232250). +- Update + patches.suse/wifi-rtw89-avoid-to-add-interface-to-list-twice-when.patch + (stable-fixes CVE-2024-49939 bsc#1232381). +- Update + patches.suse/wifi-wilc1000-fix-potential-RCU-dereference-issue-in.patch + (git-fixes CVE-2024-47712 bsc#1232017). +- Update + patches.suse/xhci-tegra-fix-checked-USB2-port-number.patch + (git-fixes CVE-2024-50075 bsc#1232506). +- commit a270265 + +------------------------------------------------------------------- +Mon Nov 4 05:28:50 CET 2024 - jlee@suse.com + +- Update + patches.suse/i3c-mipi-i3c-hci-Fix-out-of-bounds-access-in-hci_dma.patch + (git-fixes CVE-2023-52766 bsc#1230620). +- Update + patches.suse/media-pci-cx23885-check-cx23885_vdev_init-return.patch + (stable-fixes CVE-2023-52918 bsc#1232047). +- Update + patches.suse/nfc-nci-fix-possible-NULL-pointer-dereference-in-sen.patch + (git-fixes CVE-2023-52919 bsc#1231988). +- Update + patches.suse/ntb-intel-Fix-the-NULL-vs-IS_ERR-bug-for-debugfs_cre.patch + (git-fixes CVE-2023-52917 bsc#1231849). +- Update + patches.suse/tcp-do-not-accept-ACK-of-bytes-we-never-sent.patch + (CVE-2023-52881 bsc#1225611 bsc#1223384). +- Update patches.suse/wifi-ath11k-fix-htt-pktlog-locking.patch + (git-fixes CVE-2023-52800 bsc#1230600). +- commit 9859953 + +------------------------------------------------------------------- +Mon Nov 4 05:11:42 CET 2024 - neilb@suse.de + +- NFSD: Force all NFSv4.2 COPY requests to be synchronous + (CVE-2024-49974 bsc#1232383). +- commit 16045fc + +------------------------------------------------------------------- +Sun Nov 3 21:24:28 CET 2024 - petr.pavlu@suse.com + +- fgraph: Change the name of cpuhp state to "fgraph:online" + (git-fixes). +- commit 59421b3 + +------------------------------------------------------------------- +Sun Nov 3 21:22:36 CET 2024 - petr.pavlu@suse.com + +- fgraph: Fix missing unlock in register_ftrace_graph() + (git-fixes). +- commit 60d91ed + +------------------------------------------------------------------- +Sun Nov 3 19:59:18 CET 2024 - ailiop@suse.com + +- fs/9p: drop inodes immediately on non-.L too (git-fixes). +- commit 5fa5f19 + +------------------------------------------------------------------- +Sun Nov 3 19:58:53 CET 2024 - ailiop@suse.com + +- 9p: explicitly deny setlease attempts (git-fixes). +- commit 474852b + +------------------------------------------------------------------- +Sun Nov 3 19:58:26 CET 2024 - ailiop@suse.com + +- fs/9p: fix the cache always being enabled on files with qid + flags (git-fixes). +- commit 362152c + +------------------------------------------------------------------- +Sun Nov 3 19:52:25 CET 2024 - ailiop@suse.com + +- zonefs: Improve error handling (git-fixes). +- commit cb63c4c + +------------------------------------------------------------------- +Sun Nov 3 19:51:33 CET 2024 - ailiop@suse.com + +- debugfs: fix automount d_fsdata usage (git-fixes). +- commit 5f78a06 + +------------------------------------------------------------------- +Sun Nov 3 19:50:40 CET 2024 - ailiop@suse.com + +- splice: fsnotify_access(in), fsnotify_modify(out) on success + in tee (git-fixes). +- commit d518e6d + +------------------------------------------------------------------- +Sun Nov 3 19:50:06 CET 2024 - ailiop@suse.com + +- splice: fsnotify_access(fd)/fsnotify_modify(fd) in vmsplice + (git-fixes). +- commit d630f18 + +------------------------------------------------------------------- +Sun Nov 3 19:49:32 CET 2024 - ailiop@suse.com + +- splice: always fsnotify_access(in), fsnotify_modify(out) + on success (git-fixes). +- commit e7f8947 + +------------------------------------------------------------------- +Sun Nov 3 19:48:48 CET 2024 - ailiop@suse.com + +- keys: Fix overwrite of key expiration on instantiation + (git-fixes). +- commit 323181d + +------------------------------------------------------------------- +Sun Nov 3 19:47:56 CET 2024 - ailiop@suse.com + +- audit: don't WARN_ON_ONCE(!current->mm) in audit_exe_compare() + (git-fixes). +- commit e2db423 + +------------------------------------------------------------------- +Sun Nov 3 19:32:51 CET 2024 - ailiop@suse.com + +- ocfs2: fix uninit-value in ocfs2_get_block() (git-fixes). +- commit 426a4b1 + +------------------------------------------------------------------- +Sun Nov 3 19:31:08 CET 2024 - ailiop@suse.com + +- keys, dns: Allow key types (eg. DNS) to be reclaimed immediately + on expiry (git-fixes). +- commit ce262a7 + +------------------------------------------------------------------- +Sun Nov 3 19:29:09 CET 2024 - ailiop@suse.com + +- Revert "KEYS: encrypted: Add check for strsep" (git-fixes). +- commit 7aa308c + +------------------------------------------------------------------- +Sun Nov 3 19:26:16 CET 2024 - ailiop@suse.com + +- ubifs: add check for crypto_shash_tfm_digest (git-fixes). +- commit ea9ba15 + +------------------------------------------------------------------- +Sun Nov 3 19:25:49 CET 2024 - ailiop@suse.com + +- ubifs: dbg_orphan_check: Fix missed key type checking + (git-fixes). +- commit 465ad1a + +------------------------------------------------------------------- +Sun Nov 3 19:24:02 CET 2024 - ailiop@suse.com + +- ubifs: Fix adding orphan entry twice for the same inode + (git-fixes). +- commit 93096ab + +------------------------------------------------------------------- +Sun Nov 3 19:21:34 CET 2024 - ailiop@suse.com + +- Revert "ubifs: ubifs_symlink: Fix memleak of inode->i_link in + error path" (git-fixes). +- commit 0a7c17d + +------------------------------------------------------------------- +Sun Nov 3 19:19:23 CET 2024 - ailiop@suse.com + +- ubifs: Fix unattached xattr inode if powercut happens after + deleting (git-fixes). +- commit 6c90268 + +------------------------------------------------------------------- +Sun Nov 3 19:08:05 CET 2024 - ailiop@suse.com + +- audit: don't take task_lock() in audit_exe_compare() code path + (git-fixes). +- Refresh patches.suse/vfs-add-super_operations-get_inode_dev. +- commit d4e23ef + +------------------------------------------------------------------- +Sun Nov 3 16:02:04 CET 2024 - petr.pavlu@suse.com + +- uprobes: fix kernel info leak via "[uprobes]" vma (bsc#1231114 + CVE-2024-46828). +- uprobes: turn xol_area->pages into xol_area->page (bsc#1231114). +- uprobes: introduce the global struct vm_special_mapping + xol_mapping (bsc#1231114). +- commit 4f9954c + +------------------------------------------------------------------- +Sun Nov 3 14:15:34 CET 2024 - petr.pavlu@suse.com + +- sched: sch_cake: fix bulk flow accounting logic for host + fairness (bsc#1231114 CVE-2024-46828). +- commit ad42d5f + +------------------------------------------------------------------- +Sun Nov 3 13:42:31 CET 2024 - ailiop@suse.com + +- xfs: fix finding a last resort AG in xfs_filestream_pick_ag + (git-fixes). +- commit a10af4c + +------------------------------------------------------------------- +Sat Nov 2 14:47:25 CET 2024 - petr.pavlu@suse.com + +- static_call: Handle module init failure correctly in + static_call_del_module() (bsc#1232083 CVE-2024-50002). +- commit af953b9 + +------------------------------------------------------------------- +Sat Nov 2 10:39:31 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Refactor and simplify Samsung Galaxy Book + init (stable-fixes). +- Refresh + patches.suse/ALSA-hda-realtek-Add-quirk-for-Huawei-MateBook-13-KL.patch. +- commit 98d4026 + +------------------------------------------------------------------- +Sat Nov 2 10:39:04 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Enable mic on Vaio VJFH52 (stable-fixes). +- commit 7075c22 + +------------------------------------------------------------------- +Sat Nov 2 10:38:26 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: tas2781: Fix ROG ALLY X audio (stable-fixes). +- commit e26a542 + +------------------------------------------------------------------- +Sat Nov 2 10:34:42 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Fix headset mic on TUXEDO Stellaris 16 Gen6 + mb1 (stable-fixes). +- ALSA: hda/realtek: Fix headset mic on TUXEDO Gemini 17 Gen3 + (stable-fixes). +- ALSA: usb-audio: Add quirks for Dell WD19 dock (stable-fixes). +- ASoC: dapm: fix bounds checker error in dapm_widget_list_create + (git-fixes). +- ASoC: Intel: sst: Fix used of uninitialized ctx to log an error + (git-fixes). +- ASoC: Intel: sst: Support LPE0F28 ACPI HID (stable-fixes). +- ASoC: Intel: bytcr_rt5640: Add DMI quirk for Vexia Edu Atla + 10 tablet (stable-fixes). +- ASoC: Intel: bytcr_rt5640: Add support for non ACPI instantiated + codec (stable-fixes). +- ASoC: codecs: rt5640: Always disable IRQs from + rt5640_cancel_work() (stable-fixes). +- ALSA: hda/realtek: Add subwoofer quirk for Infinix ZERO BOOK 13 + (stable-fixes). +- ALSA: hda/realtek: Limit internal Mic boost on Dell platform + (stable-fixes). +- commit 0d350ca + +------------------------------------------------------------------- +Sat Nov 2 10:32:30 CET 2024 - tiwai@suse.de + +- drm/mediatek: Fix get efuse issue for MT8188 DPTX (git-fixes). +- drm/amd/pm: Vangogh: Fix kernel memory out of bounds write + (git-fixes). +- ACPI: CPPC: Make rmw_lock a raw_spin_lock (git-fixes). +- firmware: arm_sdei: Fix the input parameter of + cpuhp_remove_state() (git-fixes). +- kasan: Fix Software Tag-Based KASAN with GCC (git-fixes). +- commit 2a07e04 + +------------------------------------------------------------------- +Sat Nov 2 10:28:12 CET 2024 - tiwai@suse.de + +- Bluetooth: hci: fix null-ptr-deref in hci_read_supported_codecs + (git-fixes). +- wifi: cfg80211: clear wdev->cqm_config pointer on free + (git-fixes). +- Revert "wifi: iwlwifi: remove retry loops in start" (git-fixes). +- wifi: iwlwifi: mvm: don't add default link in fw restart flow + (git-fixes). +- wifi: iwlwifi: mvm: Fix response handling in + iwl_mvm_send_recovery_cmd() (git-fixes). +- wifi: iwlwifi: mvm: don't leak a link on AP removal (git-fixes). +- wifi: ath11k: Fix invalid ring usage in full monitor mode + (git-fixes). +- wifi: ath10k: Fix memory leak in management tx (git-fixes). +- wifi: brcm80211: BRCM_TRACING should depend on TRACING + (git-fixes). +- wifi: mac80211: skip non-uploaded keys in ieee80211_iter_keys + (git-fixes). +- wifi: mac80211: do not pass a stopped vif to the driver in + .get_txpower (git-fixes). +- mac80211: MAC80211_MESSAGE_TRACING should depend on TRACING + (git-fixes). +- wifi: iwlegacy: Fix "field-spanning write" warning in + il_enqueue_hcmd() (git-fixes). +- ASoC: cs42l51: Fix some error handling paths in cs42l51_probe() + (git-fixes). +- platform/x86: dell-wmi: Ignore suspend notifications + (stable-fixes). +- ACPI: button: Add DMI quirk for Samsung Galaxy Book2 to fix + initial lid detection issue (stable-fixes). +- ACPI: resource: Add LG 16T90SP to irq1_level_low_skip_override[] + (stable-fixes). +- drm/amd/display: Disable PSR-SU on Parade 08-01 TCON too + (stable-fixes). +- drm/amd: Guard against bad data for ATIF ACPI method + (git-fixes). +- usb: gadget: f_uac2: fix return value for UAC2_ATTRIBUTE_STRING + store (git-fixes). +- accel/qaic: Fix the for loop used to walk SG table (git-fixes). +- drm/amd/amdgpu: Fix double unlock in amdgpu_mes_add_ring + (git-fixes). +- drm/msm/dpu: don't always program merge_3d block (git-fixes). +- drm/msm: Allocate memory for disp snapshot with kvzalloc() + (git-fixes). +- drm/msm: Avoid NULL dereference in msm_disp_state_print_regs() + (git-fixes). +- drm/msm/dsi: fix 32-bit signed integer extension in pclk_rate + calculation (git-fixes). +- drm/msm/dsi: improve/fix dsc pclk calculation (git-fixes). +- drm/msm/dpu: check for overflow in _dpu_crtc_setup_lm_bounds() + (git-fixes). +- drm/msm/dpu: move CRTC resource assignment to + dpu_encoder_virt_atomic_check (git-fixes). +- drm/msm/dpu: make sure phys resources are properly initialized + (git-fixes). +- platform/x86: dell-sysman: add support for alienware products + (stable-fixes). +- drm/vboxvideo: Replace fake VLA at end of + vbva_mouse_pointer_shape with real VLA (stable-fixes). +- usb: gadget: f_uac2: fix non-newline-terminated function name + (stable-fixes). +- usb: gadget: f_uac2: Replace snprintf() with the safer + scnprintf() variant (stable-fixes). +- commit 09f40f7 + +------------------------------------------------------------------- +Fri Nov 1 20:01:29 CET 2024 - dsterba@suse.com + +- drm/amd/display: Check null pointers before using them (CVE-2024-49922 bsc#1232374) +- commit 342005c + +------------------------------------------------------------------- +Fri Nov 1 19:47:32 CET 2024 - dsterba@suse.com + +- drm/amd/display: Handle null 'stream_status' in 'planes_changed_for_existing_stream' (CVE-2024-49912 bsc#1232367) +- commit 2394db2 + +------------------------------------------------------------------- +Fri Nov 1 19:39:05 CET 2024 - dsterba@suse.com + +- drm/amd/display: Add NULL check for function pointer in dcn20_set_output_transfer_func (CVE-2024-49911 bsc#1232366) +- commit 6c83ea7 + +------------------------------------------------------------------- +Fri Nov 1 19:22:24 CET 2024 - dsterba@suse.com + +- drm/amd/display: Pass non-null to dcn20_validate_apply_pipe_split_flags (CVE-2024-49923 bsc#1232361) +- commit 3759560 + +------------------------------------------------------------------- +Fri Nov 1 19:15:38 CET 2024 - dsterba@suse.com + +- drm/amd/display: Fix index out of bounds in DCN30 degamma hardware format translation (CVE-2024-49895 bsc#1232352) +- commit f36c162 + +------------------------------------------------------------------- +Fri Nov 1 19:09:39 CET 2024 - dsterba@suse.com + +- drm/amd/display: Initialize denominators' default to 1 (CVE-2024-49899 bsc#1232358) +- commit 282fa51 + +------------------------------------------------------------------- +Fri Nov 1 19:00:40 CET 2024 - dsterba@suse.com + +- Update references for patches.suse/0001-drm-amd-display-Add-null-check-for-afb-in-amdgpu_dm_.patch (bsc#1232335 CVE-2024-49908 bsc#1232357 CVE-2024-49905) +- commit fa3a85a + +------------------------------------------------------------------- +Fri Nov 1 18:52:17 CET 2024 - dsterba@suse.com + +- drm/amd/display: Check phantom_stream before it is used (CVE-2024-49897 bsc#1232355) +- commit d3fcaed + +------------------------------------------------------------------- +Fri Nov 1 18:43:28 CET 2024 - dsterba@suse.com + +- drm/amd/display: Fix index out of bounds in degamma hardware format translation (CVE-2024-49894 bsc#1232354) +- commit db76ccb + +------------------------------------------------------------------- +Fri Nov 1 18:36:48 CET 2024 - dsterba@suse.com + +- drm/amd/display: Add NULL check for function pointer in dcn32_set_output_transfer_func (CVE-2024-49909 bsc#1232337) +- commit 11facc9 + +------------------------------------------------------------------- +Fri Nov 1 18:30:46 CET 2024 - dsterba@suse.com + +- drm/amd/display: Add null check for top_pipe_to_program in commit_planes_for_stream (CVE-2024-49913 bsc#1232307) +- commit 60f7853 + +------------------------------------------------------------------- +Fri Nov 1 18:20:07 CET 2024 - dsterba@suse.com + +- drm/msm/adreno: Assign msm_gpu->pdev earlier to avoid nullptrs (CVE-2024-49901 bsc#1232305) +- commit 69be7bb + +------------------------------------------------------------------- +Fri Nov 1 14:53:56 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/ATL: Implement DF 4.5 NP2 denormalization (jsc#PED-10559). +- commit 52d40f4 + +------------------------------------------------------------------- +Fri Nov 1 14:53:36 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/ATL: Validate address map when information is gathered (jsc#PED-10559). +- commit 94e412f + +------------------------------------------------------------------- +Fri Nov 1 14:53:11 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/ATL: Expand helpers for adding and removing base and hole (jsc#PED-10559). +- commit 2b18348 + +------------------------------------------------------------------- +Fri Nov 1 14:52:54 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/ATL: Read DRAM hole base early (jsc#PED-10559). +- commit e1cf5b5 + +------------------------------------------------------------------- +Fri Nov 1 14:48:59 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/ATL: Add amd_atl pr_fmt() prefix (jsc#PED-10559). +- commit 17f78f9 + +------------------------------------------------------------------- +Fri Nov 1 13:59:05 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check null pointer before try to access it (bsc#1232332 CVE-2024-49906) +- commit f2b2892 + +------------------------------------------------------------------- +Fri Nov 1 13:57:34 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Add null check for pipe_ctx->plane_state in (bsc#1232369 CVE-2024-49914) +- commit c236474 + +------------------------------------------------------------------- +Fri Nov 1 10:58:06 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Add null check for 'afb' in amdgpu_dm_update_cursor (bsc#1232335 CVE-2024-49908) +- commit 64a943f + +------------------------------------------------------------------- +Fri Nov 1 10:47:38 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check null pointers before using dc->clk_mgr (bsc#1232334 CVE-2024-49907) +- commit 366c63a + +------------------------------------------------------------------- +Fri Nov 1 08:27:17 CET 2024 - nmorey@suse.com + +- RDMA/bnxt_re: synchronize the qp-handle table array (git-fixes) +- commit 866dbc5 + +------------------------------------------------------------------- +Fri Nov 1 08:26:48 CET 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix the usage of control path spin locks (git-fixes) +- commit c834f25 + +------------------------------------------------------------------- +Fri Nov 1 08:26:08 CET 2024 - nmorey@suse.com + +- RDMA/mlx5: Round max_rd_atomic/max_dest_rd_atomic up instead of down (git-fixes) +- commit 3c270f2 + +------------------------------------------------------------------- +Fri Nov 1 08:25:29 CET 2024 - nmorey@suse.com + +- RDMA/cxgb4: Dump vendor specific QP details (git-fixes) +- commit 587d3b0 + +------------------------------------------------------------------- +Thu Oct 31 23:06:07 CET 2024 - dsterba@suse.com + +- ext4: fix access to uninitialised lock in fc replay path (CVE-2024-50014 bsc#1232446) +- commit 1b2ba45 + +------------------------------------------------------------------- +Thu Oct 31 22:51:38 CET 2024 - dsterba@suse.com + +- ext4: fix i_data_sem unlock order in ext4_ind_migrate() (CVE-2024-50006 bsc#1232442) +- commit de0e62b + +------------------------------------------------------------------- +Thu Oct 31 21:27:59 CET 2024 - krisman@suse.de + +- scsi: ufs: core: Remove SCSI host only if added (CVE-2024-46843 + bsc#1231100). +- commit b455bee + +------------------------------------------------------------------- +Thu Oct 31 17:50:59 CET 2024 - krisman@suse.de + +- io_uring: check if we need to reschedule during overflow flush + (bsc#1232417 CVE-2024-50060). +- commit 695bc5f + +------------------------------------------------------------------- +Thu Oct 31 17:45:00 CET 2024 - vkarasulli@suse.de + +- iommu/vt-d: Fix potential lockup if qi_submit_sync called + with 0 count (bsc#1232316 CVE-2024-49993). +- commit f1e5ce7 + +------------------------------------------------------------------- +Thu Oct 31 17:09:02 CET 2024 - dsterba@suse.com + +- ext4: dax: fix overflowing extents beyond inode size when partially writing (CVE-2024-50015 bsc#1232079) +- commit 9768b7c + +------------------------------------------------------------------- +Thu Oct 31 16:58:37 CET 2024 - dsterba@suse.com + +- jbd2: stop waiting for space when jbd2_cleanup_journal_tail() returns error (CVE-2024-49959 bsc#1232149) +- commit 8307a3a + +------------------------------------------------------------------- +Thu Oct 31 14:30:50 CET 2024 - dsterba@suse.com + +- of: Add cleanup.h based auto release via __free(device_node) markings (bsc#1232386) +- commit 794e5ba + +------------------------------------------------------------------- +Thu Oct 31 12:23:15 CET 2024 - svarbanov@suse.de + +- net: stmmac: dwmac-tegra: Fix link bring-up sequence (git-fixes) +- commit 277d940 + +------------------------------------------------------------------- +Wed Oct 30 23:17:12 CET 2024 - dsterba@suse.com + +- cpufreq: Avoid a bad reference count on CPU node (CVE-2024-50012 bsc#1232386) +- commit 283b9a0 + +------------------------------------------------------------------- +Wed Oct 30 23:04:36 CET 2024 - dsterba@suse.com + +- ext4: update orig_path in ext4_find_extent() (CVE-2024-49881 bsc#1232201) +- commit 2ed2a04 + +------------------------------------------------------------------- +Wed Oct 30 23:04:06 CET 2024 - dsterba@suse.com + +- ext4: fix slab-use-after-free in ext4_split_extent_at() (bsc#1232201) +- commit c78e4be + +------------------------------------------------------------------- +Wed Oct 30 20:54:24 CET 2024 - krisman@suse.de + +- btrfs: don't BUG_ON on ENOMEM from btrfs_lookup_extent_info() + in walk_down_proc() (CVE-2024-46841 bsc#1231094). +- commit fb4a0c7 + +------------------------------------------------------------------- +Wed Oct 30 18:48:02 CET 2024 - dsterba@suse.com + +- ext4: aovid use-after-free in ext4_ext_insert_extent() (CVE-2024-49883 bsc#1232199) +- commit 2db9cb5 + +------------------------------------------------------------------- +Wed Oct 30 18:38:04 CET 2024 - dsterba@suse.com + +- blk_iocost: fix more out of bound shifts (CVE-2024-49933 bsc#1232368) +- commit df53397 + +------------------------------------------------------------------- +Wed Oct 30 16:48:50 CET 2024 - vkarasulli@suse.de + +- drm/amd/display: Fix index out of bounds in DCN30 color + transformation (CVE-2024-49969 bsc#1232519). +- commit 7d6c264 + +------------------------------------------------------------------- +Wed Oct 30 15:58:31 CET 2024 - petr.pavlu@suse.com + +- static_call: Replace pointless WARN_ON() in + static_call_module_notify() (bsc#1232155 CVE-2024-49954). +- commit 03b6c35 + +------------------------------------------------------------------- +Wed Oct 30 15:54:21 CET 2024 - petr.pavlu@suse.com + +- module: abort module loading when sysfs setup suffer errors + (git-fixes). +- Refresh patches.suse/add-suse-supported-flag.patch. +- commit db27509 + +------------------------------------------------------------------- +Wed Oct 30 15:36:07 CET 2024 - petr.pavlu@suse.com + +- bpf,perf: Fix perf_event_detach_bpf_prog error handling + (git-fixes). +- commit 5b6b2d4 + +------------------------------------------------------------------- +Wed Oct 30 15:33:23 CET 2024 - petr.pavlu@suse.com + +- tracing: Consider the NULL character when validating the event + length (git-fixes). +- commit 6b1d97f + +------------------------------------------------------------------- +Wed Oct 30 15:31:57 CET 2024 - petr.pavlu@suse.com + +- uprobe: avoid out-of-bounds memory access of fetching args + (git-fixes). +- uprobes: encapsulate preparation of uprobe args buffer + (git-fixes). +- commit ead6cfe + +------------------------------------------------------------------- +Wed Oct 30 14:51:36 CET 2024 - mfranc@suse.cz + +- s390/pci: Handle PCI error codes other than 0x3a (git-fixes + bsc#1232629). +- commit e4948be + +------------------------------------------------------------------- +Wed Oct 30 14:49:22 CET 2024 - mfranc@suse.cz + +- s390/sclp: Deactivate sclp after all its users (git-fixes + bsc#1232628). +- commit 9e889e7 + +------------------------------------------------------------------- +Wed Oct 30 14:47:56 CET 2024 - mfranc@suse.cz + +- s390/sclp_vt220: Convert newlines to CRLF instead of LFCR + (git-fixes bsc#1232627). +- commit 5725ee0 + +------------------------------------------------------------------- +Wed Oct 30 14:45:56 CET 2024 - mfranc@suse.cz + +- KVM: s390: Change virtual to physical address access in diag + 0x258 handler (git-fixes bsc#1232626). +- commit 2b0b1e9 + +------------------------------------------------------------------- +Wed Oct 30 14:44:28 CET 2024 - mfranc@suse.cz + +- KVM: s390: gaccess: Check if guest address is in memslot + (git-fixes bsc#1232623). +- commit b583687 + +------------------------------------------------------------------- +Wed Oct 30 14:22:09 CET 2024 - petr.pavlu@suse.com + +- fgraph: Use CPU hotplug mechanism to initialize idle shadow + stacks (git-fixes). +- commit 4265ef9 + +------------------------------------------------------------------- +Wed Oct 30 14:08:07 CET 2024 - petr.pavlu@suse.com + +- mm: khugepaged: fix the arguments order in + khugepaged_collapse_file trace point (git-fixes). +- commit 43546b6 + +------------------------------------------------------------------- +Wed Oct 30 13:50:31 CET 2024 - petr.pavlu@suse.com + +- tracing/hwlat: Fix a race during cpuhp processing (git-fixes). +- tracing/timerlat: Fix a race during cpuhp processing + (git-fixes). +- tracing/timerlat: Drop interface_lock in stop_kthread() + (git-fixes). +- tracing/timerlat: Fix duplicated kthread creation due to CPU + online/offline (git-fixes). +- tracing/osnoise: Fix build when timerlat is not enabled + (git-fixes). +- tracing/timerlat: Add interface_lock around clearing of kthread + in stop_kthread() (git-fixes). +- tracing/timerlat: Only clear timer if a kthread exists + (git-fixes). +- tracing/osnoise: Use a cpumask to know what threads are kthreads + (git-fixes). +- tracing/timerlat: Move hrtimer_init to timerlat_fd open() + (git-fixes). +- tracing/timerlat: Add user-space interface (git-fixes). +- tracing/osnoise: Skip running osnoise if all instances are off + (git-fixes). +- tracing/osnoise: Switch from PF_NO_SETAFFINITY to + migrate_disable (git-fixes). +- commit 8482ad0 + +------------------------------------------------------------------- +Wed Oct 30 12:23:56 CET 2024 - ailiop@suse.com + +- ocfs2: pass u64 to ocfs2_truncate_inline maybe overflow + (git-fixes). +- commit 24fea60 + +------------------------------------------------------------------- +Wed Oct 30 11:58:24 CET 2024 - nik.borisov@suse.com + +- Refresh patches.suse/x86-fix-user-address-masking-non-canonical-speculation-iss.patch. (bsc#1232529) + Give check_range a unique label. Otherwise the macro's 1b label + conflicts with __get_user_1's 1 label and this causes the exception fixup + entry, installed at the end of the file to match the wrong thing. + Instead of matching __get_user_1's 1b label it will match check_range's 1b + label when this macro is expanded for the last time in __get_user_8. + This fixes intermittent random crashes when copying data from userspace. +- commit 3a35fd0 + +------------------------------------------------------------------- +Wed Oct 30 11:24:28 CET 2024 - petr.pavlu@suse.com + +- jump_label: Fix static_key_slow_dec() yet again (git-fixes). +- commit ab363f5 + +------------------------------------------------------------------- +Wed Oct 30 09:20:29 CET 2024 - petr.pavlu@suse.com + +- SUNRPC: Fixup gss_status tracepoint error output (git-fixes). +- commit 84cc417 + +------------------------------------------------------------------- +Tue Oct 29 21:07:53 CET 2024 - dsterba@suse.com + +- drm/amd/display: Deallocate DML memory if allocation fails (CVE-2024-49972 bsc#1232315) +- commit dd5ab13 + +------------------------------------------------------------------- +Tue Oct 29 20:59:47 CET 2024 - dsterba@suse.com + +- drm/amd/display: Check stream before comparing them (CVE-2024-49896 bsc#1232221) +- commit 930546b + +------------------------------------------------------------------- +Tue Oct 29 20:55:31 CET 2024 - dsterba@suse.com + +- drm/amd/pm: ensure the fw_info is not null before using it (CVE-2024-49890 bsc#1232217) +- commit a0e8b9f + +------------------------------------------------------------------- +Tue Oct 29 20:41:30 CET 2024 - dsterba@suse.com + +- drm/amd/display: Initialize get_bytes_per_element's default to 1 (CVE-2024-49892 bsc#1232220) +- commit e1539d0 + +------------------------------------------------------------------- +Tue Oct 29 18:41:23 CET 2024 - dsterba@suse.com + +- drivers/perf: Fix ali_drw_pmu driver interrupt status clearing (CVE-2024-47731 bsc#1232117) +- commit 774dc33 + +------------------------------------------------------------------- +Tue Oct 29 18:39:12 CET 2024 - dsterba@suse.com + +- padata: use integer wrap around to prevent deadlock on seq_nr overflow (CVE-2024-47739 bsc#1232124) +- commit 7e58560 + +------------------------------------------------------------------- +Tue Oct 29 18:33:16 CET 2024 - dsterba@suse.com + +- media: mediatek: vcodec: Fix H264 stateless decoder smatch warning (CVE-2024-47752 bsc#1232130) +- commit 086cd43 + +------------------------------------------------------------------- +Tue Oct 29 18:31:07 CET 2024 - dsterba@suse.com + +- media: mediatek: vcodec: Fix H264 multi stateless decoder smatch warning (CVE-2024-47754 bsc#1232131) +- commit dacb1c6 + +------------------------------------------------------------------- +Tue Oct 29 18:01:27 CET 2024 - dsterba@suse.com + +- media: mediatek: vcodec: Fix VP8 stateless decoder smatch warning (CVE-2024-47753 bsc#1231868) +- commit fed66a9 + +------------------------------------------------------------------- +Tue Oct 29 17:34:26 CET 2024 - vkarasulli@suse.de + +- iommu/vt-d: Always reserve a domain ID for identity setup + (git-fixes). +- commit f7ecad0 + +------------------------------------------------------------------- +Tue Oct 29 16:38:55 CET 2024 - dsterba@suse.com + +- btrfs: clean up our handling of refs == 0 in snapshot delete (CVE-2024-46840 bsc#1231105) +- commit 788d396 + +------------------------------------------------------------------- +Tue Oct 29 16:33:10 CET 2024 - shung-hsi.yu@suse.com + +- kABI: bpf: struct bpf_map kABI workaround (CVE-2024-50063 + bsc#1232435). +- selftests/bpf: Add test for lsm tail call (CVE-2024-50063 + bsc#1232435). +- bpf: Prevent tail call between progs attached to different hooks + (CVE-2024-50063 bsc#1232435). +- commit 666246a + +------------------------------------------------------------------- +Tue Oct 29 16:03:50 CET 2024 - vkarasulli@suse.de + +- iommu/vt-d: Fix incorrect pci_for_each_dma_alias() for non-PCI + devices (git-fixes). +- commit 28951a9 + +------------------------------------------------------------------- +Tue Oct 29 14:55:33 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check null pointers before multiple uses (bsc#1232313 CVE-2024-49920) +- commit 5447aa1 + +------------------------------------------------------------------- +Tue Oct 29 10:57:15 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check link_res->hpo_dp_link_enc before using it (bsc#1231944) +- commit bf57b96 + +------------------------------------------------------------------- +Tue Oct 29 10:52:49 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check null-initialized variables (bsc#1232222 CVE-2024-49898) +- commit a00bfda + +------------------------------------------------------------------- +Tue Oct 29 09:40:48 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check link_res->hpo_dp_link_enc before using it (bsc#1231944 CVE-2024-47704) +- commit 931c899 + +------------------------------------------------------------------- +Tue Oct 29 08:12:37 CET 2024 - tiwai@suse.de + +- spi: spi-fsl-dspi: Fix crash when not using GPIO chip select + (git-fixes). +- spi: mtk-snfi: fix kerneldoc for mtk_snand_is_page_ops() + (git-fixes). +- spi: atmel-quadspi: Fix wrong register value written to MR + (git-fixes). +- commit fd0b348 + +------------------------------------------------------------------- +Mon Oct 28 23:06:31 CET 2024 - krisman@suse.de + +- crypto: stm32/cryp - call finalize with bh disabled + (CVE-2024-47658 bsc#1231436). +- commit 2854148 + +------------------------------------------------------------------- +Mon Oct 28 16:17:52 CET 2024 - henrique.carvalho@suse.com + +- smb: client: fix UAF in async decryption (bsc#1232418 + CVE-2024-50047). +- commit 381863e + +------------------------------------------------------------------- +Mon Oct 28 15:09:34 CET 2024 - tbogendoerfer@suse.de + +- e1000e: fix force smbus during suspend flow (git-fixes). +- commit f9cbf12 + +------------------------------------------------------------------- +Mon Oct 28 15:02:07 CET 2024 - fdmanana@suse.com + +- btrfs: wait for fixup workers before stopping cleaner kthread + during umount (bsc#1232262 CVE-2024-49867). +- btrfs: fix race setting file private on concurrent lseek using + same fd (bsc#1231869 CVE-2024-47741). +- commit af36a3e + +------------------------------------------------------------------- +Mon Oct 28 14:33:54 CET 2024 - tbogendoerfer@suse.de + +- ppp: fix ppp_async_encode() illegal access (CVE-2024-50035 + bsc#1232392). +- net: avoid potential underflow in qdisc_pkt_len_init() with UFO + (CVE-2024-49949 bsc#1232160). +- commit f4bcea0 + +------------------------------------------------------------------- +Mon Oct 28 14:17:25 CET 2024 - tbogendoerfer@suse.de + +- ice: map XDP queues to vectors in ice_vsi_map_rings_to_vectors() + (git-fixes). +- Refresh + patches.suse/ice-move-netif_queue_set_napi-to-rtnl-protected-sect.patch. +- commit 7b44c3c + +------------------------------------------------------------------- +Mon Oct 28 14:14:48 CET 2024 - tbogendoerfer@suse.de + +- net/mlx5: Check capability for fw_reset (git-fixes). +- Refresh + patches.suse/net-mlx5-Fix-MTMP-register-capability-offset-in-MCAM.patch. +- commit 480249d + +------------------------------------------------------------------- +Mon Oct 28 14:08:05 CET 2024 - tbogendoerfer@suse.de + +- net/mlx5e: Don't call cleanup on profile rollback failure + (git-fixes). +- net/mlx5: Unregister notifier on eswitch init failure + (git-fixes). +- net/mlx5: Fix command bitmask initialization (git-fixes). +- net/mlx5: Check for invalid vector index on EQ creation + (git-fixes). +- e1000e: change I219 (19) devices to ADP (git-fixes). +- ice: Flush FDB entries before reset (git-fixes). +- ice: Fix netif_is_ice() in Safe Mode (git-fixes). +- ice: fix VLAN replay after reset (git-fixes). +- ice: disallow DPLL_PIN_STATE_SELECTABLE for dpll output pins + (git-fixes). +- ice: clear port vlan config during reset (git-fixes). +- ice: set correct dst VSI in only LAN filters (git-fixes). +- net/mlx5: Added cond_resched() to crdump collection (git-fixes). +- vduse: avoid using __GFP_NOFAIL (git-fixes). +- igb: Always call igb_xdp_ring_update_tail() under Tx lock + (git-fixes). +- ice: fix VSI lists confusion when adding VLANs (git-fixes). +- ice: fix accounting for filters shared by multiple VSIs + (git-fixes). +- ice: Fix lldp packets dropping after changing the number of + channels (git-fixes). +- net/mlx5: Add missing masks and QoS bit masks for scheduling + elements (git-fixes). +- net/mlx5: Explicitly set scheduling element and TSAR type + (git-fixes). +- net/mlx5e: Add missing link mode to ptys2ext_ethtool_map + (git-fixes). +- net/mlx5e: Add missing link modes to ptys2ethtool_map + (git-fixes). +- net/mlx5: Update the list of the PCI supported devices + (git-fixes). +- ice: do not bring the VSI up, if it was down before the XDP + setup (git-fixes). +- igc: Unlock on error in igc_io_resume() (git-fixes). +- igb: Fix not clearing TimeSync interrupts for 82580 (git-fixes). +- ice: fix truesize operations for PAGE_SIZE >= 8192 (git-fixes). +- ice: fix ICE_LAST_OFFSET formula (git-fixes). +- ice: fix page reuse when PAGE_SIZE is over 8k (git-fixes). +- cxgb4: add forgotten u64 ivlan cast before shift (git-fixes). +- igc: Fix qbv tx latency by setting gtxoffset (git-fixes). +- igc: Fix reset adapter logics when tx mode change (git-fixes). +- igc: Fix qbv_config_change_errors logics (git-fixes). +- igc: Fix packet still tx after gate close by reducing i226 + MAC retry buffer (git-fixes). +- net/mlx5e: Correctly report errors for ethtool rx flows + (git-fixes). +- ice: Fix reset handler (git-fixes). +- idpf: fix UAFs when destroying the queues (git-fixes). +- idpf: fix memleak in vport interrupt configuration (git-fixes). +- idpf: fix memory leaks and crashes while performing a soft reset + (git-fixes). +- igc: Fix double reset adapter triggered from a single taprio + cmd (git-fixes). +- net/mlx5e: Add a check for the return value from + mlx5_port_set_eth_ptys (git-fixes). +- net/mlx5e: Require mlx5 tc classifier action support for IPsec + prio capability (git-fixes). +- net/mlx5: Lag, don't use the hardcoded value of the first port + (git-fixes). +- net/mlx5: Fix error handling in irq_pool_request_irq + (git-fixes). +- ice: add missing WRITE_ONCE when clearing ice_rx_ring::xdp_prog + (git-fixes). +- ice: replace synchronize_rcu with synchronize_net (git-fixes). +- ice: don't busy wait for Rx queue disable in ice_qp_dis() + (git-fixes). +- ice: respect netif readiness in AF_XDP ZC related ndo's + (git-fixes). +- gve: Fix an edge case for TSO skb validity check (git-fixes). +- ice: Fix recipe read procedure (git-fixes). +- gve: Fix XDP TX completion handling when counters overflow + (git-fixes). +- RDMA/mlx5: Use sq timestamp as QP timestamp when RoCE is + disabled (git-fixes). +- idpf: avoid bloating &idpf_q_vector with big %NR_CPUS + (git-fixes). +- i40e: Fix XDP program unloading while removing the driver + (git-fixes). +- ice: use proper macro for testing bit (git-fixes). +- ice: Reject pin requests with unsupported flags (git-fixes). +- e1000e: Fix S0ix residency on corporate systems (git-fixes). +- net/mlx5e: Add mqprio_rl cleanup and free in + mlx5e_priv_cleanup() (git-fixes). +- ice: Rebuild TC queues on VSI queue reconfiguration (git-fixes). +- bnxt_en: Restore PTP tx_avail count in case of skb_pad() error + (git-fixes). +- ice: Fix VSI list rule with ICE_SW_LKUP_LAST type (git-fixes). +- ice: implement AQ download pkg retry (git-fixes). +- ice: fix 200G link speed message log (git-fixes). +- ice: avoid IRQ collision to fix init failure on ACPI S3 resume + (git-fixes). +- bnxt_en: Cap the size of HWRM_PORT_PHY_QCFG forwarded response + (git-fixes). +- gve: ignore nonrelevant GSO type bits when processing TSO + headers (git-fixes). +- net/mlx5e: Fix features validation check for tunneled UDP + (non-VXLAN) packets (git-fixes). +- ice: add flag to distinguish reset from .ndo_bpf in XDP rings + config (git-fixes). +- ice: remove af_xdp_zc_qps bitmap (git-fixes). +- ice: fix reads from NVM Shadow RAM on E830 and E825-C devices + (git-fixes). +- ice: fix iteration of TLVs in Preserved Fields Area (git-fixes). +- net/mlx5: Stop waiting for PCI if pci channel is offline + (git-fixes). +- ice: fix 200G PHY types to link speed mapping (git-fixes). +- e1000e: move force SMBUS near the end of enable_ulp function + (git-fixes). +- ice: fix accounting if a VLAN already exists (git-fixes). +- idpf: don't enable NAPI and interrupts prior to allocating Rx + buffers (git-fixes). +- net/mlx5e: Fix UDP GSO for encapsulated packets (git-fixes). +- net/mlx5e: Use rx_missed_errors instead of rx_dropped for + reporting buffer exhaustion (git-fixes). +- net/mlx5e: Fix IPsec tunnel mode offload feature check + (git-fixes). +- net/mlx5: Lag, do bond only if slaves agree on roce state + (git-fixes). +- idpf: Interpret .set_channels() input differently (git-fixes). +- ice: Interpret .set_channels() input differently (git-fixes). +- idpf: don't skip over ethtool tcp-data-split setting + (git-fixes). +- ice: Fix package download algorithm (git-fixes). +- mlx5: stop warning for 64KB pages (git-fixes). +- mlx5: avoid truncating error message (git-fixes). +- qed: avoid truncating work queue length (git-fixes). +- cxgb4: unnecessary check for 0 in the free_sge_txq_uld() + function (git-fixes). +- cxgb4: Properly lock TX queue for the selftest (git-fixes). +- net: qede: use return from qede_parse_actions() (git-fixes). +- net: qede: use return from qede_parse_flow_attr() for flow_spec + (git-fixes). +- net: qede: use return from qede_parse_flow_attr() for flower + (git-fixes). +- net: qede: sanitize 'rc' in qede_add_tc_flower_fltr() + (git-fixes). +- iavf: Fix TC config comparison with existing adapter TC config + (git-fixes). +- i40e: Report MFS in decimal base instead of hex (git-fixes). +- eth: bnxt: fix counting packets discarded due to OOM and netpoll + (git-fixes). +- bnxt_en: Fix error recovery for 5760X (P7) chips (git-fixes). +- bnxt_en: Fix the PCI-AER routines (git-fixes). +- bnxt_en: refactor reset close code (git-fixes). +- ice: Fix checking for unsupported keys on non-tunnel device + (git-fixes). +- ice: tc: allow zero flags in parsing tc flower (git-fixes). +- ice: tc: check src_vsi in case of traffic from VF (git-fixes). +- vdpa: Fix an error handling path in eni_vdpa_probe() + (git-fixes). +- vdpa_sim_blk: allocate the buffer zeroed (git-fixes). +- vdpa_sim_blk: Fix the potential leak of mgmt_dev (git-fixes). +- commit 58c03fe + +------------------------------------------------------------------- +Mon Oct 28 10:54:33 CET 2024 - nik.borisov@suse.com + +- dcache: keep dentry_hashtable or d_hash_shift even when not used (git-fixes). +- commit d6ce9b3 + +------------------------------------------------------------------- +Mon Oct 28 09:28:40 CET 2024 - nik.borisov@suse.com + +- x86: fix user address masking non-canonical speculation issue (git-fixes). +- commit 561e50e + +------------------------------------------------------------------- +Mon Oct 28 09:19:21 CET 2024 - nik.borisov@suse.com + +- x86: make the masked_user_access_begin() macro use its argument only once (git-fixes). +- commit aa2495e + +------------------------------------------------------------------- +Mon Oct 28 09:19:02 CET 2024 - nik.borisov@suse.com + +- x86: do the user address masking outside the user access area (git-fixes). +- commit a4b9c7b + +------------------------------------------------------------------- +Mon Oct 28 09:13:19 CET 2024 - nik.borisov@suse.com + +- x86: support user address masking instead of non-speculative conditional (git-fixes). +- commit 6536d1f + +------------------------------------------------------------------- +Mon Oct 28 09:03:43 CET 2024 - nik.borisov@suse.com + +- runtime constants: add x86 architecture support (git-fixes). +- commit 32e2def + +------------------------------------------------------------------- +Mon Oct 28 09:03:24 CET 2024 - nik.borisov@suse.com + +- runtime constants: add default dummy infrastructure (git-fixes). +- commit dd17ee6 + +------------------------------------------------------------------- +Mon Oct 28 09:03:06 CET 2024 - nik.borisov@suse.com + +- vfs: dcache: move hashlen_hash() from callers into d_hash() (git-fixes). +- commit c440ebe + +------------------------------------------------------------------- +Mon Oct 28 07:13:50 CET 2024 - ohering@suse.de + +- hv_netvsc: Fix VF namespace also in synthetic NIC NETDEV_REGISTER event (git-fixes). +- commit 3dc5225 + +------------------------------------------------------------------- +Sat Oct 26 10:57:53 CEST 2024 - tiwai@suse.de + +- Drop USB dwc2 patch that caused a regression on RPi3 (bsc#1232342) +- commit c84227d + +------------------------------------------------------------------- +Sat Oct 26 10:00:49 CEST 2024 - tiwai@suse.de + +- ACPI: PRM: Clean up guid type in struct prm_handler_info + (git-fixes). +- commit 8c8a801 + +------------------------------------------------------------------- +Sat Oct 26 09:59:51 CEST 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Add subwoofer quirk for Acer Predator G9-593 + (stable-fixes). +- commit 595e400 + +------------------------------------------------------------------- +Sat Oct 26 09:58:45 CEST 2024 - tiwai@suse.de + +- ACPI: PRM: Find EFI_MEMORY_RUNTIME block for PRM handler and + context (git-fixes). +- ata: libata: Set DID_TIME_OUT for commands that actually timed + out (git-fixes). +- ASoC: max98388: Fix missing increment of variable slot_found + (git-fixes). +- ASoC: qcom: Fix NULL Dereference in + asoc_qcom_lpass_cpu_platform_probe() (git-fixes). +- ALSA: hda/realtek: Update default depop procedure (git-fixes). +- ALSA: hda/tas2781: select CRC32 instead of CRC32_SARWATE + (git-fixes). +- ALSA: firewire-lib: Avoid division by zero in + apply_constraint_to_size() (git-fixes). +- cpufreq/amd-pstate: Fix amd_pstate mode switch on shared memory + systems (git-fixes). +- ntb: intel: Fix the NULL vs IS_ERR() bug for + debugfs_create_dir() (git-fixes). +- commit 33d7ff7 + +------------------------------------------------------------------- +Fri Oct 25 19:09:16 CEST 2024 - vkarasulli@suse.de + +- platform/x86: x86-android-tablets: Fix use after free on + platform_device_register() errors (bsc#1232093 CVE-2024-49986). +- commit a5650bf + +------------------------------------------------------------------- +Fri Oct 25 18:45:05 CEST 2024 - vkarasulli@suse.de + +- thermal: core: Free tzp copy along with the thermal zone + (bsc#1231951 CVE-2024-50027). +- commit 5199a1f + +------------------------------------------------------------------- +Fri Oct 25 18:24:47 CEST 2024 - vkarasulli@suse.de + +- device-dax: correct pgoff align in dax_set_mapping() + (bsc#1231956 CVE-2024-50022). +- commit 527a95e + +------------------------------------------------------------------- +Fri Oct 25 17:54:38 CEST 2024 - tiwai@suse.de + +- ntb: ntb_hw_switchtec: Fix use after free vulnerability in + switchtec_ntb_remove due to race condition (CVE-2024-50059 + bsc#1232345). +- commit 4d86c47 + +------------------------------------------------------------------- +Fri Oct 25 17:07:16 CEST 2024 - vbabka@suse.cz + +- mm: call the security_mmap_file() LSM hook in remap_file_pages() + (CVE-2024-47745 bsc#1232135). +- commit 18a36ea + +------------------------------------------------------------------- +Fri Oct 25 14:54:04 CEST 2024 - sjaeckel@suse.de + +- Bluetooth: L2CAP: Fix uaf in l2cap_connect (CVE-2024-49950 + bsc#1232159). +- commit c906740 + +------------------------------------------------------------------- +Fri Oct 25 12:50:22 CEST 2024 - sjaeckel@suse.de + +- rxrpc: Fix a race between socket set up and I/O thread creation + (CVE-2024-49864 bsc#1232256). +- commit 9a8fa8a + +------------------------------------------------------------------- +Fri Oct 25 12:07:23 CEST 2024 - ailiop@suse.com + +- jfs: Fix sanity check in dbMount (git-fixes). +- commit 82a9085 + +------------------------------------------------------------------- +Fri Oct 25 11:29:51 CEST 2024 - tbogendoerfer@suse.de + +- net/mlx5e: Fix NULL deref in mlx5e_tir_builder_alloc() + (CVE-2024-50000 bsc#1232085). +- commit fe8d0fb + +------------------------------------------------------------------- +Fri Oct 25 11:18:01 CEST 2024 - lhenriques@suse.de + +- ext4: fix double brelse() the buffer of the extents path + (bsc#1232200 CVE-2024-49882). +- ext4: no need to continue when the number of entries is 1 + (bsc#1232140 CVE-2024-49967). +- commit 4a7f79c + +------------------------------------------------------------------- +Fri Oct 25 10:29:35 CEST 2024 - dwagner@suse.de + +- nvme: disable CC.CRIME (NVME_CC_CRIME) (jsc#PED-9901). +- commit e02c81e + +------------------------------------------------------------------- +Fri Oct 25 10:06:22 CEST 2024 - tbogendoerfer@suse.de + +- ice: Fix improper handling of refcount in + ice_sriov_set_msix_vec_count() (CVE-2024-50020 bsc#1231989). +- Refresh patches.suse/ice-Fix-increasing-MSI-X-on-VF.patch. +- commit 879bb19 + +------------------------------------------------------------------- +Fri Oct 25 10:04:06 CEST 2024 - tbogendoerfer@suse.de + +- igb: Do not bring the device up after non-fatal error + (CVE-2024-50040 bsc#1231908). +- ice: Fix improper handling of refcount in + ice_dpll_init_rclk_pins() (CVE-2024-50021 bsc#1231957). +- ppp: do not assume bh is held in ppp_channel_bridge_input() + (CVE-2024-49946 bsc#1232164). +- net/mlx5e: Fix crash caused by calling __xfrm_state_delete() + twice (CVE-2024-49953 bsc#1232156). +- net/mlx5: Fix error path in multi-packet WQE transmit + (CVE-2024-50001 bsc#1232084). +- net: seeq: Fix use after free vulnerability in ether3 Driver + Due to Race Condition (CVE-2024-47747 bsc#1232145). +- vdpa/mlx5: Fix invalid mr resource destroy (CVE-2024-47687 + bsc#1232003). +- Revert "ixgbe: Manual AN-37 for troublesome link partners for + X550 SFI" (git-fixes). +- commit bf0d04c + +------------------------------------------------------------------- +Fri Oct 25 10:01:04 CEST 2024 - oneukum@suse.com + +- net: usb: usbnet: fix name regression (get-fixes). +- commit 05e3778 + +------------------------------------------------------------------- +Fri Oct 25 01:11:46 CEST 2024 - dsterba@suse.com + +- r8169: add tally counter fields added with RTL8125 (CVE-2024-49973 bsc#1232105) +- commit bda1225 + +------------------------------------------------------------------- +Fri Oct 25 01:06:16 CEST 2024 - dsterba@suse.com + +- crypto: hisilicon/qm - flush all work before driver removed (bsc#1232075) +- commit fe52020 + +------------------------------------------------------------------- +Fri Oct 25 01:04:40 CEST 2024 - dsterba@suse.com + +- crypto: hisilicon/qm - inject error before stopping queue (CVE-2024-47730 bsc#1232075) +- commit 2ca1dd9 + +------------------------------------------------------------------- +Thu Oct 24 23:28:01 CEST 2024 - dsterba@suse.com + +- sock_map: Add a cond_resched() in sock_hash_free() (CVE-2024-47710 bsc#1232049) +- commit 0ac9917 + +------------------------------------------------------------------- +Thu Oct 24 21:33:04 CEST 2024 - ematsumiya@suse.de + +- cifs: Fix buffer overflow when parsing NFS reparse points + (bsc#1232089, CVE-2024-49996). +- commit f42a100 + +------------------------------------------------------------------- +Thu Oct 24 21:19:19 CEST 2024 - dsterba@suse.com + +- netfilter: nf_reject_ipv6: fix nf_reject_ip6_tcphdr_put() (CVE-2024-47685 bsc#1231998) +- commit 8da2621 + +------------------------------------------------------------------- +Thu Oct 24 21:07:16 CEST 2024 - dsterba@suse.com + +- net: Fix an unsafe loop on the list (CVE-2024-50024 bsc#1231954) +- commit 89e6925 + +------------------------------------------------------------------- +Thu Oct 24 21:00:39 CEST 2024 - dsterba@suse.com + +- ipv6: avoid possible NULL deref in rt6_uncached_list_flush_dev() (CVE-2024-47707 bsc#1231935) +- commit cc8f915 + +------------------------------------------------------------------- +Thu Oct 24 20:40:04 CEST 2024 - dsterba@suse.com + +- netfilter: br_netfilter: fix panic with metadata_dst skb (CVE-2024-50045 bsc#1231903) +- commit e6591d1 + +------------------------------------------------------------------- +Thu Oct 24 20:01:54 CEST 2024 - dsterba@suse.com + +- block, bfq: fix possible UAF for bfqq->bic with merge chain (CVE-2024-47706 bsc#1231942) +- commit 5c1066e + +------------------------------------------------------------------- +Thu Oct 24 19:46:24 CEST 2024 - dsterba@suse.com + +- tcp: check skb is non-NULL in tcp_rto_delta_us() (CVE-2024-47684 bsc#1231987) +- commit e27a5c2 + +------------------------------------------------------------------- +Thu Oct 24 18:02:07 CEST 2024 - ohering@suse.de + +- add bug references to existing mana changes (bsc#1232033, bsc#1232034, bsc#1232036). +- commit e93ce92 + +------------------------------------------------------------------- +Thu Oct 24 14:26:39 CEST 2024 - rgoldwyn@suse.com + +- filemap: remove use of wait bookmarks (bsc#1224088). +- commit 323bb54 + +------------------------------------------------------------------- +Thu Oct 24 10:53:09 CEST 2024 - nik.borisov@suse.com + +- config: Disable LAM on x86 (bsc#1217845) + LAM is affected by speculative execution vulnerabilities so until LASS + lands it's advisable to be disabled. +- commit 405fa97 + +------------------------------------------------------------------- +Thu Oct 24 10:30:58 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: adjust global_func15 test to validate prog exit + precision (CVE-2024-47703 bsc#1231946). +- selftests/bpf: validate async callback return value check + correctness (CVE-2024-47703 bsc#1231946). +- bpf: enforce precision of R0 on program/async callback return + (CVE-2024-47703 bsc#1231946). +- bpf: unify async callback and program retval checks + (CVE-2024-47703 bsc#1231946). +- commit d5ff894 + +------------------------------------------------------------------- +Thu Oct 24 10:24:51 CEST 2024 - shung-hsi.yu@suse.com + +- bpf: enforce precise retval range on program exit + (CVE-2024-47703 bsc#1231946). +- selftests/bpf: add selftest validating callback result is + enforced (CVE-2024-47703 bsc#1231946). +- bpf: enforce exact retval range on subprog/callback exit + (CVE-2024-47703 bsc#1231946). +- Refresh patches.kabi/bpf-verifier-kABI-workarounds.patch +- bpf: provide correct register name for exception callback + retval check (CVE-2024-47703 bsc#1231946). +- bpf: rearrange bpf_func_state fields to save a bit of memory + (CVE-2024-47703 bsc#1231946). +- Refresh patches.suse/bpf-Add-some-comments-to-stack-representation.patch +- Refresh patches.kabi/bpf-verifier-kABI-workarounds.patch +- bpf: Treat first argument as return value for bpf_throw + (CVE-2024-47703 bsc#1231946). +- commit 5efe683 + +------------------------------------------------------------------- +Thu Oct 24 09:53:03 CEST 2024 - osalvador@suse.de + +- drm/amd/display: Add null check for head_pipe in + dcn32_acquire_idle_pipe_for_head_pipe_in_layer (CVE-2024-49918 + bsc#1231967). +- commit 0e6515f + +------------------------------------------------------------------- +Thu Oct 24 06:35:40 CEST 2024 - osalvador@suse.de + +- drm/amd/display: Add NULL check for clk_mgr and clk_mgr->funcs + in dcn30_init_hw (bsc#1231965 CVE-2024-49917). +- commit 0859f94 + +------------------------------------------------------------------- +Wed Oct 23 19:22:26 CEST 2024 - ailiop@suse.com + +- ocfs2: reserve space for inline xattr before attaching reflink + tree (bsc#1232151 CVE-2024-49958). +- commit 9d01096 + +------------------------------------------------------------------- +Wed Oct 23 17:43:11 CEST 2024 - iivanov@suse.de + +- arm64: probes: Fix uprobes for big-endian kernels (git-fixes) +- commit 5114e0b + +------------------------------------------------------------------- +Wed Oct 23 17:41:37 CEST 2024 - iivanov@suse.de + +- arm64: probes: Fix simulate_ldr*_literal() (git-fixes) +- commit 2795830 + +------------------------------------------------------------------- +Wed Oct 23 17:39:54 CEST 2024 - iivanov@suse.de + +- arm64: probes: Remove broken LDR (literal) uprobe support (git-fixes) +- commit 83d2001 + +------------------------------------------------------------------- +Wed Oct 23 17:38:03 CEST 2024 - dsterba@suse.com + +- spi: hisi-kunpeng: Add verification for the max_frequency provided by the firmware (CVE-2024-47664 bsc#1231442) +- commit 89945c9 + +------------------------------------------------------------------- +Wed Oct 23 17:36:35 CEST 2024 - iivanov@suse.de + +- arm64: Subscribe Microsoft Azure Cobalt 100 to erratum 3194386 (git-fixes) +- commit ad9716f + +------------------------------------------------------------------- +Wed Oct 23 17:35:13 CEST 2024 - iivanov@suse.de + +- arm64: errata: Expand speculative SSBS workaround once more (git-fixes) +- commit f66e878 + +------------------------------------------------------------------- +Wed Oct 23 17:32:20 CEST 2024 - iivanov@suse.de + +- arm64: cputype: Add Neoverse-N3 definitions (git-fixes) +- commit 6a20007 + +------------------------------------------------------------------- +Wed Oct 23 17:26:56 CEST 2024 - iivanov@suse.de + +- arm64: esr: Define ESR_ELx_EC_* constants as UL (git-fixes) +- commit 28e8491 + +------------------------------------------------------------------- +Wed Oct 23 15:17:14 CEST 2024 - pmladek@suse.com + +- printk: Add notation to console_srcu locking (bsc#1232183). +- commit b5edcce + +------------------------------------------------------------------- +Wed Oct 23 15:10:11 CEST 2024 - pmladek@suse.com + +- Update patches.suse/kthread-unpark-only-parked-kthread.patch + (git-fixes, bsc#1231990, CVE-2024-50019). +- commit 1ac001a + +------------------------------------------------------------------- +Wed Oct 23 14:57:40 CEST 2024 - nik.borisov@suse.com + +- x86/bugs: Do not use UNTRAIN_RET with IBPB on entry (git-fixes). +- commit 9059d40 + +------------------------------------------------------------------- +Wed Oct 23 14:56:36 CEST 2024 - nik.borisov@suse.com + +- x86/bugs: Skip RSB fill at VMEXIT (git-fixes). +- commit 1c2e2e9 + +------------------------------------------------------------------- +Wed Oct 23 14:55:06 CEST 2024 - mfranc@suse.cz + +- supported.conf: mark ultravisor userspace access as supported (bsc#1232090) + This is needed for secure execution attestations feature. +- commit 9d4c7ad + +------------------------------------------------------------------- +Wed Oct 23 14:54:57 CEST 2024 - nik.borisov@suse.com + +- x86/entry: Have entry_ibpb() invalidate return predictions (git-fixes). +- commit 8e4a09c + +------------------------------------------------------------------- +Wed Oct 23 14:49:23 CEST 2024 - nik.borisov@suse.com + +- x86/cpufeatures: Add a IBPB_NO_RET BUG flag (git-fixes). +- commit 4411a53 + +------------------------------------------------------------------- +Wed Oct 23 14:43:28 CEST 2024 - mfranc@suse.cz + +- config s390x: build ultravisor userspace access into the kernel (bsc#1232090) + The new s390-tools attestation-related tools depends on this. It's + better to have this built into the kernel just like in all other + branches. +- commit 25c0449 + +------------------------------------------------------------------- +Wed Oct 23 14:38:26 CEST 2024 - nik.borisov@suse.com + +- x86/cpufeatures: Define X86_FEATURE_AMD_IBPB_RET (git-fixes). +- commit 589671a + +------------------------------------------------------------------- +Wed Oct 23 12:32:05 CEST 2024 - nik.borisov@suse.com + +- x86/tdx: Fix "in-kernel MMIO" check (bsc#1232116 CVE-2024-47727). +- commit 9b65946 + +------------------------------------------------------------------- +Wed Oct 23 12:15:26 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add test for sign extension in + coerce_subreg_to_size_sx() (git-fixes). +- selftests/bpf: Add test for truncation after sign extension + in coerce_reg_to_size_sx() (git-fixes). +- bpf: Fix truncation bug in coerce_reg_to_size_sx() (git-fixes). +- selftests/bpf: Add test for sign extension in + coerce_subreg_to_size_sx() (git-fixes). +- selftests/bpf: Add test for truncation after sign extension + in coerce_reg_to_size_sx() (git-fixes). +- bpf: Fix truncation bug in coerce_reg_to_size_sx() (git-fixes). +- commit 34bee66 + +------------------------------------------------------------------- +Wed Oct 23 12:14:23 CEST 2024 - ailiop@suse.com + +- xfs: fix freeing speculative preallocations for preallocated + files (git-fixes). +- commit 80e4f70 + +------------------------------------------------------------------- +Wed Oct 23 12:10:27 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add test for lsm tail call (CVE-2024-50063). +- commit 810e00e + +------------------------------------------------------------------- +Wed Oct 23 12:08:38 CEST 2024 - ailiop@suse.com + +- xfs: make sure sb_fdblocks is non-negative (git-fixes). +- commit 258a678 + +------------------------------------------------------------------- +Wed Oct 23 12:07:27 CEST 2024 - ailiop@suse.com + +- xfs: remove a racy if_bytes check in xfs_reflink_end_cow_extent + (git-fixes). +- commit 4ab4091 + +------------------------------------------------------------------- +Wed Oct 23 12:04:39 CEST 2024 - ailiop@suse.com + +- xfs: convert delayed extents to unwritten when zeroing post + eof blocks (git-fixes). +- commit 6f12db2 + +------------------------------------------------------------------- +Wed Oct 23 12:03:32 CEST 2024 - ailiop@suse.com + +- xfs: make xfs_bmapi_convert_delalloc() to allocate the target + offset (git-fixes). +- commit 9f0f731 + +------------------------------------------------------------------- +Wed Oct 23 12:02:19 CEST 2024 - ailiop@suse.com + +- xfs: make the seq argument to xfs_bmapi_convert_delalloc() + optional (git-fixes). +- commit 504e0bc + +------------------------------------------------------------------- +Wed Oct 23 12:00:51 CEST 2024 - ailiop@suse.com + +- xfs: validate recovered name buffers when recovering xattr items + (git-fixes). +- commit a53fc5e + +------------------------------------------------------------------- +Wed Oct 23 11:59:30 CEST 2024 - ailiop@suse.com + +- xfs: check shortform attr entry flags specifically (git-fixes). +- commit 621ec11 + +------------------------------------------------------------------- +Wed Oct 23 11:55:40 CEST 2024 - shung-hsi.yu@suse.com + +- kABI: bpf: struct bpf_map kABI workaround (CVE-2024-50063). +- bpf: Prevent tail call between progs attached to different hooks + (CVE-2024-50063). +- commit cef79ef + +------------------------------------------------------------------- +Wed Oct 23 11:55:39 CEST 2024 - ailiop@suse.com + +- xfs: check opcode and iovec count match in + xlog_recover_attri_commit_pass2 (git-fixes). +- commit 2398ba4 + +------------------------------------------------------------------- +Wed Oct 23 11:55:00 CEST 2024 - ailiop@suse.com + +- fat: fix uninitialized variable (git-fixes). +- commit 77f5dad + +------------------------------------------------------------------- +Wed Oct 23 11:12:53 CEST 2024 - osalvador@suse.de + +- drm/amd/display: Add null check for head_pipe in + dcn201_acquire_free_pipe_for_layer (CVE-2024-49919 bsc#1231968). +- commit ff31b31 + +------------------------------------------------------------------- +Wed Oct 23 09:42:16 CEST 2024 - tbogendoerfer@suse.de + +- slip: make slhc_remember() more robust against malicious packets + (CVE-2024-50033 bsc#1231914). +- i40e: Fix macvlan leak by synchronizing access to + mac_filter_hash (CVE-2024-50041 bsc#1231907). +- ice: Fix increasing MSI-X on VF (CVE-2024-50042 bsc#1231906). +- commit a1fb8a8 + +------------------------------------------------------------------- +Wed Oct 23 08:18:07 CEST 2024 - tiwai@suse.de + +- pinctrl: ocelot: fix system hang on level based interrupts + (stable-fixes). +- tty: n_gsm: Fix use-after-free in gsm_cleanup_mux + (stable-fixes). +- USB: serial: option: add Telit FN920C04 MBIM compositions + (stable-fixes). +- USB: serial: option: add support for Quectel EG916Q-GL + (stable-fixes). +- drm/vmwgfx: Handle surface check failure correctly (git-fixes). +- drm/amdgpu/swsmu: Only force workload setup on init (git-fixes). +- drm/radeon: Fix encoder->possible_clones (git-fixes). +- commit 4fdf5d1 + +------------------------------------------------------------------- +Wed Oct 23 08:11:28 CEST 2024 - tiwai@suse.de + +- thermal: core: Reference count the zone in + thermal_zone_get_by_id() (CVE-2024-50028 bsc#1231950). +- commit a5813a1 + +------------------------------------------------------------------- +Wed Oct 23 05:24:11 CEST 2024 - shung-hsi.yu@suse.com + +- bpf: Fix a sdiv overflow issue (CVE-2024-49888 bsc#1232208). +- commit ce8f994 + +------------------------------------------------------------------- +Tue Oct 22 23:11:46 CEST 2024 - ailiop@suse.com + +- kabi fix for NFSv4: Prevent NULL-pointer dereference in + nfs42_complete_copies() (bsc#1231902 CVE-2024-50046). +- NFSv4: Prevent NULL-pointer dereference in + nfs42_complete_copies() (bsc#1231902 CVE-2024-50046). +- commit e5e1a89 + +------------------------------------------------------------------- +Tue Oct 22 15:54:23 CEST 2024 - vbabka@suse.cz + +- zram: don't free statically defined names (CVE-2024-50064 + bsc#1231901). +- commit 645eb93 + +------------------------------------------------------------------- +Tue Oct 22 15:52:01 CEST 2024 - vbabka@suse.cz + +- zram: free secondary algorithms names (CVE-2024-50064 + bsc#1231901). +- commit 293822f + +------------------------------------------------------------------- +Tue Oct 22 12:43:04 CEST 2024 - lhenriques@suse.de + +- block: fix potential invalid pointer dereference in + blk_add_partition (bsc#1231872 CVE-2024-47705). +- block: print symbolic error name instead of error code + (bsc#1231872). +- commit fcde2ed + +------------------------------------------------------------------- +Tue Oct 22 12:01:45 CEST 2024 - ddiss@suse.de + +- nfsd: return -EINVAL when namelen is 0 (CVE-2024-47692 + bsc#1231857). +- commit 9ee6831 + +------------------------------------------------------------------- +Tue Oct 22 11:56:22 CEST 2024 - jslaby@suse.cz + +- PCI: Fix pci_enable_acs() support for the ACS quirks (bsc#1229019). +- commit 1bd1860 + +------------------------------------------------------------------- +Tue Oct 22 11:40:54 CEST 2024 - ailiop@suse.com + +- nilfs2: fix kernel bug due to missing clearing of buffer delay + flag (git-fixes). +- commit 472d949 + +------------------------------------------------------------------- +Mon Oct 21 17:08:33 CEST 2024 - jgross@suse.com + +- Update + patches.suse/xen-move-max_pfn-in-xen_memory_setup-out-of-function.patch + (bsc#1226003 bsc#1231828). +- commit ec3e6a6 + +------------------------------------------------------------------- +Mon Oct 21 13:43:20 CEST 2024 - nik.borisov@suse.com + +- x86/sev: Check for MWAITX and MONITORX opcodes in the #VC handler (git-fixes). +- commit 23789e3 + +------------------------------------------------------------------- +Mon Oct 21 13:41:00 CEST 2024 - nik.borisov@suse.com + +- x86/apic: Make x2apic_disable() work correctly (git-fixes). +- commit 546101e + +------------------------------------------------------------------- +Mon Oct 21 13:28:12 CEST 2024 - nik.borisov@suse.com + +- x86/entry: Remove unwanted instrumentation in common_interrupt() (git-fixes). +- commit 846156b + +------------------------------------------------------------------- +Mon Oct 21 13:16:04 CEST 2024 - nik.borisov@suse.com + +- x86/mm: Use IPIs to synchronize LAM enablement (git-fixes). +- commit 8a7a0be + +------------------------------------------------------------------- +Mon Oct 21 13:07:35 CEST 2024 - nik.borisov@suse.com + +- x86/amd_nb: Add new PCI IDs for AMD family 1Ah model 60h (git-fixes). +- commit 60a5f34 + +------------------------------------------------------------------- +Mon Oct 21 13:03:52 CEST 2024 - nik.borisov@suse.com + +- x86/PCI: Check pcie_find_root_port() return for NULL (git-fixes). +- commit 7c1cc11 + +------------------------------------------------------------------- +Mon Oct 21 12:43:44 CEST 2024 - vbabka@suse.cz + +- maple_tree: correct tree corruption on spanning store + (git-fixes). +- commit 2b034f1 + +------------------------------------------------------------------- +Mon Oct 21 12:35:07 CEST 2024 - nik.borisov@suse.com + +- x86/resctrl: Avoid overflow in MB settings in bw_validate() (git-fixes). +- commit b2f0d6d + +------------------------------------------------------------------- +Mon Oct 21 12:34:47 CEST 2024 - nik.borisov@suse.com + +- x86/resctrl: Annotate get_mem_config() functions as __init (git-fixes). +- commit 7e80f38 + +------------------------------------------------------------------- +Mon Oct 21 12:21:56 CEST 2024 - nik.borisov@suse.com + +- x86/apic: Always explicitly disarm TSC-deadline timer (git-fixes). +- commit 312d3e7 + +------------------------------------------------------------------- +Mon Oct 21 12:19:13 CEST 2024 - nik.borisov@suse.com + +- x86/CPU/AMD: Only apply Zenbleed fix for Zen2 during late microcode load (git-fixes). +- commit 0cb125d + +------------------------------------------------------------------- +Mon Oct 21 12:08:59 CEST 2024 - davide.benini@suse.com + +- ethtool: fail closed if we can't get max channel used in + indirection tables (CVE-2024-46834 bsc#1231096). +- commit 5cacc93 + +------------------------------------------------------------------- +Mon Oct 21 09:41:04 CEST 2024 - tiwai@suse.de + +- Bluetooth: btusb: Fix regression with fake CSR controllers + 0a12:0001 (git-fixes). +- Bluetooth: bnep: fix wild-memory-access in proto_unregister + (git-fixes). +- Bluetooth: Remove debugfs directory on module init failure + (git-fixes). +- Bluetooth: Call iso_exit() on module unload (git-fixes). +- Bluetooth: ISO: Fix multiple init when debugfs is disabled + (git-fixes). +- pinctrl: apple: check devm_kasprintf() returned value + (git-fixes). +- parport: Proper fix for array out-of-bounds access (git-fixes). +- iio: frequency: admv4420: fix missing select REMAP_SPI in + Kconfig (git-fixes). +- iio: adc: ti-ads8688: add missing select IIO_(TRIGGERED_)BUFFER + in Kconfig (git-fixes). +- iio: hid-sensors: Fix an error handling path in + _hid_sensor_set_report_latency() (git-fixes). +- iio: dac: stm32-dac-core: add missing select REGMAP_MMIO in + Kconfig (git-fixes). +- iio: dac: ltc1660: add missing select REGMAP_SPI in Kconfig + (git-fixes). +- iio: dac: ad5770r: add missing select REGMAP_SPI in Kconfig + (git-fixes). +- iio: amplifiers: ada4250: add missing select REGMAP_SPI in + Kconfig (git-fixes). +- iio: frequency: adf4377: add missing select REMAP_SPI in Kconfig + (git-fixes). +- iio: proximity: mb1232: add missing select + IIO_(TRIGGERED_)BUFFER in Kconfig (git-fixes). +- iio: dac: ad5766: add missing select IIO_(TRIGGERED_)BUFFER + in Kconfig (git-fixes). +- iio: dac: ad3552r: add missing select IIO_(TRIGGERED_)BUFFER + in Kconfig (git-fixes). +- iio: adc: ti-lmp92064: add missing select REGMAP_SPI in Kconfig + (git-fixes). +- iio: adc: ti-ads124s08: add missing select + IIO_(TRIGGERED_)BUFFER in Kconfig (git-fixes). +- iio: accel: kx022a: add missing select IIO_(TRIGGERED_)BUFFER + in Kconfig (git-fixes). +- iio: light: veml6030: fix ALS sensor resolution (git-fixes). +- iio: light: opt3001: add missing full-scale range value + (git-fixes). +- iio: light: veml6030: fix IIO device retrieval from embedded + device (git-fixes). +- iio: accel: bma400: Fix uninitialized variable field_value in + tap event handling (git-fixes). +- serial: imx: Update mctrl old_status on RTSD interrupt + (git-fixes). +- vt: prevent kernel-infoleak in con_font_get() (git-fixes). +- xhci: Mitigate failed set dequeue pointer commands (git-fixes). +- xhci: Fix incorrect stream context type macro (git-fixes). +- xhci: tegra: fix checked USB2 port number (git-fixes). +- usb: dwc3: Wait for EndXfer completion before restoring + GUSB2PHYCFG (git-fixes). +- usb: typec: altmode should keep reference to parent (git-fixes). +- commit 5e08e81 + +------------------------------------------------------------------- +Sat Oct 19 19:14:25 CEST 2024 - mfranc@suse.cz + +- supported.conf: mark nhpoly1305 module as supported (bsc#1231035) + In 59d03d7c990c, we marked adiantum as a supported module, I'm afraid + we need to mark nhpoly1305 as supported too (as a dependecy) if we + want adiantum to work. + This makes tcrypt test case 219 (adiantum) pass on SLE15-SP6 (tested + on z15 VM). +- commit 01d2906 + +------------------------------------------------------------------- +Fri Oct 18 19:31:45 CEST 2024 - tbogendoerfer@suse.de + +- vmxnet3: Fix packet corruption in vmxnet3_xdp_xmit_frame + (bsc#1226498). +- vmxnet3: Fix missing reserved tailroom (bsc#1226498). +- commit 1bd55aa + +------------------------------------------------------------------- +Fri Oct 18 14:00:12 CEST 2024 - tbogendoerfer@suse.de + +- vmxnet3: update to version 9 (bsc#1226498). +- vmxnet3: add command to allow disabling of offloads + (bsc#1226498). +- vmxnet3: add latency measurement support in vmxnet3 + (bsc#1226498). +- vmxnet3: prepare for version 9 changes (bsc#1226498). +- vmxnet3: Add XDP support (bsc#1226498). +- commit 3fdc8e3 + +------------------------------------------------------------------- +Fri Oct 18 11:38:13 CEST 2024 - ailiop@suse.com + +- SUNRPC: Fix integer overflow in decode_rc_list() (git-fixes). +- commit 15be003 + +------------------------------------------------------------------- +Fri Oct 18 11:37:32 CEST 2024 - ailiop@suse.com + +- NFSD: Mark filecache "down" if init fails (git-fixes). +- commit ceca4b8 + +------------------------------------------------------------------- +Fri Oct 18 11:34:31 CEST 2024 - ailiop@suse.com + +- SUNRPC: clnt.c: Remove misleading comment (git-fixes). +- commit 2e12710 + +------------------------------------------------------------------- +Fri Oct 18 11:26:40 CEST 2024 - ailiop@suse.com + +- nfs: fix memory leak in error path of nfs4_do_reclaim + (git-fixes). +- commit 1994ef6 + +------------------------------------------------------------------- +Fri Oct 18 11:24:48 CEST 2024 - ailiop@suse.com + +- nfsd: fix delegation_blocked() to block correctly for at least + 30 seconds (git-fixes). +- commit f66078d + +------------------------------------------------------------------- +Fri Oct 18 11:23:40 CEST 2024 - ailiop@suse.com + +- nfsd: return -EINVAL when namelen is 0 (git-fixes). +- commit 1bc1c36 + +------------------------------------------------------------------- +Fri Oct 18 11:22:25 CEST 2024 - ailiop@suse.com + +- nfsd: call cache_put if xdr_reserve_space returns NULL + (git-fixes). +- commit 003f784 + +------------------------------------------------------------------- +Fri Oct 18 11:21:41 CEST 2024 - ailiop@suse.com + +- nfsd: map the EBADMSG to nfserr_io to avoid warning (git-fixes). +- commit 5b8020a + +------------------------------------------------------------------- +Fri Oct 18 11:20:45 CEST 2024 - ailiop@suse.com + +- NFSD: Fix NFSv4's PUTPUBFH operation (git-fixes). +- commit 88290fb + +------------------------------------------------------------------- +Fri Oct 18 11:19:24 CEST 2024 - ailiop@suse.com + +- nfsd: fix refcount leak when file is unhashed after being found + (git-fixes). +- commit 5a551a1 + +------------------------------------------------------------------- +Fri Oct 18 11:18:34 CEST 2024 - ailiop@suse.com + +- nfsd: remove unneeded EEXIST error check in nfsd_do_file_acquire + (git-fixes). +- commit 6d18e0e + +------------------------------------------------------------------- +Fri Oct 18 11:17:44 CEST 2024 - ailiop@suse.com + +- NFS: Avoid unnecessary rescanning of the per-server delegation + list (git-fixes). +- commit e5841ef + +------------------------------------------------------------------- +Fri Oct 18 11:16:15 CEST 2024 - ailiop@suse.com + +- NFSv4: Fix clearing of layout segments in layoutreturn + (git-fixes). +- commit ec4c812 + +------------------------------------------------------------------- +Fri Oct 18 10:01:52 CEST 2024 - tiwai@suse.de + +- ALSA: hda/conexant - Use cached pin control for Node 0x1d on + HP EliteOne 1000 G2 (git-fixes). +- ALSA/hda: intel-sdw-acpi: simplify sdw-master-count property + read (stable-fixes). +- ALSA/hda: intel-sdw-acpi: fetch fwnode once in + sdw_intel_scan_controller() (stable-fixes). +- ALSA/hda: intel-sdw-acpi: cleanup sdw_intel_scan_controller + (stable-fixes). +- ALSA: hda/tas2781: Add new quirk for Lenovo, ASUS, Dell projects + (stable-fixes). +- ALSA: line6: update contact information (stable-fixes). +- ALSA: hda/conexant - Fix audio routing for HP EliteOne 1000 G2 + (stable-fixes). +- ALSA: hda: Sound support for HP Spectre x360 16 inch model 2024 + (stable-fixes). +- commit fb6c2ec + +------------------------------------------------------------------- +Fri Oct 18 09:54:54 CEST 2024 - tiwai@suse.de + +- firmware: arm_scmi: Fix the double free in + scmi_debugfs_common_setup() (git-fixes). +- ALSA: hda/cs8409: Fix possible NULL dereference (git-fixes). +- netdevsim: use cond_resched() in nsim_dev_trap_report_work() + (git-fixes). +- macsec: don't increment counters for an unrelated SA + (git-fixes). +- net: usb: usbnet: fix race in probe failure (git-fixes). +- HID: plantronics: Workaround for an unexcepted opposite volume + key (stable-fixes). +- usb: xhci: Fix problem with xhci resume from suspend + (stable-fixes). +- usb: storage: ignore bogus device raised by JieLi BR21 USB + sound chip (stable-fixes). +- net: phy: Remove LED entry from LEDs list on unregister + (git-fixes). +- net: phy: bcm84881: Fix some error handling paths (git-fixes). +- net: phy: dp83869: fix memory corruption when enabling fiber + (git-fixes). +- kthread: unpark only parked kthread (git-fixes). +- unicode: Don't special case ignorable code points + (stable-fixes). +- fbdev: sisfb: Fix strbuf array overflow (stable-fixes). +- fbcon: Fix a NULL pointer dereference issue in fbcon_putcs + (stable-fixes). +- drm/amd/display: Check null pointer before dereferencing se + (stable-fixes). +- driver core: bus: Fix double free in driver API bus_register() + (stable-fixes). +- driver core: bus: Return -EIO instead of 0 when show/store + invalid bus attribute (stable-fixes). +- comedi: ni_routing: tools: Check when the file could not be + opened (stable-fixes). +- serial: protect uart_port_dtr_rts() in uart_shutdown() too + (stable-fixes). +- usb: dwc2: Adjust the timing of USB Driver Interrupt + Registration in the Crashkernel Scenario (stable-fixes). +- usb: chipidea: udc: enable suspend interrupt after usb reset + (stable-fixes). +- i3c: master: cdns: Fix use after free vulnerability in + cdns_i3c_master Driver Due to Race Condition (stable-fixes). +- media: videobuf2-core: clear memory related fields in + __vb2_plane_dmabuf_put() (stable-fixes). +- clk: imx: Remove CLK_SET_PARENT_GATE for DRAM mux for i.MX7D + (stable-fixes). +- clk: bcm: bcm53573: fix OF node leak in init (stable-fixes). +- i2c: i801: Use a different adapter-name for IDF adapters + (stable-fixes). +- mfd: intel_soc_pmic_chtwc: Make Lenovo Yoga Tab 3 X90F DMI + match less strict (stable-fixes). +- soundwire: intel_bus_common: enable interrupts before exiting + reset (stable-fixes). +- PCI: Mark Creative Labs EMU20k2 INTx masking as broken + (stable-fixes). +- PCI: Add ACS quirk for Qualcomm SA8775P (stable-fixes). +- PCI: Add function 0 DMA alias quirk for Glenfly Arise chip + (stable-fixes). +- drm/amd/display: Revert "Check HDCP returned status" + (stable-fixes). +- HID: multitouch: Add support for lenovo Y9000P Touchpad + (stable-fixes). +- drm/amd/display: Remove a redundant check in authenticated_dp + (stable-fixes). +- HID: i2c-hid: Remove I2C_HID_QUIRK_SET_PWR_WAKEUP_DEV quirk + (stable-fixes). +- commit f829d20 + +------------------------------------------------------------------- +Fri Oct 18 08:40:12 CEST 2024 - nmorey@suse.com + +- RDMA/mlx5: Enforce umem boundaries for explicit ODP page faults (git-fixes) +- commit b9b835e + +------------------------------------------------------------------- +Fri Oct 18 08:39:51 CEST 2024 - nmorey@suse.com + +- RDMA/rtrs-srv: Avoid null pointer deref during path establishment (git-fixes) +- commit cf9eccb + +------------------------------------------------------------------- +Fri Oct 18 08:39:22 CEST 2024 - nmorey@suse.com + +- RDMA/mad: Improve handling of timed out WRs of mad agent (git-fixes) +- commit 72bef76 + +------------------------------------------------------------------- +Thu Oct 17 16:49:47 CEST 2024 - krisman@suse.de + +- io_uring/sqpoll: do not put cpumask on stack (git-fixes). +- io_uring/sqpoll: retain test for whether the CPU is valid + (git-fixes). +- commit ff84c2d + +------------------------------------------------------------------- +Thu Oct 17 11:49:13 CEST 2024 - vbabka@suse.cz + +- mm: avoid leaving partial pfn mappings around in error case + (CVE-2024-47674 bsc#1231673). +- commit 83d1625 + +------------------------------------------------------------------- +Thu Oct 17 09:29:21 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Avoid CPU lockups due fifo occupancy check loop (git-fixes) +- commit 21fb93d + +------------------------------------------------------------------- +Thu Oct 17 09:24:11 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix the GID table length (git-fixes) +- commit 6a0779e + +------------------------------------------------------------------- +Thu Oct 17 09:22:54 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix a bug while setting up Level-2 PBL pages (git-fixes) +- commit d91ede3 + +------------------------------------------------------------------- +Thu Oct 17 09:21:04 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Change the sequence of updating the CQ toggle value (git-fixes) +- commit 414cbde + +------------------------------------------------------------------- +Thu Oct 17 09:17:35 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Return more meaningful error (git-fixes) +- commit 6755798 + +------------------------------------------------------------------- +Thu Oct 17 09:16:17 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix incorrect dereference of srq in async event (git-fixes) +- commit 4e1ef61 + +------------------------------------------------------------------- +Thu Oct 17 09:15:12 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix out of bound check (git-fixes) +- commit d8d1339 + +------------------------------------------------------------------- +Thu Oct 17 09:12:59 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix the max CQ WQEs for older adapters (git-fixes) +- commit 598626b + +------------------------------------------------------------------- +Thu Oct 17 09:12:17 CEST 2024 - nmorey@suse.com + +- RDMA/srpt: Make slab cache names unique (git-fixes) +- commit 29c0fcb + +------------------------------------------------------------------- +Thu Oct 17 09:04:27 CEST 2024 - nmorey@suse.com + +- RDMA/irdma: Fix misspelling of "accept*" (git-fixes) +- commit 2566da7 + +------------------------------------------------------------------- +Thu Oct 17 09:03:06 CEST 2024 - nmorey@suse.com + +- RDMA/cxgb4: Fix RDMA_CM_EVENT_UNREACHABLE error for iWARP (git-fixes) +- commit 89fa27f + +------------------------------------------------------------------- +Thu Oct 17 08:59:43 CEST 2024 - nmorey@suse.com + +- RDMA/core: Fix ENODEV error for iWARP test over vlan (git-fixes) +- commit 4c15511 + +------------------------------------------------------------------- +Thu Oct 17 08:59:08 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Add a check for memory allocation (git-fixes) +- commit abea295 + +------------------------------------------------------------------- +Thu Oct 17 08:56:53 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix incorrect AVID type in WQE structure (git-fixes) +- commit ae91db1 + +------------------------------------------------------------------- +Thu Oct 17 08:56:20 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix a possible memory leak (git-fixes) +- commit 77c3f34 + +------------------------------------------------------------------- +Wed Oct 16 22:23:03 CEST 2024 - krisman@suse.de + +- io_uring/rw: fix cflags posting for single issue multishot read + (git-fixes). +- commit 320c7ee + +------------------------------------------------------------------- +Wed Oct 16 22:12:58 CEST 2024 - krisman@suse.de + +- io_uring/net: harden multishot termination case for recv + (git-fixes). +- commit 6529e65 + +------------------------------------------------------------------- +Wed Oct 16 20:26:49 CEST 2024 - krisman@suse.de + +- io_uring: check for presence of task_work rather than + TIF_NOTIFY_SIGNAL (git-fixes). +- commit 5b92400 + +------------------------------------------------------------------- +Wed Oct 16 20:18:34 CEST 2024 - krisman@suse.de + +- io_uring/io-wq: inherit cpuset of cgroup in io worker + (git-fixes). +- commit 474a07e + +------------------------------------------------------------------- +Wed Oct 16 20:13:50 CEST 2024 - krisman@suse.de + +- io_uring/io-wq: do not allow pinning outside of cpuset + (git-fixes). +- commit e99d8a8 + +------------------------------------------------------------------- +Wed Oct 16 19:57:51 CEST 2024 - krisman@suse.de + +- io_uring/rw: treat -EOPNOTSUPP for IOCB_NOWAIT like -EAGAIN + (git-fixes). +- io_uring/sqpoll: do not allow pinning outside of cpuset + (git-fixes). +- commit 37d0dce + +------------------------------------------------------------------- +Wed Oct 16 19:53:10 CEST 2024 - krisman@suse.de + +- io_uring/eventfd: move to more idiomatic RCU free usage + (git-fixes). +- commit 4e262c3 + +------------------------------------------------------------------- +Wed Oct 16 18:23:27 CEST 2024 - jack@suse.cz + +- udf: Avoid excessive partition lengths (bsc#1230773 + CVE-2024-46777). +- commit ec61258 + +------------------------------------------------------------------- +Wed Oct 16 18:23:13 CEST 2024 - jack@suse.cz + +- fsnotify: clear PARENT_WATCHED flags lazily (bsc#1231439 + CVE-2024-47660). +- commit 133a7e9 + +------------------------------------------------------------------- +Wed Oct 16 15:56:19 CEST 2024 - davide.benini@suse.com + +- netem: fix return value if duplicate enqueue fails + (CVE-2024-45016 bsc#1230429). +- commit 8c9c269 + +------------------------------------------------------------------- +Wed Oct 16 13:36:45 CEST 2024 - oneukum@suse.com + +- media: pci: ipu3-cio2: Initialise timing struct to avoid a + compiler warning (git-fixes). +- commit c21df3e + +------------------------------------------------------------------- +Wed Oct 16 12:34:26 CEST 2024 - oneukum@suse.com + +- wifi: rtw88: Fix USB/SDIO devices not transmitting beacons + (git-fixes). +- commit d46bb93 + +------------------------------------------------------------------- +Wed Oct 16 11:48:31 CEST 2024 - msuchanek@suse.de + +- crypto: powerpc/p10-aes-gcm - Add dependency on CRYPTO_SIMD and + re-enable CRYPTO_AES_GCM_P10 (bsc#1230501 ltc#208632). + - Update config files. +- crypto: powerpc/p10-aes-gcm - Register modules as SIMD + (bsc#1230501 ltc#208632). +- crypto: powerpc/p10-aes-gcm - Re-write AES/GCM stitched + implementation (bsc#1230501 ltc#208632). +- crypto: powerpc/p10-aes-gcm - Disable CRYPTO_AES_GCM_P10 + (bsc#1230501 ltc#208632). +- powerpc/crypto: don't build aes-gcm-p10 by default (bsc#1230501 + ltc#208632). +- powerpc/crypto: fix missing skcipher dependency for aes-gcm-p10 + (bsc#1230501 ltc#208632). +- commit a579f42 + +------------------------------------------------------------------- +Tue Oct 15 15:39:00 CEST 2024 - oneukum@suse.com + +- powercap: intel_rapl: Fix off by one in get_rpi() (git-fixes). +- commit 6c73c0c + ------------------------------------------------------------------- Tue Oct 15 14:45:11 CEST 2024 - mgorman@suse.de @@ -5,12 +6017,1289 @@ Tue Oct 15 14:45:11 CEST 2024 - mgorman@suse.de - No -rt specific changes this merge. - commit b49e7e5 +------------------------------------------------------------------- +Tue Oct 15 12:49:45 CEST 2024 - tzimmermann@suse.com + +- drm/amd/display: Disable DMCUB timeout for DCN35 (bsc#1231435 CVE-2024-46870) +- commit 0a39326 + +------------------------------------------------------------------- +Tue Oct 15 10:25:38 CEST 2024 - tzimmermann@suse.com + +- drm/amd/display: Add disable timeout option (bsc#1231435) +- commit cb303b5 + +------------------------------------------------------------------- +Tue Oct 15 08:38:57 CEST 2024 - tiwai@suse.de + +- Refresh patches.suse/paddings-add-paddings-to-TypeC-stuff.patch + Drop superfluous file mode modifications in the patch that broke the + patch expansion recently +- commit e7ac9e1 + +------------------------------------------------------------------- +Tue Oct 15 08:04:58 CEST 2024 - tiwai@suse.de + +- Move upstreamed scsi patch into sorted section +- commit 5db43b0 + +------------------------------------------------------------------- +Mon Oct 14 17:30:00 CEST 2024 - mkubecek@suse.cz + +- nbd: fix race between timeout and normal completion + (bsc#1230918). +- commit 57c54c8 + +------------------------------------------------------------------- +Mon Oct 14 16:34:18 CEST 2024 - lhenriques@suse.de + +- ext4: mark fc as ineligible using an handle in ext4_xattr_set() + (bsc#1231640). +- ext4: use handle to mark fc as ineligible in + __track_dentry_update() (bsc#1231639). +- jbd2: correctly compare tids with tid_geq function in + jbd2_fc_begin_commit (bsc#1231638). +- ext4: fix incorrect tid assumption in ext4_fc_mark_ineligible() + (bsc#1231637). +- ext4: fix fast commit inode enqueueing during a full journal + commit (bsc#1231636). +- ext4: don't track ranges in fast_commit if inode has inlined + data (bsc#1231635). +- ext4: fix possible tid_t sequence overflows (bsc#1231634). +- commit 6951914 + +------------------------------------------------------------------- +Mon Oct 14 15:56:50 CEST 2024 - oneukum@suse.com + +- net: sysfs: Fix /sys/class/net/ path for statistics + (git-fixes). +- commit 54925d7 + +------------------------------------------------------------------- +Mon Oct 14 15:54:12 CEST 2024 - oneukum@suse.com + +- devlink: Fix command annotation documentation (git-fixes). +- commit 2b95827 + +------------------------------------------------------------------- +Mon Oct 14 15:44:49 CEST 2024 - oneukum@suse.com + +- x86/Documentation: Indent 'note::' directive for protocol + version number note (git-fixes). +- commit ec31602 + +------------------------------------------------------------------- +Mon Oct 14 15:42:12 CEST 2024 - ddiss@suse.de + +- mm/filemap: optimize filemap folio adding (bsc#1231617). +- lib/xarray: introduce a new helper xas_get_order (bsc#1231617). +- mm/filemap: return early if failed to allocate memory for split + (bsc#1231617). +- commit c3c5888 + +------------------------------------------------------------------- +Mon Oct 14 15:32:15 CEST 2024 - oneukum@suse.com + +- srcu: Fix callbacks acceleration mishandling (git-fixes). +- task_work: add kerneldoc annotation for 'data' argument + (git-fixes). +- commit a4661ee + +------------------------------------------------------------------- +Mon Oct 14 08:34:06 CEST 2024 - tiwai@suse.de + +- HID: amd_sfh: Switch to device-managed dmam_alloc_coherent() + (git-fixes). +- hid: intel-ish-hid: Fix uninitialized variable 'rv' in + ish_fw_xfer_direct_dma (git-fixes). +- usb: dwc3: core: Stop processing of pending events if controller + is halted (git-fixes). +- usb: gadget: core: force synchronous registration (git-fixes). +- commit 2bb6fd5 + +------------------------------------------------------------------- +Sun Oct 13 09:19:15 CEST 2024 - tiwai@suse.de + +- hwmon: (adt7470) Add missing dependency on REGMAP_I2C + (git-fixes). +- hwmon: (adm9240) Add missing dependency on REGMAP_I2C + (git-fixes). +- hwmon: (mc34vr500) Add missing dependency on REGMAP_I2C + (git-fixes). +- hwmon: (tmp513) Add missing dependency on REGMAP_I2C + (git-fixes). +- hwmon: intel-m10-bmc-hwmon: relabel Columbiaville to CVL Die + Temperature (git-fixes). +- commit 07e1f67 + +------------------------------------------------------------------- +Sat Oct 12 10:12:54 CEST 2024 - tiwai@suse.de + +- gpio: aspeed: Use devm_clk api to manage clock source + (git-fixes). +- gpio: aspeed: Add the flush write to ensure the write complete + (git-fixes). +- ata: libata: avoid superfluous disk spin down + spin up during + hibernation (git-fixes). +- nouveau/dmem: Fix vulnerability in migrate_to_ram upon copy + error (git-fixes). +- nouveau/dmem: Fix privileged error in copy engine channel + (git-fixes). +- drm/vc4: Stop the active perfmon before being destroyed + (git-fixes). +- drm/v3d: Stop the active perfmon before being destroyed + (git-fixes). +- drm/i915/hdcp: fix connector refcounting (git-fixes). +- commit 8534efe + +------------------------------------------------------------------- +Sat Oct 12 05:12:33 CEST 2024 - shung-hsi.yu@suse.com + +- kABI: bpf: struct bpf_insn_acces_aux kABI workaround (git-fixes). +- commit c2cff36 + +------------------------------------------------------------------- +Fri Oct 11 18:25:31 CEST 2024 - vkarasulli@suse.de + +- Update patches.suse/ASoC-meson-axg-card-fix-use-after-free.patch + (git-fixes CVE-2024-46849 bsc#1231073). +- Update + patches.suse/KVM-x86-Acquire-kvm-srcu-when-handling-KVM_SET_VCPU_.patch + (git-fixes CVE-2024-46830 bsc#1231116). +- Update + patches.suse/PCI-keystone-Add-workaround-for-Errata-i2037-AM65x-S.patch + (stable-fixes CVE-2024-47667 bsc#1231481). +- Update patches.suse/USB-usbtmc-prevent-kernel-usb-infoleak.patch + (git-fixes CVE-2024-47671 bsc#1231541). +- Update patches.suse/arm64-tlb-Fix-TLBI-RANGE-operand.patch + (bsc#1229585 CVE-2024-35980 bsc#1224574). +- Update + patches.suse/dma-buf-heaps-Fix-off-by-one-in-CMA-heap-fault-handl.patch + (git-fixes CVE-2024-46852 bsc#1231082). +- Update + patches.suse/drm-amd-amdgpu-Check-tbo-resource-pointer.patch + (stable-fixes CVE-2024-46807 bsc#1231138). +- Update + patches.suse/drm-amd-display-Add-array-index-check-for-hdcp-ddc-a.patch + (stable-fixes CVE-2024-46804 bsc#1231132). +- Update + patches.suse/drm-amd-display-Avoid-overflow-from-uint32_t-to-uint.patch + (stable-fixes CVE-2024-47661 bsc#1231496). +- Update + patches.suse/drm-amd-display-Avoid-race-between-dcn10_set_drr-and.patch + (git-fixes CVE-2024-46851 bsc#1231081). +- Update + patches.suse/drm-amd-display-Check-BIOS-images-before-it-is-used.patch + (stable-fixes CVE-2024-46809 bsc#1231148). +- Update + patches.suse/drm-amd-display-Check-gpio_id-before-used-as-array-i.patch + (stable-fixes CVE-2024-46818 bsc#1231203). +- Update + patches.suse/drm-amd-display-Check-msg_id-before-processing-trans.patch + (stable-fixes CVE-2024-46814 bsc#1231193). +- Update + patches.suse/drm-amd-display-Check-num_valid_sets-before-accessin.patch + (stable-fixes CVE-2024-46815 bsc#1231195). +- Update + patches.suse/drm-amd-display-Correct-the-defined-value-for-AMDGPU.patch + (stable-fixes CVE-2024-46871 bsc#1231434). +- Update + patches.suse/drm-amd-display-Fix-index-may-exceed-array-range-wit.patch + (stable-fixes CVE-2024-46811 bsc#1231179). +- Update + patches.suse/drm-amd-display-Remove-register-from-DCN35-DMCUB-dia.patch + (stable-fixes CVE-2024-47662 bsc#1231440). +- Update + patches.suse/drm-amd-display-Skip-inactive-planes-within-ModeSupp.patch + (stable-fixes CVE-2024-46812 bsc#1231187). +- Update + patches.suse/drm-amd-display-Stop-amdgpu_dm-initialize-when-strea.patch + (stable-fixes CVE-2024-46817 bsc#1231200). +- Update + patches.suse/drm-amd-display-added-NULL-check-at-start-of-dc_vali.patch + (stable-fixes CVE-2024-46802 bsc#1231111). +- Update + patches.suse/drm-amd-pm-Fix-negative-array-index-read.patch + (stable-fixes CVE-2024-46821 bsc#1231169). +- Update + patches.suse/drm-amdgpu-Fix-smatch-static-checker-warning.patch + (stable-fixes CVE-2024-46835 bsc#1231098). +- Update + patches.suse/drm-amdgpu-Fix-the-warning-division-or-modulo-by-zer.patch + (stable-fixes CVE-2024-46806 bsc#1231136). +- Update + patches.suse/drm-amdgpu-fix-the-waring-dereferencing-hive.patch + (stable-fixes CVE-2024-46805 bsc#1231135). +- Update + patches.suse/drm-amdgpu-the-warning-dereferencing-obj-for-nbio_v7.patch + (stable-fixes CVE-2024-46819 bsc#1231202). +- Update + patches.suse/drm-amdkfd-Check-debug-trap-enable-before-write-dbg_.patch + (stable-fixes CVE-2024-46803 bsc#1231131). +- Update + patches.suse/drm-bridge-tc358767-Check-if-fully-initialized-befor.patch + (stable-fixes CVE-2024-46810 bsc#1231178). +- Update + patches.suse/i3c-mipi-i3c-hci-Error-out-instead-on-BUG_ON-in-IBI-.patch + (stable-fixes CVE-2024-47665 bsc#1231452). +- Update + patches.suse/lib-generic-radix-tree.c-Fix-rare-race-in-__genradix.patch + (stable-fixes CVE-2024-47668 bsc#1231502). +- Update + patches.suse/msft-hv-3054-x86-hyperv-fix-kexec-crash-due-to-VP-assist-page-cor.patch + (git-fixes CVE-2024-46864 bsc#1231108). +- Update + patches.suse/nilfs2-fix-state-management-in-error-path-of-log-writing-function.patch + (git-fixes CVE-2024-47669 bsc#1231474). +- Update + patches.suse/ocfs2-add-bounds-checking-to-ocfs2_xattr_find_entry.patch + (bsc#1228410 CVE-2024-41016 CVE-2024-47670 bsc#1231537). +- Update + patches.suse/perf-x86-intel-Limit-the-period-on-Haswell.patch + (git-fixes CVE-2024-46848 bsc#1231072). +- Update + patches.suse/platform-x86-panasonic-laptop-Fix-SINF-array-out-of-.patch + (git-fixes CVE-2024-46859 bsc#1231089). +- Update + patches.suse/rcu-Fix-buffer-overflow-in-print_cpu_stall_info.patch + (bsc#1226623 CVE-2024-38576). +- Update + patches.suse/rcu-tasks-Fix-show_rcu_tasks_trace_gp_kthread-buffer-overflow.patch + (bsc#1226631 CVE-2024-38577). +- Update + patches.suse/scsi-lpfc-Handle-mailbox-timeouts-in-lpfc_get_sfp_in.patch + (bsc#1228857 CVE-2024-46842 bsc#1231101). +- Update + patches.suse/spi-nxp-fspi-fix-the-KASAN-report-out-of-bounds-bug.patch + (git-fixes CVE-2024-46853 bsc#1231083). +- Update + patches.suse/spi-rockchip-Resolve-unbalanced-runtime-PM-system-PM.patch + (git-fixes CVE-2024-46846 bsc#1231075). +- Update + patches.suse/staging-iio-frequency-ad9834-Validate-frequency-para.patch + (git-fixes CVE-2024-47663 bsc#1231441). +- Update + patches.suse/usb-gadget-aspeed_udc-validate-endpoint-index-for-as.patch + (stable-fixes CVE-2024-46836 bsc#1231092). +- Update + patches.suse/usbnet-ipheth-do-not-stop-RX-on-failing-RX-callback.patch + (git-fixes CVE-2024-46861 bsc#1231102). +- Update + patches.suse/wifi-ath12k-fix-firmware-crash-due-to-invalid-peer-n.patch + (stable-fixes CVE-2024-46827 bsc#1231171). +- Update + patches.suse/wifi-iwlwifi-mvm-don-t-wait-for-tx-queues-if-firmwar.patch + (stable-fixes CVE-2024-47672 bsc#1231540). +- Update + patches.suse/wifi-iwlwifi-mvm-pause-TCM-when-the-firmware-is-stop.patch + (stable-fixes CVE-2024-47673 bsc#1231539). +- Update + patches.suse/wifi-iwlwifi-mvm-use-IWL_FW_CHECK-for-link-ID-check.patch + (stable-fixes CVE-2024-46825 bsc#1231170). +- Update + patches.suse/wifi-mt76-mt7921-fix-NULL-pointer-access-in-mt7921_i.patch + (stable-fixes CVE-2024-46860 bsc#1231093). +- commit 1ed6329 + +------------------------------------------------------------------- +Fri Oct 11 14:36:01 CEST 2024 - mgorman@suse.de + +- sched/smt: Fix unbalance sched_smt_present dec/inc + (CVE-2024-44958 bsc#1230179). +- sched/smt: Introduce sched_smt_present_inc/dec() helper + (CVE-2024-44958 bsc#1230179). +- commit b09820b + +------------------------------------------------------------------- +Fri Oct 11 13:25:41 CEST 2024 - tiwai@suse.de + +- crypto: octeontx* - Select CRYPTO_AUTHENC (git-fixes). +- commit 155c418 + +------------------------------------------------------------------- +Fri Oct 11 13:23:57 CEST 2024 - tiwai@suse.de + +- spi: spi-imx: Fix pm_runtime_set_suspended() with runtime pm + enabled (git-fixes). +- spi: s3c64xx: fix timeout counters in flush_fifo (git-fixes). +- i2c: synquacer: Deal with optional PCLK correctly (git-fixes). +- media: imx335: Fix reset-gpio handling (git-fixes). +- i2c: xiic: Try re-initialization on bus busy timeout + (git-fixes). +- platform/x86: touchscreen_dmi: add nanote-next quirk + (stable-fixes). +- platform/x86: lenovo-ymc: Ignore the 0x0 state (stable-fixes). +- hwmon: (nct6775) add G15CF to ASUS WMI monitoring list + (stable-fixes). +- power: reset: brcmstb: Do not go into infinite loop if reset + fails (stable-fixes). +- wifi: ath9k_htc: Use __skb_set_length() for resetting urb + before resubmit (stable-fixes). +- wifi: mt76: mt7915: hold dev->mt76.mutex while disabling tx + worker (stable-fixes). +- wifi: mt76: mt7915: add dummy HW offload of IEEE 802.11 + fragmentation (stable-fixes). +- wifi: mt76: mt7915: disable tx worker during tx BA session + enable/disable (stable-fixes). +- wifi: rtw89: avoid reading out of bounds when loading TX power + FW elements (stable-fixes). +- wifi: rtw89: correct base HT rate mask for firmware + (stable-fixes). +- wifi: mwifiex: Fix memcpy() field-spanning write warning in + mwifiex_cmd_802_11_scan_ext() (stable-fixes). +- wifi: cfg80211: Set correct chandef when starting CAC + (stable-fixes). +- wifi: mac80211: fix RCU list iterations (stable-fixes). +- wifi: iwlwifi: mvm: avoid NULL pointer dereference + (stable-fixes). +- wifi: iwlwifi: allow only CN mcc from WRDD (stable-fixes). +- wifi: iwlwifi: mvm: drop wrong STA selection in TX + (stable-fixes). +- wifi: iwlwifi: mvm: Fix a race in scan abort flow + (stable-fixes). +- wifi: iwlwifi: mvm: use correct key iteration (stable-fixes). +- wifi: ath9k: fix possible integer overflow in + ath9k_get_et_stats() (stable-fixes). +- wifi: ath11k: fix array out-of-bound access in SoC stats + (stable-fixes). +- wifi: ath12k: fix array out-of-bound access in SoC stats + (stable-fixes). +- wifi: rtw89: avoid to add interface to list twice when SER + (stable-fixes). +- wifi: rtw88: select WANT_DEV_COREDUMP (stable-fixes). +- i2c: xiic: improve error message when transfer fails to start + (stable-fixes). +- i2c: synquacer: Remove a clk reference from struct synquacer_i2c + (stable-fixes). +- media: i2c: imx335: Enable regulator supplies (stable-fixes). +- commit 490fb1f + +------------------------------------------------------------------- +Fri Oct 11 13:16:10 CEST 2024 - tiwai@suse.de + +- ALSA: usb-audio: Replace complex quirk lines with macros + (stable-fixes). +- commit 6f67136 + +------------------------------------------------------------------- +Fri Oct 11 13:14:26 CEST 2024 - tiwai@suse.de + +- Bluetooth: RFCOMM: FIX possible deadlock in + rfcomm_sk_state_change (git-fixes). +- ACPI: battery: Fix possible crash when unregistering a battery + hook (git-fixes). +- ACPI: battery: Simplify battery hook locking (stable-fixes). +- ACPI: resource: Add Asus ExpertBook B2502CVA to + irq1_level_low_skip_override[] (stable-fixes). +- ACPI: resource: Add Asus Vivobook X1704VAP to + irq1_level_low_skip_override[] (stable-fixes). +- HID: Ignore battery for all ELAN I2C-HID devices (stable-fixes). +- HID: multitouch: Add support for Thinkpad X12 Gen 2 Kbd + Portfolio (stable-fixes). +- ASoC: codecs: wsa883x: Handle reading version failure + (stable-fixes). +- ALSA: usb-audio: Add logitech Audio profile quirk + (stable-fixes). +- ALSA: usb-audio: Define macros for quirk table entries + (stable-fixes). +- ALSA: hdsp: Break infinite MIDI input flush loop (stable-fixes). +- ALSA: asihpi: Fix potential OOB array access (stable-fixes). +- ALSA: usb-audio: Add input value sanity checks for standard + types (stable-fixes). +- ACPI: PAD: fix crash in exit_round_robin() (stable-fixes). +- ACPI: video: Add force_vendor quirk for Panasonic Toughbook + CF-18 (stable-fixes). +- ACPI: CPPC: Add support for setting EPP register in FFH + (stable-fixes). +- ACPI: EC: Do not release locks during operation region accesses + (stable-fixes). +- ACPICA: iasl: handle empty connection_node (stable-fixes). +- ACPICA: Fix memory leak if acpi_ps_get_next_field() fails + (stable-fixes). +- ACPICA: Fix memory leak if acpi_ps_get_next_namepath() fails + (stable-fixes). +- ACPICA: check null return of ACPI_ALLOCATE_ZEROED() in + acpi_db_convert_to_package() (stable-fixes). +- crypto: octeontx2 - Fix authenc setkey (stable-fixes). +- crypto: octeontx - Fix authenc setkey (stable-fixes). +- Bluetooth: btusb: Add Realtek RTL8852C support ID 0x0489:0xe122 + (stable-fixes). +- can: netlink: avoid call to do_set_data_bittiming callback + with stale can_priv::ctrlmode (stable-fixes). +- commit 650f32e + +------------------------------------------------------------------- +Fri Oct 11 11:33:14 CEST 2024 - ailiop@suse.com + +- ocfs2: fix the la space leak when unmounting an ocfs2 volume + (git-fixes). +- commit 92d1b30 + +------------------------------------------------------------------- +Fri Oct 11 11:29:38 CEST 2024 - ailiop@suse.com + +- jfs: Fix uninit-value access of new_ea in ea_buffer (git-fixes). +- commit b1e0ef1 + +------------------------------------------------------------------- +Fri Oct 11 11:29:02 CEST 2024 - ailiop@suse.com + +- jfs: check if leafidx greater than num leaves per dmap tree + (git-fixes). +- commit 4cb79e7 + +------------------------------------------------------------------- +Fri Oct 11 11:28:08 CEST 2024 - ailiop@suse.com + +- jfs: Fix uaf in dbFreeBits (git-fixes). +- commit da4aab1 + +------------------------------------------------------------------- +Fri Oct 11 11:27:16 CEST 2024 - ailiop@suse.com + +- jfs: UBSAN: shift-out-of-bounds in dbFindBits (git-fixes). +- commit fee8a70 + +------------------------------------------------------------------- +Fri Oct 11 06:57:49 CEST 2024 - shung-hsi.yu@suse.com + +- kABI: bpf: enum bpf_{type_flag,arg_type} kABI workaround (git-fixes). +- commit 93e6047 + +------------------------------------------------------------------- +Thu Oct 10 19:18:41 CEST 2024 - vkarasulli@suse.de + +- iommu/amd: Allocate the page table root using GFP_KERNEL + (git-fixes). +- commit cdbbb3f + +------------------------------------------------------------------- +Thu Oct 10 19:10:13 CEST 2024 - vkarasulli@suse.de + +- iommu/amd: Fix typo of , instead of ; (git-fixes). +- commit baf85d0 + +------------------------------------------------------------------- +Thu Oct 10 17:32:18 CEST 2024 - dwagner@suse.de + +- block: sed-opal: add ioctl IOC_OPAL_SET_SID_PW (bsc#1229677). +- commit 5ca02dc + +------------------------------------------------------------------- +Thu Oct 10 11:54:20 CEST 2024 - hare@suse.de + +- nvme-multipath: suppress partition scan until the disk is ready + (bsc#1228244). +- commit 5accc60 + +------------------------------------------------------------------- +Wed Oct 9 23:52:08 CEST 2024 - krisman@suse.de + +- fix bitmap corruption on close_range() with CLOSE_RANGE_UNSHARE + (CVE-2024-45025 bsc#1230456). +- commit c3824ef + +------------------------------------------------------------------- +Wed Oct 9 19:24:22 CEST 2024 - oneukum@suse.com + +- i2c: core: Setup i2c_adapter runtime-pm before calling + device_add() (git-fixes). +- commit 5095dfb + +------------------------------------------------------------------- +Wed Oct 9 19:15:38 CEST 2024 - oneukum@suse.com + +- i2c: ismt: kill transaction in hardware on timeout (git-fixes). +- commit f6029bb + +------------------------------------------------------------------- +Wed Oct 9 19:11:31 CEST 2024 - vkarasulli@suse.de + +- iommufd: Check the domain owner of the parent before creating + a nesting domain (git-fixes). +- commit 3ff7340 + +------------------------------------------------------------------- +Wed Oct 9 19:01:29 CEST 2024 - vkarasulli@suse.de + +- iommufd: Protect against overflow of ALIGN() during iova + allocation (git-fixes). +- commit fffeb67 + +------------------------------------------------------------------- +Wed Oct 9 18:59:06 CEST 2024 - vkarasulli@suse.de + +- iommu/amd: Do not set the D bit on AMD v2 table entries + (git-fixes). +- commit e3053a9 + +------------------------------------------------------------------- +Wed Oct 9 18:58:44 CEST 2024 - oneukum@suse.com + +- i2c: omap: wakeup the controller during suspend() callback + (git-fixes). +- commit 52f3dad + +------------------------------------------------------------------- +Wed Oct 9 18:57:28 CEST 2024 - oneukum@suse.com + +- i2c: omap: switch to NOIRQ_SYSTEM_SLEEP_PM_OPS() and + RUNTIME_PM_OPS() (git-fixes). +- commit 3fe2f94 + +------------------------------------------------------------------- +Wed Oct 9 17:03:57 CEST 2024 - tiwai@suse.de + +- Drop the previous HD-audio TAS2781 fix (bsc#1230132) + The proposed fix turned out to be incorrect +- commit b3a4c29 + +------------------------------------------------------------------- +Wed Oct 9 16:10:51 CEST 2024 - rgoldwyn@suse.com + +- Update config files: Enable NFSD_V2 (bsc#1230914) + NFSv2 was disabled because of the upstream kernel commit 2f3a4b2ac2f2 + ("nfsd: allow disabling NFSv2 at compile time"). + Enable it for the few users who cannot upgrade to NFSv3. + https://bugzilla.suse.com/show_bug.cgi?id=1230914#c5 +- commit 9e3254d + ------------------------------------------------------------------- Wed Oct 9 16:07:58 CEST 2024 - nstange@suse.de - Enable livepatching related packages on -RT (jsc#PED-1706) - commit cdfdbf1 +------------------------------------------------------------------- +Wed Oct 9 15:24:02 CEST 2024 - oneukum@suse.com + +- i2c: stm32f7: perform most of irq job in threaded handler + (git-fixes). +- commit 4a35980 + +------------------------------------------------------------------- +Wed Oct 9 15:11:44 CEST 2024 - oneukum@suse.com + +- i2c: i801: Add lis3lv02d for Dell XPS 15 7590 (git-fixes). +- commit 38f58af + +------------------------------------------------------------------- +Wed Oct 9 14:59:29 CEST 2024 - oneukum@suse.com + +- i2c: i801: Add lis3lv02d for Dell Precision 3540 (git-fixes). +- commit 036aff9 + +------------------------------------------------------------------- +Wed Oct 9 14:47:22 CEST 2024 - oneukum@suse.com + +- i2c: cpm: Remove linux,i2c-index conversion from be32 + (git-fixes). +- commit 5d04b4e + +------------------------------------------------------------------- +Wed Oct 9 14:42:11 CEST 2024 - oneukum@suse.com + +- i2c: ocores: Move system PM hooks to the NOIRQ phase + (git-fixes). +- commit 0df7a53 + +------------------------------------------------------------------- +Wed Oct 9 14:41:10 CEST 2024 - oneukum@suse.com + +- i2c: ocores: Remove #ifdef guards for PM related functions + (git-fixes). +- commit ead06ad + +------------------------------------------------------------------- +Wed Oct 9 14:38:59 CEST 2024 - tiwai@suse.de + +- wifi: iwlwifi: config: label 'gl' devices as discrete + (git-fixes). +- commit 6321867 + +------------------------------------------------------------------- +Wed Oct 9 14:36:36 CEST 2024 - tiwai@suse.de + +- kconfig: qconf: fix buffer overflow in debug links (git-fixes). +- platform/x86: ISST: Fix the KASAN report slab-out-of-bounds bug + (git-fixes). +- i2c: stm32f7: Do not prepare/unprepare clock during runtime + suspend/resume (git-fixes). +- gpio: davinci: fix lazy disable (git-fixes). +- drm/i915/gem: fix bitwise and logical AND mixup (git-fixes). +- drm/sched: Always wake up correct scheduler in + drm_sched_entity_push_job (git-fixes). +- drm/sched: Add locking to drm_sched_entity_modify_sched + (git-fixes). +- drm: Consistently use struct drm_mode_rect for FB_DAMAGE_CLIPS + (git-fixes). +- Bluetooth: hci_event: Align BR/EDR JUST_WORKS paring with LE + (git-fixes). +- Bluetooth: btmrvl: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- ieee802154: Fix build error (git-fixes). +- Input: adp5589-keys - fix adp5589_gpio_get_value() (git-fixes). +- Input: adp5589-keys - fix NULL pointer dereference (git-fixes). +- drm/amdgpu/vcn: enable AV1 on both instances (stable-fixes). +- drm/amd/display: Validate backlight caps are sane + (stable-fixes). +- drm/amd/display: Skip to enable dsc if it has been off + (stable-fixes). +- drm/amd/display: Add HDMI DSC native YCbCr422 support + (stable-fixes). +- drm/amd/display: Clean up dsc blocks in accelerated mode + (stable-fixes). +- drm/amd/display: Round calculated vtotal (stable-fixes). +- efistub/tpm: Use ACPI reclaim memory for event log to avoid + corruption (stable-fixes). +- iio: magnetometer: ak8975: drop incorrect AK09116 compatible + (git-fixes). +- Input: i8042 - add TUXEDO Stellaris 15 Slim Gen6 AMD to i8042 + quirk table (stable-fixes). +- Input: i8042 - add another board name for TUXEDO Stellaris + Gen5 AMD line (stable-fixes). +- Input: i8042 - add TUXEDO Stellaris 16 Gen5 AMD to i8042 quirk + table (stable-fixes). +- hwmon: (max16065) Fix alarm attributes (git-fixes). +- ACPI: resource: Add another DMI match for the TongFang GMxXGxx + (stable-fixes). +- wifi: rtw88: 8821cu: Remove VID/PID 0bda:c82c (stable-fixes). +- ASoC: tas2781: Use of_property_read_reg() (stable-fixes). +- wifi: iwlwifi: remove AX101, AX201 and AX203 support from LNL + (stable-fixes). +- hwmon: (max16065) Remove use of i2c_match_id() (stable-fixes). +- nouveau/gsp: Avoid addressing beyond end of rpc->entries + (stable-fixes). +- thunderbolt: Improve DisplayPort tunnel setup process to be + more robust (stable-fixes). +- iio: magnetometer: ak8975: Fix 'Unexpected device' error + (git-fixes). +- iio: magnetometer: ak8975: Convert enum->pointer for data in + the match tables (stable-fixes). +- commit 85984c8 + +------------------------------------------------------------------- +Wed Oct 9 14:26:52 CEST 2024 - oneukum@suse.com + +- i2c: core: fix lockdep warning for sparsely nested adapter chain + (git-fixes). +- commit 691570d + +------------------------------------------------------------------- +Wed Oct 9 14:23:18 CEST 2024 - oneukum@suse.com + +- i2c: exynos5: Calculate t_scl_l, t_scl_h according to i2c spec + (git-fixes). +- commit cbbb120 + +------------------------------------------------------------------- +Wed Oct 9 14:15:28 CEST 2024 - oneukum@suse.com + +- i2c: i801: add helper i801_restore_regs (git-fixes). +- commit 3839f86 + +------------------------------------------------------------------- +Wed Oct 9 14:01:22 CEST 2024 - oneukum@suse.com + +- i2c: rcar: properly format a debug output (git-fixes). +- commit e7085c8 + +------------------------------------------------------------------- +Wed Oct 9 12:04:43 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add a test case to write mtu result into .rodata + (git-fixes). +- selftests/bpf: Add a test case to write strtol result into + .rodata (git-fixes). +- commit 805bbba + +------------------------------------------------------------------- +Wed Oct 9 12:03:13 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Rename ARG_PTR_TO_LONG test description + (git-fixes). +- selftests/bpf: Fix ARG_PTR_TO_LONG {half-,}uninitialized test + (git-fixes). +- bpf: Zero former ARG_PTR_TO_{LONG,INT} args in case of error + (git-fixes). +- bpf: Improve check_raw_mode_ok test for MEM_UNINIT-tagged types + (git-fixes). +- commit 4580630 + +------------------------------------------------------------------- +Wed Oct 9 11:27:23 CEST 2024 - shung-hsi.yu@suse.com + +- bpf: Fix helper writes to read-only maps (git-fixes). +- bpf: Remove truncation test in bpf_strtol and bpf_strtoul + helpers (git-fixes). +- bpf: Fix bpf_strtol and bpf_strtoul helpers for 32bit + (git-fixes). +- commit 5fc2ffd + +------------------------------------------------------------------- +Wed Oct 9 11:17:51 CEST 2024 - vkarasulli@suse.de + +- bpf: Remove tst_run from lwt_seg6local_prog_ops (bsc#1230801 + CVE-2024-46754). +- commit a7335b8 + +------------------------------------------------------------------- +Wed Oct 9 11:12:18 CEST 2024 - shung-hsi.yu@suse.com + +- bpf: Fix error message on kfunc arg type mismatch (git-fixes). +- commit 04ed437 + +------------------------------------------------------------------- +Wed Oct 9 10:59:52 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: test for malformed BPF_CORE_TYPE_ID_LOCAL + relocation (git-fixes). +- bpf: correctly handle malformed BPF_CORE_TYPE_ID_LOCAL relos + (git-fixes). +- commit 67ebe66 + +------------------------------------------------------------------- +Wed Oct 9 10:58:29 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add tests for ldsx of pkt data/data_end/data_meta + accesses (git-fixes). +- bpf: Fail verification for sign-extension of packet + data/data_end/data_meta (git-fixes). +- bpf, lsm: Add disabled BPF LSM hook list (git-fixes). +- commit df1486e + +------------------------------------------------------------------- +Wed Oct 9 10:03:28 CEST 2024 - shung-hsi.yu@suse.com + +- bpf, net: Fix a potential race in do_sock_getsockopt() + (git-fixes). +- bpf: Fix tailcall cases in test_bpf (git-fixes). +- bpf, x64: Remove tail call detection (git-fixes). +- bpf, verifier: Correct tail_call_reachable for bpf prog + (git-fixes). +- commit e072387 + +------------------------------------------------------------------- +Tue Oct 8 18:58:44 CEST 2024 - ohering@suse.de + +- add bug reference for a mana change (bsc#1229769). +- commit 64c619e + +------------------------------------------------------------------- +Tue Oct 8 17:54:22 CEST 2024 - dsterba@suse.com + +- net/sched: taprio: extend minimum interval restriction to entire cycle too (CVE-2024-36244 bsc#1226797) +- commit 5ade9d6 + +------------------------------------------------------------------- +Tue Oct 8 17:39:16 CEST 2024 - andrea.porta@suse.com + +- arm64: fix selection of HAVE_DYNAMIC_FTRACE_WITH_ARGS + (git-fixes). +- commit 7e90455 + +------------------------------------------------------------------- +Tue Oct 8 17:01:15 CEST 2024 - andrea.porta@suse.com + +- arm64: errata: Enable the AC03_CPU_38 workaround for ampere1a + (git-fixes). +- commit 994f16f + +------------------------------------------------------------------- +Tue Oct 8 16:00:31 CEST 2024 - jlee@suse.com + +- aoe: fix the potential use-after-free problem in more places + (bsc#1218562 CVE-2023-6270). +- commit 1a991ba + +------------------------------------------------------------------- +Tue Oct 8 14:34:25 CEST 2024 - tiwai@suse.de + +- ALSA: hda: tas2781: Fix missing setup at runtime PM + (bsc#1230132). +- commit 3dc7842 + +------------------------------------------------------------------- +Tue Oct 8 14:33:35 CEST 2024 - tiwai@suse.de + +- Move upstreamed sound patch into sorted section +- commit b11079c + +------------------------------------------------------------------- +Tue Oct 8 14:31:27 CEST 2024 - msuchanek@suse.de + +- kbuild,bpf: Add module-specific pahole flags for distilled + base BTF (bsc#1230414 bsc#1229450). +- kbuild: bpf: Tell pahole to DECL_TAG kfuncs (bsc#1230414 + bsc#1229450). +- kbuild, bpf: Use test-ge check for v1.25-only pahole + (bsc#1230414 bsc#1229450). +- kbuild,bpf: Switch to using --btf_features for pahole v1.26 + and later (bsc#1230414 bsc#1229450). +- kbuild: avoid too many execution of scripts/pahole-flags.sh + (bsc#1230414 bsc#1229450). +- btf, scripts: rust: drop is_rust_module.sh (bsc#1230414 + bsc#1229450). +- commit e2cacce + +------------------------------------------------------------------- +Tue Oct 8 13:40:12 CEST 2024 - tiwai@suse.de + +- Use pahole -j1 option for reproducible builds (bsc#1230414 + bsc#1229450). +- commit 340585e + +------------------------------------------------------------------- +Tue Oct 8 11:56:04 CEST 2024 - lhenriques@suse.de + +- ceph: fix cap ref leak via netfs init_request (bsc#1231384). +- commit ca24d43 + +------------------------------------------------------------------- +Tue Oct 8 11:50:08 CEST 2024 - jgross@suse.com + +- vhost/scsi: null-ptr-dereference in vhost_scsi_get_req() + (git-fixes). +- commit 267df6b + +------------------------------------------------------------------- +Tue Oct 8 11:17:47 CEST 2024 - jgross@suse.com + +- virtio_console: fix misc probe bugs (git-fixes). +- commit f7d3065 + +------------------------------------------------------------------- +Tue Oct 8 11:13:40 CEST 2024 - ohering@suse.de + +- RDMA/mana_ib: use the correct page size for mapping user-mode + doorbell page (git-fixes). +- RDMA/mana_ib: use the correct page table index based on hardware + page size (git-fixes). +- tools: hv: rm .*.cmd when make clean (git-fixes). +- x86/hyperv: Set X86_FEATURE_TSC_KNOWN_FREQ when Hyper-V provides + frequency (git-fixes). +- commit 059fd95 + +------------------------------------------------------------------- +Tue Oct 8 10:45:27 CEST 2024 - jgross@suse.com + +- KVM: VMX: Set PFERR_GUEST_{FINAL,PAGE}_MASK if and only if + the GVA is valid (git-fixes). +- commit bb6f3d3 + +------------------------------------------------------------------- +Tue Oct 8 10:13:08 CEST 2024 - jgross@suse.com + +- KVM: x86/mmu: Skip emulation on page fault iff 1+ SPs were + unprotected (git-fixes). +- commit bcfafe2 + +------------------------------------------------------------------- +Tue Oct 8 09:35:38 CEST 2024 - jgross@suse.com + +- KVM: x86/mmu: Trigger unprotect logic only on write-protection + page faults (git-fixes). +- commit 322cf36 + +------------------------------------------------------------------- +Mon Oct 7 19:31:27 CEST 2024 - jgross@suse.com + +- KVM: VMX: Also clear SGX EDECCSSA in KVM CPU caps when SGX is + disabled (git-fixes). +- commit d7b7771 + +------------------------------------------------------------------- +Mon Oct 7 19:03:42 CEST 2024 - fdmanana@suse.com + +- btrfs: send: fix invalid clone operation for file that got + its size decreased (git-fixes). +- commit 26ee3ac + +------------------------------------------------------------------- +Mon Oct 7 18:25:48 CEST 2024 - jgross@suse.com + +- KVM: x86: Exit to userspace if fastpath triggers one on + instruction skip (git-fixes). +- commit 1621f7b + +------------------------------------------------------------------- +Mon Oct 7 17:53:20 CEST 2024 - jgross@suse.com + +- KVM: x86: Dedup fastpath MSR post-handling logic (git-fixes). +- commit c20ff7c + +------------------------------------------------------------------- +Mon Oct 7 17:19:33 CEST 2024 - jgross@suse.com + +- KVM: x86: Re-enter guest if WRMSR(X2APIC_ICR) fastpath is + successful (git-fixes). +- commit 0dc4c78 + +------------------------------------------------------------------- +Mon Oct 7 16:25:12 CEST 2024 - jgross@suse.com + +- kABI fix of VM: x86: Re-split x2APIC ICR into ICR+ICR2 for AMD + (x2AVIC) (git-fixes). +- commit 0a6716e + +------------------------------------------------------------------- +Mon Oct 7 15:01:37 CEST 2024 - jgross@suse.com + +- KVM: x86: Re-split x2APIC ICR into ICR+ICR2 for AMD (x2AVIC) + (git-fixes). +- commit 6a07b23 + +------------------------------------------------------------------- +Mon Oct 7 14:28:23 CEST 2024 - jgross@suse.com + +- KVM: x86: Move x2APIC ICR helper above kvm_apic_write_nodecode() + (git-fixes). +- commit 4f194f7 + +------------------------------------------------------------------- +Mon Oct 7 14:12:30 CEST 2024 - oneukum@suse.com + +- USB: misc: yurex: fix race between read and write (git-fixes). +- commit 7f6ab55 + +------------------------------------------------------------------- +Mon Oct 7 14:07:19 CEST 2024 - oneukum@suse.com + +- USB: misc: cypress_cy7c63: check for short transfer (git-fixes). +- commit 3dcfad1 + +------------------------------------------------------------------- +Mon Oct 7 14:03:19 CEST 2024 - oneukum@suse.com + +- USB: appledisplay: close race between probe and completion + handler (git-fixes). +- commit 888718f + +------------------------------------------------------------------- +Mon Oct 7 13:37:47 CEST 2024 - jgross@suse.com + +- KVM: x86: Enforce x2APIC's must-be-zero reserved ICR bits + (git-fixes). +- commit 891c3ef + +------------------------------------------------------------------- +Mon Oct 7 13:15:47 CEST 2024 - oneukum@suse.com + +- usb: xhci: fix loss of data on Cadence xHC (git-fixes). +- commit 9e9d585 + +------------------------------------------------------------------- +Mon Oct 7 12:59:08 CEST 2024 - jgross@suse.com + +- KVM: Write the per-page "segment" when clearing (part of) + a guest page (git-fixes). +- commit dae8f10 + +------------------------------------------------------------------- +Mon Oct 7 12:51:27 CEST 2024 - oneukum@suse.com + +- xhci: Add a quirk for writing ERST in high-low order + (git-fixes). +- commit d0eccfc + +------------------------------------------------------------------- +Mon Oct 7 12:34:01 CEST 2024 - tzimmermann@suse.com + +- drm/amd/display: Validate function returns (bsc#1230774 CVE-2024-46775) +- commit fc9ad2b + +------------------------------------------------------------------- +Mon Oct 7 12:19:24 CEST 2024 - jgross@suse.com + +- KVM: Fix coalesced_mmio_has_room() to avoid premature userspace + exit (git-fixes). +- commit 93dbc58 + +------------------------------------------------------------------- +Mon Oct 7 11:39:38 CEST 2024 - jgross@suse.com + +- KVM: Use dedicated mutex to protect kvm_usage_count to avoid + deadlock (git-fixes). +- commit 2ff88a8 + +------------------------------------------------------------------- +Mon Oct 7 11:13:48 CEST 2024 - msuchanek@suse.de + +- Delete some more obsolete scripts +- commit 9bb77f8 + +------------------------------------------------------------------- +Mon Oct 7 10:44:04 CEST 2024 - jgross@suse.com + +- KVM: SVM: Disallow guest from changing userspace's + MSR_AMD64_DE_CFG value (git-fixes). +- commit c8fa16d + +------------------------------------------------------------------- +Mon Oct 7 10:19:47 CEST 2024 - pjakobsson@suse.de + +- drm/amd/display: Stop amdgpu_dm initialize when link nums greater than max_links (CVE-2024-46816 bsc#1231197). +- commit c05e7e2 + +------------------------------------------------------------------- +Mon Oct 7 10:11:27 CEST 2024 - jgross@suse.com + +- net: test for not too small csum_start in + virtio_net_hdr_to_skb() (git-fixes). +- commit ed78dff + +------------------------------------------------------------------- +Mon Oct 7 09:39:06 CEST 2024 - jgross@suse.com + +- vhost_vdpa: assign irq bypass producer token correctly + (git-fixes). +- commit 1a9cba6 + +------------------------------------------------------------------- +Mon Oct 7 09:16:13 CEST 2024 - pjakobsson@suse.de + +- drm/amd/display: Check link_index before accessing dc->links (CVE-2024-46813 bsc#1231191). +- commit eb31596 + +------------------------------------------------------------------- +Mon Oct 7 08:43:09 CEST 2024 - jgross@suse.com + +- minmax: avoid overly complex min()/max() macro arguments in xen + (git-fixes). +- Refresh + patches.suse/xen-move-max_pfn-in-xen_memory_setup-out-of-function.patch. +- commit 754808b + +------------------------------------------------------------------- +Sat Oct 5 09:18:57 CEST 2024 - tiwai@suse.de + +- ALSA: hda/conexant: Fix conflicting quirk for System76 Pangolin + (git-fixes). +- ALSA: line6: add hw monitor volume control to POD HD500X + (stable-fixes). +- ALSA: usb-audio: Add native DSD support for Luxman D-08u + (stable-fixes). +- ALSA: core: add isascii() check to card ID generator + (stable-fixes). +- ASoC: qcom: sm8250: add qrb4210-rb2-sndcard compatible string + (stable-fixes). +- ASoC: imx-card: Set card.owner to avoid a warning calltrace + if SND=m (git-fixes). +- ASoC: fsl_sai: Enable 'FIFO continue on error' FCONT bit + (stable-fixes). +- ASoC: codecs: lpass-rx-macro: add missing + CDC_RX_BCL_VBAT_RF_PROC2 to default regs values (stable-fixes). +- ASoC: atmel: mchp-pdmc: Skip ALSA restoration if substream + runtime is uninitialized (git-fixes). +- ASoC: amd: yc: Add quirk for HP Dragonfly pro one + (stable-fixes). +- Revert "ALSA: hda: Conditionally use snooping for AMD HDMI" + (stable-fixes). +- ALSA: hda/realtek: Add a quirk for HP Pavilion 15z-ec200 + (stable-fixes). +- ALSA: silence integer wrapping warning (stable-fixes). +- ALSA: Reorganize kerneldoc parameter names (stable-fixes). +- ALSA: hda/realtek: Fix the push button function for the ALC257 + (git-fixes). +- ALSA: hda/conexant: fix some typos (stable-fixes). +- ALSA: mixer_oss: Remove some incorrect kfree_const() usages + (git-fixes). +- ALSA: hda/realtek: Add quirk for Huawei MateBook 13 KLV-WX9 + (stable-fixes). +- ALSA: usb-audio: Add delay quirk for VIVO USB-C HEADSET + (stable-fixes). +- ALSA: hda/tas2781: Add new quirk for Lenovo Y990 Laptop + (stable-fixes). +- ALSA: hda/realtek: fix mute/micmute LED for HP mt645 G8 + (stable-fixes). +- commit 1cdc743 + +------------------------------------------------------------------- +Fri Oct 4 17:17:00 CEST 2024 - mkoutny@suse.com + +- rcu-tasks: Fix show_rcu_tasks_trace_gp_kthread buffer overflow + (bsc#1226631). +- commit 36faf07 + +------------------------------------------------------------------- +Fri Oct 4 17:13:50 CEST 2024 - mwilck@suse.com + +- scsi: fnic: Move flush_work initialization out of if block + (bsc#1230055). +- commit 9b5b899 + +------------------------------------------------------------------- +Fri Oct 4 17:11:25 CEST 2024 - mkoutny@suse.com + +- rcu: Fix buffer overflow in print_cpu_stall_info() + (bsc#1226623). +- commit b695829 + +------------------------------------------------------------------- +Fri Oct 4 09:57:09 CEST 2024 - msuchanek@suse.de + +- Replace ALP with SLFO +- Refresh patches.suse/kernel-add-product-identifying-information-to-kernel-build.patch +- Update config files. +- commit 267a9d3 + +------------------------------------------------------------------- +Fri Oct 4 09:49:25 CEST 2024 - msuchanek@suse.de + +- Update config files. + Update SUSE_VERSION to match SLFO project version +- commit 0d531e8 + +------------------------------------------------------------------- +Fri Oct 4 09:44:38 CEST 2024 - msuchanek@suse.de + +- config.sh: Remove Arm build project, we do not build armv7 configs +- commit 359f219 + +------------------------------------------------------------------- +Fri Oct 4 09:43:19 CEST 2024 - msuchanek@suse.de + +- config.sh: Update bugzilla product +- commit 0688dde + +------------------------------------------------------------------- +Fri Oct 4 09:17:31 CEST 2024 - msuchanek@suse.de + +- rpm/release-projects: Add SLFO projects (bsc#1231293). +- commit 9f2c584 + +------------------------------------------------------------------- +Thu Oct 3 18:22:53 CEST 2024 - msuchanek@suse.de + +- Update patches.suse/powerpc-qspinlock-Fix-deadlock-in-MCS-queue.patch + (bsc#1230295 ltc#206656 CVE-2024-46797 bsc#1230831). +- commit af09bb2 + +------------------------------------------------------------------- +Thu Oct 3 17:03:35 CEST 2024 - mfranc@suse.cz + +- KVM: s390: Fix SORTL and DFLTCC instruction format error in + __insn32_query (git-fixes bsc#1231276). +- commit 39bab2d + +------------------------------------------------------------------- +Thu Oct 3 14:28:21 CEST 2024 - tabraham@suse.com + +- s390/mm: Add cond_resched() to cmm_alloc/free_pages() + (bsc#1228747). +- commit d0c79ab + +------------------------------------------------------------------- +Thu Oct 3 00:20:05 CEST 2024 - dsterba@suse.com + +- ELF: fix kernel.randomize_va_space double read (CVE-2024-46826 bsc#1231115) +- commit 0519fb0 + +------------------------------------------------------------------- +Wed Oct 2 17:46:55 CEST 2024 - dsterba@suse.com + +- net/mlx5: Fix bridge mode operations when there are no VFs (CVE-2024-46857 bsc#1231087) +- commit b20fc2c + +------------------------------------------------------------------- +Wed Oct 2 17:39:18 CEST 2024 - dsterba@suse.com + +- netfilter: nft_socket: fix sk refcount leaks (CVE-2024-46855 bsc#1231085) +- commit 6c66212 + +------------------------------------------------------------------- +Wed Oct 2 16:55:39 CEST 2024 - tbogendoerfer@suse.de + +- net: microchip: vcap: Fix use-after-free error in kunit test + (CVE-2024-46831 bsc#1231117). +- commit 630e2e8 + +------------------------------------------------------------------- +Wed Oct 2 10:12:12 CEST 2024 - mhocko@suse.com + +- vmalloc: modify the alloc_vmap_area() error message for better + diagnostics (jsc#PED-10978). +- mm: mmap: no need to call khugepaged_enter_vma() for stack + (jsc#PED-10978). +- commit 41e1775 + +------------------------------------------------------------------- +Wed Oct 2 09:20:43 CEST 2024 - dwagner@suse.de + +- nvme-pci: qdepth 1 quirk (git-fixes). +- commit ee2b909 + +------------------------------------------------------------------- +Wed Oct 2 08:26:33 CEST 2024 - tiwai@suse.de + +- ALSA: hda/generic: Unconditionally prefer preferred_dacs pairs + (bsc#1219803). +- commit 020b49a + +------------------------------------------------------------------- +Tue Oct 1 18:50:14 CEST 2024 - msuchanek@suse.de + +- powerpc/code-patching: Add generic memory patching + (bsc#1194869). +- powerpc/code-patching: Perform hwsync in __patch_instruction() + in case of failure (bsc#1194869). +- commit 33b01a6 + +------------------------------------------------------------------- +Tue Oct 1 16:33:00 CEST 2024 - oneukum@suse.com + +- usbnet: fix cyclical race on disconnect with work queue + (git-fixes). +- Refresh + patches.suse/0002-Add-a-void-suse_kabi_padding-placeholder-to-some-USB.patch. +- commit 8272f2d + +------------------------------------------------------------------- +Tue Oct 1 16:27:57 CEST 2024 - dsterba@suse.com + +- apparmor: fix possible NULL pointer dereference (CVE-2024-46721 bsc#1230710) +- commit 2d35a7c + +------------------------------------------------------------------- +Tue Oct 1 14:20:26 CEST 2024 - msuchanek@suse.de + +- powerpc/64: Convert patch_instruction() to patch_u32() + (bsc#1194869). +- powerpc/boot: Only free if realloc() succeeds (bsc#1194869). +- powerpc/boot: Handle allocation failure in simple_realloc() + (bsc#1194869). +- powerpc/xics: Check return value of kasprintf in + icp_native_map_one_cpu (bsc#1194869). +- powerpc/vdso: Fix VDSO data access when running in a non-root + time namespace (bsc#1194869). +- commit 0dec2e8 + +------------------------------------------------------------------- +Tue Oct 1 14:19:14 CEST 2024 - tbogendoerfer@suse.de + +- net: mana: Improve mana_set_channels() in low mem conditions + (bsc#1230289). +- net: mana: Implement get_ringparam/set_ringparam for mana + (bsc#1229891). +- net: dpaa: Pad packets to ETH_ZLEN (CVE-2024-46854 bsc#1231084). +- ice: move netif_queue_set_napi to rtnl-protected sections + (CVE-2024-46766 bsc#1230762). +- ice: Add netif_device_attach/detach into PF reset flow + (CVE-2024-46770 bsc#1230763). +- bonding: change ipsec_lock from spin lock to mutex + (CVE-2024-46678 bsc#1230550). +- bonding: extract the use of real_device into local variable + (CVE-2024-46678 bsc#1230550). +- bonding: implement xdo_dev_state_free and call it after deletion + (CVE-2024-46678 bsc#1230550). +- commit 9ee67ad + +------------------------------------------------------------------- +Tue Oct 1 13:22:16 CEST 2024 - msuchanek@suse.de + +- powerpc/xmon: Fix disassembly CPU feature checks (bsc#1065729). +- commit c675509 + ------------------------------------------------------------------- Tue Oct 1 11:47:27 CEST 2024 - tiwai@suse.de @@ -29,6 +7318,13 @@ Tue Oct 1 11:41:13 CEST 2024 - lhenriques@suse.de pages (bsc#1231182). - commit ba82da7 +------------------------------------------------------------------- +Tue Oct 1 11:35:14 CEST 2024 - schwab@suse.de + +- rpm/check-for-config-changes: add HAVE_RUST and RUSTC_SUPPORTS_ to IGNORED_CONFIGS_RE + They depend on SHADOW_CALL_STACK. +- commit 65fa52b + ------------------------------------------------------------------- Tue Oct 1 08:04:40 CEST 2024 - tiwai@suse.de @@ -82,6 +7378,20 @@ Tue Oct 1 08:01:28 CEST 2024 - tiwai@suse.de - can: mcp251xfd: properly indent labels (stable-fixes). - commit a530f31 +------------------------------------------------------------------- +Mon Sep 30 19:11:45 CEST 2024 - krisman@suse.de + +- mm/filemap: skip to create PMD-sized page cache if needed + (bsc#1228454 CVE-2024-41031). +- commit 03907fa + +------------------------------------------------------------------- +Mon Sep 30 17:14:19 CEST 2024 - dwagner@suse.de + +- nvme-fabrics: use reserved tag for reg read/write command + (bsc#1228620 CVE-2024-41082). +- commit 239456c + ------------------------------------------------------------------- Mon Sep 30 16:28:50 CEST 2024 - pmladek@suse.com @@ -283,14 +7593,6 @@ Fri Sep 27 18:21:58 CEST 2024 - dsterba@suse.com - drm/amd/display: Check denominator crb_pipes before used (CVE-2024-46772 bsc#1230772) - commit 322be4a -------------------------------------------------------------------- -Fri Sep 27 17:47:54 CEST 2024 - dsterba@suse.com - -- blacklist.conf: CVE-2024-46727 bsc#1230707: not applicable - No OTG code and all return values from - resource_get_otg_master_for_stream() are checked before use. -- commit f44b1e7 - ------------------------------------------------------------------- Fri Sep 27 15:39:02 CEST 2024 - andrea.porta@suse.com @@ -716,12 +8018,6 @@ Wed Sep 25 11:02:22 CEST 2024 - oneukum@suse.com (git-fixes). - commit 45cee3b -------------------------------------------------------------------- -Wed Sep 25 10:53:00 CEST 2024 - oneukum@suse.com - -- blacklist.conf: too risky -- commit f0e13c3 - ------------------------------------------------------------------- Wed Sep 25 10:49:36 CEST 2024 - oneukum@suse.com @@ -887,12 +8183,6 @@ Wed Sep 25 08:20:37 CEST 2024 - nmorey@suse.com - RDMA/core: Remove unused declaration rdma_resolve_ip_route() (git-fixes) - commit 4cb7201 -------------------------------------------------------------------- -Wed Sep 25 08:00:58 CEST 2024 - jslaby@suse.cz - -- blacklist.conf: add one for clang and one PCI git-fixes -- commit b26aea4 - ------------------------------------------------------------------- Wed Sep 25 06:59:40 CEST 2024 - jslaby@suse.cz @@ -902,26 +8192,12 @@ Wed Sep 25 06:59:40 CEST 2024 - jslaby@suse.cz investigate. - commit 3b92a44 -------------------------------------------------------------------- -Tue Sep 24 21:41:32 CEST 2024 - dsterba@suse.com - -- blacklist.conf: CVE-2024-44972 bsc#1230212: not applicable - Subpage code exists but zoned mode is not enabled being hidden behind - CONFIG_BTRFS_DEBUG. -- commit ed17920 - ------------------------------------------------------------------- Tue Sep 24 16:44:45 CEST 2024 - dsterba@suse.com - btrfs: handle errors from btrfs_dec_ref() properly (CVE-2024-46753 bsc#1230796) - commit 3e3b2cb -------------------------------------------------------------------- -Tue Sep 24 14:00:01 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 05421bb - ------------------------------------------------------------------- Tue Sep 24 13:58:04 CEST 2024 - oneukum@suse.com @@ -1169,12 +8445,6 @@ Fri Sep 20 16:00:48 CEST 2024 - fdmanana@suse.com i_size (bsc#1230854). - commit e9cad4b -------------------------------------------------------------------- -Fri Sep 20 11:03:38 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 5244a06 - ------------------------------------------------------------------- Fri Sep 20 10:42:37 CEST 2024 - ailiop@suse.com @@ -1304,16 +8574,6 @@ Thu Sep 19 21:02:08 CEST 2024 - dsterba@suse.com - gtp: fix a potential NULL pointer dereference (CVE-2024-46677 bsc#1230549) - commit 9cdd14b -------------------------------------------------------------------- -Thu Sep 19 20:03:29 CEST 2024 - dsterba@suse.com - -- blacklist.conf: CVE-2024-46711 bsc#1230542: code partially present, fix part of refactoring and fix series - The patch to backport is one in a number of about 30 patches refactoring - and reworking MPTCP subflow handling. Several other patches are needed - just to apply it cleanly but also change some of the logic where the - actual fix would apply. -- commit 1a03613 - ------------------------------------------------------------------- Thu Sep 19 19:35:19 CEST 2024 - dsterba@suse.com @@ -1503,6 +8763,13 @@ Thu Sep 19 08:58:46 CEST 2024 - tiwai@suse.de (stable-fixes). - commit 040b0ea +------------------------------------------------------------------- +Thu Sep 19 03:35:24 CEST 2024 - neilb@suse.de + +- Update patches.suse/NFS-never-reuse-a-NFSv4-0-lock-owner.patch + (bsc#1227726 bsc#1230733 bsc#1230971) +- commit b1f9aec + ------------------------------------------------------------------- Wed Sep 18 19:30:32 CEST 2024 - jdelvare@suse.de @@ -1676,12 +8943,6 @@ Mon Sep 16 17:26:10 CEST 2024 - jgross@suse.com (git-fixes). - commit 6b94c45 -------------------------------------------------------------------- -Mon Sep 16 16:52:08 CEST 2024 - jgross@suse.com - -- blacklist.conf: add 840b2d39a2dc ("virtio_ring: fix KMSAN error for premapped mode") -- commit 2b97440 - ------------------------------------------------------------------- Mon Sep 16 16:51:12 CEST 2024 - jgross@suse.com @@ -1689,12 +8950,6 @@ Mon Sep 16 16:51:12 CEST 2024 - jgross@suse.com and MSR_GS_BASE (git-fixes). - commit aeba695 -------------------------------------------------------------------- -Mon Sep 16 16:15:44 CEST 2024 - jgross@suse.com - -- blacklist.conf: add 611ff1b1ae98 ("xen: privcmd: Fix possible access to a freed kirqfd instance") -- commit d91e53f - ------------------------------------------------------------------- Mon Sep 16 15:47:44 CEST 2024 - lhenriques@suse.de @@ -1829,12 +9084,6 @@ Fri Sep 13 21:16:43 CEST 2024 - tonyj@suse.de functions (git fixes). - commit bb48e43 -------------------------------------------------------------------- -Fri Sep 13 21:15:11 CEST 2024 - tonyj@suse.de - -- blacklist.conf: Add perf git-fix that won't be backported -- commit fbbd522 - ------------------------------------------------------------------- Fri Sep 13 19:40:15 CEST 2024 - dsterba@suse.com @@ -2120,12 +9369,6 @@ Thu Sep 12 16:08:18 CEST 2024 - tiwai@suse.de - Move upstreamed input patch into sorted section - commit e197a51 -------------------------------------------------------------------- -Thu Sep 12 16:07:50 CEST 2024 - jgross@suse.com - -- blacklist.conf: add db5247d9bf5c ("vhost_task: Handle SIGKILL by flushing work and exiting") -- commit 7acfcbb - ------------------------------------------------------------------- Thu Sep 12 16:06:12 CEST 2024 - jgross@suse.com @@ -2157,12 +9400,6 @@ Thu Sep 12 13:58:10 CEST 2024 - jroedel@suse.de patches.suse/iommu-dma-Trace-bounce-buffer-usage-when-mapping-buf.patch. - commit d37ca1f -------------------------------------------------------------------- -Thu Sep 12 13:45:38 CEST 2024 - jgross@suse.com - -- blacklist.conf: add 778c350eb580 ("Revert KVM: async_pf: avoid recursive flushing of work items") -- commit 3ff1683 - ------------------------------------------------------------------- Thu Sep 12 13:44:28 CEST 2024 - jgross@suse.com @@ -2190,18 +9427,6 @@ Thu Sep 12 11:54:51 CEST 2024 - jgross@suse.com entries (git-fixes). - commit e3cb3e5 -------------------------------------------------------------------- -Thu Sep 12 10:18:36 CEST 2024 - jgross@suse.com - -- blacklist.conf: add f62d4c3eb687 ("KVM: arm64: Don't defer TLB invalidation when zapping table entries") -- commit 80a75dc - -------------------------------------------------------------------- -Thu Sep 12 10:11:31 CEST 2024 - jgross@suse.com - -- blacklist.conf: add c60d847be7b8 ("KVM: arm64: Fix double-free following kvm_pgtable_stage2_free_unlinked()") -- commit 518faac - ------------------------------------------------------------------- Thu Sep 12 10:05:18 CEST 2024 - jgross@suse.com @@ -2877,17 +10102,6 @@ Sat Sep 7 10:18:31 CEST 2024 - tiwai@suse.de (git-fixes). - commit 7a89765 -------------------------------------------------------------------- -Fri Sep 6 17:33:50 CEST 2024 - dsterba@suse.com - -- blacklist.conf: CVE-2024-43886 bsc#1229748: not applicable, functionality not present - The fix adds a NULL check but it is already there in this codebase. The - upstream fix is for patch 5db346c256bbac ("drm/amd/display: update pipe - topology log to support subvp") that adds a secondary display and - refactors code so the NULL check gets lost in - resource_log_pipe_topology_update(). -- commit b9c5bf2 - ------------------------------------------------------------------- Fri Sep 6 15:56:40 CEST 2024 - dsterba@suse.com @@ -3028,12 +10242,6 @@ Thu Sep 5 10:01:51 CEST 2024 - iivanov@suse.de - arm64: tlb: Fix TLBI RANGE operand (bsc#1229585) - commit 24bd468 -------------------------------------------------------------------- -Thu Sep 5 09:56:43 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("KVM: arm64: Use TLBI_TTL_UNKNOWN in __kvm_tlb_flush_vmid_range()") (bsc#1229585) -- commit 29fbf2b - ------------------------------------------------------------------- Thu Sep 5 09:52:38 CEST 2024 - iivanov@suse.de @@ -3249,12 +10457,6 @@ Wed Sep 4 07:41:41 CEST 2024 - neilb@suse.de (git-fixes). - commit 3ab58b8 -------------------------------------------------------------------- -Wed Sep 4 07:37:30 CEST 2024 - neilb@suse.de - -- blacklist.conf: These aren't wanted for various reasons. -- commit 39478da - ------------------------------------------------------------------- Wed Sep 4 00:34:05 CEST 2024 - krisman@suse.de @@ -3266,18 +10468,6 @@ Wed Sep 4 00:34:05 CEST 2024 - krisman@suse.de same way, but through a separate kABI patch. - commit 08e57d6 -------------------------------------------------------------------- -Tue Sep 3 16:04:36 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add cf3f9a593dab mm: optimize the redundant loop of mm_update_owner_next() -- commit 3184f0b - -------------------------------------------------------------------- -Tue Sep 3 15:59:41 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: d24f05987ce8 cgroup: Avoid extra dereference in css_populate_dir() -- commit 922f944 - ------------------------------------------------------------------- Tue Sep 3 14:44:24 CEST 2024 - oneukum@suse.com @@ -3674,15 +10864,6 @@ Fri Aug 30 16:03:27 CEST 2024 - vkarasulli@suse.de iommufd_device_do_replace() (git-fixes). - commit bbc9a65 -------------------------------------------------------------------- -Fri Aug 30 13:03:14 CEST 2024 - lhenriques@suse.de - -- blacklist.conf: add 053fc4f755ad fuse: fix UAF in rcu pathwalks - This commit breaks kABI and the data structure has no free room for the - extra field, i.e. memcpy would fail to copy the additional member added by - this patch. -- commit 941b81c - ------------------------------------------------------------------- Fri Aug 30 11:44:34 CEST 2024 - lhenriques@suse.de @@ -3696,12 +10877,6 @@ Fri Aug 30 11:11:17 CEST 2024 - petr.pavlu@suse.com (git-fixes). - commit 88d1dac -------------------------------------------------------------------- -Fri Aug 30 11:00:49 CEST 2024 - petr.pavlu@suse.com - -- blacklist.conf: add a not-relevant tracing commit -- commit 9e3013e - ------------------------------------------------------------------- Fri Aug 30 10:55:19 CEST 2024 - ailiop@suse.com @@ -3947,12 +11122,6 @@ Wed Aug 28 14:06:14 CEST 2024 - pjakobsson@suse.de - drm/amd/display: Fix null pointer deref in dcn20_resource.c (CVE-2024-43899 bsc#1229754). - commit 1811990 -------------------------------------------------------------------- -Wed Aug 28 10:37:01 CEST 2024 - andrea.porta@suse.com - -- blacklist.conf: add 56769ba4b297a629148eb24d554aef72d1ddfd9e -- commit e1cb2aa - ------------------------------------------------------------------- Wed Aug 28 09:55:29 CEST 2024 - mhocko@suse.com @@ -4023,7 +11192,7 @@ Tue Aug 27 18:43:37 CEST 2024 - vkarasulli@suse.de - kABI: vfio: struct virqfd kABI workaround (CVE-2024-26812 bsc#1222808). -- commit ae735c0 +- commit fec2e84 ------------------------------------------------------------------- Tue Aug 27 16:32:25 CEST 2024 - denis.kirjanov@suse.com @@ -4230,21 +11399,21 @@ Fri Aug 23 20:13:46 CEST 2024 - vkarasulli@suse.de - vfio/pci: fix potential memory leak in vfio_intx_enable() (git-fixes). -- commit 45c2786 +- commit b034db2 ------------------------------------------------------------------- Fri Aug 23 19:31:17 CEST 2024 - vkarasulli@suse.de - vfio: Introduce interface to flush virqfd inject workqueue (CVE-2024-26812 bsc#1222808). -- commit 0704da7 +- commit babdbba ------------------------------------------------------------------- Fri Aug 23 16:17:01 CEST 2024 - vkarasulli@suse.de - vfio/pci: Create persistent INTx handler (CVE-2024-26812 bsc#1222808). -- commit c0eeff7 +- commit 8062aa3 ------------------------------------------------------------------- Fri Aug 23 13:54:07 CEST 2024 - mgorman@suse.de @@ -4567,15 +11736,6 @@ Wed Aug 21 17:20:53 CEST 2024 - sjaeckel@suse.de bsc#1226604). - commit 7beae73 -------------------------------------------------------------------- -Wed Aug 21 16:37:18 CEST 2024 - andrea.porta@suse.com - -- blacklist.conf: git-fixes f2eaed1565acc2bdeb5c433f5f6c7bd7a0d62db1 - blacklisted since it involves backporting many other commits not - that are relevnat only to gdb debug scripts and whose dependent - commits may break kABI. -- commit 323e420 - ------------------------------------------------------------------- Wed Aug 21 16:19:21 CEST 2024 - rgoldwyn@suse.com @@ -4770,13 +11930,6 @@ Tue Aug 20 17:34:18 CEST 2024 - dwagner@suse.de Use the version which got upload upstream. - commit 4896f98 -------------------------------------------------------------------- -Tue Aug 20 17:32:22 CEST 2024 - jgross@suse.com - -- blacklist.conf: add ffe6176b7f53 ("virtio: store owner from modules - with register_virtio_driver()") -- commit 08df841 - ------------------------------------------------------------------- Tue Aug 20 17:31:40 CEST 2024 - jgross@suse.com @@ -4981,12 +12134,6 @@ Tue Aug 20 10:32:23 CEST 2024 - mfranc@suse.cz (git-fixes bsc#1229451). - commit 4e0b259 -------------------------------------------------------------------- -Tue Aug 20 10:20:39 CEST 2024 - mfranc@suse.cz - -- blacklist.conf: we don't enable CONFIG_CPUMASK_OFFSTACK on s390 -- commit 8a36035 - ------------------------------------------------------------------- Tue Aug 20 10:11:40 CEST 2024 - pjakobsson@suse.de @@ -5031,12 +12178,6 @@ Tue Aug 20 09:03:13 CEST 2024 - tiwai@suse.de (stable-fixes). - commit a485c9b -------------------------------------------------------------------- -Tue Aug 20 08:53:29 CEST 2024 - tiwai@suse.de - -- blacklist.conf: Add libata upstream revert entry (bsc#1229054) -- commit 5ded40a - ------------------------------------------------------------------- Tue Aug 20 08:24:59 CEST 2024 - shung-hsi.yu@suse.com @@ -5145,12 +12286,6 @@ Mon Aug 19 08:41:03 CEST 2024 - tiwai@suse.de (git-fixes). - commit e3fe681 -------------------------------------------------------------------- -Mon Aug 19 06:55:31 CEST 2024 - neilb@suse.de - -- blacklist.conf: add unwanted nfs/sunrpc patch -- commit 405ec89 - ------------------------------------------------------------------- Mon Aug 19 06:53:37 CEST 2024 - neilb@suse.de @@ -5270,12 +12405,6 @@ Fri Aug 16 18:05:44 CEST 2024 - ailiop@suse.com (git-fixes). - commit 184b713 -------------------------------------------------------------------- -Fri Aug 16 17:59:06 CEST 2024 - jgross@suse.com - -- blacklist.conf: add f99b052256f1 ("KVM: SNP: Fix LBR Virtualization for SNP guest") -- commit c9ad47e - ------------------------------------------------------------------- Fri Aug 16 17:52:51 CEST 2024 - jgross@suse.com @@ -5402,12 +12531,6 @@ Fri Aug 16 14:09:45 CEST 2024 - ailiop@suse.com - xfs: allow symlinks with short remote targets (bsc#1229160). - commit e82d4ad -------------------------------------------------------------------- -Fri Aug 16 14:04:33 CEST 2024 - jgross@suse.com - -- blacklist.conf: add 1c682593096a ("xen: privcmd: Switch from mutex to spinlock for irqfds") -- commit 46d4480 - ------------------------------------------------------------------- Fri Aug 16 14:01:51 CEST 2024 - jgross@suse.com @@ -5491,25 +12614,6 @@ Thu Aug 15 20:27:34 CEST 2024 - msuchanek@suse.de CONFIG_KVM_BOOK3S_HV_POSSIBLE (bsc#1194869). - commit 4e7f0fe -------------------------------------------------------------------- -Thu Aug 15 19:38:47 CEST 2024 - msuchanek@suse.de - -- blacklist.conf: Add a bunch of superfluous ppc changes reported by - git-fixes. -- commit 7c2a851 - -------------------------------------------------------------------- -Thu Aug 15 18:40:14 CEST 2024 - msuchanek@suse.de - -- blacklist.conf: Add ppc more ppc unsupported arch paths and commits. -- commit 66e06b4 - -------------------------------------------------------------------- -Thu Aug 15 18:05:23 CEST 2024 - msuchanek@suse.de - -- blacklist.conf: Add more ppc 32bit paths. -- commit 013a9db - ------------------------------------------------------------------- Thu Aug 15 17:09:55 CEST 2024 - iivanov@suse.de @@ -6315,7 +13419,7 @@ Sat Aug 10 10:27:04 CEST 2024 - tiwai@suse.de Sat Aug 10 09:45:49 CEST 2024 - tiwai@suse.de - Moved upstreamed ASoC patch into sorted section -- commit 3058bc3 +- commit 47c5c29 ------------------------------------------------------------------- Sat Aug 10 09:37:31 CEST 2024 - tiwai@suse.de @@ -6337,24 +13441,7 @@ Sat Aug 10 09:37:31 CEST 2024 - tiwai@suse.de - ALSA: hda: Add HP MP9 G4 Retail System AMS to force connect list (stable-fixes). - ALSA: line6: Fix racy access to midibuf (stable-fixes). -- ASoC: cs35l56: Patch CS35L56_IRQ1_MASK_18 to the default value - (stable-fixes). -- ASoC: amd: yc: Support mic on Lenovo Thinkpad E14 Gen 6 - (stable-fixes). -- ASoC: cs35l56: Handle OTP read latency over SoundWire - (stable-fixes). -- ASoC: nau8822: Lower debug print priority (stable-fixes). -- ASoC: fsl_micfil: Expand the range of FIFO watermark mask - (stable-fixes). -- ASoC: amd: yc: Support mic on HP 14-em0002la (stable-fixes). -- ALSA: hda/realtek: Add Framework Laptop 13 (Intel Core Ultra) - to quirks (stable-fixes). -- ALSA: hda/hdmi: Yet more pin fix for HP EliteDesk 800 G4 - (stable-fixes). -- ALSA: hda: Add HP MP9 G4 Retail System AMS to force connect list - (stable-fixes). -- ALSA: line6: Fix racy access to midibuf (stable-fixes). -- commit a8c8868 +- commit c1044c2 ------------------------------------------------------------------- Sat Aug 10 09:30:52 CEST 2024 - tiwai@suse.de @@ -6368,16 +13455,7 @@ Sat Aug 10 09:30:52 CEST 2024 - tiwai@suse.de - ASoC: codecs: wcd938x-sdw: Correct Soundwire ports mask (git-fixes). - ALSA: usb-audio: Re-add ScratchAmp quirk entries (git-fixes). -- ASoC: meson: axg-fifo: fix irq scheduling issue with PREEMPT_RT - (git-fixes). -- ASoC: SOF: Remove libraries from topology lookups (git-fixes). -- ASoC: codecs: wsa884x: Correct Soundwire ports mask (git-fixes). -- ASoC: codecs: wsa883x: Correct Soundwire ports mask (git-fixes). -- ASoC: codecs: wsa881x: Correct Soundwire ports mask (git-fixes). -- ASoC: codecs: wcd938x-sdw: Correct Soundwire ports mask - (git-fixes). -- ALSA: usb-audio: Re-add ScratchAmp quirk entries (git-fixes). -- commit cdc2939 +- commit 2621ea8 ------------------------------------------------------------------- Fri Aug 9 21:13:42 CEST 2024 - mpdesouza@suse.com @@ -6422,12 +13500,8 @@ Fri Aug 9 16:37:03 CEST 2024 - mfranc@suse.cz ------------------------------------------------------------------- Fri Aug 9 14:35:05 CEST 2024 - pmladek@suse.com -- blacklist.conf: printk/sysctl: breaks kernel without pre-requisite - patches (bsc#1229025) -- Delete - patches.suse/printk-Remove-the-now-superfluous-sentinel-elements-from-ctl_table-array.patch. - blacklist.conf: printk/sysctl: breaks kernel without pre-requisite patches (bsc#1229025) - Delete patches.suse/printk-Remove-the-now-superfluous-sentinel-elements-from-ctl_table-array.patch. -- commit 3560636 +- commit b88511a ------------------------------------------------------------------- Fri Aug 9 13:30:05 CEST 2024 - mfranc@suse.cz @@ -6908,12 +13982,6 @@ Wed Aug 7 14:05:50 CEST 2024 - tbogendoerfer@suse.de (CVE-2024-42162 bsc#1228706). - commit e94d07a -------------------------------------------------------------------- -Wed Aug 7 13:29:08 CEST 2024 - jslaby@suse.cz - -- blacklist.conf: add some IRQ HANDLING ones -- commit 404c094 - ------------------------------------------------------------------- Wed Aug 7 13:07:25 CEST 2024 - mkoutny@suse.com @@ -7060,12 +14128,6 @@ Mon Aug 5 19:10:12 CEST 2024 - msuchanek@suse.de with MSR_EE (bsc#1215199). - commit 6051d0b -------------------------------------------------------------------- -Mon Aug 5 18:57:39 CEST 2024 - msuchanek@suse.de - -- blacklist.conf: KVM PPC APIv2 enablement not included. -- commit b36c39a - ------------------------------------------------------------------- Mon Aug 5 16:35:22 CEST 2024 - tbogendoerfer@suse.de @@ -7714,13 +14776,6 @@ Fri Aug 2 15:36:25 CEST 2024 - sjaeckel@suse.de in nsh_gso_segment() (CVE-2024-36933 bsc#1225832). - commit 6740d82 -------------------------------------------------------------------- -Fri Aug 2 14:48:37 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add 943ad0b62e3c kernel: rerun task_work while freezing in get_signal() - and related io_uring fix. -- commit ead5c32 - ------------------------------------------------------------------- Fri Aug 2 14:12:56 CEST 2024 - sjaeckel@suse.de @@ -7728,12 +14783,6 @@ Fri Aug 2 14:12:56 CEST 2024 - sjaeckel@suse.de (CVE-2024-36929 bsc#1225814). - commit e49ed10 -------------------------------------------------------------------- -Fri Aug 2 13:53:13 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add 7a4479680d7f cgroup_misc: add kernel-doc comments for enum misc_res_type -- commit fe05fa4 - ------------------------------------------------------------------- Fri Aug 2 13:52:28 CEST 2024 - mkoutny@suse.com @@ -7891,13 +14940,6 @@ Wed Jul 31 10:48:53 CEST 2024 - lhenriques@suse.de fscache_try_get_volume() (bsc#1228459 bsc#1228462). - commit a80ddf3 -------------------------------------------------------------------- -Wed Jul 31 10:25:23 CEST 2024 - oneukum@suse.com - -- platform/chrome: cros_ec_proto: Lock device when updating MKBP - version (git-fixes). -- commit ab277a6 - ------------------------------------------------------------------- Wed Jul 31 10:02:32 CEST 2024 - heming.zhao@suse.com @@ -8016,42 +15058,6 @@ Tue Jul 30 11:16:24 CEST 2024 - shung-hsi.yu@suse.com Fix the issue by adding parenthesis around ternary operator. - commit dfba20e -------------------------------------------------------------------- -Tue Jul 30 11:10:16 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add 9c573cd31343 randomize_kstack: Improve entropy diffusion -- commit 095be15 - -------------------------------------------------------------------- -Tue Jul 30 10:53:31 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 1dd3f93 - -------------------------------------------------------------------- -Tue Jul 30 10:50:00 CEST 2024 - oneukum@suse.com - -- blacklist.conf: spelling fix in comment -- commit de0ca0a - -------------------------------------------------------------------- -Tue Jul 30 10:48:26 CEST 2024 - oneukum@suse.com - -- blacklist.conf: cleanup, no code change -- commit 19384b6 - -------------------------------------------------------------------- -Tue Jul 30 10:46:03 CEST 2024 - oneukum@suse.com - -- blacklist.conf: pure cleanup -- commit 21ff021 - -------------------------------------------------------------------- -Tue Jul 30 10:43:49 CEST 2024 - oneukum@suse.com - -- blacklist.conf: pure cleanup -- commit fef6015 - ------------------------------------------------------------------- Tue Jul 30 08:37:32 CEST 2024 - tiwai@suse.de @@ -8579,25 +15585,12 @@ Tue Jul 23 11:57:37 CEST 2024 - nik.borisov@suse.com - x86/resctrl: Remove redundant variable in mbm_config_write_domain() (git-fixes). - commit 7ae6079 -------------------------------------------------------------------- -Tue Jul 23 11:57:14 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: This patch gets reverted -- commit c490f33 - ------------------------------------------------------------------- Tue Jul 23 11:56:24 CEST 2024 - nik.borisov@suse.com - x86/resctrl: Read supported bandwidth sources from CPUID (git-fixes). - commit 907534d -------------------------------------------------------------------- -Tue Jul 23 11:55:05 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: Remove dead-end revert - We never merged the buggy upstream fix. -- commit 9b319fd - ------------------------------------------------------------------- Tue Jul 23 11:50:03 CEST 2024 - nik.borisov@suse.com @@ -8674,7 +15667,7 @@ Tue Jul 23 10:42:33 CEST 2024 - mhocko@suse.com Tue Jul 23 10:31:43 CEST 2024 - jslaby@suse.cz - PCI: Extend ACS configurability (bsc#1228090). -- commit 571e431 +- commit 3be1ce1 ------------------------------------------------------------------- Tue Jul 23 10:21:51 CEST 2024 - nik.borisov@suse.com @@ -8955,13 +15948,6 @@ Mon Jul 22 16:35:48 CEST 2024 - ailiop@suse.com path (bsc#1228211). - commit 4c79a42 -------------------------------------------------------------------- -Mon Jul 22 15:30:13 CEST 2024 - oneukum@suse.com - -- supported.conf: Add support for v4l2-dv-timings - (jsc#PED-8645) -- commit 6262df7 - ------------------------------------------------------------------- Mon Jul 22 15:24:53 CEST 2024 - oneukum@suse.com @@ -9084,12 +16070,6 @@ Mon Jul 22 14:46:53 CEST 2024 - iivanov@suse.de - arm64: dts: imx93-11x11-evk: Remove the 'no-sdio' property (git-fixes) - commit a10e3de -------------------------------------------------------------------- -Mon Jul 22 14:45:36 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: dts: freescale: imx8mm-verdin: Fix GPU speed") -- commit ea9f475 - ------------------------------------------------------------------- Mon Jul 22 14:40:20 CEST 2024 - tiwai@suse.de @@ -10531,15 +17511,6 @@ Wed Jul 17 09:31:55 CEST 2024 - tiwai@suse.de pmic_glink_init (git-fixes). - commit aea26b0 -------------------------------------------------------------------- -Tue Jul 16 18:29:23 CEST 2024 - ailiop@suse.com - -- blacklist.conf: add 54cbc058d86b - commit 54cbc058d86b ("fs/aio: Make io_cancel() generate completions - again") was later reverted upstream by commit 28468cbed92e, so blacklist - it. -- commit bc9be4f - ------------------------------------------------------------------- Tue Jul 16 18:25:16 CEST 2024 - fdmanana@suse.com @@ -11098,12 +18069,6 @@ Mon Jul 15 13:33:32 CEST 2024 - mhocko@suse.com (CVE-2024-27064 bsc#1223740). - commit daf6634 -------------------------------------------------------------------- -Mon Jul 15 13:30:59 CEST 2024 - oneukum@suse.com - -- blacklist.conf: feature, not fix -- commit 7a64b31 - ------------------------------------------------------------------- Mon Jul 15 13:30:17 CEST 2024 - petr.pavlu@suse.com @@ -11117,12 +18082,6 @@ Mon Jul 15 13:12:22 CEST 2024 - mhocko@suse.com tipc_udp_nl_bearer_add() (CVE-2024-26663 bsc#1222326). - commit fff5ef3 -------------------------------------------------------------------- -Mon Jul 15 11:47:14 CEST 2024 - petr.pavlu@suse.com - -- blacklist.conf: add not-relevant tracing fixes -- commit b158327 - ------------------------------------------------------------------- Mon Jul 15 11:41:17 CEST 2024 - petr.pavlu@suse.com @@ -13844,12 +20803,6 @@ Wed Jul 10 10:28:13 CEST 2024 - nik.borisov@suse.com - x86/asm: Fix build of UML with KASAN (git-fixes). - commit 89fc5d7 -------------------------------------------------------------------- -Wed Jul 10 10:27:52 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: Blacklist useless revert -- commit 0a21e69 - ------------------------------------------------------------------- Wed Jul 10 10:04:47 CEST 2024 - nik.borisov@suse.com @@ -14230,12 +21183,6 @@ Thu Jul 4 18:58:54 CEST 2024 - vkarasulli@suse.de - iommu/arm-smmu-v3: Free MSIs in case of ENOMEM (git-fixes). - commit 2fb4aa0 -------------------------------------------------------------------- -Thu Jul 4 17:41:12 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add d988d9a9b9d1 panic: Flush kernel log buffer at the end -- commit 0ce2686 - ------------------------------------------------------------------- Thu Jul 4 15:25:28 CEST 2024 - ptesarik@suse.com @@ -14310,12 +21257,6 @@ Wed Jul 3 14:51:53 CEST 2024 - hare@suse.de CVE-2024-38604). - commit 9e332c1 -------------------------------------------------------------------- -Wed Jul 3 14:41:56 CEST 2024 - pjakobsson@suse.de - -- blacklist.conf: 9cb46b31f3d0 drm/xe/xe_migrate: Cast to output precision before multiplying operands -- commit d95545e - ------------------------------------------------------------------- Wed Jul 3 14:19:36 CEST 2024 - denis.kirjanov@suse.com @@ -15708,12 +22649,6 @@ Fri Jun 28 15:37:51 CEST 2024 - tiwai@suse.de to peer STA/P2PClient (bsc#1227149). - commit 03e12a0 -------------------------------------------------------------------- -Fri Jun 28 15:37:23 CEST 2024 - tiwai@suse.de - -- blacklist: drop the wifi entries to be backported -- commit 891934b - ------------------------------------------------------------------- Fri Jun 28 15:35:23 CEST 2024 - tiwai@suse.de @@ -16605,13 +23540,6 @@ Mon Jun 24 17:40:50 CEST 2024 - nik.borisov@suse.com - x86/uaccess: Fix missed zeroing of ia32 u64 get_user() range checking (git-fixes). - commit 1c4403a -------------------------------------------------------------------- -Mon Jun 24 17:31:22 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: Blacklist invalid commit (git-fixes) - We don't support CPU_MITIGATIONS hence to need for this logic -- commit 6899966 - ------------------------------------------------------------------- Mon Jun 24 09:44:52 CEST 2024 - tbogendoerfer@suse.de @@ -16764,12 +23692,6 @@ Fri Jun 21 17:24:29 CEST 2024 - mkoutny@suse.com parameter in cpu_max_write() (bsc#1226791). - commit 6b67975 -------------------------------------------------------------------- -Fri Jun 21 17:21:26 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add 6fb454606153 sched: Simplify tg_set_cfs_bandwidth() -- commit 4e56705 - ------------------------------------------------------------------- Fri Jun 21 16:31:57 CEST 2024 - dfaggioli@suse.com @@ -16861,12 +23783,6 @@ Thu Jun 20 17:39:41 CEST 2024 - lhenriques@suse.de (bsc#1226588). - commit b238f81 -------------------------------------------------------------------- -Thu Jun 20 12:31:55 CEST 2024 - jslaby@suse.cz - -- blacklist.conf: add ppdev cleanup -- commit 58ce126 - ------------------------------------------------------------------- Thu Jun 20 10:59:35 CEST 2024 - mfranc@suse.cz @@ -17384,12 +24300,6 @@ Fri Jun 14 14:07:11 CEST 2024 - shung-hsi.yu@suse.com (bsc#1225903). - commit 63dfc45 -------------------------------------------------------------------- -Fri Jun 14 13:27:19 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add a7fb0423c201 cgroup: Move rcu_head up near the top of cgroup_root -- commit 3f951ce - ------------------------------------------------------------------- Fri Jun 14 12:18:36 CEST 2024 - denis.kirjanov@suse.com @@ -17786,14 +24696,6 @@ Thu Jun 13 11:57:17 CEST 2024 - ailiop@suse.com since there are no SLE consumers of it, mark it as optional. - commit 264e3d2 -------------------------------------------------------------------- -Thu Jun 13 11:55:02 CEST 2024 - ailiop@suse.com - -- blacklist.conf: add f2fs fixes 87161a2b0aed and 4e0197f9932f - Both are f2fs-related fixes, f2fs is unsupported and not compiled at - all. -- commit e891815 - ------------------------------------------------------------------- Thu Jun 13 11:52:09 CEST 2024 - ailiop@suse.com @@ -17809,12 +24711,6 @@ Thu Jun 13 11:32:01 CEST 2024 - fvogt@suse.de build. - commit aaee141 -------------------------------------------------------------------- -Thu Jun 13 10:11:58 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 70e89e6 - ------------------------------------------------------------------- Thu Jun 13 10:09:33 CEST 2024 - oneukum@suse.com @@ -18009,12 +24905,6 @@ Mon Jun 10 21:03:05 CEST 2024 - krisman@suse.de CVE-2023-52672). - commit 333fe30 -------------------------------------------------------------------- -Mon Jun 10 17:13:33 CEST 2024 - lduncan@suse.com - -- blacklist.conf: add bsc#1223013 CVE-2024-26482, does not apply -- commit a7ff2c2 - ------------------------------------------------------------------- Mon Jun 10 13:36:57 CEST 2024 - davide.benini@suse.com @@ -18022,12 +24912,6 @@ Mon Jun 10 13:36:57 CEST 2024 - davide.benini@suse.com (CVE-2024-36005 bsc#1224539). - commit 5b08b61 -------------------------------------------------------------------- -Mon Jun 10 10:47:24 CEST 2024 - oneukum@suse.com - -- blacklist.conf: irrelevant build fix -- commit 226f27a - ------------------------------------------------------------------- Sat Jun 8 16:22:10 CEST 2024 - lduncan@suse.com @@ -18273,14 +25157,6 @@ Tue Jun 4 20:13:35 CEST 2024 - ematsumiya@suse.de (bsc#1225172, bsc#1225548, CVE-2023-52757). - commit 1b322a8 -------------------------------------------------------------------- -Tue Jun 4 12:28:46 CEST 2024 - davide.benini@suse.com - -- blacklist.conf: add d380ce70058a4ccddc3e5f5c2063165dc07672c6 - netrom: Fix data-races around sysctl_net_busy_read - (CVE-2024-27419 bsc#1224759) -- commit 1fe217c - ------------------------------------------------------------------- Tue Jun 4 12:01:21 CEST 2024 - iivanov@suse.de @@ -18366,732 +25242,6 @@ Mon Jun 3 15:25:22 CEST 2024 - dwagner@suse.de - nvme: fix multipath batched completion accounting (git-fixes). - commit ed3b392 -------------------------------------------------------------------- -Mon Jun 3 14:40:11 CEST 2024 - mfranc@suse.cz - -- Update - patches.suse/ACPI-CPPC-Use-access_width-over-bit_width-for-system.patch - (stable-fixes bsc#1224557 CVE-2024-35995). -- Update - patches.suse/ACPI-LPIT-Avoid-u32-multiplication-overflow.patch - (git-fixes bsc#1224627 CVE-2023-52683). -- Update - patches.suse/ACPI-video-check-for-error-while-searching-for-backl.patch - (git-fixes bsc#1224686 CVE-2023-52693). -- Update - patches.suse/ALSA-hda-intel-sdw-acpi-fix-usage-of-device_get_name.patch - (git-fixes CVE-2024-36955). -- Update - patches.suse/ALSA-usb-audio-Stop-parsing-channels-bits-when-all-c.patch - (git-fixes bsc#1224803 CVE-2024-27436). -- Update - patches.suse/ARM-9381-1-kasan-clear-stale-stack-poison.patch - (git-fixes bsc#1225715 CVE-2024-36906). -- Update - patches.suse/ASoC-Intel-sof_sdw_rt_sdca_jack_common-ctx-headset_c.patch - (git-fixes bsc#1224596 CVE-2023-52697). -- Update - patches.suse/ASoC-SOF-amd-Fix-memory-leak-in-amd_sof_acp_probe.patch - (git-fixes bsc#1224630 CVE-2023-52663). -- Update - patches.suse/ASoC-SOF-ipc4-pcm-Workaround-for-crashed-firmware-on.patch - (stable-fixes bsc#1223831 CVE-2024-27057). -- Update - patches.suse/ASoC-mediatek-sof-common-Add-NULL-check-for-normal_l.patch - (git-fixes bsc#1224688 CVE-2024-35842). -- Update - patches.suse/Bluetooth-Fix-memory-leak-in-hci_req_sync_complete.patch - (git-fixes bsc#1224571 CVE-2024-35978). -- Update - patches.suse/Bluetooth-Fix-use-after-free-bugs-caused-by-sco_sock.patch - (git-fixes bsc#1224174 CVE-2024-27398). -- Update - patches.suse/Bluetooth-HCI-Fix-potential-null-ptr-deref.patch - (git-fixes bsc#1225579 CVE-2024-36011). -- Update - patches.suse/Bluetooth-L2CAP-Fix-not-validating-setsockopt-user-i.patch - (git-fixes bsc#1224579 CVE-2024-35965). -- Update - patches.suse/Bluetooth-RFCOMM-Fix-not-validating-setsockopt-user-.patch - (git-fixes bsc#1224576 CVE-2024-35966). -- Update - patches.suse/Bluetooth-SCO-Fix-not-validating-setsockopt-user-inp.patch - (git-fixes bsc#1224587 CVE-2024-35967). -- Update - patches.suse/Bluetooth-btintel-Fix-null-ptr-deref-in-btintel_read.patch - (stable-fixes bsc#1224640 CVE-2024-35933). -- Update - patches.suse/Bluetooth-hci_event-Fix-handling-of-HCI_EV_IO_CAPA_R.patch - (git-fixes bsc#1224723 CVE-2024-27416). -- Update - patches.suse/Bluetooth-hci_sock-Fix-not-validating-setsockopt-use.patch - (git-fixes bsc#1224582 CVE-2024-35963). -- Update - patches.suse/Bluetooth-l2cap-fix-null-ptr-deref-in-l2cap_chan_tim.patch - (git-fixes bsc#1224177 CVE-2024-27399). -- Update - patches.suse/Bluetooth-msft-fix-slab-use-after-free-in-msft_do_cl.patch - (git-fixes bsc#1225502 CVE-2024-36012). -- Update - patches.suse/Bluetooth-qca-add-missing-firmware-sanity-checks.patch - (git-fixes bsc#1225722 CVE-2024-36880). -- Update - patches.suse/Bluetooth-qca-fix-NULL-deref-on-non-serdev-setup.patch - (git-fixes bsc#1224600 CVE-2024-35850). -- Update - patches.suse/Bluetooth-qca-fix-NULL-deref-on-non-serdev-suspend.patch - (git-fixes bsc#1224509 CVE-2024-35851). -- Update - patches.suse/Bluetooth-qca-fix-firmware-check-error-path.patch - (git-fixes CVE-2024-36942). -- Update - patches.suse/Bluetooth-qca-fix-info-leak-when-fetching-fw-build-i.patch - (git-fixes bsc#1225720 CVE-2024-36032). -- Update - patches.suse/Bluetooth-rfcomm-Fix-null-ptr-deref-in-rfcomm_check_.patch - (bsc#1219170 CVE-2024-22099 bsc#1223187 CVE-2024-26903). -- Update - patches.suse/HID-i2c-hid-remove-I2C_HID_READ_PENDING-flag-to-prev.patch - (git-fixes bsc#1224552 CVE-2024-35997). -- Update - patches.suse/NFS-Fix-nfs_netfs_issue_read-xarray-locking-for-writ.patch - (git-fixes bsc#1223805 CVE-2024-27031). -- Update - patches.suse/NFSv4.2-fix-nfs4_listxattr-kernel-BUG-at-mm-usercopy.patch - (git-fixes bsc#1223113 CVE-2024-26870). -- Update - patches.suse/PCI-PM-Drain-runtime-idle-callbacks-before-driver-re.patch - (stable-fixes bsc#1224738 CVE-2024-35809). -- Update - patches.suse/Reapply-drm-qxl-simplify-qxl_fence_wait.patch - (stable-fixes CVE-2024-36944). -- Update - patches.suse/Revert-drm-amd-pm-resolve-reboot-exception-for-si-ol.patch - (git-fixes bsc#1224722 CVE-2023-52657). -- Update - patches.suse/Revert-net-mlx5-Block-entering-switchdev-mode-with-n.patch - (git-fixes bsc#1224719 CVE-2023-52658). -- Update - patches.suse/SUNRPC-fix-a-memleak-in-gss_import_v2_context.patch - (git-fixes bsc#1223712 CVE-2023-52653). -- Update - patches.suse/SUNRPC-fix-some-memleaks-in-gssx_dec_option_array.patch - (git-fixes bsc#1223744 CVE-2024-27388). -- Update - patches.suse/USB-core-Fix-access-violation-during-port-device-rem.patch - (git-fixes bsc#1225734 CVE-2024-36896). -- Update - patches.suse/USB-core-Fix-deadlock-in-usb_deauthorize_interface.patch - (git-fixes bsc#1223671 CVE-2024-26934). -- Update patches.suse/accel-ivpu-Fix-deadlock-in-context_xa.patch - (git-fixes bsc#1224704 CVE-2024-35953). -- Update - patches.suse/amd-amdkfd-sync-all-devices-to-wait-all-processes-be.patch - (stable-fixes CVE-2024-36949). -- Update - patches.suse/arm64-hibernate-Fix-level3-translation-fault-in-swsu.patch - (git-fixes bsc#1223748 CVE-2024-26989). -- Update patches.suse/ax25-Fix-netdev-refcount-issue.patch - (git-fixes bsc#1224542 CVE-2024-36009). -- Update - patches.suse/ax25-fix-use-after-free-bugs-caused-by-ax25_ds_del_t.patch - (git-fixes bsc#1224663 CVE-2024-35887). -- Update - patches.suse/batman-adv-Avoid-infinite-loop-trying-to-resize-loca.patch - (git-fixes bsc#1224566 CVE-2024-35982). -- Update - patches.suse/block-fix-q-blkg_list-corruption-during-disk-rebind.patch - (bsc#1223591 bsc#1224573 CVE-2024-35974). -- Update - patches.suse/bnxt_en-Fix-possible-memory-leak-in-bnxt_rdma_aux_de.patch - (git-fixes bsc#1224577 CVE-2024-35972). -- Update - patches.suse/bootconfig-use-memblock_free_late-to-free-xbc-memory.patch - (git-fixes bsc#1223637 CVE-2024-26983). -- Update - patches.suse/bpf-Guard-stack-limits-against-32bit-overflow.patch - (git-fixes bsc#1224730 CVE-2023-52676). -- Update - patches.suse/btrfs-fix-deadlock-with-fiemap-and-extent-locking.patch - (bsc#1223285 bsc#1224804 CVE-2024-35784). -- Update - patches.suse/btrfs-fix-information-leak-in-btrfs_ioctl_logical_to.patch - (git-fixes bsc#1224733 CVE-2024-35849). -- Update - patches.suse/btrfs-fix-race-between-ordered-extent-completion-and.patch - (bsc#1223285 bsc#1222426 CVE-2024-26794). -- Update - patches.suse/btrfs-fix-race-when-detecting-delalloc-ranges-during.patch - (bsc#1223285 bsc#1223782 CVE-2024-27080). -- Update - patches.suse/btrfs-handle-chunk-tree-lookup-error-in-btrfs_reloca.patch - (git-fixes bsc#1224644 CVE-2024-35936). -- Update - patches.suse/clk-Get-runtime-PM-before-walking-tree-during-disabl.patch - (git-fixes bsc#1223762 CVE-2024-27004). -- Update - patches.suse/clk-Get-runtime-PM-before-walking-tree-for-clk_summa.patch - (git-fixes bsc#1223761 CVE-2024-27003). -- Update - patches.suse/clk-mediatek-Do-a-runtime-PM-get-on-controllers-duri.patch - (git-fixes bsc#1223759 CVE-2024-27002). -- Update - patches.suse/clk-sunxi-ng-h6-Reparent-CPUX-during-PLL-CPUX-rate-c.patch - (git-fixes bsc#1225692 CVE-2023-52882). -- Update - patches.suse/comedi-vmk80xx-fix-incomplete-endpoint-checking.patch - (git-fixes bsc#1223698 CVE-2024-27001). -- Update - patches.suse/crypto-rsa-add-a-check-for-allocation-failure.patch - (bsc#1222775 bsc#1220430 CVE-2023-52472). -- Update - patches.suse/crypto-s390-aes-Fix-buffer-overread-in-CTR-mode.patch - (git-fixes bsc#1224637 CVE-2023-52669). -- Update - patches.suse/crypto-safexcel-Add-error-handling-for-dma_map_sg-ca.patch - (git-fixes bsc#1224501 CVE-2023-52687). -- Update - patches.suse/cxl-pci-Fix-disabling-memory-if-DVSEC-CXL-Range-does.patch - (git-fixes CVE-2024-26761). -- Update - patches.suse/dm-raid-really-frozen-sync_thread-during-suspend-16c4.patch - (jsc#PED-7542 bsc#1224706 CVE-2024-35794). -- Update - patches.suse/dm-raid456-md-raid456-fix-a-deadlock-for-dm-raid456-4142.patch - (bsc#1219596 bsc#1223654 CVE-2024-26962). -- Update - patches.suse/dma-buf-Fix-NULL-pointer-dereference-in-sanitycheck.patch - (git-fixes bsc#1224480 CVE-2024-35916). -- Update patches.suse/dma-xilinx_dpdma-Fix-locking.patch - (git-fixes bsc#1224559 CVE-2024-35990). -- Update - patches.suse/dmaengine-fsl-qdma-Fix-a-memory-leak-related-to-the--3aa58cb.patch - (git-fixes bsc#1224632 CVE-2024-35833). -- Update - patches.suse/dmaengine-idxd-Fix-oops-during-rmmod-on-single-CPU-p.patch - (git-fixes bsc#1224558 CVE-2024-35989). -- Update - patches.suse/dpll-fix-dpll_pin_on_pin_register-for-multiple-paren.patch - (CVE-2024-27027 bsc#1223787 bsc#1224546 CVE-2024-36002). -- Update - patches.suse/dpll-fix-pin-dump-crash-for-rebound-module.patch - (jsc#PED-6079 bsc#1224633 CVE-2024-35836). -- Update - patches.suse/drm-Check-output-polling-initialized-before-disablin.patch - (stable-fixes bsc#1224654 CVE-2024-35927). -- Update - patches.suse/drm-amd-amdgpu-Fix-potential-ioremap-memory-leaks-in.patch - (stable-fixes bsc#1224653 CVE-2024-35928). -- Update - patches.suse/drm-amd-display-Atom-Integrated-System-Info-v2_2-for.patch - (stable-fixes bsc#1225735 CVE-2024-36897). -- Update - patches.suse/drm-amd-display-Check-writeback-connectors-in-create.patch - (git-fixes bsc#1224506 CVE-2023-52695). -- Update - patches.suse/drm-amd-display-Fix-a-debugfs-null-pointer-error.patch - (git-fixes bsc#1224741 CVE-2023-52673). -- Update - patches.suse/drm-amd-display-Fix-bounds-check-for-dcn35-DcfClocks.patch - (git-fixes bsc#1224709 CVE-2024-35788). -- Update - patches.suse/drm-amd-display-Fix-hang-underflow-when-transitionin.patch - (git-fixes bsc#1224729 CVE-2023-52671). -- Update - patches.suse/drm-amd-display-Prevent-crash-when-disable-stream.patch - (stable-fixes bsc#1224740 CVE-2024-35799). -- Update - patches.suse/drm-amd-pm-fix-a-double-free-in-si_dpm_init.patch - (git-fixes bsc#1224607 CVE-2023-52691). -- Update - patches.suse/drm-amd-pm-fixes-a-random-hang-in-S4-for-SMU-v13.0.4.patch - (stable-fixes bsc#1225705 CVE-2024-36026). -- Update - patches.suse/drm-amdgpu-amdgpu_ttm_gart_bind-set-gtt-bound-flag.patch - (stable-fixes bsc#1224736 CVE-2024-35817). -- Update - patches.suse/drm-amdgpu-fix-deadlock-while-reading-mqd-from-debug.patch - (git-fixes bsc#1224634 CVE-2024-35795). -- Update - patches.suse/drm-amdgpu-fix-mmhub-client-id-out-of-bounds-access.patch - (git-fixes bsc#1223789 CVE-2024-27029). -- Update - patches.suse/drm-amdgpu-once-more-fix-the-call-oder-in-amdgpu_ttm.patch - (git-fixes bsc#1224180 CVE-2024-27400). -- Update - patches.suse/drm-amdgpu-pm-Fix-NULL-pointer-dereference-when-get-.patch - (git-fixes bsc#1223665 CVE-2024-26949). -- Update - patches.suse/drm-amdgpu-validate-the-parameters-of-bo-mapping-ope.patch - (git-fixes bsc#1223315 CVE-2024-26922). -- Update - patches.suse/drm-amdkfd-Confirm-list-is-non-empty-before-utilizin.patch - (git-fixes bsc#1224617 CVE-2023-52678). -- Update - patches.suse/drm-amdkfd-Fix-memory-leak-in-create_process-failure.patch - (git-fixes bsc#1223728 CVE-2024-26986). -- Update - patches.suse/drm-amdkfd-range-check-cp-bad-op-exception-interrupt.patch - (stable-fixes CVE-2024-36951). -- Update - patches.suse/drm-arm-malidp-fix-a-possible-null-pointer-dereferen.patch - (git-fixes bsc#1225593 CVE-2024-36014). -- Update patches.suse/drm-ast-Fix-soft-lockup.patch (git-fixes - bsc#1224705 CVE-2024-35952). -- Update - patches.suse/drm-bridge-tpd12s015-Drop-buggy-__exit-annotation-fo.patch - (git-fixes bsc#1224598 CVE-2023-52694). -- Update - patches.suse/drm-client-Fully-protect-modes-with-dev-mode_config..patch - (stable-fixes bsc#1224703 CVE-2024-35950). -- Update - patches.suse/drm-i915-bios-Tolerate-devdata-NULL-in-intel_bios_en.patch - (stable-fixes bsc#1223678 CVE-2024-26938). -- Update - patches.suse/drm-i915-gt-Reset-queue_priority_hint-on-parking.patch - (git-fixes bsc#1223677 CVE-2024-26937). -- Update - patches.suse/drm-lima-fix-a-memleak-in-lima_heap_alloc.patch - (git-fixes bsc#1224707 CVE-2024-35829). -- Update - patches.suse/drm-nouveau-firmware-Fix-SG_DEBUG-error-with-nvkm_fi.patch - (stable-fixes bsc#1225728 CVE-2024-36885). -- Update - patches.suse/drm-nouveau-fix-stale-locked-mutex-in-nouveau_gem_io.patch - (git-fixes bsc#1224714 CVE-2024-35786). -- Update - patches.suse/drm-nouveau-keep-DMA-buffers-required-for-suspend-re.patch - (git-fixes bsc#1224433 CVE-2024-27411). -- Update patches.suse/drm-nv04-Fix-out-of-bounds-access.patch - (git-fixes bsc#1223802 CVE-2024-27008). -- Update - patches.suse/drm-panfrost-Fix-the-error-path-in-panfrost_mmu_map_.patch - (git-fixes bsc#1224701 CVE-2024-35951). -- Update - patches.suse/drm-tegra-rgb-Fix-missing-clk_put-in-the-error-handl.patch - (git-fixes bsc#1224445 CVE-2023-52661). -- Update - patches.suse/drm-vc4-don-t-check-if-plane-state-fb-state-fb.patch - (stable-fixes bsc#1224650 CVE-2024-35932). -- Update - patches.suse/drm-vmwgfx-Create-debugfs-ttm_resource_manager-entry.patch - (git-fixes bsc#1223718 CVE-2024-26940). -- Update - patches.suse/drm-vmwgfx-Fix-the-lifetime-of-the-bo-cursor-memory.patch - (git-fixes bsc#1224626 CVE-2024-35810). -- Update - patches.suse/drm-vmwgfx-fix-a-memleak-in-vmw_gmrid_man_get_node.patch - (git-fixes bsc#1224449 CVE-2023-52662). -- Update - patches.suse/dyndbg-fix-old-BUG_ON-in-control-parser.patch - (stable-fixes bsc#1224647 CVE-2024-35947). -- Update - patches.suse/efi-capsule-loader-fix-incorrect-allocation-size.patch - (git-fixes bsc#1224438 CVE-2024-27413). -- Update patches.suse/efi-fix-panic-in-kdump-kernel.patch - (git-fixes bsc#1224507 CVE-2024-35800). -- Update patches.suse/efivarfs-Free-s_fs_info-on-unmount.patch - (bsc#1220328 CVE-2023-52463 bsc#1224505 CVE-2023-52681). -- Update - patches.suse/fat-fix-uninitialized-field-in-nostale-filehandles.patch - (git-fixes bsc#1223641 CVE-2024-26973). -- Update - patches.suse/fbmon-prevent-division-by-zero-in-fb_videomode_from_.patch - (stable-fixes bsc#1224660 CVE-2024-35922). -- Update - patches.suse/firewire-ohci-mask-bus-reset-interrupts-between-ISR-.patch - (stable-fixes CVE-2024-36950). -- Update - patches.suse/fs-aio-Check-IOCB_AIO_RW-before-the-struct-aio_kiocb.patch - (bsc#1222721 CVE-2024-26764 bsc#1224685 CVE-2024-35815). -- Update - patches.suse/geneve-fix-header-validation-in-geneve-6-_xmit_skb.patch - (git-fixes bsc#1224586 CVE-2024-35973). -- Update - patches.suse/geneve-make-sure-to-pull-inner-header-in-geneve_rx.patch - (git-fixes bsc#1223058 CVE-2024-26857). -- Update patches.suse/gpiolib-cdev-fix-uninitialised-kfifo.patch - (git-fixes bsc#1225736 CVE-2024-36898). -- Update - patches.suse/i2c-smbus-fix-NULL-function-pointer-dereference.patch - (git-fixes bsc#1224567 CVE-2024-35984). -- Update - patches.suse/i40e-fix-vf-may-be-used-uninitialized-in-this-functi.patch - (git-fixes bsc#1225698 CVE-2024-36020). -- Update - patches.suse/ice-fix-memory-corruption-bug-with-suspend-and-rebui.patch - (git-fixes bsc#1224486 CVE-2024-35911). -- Update - patches.suse/ice-fix-uninitialized-dplls-mutex-usage.patch - (git-fixes bsc#1223039 CVE-2024-26854). -- Update - patches.suse/idpf-fix-kernel-panic-on-unknown-packet-types.patch - (git-fixes bsc#1224517 CVE-2024-35889). -- Update - patches.suse/igc-avoid-returning-frame-twice-in-XDP_REDIRECT.patch - (git-fixes bsc#1223061 CVE-2024-26853). -- Update - patches.suse/init-main.c-Fix-potential-static_command_line-memory.patch - (git-fixes bsc#1223747 CVE-2024-26988). -- Update - patches.suse/iommufd-Fix-iopt_access_list_id-overwrite-bug.patch - (git-fixes bsc#1222780 CVE-2024-26786). -- Update - patches.suse/irqchip-gic-v3-its-Prevent-double-free-on-error.patch - (git-fixes bsc#1224697 CVE-2024-35847). -- Update - patches.suse/kprobes-Fix-possible-use-after-free-issue-on-kprobe-registration.patch - (git-fixes bsc#1224676 CVE-2024-35955). -- Update - patches.suse/mac802154-fix-llsec-key-resources-release-in-mac8021.patch - (git-fixes bsc#1223652 CVE-2024-26961). -- Update - patches.suse/maple_tree-fix-mas_empty_area_rev-null-pointer-deref.patch - (git-fixes bsc#1225710 CVE-2024-36891). -- Update - patches.suse/md-dm-raid-don-t-call-md_reap_sync_thread-directly-cd32.patch - (jsc#PED-7542 bsc#1224623 CVE-2024-35808). -- Update patches.suse/md-fix-kmemleak-of-rdev-serial-6cf3.patch - (jsc#PED-7542 bsc#1223046 CVE-2024-26900). -- Update - patches.suse/media-rkisp1-Fix-IRQ-handling-due-to-shared-interrup.patch - (stable-fixes bsc#1224443 CVE-2023-52660). -- Update - patches.suse/media-tc358743-register-v4l2-async-device-only-after.patch - (git-fixes bsc#1224680 CVE-2024-35830). -- Update - patches.suse/misc-lis3lv02d_i2c-Fix-regulators-getting-en-dis-abl.patch - (git-fixes bsc#1224609 CVE-2024-35824). -- Update - patches.suse/mlxbf_gige-call-request_irq-after-NAPI-initialized.patch - (git-fixes bsc#1224492 CVE-2024-35907). -- Update - patches.suse/mlxbf_gige-stop-interface-during-shutdown.patch - (git-fixes bsc#1224519 CVE-2024-35885). -- Update - patches.suse/mmc-core-Avoid-negative-index-with-array-access.patch - (git-fixes bsc#1224618 CVE-2024-35813). -- Update - patches.suse/mmc-sdhci-msm-pervent-access-to-suspended-controller.patch - (git-fixes bsc#1225708 CVE-2024-36029). -- Update - patches.suse/msft-hv-2971-net-mana-Fix-Rx-DMA-datasize-and-skb_over_panic.patch - (git-fixes bsc#1224495 CVE-2024-35901). -- Update - patches.suse/net-atlantic-eliminate-double-free-in-error-handling.patch - (git-fixes bsc#1224747 CVE-2023-52664). -- Update - patches.suse/net-ena-Fix-incorrect-descriptor-free-behavior.patch - (git-fixes bsc#1224677 CVE-2024-35958). -- Update - patches.suse/net-ethernet-mtk_eth_soc-fix-PPE-hanging-issue.patch - (git-fixes bsc#1224716 CVE-2024-27432). -- Update - patches.suse/net-hns3-fix-kernel-crash-when-1588-is-received-on-H.patch - (git-fixes bsc#1223041 CVE-2024-26881). -- Update - patches.suse/net-hns3-fix-kernel-crash-when-devlink-reload-during.patch - (git-fixes bsc#1225699 CVE-2024-36021). -- Update - patches.suse/net-ice-Fix-potential-NULL-pointer-dereference-in-ic.patch - (git-fixes bsc#1223051 CVE-2024-26855). -- Update - patches.suse/net-ks8851-Handle-softirqs-at-the-end-of-IRQ-thread-.patch - (git-fixes bsc#1224578 CVE-2024-35971). -- Update - patches.suse/net-ll_temac-platform_get_resource-replaced-by-wrong.patch - (git-fixes bsc#1224615 CVE-2024-35796). -- Update - patches.suse/net-mlx5-Properly-link-new-fs-rules-into-the-tree.patch - (git-fixes bsc#1224588 CVE-2024-35960). -- Update - patches.suse/net-mlx5-Register-devlink-first-under-devlink-lock.patch - (git-fixes bsc#1224585 CVE-2024-35961). -- Update - patches.suse/net-mlx5e-Fix-mlx5e_priv_init-cleanup-flow.patch - (git-fixes bsc#1224666 CVE-2024-35959). -- Update - patches.suse/net-mlx5e-Use-a-memory-barrier-to-enforce-PTP-WQ-xmi.patch - (git-fixes bsc#1223020 CVE-2024-26858). -- Update - patches.suse/net-mlx5e-fix-a-double-free-in-arfs_create_groups.patch - (jsc#PED-3311 bsc#1224605 CVE-2024-35835). -- Update - patches.suse/net-mlx5e-fix-a-potential-double-free-in-fs_any_crea.patch - (jsc#PED-3311 bsc#1224603 CVE-2023-52667). -- Update - patches.suse/net-mvpp2-clear-BM-pool-before-initialization.patch - (git-fixes bsc#1224500 CVE-2024-35837). -- Update - patches.suse/net-phy-micrel-Fix-potential-null-pointer-dereferenc.patch - (git-fixes bsc#1224513 CVE-2024-35891). -- Update - patches.suse/net-phy-phy_device-Prevent-nullptr-exceptions-on-ISR.patch - (stable-fixes bsc#1224639 CVE-2024-35945). -- Update - patches.suse/net-sparx5-Fix-use-after-free-inside-sparx5_del_mact.patch - (git-fixes bsc#1223052 CVE-2024-26856). -- Update patches.suse/net-tls-fix-WARNIING-in-__sk_msg_free.patch - (bsc#1221858 bsc#1224687 CVE-2024-35841). -- Update - patches.suse/net-wwan-t7xx-Split-64bit-accesses-to-fix-alignment-.patch - (git-fixes bsc#1224491 CVE-2024-35909). -- Update - patches.suse/nfc-nci-Fix-uninit-value-in-nci_dev_up-and-nci_ntf_p.patch - (git-fixes bsc#1224479 CVE-2024-35915). -- Update - patches.suse/nfp-flower-handle-acti_netdevs-allocation-failure.patch - (git-fixes bsc#1223827 CVE-2024-27046). -- Update - patches.suse/nfs-fix-panic-when-nfs4_ff_layout_prepare_ds-fails.patch - (git-fixes bsc#1223038 CVE-2024-26868). -- Update - patches.suse/nfsd-Fix-error-cleanup-path-in-nfsd_rename.patch - (bsc#1221044 CVE-2023-52591 bsc#1224482 CVE-2024-35914). -- Update - patches.suse/nouveau-dmem-handle-kcalloc-allocation-failure.patch - (git-fixes CVE-2024-26943). -- Update - patches.suse/nouveau-fix-instmem-race-condition-around-ptr-stores.patch - (git-fixes bsc#1223633 CVE-2024-26984). -- Update patches.suse/nouveau-lock-the-client-object-tree.patch - (stable-fixes bsc#1223834 CVE-2024-27062). -- Update - patches.suse/nouveau-uvmm-fix-addr-range-calcs-for-remap-operatio.patch - (git-fixes bsc#1225694 CVE-2024-36018). -- Update - patches.suse/nvme-fc-do-not-wait-in-vain-when-unloading-module.patch - (git-fixes bsc#1223023 CVE-2024-26846). -- Update - patches.suse/nvme-fix-reconnection-fail-due-to-reserved-tag-alloc.patch - (git-fixes bsc#1224717 CVE-2024-27435). -- Update - patches.suse/octeontx2-af-Use-separate-handlers-for-interrupts.patch - (git-fixes bsc#1223790 CVE-2024-27030). -- Update - patches.suse/octeontx2-pf-Fix-transmit-scheduler-resource-leak.patch - (git-fixes bsc#1224569 CVE-2024-35975). -- Update - patches.suse/of-Fix-double-free-in-of_parse_phandle_with_args_map.patch - (git-fixes bsc#1224508 CVE-2023-52679). -- Update - patches.suse/of-dynamic-Synchronize-of_changeset_destroy-with-the.patch - (git-fixes bsc#1224524 CVE-2024-35879). -- Update - patches.suse/of-module-prevent-NULL-pointer-dereference-in-vsnpri.patch - (stable-fixes bsc#1224671 CVE-2024-35878). -- Update - patches.suse/phy-marvell-a3700-comphy-Fix-out-of-bounds-read.patch - (git-fixes bsc#1224555 CVE-2024-35992). -- Update - patches.suse/phy-ti-tusb1210-Resolve-charger-det-crash-if-charger.patch - (git-fixes bsc#1224562 CVE-2024-35986). -- Update - patches.suse/pinctrl-core-delete-incorrect-free-in-pinctrl_enable.patch - (git-fixes CVE-2024-36940). -- Update - patches.suse/pinctrl-devicetree-fix-refcount-leak-in-pinctrl_dt_t.patch - (git-fixes CVE-2024-36959). -- Update - patches.suse/platform-chrome-cros_ec_uart-properly-fix-race-condi.patch - (git-fixes bsc#1224568 CVE-2024-35977). -- Update - patches.suse/power-supply-bq27xxx-i2c-Do-not-free-non-existing-IR.patch - (git-fixes bsc#1224437 CVE-2024-27412). -- Update - patches.suse/powerpc-imc-pmu-Add-a-null-pointer-check-in-update_events_in_group.patch - (git-fixes bsc#1224504 CVE-2023-52675). -- Update - patches.suse/powerpc-powernv-Add-a-null-pointer-check-in-opal_eve.patch - (bsc#1065729 bsc#1224682 CVE-2023-52686). -- Update - patches.suse/powerpc-powernv-Add-a-null-pointer-check-in-opal_pow.patch - (bsc#1181674 ltc#189159 git-fixes bsc#1224601 CVE-2023-52696). -- Update - patches.suse/powerpc-powernv-Add-a-null-pointer-check-to-scom_deb.patch - (bsc#1194869 bsc#1224611 CVE-2023-52690). -- Update - patches.suse/pstore-inode-Only-d_invalidate-is-needed.patch - (git-fixes bsc#1223705 CVE-2024-27389). -- Update - patches.suse/pstore-ram_core-fix-possible-overflow-in-persistent_.patch - (git-fixes bsc#1224728 CVE-2023-52685). -- Update - patches.suse/pstore-zone-Add-a-null-pointer-check-to-the-psz_kmsg.patch - (stable-fixes bsc#1224537 CVE-2024-35940). -- Update - patches.suse/regmap-maple-Fix-cache-corruption-in-regcache_maple_.patch - (git-fixes bsc#1225695 CVE-2024-36019). -- Update - patches.suse/rpmsg-virtio-Free-driver_override-when-rpmsg_remove.patch - (git-fixes bsc#1224696 CVE-2023-52670). -- Update - patches.suse/s390-cio-Ensure-the-copied-buf-is-NUL-terminated.patch - (git-fixes bsc#1223869 bsc#1225747 CVE-2024-36931). -- Update - patches.suse/s390-qeth-Fix-kernel-panic-after-setting-hsuid.patch - (git-fixes bsc#1223874 bsc#1225775 CVE-2024-36928). -- Update - patches.suse/s390-zcrypt-fix-reference-counting-on-zcrypt-card-objects.patch - (git-fixes bsc#1223592 bsc#1223666 CVE-2024-26957). -- Update - patches.suse/scsi-core-Fix-unremoved-procfs-host-directory-regression.patch - (git-fixes bsc#1223675 CVE-2024-26935). -- Update - patches.suse/scsi-lpfc-Fix-possible-memory-leak-in-lpfc_rcv_padis.patch - (bsc#1220021 bsc#1224651 CVE-2024-35930). -- Update - patches.suse/scsi-qla2xxx-Fix-off-by-one-in-qla_edif_app_getstats.patch - (git-fixes bsc#1225704 CVE-2024-36025). -- Update patches.suse/scsi-sg-Avoid-sg-device-teardown-race.patch - (git-fixes bsc#1224675 CVE-2024-35954). -- Update - patches.suse/scsi-smartpqi-Fix-disable_managed_interrupts.patch - (git-fixes bsc#1222608 CVE-2024-26742). -- Update - patches.suse/selinux-avoid-dereference-of-garbage-after-mount-fai.patch - (git-fixes bsc#1224494 CVE-2024-35904). -- Update - patches.suse/serial-mxs-auart-add-spinlock-around-changing-cts-st.patch - (git-fixes bsc#1223757 CVE-2024-27000). -- Update - patches.suse/serial-pmac_zilog-Remove-flawed-mitigation-for-rx-ir.patch - (git-fixes bsc#1223754 CVE-2024-26999). -- Update - patches.suse/soc-fsl-qbman-Always-disable-interrupts-when-taking-.patch - (git-fixes bsc#1224699 CVE-2024-35806). -- Update - patches.suse/soc-fsl-qbman-Use-raw-spinlock-for-cgr_lock.patch - (git-fixes bsc#1224683 CVE-2024-35819). -- Update patches.suse/speakup-Avoid-crash-on-very-long-word.patch - (git-fixes bsc#1223750 CVE-2024-26994). -- Update - patches.suse/spi-fix-null-pointer-dereference-within-spi_sync.patch - (git-fixes CVE-2024-36930). -- Update - patches.suse/spi-lpspi-Avoid-potential-use-after-free-in-probe.patch - (git-fixes bsc#1223024 CVE-2024-26866). -- Update - patches.suse/spi-mchp-pci1xxx-Fix-a-possible-null-pointer-derefer.patch - (git-fixes bsc#1224521 CVE-2024-35883). -- Update - patches.suse/spi-spi-mt65xx-Fix-NULL-pointer-access-in-interrupt-.patch - (git-fixes bsc#1223788 CVE-2024-27028). -- Update - patches.suse/ubifs-Set-page-uptodate-in-the-correct-place.patch - (git-fixes bsc#1224629 CVE-2024-35821). -- Update - patches.suse/usb-cdc-wdm-close-race-between-read-and-workqueue.patch - (git-fixes bsc#1224624 CVE-2024-35812). -- Update - patches.suse/usb-dwc2-host-Fix-dereference-issue-in-DDMA-completi.patch - (git-fixes bsc#1223741 CVE-2024-26997). -- Update - patches.suse/usb-dwc3-am62-fix-module-unload-reload-behavior.patch - (git-fixes bsc#1223651 CVE-2024-26963). -- Update - patches.suse/usb-gadget-f_fs-Fix-race-between-aio_cancel-and-AIO-.patch - (git-fixes bsc#1225749 CVE-2024-36894). -- Update - patches.suse/usb-gadget-f_ncm-Fix-UAF-ncm-object-at-re-bind-after.patch - (stable-fixes bsc#1223752 CVE-2024-26996). -- Update - patches.suse/usb-gadget-ncm-Avoid-dropping-datagrams-of-properly-.patch - (git-fixes bsc#1224423 CVE-2024-27405). -- Update - patches.suse/usb-gadget-ncm-Fix-handling-of-zero-block-length-pac.patch - (git-fixes bsc#1224681 CVE-2024-35825). -- Update - patches.suse/usb-gadget-uvc-use-correct-buffer-size-when-parsing-.patch - (git-fixes bsc#1225750 CVE-2024-36895). -- Update - patches.suse/usb-typec-altmodes-displayport-create-sysfs-nodes-as.patch - (git-fixes bsc#1224712 CVE-2024-35790). -- Update - patches.suse/usb-typec-tcpm-Check-for-port-partner-validity-befor.patch - (git-fixes bsc#1225748 CVE-2024-36893). -- Update - patches.suse/usb-typec-tcpm-Correct-the-PDO-counting-in-pd_set.patch - (git-fixes bsc#1223696 CVE-2024-26995). -- Update - patches.suse/usb-typec-tcpm-fix-double-free-issue-in-tcpm_port_un.patch - (git-fixes bsc#1223649 CVE-2024-26932). -- Update patches.suse/usb-typec-ucsi-Limit-read-size-on-v1.2.patch - (stable-fixes bsc#1224657 CVE-2024-35924). -- Update - patches.suse/usb-udc-remove-warning-when-queue-disabled-ep.patch - (stable-fixes bsc#1224739 CVE-2024-35822). -- Update - patches.suse/usb-xhci-Add-error-handling-in-xhci_map_urb_for_dma.patch - (git-fixes bsc#1223650 CVE-2024-26964). -- Update - patches.suse/vt-fix-unicode-buffer-corruption-when-deleting-chara.patch - (git-fixes bsc#1224692 CVE-2024-35823). -- Update - patches.suse/wifi-ath11k-decrease-MHI-channel-buffer-length-to-8K.patch - (bsc#1207948 bsc#1224643 CVE-2024-35938). -- Update - patches.suse/wifi-brcmfmac-Fix-use-after-free-bug-in-brcmf_cfg802.patch - (CVE-2023-47233 bsc#1216702 bsc#1224592 CVE-2024-35811). -- Update - patches.suse/wifi-cfg80211-check-A-MSDU-format-more-carefully.patch - (stable-fixes bsc#1224526 CVE-2024-35937). -- Update - patches.suse/wifi-iwlwifi-dbg-tlv-ensure-NUL-termination.patch - (git-fixes bsc#1224731 CVE-2024-35845). -- Update - patches.suse/wifi-iwlwifi-mvm-don-t-set-the-MFP-flag-for-the-GTK.patch - (git-fixes bsc#1224710 CVE-2024-27434). -- Update - patches.suse/wifi-iwlwifi-mvm-guard-against-invalid-STA-ID-on-rem.patch - (stable-fixes bsc#1225769 CVE-2024-36921). -- Update - patches.suse/wifi-iwlwifi-mvm-rfi-fix-potential-response-leaks.patch - (git-fixes bsc#1224487 CVE-2024-35912). -- Update - patches.suse/wifi-iwlwifi-read-txq-read_ptr-under-lock.patch - (stable-fixes CVE-2024-36922). -- Update - patches.suse/wifi-libertas-fix-some-memleaks-in-lbs_allocate_cmd_.patch - (git-fixes bsc#1224622 CVE-2024-35828). -- Update - patches.suse/wifi-mac80211-check-clear-fast-rx-for-non-4addr-sta-.patch - (stable-fixes bsc#1224749 CVE-2024-35789). -- Update - patches.suse/wifi-mac80211-fix-potential-sta-link-leak.patch - (git-fixes bsc#1224613 CVE-2024-35838). -- Update - patches.suse/wifi-nl80211-don-t-free-NULL-coalescing-rule.patch - (git-fixes CVE-2024-36941). -- Update - patches.suse/wifi-nl80211-reject-iftype-change-with-mesh-ID-chang.patch - (git-fixes bsc#1224432 CVE-2024-27410). -- Update - patches.suse/wifi-rtw89-fix-null-pointer-access-when-abort-scan.patch - (stable-fixes bsc#1224646 CVE-2024-35946). -- Update - patches.suse/wireguard-netlink-access-device-through-ctx-instead-.patch - (git-fixes bsc#1223661 CVE-2024-26950). -- Update - patches.suse/wireguard-netlink-check-for-dangling-peer-via-is_dea.patch - (git-fixes bsc#1223660 CVE-2024-26951). -- Update - patches.suse/wireguard-receive-annotate-data-race-around-receivin.patch - (git-fixes bsc#1223076 CVE-2024-26861). -- Update - patches.suse/x86-coco-Require-seeding-RNG-with-RDRAND-on-CoCo-systems.patch - (git-fixes bsc#1224665 CVE-2024-35875). -- Update - patches.suse/x86-fpu-Keep-xfd_state-in-sync-with-MSR_IA32_XFD.patch - (git-fixes bsc#1224732 CVE-2024-35801). -- Update - patches.suse/xen-evtchn-avoid-WARN-when-unbinding-an-event-channe.patch - (git-fixes bsc#1223739 CVE-2024-27067). -- Update - patches.suse/xsk-recycle-buffer-in-case-Rx-queue-was-full.patch - (bsc#1221303 CVE-2024-26611 bsc#1224620 CVE-2024-35834). -- commit 0191191 - ------------------------------------------------------------------- Mon Jun 3 14:06:08 CEST 2024 - mfranc@suse.cz @@ -19248,12 +25398,6 @@ Mon Jun 3 13:25:29 CEST 2024 - msuchanek@suse.de lookup (bsc#1187716 ltc#193451 git-fixes). - commit ceab637 -------------------------------------------------------------------- -Mon Jun 3 13:19:17 CEST 2024 - msuchanek@suse.de - -- blacklist.conf: PPC fsl_msi is not used -- commit ae6590d - ------------------------------------------------------------------- Mon Jun 3 13:03:27 CEST 2024 - msuchanek@suse.de @@ -19368,18 +25512,6 @@ Fri May 31 19:39:48 CEST 2024 - dsterba@suse.com - 9p: add missing locking around taking dentry fid list (git-fixes) - commit 581af2d -------------------------------------------------------------------- -Fri May 31 18:08:13 CEST 2024 - dsterba@suse.com - -- blacklist.conf: only a VFS cleanup -- commit f4a0ca8 - -------------------------------------------------------------------- -Fri May 31 18:00:27 CEST 2024 - dsterba@suse.com - -- blacklist.conf: openpromfs not built -- commit 475ff82 - ------------------------------------------------------------------- Fri May 31 17:58:22 CEST 2024 - dsterba@suse.com @@ -19429,24 +25561,12 @@ Fri May 31 17:08:22 CEST 2024 - shung-hsi.yu@suse.com - bpf: handle ldimm64 properly in check_cfg() (bsc#1225756). - commit 9cbb99b -------------------------------------------------------------------- -Fri May 31 16:48:47 CEST 2024 - dsterba@suse.com - -- blacklist.conf: remove add and revert patch pair -- commit f17fe30 - ------------------------------------------------------------------- Fri May 31 16:41:07 CEST 2024 - dsterba@suse.com - fs: indicate request originates from old mount API (git-fixes) - commit 0754468 -------------------------------------------------------------------- -Fri May 31 16:38:52 CEST 2024 - dsterba@suse.com - -- blacklist.conf: only comment fix -- commit b912460 - ------------------------------------------------------------------- Fri May 31 16:36:29 CEST 2024 - dsterba@suse.com @@ -19614,12 +25734,6 @@ Wed May 29 18:24:54 CEST 2024 - nstange@suse.de from the PKCS#7 selftest. - commit cfa0827 -------------------------------------------------------------------- -Wed May 29 17:39:53 CEST 2024 - mbrugger@suse.com - -- blacklist.conf: arm: kernel does not support folios -- commit e0489ca - ------------------------------------------------------------------- Wed May 29 17:23:53 CEST 2024 - pmladek@suse.com @@ -19820,13 +25934,6 @@ Wed May 29 13:45:07 CEST 2024 - pmladek@suse.com klp_resolve_symbols() (bsc#1223539). - commit af0f908 -------------------------------------------------------------------- -Wed May 29 13:33:07 CEST 2024 - pmladek@suse.com - -- blacklist.conf: workqueues: system-wide nr_active enforcement patchset; - not worth the risk (bsc#1225580) -- commit 059cebc - ------------------------------------------------------------------- Wed May 29 13:28:17 CEST 2024 - shung-hsi.yu@suse.com @@ -19872,12 +25979,6 @@ Wed May 29 11:25:39 CEST 2024 - jlee@suse.com (bsc#1224581 CVE-2024-35964). - commit 9d49d44 -------------------------------------------------------------------- -Wed May 29 11:06:17 CEST 2024 - pmladek@suse.com - -- blacklist.conf: workqueues: cosmetic; truncated names in ps output -- commit 2ed068f - ------------------------------------------------------------------- Wed May 29 10:52:47 CEST 2024 - jlee@suse.com @@ -20014,13 +26115,6 @@ Tue May 28 20:07:48 CEST 2024 - ematsumiya@suse.de (bsc#1225172). - commit 3ddf86f -------------------------------------------------------------------- -Tue May 28 16:02:28 CEST 2024 - iivanov@suse.de - -- blacklist.conf: Ignore all devicetree schemes changes - We do not use them, so lets silence all git-fixes for them. -- commit 84a3286 - ------------------------------------------------------------------- Tue May 28 13:34:20 CEST 2024 - nik.borisov@suse.com @@ -20250,18 +26344,6 @@ Mon May 27 15:40:09 CEST 2024 - dsterba@suse.com - btrfs: make error messages more clear when getting a chunk map (git-fixes) - commit 47ecf55 -------------------------------------------------------------------- -Mon May 27 15:38:41 CEST 2024 - dsterba@suse.com - -- blacklist.conf: btrfs: compilation warning fix -- commit 02490e2 - -------------------------------------------------------------------- -Mon May 27 15:37:02 CEST 2024 - dsterba@suse.com - -- blacklist.conf: btrfs: code not built -- commit 5199fc3 - ------------------------------------------------------------------- Mon May 27 15:29:06 CEST 2024 - dsterba@suse.com @@ -20307,12 +26389,6 @@ Mon May 27 15:20:36 CEST 2024 - petr.pavlu@suse.com - tracing: hide unused ftrace_event_id_fops (git-fixes). - commit 61c90c7 -------------------------------------------------------------------- -Mon May 27 15:19:03 CEST 2024 - petr.pavlu@suse.com - -- blacklist.conf: add not-relevant tracing commits -- commit b97c070 - ------------------------------------------------------------------- Mon May 27 11:19:26 CEST 2024 - nik.borisov@suse.com @@ -21596,14 +27672,6 @@ Wed May 22 10:48:23 CEST 2024 - iivanov@suse.de - supported.conf: Add APM X-Gene SoC hardware monitoring driver (bsc#1223265 jsc#PED-8570) - commit 4b0eeb3 -------------------------------------------------------------------- -Wed May 22 10:35:02 CEST 2024 - lhenriques@suse.de - -- blacklist.conf: cephfs client logging infrastructure commits - These two commits are useless in isolation, they are part of a larger set - of commits that add extra info to debug logs. -- commit 2056926 - ------------------------------------------------------------------- Wed May 22 08:47:44 CEST 2024 - tiwai@suse.de @@ -21688,12 +27756,6 @@ Tue May 21 16:07:04 CEST 2024 - jgross@suse.com dirty status (git-fixes). - commit 7bdd69f -------------------------------------------------------------------- -Tue May 21 15:26:06 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add a1fd0b9d751f sched/fair: Allow disabling sched_balance_newidle with sched_relax_domain_level -- commit 3d0aa70 - ------------------------------------------------------------------- Tue May 21 15:16:02 CEST 2024 - tiwai@suse.de @@ -21889,12 +27951,6 @@ Tue May 21 09:57:46 CEST 2024 - jgross@suse.com due to bad index (git-fixes). - commit b2e9cf1 -------------------------------------------------------------------- -Tue May 21 09:22:11 CEST 2024 - shung-hsi.yu@suse.com - -- blacklist.conf: add "libbpf: Fix NULL pointer dereference in bpf_object__collect_prog_relos" -- commit f859338 - ------------------------------------------------------------------- Tue May 21 09:07:54 CEST 2024 - jgross@suse.com @@ -22036,12 +28092,6 @@ Mon May 20 17:28:06 CEST 2024 - dsterba@suse.com - btrfs: sysfs: validate scrub_speed_max value (git-fixes) - commit 333b480 -------------------------------------------------------------------- -Mon May 20 17:26:31 CEST 2024 - dsterba@suse.com - -- blacklist.conf: btrfs: build fix for config we don't use -- commit d489b93 - ------------------------------------------------------------------- Mon May 20 17:25:16 CEST 2024 - dsterba@suse.com @@ -22210,12 +28260,6 @@ Mon May 20 15:37:10 CEST 2024 - nmorey@suse.com - RDMA/rxe: Fix the problem "mutex_destroy missing" (git-fixes) - commit 0a73f85 -------------------------------------------------------------------- -Mon May 20 14:08:23 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: dts: broadcom: bcmbca: bcm4908: set brcm,wp-not-connected") -- commit a7b0273 - ------------------------------------------------------------------- Mon May 20 14:04:41 CEST 2024 - iivanov@suse.de @@ -22265,270 +28309,12 @@ Mon May 20 13:22:07 CEST 2024 - iivanov@suse.de Refresh patches.suse/arm64-dts-rockchip-enable-internal-pull-up-on-PCIE_WAKE-for-RK3399-Puma.patch - commit aeac8db -------------------------------------------------------------------- -Mon May 20 12:53:44 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: display: samsung,ams495qa01: add missing SPI properties") -- commit f4f5a90 - -------------------------------------------------------------------- -Mon May 20 12:53:08 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: iio: health: maxim,max30102: fix compatible check") -- commit 1690e24 - -------------------------------------------------------------------- -Mon May 20 12:52:51 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: pwm: mediatek,pwm-disp: Document power-domains property") -- commit 6958159 - -------------------------------------------------------------------- -Mon May 20 12:52:16 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: fsl-imx-sdma: fix HDMI audio index") -- commit 952bf73 - -------------------------------------------------------------------- -Mon May 20 12:52:05 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: lcdif: Do not require power-domains for i.MX6ULL") -- commit eabdd33 - -------------------------------------------------------------------- -Mon May 20 12:51:52 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: interrupt-controller: renesas,rzg2l-irqc: Update") -- commit ad9009e - -------------------------------------------------------------------- -Mon May 20 12:51:31 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mtd: avoid automatically select from mtd.yaml") -- commit 2d9981a - -------------------------------------------------------------------- -Mon May 20 12:51:15 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: can: mpfs: add missing required clock") -- commit d5f79eb - -------------------------------------------------------------------- -Mon May 20 12:50:57 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mfd: dlg,da9063: Make #interrupt-cells required") -- commit a6ea77b - -------------------------------------------------------------------- -Mon May 20 12:50:46 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: pinctr: pinctrl-zynq: Fix compatible string") -- commit f208a95 - -------------------------------------------------------------------- -Mon May 20 12:49:28 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: msm: qcom, mdss: Include ommited fam-b compatible") -- commit 3478db8 - -------------------------------------------------------------------- -Mon May 20 12:49:08 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: display: ti,am65x-dss: Add support for common1 region") -- commit 7eb6591 - -------------------------------------------------------------------- -Mon May 20 12:48:50 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: opp: drop maxItems from inner items") -- commit 878a019 - -------------------------------------------------------------------- -Mon May 20 12:48:31 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: pwm: amlogic: fix s4 bindings") -- commit e2029e3 - -------------------------------------------------------------------- -Mon May 20 12:48:15 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: arm: rockchip: Correct vendor for Banana Pi R2 Pro") -- commit c1d1519 - -------------------------------------------------------------------- -Mon May 20 12:45:53 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: arm: rockchip: Correct vendor for Orange Pi RK3399 board") -- commit 88539b6 - ------------------------------------------------------------------- Mon May 20 12:45:20 CEST 2024 - iivanov@suse.de - dt-bindings: clock: qcom: Add missing UFS QREF clocks (git-fixes) - commit 4e403e4 -------------------------------------------------------------------- -Mon May 20 12:43:49 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: arm: qcom: drop the superfluous device compatibility") -- commit f6fdbc2 - -------------------------------------------------------------------- -Mon May 20 12:43:00 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: riscv: cpus: Clarify mmu-type interpretation") -- commit 4b6b7f4 - -------------------------------------------------------------------- -Mon May 20 12:42:52 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: power: reset: qcom-pon: fix inconsistent example") -- commit b2da43b - -------------------------------------------------------------------- -Mon May 20 12:42:42 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: rtc: qcom-pm8xxx: fix inconsistent example") -- commit 673e959 - -------------------------------------------------------------------- -Mon May 20 12:42:30 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: phy: qcom,sc8280xp-qmp-usb43dp-phy: fix path to header") -- commit 2965719 - -------------------------------------------------------------------- -Mon May 20 12:42:17 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: phy: amlogic,g12a-mipi-dphy-analog: drop unneeded reg") -- commit 44293cc - -------------------------------------------------------------------- -Mon May 20 12:42:03 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: gpio: xilinx: Fix node address in gpio") -- commit 51eae0f - -------------------------------------------------------------------- -Mon May 20 12:41:48 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: iio/adc: qcom,spmi-vadc: fix example node names") -- commit 5559cae - -------------------------------------------------------------------- -Mon May 20 12:41:19 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: iio/adc: qcom,spmi-iadc: fix example node name") -- commit 6d910c5 - -------------------------------------------------------------------- -Mon May 20 12:39:37 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: PCI: qcom: Correct reset-names property") -- commit cfa6f44 - -------------------------------------------------------------------- -Mon May 20 12:17:43 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mailbox: zynqmp: extend required list") -- commit 193f0ac - -------------------------------------------------------------------- -Mon May 20 12:17:21 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mailbox: qcom,apcs-kpss-global: drop duplicated") -- commit 855a271 - -------------------------------------------------------------------- -Mon May 20 12:17:05 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mfd: hisilicon,hi6421-spmi-pmic: Fix regulator binding") -- commit 9b3e020 - -------------------------------------------------------------------- -Mon May 20 12:16:23 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mfd: hisilicon,hi6421-spmi-pmic: Fix up binding") -- commit a0c4967 - -------------------------------------------------------------------- -Mon May 20 12:16:03 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: remoteproc: qcom: sc7180-pas: Fix SC7280 MPSS PD-names") -- commit de1ba63 - -------------------------------------------------------------------- -Mon May 20 11:58:54 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mmc: sdhci-pxa: Fix 'regs' typo") -- commit 3378497 - -------------------------------------------------------------------- -Mon May 20 11:58:39 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: Remove alt_ref from versal") -- commit 4d14333 - -------------------------------------------------------------------- -Mon May 20 11:58:17 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: watchdog: qcom-wdt: Make the interrupt example edge") -- commit 17a3ab8 - -------------------------------------------------------------------- -Mon May 20 11:57:04 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: display: msm: qcm2290-mdss: Use the non-deprecated DSI") -- commit 4aa1481 - -------------------------------------------------------------------- -Mon May 20 11:56:20 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: arm: stm32: don't mix SCMI and non-SCMI board") -- commit 448ff06 - -------------------------------------------------------------------- -Mon May 20 11:55:42 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: media: mediatek: mdp3: correct RDMA and WROT node with") -- commit ab03332 - -------------------------------------------------------------------- -Mon May 20 11:55:04 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: nvmem: mxs-ocotp: Document fsl,ocotp") -- commit 1d6fc28 - -------------------------------------------------------------------- -Mon May 20 11:54:37 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: interrupt-controller: Allow #power-domain-cells") -- commit 027195f - -------------------------------------------------------------------- -Mon May 20 11:54:05 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt: dt-extract-compatibles: Don't follow symlinks when walking tree") -- commit 60fcfee - -------------------------------------------------------------------- -Mon May 20 11:52:07 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: soc: fsl: cpm_qe: cpm1-scc-qmc: Fix example property") -- commit de60146 - -------------------------------------------------------------------- -Mon May 20 11:51:01 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: PCI: brcm,iproc-pcie: Fix 'msi' child node schema") -- commit d7b96e4 - -------------------------------------------------------------------- -Mon May 20 11:49:15 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: soc: qcom: smd-rpm: Add MSM8909 to qcom,smd-channels") -- commit 1171729 - ------------------------------------------------------------------- Mon May 20 08:14:54 CEST 2024 - tiwai@suse.de @@ -22571,19 +28357,6 @@ Sun May 19 09:24:05 CEST 2024 - tiwai@suse.de (git-fixes). - commit 8bfa411 -------------------------------------------------------------------- -Sun May 19 04:57:25 CEST 2024 - jlee@suse.com - -- Bluetooth: Fix use-after-free bugs caused by sco_sock_timeout - (bsc#1224174 CVE-2024-27398). -- commit 5039ac8 - -------------------------------------------------------------------- -Sat May 18 09:44:27 CEST 2024 - tiwai@suse.de - -- blacklist.conf: Add reverted dmaengine commit entries -- commit 134f997 - ------------------------------------------------------------------- Sat May 18 09:42:47 CEST 2024 - tiwai@suse.de @@ -22713,12 +28486,6 @@ Fri May 17 14:31:26 CEST 2024 - dsterba@suse.com - btrfs: file_remove_privs needs an exclusive lock in direct io write (git-fixes) - commit 0bc88db -------------------------------------------------------------------- -Fri May 17 14:29:12 CEST 2024 - dsterba@suse.com - -- blacklist.conf: btrfs: cleanup, v0 extent removal -- commit fecc398 - ------------------------------------------------------------------- Fri May 17 14:28:15 CEST 2024 - dsterba@suse.com @@ -23048,12 +28815,6 @@ Thu May 16 15:22:52 CEST 2024 - dsterba@suse.com - btrfs: fix off-by-one when checking chunk map includes logical address (git-fixes) - commit e5842bb -------------------------------------------------------------------- -Thu May 16 15:20:56 CEST 2024 - dsterba@suse.com - -- blacklist.conf: btrfs: ref-verify not built -- commit 701d654 - ------------------------------------------------------------------- Thu May 16 15:20:06 CEST 2024 - dsterba@suse.com @@ -23371,12 +29132,6 @@ Wed May 15 14:30:48 CEST 2024 - mkoutny@suse.com - cifs: fix underflow in parse_server_interfaces() (CVE-2024-26828 bsc#1223084). - commit 40aba68 -------------------------------------------------------------------- -Wed May 15 14:27:20 CEST 2024 - dsterba@suse.com - -- blacklist.conf: fs updates -- commit 372a9be - ------------------------------------------------------------------- Wed May 15 13:58:14 CEST 2024 - denis.kirjanov@suse.com @@ -23770,12 +29525,6 @@ Tue May 14 10:50:12 CEST 2024 - nik.borisov@suse.com patches.suse/x86-srso-fix-vulnerability-reporting-for-missing-microcode.patch. - commit 3afb908 -------------------------------------------------------------------- -Tue May 14 10:41:29 CEST 2024 - oneukum@suse.com - -- blacklist.conf: not applicable -- commit 158f7dc - ------------------------------------------------------------------- Tue May 14 10:25:06 CEST 2024 - nik.borisov@suse.com @@ -23850,12 +29599,6 @@ Mon May 13 19:20:28 CEST 2024 - dsterba@suse.com - btrfs: add missing mutex_unlock in btrfs_relocate_sys_chunks() (git-fixes) - commit 8bc326a -------------------------------------------------------------------- -Mon May 13 18:29:29 CEST 2024 - tonyj@suse.de - -- blacklist.conf: add perf patch already known by alias commit -- commit 706da8e - ------------------------------------------------------------------- Mon May 13 17:53:02 CEST 2024 - dsterba@suse.com @@ -23899,12 +29642,6 @@ Mon May 13 17:32:40 CEST 2024 - dsterba@suse.com - btrfs: release path before inode lookup during the ino lookup ioctl (git-fixes) - commit 4b7ba54 -------------------------------------------------------------------- -Mon May 13 17:29:01 CEST 2024 - dsterba@suse.com - -- blacklist.conf: Add 2d6cd791e63e "btrfs: fix race between finishing block group creation and its item update" -- commit ca673ac - ------------------------------------------------------------------- Mon May 13 17:09:25 CEST 2024 - tiwai@suse.de @@ -23933,18 +29670,6 @@ Mon May 13 15:02:10 CEST 2024 - nstange@suse.de - crypto: rsa - add a check for allocation failure (bsc#1222775). - commit 8c6c396 -------------------------------------------------------------------- -Mon May 13 14:53:32 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 70f199a - -------------------------------------------------------------------- -Mon May 13 14:51:33 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 835874a - ------------------------------------------------------------------- Mon May 13 14:00:14 CEST 2024 - tiwai@suse.de @@ -24862,18 +30587,6 @@ Thu May 2 15:14:12 CEST 2024 - iivanov@suse.de - arm64: dts: rockchip: fix rk3328 hdmi ports node (git-fixes) - commit 3f691a1 -------------------------------------------------------------------- -Thu May 2 15:12:55 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: dts: rockchip: mark system power controller on rk3588-evb1") -- commit 24dc024 - -------------------------------------------------------------------- -Thu May 2 15:11:02 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64/mm: Modify range-based tlbi to decrement scale") -- commit 9fd5163 - ------------------------------------------------------------------- Thu May 2 13:38:24 CEST 2024 - jslaby@suse.cz @@ -24992,12 +30705,6 @@ Tue Apr 30 16:11:40 CEST 2024 - tiwai@suse.de (CVE-2024-23848 bsc#1219104). - commit c39ac04 -------------------------------------------------------------------- -Tue Apr 30 16:07:18 CEST 2024 - mfranc@suse.cz - -- blacklist.conf: refactoring, not a fix -- commit d5a22ac - ------------------------------------------------------------------- Tue Apr 30 16:02:50 CEST 2024 - mfranc@suse.cz @@ -25346,12 +31053,6 @@ Sat Apr 27 08:33:05 CEST 2024 - tiwai@suse.de - drm/gma500: Remove lid code (git-fixes). - commit 783bf0e -------------------------------------------------------------------- -Fri Apr 26 18:54:14 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add 246f80a0b17f8 ("sh: push-switch: Reorder cleanup operations to avoid use-after-free bug") -- commit 0fe9e4b - ------------------------------------------------------------------- Fri Apr 26 12:38:44 CEST 2024 - tiwai@suse.de @@ -25795,12 +31496,6 @@ Mon Apr 22 13:54:41 CEST 2024 - nik.borisov@suse.com - x86/bugs: Fix BHI retpoline check (git-fixes). - commit 00081b1 -------------------------------------------------------------------- -Mon Apr 22 13:53:35 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: Blacklist spurious patch -- commit 14b3e73 - ------------------------------------------------------------------- Mon Apr 22 08:45:08 CEST 2024 - msuchanek@suse.de @@ -25910,20 +31605,6 @@ Sat Apr 20 08:38:21 CEST 2024 - tiwai@suse.de - nilfs2: fix OOB in nilfs_set_de_type (git-fixes). - commit de35710 -------------------------------------------------------------------- -Fri Apr 19 21:07:04 CEST 2024 - tonyj@suse.de - -- blacklist.conf: kill erroneous blank line added by 58324b9ff787 -- commit abcb85f - -------------------------------------------------------------------- -Fri Apr 19 19:47:40 CEST 2024 - lduncan@suse.com - -- blacklist.conf: add 3 commits to be skipped - One is a configuration change for an unused options, and - two are for SCSI structure changes that breaks kabi. -- commit c143746 - ------------------------------------------------------------------- Fri Apr 19 18:37:34 CEST 2024 - lduncan@suse.com @@ -26636,13 +32317,6 @@ Tue Apr 16 18:23:07 CEST 2024 - jbohac@suse.cz Refresh patches.suse/kdump-implement-reserve_crashkernel_cma.patch. - commit b256f70 -------------------------------------------------------------------- -Tue Apr 16 16:43:44 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: Disable irrelevant patch - We don't have syscall hardening in our kernels. -- commit 36739c9 - ------------------------------------------------------------------- Tue Apr 16 16:43:33 CEST 2024 - nik.borisov@suse.com @@ -26952,12 +32626,6 @@ Mon Apr 15 10:15:49 CEST 2024 - iivanov@suse.de - Update patches.suse/spi-hisi-sfc-v3xx-Return-IRQ_NONE-if-no-interrupts-w.patch (git-fixes CVE-2024-26776 bsc#1222764) - commit ec068f3 -------------------------------------------------------------------- -Mon Apr 15 09:13:59 CEST 2024 - colyli@suse.de - -- blacklist.conf: add non-backport md git-fixes patch commit. -- commit 58324b9 - ------------------------------------------------------------------- Mon Apr 15 09:12:46 CEST 2024 - colyli@suse.de @@ -27152,12 +32820,6 @@ Thu Apr 11 15:27:33 CEST 2024 - mhocko@suse.com (bsc#1220419 CVE-2024-26752 bsc#1222667). - commit 2f09d95 -------------------------------------------------------------------- -Thu Apr 11 15:17:11 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add d9b3ce8769e3 mm: writeback: ratelimit stat flush from mem_cgroup_wb_stats -- commit 82800cb - ------------------------------------------------------------------- Thu Apr 11 12:01:45 CEST 2024 - jslaby@suse.cz @@ -27720,12 +33382,6 @@ Mon Apr 8 13:38:54 CEST 2024 - iivanov@suse.de - arm64: dts: broadcom: bcmbca: bcm4908: drop invalid switch cells (git-fixes) - commit c68c0f5 -------------------------------------------------------------------- -Mon Apr 8 13:37:17 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: ftrace: Don't forbid CALL_OPS+CC_OPTIMIZE_FOR_SIZE with Clang") -- commit 92045ae - ------------------------------------------------------------------- Mon Apr 8 13:35:46 CEST 2024 - iivanov@suse.de @@ -28322,12 +33978,6 @@ Tue Apr 2 13:36:01 CEST 2024 - tiwai@suse.de (bsc#1193599). - commit 3dfca11 -------------------------------------------------------------------- -Tue Apr 2 10:38:32 CEST 2024 - pjakobsson@suse.de - -- blacklist.conf: fbdev: flush deferred IO before closing (bsc#1221814) -- commit 6339fe4 - ------------------------------------------------------------------- Tue Apr 2 09:02:40 CEST 2024 - mkubecek@suse.cz @@ -28414,12 +34064,6 @@ Sat Mar 30 09:55:11 CET 2024 - tiwai@suse.de in acpi_db_walk_for_fields() (git-fixes). - commit 3764402 -------------------------------------------------------------------- -Fri Mar 29 11:21:01 CET 2024 - mkoutny@suse.com - -- README.BRANCH: Remove copy of branch name -- commit 85aeac7 - ------------------------------------------------------------------- Fri Mar 29 11:21:00 CET 2024 - mkoutny@suse.com @@ -29507,12 +35151,6 @@ Mon Mar 25 10:15:05 CET 2024 - denis.kirjanov@suse.com - Update references - commit 2642ab1 -------------------------------------------------------------------- -Mon Mar 25 09:10:29 CET 2024 - jslaby@suse.cz - -- blacklist.conf: add one PCI miss -- commit 45d2467 - ------------------------------------------------------------------- Mon Mar 25 09:06:28 CET 2024 - jslaby@suse.cz @@ -30077,12 +35715,6 @@ Wed Mar 20 14:31:18 CET 2024 - mgorman@suse.de patches.suse/printk-Monolithic-bring-printk-up-to-date-with-v6.6-rt25.patch. - commit dde15d2 -------------------------------------------------------------------- -Wed Mar 20 13:05:54 CET 2024 - jslaby@suse.cz - -- blacklist.conf: add one x86/mem_encrypt entry -- commit 6d2cc3b - ------------------------------------------------------------------- Wed Mar 20 13:04:03 CET 2024 - jslaby@suse.cz @@ -30168,12 +35800,6 @@ Wed Mar 20 02:06:22 CET 2024 - neilb@suse.de - SUNRPC: fix a memleak in gss_import_v2_context (git-fixes). - commit cf1cfe0 -------------------------------------------------------------------- -Wed Mar 20 01:13:52 CET 2024 - neilb@suse.de - -- blacklist.conf: add a 'cosmetic' commit -- commit 704be6f - ------------------------------------------------------------------- Tue Mar 19 18:30:13 CET 2024 - mkoutny@suse.com @@ -31785,12 +37411,6 @@ Wed Mar 13 15:26:37 CET 2024 - tiwai@suse.de - 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 @@ -31803,12 +37423,6 @@ 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 @@ -32261,24 +37875,6 @@ 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 @@ -32533,12 +38129,6 @@ Wed Mar 6 17:32:46 CET 2024 - msuchanek@suse.de (jsc#PED-7970). - commit 1346447 -------------------------------------------------------------------- -Wed Mar 6 16:34:55 CET 2024 - mkoutny@suse.com - -- blacklist.conf: Add 118642d7f606 mm: memcontrol: clarify swapaccount=0 deprecation warning -- commit b280e82 - ------------------------------------------------------------------- Wed Mar 6 15:32:29 CET 2024 - iivanov@suse.de @@ -32627,12 +38217,6 @@ Wed Mar 6 04:43:19 CET 2024 - ailiop@suse.com (bsc#1220897 CVE-2023-52526). - commit ff061f8 -------------------------------------------------------------------- -Tue Mar 5 23:08:29 CET 2024 - tonyj@suse.de - -- blacklist.conf: Mark "Fix 'perf script' tests on s390" as irrelvant -- commit 80d8ff7 - ------------------------------------------------------------------- Tue Mar 5 23:07:57 CET 2024 - tonyj@suse.de @@ -32861,12 +38445,6 @@ Tue Mar 5 13:13:04 CET 2024 - tiwai@suse.de - drm/amd/display: Fix a debugfs null pointer error (git-fixes). - commit 36bc980 -------------------------------------------------------------------- -Tue Mar 5 13:12:26 CET 2024 - tiwai@suse.de - -- blacklist.conf: drop amdgpu commit that will be backported now -- commit eac0ec4 - ------------------------------------------------------------------- Tue Mar 5 13:11:19 CET 2024 - nstange@suse.de @@ -33508,14 +39086,6 @@ Thu Feb 29 19:05:14 CET 2024 - mhocko@suse.com (git-fixes, bsc#1220398, CVE-2024-26602). - commit 2095c13 -------------------------------------------------------------------- -Thu Feb 29 18:59:01 CET 2024 - krisman@suse.de - -- blacklist.conf: Add duplicated commit "io_uring/af_unix: disable sending io_uring over sockets" - This was merged twice, through net and io_uring trees. Since we already - applied the net version as a CVE fix, blacklist the io_uring hash. -- commit ebf8ff8 - ------------------------------------------------------------------- Thu Feb 29 15:34:13 CET 2024 - petr.pavlu@suse.com @@ -35063,12 +40633,6 @@ Mon Feb 26 16:20:43 CET 2024 - iivanov@suse.de - arm64/signal: Don't assume that TIF_SVE means we saved SVE state (git-fixes) - commit 09cd4e0 -------------------------------------------------------------------- -Mon Feb 26 16:19:42 CET 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: scs: Disable LTO for SCS patching code") -- commit 58e088b - ------------------------------------------------------------------- Mon Feb 26 16:16:26 CET 2024 - iivanov@suse.de @@ -35184,12 +40748,6 @@ Mon Feb 26 12:54:01 CET 2024 - tiwai@suse.de - Drop ath11k hibernation patches for refreshing to the new patch set (bsc#1207948) - commit f6e50f6 -------------------------------------------------------------------- -Mon Feb 26 12:25:59 CET 2024 - msuchanek@suse.de - -- blacklist.conf: Add reverted commit. -- commit c46ef6f - ------------------------------------------------------------------- Mon Feb 26 10:22:14 CET 2024 - pjakobsson@suse.de @@ -35197,12 +40755,6 @@ Mon Feb 26 10:22:14 CET 2024 - pjakobsson@suse.de dc_dmub_srv (git-fixes). - commit 351cd92 -------------------------------------------------------------------- -Mon Feb 26 10:21:12 CET 2024 - pjakobsson@suse.de - -- blacklist.conf: dbf5d3d02987 drm/amd/display: Check writeback connectors in create_validate_stream_for_sink -- commit f11d1ed - ------------------------------------------------------------------- Mon Feb 26 10:19:59 CET 2024 - pjakobsson@suse.de @@ -36442,12 +41994,6 @@ Tue Feb 20 11:41:41 CET 2024 - jgross@suse.com (git-fixes). - commit fb286cc -------------------------------------------------------------------- -Tue Feb 20 11:07:23 CET 2024 - jgross@suse.com - -- blacklist.conf: add 7d8c67dd5d4f2 (only comment changes) -- commit c4873a4 - ------------------------------------------------------------------- Tue Feb 20 11:04:11 CET 2024 - jgross@suse.com @@ -36466,12 +42012,6 @@ Tue Feb 20 10:06:08 CET 2024 - oneukum@suse.com - timers: Tag (hr)timer softirq as hotplug safe (git-fixes). - commit 37f54ca -------------------------------------------------------------------- -Tue Feb 20 10:01:24 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive, fixed feature not backported -- commit 6569781 - ------------------------------------------------------------------- Tue Feb 20 09:57:03 CET 2024 - jgross@suse.com @@ -36564,16 +42104,11 @@ Mon Feb 19 16:52:01 CET 2024 - msuchanek@suse.de - commit 72b942a ------------------------------------------------------------------- -Mon Feb 19 15:53:41 CET 2024 - msuchanek@suse.de +Mon Feb 19 16:16:15 CET 2024 - lhruska@suse.cz -- blacklist: Add more files for unsupported powerpc architectures -- commit 47ca633 - -------------------------------------------------------------------- -Mon Feb 19 15:29:10 CET 2024 - mbrugger@suse.com - -- blacklist.conf: fix for config we don't have -- commit 6278860 +- rpm/scripts: Remove obsolete Symbols.list + Symbols.list is not longer needed by the new klp-convert implementation. (bsc#1218644) +- commit 596cf9f ------------------------------------------------------------------- Mon Feb 19 15:22:04 CET 2024 - msuchanek@suse.de @@ -50767,12 +56302,6 @@ Wed Feb 14 15:58:54 CET 2024 - jgross@suse.com - Update config files. - commit 6e3621a -------------------------------------------------------------------- -Wed Feb 14 15:48:32 CET 2024 - oneukum@suse.com - -- blacklist.conf: obsoleted -- commit c534e08 - ------------------------------------------------------------------- Wed Feb 14 15:26:00 CET 2024 - oneukum@suse.com @@ -50868,12 +56397,6 @@ Wed Feb 14 14:41:06 CET 2024 - oneukum@suse.com and v1.9.0 (git-fixes). - commit c7b4716 -------------------------------------------------------------------- -Wed Feb 14 14:33:32 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive -- commit 88b8f1d - ------------------------------------------------------------------- Wed Feb 14 14:28:52 CET 2024 - oneukum@suse.com @@ -51045,12 +56568,6 @@ Wed Feb 14 12:31:44 CET 2024 - denis.kirjanov@suse.com - net: ravb: Use pm_runtime_resume_and_get() (git-fixes). - commit f02fced -------------------------------------------------------------------- -Wed Feb 14 12:30:47 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive -- commit 569fb89 - ------------------------------------------------------------------- Wed Feb 14 12:30:19 CET 2024 - denis.kirjanov@suse.com @@ -51064,12 +56581,6 @@ Wed Feb 14 12:28:50 CET 2024 - denis.kirjanov@suse.com - net: libwx: fix memory leak on msix entry (git-fixes). - commit 159ffaa -------------------------------------------------------------------- -Wed Feb 14 12:24:16 CET 2024 - oneukum@suse.com - -- blacklist.conf: stupid cleanup -- commit 7489b61 - ------------------------------------------------------------------- Wed Feb 14 12:21:18 CET 2024 - jgross@suse.com @@ -51323,12 +56834,6 @@ Tue Feb 13 17:38:00 CET 2024 - jgross@suse.com (jsc#PED-7322). - commit 8de3668 -------------------------------------------------------------------- -Tue Feb 13 17:18:08 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive -- commit 3612d1b - ------------------------------------------------------------------- Tue Feb 13 17:15:19 CET 2024 - colyli@suse.de @@ -52027,12 +57532,6 @@ Fri Feb 9 14:28:37 CET 2024 - denis.kirjanov@suse.com for MT7986 SoC (git-fixes). - commit be286c4 -------------------------------------------------------------------- -Fri Feb 9 14:28:23 CET 2024 - tiwai@suse.de - -- blacklist.conf: drop two entries to be revived (bsc#1219692) -- commit ba7ec6f - ------------------------------------------------------------------- Fri Feb 9 14:26:52 CET 2024 - denis.kirjanov@suse.com @@ -52372,12 +57871,6 @@ Tue Feb 6 12:36:41 CET 2024 - jroedel@suse.de - Update config files. - commit 646dbdf -------------------------------------------------------------------- -Tue Feb 6 12:32:50 CET 2024 - vbabka@suse.cz - -- blacklist.conf: add f96c48670319 ("mm: disable CONFIG_PER_VMA_LOCK until its fixed") -- commit 8e3f9d5 - ------------------------------------------------------------------- Tue Feb 6 12:26:12 CET 2024 - fweisbecker@suse.de @@ -52936,13 +58429,6 @@ Mon Feb 5 21:17:53 CET 2024 - vbabka@suse.cz section of file mapping lock (bsc#1219558). - commit 4a16ce1 -------------------------------------------------------------------- -Mon Feb 5 19:22:20 CET 2024 - dwagner@suse.de - -- blacklist.conf: add 'nvme: fix error-handling for io_uring - nvme-passthrough' -- commit 36e1796 - ------------------------------------------------------------------- Mon Feb 5 19:14:18 CET 2024 - dwagner@suse.de @@ -56026,12 +61512,6 @@ Wed Jan 24 15:25:26 CET 2024 - iivanov@suse.de - arm64: add dependency between vmlinuz.efi and Image (git-fixes) - commit d79de8f -------------------------------------------------------------------- -Wed Jan 24 15:24:15 CET 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: dts: rockchip: Add NanoPC T6 PCIe e-key support") -- commit a24916f - ------------------------------------------------------------------- Wed Jan 24 15:22:57 CET 2024 - iivanov@suse.de @@ -56082,18 +61562,6 @@ Tue Jan 23 17:34:56 CET 2024 - jack@suse.cz - blk-wbt: Fix detection of dirty-throttled tasks (bsc#1218272). - commit 497a3db -------------------------------------------------------------------- -Tue Jan 23 13:33:21 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive, driver not backported -- commit f337957 - -------------------------------------------------------------------- -Tue Jan 23 13:28:37 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive without driver conversion to glue layer -- commit 5276996 - ------------------------------------------------------------------- Tue Jan 23 13:12:13 CET 2024 - tiwai@suse.de @@ -58103,18 +63571,6 @@ Tue Jan 16 19:40:07 CET 2024 - lduncan@suse.com - scsi: libsas: Simplify sas_check_eeds() (bsc#1216435). - commit 0820552 -------------------------------------------------------------------- -Tue Jan 16 18:44:09 CET 2024 - mkoutny@suse.com - -- blacklist.conf: Add 24e41bf8a6b4 mm: add a NO_INHERIT flag to the PR_SET_MDWE prctl -- commit b099e35 - -------------------------------------------------------------------- -Tue Jan 16 18:39:20 CET 2024 - mkoutny@suse.com - -- blacklist.conf: Add 793838138c15 prctl: Disable prctl(PR_SET_MDWE) on parisc -- commit 892fb82 - ------------------------------------------------------------------- Tue Jan 16 18:37:39 CET 2024 - mkoutny@suse.com @@ -58612,13 +64068,6 @@ Mon Jan 15 19:38:42 CET 2024 - hare@suse.de (bsc#1218785). - commit 34e3536 -------------------------------------------------------------------- -Mon Jan 15 19:06:12 CET 2024 - tonyj@suse.de - -- blacklist.conf: blacklist "perf test: Remove x permission from - lib/stat_output.sh" change -- commit d50c64f - ------------------------------------------------------------------- Mon Jan 15 19:00:35 CET 2024 - tonyj@suse.de @@ -61149,12 +66598,6 @@ Thu Jan 11 15:42:40 CET 2024 - tiwai@suse.de Fix compile warning due to trailing spaces - commit 3d15652 -------------------------------------------------------------------- -Thu Jan 11 15:34:47 CET 2024 - tiwai@suse.de - -- blacklist.conf: Add cfg80211 commit that was reverted in stable -- commit fa9d6ac - ------------------------------------------------------------------- Thu Jan 11 15:27:25 CET 2024 - tiwai@suse.de @@ -62728,12 +68171,6 @@ Fri Jan 5 10:14:48 CET 2024 - tiwai@suse.de - ALSA: hda/tas2781: do not use regcache (git-fixes). - commit 38d6c8e -------------------------------------------------------------------- -Fri Jan 5 09:05:34 CET 2024 - pjakobsson@suse.de - -- blacklist.conf: 7a0e005c7957 drm/amd/display: edp do not add non-edid timings -- commit 82e295c - ------------------------------------------------------------------- Fri Jan 5 09:00:59 CET 2024 - pjakobsson@suse.de @@ -63494,24 +68931,12 @@ Wed Jan 3 16:56:08 CET 2024 - tbogendoerfer@suse.de (jsc#PED-4876). - commit ca3b156 -------------------------------------------------------------------- -Wed Jan 3 16:25:32 CET 2024 - mkoutny@suse.com - -- blacklist.conf: e63a57303599 blk-cgroup: bypass blkcg_deactivate_policy after destroying -- commit 11bfa0e - ------------------------------------------------------------------- Wed Jan 3 11:44:52 CET 2024 - msuchanek@suse.de - rpm/config.sh: Enable multibuild. - commit 8362cb4 -------------------------------------------------------------------- -Wed Jan 3 00:43:17 CET 2024 - lduncan@suse.com - -- blacklist.conf: add commit with duplicate id -- commit d39fdcd - ------------------------------------------------------------------- Wed Jan 3 00:32:44 CET 2024 - tonyj@suse.de @@ -65555,13 +70980,6 @@ Tue Dec 12 14:45:48 CET 2023 - tiwai@suse.de (git-fixes). - commit f3ff4cb -------------------------------------------------------------------- -Tue Dec 12 14:37:05 CET 2023 - tiwai@suse.de - -- blacklist.conf: ignore loongarch, smb server and rust patches - Those are disabled on SUSE kernels -- commit 7c646fb - ------------------------------------------------------------------- Tue Dec 12 14:26:58 CET 2023 - tiwai@suse.de @@ -82094,12 +87512,6 @@ Fri Oct 27 20:23:43 CEST 2023 - msuchanek@suse.de (bsc#1215199). - commit 17dca43 -------------------------------------------------------------------- -Fri Oct 27 20:14:07 CEST 2023 - msuchanek@suse.de - -- blacklist.conf: Add ff9e8f415136 powerpc/mm: Allow ARCH_FORCE_MAX_ORDER up to 12 -- commit e7a922b - ------------------------------------------------------------------- Fri Oct 27 20:10:23 CEST 2023 - msuchanek@suse.de @@ -83843,12 +89255,6 @@ Thu Oct 19 08:09:16 CEST 2023 - hare@suse.de - net/tcp: don't peek at tail for io_uring zc (bsc#1216396). - commit 1cbac60 -------------------------------------------------------------------- -Wed Oct 18 15:47:41 CEST 2023 - hare@suse.de - -- blacklist.conf: Add kernel-doc only commit -- commit 2ddda2d - ------------------------------------------------------------------- Wed Oct 18 15:47:32 CEST 2023 - hare@suse.de @@ -83888,12 +89294,6 @@ Tue Oct 17 18:00:55 CEST 2023 - msuchanek@suse.de - Refresh SED OPAL patches to current version. - commit 8de998c -------------------------------------------------------------------- -Tue Oct 17 16:39:52 CEST 2023 - osalvador@suse.de - -- blacklist.conf: Updated -- commit a30a51f - ------------------------------------------------------------------- Tue Oct 17 16:38:53 CEST 2023 - osalvador@suse.de @@ -84311,12 +89711,6 @@ Mon Oct 16 09:50:00 CEST 2023 - mhocko@suse.com (git-fixes). - commit 76715d0 -------------------------------------------------------------------- -Fri Oct 13 16:36:23 CEST 2023 - mfranc@suse.cz - -- blacklist.conf: happens only for CONFIG_SMC=y and CONFIG_ISM=m -- commit e983db0 - ------------------------------------------------------------------- Fri Oct 13 11:56:54 CEST 2023 - mfranc@suse.cz @@ -84851,12 +90245,6 @@ Mon Oct 9 18:17:02 CEST 2023 - mkoutny@suse.com installed before init (bsc#1216062). - commit 82eb0da -------------------------------------------------------------------- -Mon Oct 9 17:51:35 CEST 2023 - mkoutny@suse.com - -- blacklist.conf: Add 82b90b6c5b38 cgroup:namespace: Remove unused cgroup_namespaces_init() -- commit 8f5c0b6 - ------------------------------------------------------------------- Mon Oct 9 17:41:37 CEST 2023 - tiwai@suse.de @@ -86391,12 +91779,6 @@ Mon Oct 2 17:09:57 CEST 2023 - ohering@suse.de - Update patch headers to reflect state of TDX for Hyper-V (bsc#1206453). - commit 4f4b833 -------------------------------------------------------------------- -Mon Oct 2 17:07:37 CEST 2023 - pmladek@suse.com - -- blacklist.conf: livepatch: cosmetic -- commit 634df5c - ------------------------------------------------------------------- Mon Oct 2 17:03:58 CEST 2023 - pmladek@suse.com @@ -86912,12 +92294,6 @@ Tue Sep 26 14:39:19 CEST 2023 - petr.pavlu@suse.com * Fix typos and improve some wording. - commit 640988f -------------------------------------------------------------------- -Tue Sep 26 12:36:18 CEST 2023 - lhenriques@suse.de - -- blacklist.conf: Add 3af5ae22030c ("ceph: make members in struct ceph_mds_request_args_ext a union") -- commit 02fca20 - ------------------------------------------------------------------- Tue Sep 26 09:39:36 CEST 2023 - jlee@suse.com @@ -104137,12 +109513,6 @@ Mon Sep 11 14:34:56 CEST 2023 - ohering@suse.de - clocksource/drivers/hyper-v: Rework clocksource and sched clock setup (git-fixes). - commit 31e4022 -------------------------------------------------------------------- -Mon Sep 11 12:14:43 CEST 2023 - msuchanek@suse.de - -- blacklist.conf: Add ef73dcaa3121 ("powerpc: xmon: remove unused variables") -- commit 54a0db2 - ------------------------------------------------------------------- Mon Sep 11 12:08:42 CEST 2023 - msuchanek@suse.de @@ -104177,12 +109547,6 @@ Mon Sep 11 11:32:07 CEST 2023 - petr.pavlu@suse.com - net/mlx4: Remove many unnecessary NULL values (bsc#1187236). - commit e58c7a4 -------------------------------------------------------------------- -Mon Sep 11 10:25:12 CEST 2023 - msuchanek@suse.de - -- blacklist.conf: Add 750bd41aeaeb powerpc/pseries: Fix hcall tracepoints with JUMP_LABEL=n -- commit a91431a - ------------------------------------------------------------------- Mon Sep 11 10:24:24 CEST 2023 - msuchanek@suse.de @@ -104579,18 +109943,6 @@ Thu Sep 7 08:20:22 CEST 2023 - tiwai@suse.de (bsc#1012628). - commit 603fb0d -------------------------------------------------------------------- -Thu Sep 7 08:19:54 CEST 2023 - tiwai@suse.de - -- blacklist.conf: drop entry backported in stable 6.4.15 -- commit aa9afe7 - -------------------------------------------------------------------- -Wed Sep 6 23:36:02 CEST 2023 - tbogendoerfer@suse.de - -- blacklist.conf: Added temporary blacklist until mlx5 backport could be done (missing PED number) -- commit 653e287 - ------------------------------------------------------------------- Wed Sep 6 18:43:31 CEST 2023 - oneukum@suse.com @@ -104714,13 +110066,6 @@ Wed Sep 6 17:29:41 CEST 2023 - oneukum@suse.com (jsc#PED-6061). - commit 81b59d1 -------------------------------------------------------------------- -Wed Sep 6 17:27:40 CEST 2023 - mhocko@suse.com - -- blacklist.conf: 9011e49d54dc ("modules: only allow symbol_get of - EXPORT_SYMBOL_GPL modules") is not really fixing any existing bug. -- commit 541c06b - ------------------------------------------------------------------- Wed Sep 6 17:19:34 CEST 2023 - oneukum@suse.com @@ -105813,12 +111158,6 @@ Fri Sep 1 12:42:57 CEST 2023 - denis.kirjanov@suse.com - Update metadata - commit 94184dc -------------------------------------------------------------------- -Fri Sep 1 11:11:11 CEST 2023 - tiwai@suse.de - -- blacklist.conf: add entries that have been already cherry-picked in 6.4 -- commit 3bbc83b - ------------------------------------------------------------------- Fri Sep 1 10:03:35 CEST 2023 - tiwai@suse.de diff --git a/kernel-rt_debug.spec b/kernel-rt_debug.spec index d4a847b..0de74ff 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 b49e7e52bdc1b46f45fadb1bc0aa310f52f5ac80 +%define git_commit 76e28cef5375feb1d7dcea0d112f8b50524eb429 %define variant -rt%{nil} %define compress_modules zstd %define compress_vmlinux xz @@ -34,12 +34,12 @@ %include %_sourcedir/kernel-spec-macros -%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,log.sh,try-disable-staging-driver,compress-vmlinux.sh,mkspec-dtb,check-module-license,klp-symbols,splitflist,mergedep,moddep,modflist,kernel-subpackage-build}) +%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,log.sh,try-disable-staging-driver,compress-vmlinux.sh,mkspec-dtb,check-module-license,splitflist,mergedep,moddep,modflist,kernel-subpackage-build}) Name: kernel-rt_debug Version: 6.4.0 %if 0%{?is_kotd} -Release: .gb49e7e5 +Release: .g76e28ce %else Release: 0 %endif @@ -135,7 +135,7 @@ ExclusiveArch: do_not_build %define cpu_arch_flavor %cpu_arch/%build_flavor %if 0%{?_project:1} && ( %(echo %_project | grep -Ex -f %_sourcedir/release-projects | grep -vc ^PTF) || %(echo %_project | grep -Ec "^(Devel:)?Kernel:") ) - %define klp_symbols 1 + %define klp_ipa_clones 1 %endif # Define some CONFIG variables as rpm macros as well. (rpm cannot handle @@ -145,7 +145,7 @@ ExclusiveArch: do_not_build %define split_extra ("%CONFIG_MODULES" == "y" && "%CONFIG_SUSE_KERNEL_SUPPORTED" == "y") %if "%CONFIG_MODULES" != "y" - %define klp_symbols 0 + %define klp_ipa_clones 0 %endif %global certs %( space="" ; for f in %_sourcedir/*.crt; do \ @@ -209,7 +209,6 @@ Source73: dtb.spec.in.in Source74: mkspec-dtb Source75: release-projects Source76: check-module-license -Source77: klp-symbols Source78: modules.fips Source79: splitflist Source80: mergedep @@ -279,7 +278,6 @@ NoSource: 73 NoSource: 74 NoSource: 75 NoSource: 76 -NoSource: 77 NoSource: 78 NoSource: 79 NoSource: 80 @@ -820,7 +818,6 @@ relink ../../linux-%{kernelrelease}%{variant}-obj/"%cpu_arch_flavor" /usr/src/li %dir /usr/src/linux-obj %dir /usr/src/linux-obj/%cpu_arch %ghost /usr/src/linux-obj/%cpu_arch_flavor -%exclude %obj_install_dir/%cpu_arch_flavor/Symbols.list %if %generate_compile_commands %exclude %obj_install_dir/%cpu_arch_flavor/compile_commands.json %endif @@ -859,17 +856,14 @@ static, unlike the %{patch_package}--flavor package names. %dir %modules_dir %endif -%if 0%{?klp_symbols} && "%livepatch" != "" +%if 0%{?klp_ipa_clones} && "%livepatch" != "" && "%CONFIG_LIVEPATCH_IPA_CLONES" == "y" %package %{livepatch}-devel Summary: Kernel symbols file used during kGraft patch development Group: System/Kernel -Provides: klp-symbols = %version %description %{livepatch}-devel -This package brings a file named Symbols.list, which contains a list of all -kernel symbols and its respective kernel object . This list is to be used by -the klp-convert tool, which helps livepatch developers by enabling automatic -symbol resolution. +This package brings ipa-clones files, which are used to to track +set of functions where a code from another function can eventually occur. %files %{livepatch}-devel -f livepatch-files %endif @@ -1480,14 +1474,9 @@ while true; do fi done -# Generate list of symbols that are used to create kernel livepatches -%if 0%{?klp_symbols} - %_sourcedir/klp-symbols . Symbols.list - - %if %generate_compile_commands - # Generate compile_commands.json - make compile_commands.json - %endif +%if 0%{?klp_ipa_clones} && %generate_compile_commands + # Generate compile_commands.json + make compile_commands.json %endif %install @@ -1676,27 +1665,22 @@ if [ %CONFIG_MODULES = y ]; then mkdir -p %rpm_install_dir/%cpu_arch/%build_flavor cp Module.symvers %rpm_install_dir/%cpu_arch/%build_flavor - # List of symbols that are used to generate kernel livepatches - %if 0%{?klp_symbols} - cp Symbols.list %rpm_install_dir/%cpu_arch/%build_flavor - echo %obj_install_dir/%cpu_arch/%build_flavor/Symbols.list > %my_builddir/livepatch-files.no_dir - + # List of ipa-clones that are used to to track set of functions where a code from another function can eventually occur. + %if 0%{?klp_ipa_clones} && "%CONFIG_LIVEPATCH_IPA_CLONES" == "y" %if %generate_compile_commands cp compile_commands.json %rpm_install_dir/%cpu_arch/%build_flavor echo %obj_install_dir/%cpu_arch/%build_flavor/compile_commands.json >> %my_builddir/livepatch-files.no_dir %endif - %if "%CONFIG_LIVEPATCH_IPA_CLONES" == "y" - find %kernel_build_dir -name "*.ipa-clones" ! -size 0 | sed -e 's|^%kernel_build_dir/||' | sort > ipa-clones.list - cp ipa-clones.list %rpm_install_dir/%cpu_arch/%build_flavor - echo %obj_install_dir/%cpu_arch/%build_flavor/ipa-clones.list >> %my_builddir/livepatch-files.no_dir - tar -C %kernel_build_dir \ + find %kernel_build_dir -name "*.ipa-clones" ! -size 0 | sed -e 's|^%kernel_build_dir/||' | sort > ipa-clones.list + cp ipa-clones.list %rpm_install_dir/%cpu_arch/%build_flavor + echo %obj_install_dir/%cpu_arch/%build_flavor/ipa-clones.list >> %my_builddir/livepatch-files.no_dir + tar -C %kernel_build_dir \ %if ! 0%{?suse_version} || 0%{?suse_version} >= 1500 - --verbatim-files-from \ + --verbatim-files-from \ %endif - -T ipa-clones.list -cf- | tar -C %rpm_install_dir/%cpu_arch/%build_flavor -xvf- - cat ipa-clones.list | sed -e 's|^|%obj_install_dir/%cpu_arch/%build_flavor/|' >> %my_builddir/livepatch-files.no_dir - %endif + -T ipa-clones.list -cf- | tar -C %rpm_install_dir/%cpu_arch/%build_flavor -xvf- + cat ipa-clones.list | sed -e 's|^|%obj_install_dir/%cpu_arch/%build_flavor/|' >> %my_builddir/livepatch-files.no_dir %endif # Table of types used in exported symbols (for modversion debugging). @@ -1891,7 +1875,7 @@ shopt -s nullglob dotglob fi } | add_dirs_to_filelist >%my_builddir/kernel-devel.files ( cd %buildroot ; find .%obj_install_dir/%cpu_arch_flavor -type f ; ) | \ -sed -e 's/^[.]//' | grep -v -e '[.]ipa-clones$' -e '/Symbols[.]list$' -e '/ipa-clones[.]list$'| \ +sed -e 's/^[.]//' | grep -v -e '[.]ipa-clones$' -e '/ipa-clones[.]list$'| \ add_dirs_to_filelist >> %my_builddir/kernel-devel.files { echo %ghost /boot/%image diff --git a/kernel-source-rt.changes b/kernel-source-rt.changes index 96700bd..9a6f53f 100644 --- a/kernel-source-rt.changes +++ b/kernel-source-rt.changes @@ -1,3 +1,6015 @@ +------------------------------------------------------------------- +Sat Dec 7 09:37:47 CET 2024 - tiwai@suse.de + +- ASoC: Intel: avs: da7219: Remove suspend_pre() and resume_post() + (stable-fixes). +- ALSA: hda/realtek: Add support for Samsung Galaxy Book3 360 + (NP730QFG) (stable-fixes). +- ALSA: hda/realtek: Enable mute and micmute LED on HP ProBook + 430 G8 (stable-fixes). +- ALSA: usb-audio: add mixer mapping for Corsair HS80 + (stable-fixes). +- ALSA: hda/conexant: fix Z60MR100 startup pop issue + (stable-fixes). +- commit 8c25a0a + +------------------------------------------------------------------- +Sat Dec 7 09:34:01 CET 2024 - tiwai@suse.de + +- drm/v3d: Enable Performance Counters before clearing them + (git-fixes). +- drm/sti: Add __iomem for mixer_dbg_mxn's parameter (git-fixes). +- dma-fence: Use kernel's sort for merging fences (git-fixes). +- dma-fence: Fix reference leak on fence merge failure path + (git-fixes). +- ASoC: mediatek: mt8188-mt6359: Remove hardcoded dmic codec + (git-fixes). +- ASoC: SOF: ipc3-topology: fix resource leaks in + sof_ipc3_widget_setup_comp_dai() (git-fixes). +- ALSA: usb-audio: Fix a DMA to stack memory bug (git-fixes). +- regmap: detach regmap from dev on regmap_exit (git-fixes). +- spi: mpc52xx: Add cancel_work_sync before module remove + (git-fixes). +- mmc: core: Further prevent card detect during shutdown + (git-fixes). +- commit 87e627e + +------------------------------------------------------------------- +Fri Dec 6 16:27:36 CET 2024 - tbogendoerfer@suse.de + +- net/mlx5e: kTLS, Fix incorrect page refcounting (CVE-2024-53138 + bsc#1234223). +- ice: protect XDP configuration with a mutex (CVE-2024-46765 + bsc#1230807). +- sch/netem: fix use after free in netem_dequeue (CVE-2024-46800 + bsc#1230827). +- commit c9f3783 + +------------------------------------------------------------------- +Fri Dec 6 15:48:44 CET 2024 - jgross@suse.com + +- vp_vdpa: fix id_table array not null terminated error + (CVE-2024-53110 bsc#1234085). +- commit ffc9457 + +------------------------------------------------------------------- +Fri Dec 6 14:33:58 CET 2024 - tbogendoerfer@suse.de + +- net/mlx5: fs, lock FTE when checking if active (CVE-2024-53121 + bsc#1234078). +- mlxsw: spectrum_ipip: Fix memory leak when changing remote + IPv6 address (CVE-2024-50252 bsc#1233201). +- commit 06c045b + +------------------------------------------------------------------- +Fri Dec 6 13:18:57 CET 2024 - tiwai@suse.de + +- netdevsim: copy addresses for both in and out paths (git-fixes). +- commit daf115e + +------------------------------------------------------------------- +Fri Dec 6 12:49:22 CET 2024 - tiwai@suse.de + +- can: j1939: j1939_session_new(): fix skb reference counting + (git-fixes). +- can: mcp251xfd: mcp251xfd_get_tef_len(): work around erratum + DS80000789E 6 (git-fixes). +- can: ems_usb: ems_usb_rx_err(): fix {rx,tx}_errors statistics + (git-fixes). +- can: sun4i_can: sun4i_can_err(): fix {rx,tx}_errors statistics + (git-fixes). +- can: sja1000: sja1000_err(): fix {rx,tx}_errors statistics + (git-fixes). +- can: hi311x: hi3110_can_ist(): fix {rx,tx}_errors statistics + (git-fixes). +- can: ifi_canfd: ifi_canfd_handle_lec_err(): fix {rx,tx}_errors + statistics (git-fixes). +- can: m_can: m_can_handle_lec_err(): fix {rx,tx}_errors + statistics (git-fixes). +- can: hi311x: hi3110_can_ist(): fix potential use-after-free + (git-fixes). +- can: sun4i_can: sun4i_can_err(): call can_change_state() + even if cf is NULL (git-fixes). +- can: c_can: c_can_handle_bus_err(): update statistics if skb + allocation fails (git-fixes). +- can: dev: can_set_termination(): allow sleeping GPIOs + (git-fixes). +- HID: wacom: fix when get product name maybe null pointer + (git-fixes). +- watchdog: rti: of: honor timeout-sec property (git-fixes). +- watchdog: mediatek: Make sure system reset gets asserted in + mtk_wdt_restart() (git-fixes). +- watchdog: apple: Actually flush writes after requesting watchdog + restart (git-fixes). +- iTCO_wdt: mask NMI_NOW bit for update_no_reboot_bit() call + (git-fixes). +- commit 535e699 + +------------------------------------------------------------------- +Fri Dec 6 09:25:08 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Correct GPIO polarity on brcm BT nodes (git-fixes) +- commit ed87dba + +------------------------------------------------------------------- +Fri Dec 6 09:23:49 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: remove num-slots property from (git-fixes) +- commit cb47197 + +------------------------------------------------------------------- +Fri Dec 6 09:20:06 CET 2024 - iivanov@suse.de + +- kABI: Restore exported __arm_smccc_sve_check (git-fixes) +- commit 3817c3a + +------------------------------------------------------------------- +Thu Dec 5 22:16:43 CET 2024 - dsterba@suse.com + +- drm/i915/hdcp: Add encoder check in intel_hdcp_get_capability (CVE-2024-53051 bsc#1233547) +- commit 5262489 + +------------------------------------------------------------------- +Thu Dec 5 21:21:56 CET 2024 - dsterba@suse.com + +- mctp i2c: handle NULL header address (CVE-2024-53043 bsc#1233523) +- commit 5a81634 + +------------------------------------------------------------------- +Thu Dec 5 21:19:36 CET 2024 - dsterba@suse.com + +- wifi: iwlwifi: mvm: fix 6 GHz scan construction (CVE-2024-53055 bsc#1233550) +- commit c2d5beb + +------------------------------------------------------------------- +Thu Dec 5 19:33:08 CET 2024 - dsterba@suse.com + +- drm/mediatek: Fix potential NULL dereference in mtk_crtc_destroy() (CVE-2024-53056 bsc#1233568) +- commit 95cef70 + +------------------------------------------------------------------- +Thu Dec 5 19:16:12 CET 2024 - dsterba@suse.com + +- Bluetooth: btnxpuart: Resolve TX timeout error in power save stress test (bsc#1230557) +- commit 9ca14b5 + +------------------------------------------------------------------- +Thu Dec 5 19:14:45 CET 2024 - dsterba@suse.com + +- Bluetooth: btnxpuart: Fix random crash seen while removing driver (CVE-2024-46680 bsc#1230557) +- commit 3831431 + +------------------------------------------------------------------- +Thu Dec 5 18:57:57 CET 2024 - dsterba@suse.com + +- net: dsa: fix netdev_priv() dereference before check on non-DSA netdevice events (CVE-2024-26596 bsc#1220355) +- commit 4861dc8 + +------------------------------------------------------------------- +Thu Dec 5 18:44:20 CET 2024 - dsterba@suse.com + +- net: hns3: fix kernel crash when uninstalling driver (CVE-2024-50296 bsc#1233485) +- commit 6e41fd9 + +------------------------------------------------------------------- +Thu Dec 5 17:13:01 CET 2024 - msuchanek@suse.de + +- powerpc/fadump: Move fadump_cma_init to setup_arch() after + initmem_init() (bsc#1215199). +- powerpc/fadump: Refactor and prepare fadump_cma_init for late + init (bsc#1215199). +- powerpc/pseries: Use correct data types from pseries_hp_errorlog + struct (bsc#1215199). +- powerpc/vdso: Inconditionally use CFUNC macro (bsc#1215199). +- powerpc/64s: Fix unnecessary copy to 0 when kernel is booted + at address 0 (bsc#1215199). +- commit d36d28e + +------------------------------------------------------------------- +Thu Dec 5 17:05:26 CET 2024 - iivanov@suse.de + +- bpf, arm64: Remove garbage frame for struct_ops trampoline (git-fixes) +- commit e1353aa + +------------------------------------------------------------------- +Thu Dec 5 17:03:24 CET 2024 - iivanov@suse.de + +- arm64: dts: allwinner: pinephone: Add mount matrix to accelerometer (git-fixes) +- commit 6a9e851 + +------------------------------------------------------------------- +Thu Dec 5 17:01:59 CET 2024 - iivanov@suse.de + +- arm64: dts: freescale: imx8mp-verdin: Fix SD regulator startup delay (git-fixes) +- commit c644bc4 + +------------------------------------------------------------------- +Thu Dec 5 17:00:48 CET 2024 - iivanov@suse.de + +- arm64: dts: freescale: imx8mm-verdin: Fix SD regulator startup delay (git-fixes) +- commit c8b850b + +------------------------------------------------------------------- +Thu Dec 5 16:59:21 CET 2024 - iivanov@suse.de + +- arm64: tls: Fix context-switching of tpidrro_el0 when kpti is enabled (git-fixes) +- commit dd2d99e + +------------------------------------------------------------------- +Thu Dec 5 16:51:05 CET 2024 - iivanov@suse.de + +- arm64: fix .data.rel.ro size assertion when CONFIG_LTO_CLANG (git-fixes) +- commit b16f3b1 + +------------------------------------------------------------------- +Thu Dec 5 16:48:22 CET 2024 - iivanov@suse.de + +- arm64: smccc: Remove broken support for SMCCCv1.3 SVE discard hint (git-fixes) +- commit 10c58e2 + +------------------------------------------------------------------- +Thu Dec 5 16:44:41 CET 2024 - iivanov@suse.de + +- arm64: smccc: replace custom COUNT_ARGS() & CONCATENATE() (git-fixes) +- commit 75545f9 + +------------------------------------------------------------------- +Thu Dec 5 15:58:34 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: remove orphaned pinctrl-names from pinephone (git-fixes) +- commit cc13a0d + +------------------------------------------------------------------- +Thu Dec 5 15:57:02 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix LED triggers on rk3308-roc-cc (git-fixes) +- commit a83a13f + +------------------------------------------------------------------- +Thu Dec 5 15:55:49 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Remove #cooling-cells from fan on Theobroma (git-fixes) +- commit ad38ac0 + +------------------------------------------------------------------- +Thu Dec 5 15:54:32 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Remove undocumented supports-emmc property (git-fixes) +- commit 2a5a31d + +------------------------------------------------------------------- +Thu Dec 5 15:53:20 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix bluetooth properties on Rock960 boards (git-fixes) +- commit 8dd2fe4 + +------------------------------------------------------------------- +Thu Dec 5 15:51:59 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix bluetooth properties on rk3566 box demo (git-fixes) +- commit af29eab + +------------------------------------------------------------------- +Thu Dec 5 15:50:48 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: fix i2c2 pinctrl-names property on (git-fixes) +- commit bffe233 + +------------------------------------------------------------------- +Thu Dec 5 15:49:40 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix reset-gpios property on brcm BT nodes (git-fixes) +- commit 34a0cb0 + +------------------------------------------------------------------- +Thu Dec 5 15:48:14 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix wakeup prop names on PineNote BT node (git-fixes) +- commit 600dbb4 + +------------------------------------------------------------------- +Thu Dec 5 15:33:16 CET 2024 - msuchanek@suse.de + +- powerpc/kexec: Fix return of uninitialized variable + (bsc#1194869). +- powerpc/pseries: Fix KVM guest detection for disabling + hardlockup detector (bsc#1194869). +- powerpc/pseries: Fix dtl_access_lock to be a rw_semaphore + (bsc#1194869). +- powerpc/mm/fault: Fix kfence page fault reporting (bsc#1194869). +- powerpc/powernv: Free name on error in opal_event_init() + (bsc#1194869). +- powerpc/atomic: Use YZ constraints for DS-form instructions + (bsc#1194869). +- powerpc/mm: Fix boot warning with hugepages and + CONFIG_DEBUG_VIRTUAL (bsc#1194869). +- powerpc/mm: Fix boot crash with FLATMEM (bsc#1194869). +- commit 290216a + +------------------------------------------------------------------- +Thu Dec 5 12:34:48 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Remove hdmi's 2nd interrupt on rk3328 (git-fixes) +- commit 428c79d + +------------------------------------------------------------------- +Thu Dec 5 12:27:44 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix rt5651 compatible value on (git-fixes) +- commit 3b24a1d + +------------------------------------------------------------------- +Thu Dec 5 12:26:35 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix rt5651 compatible value on rk3399-eaidk-610 (git-fixes) +- commit eac58a3 + +------------------------------------------------------------------- +Thu Dec 5 12:24:21 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8-ss-vpu: Fix imx8qm VPU IRQs (git-fixes) +- commit 225491d + +------------------------------------------------------------------- +Thu Dec 5 12:23:08 CET 2024 - iivanov@suse.de + +- bpf, arm64: Fix address emission with tag-based KASAN enabled (git-fixes) +- commit a6cd1e5 + +------------------------------------------------------------------- +Thu Dec 5 12:05:42 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Add DTS for FriendlyARM NanoPi R2S Plus (git-fixes) +- commit 8261b13 + +------------------------------------------------------------------- +Thu Dec 5 12:01:15 CET 2024 - iivanov@suse.de + +- arm64: tegra: Move AGX Orin nodes to correct location (git-fixes) +- commit 8c00b3f + +------------------------------------------------------------------- +Thu Dec 5 11:57:36 CET 2024 - iivanov@suse.de + +- arm64: dts: imx93: add nvmem property for eqos (git-fixes) +- commit 05664af + +------------------------------------------------------------------- +Thu Dec 5 11:54:15 CET 2024 - iivanov@suse.de + +- arm64: dts: imx93: add nvmem property for fec1 (git-fixes) +- commit 428b0c1 + +------------------------------------------------------------------- +Thu Dec 5 11:52:31 CET 2024 - iivanov@suse.de + +- arm64: dts: imx93: add ocotp node (git-fixes) +- commit 9645cb0 + +------------------------------------------------------------------- +Thu Dec 5 11:47:21 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8qxp: Add VPU subsystem file (git-fixes) +- commit 1bf0ccc + +------------------------------------------------------------------- +Wed Dec 4 13:01:43 CET 2024 - ailiop@suse.com + +- nfsd: remove unsafe BUG_ON from set_change_info (bsc#1234121). +- commit 6c0f124 + +------------------------------------------------------------------- +Wed Dec 4 11:28:27 CET 2024 - sjaeckel@suse.de + +- tcp: Fix use-after-free of nreq in reqsk_timer_handler() + (CVE-2024-50154 bsc#1233070). +- commit 297942f + +------------------------------------------------------------------- +Wed Dec 4 11:02:35 CET 2024 - tiwai@suse.de + +- f2fs: get out of a repeat loop when getting a locked data page + (bsc#1234011). +- commit dfe277f + +------------------------------------------------------------------- +Wed Dec 4 10:26:17 CET 2024 - pjakobsson@suse.de + +- drm: Expand max DRM device number to full MINORBITS (jsc#PED-11580). +- commit d737023 + +------------------------------------------------------------------- +Wed Dec 4 10:25:43 CET 2024 - pjakobsson@suse.de + +- accel: Use XArray instead of IDR for minors (jsc#PED-11580). +- commit 013fbaa + +------------------------------------------------------------------- +Wed Dec 4 10:25:07 CET 2024 - pjakobsson@suse.de + +- drm: Use XArray instead of IDR for minors (jsc#PED-11580). +- commit b04b73a + +------------------------------------------------------------------- +Wed Dec 4 10:19:48 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: fix a UBSAN warning in DML2.1 (bsc#1233115 CVE-2024-50177) +- commit 2f6004f + +------------------------------------------------------------------- +Wed Dec 4 00:56:19 CET 2024 - henrique.carvalho@suse.com + +- smb: client: Fix use-after-free of network namespace + (bsc#1233642 CVE-2024-53095). + Also applies: + smb: client: fix warning in generic_ip_connect() +- commit 97b3d9a + +------------------------------------------------------------------- +Tue Dec 3 23:04:22 CET 2024 - jack@suse.cz + +- jbd2: fix kernel-doc for j_transaction_overhead_buffers + (bsc#1234042). +- commit 20d4b12 + +------------------------------------------------------------------- +Tue Dec 3 20:21:07 CET 2024 - dsterba@suse.com + +- sctp: set sk_state back to CLOSED if autobind fails in sctp_listen_start (CVE-2024-49944 bsc#1232166) +- commit c7bd304 + +------------------------------------------------------------------- +Tue Dec 3 20:10:02 CET 2024 - dsterba@suse.com + +- netfilter: nf_tables: prevent nf_skb_duplicated corruption (CVE-2024-49952 bsc#1232157) +- commit d0f307b + +------------------------------------------------------------------- +Tue Dec 3 18:17:41 CET 2024 - jack@suse.cz + +- jbd2: Move j_transaction_overhead_buffers into a hole + (bsc#1234042). +- commit 1c42745 + +------------------------------------------------------------------- +Tue Dec 3 18:10:57 CET 2024 - mhocko@suse.com + +- Update + patches.suse/drm-amd-display-Adjust-VSDB-parser-for-replay-featur.patch + (stable-fixes CVE-2024-53108 bsc#1234081). +- Update + patches.suse/fs-ntfs3-Fixed-overflow-check-in-mi_enum_attr.patch + (bsc#1233207 CVE-2024-27407 bsc#1224429). +- Update + patches.suse/ima-fix-buffer-overrun-in-ima_eventdigest_init_commo.patch + (git-fixes CVE-2024-53106 bsc#1234083). +- Update + patches.suse/keys-Fix-overwrite-of-key-expiration-on-instantiation.patch + (git-fixes CVE-2024-36031 bsc#1225713). +- Update + patches.suse/media-uvcvideo-Skip-parsing-frames-of-type-UVC_VS_UN.patch + (git-fixes CVE-2024-53104 bsc#1234025). +- Update + patches.suse/net-relax-socket-state-check-at-accept-time.patch + (git-fixes CVE-2024-36484 bsc#1226872). +- Update + patches.suse/nvme-multipath-defer-partition-scanning.patch + (bsc#122824 git-fixes CVE-2024-53093 bsc#1233640). +- Update + patches.suse/nvme-tcp-avoid-race-between-queue_lock-lock-and-dest.patch + (git-fixes CVE-2024-53100 bsc#1233771). +- Update + patches.suse/ocfs2-uncache-inode-which-has-failed-entering-the-group.patch + (git-fixes CVE-2024-53112 bsc#1234087). +- Update + patches.suse/scsi-mpi3mr-Avoid-memcpy-field-spanning-write-WARNING.patch + (git-fixes CVE-2024-36920 bsc#1225768). +- Update + patches.suse/scsi-pm80xx-Set-phy-enable_completion-only-when-we-wait-for-it.patch + (git-fixes CVE-2024-47666 bsc#1231453). +- Update + patches.suse/tcp-Fix-refcnt-handling-in-__inet_hash_connect.patch + (git-fixes CVE-2024-26864 bsc#1223112). +- Update + patches.suse/tracing-osnoise-Use-a-cpumask-to-know-what-threads-are-kthreads.patch + (git-fixes CVE-2024-46788 bsc#1230817). +- Update + patches.suse/tracing-timerlat-Move-hrtimer_init-to-timerlat_fd-open.patch + (git-fixes CVE-2024-26703 bsc#1222423). +- Update + patches.suse/x86-CPU-AMD-Clear-virtualized-VMLOAD-VMSAVE-on-Zen4-client + (bsc#1233443 CVE-2024-53114 bsc#1234072). +- commit 420eea1 + +------------------------------------------------------------------- +Tue Dec 3 17:42:21 CET 2024 - sjaeckel@suse.de + +- Bluetooth: SCO: Fix UAF on sco_sock_timeout (CVE-2024-50125 + bsc#1232928). +- Refresh + patches.suse/Bluetooth-ISO-Fix-UAF-on-iso_sock_timeout.patch. + Revert Bluetooth-ISO-Fix-UAF-on-iso_sock_timeout.patch to the upstream + version of the patch. + The reverted version was a mix of 1bf4470a and 246b435a, since they were + accidentally identified as two different commits doing the same changes. + The changes are indeed mostly the same, but to different files. +- commit 5725fe5 + +------------------------------------------------------------------- +Tue Dec 3 17:06:26 CET 2024 - mkoutny@suse.com + +- cgroup/bpf: only cgroup v2 can be attached by bpf programs + (bsc#1234108). +- Revert "cgroup: Fix memory leak caused by missing + cgroup_bpf_offline" (bsc#1234108). +- commit 6a48bcc + +------------------------------------------------------------------- +Tue Dec 3 16:27:05 CET 2024 - ptesarik@suse.com + +- kexec_file: fix elfcorehdr digest exclusion when + CONFIG_CRASH_HOTPLUG=y (git-fixes). +- commit 1b2a54a + +------------------------------------------------------------------- +Tue Dec 3 14:36:00 CET 2024 - mkoutny@suse.com + +- signal: restore the override_rlimit logic (CVE-2024-50271 + bsc#1233460). +- ucounts: fix counter leak in inc_rlimit_get_ucounts() + (bsc#1233460). +- commit 232c2a6 + +------------------------------------------------------------------- +Tue Dec 3 14:26:42 CET 2024 - ohering@suse.de + +- hv_sock: Initializing vsk->trans to NULL to prevent a dangling pointer (git-fixes). +- commit 109e508 + +------------------------------------------------------------------- +Tue Dec 3 14:13:52 CET 2024 - mkoutny@suse.com + +- posix-cpu-timers: Clear TICK_DEP_BIT_POSIX_TIMER on clone + (bsc#1234098). +- commit 362812c + +------------------------------------------------------------------- +Tue Dec 3 14:01:19 CET 2024 - mkoutny@suse.com + +- signal: Replace BUG_ON()s (bsc#1234093). +- commit dad9530 + +------------------------------------------------------------------- +Tue Dec 3 13:20:50 CET 2024 - mfranc@suse.cz + +- dm cache: fix out-of-bounds access to the dirty bitset when + resizing (CVE-2024-50279 bsc#1233468). +- commit 2080b22 + +------------------------------------------------------------------- +Tue Dec 3 11:51:24 CET 2024 - mfranc@suse.cz + +- ipv4: ip_tunnel: Fix suspicious RCU usage warning in + ip_tunnel_init_flow() (CVE-2024-53042 bsc#1233540). +- commit 6649f10 + +------------------------------------------------------------------- +Tue Dec 3 10:21:53 CET 2024 - vliaskovitis@suse.com + +- intel_idle: fix ACPI _CST matching for newer Xeon platforms + (bsc#1231630). +- commit 0f23b16 + +------------------------------------------------------------------- +Tue Dec 3 10:19:21 CET 2024 - vliaskovitis@suse.com + +- intel_idle: add Granite Rapids Xeon support (bsc#1231630). +- commit 111abfc + +------------------------------------------------------------------- +Tue Dec 3 09:42:55 CET 2024 - tbogendoerfer@suse.de + +- Update config files. + Enabled IDPF for ARM64 (bsc#1221309) +- commit adee356 + +------------------------------------------------------------------- +Tue Dec 3 08:53:54 CET 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: validate fake register spill/fill precision + backtracking logic (bsc#1232823 CVE-2023-52920). +- bpf: handle fake register spill to stack with BPF_ST_MEM + instruction (bsc#1232823 CVE-2023-52920). +- commit 52cdf87 + +------------------------------------------------------------------- +Tue Dec 3 08:52:17 CET 2024 - neelx@suse.com + +- btrfs: fix a NULL pointer dereference when failed to start a + new trasacntion (CVE-2024-49868 bsc#1232272). +- commit cc68ee3 + +------------------------------------------------------------------- +Tue Dec 3 07:24:38 CET 2024 - jslaby@suse.cz + +- PCI: j721e: Deassert PERST# after a delay of PCIE_T_PVPERL_MS + milliseconds (git-fixes). +- PCI: Add T_PVPERL macro (git-fixes). +- commit 664a849 + +------------------------------------------------------------------- +Mon Dec 2 21:56:21 CET 2024 - vbabka@suse.cz + +- mm/thp: fix deferred split unqueue naming and locking + (CVE-2024-53079 bsc#1233570). +- commit b50ea3e + +------------------------------------------------------------------- +Mon Dec 2 21:16:07 CET 2024 - vliaskovitis@suse.com + +- cxl: downgrade a warning message to debug level in + cxl_probe_component_regs() (bsc#1229165). +- commit 388d64b + +------------------------------------------------------------------- +Mon Dec 2 17:16:15 CET 2024 - dwagner@suse.de + +- nvme-fabrics: fix kernel crash while shutting down controller + (git-fixes). +- nvme-pci: reverse request order in nvme_queue_rqs (git-fixes). +- nvme-pci: fix freeing of the HMB descriptor table (git-fixes). +- nvme/host: Fix RCU list traversal to use SRCU primitive + (git-fixes). +- commit 9f9c907 + +------------------------------------------------------------------- +Mon Dec 2 17:10:36 CET 2024 - dwagner@suse.de + +- nvme-loop: flush off pending I/O while shutting down loop + controller (git-fixes). +- commit 85bcc27 + +------------------------------------------------------------------- +Mon Dec 2 17:09:17 CET 2024 - dwagner@suse.de + +- Rename to + patches.suse/nvme-multipath-defer-partition-scanning.patch. (git-fixes bsc#122824) +- commit 79fcf69 + +------------------------------------------------------------------- +Mon Dec 2 17:06:20 CET 2024 - dwagner@suse.de + +- nvme: tcp: avoid race between queue_lock lock and destroy + (git-fixes). +- commit 0d6537a + +------------------------------------------------------------------- +Mon Dec 2 16:49:45 CET 2024 - dwagner@suse.de + +- Update + patches.suse/scsi-qla2xxx-Update-version-to-10.02.09.300-k.patch + (bsc#1228850 jsc#PED-9943 jsc#PED-11316). + This is the latest greatest version of qla2xxx. Add the jira + reference so that it is tracked. +- commit 8eff9b2 + +------------------------------------------------------------------- +Mon Dec 2 16:48:06 CET 2024 - dwagner@suse.de + +- scsi: lpfc: Copyright updates for 14.4.0.6 patches (bsc#1233241 + jsc#PED-9943). +- scsi: lpfc: Update lpfc version to 14.4.0.6 (bsc#1233241 + jsc#PED-9943). +- scsi: lpfc: Change lpfc_nodelist nlp_flag member into a bitmask + (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Remove NLP_RELEASE_RPI flag from nodelist structure + (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Prevent NDLP reference count underflow in + dev_loss_tmo callback (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Add cleanup of nvmels_wq after HBA reset + (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Check SLI_ACTIVE flag in FDMI cmpl before submitting + follow up FDMI (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Update lpfc_els_flush_cmd() to check for SLI_ACTIVE + before BSG flag (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Call lpfc_sli4_queue_unset() in restart and rmmod + paths (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Check devloss callbk done flag for potential stale + NDLP ptrs (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Modify CGN warning signal calculation based on + EDC response (bsc#1233241 jsc#PED-9943). +- commit 566c7c9 + +------------------------------------------------------------------- +Mon Dec 2 15:46:30 CET 2024 - vbabka@suse.cz + +- mm: always initialise folio->_deferred_list (CVE-2024-53079 + bsc#1233570 prerequisity). +- commit 3c832a9 + +------------------------------------------------------------------- +Mon Dec 2 15:07:02 CET 2024 - osalvador@suse.de + +- mm/hugetlb: fix nodes huge page allocation when there are + surplus pages (bsc#1234012). +- commit 9fde6f7 + +------------------------------------------------------------------- +Mon Dec 2 15:00:04 CET 2024 - oneukum@suse.com + +- Input: xpad - add support for MSI Claw A1M (git-fixes). +- commit d37ec4c + +------------------------------------------------------------------- +Mon Dec 2 14:58:20 CET 2024 - oneukum@suse.com + +- Input: xpad - add support for 8BitDo Ultimate 2C Wireless + Controller (git-fixes). +- commit 0d7bec2 + +------------------------------------------------------------------- +Mon Dec 2 14:55:18 CET 2024 - oneukum@suse.com + +- Input: xpad - add support for Machenike G5 Pro Controller + (git-fixes). +- commit f071586 + +------------------------------------------------------------------- +Mon Dec 2 14:51:08 CET 2024 - oneukum@suse.com + +- Input: xpad - sort xpad_device by vendor and product ID + (git-fixes). +- Refresh + patches.suse/Input-xpad-add-support-for-Snakebyte-GAMEPADs.patch. +- commit 5f46bd9 + +------------------------------------------------------------------- +Mon Dec 2 14:49:37 CET 2024 - oneukum@suse.com + +- Input: xpad - add GameSir T4 Kaleid Controller support + (git-fixes). +- commit d80239f + +------------------------------------------------------------------- +Mon Dec 2 14:48:03 CET 2024 - oneukum@suse.com + +- Input: xpad - add GameSir VID for Xbox One controllers + (git-fixes). +- commit 993ca75 + +------------------------------------------------------------------- +Mon Dec 2 14:46:07 CET 2024 - oneukum@suse.com + +- Input: xpad - fix support for some third-party controllers + (git-fixes). +- commit 1d5b082 + +------------------------------------------------------------------- +Mon Dec 2 14:42:05 CET 2024 - oneukum@suse.com + +- Input: xpad - spelling fixes for "Xbox" (git-fixes). +- Refresh + patches.suse/Input-xpad-add-HyperX-Clutch-Gladiate-Support.patch. +- Refresh + patches.suse/Input-xpad-add-Lenovo-Legion-Go-controllers.patch. +- Refresh patches.suse/Input-xpad-add-PXN-V900-support.patch. +- Refresh + patches.suse/Input-xpad-add-additional-HyperX-Controller-Identifi.patch. +- Refresh + patches.suse/Input-xpad-add-support-for-ASUS-ROG-RAIKIRI.patch. +- Refresh + patches.suse/Input-xpad-add-support-for-Snakebyte-GAMEPADs.patch. +- commit 15a1c29 + +------------------------------------------------------------------- +Mon Dec 2 14:26:37 CET 2024 - jack@suse.cz + +- jbd2: fix soft lockup in journal_finish_inode_data_buffers() + (bsc#1234046). +- commit f32d01d + +------------------------------------------------------------------- +Mon Dec 2 14:26:05 CET 2024 - jack@suse.cz + +- jbd2: correct the printing of write_flags in + jbd2_write_superblock() (bsc#1234045). +- commit fe6bf4e + +------------------------------------------------------------------- +Mon Dec 2 14:25:44 CET 2024 - jack@suse.cz + +- jbd2: fix potential data lost in recovering journal raced with + synchronizing fs bdev (bsc#1234044). +- commit 5fbdfed + +------------------------------------------------------------------- +Mon Dec 2 14:25:43 CET 2024 - vbabka@suse.cz + +- mm: convert free_transhuge_folio() to + folio_undo_large_rmappable() (CVE-2024-53079 bsc#1233570 + prerequisity). +- commit 4e7d9f6 + +------------------------------------------------------------------- +Mon Dec 2 14:22:23 CET 2024 - jack@suse.cz + +- jbd2: avoid memleak in jbd2_journal_write_metadata_buffer + (bsc#1234043). +- commit ffe100a + +------------------------------------------------------------------- +Mon Dec 2 14:21:38 CET 2024 - jack@suse.cz + +- jbd2: precompute number of transaction descriptor blocks + (bsc#1234042). +- commit 3ed7ebf + +------------------------------------------------------------------- +Mon Dec 2 14:20:57 CET 2024 - jack@suse.cz + +- jbd2: make jbd2_journal_get_max_txn_bufs() internal + (bsc#1234041). +- commit ad2f96f + +------------------------------------------------------------------- +Mon Dec 2 14:20:21 CET 2024 - jack@suse.cz + +- jbd2: avoid mount failed when commit block is partial submitted + (bsc#1234040). +- commit 7226fe5 + +------------------------------------------------------------------- +Mon Dec 2 14:19:05 CET 2024 - jack@suse.cz + +- jbd2: avoid infinite transaction commit loop (bsc#1234039). +- commit ad1118f + +------------------------------------------------------------------- +Mon Dec 2 14:07:12 CET 2024 - jack@suse.cz + +- ext4: fix unttached inode after power cut with orphan file + feature enabled (bsc#1234009). +- commit 3e057c0 + +------------------------------------------------------------------- +Mon Dec 2 13:08:10 CET 2024 - tbogendoerfer@suse.de + +- net: arc: fix the device for dma_map_single/dma_unmap_single + (CVE-2024-50295 bsc#1233484). +- net: vertexcom: mse102x: Fix possible double free of TX skb + (CVE-2024-50276 bsc#1233465). +- net: enetc: allocate vf_state during PF probes (CVE-2024-50298 + bsc#1233487). +- net: stmmac: TSO: Fix unbalanced DMA map/unmap for non-paged + SKB data (CVE-2024-53058 bsc#1233552). +- commit ae38000 + +------------------------------------------------------------------- +Mon Dec 2 12:40:06 CET 2024 - jroedel@suse.de + +- x86/CPU/AMD: Clear virtualized VMLOAD/VMSAVE on Zen4 client + (bsc#1233443). +- commit 5beba61 + +------------------------------------------------------------------- +Mon Dec 2 10:48:58 CET 2024 - nik.borisov@suse.com + +- x86: Increase brk randomness entropy for 64-bit systems (git-fixes). +- commit 7e88dd7 + +------------------------------------------------------------------- +Mon Dec 2 10:48:31 CET 2024 - nik.borisov@suse.com + +- x86/resctrl: Remove hard-coded memory bandwidth limit (git-fixes). +- Refresh patches.suse/x86-resctrl-Annotate-get_mem_config-functions-as-__init.patch. +- commit 6888d66 + +------------------------------------------------------------------- +Mon Dec 2 09:56:24 CET 2024 - vkarasulli@suse.de + +- Update + patches.suse/ASoC-dapm-fix-bounds-checker-error-in-dapm_widget_li.patch + (git-fixes CVE-2024-53045 bsc#1233524). +- Update + patches.suse/ASoC-stm32-spdifrx-fix-dma-channel-release-in-stm32_.patch + (git-fixes CVE-2024-50292 bsc#1233481). +- Update + patches.suse/HID-core-zero-initialize-the-report-buffer.patch + (git-fixes CVE-2024-50302 bsc#1233491). +- Update + patches.suse/USB-serial-io_edgeport-fix-use-after-free-in-debug-p.patch + (git-fixes CVE-2024-50267 bsc#1233456). +- Update patches.suse/can-bcm-Fix-UAF-in-bcm_proc_show.patch + (bsc#1012628 CVE-2023-52922 bsc#1233977). +- Update + patches.suse/drm-amdgpu-add-missing-size-check-in-amdgpu_debugfs_.patch + (stable-fixes CVE-2024-50282 bsc#1233471). +- Update + patches.suse/drm-amdgpu-fix-possible-UAF-in-amdgpu_cs_pass1.patch + (jsc#PED-3527 jsc#PED-5475 jsc#PED-6068 jsc#PED-6070 + jsc#PED-6116 jsc#PED-6120 jsc#PED-5065 jsc#PED-5477 jsc#PED-5511 + jsc#PED-6041 jsc#PED-6069 jsc#PED-6071 CVE-2023-52921 + bsc#1233452). +- Update + patches.suse/drm-amdgpu-prevent-NULL-pointer-dereference-if-ATIF-.patch + (git-fixes CVE-2024-53060 bsc#1233554). +- Update + patches.suse/firmware-arm_scmi-Fix-slab-use-after-free-in-scmi_bu.patch + (git-fixes CVE-2024-53068 bsc#1233561). +- Update + patches.suse/fs-Fix-uninitialized-value-issue-in-from_kuid-and-from_kgid.patch + (git-fixes CVE-2024-53101 bsc#1233769). +- Update + patches.suse/i40e-fix-race-condition-by-adding-filter-s-intermedi.patch + (git-fixes CVE-2024-53088 bsc#1233580). +- Update + patches.suse/iio-gts-helper-Fix-memory-leaks-for-the-error-path-o.patch + (git-fixes CVE-2024-53076 bsc#1233567). +- Update + patches.suse/io_uring-rw-fix-missing-NOWAIT-check-for-O_DIRECT-st.patch + (git-fixes CVE-2024-53052 bsc#1233548). +- Update + patches.suse/media-ar0521-don-t-overflow-when-checking-PLL-values.patch + (git-fixes CVE-2024-53081 bsc#1233572). +- Update + patches.suse/media-cx24116-prevent-overflows-on-SNR-calculus.patch + (git-fixes CVE-2024-50290 bsc#1233479). +- Update + patches.suse/media-dvbdev-prevent-the-risk-of-out-of-memory-acces.patch + (git-fixes CVE-2024-53063 bsc#1233557). +- Update + patches.suse/media-s5p-jpeg-prevent-buffer-overflows.patch + (git-fixes CVE-2024-53061 bsc#1233555). +- Update + patches.suse/media-v4l2-tpg-prevent-the-risk-of-a-division-by-zer.patch + (git-fixes CVE-2024-50287 bsc#1233476). +- Update + patches.suse/nfs-Fix-KMSAN-warning-in-decode_getfattr_attrs.patch + (git-fixes CVE-2024-53066 bsc#1233560). +- Update + patches.suse/ocfs2-remove-entry-once-instead-of-null-ptr-dereference-in-ocfs2_xa_remove.patch + (git-fixes CVE-2024-50265 bsc#1233454). +- Update + patches.suse/platform-x86-amd-pmc-Detect-when-STB-is-not-availabl.patch + (git-fixes CVE-2024-53072 bsc#1233564). +- Update + patches.suse/posix-clock-posix-clock-Fix-unbalanced-locking-in-pc.patch + (CVE-2024-50195 bsc#1233103 CVE-2024-50210 bsc#1233097). +- Update + patches.suse/scsi-wd33c93-Don-t-use-stale-scsi_pointer-value.patch + (git-fixes CVE-2024-50026 bsc#1231952). +- Update + patches.suse/security-keys-fix-slab-out-of-bounds-in-key_task_per.patch + (git-fixes CVE-2024-50301 bsc#1233490). +- Update + patches.suse/tpm-Lock-TPM-chip-in-tpm_pm_suspend-first.patch + (bsc#1082555 git-fixes CVE-2024-53085 bsc#1233577). +- Update + patches.suse/usb-musb-sunxi-Fix-accessing-an-released-usb-phy.patch + (git-fixes CVE-2024-50269 bsc#1233458). +- Update + patches.suse/usb-typec-fix-potential-out-of-bounds-in-ucsi_ccg_up.patch + (git-fixes CVE-2024-50268 bsc#1233457). +- Update + patches.suse/wifi-iwlwifi-mvm-Fix-response-handling-in-iwl_mvm_se.patch + (git-fixes CVE-2024-53059 bsc#1233553). +- Update + patches.suse/wifi-iwlwifi-mvm-don-t-leak-a-link-on-AP-removal.patch + (git-fixes CVE-2024-53074 bsc#1233566). +- commit 5a024cd + +------------------------------------------------------------------- +Mon Dec 2 09:42:05 CET 2024 - nik.borisov@suse.com + +- x86/tdx: Enable CPU topology enumeration (git-fixes). +- commit cf1674b + +------------------------------------------------------------------- +Mon Dec 2 09:41:44 CET 2024 - nik.borisov@suse.com + +- x86/tdx: Dynamically disable SEPT violations from causing #VEs (git-fixes). +- commit 29f8884 + +------------------------------------------------------------------- +Mon Dec 2 09:40:56 CET 2024 - nik.borisov@suse.com + +- x86/tdx: Rename tdx_parse_tdinfo() to tdx_setup() (git-fixes). +- commit a66f7df + +------------------------------------------------------------------- +Mon Dec 2 09:40:31 CET 2024 - nik.borisov@suse.com + +- x86/tdx: Introduce wrappers to read and write TD metadata (git-fixes). +- commit 182660e + +------------------------------------------------------------------- +Mon Dec 2 09:36:47 CET 2024 - nik.borisov@suse.com + +- x86/microcode/intel: Remove unnecessary cache writeback and invalidation (git-fixes). +- commit dc97c33 + +------------------------------------------------------------------- +Mon Dec 2 09:31:59 CET 2024 - nik.borisov@suse.com + +- x86/traps: move kmsan check after instrumentation_begin (git-fixes). +- commit 788cc4b + +------------------------------------------------------------------- +Mon Dec 2 09:30:48 CET 2024 - nik.borisov@suse.com + +- x86: fix off-by-one in access_ok() (git-fixes). +- commit ada1011 + +------------------------------------------------------------------- +Mon Dec 2 09:30:26 CET 2024 - nik.borisov@suse.com + +- x86/syscall: Avoid memcpy() for ia32 syscall_get_arguments() (git-fixes). +- commit a421b7f + +------------------------------------------------------------------- +Sun Dec 1 09:31:13 CET 2024 - tiwai@suse.de + +- tools/power turbostat: Fix trailing '\n' parsing (git-fixes). +- modpost: remove incorrect code in do_eisa_entry() (git-fixes). +- rtc: ab-eoz9: don't fail temperature reads on undervoltage + notification (git-fixes). +- rtc: rzn1: fix BCD to rtc_time conversion errors (git-fixes). +- rtc: check if __rtc_read_time was successful in + rtc_timer_do_work() (git-fixes). +- rtc: abx80x: Fix WDT bit position of the status register + (git-fixes). +- rtc: bbnsm: add remove hook (git-fixes). +- rtc: st-lpc: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- tty: ldsic: fix tty_ldisc_autoload sysctl's proc_handler + (git-fixes). +- serial: 8250: omap: Move pm_runtime_get_sync (git-fixes). +- commit 003de2e + +------------------------------------------------------------------- +Sat Nov 30 10:34:31 CET 2024 - tiwai@suse.de + +- USB: chaoskey: Fix possible deadlock chaoskey_list_lock + (git-fixes). +- commit bc5d0b3 + +------------------------------------------------------------------- +Sat Nov 30 10:33:34 CET 2024 - tiwai@suse.de + +- ALSA: hda: Show the codec quirk info at probing (stable-fixes). +- ALSA: hda/realtek: Set PCBeep to default value for ALC274 + (stable-fixes). +- ALSA: usb-audio: Fix out of bounds reads when finding clock + sources (stable-fixes). +- ALSA: pcm: Add sanity NULL check for the default mmap fault + handler (stable-fixes). +- commit 0da3d44 + +------------------------------------------------------------------- +Sat Nov 30 10:27:17 CET 2024 - tiwai@suse.de + +- drm/amd/display: Fix null check for pipe_ctx->plane_state in + hwss_setup_dpp (git-fixes). +- drm/amd/display: Fix null check for pipe_ctx->plane_state in + dcn20_program_pipe (git-fixes). +- drm/amd: Add some missing straps from NBIO 7.11.0 (git-fixes). +- ASoC: SOF: ipc3-topology: Convert the topology pin index to + ALH dai index (git-fixes). +- ASoC: amd: yc: Fix for enabling DMIC on acp6x via _DSD entry + (git-fixes). +- ALSA: ump: Fix evaluation of MIDI 1.0 FB info (git-fixes). +- ALSA: hda/realtek: Update ALC225 depop procedure (git-fixes). +- ALSA: usb-audio: Fix potential out-of-bound accesses for Extigy + and Mbox devices (git-fixes). +- ALSA: hda/realtek: Update ALC256 depop procedure (git-fixes). +- ALSA: ac97: bus: Fix the mistake in the comment (git-fixes). +- =?UTF-8?q?iio:=20accel:=20kxcjk-1013:=20Remove=20redundan?= + =?UTF-8?q?t=20I=C2=B2C=20ID?= (git-fixes). +- iio: Fix fwnode_handle in __fwnode_iio_channel_get_by_name() + (git-fixes). +- iio: accel: kx022a: Fix raw read format (git-fixes). +- iio: gts: fix infinite loop for gain_to_scaletables() + (git-fixes). +- iio: gts: Fix uninitialized symbol 'ret' (git-fixes). +- ad7780: fix division by zero in ad7780_write_raw() (git-fixes). +- iio: adc: ad7923: Fix buffer overflow for tx_buf and ring_xfer + (git-fixes). +- comedi: Flush partial mappings in error case (git-fixes). +- goldfish: Fix unused const variable 'goldfish_pipe_acpi_match' + (git-fixes). +- iio: adc: ad7606: Fix typo in the driver name (git-fixes). +- iio: light: al3010: Fix an error handling path in al3010_probe() + (git-fixes). +- misc: apds990x: Fix missing pm_runtime_disable() (git-fixes). +- firmware_loader: Fix possible resource leak in + fw_log_firmware_info() (git-fixes). +- usb: dwc3: gadget: Fix looping of queued SG entries (git-fixes). +- usb: dwc3: gadget: Fix checking for number of TRBs left + (git-fixes). +- Revert "usb: gadget: composite: fix OS descriptors w_value + logic" (git-fixes). +- usb: ehci-spear: fix call balance of sehci clk handling routines + (git-fixes). +- USB: serial: ftdi_sio: Fix atomicity violation in + get_serial_info() (git-fixes). +- usb: dwc3: gadget: Add missing check for single port RAM in + TxFIFO resizing logic (git-fixes). +- usb: musb: Fix hardware lockup on first Rx endpoint request + (git-fixes). +- usb: xhci: Fix TD invalidation under pending Set TR Dequeue + (git-fixes). +- USB: chaoskey: fail open after removal (git-fixes). +- usb: yurex: make waiting on yurex_write interruptible + (git-fixes). +- usb: using mutex lock and supporting O_NONBLOCK flag in + iowarrior_read() (git-fixes). +- apparmor: fix 'Do simple duplicate message elimination' + (git-fixes). +- apparmor: test: Fix memory leak for aa_unpack_strdup() + (git-fixes). +- apparmor: use kvfree_sensitive to free data->data (git-fixes). +- commit 875afee + +------------------------------------------------------------------- +Fri Nov 29 16:59:51 CET 2024 - nmorey@suse.com + +- RDMA/hns: Disassociate mmap pages for all uctx when HW is being reset (git-fixes) +- commit 41e9c5b + +------------------------------------------------------------------- +Fri Nov 29 16:27:58 CET 2024 - dfaggioli@suse.com + +- bpf, vsock: Drop static vsock_bpf_prot initialization (git-fixes). +- commit 939d649 + +------------------------------------------------------------------- +Fri Nov 29 16:26:26 CET 2024 - dfaggioli@suse.com + +- vsock: Update msg_count on read_skb() (git-fixes). +- commit fce5f41 + +------------------------------------------------------------------- +Fri Nov 29 16:23:46 CET 2024 - dfaggioli@suse.com + +- vsock: Update rx_bytes on read_skb() (git-fixes, bsc#1233320, + CVE-2024-50169). +- commit acfc5df + +------------------------------------------------------------------- +Fri Nov 29 16:19:13 CET 2024 - dfaggioli@suse.com + +- bpf, sockmap: SK_DROP on attempted redirects of unsupported af_vsock (git-fixes). +- commit 8db08f8 + +------------------------------------------------------------------- +Fri Nov 29 13:04:50 CET 2024 - mgorman@suse.de + +- mm: revert "mm: shmem: fix data-race in shmem_getattr()" + (CVE-2024-50228, bsc#1233204, git fixes (mm/shmem)). + CVE is likely a non-issue while the fix introduces real bugs. +- commit b77756a + +------------------------------------------------------------------- +Fri Nov 29 09:29:22 CET 2024 - tiwai@suse.de + +- Bluetooth: MGMT: Fix slab-use-after-free Read in + set_powered_sync (git-fixes). +- net: mdio-ipq4019: add missing error check (git-fixes). +- net: usb: lan78xx: Fix refcounting and autosuspend on invalid + WoL configuration (git-fixes). +- net: usb: lan78xx: Fix memory leak on device unplug by freeing + PHY device (git-fixes). +- net: usb: lan78xx: Fix double free issue with interrupt buffer + allocation (git-fixes). +- spi: Fix acpi deferred irq probe (git-fixes). +- spi: atmel-quadspi: Fix register name in verbose logging + function (git-fixes). +- power: supply: rt9471: Use IC status regfield to report real + charger status (git-fixes). +- power: supply: rt9471: Fix wrong WDT function regfield + declaration (git-fixes). +- power: supply: bq27xxx: Fix registers of bq27426 (git-fixes). +- power: supply: core: Remove might_sleep() from + power_supply_put() (git-fixes). +- commit 0e6f9cb + +------------------------------------------------------------------- +Thu Nov 28 23:22:45 CET 2024 - krisman@suse.de + +- pktgen: use cpus_read_lock() in pg_net_init() (bsc#1230558 + CVE-2024-46681). +- commit ad3c579 + +------------------------------------------------------------------- +Thu Nov 28 17:10:36 CET 2024 - dsterba@suse.com + +- posix-clock: posix-clock: Fix unbalanced locking in pc_clock_settime() (CVE-2024-50195 bsc#1233103) +- commit 6192694 + +------------------------------------------------------------------- +Thu Nov 28 16:33:22 CET 2024 - tiwai@suse.de + +- media: av7110: fix a spectre vulnerability (CVE-2024-50289 + bsc#1233478). +- commit 2969047 + +------------------------------------------------------------------- +Thu Nov 28 12:51:05 CET 2024 - tiwai@suse.de + +- Drop OCFS2 patch causing a regression (bsc#1233255) + Deleted: + patches.suse/ocfs2-fix-the-la-space-leak-when-unmounting-an-ocfs2-volume.patch +- commit 2a24fc4 + +------------------------------------------------------------------- +Thu Nov 28 10:35:25 CET 2024 - sjaeckel@suse.de + +- net: fix out-of-bounds access in ops_init (CVE-2024-36883 + bsc#1225725). +- commit f1b40e8 + +------------------------------------------------------------------- +Thu Nov 28 09:15:07 CET 2024 - tiwai@suse.de + +- efi/memattr: Ignore table if the size is clearly bogus + (bsc#1231465). +- commit c92a68e + +------------------------------------------------------------------- +Thu Nov 28 08:32:59 CET 2024 - tiwai@suse.de + +- thermal: int3400: Fix reading of current_uuid for active policy + (git-fixes). +- gpio: exar: set value when external pull-up or pull-down is + present (git-fixes). +- gpio: zevio: Add missed label initialisation (git-fixes). +- commit a62e144 + +------------------------------------------------------------------- +Thu Nov 28 08:30:58 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Apply quirk for Medion E15433 (bsc#1233298). +- commit 9a99613 + +------------------------------------------------------------------- +Wed Nov 27 17:49:09 CET 2024 - tbogendoerfer@suse.de + +- ice: fix crash on probe for DPLL enabled E810 LOM + (CVE-2024-53048 bsc#1233721). +- commit 5f7ca77 + +------------------------------------------------------------------- +Wed Nov 27 17:46:22 CET 2024 - nmorey@suse.com + +- Update references for patches.suse/RDMA-siw-Add-sendpage_ok-check-to-disable-MSG_SPLICE.patch (bsc#1233641 CVE-2024-53094) +- commit 1f528cf + +------------------------------------------------------------------- +Wed Nov 27 11:51:43 CET 2024 - osalvador@suse.de + +- mm/hugetlb: fix missing hugetlb_lock for resv uncharge + (bsc#1224548 CVE-2024-36000). +- commit 92c1bc7 + +------------------------------------------------------------------- +Wed Nov 27 11:50:37 CET 2024 - osalvador@suse.de + +- mm/huge_memory: don't unpoison huge_zero_folio (bsc#1227842 + CVE-2024-40914). +- commit 14bb799 + +------------------------------------------------------------------- +Wed Nov 27 11:30:16 CET 2024 - tbogendoerfer@suse.de + +- net: xfrm: preserve kabi for xfrm_state (bsc#1233754). +- idpf: avoid vport access in idpf_get_link_ksettings + (CVE-2024-50274 bsc#1233463). +- xfrm: Export symbol xfrm_dev_state_delete (bsc#1233754). +- xfrm: Fix unregister netdevice hang on hardware offload + (bsc#1233754). +- commit 8c4cfeb + +------------------------------------------------------------------- +Wed Nov 27 08:40:26 CET 2024 - tiwai@suse.de + +- hwmon: (tps23861) Fix reporting of negative temperatures + (git-fixes). +- i3c: master: svc: Fix pm_runtime_set_suspended() with runtime + pm enabled (git-fixes). +- i3c: master: Fix miss free init_dyn_addr at + i3c_master_put_i3c_addrs() (git-fixes). +- PCI: Fix reset_method_store() memory leak (git-fixes). +- PCI: rockchip-ep: Fix address translation unit programming + (git-fixes). +- PCI: keystone: Add link up check to ks_pcie_other_map_bus() + (git-fixes). +- PCI: keystone: Set mode as Root Complex for "ti,keystone-pcie" + compatible (git-fixes). +- PCI: endpoint: Clear secondary (not primary) EPC in + pci_epc_remove_epf() (git-fixes). +- commit 29a3aa9 + +------------------------------------------------------------------- +Tue Nov 26 18:06:28 CET 2024 - tiwai@suse.de + +- Move kabi netfilter fix into patches.kabi +- commit 6c82cf8 + +------------------------------------------------------------------- +Tue Nov 26 15:34:51 CET 2024 - farosas@suse.de + +- virtio_net: Add hash_key_length check (CVE-2024-53082 + bsc#1233573). +- commit 1273e47 + +------------------------------------------------------------------- +Tue Nov 26 13:40:37 CET 2024 - sjaeckel@suse.de + +- net: relax socket state check at accept time (git-fixes). +- netfilter: nf_tables: missing iterator type in lookup walk + (git-fixes). +- commit 180e959 + +------------------------------------------------------------------- +Tue Nov 26 13:36:06 CET 2024 - tbogendoerfer@suse.de + +- net: hns3: fix a deadlock problem when config TC during + resetting (CVE-2024-44995 bsc#1230231). +- commit e1fa968 + +------------------------------------------------------------------- +Tue Nov 26 13:11:16 CET 2024 - msuchanek@suse.de + +- KVM: PPC: Book3S HV: Avoid returning to nested hypervisor on + pending doorbells (bsc#1215199). +- KVM: PPC: Book3S HV: Stop using vc->dpdes for nested KVM guests + (bsc#1215199). +- Revert "KVM: PPC: Book3S HV Nested: Stop forwarding all HFUs + to L1" (bsc#1215199). +- commit d27c0c3 + +------------------------------------------------------------------- +Tue Nov 26 11:46:07 CET 2024 - tiwai@suse.de + +- mailbox: arm_mhuv2: clean up loop in get_irq_chan_comb() + (git-fixes). +- pinctrl: k210: Undef K210_PC_DEFAULT (git-fixes). +- pinctrl: qcom: spmi: fix debugfs drive strength (git-fixes). +- pinctrl: zynqmp: drop excess struct member description + (git-fixes). +- lib: string_helpers: silence snprintf() output truncation + warning (git-fixes). +- fbdev: sh7760fb: Fix a possible memory leak in + sh7760fb_alloc_mem() (git-fixes). +- Input: hycon-hy46xx - add missing dependency on REGMAP_I2C + (git-fixes). +- Input: hideep - add missing dependency on REGMAP_I2C + (git-fixes). +- commit 17f846a + +------------------------------------------------------------------- +Tue Nov 26 11:40:04 CET 2024 - msuchanek@suse.de + +- KVM: PPC: Book3S HV: remove unused varible (bsc#1194869). +- commit 932ea3b + +------------------------------------------------------------------- +Tue Nov 26 11:21:25 CET 2024 - sjaeckel@suse.de + +- netrom: fix possible dead-lock in nr_rt_ioctl() (CVE-2024-38589 + bsc#1226748). +- commit 0e7a285 + +------------------------------------------------------------------- +Tue Nov 26 11:02:02 CET 2024 - msuchanek@suse.de + +- tpm: Lock TPM chip in tpm_pm_suspend() first (bsc#1082555 + git-fixes). +- commit 4594f81 + +------------------------------------------------------------------- +Tue Nov 26 10:59:27 CET 2024 - sjaeckel@suse.de + +- kABI fix for netfilter: nft_set_pipapo: walk over current view + on netlink dump (CVE-2024-27017 bsc#1223733). +- commit 2be46c1 + +------------------------------------------------------------------- +Tue Nov 26 09:34:44 CET 2024 - vbabka@suse.cz + +- Update references for + patches.suse/mm-resolve-faulty-mmap_region-error-path-behaviour.patch + (git-fixes CVE-2024-53096 bsc#1233756). +- commit 6c0d091 + +------------------------------------------------------------------- +Tue Nov 26 09:11:53 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Enable speaker pins for Medion E15443 + platform (bsc#1233298). +- ALSA: hda/realtek: Fix Internal Speaker and Mic boost of + Infinix Y4 Max (bsc#1233298). +- commit dd8caae + +------------------------------------------------------------------- +Tue Nov 26 09:10:22 CET 2024 - tiwai@suse.de + +- Move upstreamed patches into sorted section +- commit b72de8f + +------------------------------------------------------------------- +Tue Nov 26 08:25:42 CET 2024 - vbabka@suse.cz + +- kabi, mm: refactor arch_calc_vm_flag_bits() and arm64 MTE + handling (git-fixes kabi). +- mm: refactor arch_calc_vm_flag_bits() and arm64 MTE handling + (git-fixes). +- commit f31b0e3 + +------------------------------------------------------------------- +Mon Nov 25 21:57:38 CET 2024 - vbabka@suse.cz + +- mm: resolve faulty mmap_region() error path behaviour + (git-fixes). +- commit 84c4dfc + +------------------------------------------------------------------- +Mon Nov 25 18:24:50 CET 2024 - vbabka@suse.cz + +- mm: refactor map_deny_write_exec() (git-fixes). +- commit 8c66a90 + +------------------------------------------------------------------- +Mon Nov 25 18:20:13 CET 2024 - vbabka@suse.cz + +- mm: unconditionally close VMAs on error (git-fixes). +- commit f81f7df + +------------------------------------------------------------------- +Mon Nov 25 18:17:22 CET 2024 - vbabka@suse.cz + +- mm: move dummy_vm_ops out of a header (git-fixes prerequisity). +- commit e1045c0 + +------------------------------------------------------------------- +Mon Nov 25 18:06:16 CET 2024 - vbabka@suse.cz + +- mm: avoid unsafe VMA hook invocation when error arises on mmap + hook (git-fixes). +- commit 2b96063 + +------------------------------------------------------------------- +Mon Nov 25 17:21:25 CET 2024 - tbogendoerfer@suse.de + +- fsl/fman: Fix refcount handling of fman-related devices + (CVE-2024-50166 bsc#1233050). +- fsl/fman: Save device references taken in mac_probe() + (CVE-2024-50166 bsc#1233050). +- commit cff0dea + +------------------------------------------------------------------- +Mon Nov 25 16:20:17 CET 2024 - sjaeckel@suse.de + +- tcp: Fix refcnt handling in __inet_hash_connect() (git-fixes). +- commit 2b4c1a0 + +------------------------------------------------------------------- +Mon Nov 25 14:01:51 CET 2024 - sjaeckel@suse.de + +- tipc: fix UAF in error path (CVE-2024-36886 bsc#1225730). +- commit be7d8d3 + +------------------------------------------------------------------- +Mon Nov 25 13:58:02 CET 2024 - sjaeckel@suse.de + +- ipv4: Fix uninit-value access in __ip_make_skb() (CVE-2024-36927 + bsc#1225813). +- commit 5457624 + +------------------------------------------------------------------- +Mon Nov 25 13:17:32 CET 2024 - mfranc@suse.cz + +- vsock/virtio: Initialization of the dangling pointer occurring + in vsk->trans (CVE-2024-50264 bsc#1233453). +- arm64/sve: Discard stale CPU state when handling SVE traps + (CVE-2024-50275 bsc#1233464). +- commit 2855c61 + +------------------------------------------------------------------- +Mon Nov 25 13:03:37 CET 2024 - sjaeckel@suse.de + +- tcp: defer shutdown(SEND_SHUTDOWN) for TCP_SYN_RECV sockets + (CVE-2024-36905 bsc#1225742). +- commit 84c8bd7 + +------------------------------------------------------------------- +Mon Nov 25 11:08:06 CET 2024 - nik.borisov@suse.com + +- kasan: move checks to do_strncpy_from_user (git-fixes). +- commit ca3142b + +------------------------------------------------------------------- +Mon Nov 25 10:56:40 CET 2024 - sjaeckel@suse.de + +- tipc: fix a possible memleak in tipc_buf_append (CVE-2024-36954 + bsc#1225764). +- commit b7093a9 + +------------------------------------------------------------------- +Mon Nov 25 10:53:25 CET 2024 - sjaeckel@suse.de + +- erspan: make sure erspan_base_hdr is present in skb->head + (CVE-2024-35888 bsc#1224518). +- commit aaa779d + +------------------------------------------------------------------- +Mon Nov 25 10:46:58 CET 2024 - sjaeckel@suse.de + +- net: esp: fix bad handling of pages from page_pool + (CVE-2024-26953 bsc#1223656). +- commit b0a65f5 + +------------------------------------------------------------------- +Mon Nov 25 10:45:00 CET 2024 - sjaeckel@suse.de + +- netfilter: nft_set_pipapo: walk over current view on netlink + dump (CVE-2024-27017 bsc#1223733). +- commit d1885c4 + +------------------------------------------------------------------- +Mon Nov 25 10:39:52 CET 2024 - sjaeckel@suse.de + +- dccp/tcp: Unhash sk from ehash for tb2 alloc failure after + check_estalblished() (CVE-2024-26741 bsc#1222587). +- commit 9a5ac8a + +------------------------------------------------------------------- +Sun Nov 24 21:31:48 CET 2024 - lduncan@suse.com + +- minmax: scsi: fix mis-use of 'clamp()' in sr.c (git-fixes). +- commit 46d200b + +------------------------------------------------------------------- +Sun Nov 24 18:09:35 CET 2024 - nmorey@suse.com + +- Fix warning in patches.suse/RDMA-mlx5-Move-events-notifier-registration-to-be-af.patch + Fixes: ff613dcf3cc9c8aa5b4cc959d0bdfac2dec81854 +- commit 56a258b + +------------------------------------------------------------------- +Sun Nov 24 09:49:00 CET 2024 - tiwai@suse.de + +- Move upstreamed crypto patches into sorted section +- commit 7706550 + +------------------------------------------------------------------- +Sun Nov 24 09:22:34 CET 2024 - tiwai@suse.de + +- maple_tree: refine mas_store_root() on storing NULL (git-fixes). +- maple_tree: fix alloc node fail issue (git-fixes). +- unicode: Fix utf8_load() error path (git-fixes). +- commit 7f4b1c4 + +------------------------------------------------------------------- +Sat Nov 23 16:38:17 CET 2024 - nmorey@suse.com + +- RDMA/mlx5: Move events notifier registration to be after device registration (git-fixes) +- commit ff613dc + +------------------------------------------------------------------- +Sat Nov 23 16:20:10 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix different dgids mapping to the same dip_idx (git-fixes) +- commit 482b364 + +------------------------------------------------------------------- +Sat Nov 23 16:19:30 CET 2024 - nmorey@suse.com + +- RDMA/hns: Use macro instead of magic number (git-fixes) +- commit d6d944a + +------------------------------------------------------------------- +Sat Nov 23 16:15:49 CET 2024 - nmorey@suse.com + +- RDMA/hns: Add mutex_destroy() (git-fixes) +- commit 096658f + +------------------------------------------------------------------- +Sat Nov 23 16:12:59 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix NULL pointer derefernce in hns_roce_map_mr_sg() (git-fixes) +- commit abdac11 + +------------------------------------------------------------------- +Sat Nov 23 16:12:49 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix out-of-order issue of requester when setting FENCE (git-fixes) +- commit a53ecd7 + +------------------------------------------------------------------- +Sat Nov 23 16:12:37 CET 2024 - nmorey@suse.com + +- RDMA/rxe: Set queue pair cur_qp_state when being queried (git-fixes) +- commit 74c369b + +------------------------------------------------------------------- +Sat Nov 23 16:12:28 CET 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Check cqe flags to know imm_data vs inv_irkey (git-fixes) +- commit 7a90d31 + +------------------------------------------------------------------- +Sat Nov 23 16:12:19 CET 2024 - nmorey@suse.com + +- RDMA/rxe: Fix the qp flush warnings in req (git-fixes) +- commit 678f36e + +------------------------------------------------------------------- +Sat Nov 23 16:12:04 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix cpu stuck caused by printings during reset (git-fixes) +- commit 0c19d33 + +------------------------------------------------------------------- +Sat Nov 23 16:11:49 CET 2024 - nmorey@suse.com + +- RDMA/hns: Use dev_* printings in hem code instead of ibdev_* (git-fixes) +- commit 21d3575 + +------------------------------------------------------------------- +Sat Nov 23 16:10:37 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix flush cqe error when racing with destroy qp (git-fixes) +- commit 4c3bddb + +------------------------------------------------------------------- +Sat Nov 23 16:07:39 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix an AEQE overflow error caused by untimely update of eq_db_ci (git-fixes) +- commit c0d9dba + +------------------------------------------------------------------- +Sat Nov 23 10:08:30 CET 2024 - tiwai@suse.de + +- cpufreq: CPPC: Fix wrong return value in cppc_get_cpu_power() + (git-fixes). +- cpufreq: CPPC: Fix wrong return value in cppc_get_cpu_cost() + (git-fixes). +- commit b53ff09 + +------------------------------------------------------------------- +Sat Nov 23 10:06:44 CET 2024 - tiwai@suse.de + +- cpufreq: mediatek-hw: Fix wrong return value in + mtk_cpufreq_get_cpu_power() (git-fixes). +- cpufreq: CPPC: Fix possible null-ptr-deref for + cppc_get_cpu_cost() (git-fixes). +- cpufreq: CPPC: Fix possible null-ptr-deref for + cpufreq_cpu_get_raw() (git-fixes). +- Revert "cpufreq: brcmstb-avs-cpufreq: Fix initial command check" + (stable-fixes). +- cpufreq: loongson2: Unregister platform_driver on failure + (git-fixes). +- mtd: rawnand: atmel: Fix possible memory leak (git-fixes). +- mtd: spi-nor: core: replace dummy buswidth from addr to data + (git-fixes). +- clk: qcom: clk-alpha-pll: fix lucid 5lpe pll enabled check + (git-fixes). +- clk: qcom: clk-alpha-pll: drop lucid-evo pll enabled warning + (git-fixes). +- clk: qcom: gcc-qcs404: fix initial rate of GPLL3 (git-fixes). +- clk: clk-axi-clkgen: make sure to enable the AXI bus clock + (git-fixes). +- clk: sunxi-ng: d1: Fix PLL_AUDIO0 preset (git-fixes). +- clk: imx: clk-scu: fix clk enable state save and restore + (git-fixes). +- clk: imx: fracn-gppll: fix pll power up (git-fixes). +- clk: imx: fracn-gppll: correct PLL initialization flow + (git-fixes). +- clk: imx: lpcg-scu: SW workaround for errata (e10858) + (git-fixes). +- clk: renesas: rzg2l: Fix FOUTPOSTDIV clk (git-fixes). +- clk: clk-apple-nco: Add NULL check in applnco_probe (git-fixes). +- leds: lp55xx: Remove redundant test for invalid channel number + (git-fixes). +- mfd: rt5033: Fix missing regmap_del_irq_chip() (git-fixes). +- mfd: tps65010: Use IRQF_NO_AUTOEN flag in request_irq() to + fix race (git-fixes). +- drm/amd: Fix initialization mistake for NBIO 7.7.0 + (stable-fixes). +- drm/amd/display: Adjust VSDB parser for replay feature + (stable-fixes). +- media: dvbdev: fix the logic when DVB_DYNAMIC_MINORS is not set + (stable-fixes). +- commit 15015b2 + +------------------------------------------------------------------- +Sat Nov 23 00:12:11 CET 2024 - lduncan@suse.com + +- scsi: cdrom: kABI: fix cdrom_dev_ops change (git-fixes). +- commit ab3e426 + +------------------------------------------------------------------- +Fri Nov 22 18:38:31 CET 2024 - davide.benini@suse.com + +- netfilter: Fix use-after-free in get_info() (CVE-2024-50257 + bsc#1233244). +- commit 1f00653 + +------------------------------------------------------------------- +Fri Nov 22 11:08:31 CET 2024 - tiwai@suse.de + +- ALSA: usb-audio: Make mic volume workarounds globally applicable + (stable-fixes). +- Refresh + patches.suse/ALSA-usb-audio-Add-quirk-for-HP-320-FHD-Webcam.patch. +- commit 777a5df + +------------------------------------------------------------------- +Fri Nov 22 10:59:49 CET 2024 - tiwai@suse.de + +- drm/vc4: Match drm_dev_enter and exit calls in vc4_hvs_lut_load + (git-fixes). +- ALSA: hda: Poll jack events for LS7A HD-Audio (stable-fixes). +- ALSA: usb-audio: Add Pioneer DJ/AlphaTheta DJM-A9 Mixer + (stable-fixes). +- ALSA: usb-audio: Use snprintf instead of sprintf in + build_mixer_unit_ctl (stable-fixes). +- ALSA: ice1712: Remove redundant code in stac9460_dac_vol_put + (stable-fixes). +- commit e772374 + +------------------------------------------------------------------- +Fri Nov 22 10:51:41 CET 2024 - tiwai@suse.de + +- drm/amdkfd: Fix wrong usage of INIT_WORK() (git-fixes). +- drm/panfrost: Add missing OPP table refcnt decremental + (git-fixes). +- drm: use ATOMIC64_INIT() for atomic64_t (git-fixes). +- drm/vkms: Drop unnecessary call to drm_crtc_cleanup() + (git-fixes). +- drm/etnaviv: hold GPU lock across perfmon sampling (git-fixes). +- drm/etnaviv: Request pages from DMA32 zone on addressing_limited + (git-fixes). +- drm/amd/display: Fix brightness level not retained over reboot + (git-fixes). +- drm/msm/dpu: cast crtc_clk calculation to u64 in + _dpu_core_perf_calc_clk() (git-fixes). +- drm/mediatek: Fix child node refcount handling in early exit + (git-fixes). +- drm/msm/gpu: Check the status of registration to PM QoS + (git-fixes). +- drm/msm/adreno: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- drm/msm: Fix some typos in comment (git-fixes). +- drm/msm/dpu: drop LM_3 / LM_4 on MSM8998 (git-fixes). +- drm/msm/dpu: drop LM_3 / LM_4 on SDM845 (git-fixes). +- drm/msm/dpu: on SDM845 move DSPP_3 to LM_5 block (git-fixes). +- drm: xlnx: zynqmp_dpsub: fix hotplug detection (git-fixes). +- drm: zynqmp_kms: Unplug DRM device before removal (git-fixes). +- drm/nouveau/gr/gf100: Fix missing unlock in gf100_gr_chan_new() + (git-fixes). +- drm/panfrost: Remove unused id_mask from struct panfrost_model + (git-fixes). +- drm/amdgpu: Fix JPEG v4.0.3 register write (git-fixes). +- drm/bridge: tc358767: Fix link properties discovery (git-fixes). +- drm/vc4: Match drm_dev_enter and exit calls in + vc4_hvs_atomic_flush (git-fixes). +- drm/bridge: it6505: Drop EDID cache on bridge power off + (git-fixes). +- drm/bridge: anx7625: Drop EDID cache on bridge power off + (git-fixes). +- drm/v3d: Address race-condition in MMU flush (git-fixes). +- drm/sti: avoid potential dereference of error pointers + (git-fixes). +- drm/sti: avoid potential dereference of error pointers in + sti_gdp_atomic_check (git-fixes). +- drm/sti: avoid potential dereference of error pointers in + sti_hqvdp_atomic_check (git-fixes). +- drm/imx/ipuv3: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- drm/imx/dcss: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- drm/omap: Fix locking in omap_gem_new_dmabuf() (git-fixes). +- drm/omap: Fix possible NULL dereference (git-fixes). +- drm/vc4: hvs: Correct logic on stopping an HVS channel + (git-fixes). +- drm/vc4: hvs: Remove incorrect limit from hvs_dlist debugfs + function (git-fixes). +- drm/vc4: hvs: Fix dlist debug not resetting the next entry + pointer (git-fixes). +- drm/vc4: hdmi: Avoid hang with debug registers when suspended + (git-fixes). +- drm/vc4: hvs: Don't write gamma luts on 2711 (git-fixes). +- drm/mm: Mark drm_mm_interval_tree*() functions with + __maybe_unused (git-fixes). +- ASoC: codecs: Fix atomicity violation in + snd_soc_component_get_drvdata() (git-fixes). +- ASoC: rt722-sdca: Remove logically deadcode in rt722-sdca.c + (git-fixes). +- ASoC: fsl_micfil: fix regmap_write_bits usage (git-fixes). +- ALSA: 6fire: Release resources at card release (git-fixes). +- ALSA: caiaq: Use snd_card_free_when_closed() at disconnection + (git-fixes). +- ALSA: us122l: Use snd_card_free_when_closed() at disconnection + (git-fixes). +- ALSA: usx2y: Use snd_card_free_when_closed() at disconnection + (git-fixes). +- Bluetooth: fix use-after-free in device_for_each_child() + (git-fixes). +- wifi: brcmfmac: release 'root' node in all execution paths + (git-fixes). +- wifi: cw1200: Fix potential NULL dereference (git-fixes). +- wifi: wfx: Fix error handling in wfx_core_init() (git-fixes). +- wifi: ath12k: fix warning when unbinding (git-fixes). +- wifi: ath12k: fix crash when unbinding (git-fixes). +- wifi: ath12k: remove msdu_end structure for WCN7850 (git-fixes). +- wifi: ath11k: Fix CE offset address calculation for WCN6750 + in SSR (git-fixes). +- wifi: ath12k: Skip Rx TID cleanup for self peer (git-fixes). +- wifi: ath10k: fix invalid VHT parameters in + supported_vht_mcs_rate_nss2 (git-fixes). +- wifi: ath10k: fix invalid VHT parameters in + supported_vht_mcs_rate_nss1 (git-fixes). +- wifi: ath9k: add range check for conn_rsp_epid in + htc_connect_service() (git-fixes). +- wifi: mwifiex: Fix memcpy() field-spanning write warning in + mwifiex_config_scan() (git-fixes). +- wifi: mwifiex: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- wifi: p54: Use IRQF_NO_AUTOEN flag in request_irq() (git-fixes). +- commit c54011d + +------------------------------------------------------------------- +Fri Nov 22 01:02:40 CET 2024 - lduncan@suse.com + +- scsi: kABI: restore no_start_on_resume to scsi_device + (git-fixes). +- scsi: sd_zbc: Use kvzalloc() to allocate REPORT ZONES buffer + (git-fixes). +- scsi: mpi3mr: Validate SAS port assignments (git-fixes). +- scsi: scsi_transport_fc: Allow setting rport state to current + state (git-fixes). +- scsi: wd33c93: Don't use stale scsi_pointer value (git-fixes). +- scsi: pm8001: Do not overwrite PCI queue mapping (git-fixes). +- scsi: smartpqi: correct stream detection (git-fixes). +- scsi: NCR5380: Initialize buffer for MSG IN and STATUS transfers + (git-fixes). +- scsi: NCR5380: Check for phase match during PDMA fixup + (git-fixes). +- scsi: mac_scsi: Disallow bus errors during PDMA send + (git-fixes). +- scsi: mac_scsi: Refactor polling loop (git-fixes). +- scsi: mac_scsi: Revise printk(KERN_DEBUG ...) messages + (git-fixes). +- scsi: smartpqi: revert + propagate-the-multipath-failure-to-SML-quickly (git-fixes). +- scsi: aacraid: Rearrange order of struct aac_srb_unit + (git-fixes). +- scsi: sd: Ignore command SYNCHRONIZE CACHE error if format in + progress (git-fixes). +- scsi: core: Fix the return value of scsi_logical_block_count() + (git-fixes). +- scsi: mpt3sas: Avoid IOMMU page faults on REPORT ZONES + (git-fixes). +- scsi: mpi3mr: Avoid IOMMU page faults on REPORT ZONES + (git-fixes). +- scsi: pm80xx: Set phy->enable_completion only when we wait + for it (git-fixes). +- scsi: libsas: Fix exp-attached device scan after probe failure + scanned in again after probe failed (git-fixes). +- scsi: mpi3mr: Fix ATA NCQ priority support (git-fixes). +- scsi: core: Disable CDL by default (git-fixes). +- scsi: core: Handle devices which return an unusually large + VPD page count (git-fixes). +- scsi: qedf: Set qed_slowpath_params to zero before use + (git-fixes). +- scsi: sr: Fix unintentional arithmetic wraparound (git-fixes). +- scsi: core: alua: I/O errors for ALUA state transitions + (git-fixes). +- scsi: hpsa: Fix allocation size for Scsi_Host private data + (git-fixes). +- scsi: libsas: Fix the failure of adding phy with zero-address + to port (git-fixes). +- scsi: mpi3mr: Avoid possible run-time warning with long + manufacturer strings (git-fixes). +- scsi: core: Fix handling of SCMD_FAIL_IF_RECOVERING (git-fixes). +- scsi: hisi_sas: Handle the NCQ error returned by D2H frame + (git-fixes). +- scsi: mpi3mr: Avoid memcpy field-spanning write WARNING + (git-fixes). +- scsi: spi: Fix sshdr use (git-fixes). +- scsi: Remove scsi device no_start_on_resume flag (git-fixes). +- commit d5d37f8 + +------------------------------------------------------------------- +Thu Nov 21 08:11:24 CET 2024 - tiwai@suse.de + +- soc: fsl: rcpm: fix missing of_node_put() in + copy_ippdexpcr1_setting() (git-fixes). +- firmware: arm_scpi: Check the DVFS OPP count returned by the + firmware (git-fixes). +- soc: ti: smartreflex: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- soc: qcom: geni-se: fix array underflow in geni_se_clk_tbl_get() + (git-fixes). +- drivers: soc: xilinx: add the missing kfree in + xlnx_add_cb_for_suspend() (git-fixes). +- efi/libstub: Free correct pointer on failure (git-fixes). +- tpm: fix signed/unsigned bug when checking event logs + (git-fixes). +- efi/libstub: fix efi_parse_options() ignoring the default + command line (git-fixes). +- platform/x86: panasonic-laptop: Return errno correctly in show + callback (git-fixes). +- media: uvcvideo: Skip parsing frames of type UVC_VS_UNDEFINED + in uvc_parse_format (git-fixes). +- media: platform: exynos4-is: Fix an OF node reference leak in + fimc_md_is_isp_available (git-fixes). +- media: atomisp: Add check for rgby_data memory allocation + failure (git-fixes). +- media: gspca: ov534-ov772x: Fix off-by-one error in + set_frame_rate() (git-fixes). +- media: venus: Fix pm_runtime_set_suspended() with runtime pm + enabled (git-fixes). +- media: amphion: Fix pm_runtime_set_suspended() with runtime + pm enabled (git-fixes). +- media: i2c: dw9768: Fix pm_runtime_set_suspended() with runtime + pm enabled (git-fixes). +- media: mantis: remove orphan mantis_core.h (git-fixes). +- media: vb2: Fix comment (git-fixes). +- media: uvcvideo: Stop stream during unregister (git-fixes). +- media: ts2020: fix null-ptr-deref in ts2020_probe() (git-fixes). +- media: platform: allegro-dvt: Fix possible memory leak in + allocate_buffers_internal() (git-fixes). +- media: i2c: tc358743: Fix crash in the probe error path when + using polling (git-fixes). +- media: wl128x: Fix atomicity violation in fmc_send_cmd() + (git-fixes). +- media: imx-jpeg: Ensure power suppliers be suspended before + detach them (git-fixes). +- media: amphion: Set video drvdata before register video device + (git-fixes). +- media: imx-jpeg: Set video drvdata before register video device + (git-fixes). +- media: mtk-jpeg: Fix null-ptr-deref during unload module + (git-fixes). +- media: uvcvideo: Require entities to have a non-zero unique ID + (git-fixes). +- HID: wacom: Interpret tilt data from Intuos Pro BT as signed + values (git-fixes). +- mmc: mmc_spi: drop buggy snprintf() (git-fixes). +- =?UTF-8?q?spi:=20zynqmp-gqspi:=20Undo=20runtime=20PM=20ch?= + =?UTF-8?q?anges=20at=20driver=20exit=20time=E2=80=8B?= + (git-fixes). +- spi: tegra210-quad: Avoid shift-out-of-bounds (git-fixes). +- regmap: irq: Set lockdep class for hierarchical IRQ domains + (git-fixes). +- Documentation: kgdb: Correct parameter error (git-fixes). +- efi/libstub: zboot.lds: Discard .discard sections + (stable-fixes). +- commit fbb8e93 + +------------------------------------------------------------------- +Wed Nov 20 08:53:46 CET 2024 - tiwai@suse.de + +- doc: rcu: update printed dynticks counter bits (git-fixes). +- hwmon: (nct6775-core) Fix overflows seen when writing limit + attributes (git-fixes). +- ACPI: CPPC: Fix _CPC register setting issue (git-fixes). +- thermal: core: Initialize thermal zones before registering them + (git-fixes). +- amd-pstate: Set min_perf to nominal_perf for active mode + performance gov (git-fixes). +- crypto: cavium - Fix an error handling path in + cpt_ucode_load_fw() (git-fixes). +- crypto: bcm - add error check in the ahash_hmac_init function + (git-fixes). +- crypto: caam - add error check to caam_rsa_set_priv_key_form + (git-fixes). +- crypto: inside-secure - Fix the return value of + safexcel_xcbcmac_cra_init() (git-fixes). +- crypto: cavium - Fix the if condition to exit loop after timeout + (git-fixes). +- crypto: x86/aegis128 - access 32-bit arguments as 32-bit + (git-fixes). +- crypto: pcrypt - Call crypto layer directly when + padata_do_parallel() return -EBUSY (git-fixes). +- crypto: qat - remove faulty arbiter config reset (git-fixes). +- crypto: qat/qat_4xxx - fix off by one in uof_get_name() + (git-fixes). +- crypto: qat - remove check after debugfs_create_dir() + (git-fixes). +- crypto: caam - Fix the pointer passed to caam_qi_shutdown() + (git-fixes). +- firmware: google: Unregister driver_info on failure (git-fixes). +- platform/chrome: cros_ec_typec: fix missing fwnode reference + decrement (git-fixes). +- acpi/arm64: Adjust error handling procedure in + gtdt_parse_timer_block() (git-fixes). +- commit af7e948 + +------------------------------------------------------------------- +Tue Nov 19 15:57:33 CET 2024 - fdmanana@suse.com + +- btrfs: reinitialize delayed ref list after deleting it from + the list (bsc#1233462 CVE-2024-50273). +- commit 174bbc2 + +------------------------------------------------------------------- +Mon Nov 18 16:26:54 CET 2024 - msuchanek@suse.de + +- kernel-binary: Enable livepatch package only when livepatch is enabled + Otherwise the filelist may be empty failing the build (bsc#1218644). +- commit f730eec + +------------------------------------------------------------------- +Mon Nov 18 16:01:38 CET 2024 - msuchanek@suse.de + +- Update config files (bsc#1218644). + LIVEPATCH_IPA_CLONES=n => LIVEPATCH=n +- commit cabd446 + +------------------------------------------------------------------- +Mon Nov 18 12:57:29 CET 2024 - tiwai@suse.de + +- ASoC: audio-graph-card2: Purge absent supplies for device tree + nodes (stable-fixes). +- ALSA: hda/realtek: fix mute/micmute LEDs for a HP EliteBook + 645 G10 (stable-fixes). +- ALSA: hda/realtek - Fixed Clevo platform headset Mic issue + (stable-fixes). +- ALSA: usb-audio: Fix Yamaha P-125 Quirk Entry (stable-fixes). +- commit 03ba04a + +------------------------------------------------------------------- +Mon Nov 18 12:55:46 CET 2024 - tiwai@suse.de + +- drm/amdgpu: fix check in gmc_v9_0_get_vm_pte() (git-fixes). +- drm/bridge: tc358768: Fix DSI command tx (git-fixes). +- nouveau/dp: handle retries for AUX CH transfers with GSP + (git-fixes). +- nouveau: handle EBUSY and EAGAIN for GSP aux errors (git-fixes). +- nouveau: fw: sync dma after setup is called (git-fixes). +- drm/rockchip: vop: Fix a dereferenced before check warning + (git-fixes). +- Revert "mmc: dw_mmc: Fix IDMAC operation with pages bigger + than 4K" (git-fixes). +- mmc: sunxi-mmc: Fix A100 compatible description (git-fixes). +- ALSA: hda/realtek - update set GPIO3 to default for Thinkpad + with ALC1318 (git-fixes). +- ASoC: fsl_micfil: Add sample rate constraint (stable-fixes). +- ASoC: rt722-sdca: increase clk_stop_timeout to fix clock stop + issue (stable-fixes). +- ASoC: amd: yc: Fix non-functional mic on ASUS E1404FA + (stable-fixes). +- ASoC: amd: yc: Add quirk for ASUS Vivobook S15 M3502RA + (stable-fixes). +- net: usb: qmi_wwan: add Fibocom FG132 0x0112 composition + (stable-fixes). +- net: wwan: fix global oob in wwan_rtnl_policy (git-fixes). +- HID: lenovo: Add support for Thinkpad X1 Tablet Gen 3 keyboard + (stable-fixes). +- HID: multitouch: Add quirk for Logitech Bolt receiver w/ + Casa touchpad (stable-fixes). +- drm/vmwgfx: Limit display layout ioctl array size to + VMWGFX_NUM_DISPLAY_UNITS (stable-fixes). +- drm/amdkfd: Accounting pdd vram_usage for svm (stable-fixes). +- crypto: api - Fix liveliness check in crypto_alg_tested + (stable-fixes). +- HID: multitouch: Add quirk for HONOR MagicBook Art 14 touchpad + (stable-fixes). +- HID: multitouch: Add support for B2402FVA track point + (stable-fixes). +- commit 42778ee + +------------------------------------------------------------------- +Mon Nov 18 10:12:01 CET 2024 - ailiop@suse.com + +- ocfs2: uncache inode which has failed entering the group + (git-fixes). +- commit 4caa305 + +------------------------------------------------------------------- +Mon Nov 18 10:09:43 CET 2024 - ailiop@suse.com + +- ocfs2: fix UBSAN warning in ocfs2_verify_volume() (git-fixes). +- commit fe96ee2 + +------------------------------------------------------------------- +Mon Nov 18 10:08:42 CET 2024 - ailiop@suse.com + +- ocfs2: remove entry once instead of null-ptr-dereference in + ocfs2_xa_remove() (git-fixes). +- commit 7a347a0 + +------------------------------------------------------------------- +Mon Nov 18 10:01:48 CET 2024 - ailiop@suse.com + +- fs: Fix uninitialized value issue in from_kuid and from_kgid + (git-fixes). +- commit 46de67d + +------------------------------------------------------------------- +Mon Nov 18 09:28:56 CET 2024 - nmorey@suse.com + +- Revert "RDMA/core: Fix ENODEV error for iWARP test over vlan" (git-fixes) +- commit 89dc95f + +------------------------------------------------------------------- +Mon Nov 18 09:28:29 CET 2024 - nmorey@suse.com + +- RDMA/siw: Add sendpage_ok() check to disable MSG_SPLICE_PAGES (git-fixes) +- commit 1e78f0f + +------------------------------------------------------------------- +Sat Nov 16 14:28:26 CET 2024 - mfranc@suse.cz + +- Bluetooth: ISO: Fix UAF on iso_sock_timeout (CVE-2024-50124 + bsc#1232926). +- commit 25f5727 + +------------------------------------------------------------------- +Fri Nov 15 21:26:02 CET 2024 - trenn@suse.com + +- tools/power turbostat: Increase the limit for fd opened + (bsc#1233119). +- commit 58c7a4f + +------------------------------------------------------------------- +Fri Nov 15 19:36:25 CET 2024 - dsterba@suse.com + +- posix-clock: Fix missing timespec64 check in pc_clock_settime() (CVE-2024-50195 bsc#1233103) +- commit 5c410cf + +------------------------------------------------------------------- +Fri Nov 15 19:22:13 CET 2024 - dsterba@suse.com + +- bpf: Use raw_spinlock_t in ringbuf (CVE-2024-50138 bsc#1232935) +- commit 949411a + +------------------------------------------------------------------- +Fri Nov 15 19:15:20 CET 2024 - dsterba@suse.com + +- net: systemport: fix potential memory leak in bcm_sysport_xmit() (CVE-2024-50171 bsc#1233057) +- commit 24f9c7b + +------------------------------------------------------------------- +Fri Nov 15 13:23:36 CET 2024 - msuchanek@suse.de + +- crypto: aes-gcm-p10 - Use the correct bit to test for P10 + (bsc#1232704). +- commit 52eb6a0 + +------------------------------------------------------------------- +Fri Nov 15 12:09:15 CET 2024 - ohering@suse.de + +- add bugreference to a hv_netvsc patch (bsc#1232413). +- commit 14b76c0 + +------------------------------------------------------------------- +Fri Nov 15 10:37:05 CET 2024 - mfranc@suse.cz + +- scsi: target: core: Fix null-ptr-deref in target_alloc_device() + (CVE-2024-50153 bsc#1233061). +- commit 76e65bc + +------------------------------------------------------------------- +Fri Nov 15 10:32:59 CET 2024 - mfranc@suse.cz + +- octeon_ep: Add SKB allocation failures handling in + __octep_oq_process_rx() (CVE-2024-50145 bsc#1233044). +- octeon_ep: Implement helper for iterating packets in Rx queue + (CVE-2024-50145 bsc#1233044). +- commit 6b574c1 + +------------------------------------------------------------------- +Fri Nov 15 10:30:49 CET 2024 - sjaeckel@suse.de + +- Fix for kABI fix for Bluetooth: L2CAP: Fix + div-by-zero in l2cap_le_flowctl_init() (CVE-2024-36968 bsc#1226130). + The chosen position of `mtu` in the `struct hci_conn` in the first + iteration of this patch was done based on the wrong version of the header + and therefore on the wrong position. Correct that. + Fixes: d93ac77c0df4b8dfe469c26e60d4fb45fc305341 +- commit 77fc56a + +------------------------------------------------------------------- +Fri Nov 15 10:15:49 CET 2024 - mfranc@suse.cz + +- net: wwan: fix global oob in wwan_rtnl_policy (CVE-2024-50128 + bsc#1232905). +- commit c939671 + +------------------------------------------------------------------- +Fri Nov 15 10:12:23 CET 2024 - mfranc@suse.cz + +- xfrm: fix one more kernel-infoleak in algo dumping + (CVE-2024-50110 bsc#1232885). +- commit 2ae0e01 + +------------------------------------------------------------------- +Fri Nov 15 10:04:59 CET 2024 - mfranc@suse.cz + +- scsi: ufs: core: Set SDEV_OFFLINE when UFS is shut down + (CVE-2024-50098 bsc#1232881). +- commit f344a8e + +------------------------------------------------------------------- +Fri Nov 15 09:56:09 CET 2024 - mfranc@suse.cz + +- Update + patches.suse/thermal-intel-int340x-processor-Fix-warning-during-m.patch + (git-fixes bsc#1232877 CVE-2024-50093). +- commit 6ec2cb2 + +------------------------------------------------------------------- +Fri Nov 15 09:52:21 CET 2024 - tiwai@suse.de + +- Bluetooth: btintel: Direct exception event to bluetooth stack + (git-fixes). +- Bluetooth: hci_core: Fix calling mgmt_device_connected + (git-fixes). +- USB: serial: qcserial: add support for Sierra Wireless EM86xx + (stable-fixes). +- USB: serial: option: add Quectel RG650V (stable-fixes). +- USB: serial: option: add Fibocom FG132 0x0112 composition + (stable-fixes). +- tools/lib/thermal: Fix sampling handler context ptr (git-fixes). +- drm/amdgpu: add missing size check in + amdgpu_debugfs_gprwave_read() (stable-fixes). +- drm/amdgpu: Adjust debugfs eviction and IB access permissions + (stable-fixes). +- drm/amdgpu: Adjust debugfs register access permissions + (stable-fixes). +- drm/amdgpu: prevent NULL pointer dereference if ATIF is not + supported (git-fixes). +- net: phy: ti: add PHY_RST_AFTER_CLK_EN flag (git-fixes). +- net: wwan: t7xx: Fix off-by-one error in + t7xx_dpmaif_rx_buf_alloc() (git-fixes). +- net: phy: dp83822: Fix reset pin definitions (git-fixes). +- commit 48ec995 + +------------------------------------------------------------------- +Fri Nov 15 09:41:23 CET 2024 - tiwai@suse.de + +- Delete patches.suse/wifi-mac80211-fix-RCU-list-iterations.patch + It was reverted on 6.6.x stable +- commit e2ead50 + +------------------------------------------------------------------- +Fri Nov 15 09:37:00 CET 2024 - mfranc@suse.cz + +- net: explicitly clear the sk pointer, when pf->create fails + (CVE-2024-50186 bsc#1233110). +- commit dfaff4b + +------------------------------------------------------------------- +Fri Nov 15 09:00:18 CET 2024 - mfranc@suse.cz + +- secretmem: disable memfd_secret() if arch cannot set direct map + (CVE-2024-50182 bsc#1233129). +- commit 0d23f21 + +------------------------------------------------------------------- +Fri Nov 15 08:24:28 CET 2024 - jslaby@suse.cz + +- Update + patches.suse/ACPI-CPPC-Make-rmw_lock-a-raw_spin_lock.patch + (git-fixes CVE-2024-50249 bsc#1233197). +- Update + patches.suse/ACPI-PRM-Find-EFI_MEMORY_RUNTIME-block-for-PRM-handl.patch + (git-fixes CVE-2024-50141 bsc#1233065). +- Update + patches.suse/ALSA-firewire-lib-Avoid-division-by-zero-in-apply_co.patch + (git-fixes CVE-2024-50205 bsc#1233293). +- Update + patches.suse/ALSA-hda-cs8409-Fix-possible-NULL-dereference.patch + (git-fixes CVE-2024-50160 bsc#1233074). +- Update + patches.suse/ASoC-qcom-Fix-NULL-Dereference-in-asoc_qcom_lpass_cp.patch + (git-fixes CVE-2024-50103 bsc#1232878). +- Update + patches.suse/Bluetooth-bnep-fix-wild-memory-access-in-proto_unreg.patch + (git-fixes CVE-2024-50148 bsc#1233063). +- Update + patches.suse/Bluetooth-hci-fix-null-ptr-deref-in-hci_read_support.patch + (git-fixes CVE-2024-50255 bsc#1233238). +- Update + patches.suse/HID-amd_sfh-Switch-to-device-managed-dmam_alloc_cohe.patch + (git-fixes CVE-2024-50189 bsc#1233105). +- Update + patches.suse/RDMA-bnxt_re-Add-a-check-for-memory-allocation.patch + (git-fixes CVE-2024-50209 bsc#1233114). +- Update + patches.suse/RDMA-bnxt_re-Avoid-CPU-lockups-due-fifo-occupancy-ch.patch + (git-fixes CVE-2024-50157 bsc#1233032). +- Update + patches.suse/RDMA-bnxt_re-Fix-a-bug-while-setting-up-Level-2-PBL-.patch + (git-fixes CVE-2024-50208 bsc#1233117). +- Update + patches.suse/RDMA-bnxt_re-Fix-a-possible-memory-leak.patch + (git-fixes CVE-2024-50172 bsc#1233029). +- Update patches.suse/RDMA-bnxt_re-Fix-out-of-bound-check.patch + (git-fixes CVE-2024-50158 bsc#1233036). +- Update + patches.suse/RDMA-mad-Improve-handling-of-timed-out-WRs-of-mad-ag.patch + (git-fixes CVE-2024-50095 bsc#1232873). +- Update + patches.suse/USB-gadget-dummy-hcd-Fix-task-hung-problem.patch + (git-fixes CVE-2024-50100 bsc#1232876). +- Update + patches.suse/arm64-probes-Fix-uprobes-for-big-endian-kernels.patch + (git-fixes CVE-2024-50194 bsc#1233111). +- Update + patches.suse/arm64-probes-Remove-broken-LDR-literal-uprobe-support.patch + (git-fixes CVE-2024-50099 bsc#1232887). +- Update + patches.suse/ceph-remove-the-incorrect-Fw-reference-check-when-dir.patch + (bsc#1231182 CVE-2024-50179 bsc#1233123). +- Update + patches.suse/clk-imx-Remove-CLK_SET_PARENT_GATE-for-DRAM-mux-for-.patch + (stable-fixes CVE-2024-50181 bsc#1233127). +- Update + patches.suse/drm-amd-Guard-against-bad-data-for-ATIF-ACPI-method.patch + (git-fixes CVE-2024-50117 bsc#1232897). +- Update + patches.suse/drm-amd-display-Disable-PSR-SU-on-Parade-08-01-TCON-.patch + (stable-fixes CVE-2024-50108 bsc#1232884). +- Update + patches.suse/drm-amd-pm-Vangogh-Fix-kernel-memory-out-of-bounds-w.patch + (git-fixes CVE-2024-50221 bsc#1233185). +- Update + patches.suse/drm-msm-Avoid-NULL-dereference-in-msm_disp_state_pri.patch + (git-fixes CVE-2024-50156 bsc#1233073). +- Update patches.suse/drm-radeon-Fix-encoder-possible_clones.patch + (git-fixes CVE-2024-50201 bsc#1233104). +- Update + patches.suse/drm-vboxvideo-Replace-fake-VLA-at-end-of-vbva_mouse_.patch + (stable-fixes CVE-2024-50134 bsc#1232890). +- Update + patches.suse/drm-vc4-Stop-the-active-perfmon-before-being-destroy.patch + (git-fixes CVE-2024-50187 bsc#1233108). +- Update + patches.suse/ext4-fix-slab-use-after-free-in-ext4_split_extent_at.patch + (bsc#1232201 CVE-2024-49884 bsc#1232198). +- Update patches.suse/fbdev-sisfb-Fix-strbuf-array-overflow.patch + (stable-fixes CVE-2024-50180 bsc#1233125). +- Update + patches.suse/firmware-arm_scmi-Fix-the-double-free-in-scmi_debugf.patch + (git-fixes CVE-2024-50159 bsc#1233041). +- Update + patches.suse/iio-adc-ad7124-fix-division-by-zero-in-ad7124_set_ch.patch + (git-fixes CVE-2024-50232 bsc#1233209). +- Update + patches.suse/iio-gts-helper-Fix-memory-leaks-in-iio_gts_build_ava.patch + (git-fixes CVE-2024-50231 bsc#1233208). +- Update + patches.suse/iio-light-veml6030-fix-IIO-device-retrieval-from-emb.patch + (git-fixes CVE-2024-50198 bsc#1233100). +- Update + patches.suse/iommu-vt-d-Fix-incorrect-pci_for_each_dma_alias-for-.patch + (git-fixes CVE-2024-50101 bsc#1232869). +- Update + patches.suse/maple_tree-correct-tree-corruption-on-spanning-store.patch + (git-fixes CVE-2024-50200 bsc#1233088). +- Update + patches.suse/media-qcom-camss-Remove-use_count-guard-in-stop_stre.patch + (git-fixes CVE-2024-50175 bsc#1233092). +- Update + patches.suse/net-mlx5-Fix-command-bitmask-initialization.patch + (git-fixes CVE-2024-50147 bsc#1233067). +- Update + patches.suse/net-mlx5-Unregister-notifier-on-eswitch-init-failure.patch + (git-fixes CVE-2024-50136 bsc#1232914). +- Update + patches.suse/net-mlx5e-Don-t-call-cleanup-on-profile-rollback-fai.patch + (git-fixes CVE-2024-50146 bsc#1233056). +- Update + patches.suse/net-phy-dp83869-fix-memory-corruption-when-enabling-.patch + (git-fixes CVE-2024-50188 bsc#1233107). +- Update + patches.suse/netdevsim-use-cond_resched-in-nsim_dev_trap_report_w.patch + (git-fixes CVE-2024-50155 bsc#1233035). +- Update + patches.suse/nfsd-cancel-nfsd_shrinker_work-using-sync-mode-in-nf.patch + (git-fixes CVE-2024-50121 bsc#1232925). +- Update + patches.suse/nilfs2-fix-kernel-bug-due-to-missing-clearing-of-buffer-delay-flag.patch + (git-fixes CVE-2024-50116 bsc#1232892). +- Update + patches.suse/nilfs2-fix-potential-deadlock-with-newly-created-symlinks.patch + (git-fixes CVE-2024-50229 bsc#1233205). +- Update + patches.suse/nouveau-dmem-Fix-vulnerability-in-migrate_to_ram-upo.patch + (git-fixes CVE-2024-50096 bsc#1232870). +- Update + patches.suse/nvme-pci-fix-race-condition-between-reset-and-nvme_d.patch + (git-fixes CVE-2024-50135 bsc#1232888). +- Update + patches.suse/nvmet-auth-assign-dh_key-to-NULL-after-kfree_sensiti.patch + (git-fixes CVE-2024-50215 bsc#1233189). +- Update + patches.suse/ocfs2-pass-u64-to-ocfs2_truncate_inline-maybe-overflow.patch + (git-fixes CVE-2024-50218 bsc#1233191). +- Update + patches.suse/phy-qcom-qmp-usb-fix-NULL-deref-on-runtime-suspend.patch + (git-fixes CVE-2024-50240 bsc#1233217). +- Update + patches.suse/pinctrl-ocelot-fix-system-hang-on-level-based-interr.patch + (stable-fixes CVE-2024-50196 bsc#1233113). +- Update + patches.suse/remoteproc-k3-r5-Fix-error-handling-when-power-up-fa.patch + (git-fixes CVE-2024-50176 bsc#1233091). +- Update + patches.suse/scsi-lpfc-Ensure-DA_ID-handling-completion-before-de.patch + (bsc#1232757 CVE-2024-50183 bsc#1233130). +- Update + patches.suse/spi-spi-fsl-dspi-Fix-crash-when-not-using-GPIO-chip-.patch + (git-fixes CVE-2024-50224 bsc#1233188). +- Update + patches.suse/staging-iio-frequency-ad9832-fix-division-by-zero-in.patch + (git-fixes CVE-2024-50233 bsc#1233210). +- Update + patches.suse/thermal-intel-int340x-processor-Fix-warning-during-m.patch + (git-fixes CVE-2024-50093 bsc#1232877). +- Update + patches.suse/tracing-Consider-the-NULL-character-when-validating-the-event-length.patch + (git-fixes CVE-2024-50131 bsc#1232896). +- Update + patches.suse/tracing-timerlat-Drop-interface_lock-in-stop_kthread.patch + (git-fixes CVE-2024-49976 bsc#1232103). +- Update + patches.suse/tracing-timerlat-Only-clear-timer-if-a-kthread-exists.patch + (git-fixes CVE-2024-46845 bsc#1231076). +- Update + patches.suse/unicode-Don-t-special-case-ignorable-code-points.patch + (stable-fixes CVE-2024-50089 bsc#1232860). +- Update + patches.suse/uprobe-avoid-out-of-bounds-memory-access-of-fetching-args.patch + (git-fixes CVE-2024-50067 bsc#1232416). +- Update + patches.suse/uprobes-fix-kernel-info-leak-via-uprobes-vma.patch + (bsc#1231114 CVE-2024-46828 CVE-2024-49975 bsc#1232104). +- Update + patches.suse/usb-typec-altmode-should-keep-reference-to-parent.patch + (git-fixes CVE-2024-50150 bsc#1233051). +- Update + patches.suse/wifi-ath10k-Fix-memory-leak-in-management-tx.patch + (git-fixes CVE-2024-50236 bsc#1233212). +- Update + patches.suse/wifi-cfg80211-clear-wdev-cqm_config-pointer-on-free.patch + (git-fixes CVE-2024-50235 bsc#1233176). +- Update + patches.suse/wifi-iwlegacy-Clear-stale-interrupts-before-resuming.patch + (stable-fixes CVE-2024-50234 bsc#1233211). +- Update + patches.suse/wifi-mac80211-do-not-pass-a-stopped-vif-to-the-drive.patch + (git-fixes CVE-2024-50237 bsc#1233216). +- Update + patches.suse/x86-fix-user-address-masking-non-canonical-speculation-iss.patch + (git-fixes CVE-2024-50102 bsc#1232880). +- Update + patches.suse/xfs-fix-finding-a-last-resort-AG-in-xfs_filestream_pick_ag.patch + (git-fixes CVE-2024-50216 bsc#1233179). +- commit 7d67ea3 + +------------------------------------------------------------------- +Thu Nov 14 21:41:24 CET 2024 - dsterba@suse.com + +- btrfs: fix error propagation of split bios (CVE-2024-50225 bsc#1233193) +- commit ec9c552 + +------------------------------------------------------------------- +Thu Nov 14 21:40:24 CET 2024 - dsterba@suse.com + +- btrfs: merge btrfs_orig_bbio_end_io() into btrfs_bio_end_io() (bsc#1233193) +- commit b9564da + +------------------------------------------------------------------- +Thu Nov 14 21:32:27 CET 2024 - dsterba@suse.com + +- Update references in patches.suse/ntfs3-Add-bounds-checking-to-mi_enum_attr.patch (CVE-2024-50248 bsc#1233219 bsc#1233207) +- commit 56e1d55 + +------------------------------------------------------------------- +Thu Nov 14 21:29:07 CET 2024 - dsterba@suse.com + +- fs/ntfs3: Sequential field availability check in mi_enum_attr() (bsc#1233207) +- commit 95663e2 + +------------------------------------------------------------------- +Thu Nov 14 21:23:01 CET 2024 - dsterba@suse.com + +- fs/ntfs3: Add rough attr alloc_size check (CVE-2024-50246 bsc#1233207) +- commit 378df6a + +------------------------------------------------------------------- +Thu Nov 14 21:21:37 CET 2024 - dsterba@suse.com + +- ntfs3: Add bounds checking to mi_enum_attr() (bsc#1233207) +- commit 418f82a + +------------------------------------------------------------------- +Thu Nov 14 21:20:35 CET 2024 - dsterba@suse.com + +- fs/ntfs3: Fixed overflow check in mi_enum_attr() (bsc#1233207) +- commit 6744037 + +------------------------------------------------------------------- +Thu Nov 14 21:19:03 CET 2024 - dsterba@suse.com + +- fs/ntfs3: Add more attributes checks in mi_enum_attr() (bsc#1233207) +- commit 766ca6e + +------------------------------------------------------------------- +Thu Nov 14 19:53:46 CET 2024 - dsterba@suse.com + +- fs/ntfs3: Fix possible deadlock in mi_read (CVE-2024-50245 bsc#1233203) +- commit 5f9c2da + +------------------------------------------------------------------- +Thu Nov 14 16:57:13 CET 2024 - sjaeckel@suse.de + +- Rename to + patches.kabi/kABI-fix-for-Bluetooth-L2CAP-Fix-div-by-zero-in-l2ca.patch. + Fixes: d93ac77c0df4b8dfe469c26e60d4fb45fc305341 +- commit 1f6a42b + +------------------------------------------------------------------- +Thu Nov 14 16:43:15 CET 2024 - jgross@suse.com + +- virtio_pmem: Check device status before requesting flush + (CVE-2024-50184 bsc#1233135). +- commit 4e28ae6 + +------------------------------------------------------------------- +Thu Nov 14 16:25:22 CET 2024 - jgross@suse.com + +- KVM: SEV-ES: Fix svm_get_msr()/svm_set_msr() for KVM_SEV_ES_INIT + guests (bsc#1232207). +- commit 4b9eff5 + +------------------------------------------------------------------- +Thu Nov 14 13:49:22 CET 2024 - jgross@suse.com + +- KVM: SEV-ES: Prevent MSR access post VMSA encryption + (bsc#1232207). +- commit 61f28ae + +------------------------------------------------------------------- +Thu Nov 14 13:34:42 CET 2024 - ptesarik@suse.com + +- u64_stats: fix u64_stats_init() for lockdep when used repeatedly + in one file (git-fixes). +- commit 017d59a + +------------------------------------------------------------------- +Thu Nov 14 12:11:06 CET 2024 - sjaeckel@suse.de + +- tcp/dccp: Don't use timer_pending() in reqsk_queue_unlink() + (CVE-2024-50154 bsc#1233070). +- commit 43fc2d5 + +------------------------------------------------------------------- +Thu Nov 14 10:16:35 CET 2024 - shung-hsi.yu@suse.com + +- Refresh patches.kabi/bpf-verifier-kABI-workarounds.patch (bsc#1233350) + Correctly workaround kABI breakage that was introduced with fixes + backported for bsc#1225903. +- commit 52684a5 + +------------------------------------------------------------------- +Thu Nov 14 08:19:25 CET 2024 - tiwai@suse.de + +- ASoC: SOF: ipc4-topology: Only handle dai_config with HW_PARAMS + for ChainDMA (bsc#1233305). +- commit 1b06409 + +------------------------------------------------------------------- +Wed Nov 13 20:54:32 CET 2024 - krisman@suse.de + +- io_uring/rw: fix missing NOWAIT check for O_DIRECT start write + (git-fixes). +- io_uring/sqpoll: close race on waiting for sqring entries + (git-fixes). +- commit 83eaece + +------------------------------------------------------------------- +Wed Nov 13 12:35:24 CET 2024 - mgorman@suse.de + +- mm: shmem: fix data-race in shmem_getattr() (CVE-2024-50228, + bsc#1233204, git fixes (mm/shmem)). +- commit 89c94b7 + +------------------------------------------------------------------- +Wed Nov 13 12:09:35 CET 2024 - jslaby@suse.cz + +- irqchip/gic-v4: Correctly deal with set_affinity on + lazily-mapped VPEs (CVE-2024-50192 bsc#1233106). +- commit 4258dbe + +------------------------------------------------------------------- +Wed Nov 13 12:06:59 CET 2024 - jslaby@suse.cz + +- irqchip/gic-v4: Don't allow a VMOVP on a dying VPE + (CVE-2024-50192 bsc#1233106). +- kABI: Don't allow a VMOVP on a dying VPE (kabi CVE-2024-50192 + bsc#1233106). +- irqchip/gic-v3-its: Avoid explicit cpumask allocation on stack + (git-fixes). +- commit 9bd7834 + +------------------------------------------------------------------- +Wed Nov 13 11:40:39 CET 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: add stack access precision test (bsc#1232823 + CVE-2023-52920). +- bpf: support non-r10 register spill/fill to/from stack in + precision tracking (bsc#1232823 CVE-2023-52920). +- Refresh patches.suse/bpf-Fix-accesses-to-uninit-stack-slots.patch +- Refresh patches.kabi/bpf-verifier-kABI-workarounds.patch +- commit 2dc84ae + +------------------------------------------------------------------- +Wed Nov 13 11:22:43 CET 2024 - sjaeckel@suse.de + +- kABI fix for - Bluetooth: L2CAP: Fix + div-by-zero in l2cap_le_flowctl_init() + (CVE-2024-36968 bsc#1226130). - Refresh + patches.suse/Bluetooth-Ignore-too-large-handle-values-in-BIG.patch. +- Refresh + patches.suse/Bluetooth-L2CAP-Fix-deadlock.patch. - Refresh + patches.suse/Bluetooth-btnxpuart-Enable-Power-Save-feature-on-sta.patch. +- Refresh + patches.suse/bluetooth-hci-disallow-setting-handle-bigger-than-HC.patch. +- Refresh + patches.suse/bluetooth-l2cap-sync-sock-recv-cb-and-release.patch. +- commit d93ac77 + +------------------------------------------------------------------- +Wed Nov 13 10:58:33 CET 2024 - tbogendoerfer@suse.de + +- macsec: Fix use-after-free while sending the offloading packet + (CVE-2024-50261 bsc#1233253). +- commit 493a21e + +------------------------------------------------------------------- +Wed Nov 13 10:11:01 CET 2024 - tiwai@suse.de + +- kABI workaround for ASoC SOF (bsc#1233305). +- commit d8b041e + +------------------------------------------------------------------- +Wed Nov 13 09:25:20 CET 2024 - tiwai@suse.de + +- ASoC: SOF: ipc4-topology: Add definition for generic switch/enum + control (bsc#1233305). +- Refresh + patches.suse/ASoC-SOF-ipc4-topology-Correct-data-structures-for-t-e238b68.patch. +- commit 6d4ee28 + +------------------------------------------------------------------- +Wed Nov 13 09:22:31 CET 2024 - tiwai@suse.de + +- ASoC: SOF: topology: Parse DAI type token for dspless mode + (bsc#1233305). +- ASoC: SOF: topology: dynamically allocate and store DAI + widget->private (bsc#1233305). +- ASoC: SOF: ipc4-topology: change chain_dma handling in + dai_config (bsc#1233305). +- ASoC: SOF: ipc4-topology: set config_length based on + device_count (bsc#1233305). +- ASoC: SOF: Rename amd_bt sof_dai_type (bsc#1233305). +- ASoC: SOF: Add i2s bt dai configuration support for AMD + platforms (bsc#1233305). +- ASoC: SOF: Refactor sof_i2s_tokens reading to update acpbt dai + (bsc#1233305). +- ASoC: SOF: IPC4: synchronize fw_config_params with fw + definitions (bsc#1233305). +- ASoC: SOF: Wire up buffer flags (bsc#1233305). +- ASoC: SOF: add alignment for topology header file struct + definition (bsc#1233305). +- ASoC: SOF: align topology header file with sof topology header + (bsc#1233305). +- ASoC: SOF: ipc4-topology: Add module ID print during module + set up (bsc#1233305). +- ASoC: SOF: ipc4: Add data struct for module notification + message from firmware (bsc#1233305). +- ASoC: SOF: ipc4-topology: Helper to find an swidget by + module/instance id (bsc#1233305). +- ASoC: SOF: Add support for configuring PDM interface from + topology (bsc#1233305). +- ASoC: SOF: IPC4: get pipeline priority from topology + (bsc#1233305). +- ASoC: SOF: ipc4-mtrace: move debug slot related definitions + to header.h (bsc#1233305). +- ASoC: SOF: ipc4-control: Add support for ALSA enum control + (bsc#1233305). +- ASoC: SOF: ipc4-control: Add support for ALSA switch control + (bsc#1233305). +- ASoC: SOF: ipc4-topology: export + sof_ipc4_copier_is_single_format (bsc#1233305). +- ASoC: SOF: ipc4: Add new message type: + SOF_IPC4_GLB_LOAD_LIBRARY_PREPARE (bsc#1233305). +- ASoC: SOF: ipc4-topology: Add deep buffer size to debug prints + (bsc#1233305). +- ASoC: SOF: Deprecate invalid enums in IPC3 (bsc#1233305). +- commit ccbfc43 + +------------------------------------------------------------------- +Wed Nov 13 08:39:39 CET 2024 - tiwai@suse.de + +- ima: fix buffer overrun in ima_eventdigest_init_common + (git-fixes). +- commit 200c852 + +------------------------------------------------------------------- +Tue Nov 12 19:04:54 CET 2024 - vkarasulli@suse.de + +- KVM: arm64: Fix shift-out-of-bounds bug (CVE-2024-50139 + bsc#1233062). +- commit dc4add6 + +------------------------------------------------------------------- +Tue Nov 12 18:22:43 CET 2024 - vkarasulli@suse.de + +- KVM: nSVM: Ignore nCR3[4:0] when loading PDPTEs from memory + (CVE-2024-50115 bsc#1232919). +- commit b8f7c4d + +------------------------------------------------------------------- +Tue Nov 12 17:48:16 CET 2024 - sjaeckel@suse.de + +- Bluetooth: L2CAP: Fix div-by-zero in l2cap_le_flowctl_init() + (CVE-2024-36968 bsc#1226130). +- Refresh + patches.suse/Bluetooth-Ignore-too-large-handle-values-in-BIG.patch. +- Refresh patches.suse/Bluetooth-L2CAP-Fix-deadlock.patch. +- Refresh + patches.suse/Bluetooth-btnxpuart-Enable-Power-Save-feature-on-sta.patch. +- Refresh + patches.suse/bluetooth-hci-disallow-setting-handle-bigger-than-HC.patch. +- Refresh + patches.suse/bluetooth-l2cap-sync-sock-recv-cb-and-release.patch. +- commit c95a285 + +------------------------------------------------------------------- +Tue Nov 12 17:47:56 CET 2024 - sjaeckel@suse.de + +- net: sched: fix use-after-free in taprio_change() + (CVE-2024-50127 bsc#1232907). +- commit 8d80c7f + +------------------------------------------------------------------- +Tue Nov 12 17:08:29 CET 2024 - rgoldwyn@suse.com + +- fsdax: dax_unshare_iter needs to copy entire blocks + (bsc#1233226, CVE-2024-50250). +- fsdax: remove zeroing code from dax_unshare_iter (bsc#1233226, + CVE-2024-50250). +- commit 94457ab + +------------------------------------------------------------------- +Tue Nov 12 12:43:07 CET 2024 - ailiop@suse.com + +- nilfs2: fix kernel bug due to missing clearing of checked flag + (bsc#1233206 CVE-2024-50230). +- commit ba9ac5c + +------------------------------------------------------------------- +Tue Nov 12 10:10:29 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check null pointers before used (bsc#1232371 CVE-2024-49921) +- commit 3bf6629 + +------------------------------------------------------------------- +Mon Nov 11 22:33:32 CET 2024 - tbogendoerfer@suse.de + +- net/ncsi: Disable the ncsi work before freeing the associated + structure (CVE-2024-49945 bsc#1232165). +- commit 75d875c + +------------------------------------------------------------------- +Mon Nov 11 22:09:30 CET 2024 - tbogendoerfer@suse.de + +- e1000e: Remove Meteor Lake SMBUS workarounds (git-fixes). +- i40e: fix race condition by adding filter's intermediate sync + state (git-fixes). +- commit f4e661d + +------------------------------------------------------------------- +Mon Nov 11 12:19:25 CET 2024 - jack@suse.cz + +- Revert "mm/writeback: fix possible divide-by-zero in + wb_dirty_limits(), again" (CVE-2024-42102 bsc#1233132). +- commit 696592c + +------------------------------------------------------------------- +Mon Nov 11 08:59:20 CET 2024 - tiwai@suse.de + +- i2c: designware: do not hold SCL low when I2C_DYNAMIC_TAR_UPDATE + is not set (git-fixes). +- USB: serial: io_edgeport: fix use after free in debug printk + (git-fixes). +- usb: typec: fix potential out of bounds in + ucsi_ccg_update_set_new_cam_cmd() (git-fixes). +- usb: musb: sunxi: Fix accessing an released usb phy (git-fixes). +- commit d16f490 + +------------------------------------------------------------------- +Sat Nov 9 15:13:51 CET 2024 - tiwai@suse.de + +- ASoC: stm: Prevent potential division by zero in + stm32_sai_get_clk_div() (stable-fixes). +- ASoC: stm: Prevent potential division by zero in + stm32_sai_mclk_round_rate() (stable-fixes). +- ASoC: amd: yc: Support dmic on another model of Lenovo Thinkpad + E14 Gen 6 (stable-fixes). +- ASoC: amd: yc: fix internal mic on Xiaomi Book Pro 14 2022 + (stable-fixes). +- ASoC: tas2781: Add new driver version for tas2563 & tas2781 + qfn chip (stable-fixes). +- commit 1f9992e + +------------------------------------------------------------------- +Sat Nov 9 15:11:22 CET 2024 - tiwai@suse.de + +- drm/amdgpu: Fix DPX valid mode check on GC 9.4.3 (git-fixes). +- ASoC: SOF: sof-client-probes-ipc4: Set param_size extension bits + (git-fixes). +- ASoC: stm32: spdifrx: fix dma channel release in + stm32_spdifrx_remove (git-fixes). +- ALSA: firewire-lib: fix return value on fail in + amdtp_tscm_init() (git-fixes). +- media: pulse8-cec: fix data timestamp at pulse8_setup() + (git-fixes). +- media: stb0899_algo: initialize cfr before using it (git-fixes). +- media: adv7604: prevent underflow condition when reporting + colorspace (git-fixes). +- media: cx24116: prevent overflows on SNR calculus (git-fixes). +- media: ar0521: don't overflow when checking PLL values + (git-fixes). +- media: s5p-jpeg: prevent buffer overflows (git-fixes). +- media: dvb_frontend: don't play tricks with underflow values + (git-fixes). +- media: dvbdev: prevent the risk of out of memory access + (git-fixes). +- media: v4l2-tpg: prevent the risk of a division by zero + (git-fixes). +- media: v4l2-ctrls-api: fix error handling for v4l2_g_ctrl() + (git-fixes). +- thunderbolt: Honor TMU requirements in the domain when setting + TMU mode (stable-fixes). +- wifi: iwlegacy: Clear stale interrupts before resuming device + (stable-fixes). +- USB: gadget: dummy-hcd: Fix "task hung" problem (git-fixes). +- usb: gadget: dummy_hcd: execute hrtimer callback in softirq + context (git-fixes). +- usb: gadget: dummy_hcd: Set transfer interval to 1 microframe + (stable-fixes). +- usb: gadget: dummy_hcd: Switch to hrtimer transfer scheduler + (stable-fixes). +- commit c5281d0 + +------------------------------------------------------------------- +Sat Nov 9 14:11:38 CET 2024 - ailiop@suse.com + +- nfs: avoid i_lock contention in nfs_clear_invalid_mapping + (git-fixes). +- commit e6016a1 + +------------------------------------------------------------------- +Sat Nov 9 14:10:27 CET 2024 - ailiop@suse.com + +- nfs: Fix KMSAN warning in decode_getfattr_attrs() (git-fixes). +- commit 9358249 + +------------------------------------------------------------------- +Sat Nov 9 14:03:29 CET 2024 - ailiop@suse.com + +- NFS: remove revoked delegation from server's delegation list + (git-fixes). +- commit 6feb8eb + +------------------------------------------------------------------- +Sat Nov 9 14:01:26 CET 2024 - ailiop@suse.com + +- SUNRPC: Remove BUG_ON call sites (git-fixes). +- commit 5969339 + +------------------------------------------------------------------- +Sat Nov 9 14:00:34 CET 2024 - ailiop@suse.com + +- nilfs2: fix potential deadlock with newly created symlinks + (git-fixes). +- commit 002996c + +------------------------------------------------------------------- +Fri Nov 8 18:47:54 CET 2024 - ggherdovich@suse.cz + +- cpufreq: amd-pstate: add check for cpufreq_cpu_get's return + value (CVE-2024-50009 bsc#1232318). +- commit 15f7e86 + +------------------------------------------------------------------- +Fri Nov 8 12:41:05 CET 2024 - jack@suse.cz + +- ext4: fix error message when rejecting the default hash + (bsc#1232264 CVE-2024-49968). +- commit 5d137c7 + +------------------------------------------------------------------- +Fri Nov 8 11:48:14 CET 2024 - ggherdovich@suse.cz + +- sched/deadline: Fix task_struct reference leak (CVE-2024-41023 + bsc#1228430). +- commit 3a83981 + +------------------------------------------------------------------- +Fri Nov 8 10:45:27 CET 2024 - tbogendoerfer@suse.de + +- be2net: fix potential memory leak in be_xmit() (CVE-2024-50167 + bsc#1233049). +- commit 376f8c7 + +------------------------------------------------------------------- +Fri Nov 8 09:33:54 CET 2024 - tiwai@suse.de + +- can: mcp251xfd: mcp251xfd_get_tef_len(): fix length calculation + (git-fixes). +- can: mcp251xfd: mcp251xfd_ring_alloc(): fix coalescing + configuration when switching CAN modes (git-fixes). +- can: c_can: fix {rx,tx}_errors statistics (git-fixes). +- pwm: imx-tpm: Use correct MODULO value for EPWM mode + (git-fixes). +- commit c5fa961 + +------------------------------------------------------------------- +Thu Nov 7 22:19:18 CET 2024 - dsterba@suse.com + +- blk-rq-qos: fix crash on rq_qos_wait vs. rq_qos_wake_function race (CVE-2024-50082 bsc#1232500) +- commit 6a67bac + +------------------------------------------------------------------- +Thu Nov 7 22:06:48 CET 2024 - dsterba@suse.com + +- btrfs: fix uninitialized pointer free on read_alloc_one_name() error (CVE-2024-50087 bsc#1232499) +- commit a3c097a + +------------------------------------------------------------------- +Thu Nov 7 22:05:16 CET 2024 - dsterba@suse.com + +- btrfs: fix uninitialized pointer free in add_inode_ref() (CVE-2024-50088 bsc#1232498) +- commit 75b1127 + +------------------------------------------------------------------- +Thu Nov 7 22:01:46 CET 2024 - dsterba@suse.com + +- net: microchip: vcap api: Fix memory leaks in vcap_api_encode_rule_test() (CVE-2024-50084 bsc#1232494) +- commit e53e21a + +------------------------------------------------------------------- +Thu Nov 7 21:41:14 CET 2024 - dsterba@suse.com + +- drm/amd/display: fix double free issue during amdgpu module unload (CVE-2024-49989 bsc#1232483) +- commit 6511376 + +------------------------------------------------------------------- +Thu Nov 7 21:10:20 CET 2024 - dsterba@suse.com + +- drm/amd/display: update DML2 policy EnhancedPrefetchScheduleAccelerationFinal DCN35 (CVE-2024-50004 bsc#1232396) +- commit d5739f8 + +------------------------------------------------------------------- +Thu Nov 7 20:56:46 CET 2024 - dsterba@suse.com + +- drm/amd/display: Fix system hang while resume with TBT monitor (CVE-2024-50003 bsc#1232385) +- commit 24ceb7a + +------------------------------------------------------------------- +Thu Nov 7 17:02:21 CET 2024 - tiwai@suse.de + +- thermal: intel: int340x: processor: Fix warning during module + unload (git-fixes). +- commit 2c3d870 + +------------------------------------------------------------------- +Thu Nov 7 15:40:50 CET 2024 - sjaeckel@suse.de + +- mptcp: fix double-free on socket dismantle (CVE-2024-26782 + bsc#1222590). +- mptcp: deal with large GSO size (CVE-2023-52778 bsc#1224948). +- commit 86ee052 + +------------------------------------------------------------------- +Thu Nov 7 14:25:16 CET 2024 - mgorman@suse.de + +- Merge branch 'SUSE-2024' (4ab5f0e9752a) into 'SUSE-2024-RT' +- No -rt specific changes this merge. +- commit 64ea9ce + +------------------------------------------------------------------- +Thu Nov 7 13:33:56 CET 2024 - jack@suse.cz + +- ext4: ext4_search_dir should return a proper error (bsc#1231920 + CVE-2024-47701). +- commit 7c02130 + +------------------------------------------------------------------- +Thu Nov 7 13:33:25 CET 2024 - jack@suse.cz + +- ext4: explicitly exit when ext4_find_inline_entry returns an + error (bsc#1231920 CVE-2024-47701). +- commit e600961 + +------------------------------------------------------------------- +Thu Nov 7 13:32:00 CET 2024 - jack@suse.cz + +- ext4: return error on ext4_find_inline_entry (bsc#1231920 + CVE-2024-47701). +- commit 39b6acc + +------------------------------------------------------------------- +Thu Nov 7 13:14:47 CET 2024 - tbogendoerfer@suse.de + +- igb: Disable threaded IRQ for igb_msix_other (git-fixes). +- commit b8afad1 + +------------------------------------------------------------------- +Thu Nov 7 13:04:09 CET 2024 - jack@suse.cz + +- fs/inode: Prevent dump_mapping() accessing invalid + dentry.d_name.name (bsc#1232387 CVE-2024-49934). +- commit cf2a806 + +------------------------------------------------------------------- +Thu Nov 7 13:03:53 CET 2024 - jack@suse.cz + +- ext4: filesystems without casefold feature cannot be mounted + with siphash (bsc#1232264 CVE-2024-49968). +- commit 1907014 + +------------------------------------------------------------------- +Thu Nov 7 13:03:22 CET 2024 - jack@suse.cz + +- ext4: drop ppath from ext4_ext_replay_update_ex() to avoid + double-free (bsc#1232096 CVE-2024-49983). +- commit 4a6ac53 + +------------------------------------------------------------------- +Thu Nov 7 13:03:07 CET 2024 - jack@suse.cz + +- vfs: fix race between evice_inodes() and find_inode()&iput() + (bsc#1231930 CVE-2024-47679). +- commit dcf9f6e + +------------------------------------------------------------------- +Thu Nov 7 13:02:52 CET 2024 - jack@suse.cz + +- ext4: avoid OOB when system.data xattr changes underneath the + filesystem (bsc#1231920 CVE-2024-47701). +- commit f292cb3 + +------------------------------------------------------------------- +Thu Nov 7 09:47:26 CET 2024 - tiwai@suse.de + +- security/keys: fix slab-out-of-bounds in key_task_permission + (git-fixes). +- platform/x86/amd/pmc: Detect when STB is not available + (git-fixes). +- HID: core: zero-initialize the report buffer (git-fixes). +- commit 277fa5f + +------------------------------------------------------------------- +Thu Nov 7 08:52:10 CET 2024 - tbogendoerfer@suse.de + +- mlxbf_gige: disable RX filters until RX path initialized + (git-fixes). +- commit f2b07e9 + +------------------------------------------------------------------- +Thu Nov 7 06:25:00 CET 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add tests for sdiv/smod overflow cases + (CVE-2024-49888 bsc#1232208). +- commit b193d4f + +------------------------------------------------------------------- +Thu Nov 7 05:51:18 CET 2024 - ddiss@suse.de + +- initramfs: avoid filename buffer overrun (bsc#1232436). +- commit 4918398 + +------------------------------------------------------------------- +Thu Nov 7 05:46:24 CET 2024 - shung-hsi.yu@suse.com + +- netfilter: bpf: must hold reference on net namespace + (bsc#1232894 CVE-2024-50130). +- commit 7d292ad + +------------------------------------------------------------------- +Thu Nov 7 04:32:52 CET 2024 - shung-hsi.yu@suse.com + +- bpftool: Fix undefined behavior in qsort(NULL, 0, + ...) (bsc#1232258 CVE-2024-49987). +- commit 80f8e64 + +------------------------------------------------------------------- +Wed Nov 6 17:59:46 CET 2024 - mhocko@suse.com + +- Update + patches.suse/mm-mmap-no-need-to-call-khugepaged_enter_vma-for-sta.patch + (jsc#PED-11442). +- commit d087a3b + +------------------------------------------------------------------- +Wed Nov 6 14:42:55 CET 2024 - jlee@suse.com + +- fbdev: efifb: Register sysfs groups through driver core + (bsc#1232224 CVE-2024-49925). +- commit 4fd0365 + +------------------------------------------------------------------- +Wed Nov 6 13:23:45 CET 2024 - msuchanek@suse.de + +- aes-gcm-p10: Use the correct bit to test for P10 (bsc#1232704). +- commit f0dea0e + +------------------------------------------------------------------- +Tue Nov 5 22:26:42 CET 2024 - krisman@suse.de + +- ublk: don't allow user copy for unprivileged device + (CVE-2024-50080 bsc#1232502). +- commit 267c92f + +------------------------------------------------------------------- +Tue Nov 5 22:24:27 CET 2024 - krisman@suse.de + +- blk-mq: setup queue ->tag_set before initializing hctx + (CVE-2024-50081 bsc#1232501). +- commit 87d4a82 + +------------------------------------------------------------------- +Tue Nov 5 17:41:14 CET 2024 - oneukum@suse.com + +- media: core: v4l2-ioctl: check if ioctl is known to avoid NULL + name (git-fixes). +- commit c862b93 + +------------------------------------------------------------------- +Tue Nov 5 15:39:08 CET 2024 - oneukum@suse.com + +- media: videobuf2: fix typo: vb2_dbuf -> vb2_qbuf (git-fixes). +- commit 92209c4 + +------------------------------------------------------------------- +Tue Nov 5 14:47:17 CET 2024 - oneukum@suse.com + +- media: bttv: use audio defaults for winfast2000 (git-fixes). +- commit 6e1da70 + +------------------------------------------------------------------- +Tue Nov 5 14:39:14 CET 2024 - mfranc@suse.cz + +- scsi: elx: libefc: Fix potential use after free in + efc_nport_vport_del() (CVE-2024-49852 bsc#1232819). +- commit 51395e6 + +------------------------------------------------------------------- +Tue Nov 5 13:57:57 CET 2024 - jwiesner@suse.de + +- Update config files. + c37e85c135ce ("clocksource: Loosen clocksource watchdog constraints") + introduced a new default for the time skew measured by the clocksource + watchdog. The value was raised from 100 to 125 microseconds. Reflect this + change in the kernel config. This is an x86_64 option only. +- commit 14c1b2d + +------------------------------------------------------------------- +Tue Nov 5 13:09:52 CET 2024 - tiwai@suse.de + +- ALSA: usb-audio: Add quirk for HP 320 FHD Webcam (bsc#1232768). +- commit 7c39137 + +------------------------------------------------------------------- +Tue Nov 5 09:35:40 CET 2024 - shung-hsi.yu@suse.com + +- kABI: bpf: struct bpf_func_state kABI workaround (CVE-2024-47703 + bsc#1231946). +- commit fd45833 + +------------------------------------------------------------------- +Tue Nov 5 08:24:15 CET 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Workaround strict bpf_lsm return value check + (CVE-2024-47703 bsc#1231946). +- selftests/bpf: Add verifier tests for bpf lsm (CVE-2024-47703 + bsc#1231946). +- selftests/bpf: Add return value checks for failed tests + (CVE-2024-47703 bsc#1231946). +- bpf: Fix compare error in function retval_range_within + (CVE-2024-47703 bsc#1231946). +- bpf, lsm: Add check for BPF LSM return value (CVE-2024-47703 + bsc#1231946). +- Refresh patches.suse/bpf-Fail-verification-for-sign-extension-of-packet-d.patch +- Refresh patches.kabi/bpf-struct-bpf_insn_access_aux-workaround.patch +- selftests/bpf: fix timer/test_bad_ret subtest on + test_progs-cpuv4 flavor (CVE-2024-47703 bsc#1231946). +- commit a0c7d4f + +------------------------------------------------------------------- +Tue Nov 5 08:16:32 CET 2024 - tiwai@suse.de + +- rpmsg: glink: Handle rejected intent request better (git-fixes). +- firmware: arm_scmi: Fix slab-use-after-free in + scmi_bus_notifier() (git-fixes). +- commit 01fe6bf + +------------------------------------------------------------------- +Mon Nov 4 18:03:58 CET 2024 - dsterba@suse.com + +- Update references for patches.suse/tracing-timerlat-Fix-a-race-during-cpuhp-processing.patch (CVE-2024-49866 bsc#1232259 git-fixes) +- commit d9311d0 + +------------------------------------------------------------------- +Mon Nov 4 16:27:12 CET 2024 - tiwai@suse.de + +- Move out-of-tree patch into a proper section +- commit c581359 + +------------------------------------------------------------------- +Mon Nov 4 16:26:16 CET 2024 - tiwai@suse.de + +- Revert "ALSA: hda/conexant: Mute speakers at suspend / shutdown" + (bsc#1228269). +- commit 13ce240 + +------------------------------------------------------------------- +Mon Nov 4 16:18:22 CET 2024 - dwagner@suse.de + +- scsi: lpfc: Update lpfc version to 14.4.0.5 (bsc#1232757). +- scsi: lpfc: Support loopback tests with VMID enabled + (bsc#1232757). +- scsi: lpfc: Revise TRACE_EVENT log flag severities from KERN_ERR + to KERN_WARNING (bsc#1232757). +- scsi: lpfc: Ensure DA_ID handling completion before deleting + an NPIV instance (bsc#1232757). +- scsi: lpfc: Fix kref imbalance on fabric ndlps from dev_loss_tmo + handler (bsc#1232757). +- scsi: lpfc: Restrict support for 32 byte CDBs to specific HBAs + (bsc#1232757 bsc#1228119). +- scsi: lpfc: Update phba link state conditional before sending + CMF_SYNC_WQE (bsc#1232757). +- scsi: lpfc: Add ELS_RSP cmd to the list of WQEs to flush in + lpfc_els_flush_cmd() (bsc#1232757). +- scsi: lpfc: Remove trailing space after \n newline + (bsc#1232757). +- commit 3cf27b4 + +------------------------------------------------------------------- +Mon Nov 4 16:14:15 CET 2024 - vkarasulli@suse.de + +- ext4: fix timer use-after-free on failed mount (CVE-2024-49960 + bsc#1232395). +- commit bd6997d + +------------------------------------------------------------------- +Mon Nov 4 16:04:43 CET 2024 - mfranc@suse.cz + +- net/xen-netback: prevent UAF in xenvif_flush_hash() + (CVE-2024-49936 bsc#1232424). +- commit ae05dab + +------------------------------------------------------------------- +Mon Nov 4 15:52:22 CET 2024 - vkarasulli@suse.de + +- tipc: guard against string buffer overrun (CVE-2024-49995 + bsc#1232432). +- commit ada263e + +------------------------------------------------------------------- +Mon Nov 4 14:53:58 CET 2024 - tiwai@suse.de + +- drm/amdkfd: amdkfd_free_gtt_mem clear the correct pointer + (CVE-2024-49991 bsc#1232282). +- commit 1b15839 + +------------------------------------------------------------------- +Mon Nov 4 13:19:32 CET 2024 - dwagner@suse.de + +- nvme: re-fix error-handling for io_uring nvme-passthrough + (git-fixes). +- nvmet-auth: assign dh_key to NULL after kfree_sensitive + (git-fixes). +- nvme-pci: fix race condition between reset and + nvme_dev_disable() (git-fixes). +- nvme: null terminate nvme_tls_attrs (git-fixes). +- nvme-pci: set doorbell config before unquiescing (git-fixes). +- commit d7598b1 + +------------------------------------------------------------------- +Mon Nov 4 10:14:41 CET 2024 - vbabka@suse.cz + +- mm: split critical region in remap_file_pages() and invoke + LSMs in between (CVE-2024-47745 bsc#1232135 git-fix). +- commit 8228ecb + +------------------------------------------------------------------- +Mon Nov 4 09:25:15 CET 2024 - tiwai@suse.de + +- Add alt-commit to AMDGPU patch +- commit 9e50980 + +------------------------------------------------------------------- +Mon Nov 4 09:24:06 CET 2024 - tiwai@suse.de + +- phy: tegra: xusb: Add error pointer check in xusb.c (git-fixes). +- phy: freescale: imx8m-pcie: Do CMN_RST just before PHY PLL + lock check (git-fixes). +- phy: ti: phy-j721e-wiz: fix usxgmii configuration (git-fixes). +- phy: qcom: qmp-combo: move driver data initialisation earlier + (git-fixes). +- phy: qcom: qmp-usb: fix NULL-deref on runtime suspend + (git-fixes). +- dmaengine: ti: k3-udma: Set EOP for all TRs in cyclic BCDMA + transfer (git-fixes). +- dmaengine: sh: rz-dmac: handle configs where one address is zero + (git-fixes). +- Revert "driver core: Fix uevent_show() vs driver detach race" + (git-fixes). +- usb: phy: Fix API devm_usb_put_phy() can not release the phy + (git-fixes). +- usb: typec: fix unreleased fwnode_handle in + typec_port_register_altmodes() (git-fixes). +- xhci: Fix Link TRB DMA in command ring stopped completion event + (git-fixes). +- xhci: Use pm_runtime_get to prevent RPM on unsupported systems + (git-fixes). +- usbip: tools: Fix detach_port() invalid port error path + (git-fixes). +- iio: adc: ad7124: fix division by zero in + ad7124_set_channel_odr() (git-fixes). +- staging: iio: frequency: ad9832: fix division by zero in + ad9832_calc_freqreg() (git-fixes). +- iio: light: veml6030: fix microlux value calculation + (git-fixes). +- iio: gts-helper: Fix memory leaks for the error path of + iio_gts_build_avail_scale_table() (git-fixes). +- iio: gts-helper: Fix memory leaks in + iio_gts_build_avail_scale_table() (git-fixes). +- mei: use kvmalloc for read buffer (git-fixes). +- Input: edt-ft5x06 - fix regmap leak when probe fails + (git-fixes). +- modpost: fix input MODULE_DEVICE_TABLE() built for 64-bit on + 32-bit host (git-fixes). +- modpost: fix acpi MODULE_DEVICE_TABLE built with mismatched + endianness (git-fixes). +- sumversion: Fix a memory leak in get_src_version() (git-fixes). +- genirq/msi: Fix off-by-one error in msi_domain_alloc() + (git-fixes). +- commit df7fb9d + +------------------------------------------------------------------- +Mon Nov 4 09:04:48 CET 2024 - jslaby@suse.cz + +- Refresh + patches.suse/PCI-Fix-pci_enable_acs-support-for-the-ACS-quirks.patch. + Update upstream status. +- commit f283868 + +------------------------------------------------------------------- +Mon Nov 4 07:17:46 CET 2024 - neilb@suse.de + +- nfsd: cancel nfsd_shrinker_work using sync mode in + nfs4_state_shutdown_net (git-fixes). +- commit ed2b339 + +------------------------------------------------------------------- +Mon Nov 4 06:45:48 CET 2024 - neilb@suse.de + +- NFSv3: only use NFS timeout for MOUNT when protocols are + compatible (bsc#1231016). +- commit ddbeb4f + +------------------------------------------------------------------- +Mon Nov 4 05:29:33 CET 2024 - jlee@suse.com + +- Update + patches.suse/0002-x86-mm-ident_map-Use-gbpages-only-where-full-GB-page.patch + (bsc#1220382 CVE-2024-50017 bsc#1232312). +- Update patches.suse/ACPI-PAD-fix-crash-in-exit_round_robin.patch + (stable-fixes CVE-2024-49935 bsc#1232370). +- Update + patches.suse/ACPI-battery-Fix-possible-crash-when-unregistering-a.patch + (git-fixes CVE-2024-49955 bsc#1232154). +- Update + patches.suse/ACPI-sysfs-validate-return-type-of-_STR-method.patch + (git-fixes CVE-2024-49860 bsc#1231861). +- Update + patches.suse/ACPICA-check-null-return-of-ACPI_ALLOCATE_ZEROED-in-.patch + (stable-fixes CVE-2024-49962 bsc#1232314). +- Update + patches.suse/ALSA-asihpi-Fix-potential-OOB-array-access.patch + (stable-fixes CVE-2024-50007 bsc#1232394). +- Update + patches.suse/Bluetooth-Call-iso_exit-on-module-unload.patch + (git-fixes CVE-2024-50078 bsc#1232503). +- Update + patches.suse/Bluetooth-ISO-Fix-multiple-init-when-debugfs-is-disa.patch + (git-fixes CVE-2024-50077 bsc#1232504). +- Update + patches.suse/Bluetooth-RFCOMM-FIX-possible-deadlock-in-rfcomm_sk_.patch + (git-fixes CVE-2024-50044 bsc#1231904). +- Update + patches.suse/IB-core-Fix-ib_cache_setup_one-error-flow-cleanup.patch + (git-fixes CVE-2024-47693 bsc#1232013). +- Update + patches.suse/IB-core-Implement-a-limit-on-UMAD-receive-List.patch + (bsc#1228743 CVE-2024-42145 bsc#1223384). +- Update + patches.suse/Input-adp5589-keys-fix-NULL-pointer-dereference.patch + (git-fixes CVE-2024-49871 bsc#1232287). +- Update + patches.suse/KEYS-prevent-NULL-pointer-dereference-in-find_asymme.patch + (git-fixes CVE-2024-47743 bsc#1232129). +- Update + patches.suse/KVM-Use-dedicated-mutex-to-protect-kvm_usage_count-t.patch + (git-fixes CVE-2024-47744 bsc#1232132). +- Update + patches.suse/PCI-keystone-Fix-if-statement-expression-in-ks_pcie_.patch + (git-fixes CVE-2024-47756 bsc#1232185). +- Update + patches.suse/PCI-kirin-Fix-buffer-overflow-in-kirin_pcie_parse_po.patch + (git-fixes CVE-2024-47751 bsc#1232127). +- Update + patches.suse/RDMA-cxgb4-Added-NULL-check-for-lookup_atid.patch + (git-fixes CVE-2024-47749 bsc#1232180). +- Update + patches.suse/RDMA-hns-Fix-Use-After-Free-of-rsv_qp-on-HIP08.patch + (git-fixes CVE-2024-47750 bsc#1232182). +- Update + patches.suse/RDMA-hns-Fix-spin_unlock_irqrestore-called-with-IRQs.patch + (git-fixes CVE-2024-47735 bsc#1232111). +- Update + patches.suse/RDMA-iwcm-Fix-WARNING-at_kernel-workqueue.c-check_fl.patch + (git-fixes CVE-2024-47696 bsc#1231864). +- Update + patches.suse/RDMA-rtrs-clt-Reset-cid-to-con_num-1-to-stay-in-boun.patch + (git-fixes CVE-2024-47695 bsc#1231931). +- Update + patches.suse/RDMA-rtrs-srv-Avoid-null-pointer-deref-during-path-e.patch + (git-fixes CVE-2024-50062 bsc#1232232). +- Update + patches.suse/aoe-fix-the-potential-use-after-free-problem-in-more.patch + (bsc#1218562 CVE-2023-6270 CVE-2024-49982 bsc#1232097). +- Update + patches.suse/bpf-Fail-verification-for-sign-extension-of-packet-d.patch + (git-fixes CVE-2024-47702 bsc#1231924). +- Update + patches.suse/bpf-Fix-helper-writes-to-read-only-maps.patch + (git-fixes CVE-2024-49861 bsc#1232254). +- Update + patches.suse/bpf-Fix-use-after-free-in-bpf_uprobe_multi_link_attach.patch + (git-fixes CVE-2024-47675 bsc#1231926). +- Update + patches.suse/bpf-Zero-former-ARG_PTR_TO_-LONG-INT-args-in-case-of.patch + (git-fixes CVE-2024-47728 bsc#1232076). +- Update + patches.suse/bpf-correctly-handle-malformed-BPF_CORE_TYPE_ID_LOCA.patch + (git-fixes CVE-2024-49850 bsc#1232189). +- Update + patches.suse/cachefiles-fix-dentry-leak-in-cachefiles_open_file.patch + (bsc#1231183 CVE-2024-49870 bsc#1232279). +- Update + patches.suse/can-bcm-Clear-bo-bcm_proc_read-after-remove_proc_ent.patch + (git-fixes CVE-2024-47709 bsc#1232048). +- Update + patches.suse/crypto-iaa-Fix-potential-use-after-free-bug.patch + (git-fixes CVE-2024-47732 bsc#1232109). +- Update + patches.suse/cxl-pci-Fix-disabling-memory-if-DVSEC-CXL-Range-does.patch + (git-fixes CVE-2024-26761 bsc#1230375). +- Update + patches.suse/driver-core-Fix-a-potential-null-ptr-deref-in-module.patch + (git-fixes CVE-2024-47688 bsc#1232009). +- Update + patches.suse/driver-core-bus-Fix-double-free-in-driver-API-bus_re.patch + (stable-fixes CVE-2024-50055 bsc#1232329). +- Update + patches.suse/drivers-media-dvb-frontends-rtl2830-fix-an-out-of-bo.patch + (git-fixes CVE-2024-47697 bsc#1231858). +- Update + patches.suse/drivers-media-dvb-frontends-rtl2832-fix-an-out-of-bo.patch + (git-fixes CVE-2024-47698 bsc#1231859). +- Update + patches.suse/drm-amd-display-Add-null-check-for-set_output_gamma-.patch + (git-fixes CVE-2024-47720 bsc#1232043). +- Update + patches.suse/drm-amd-display-Check-null-pointer-before-dereferenc.patch + (stable-fixes CVE-2024-50049 bsc#1232309). +- Update + patches.suse/drm-amd-display-fixed-integer-types-and-null-check-l.patch + (git-fixes CVE-2024-26767 bsc#1230339). +- Update + patches.suse/drm-omapdrm-Add-missing-check-for-alloc_ordered_work.patch + (git-fixes CVE-2024-49879 bsc#1232349). +- Update + patches.suse/drm-v3d-Stop-the-active-perfmon-before-being-destroy.patch + (git-fixes CVE-2024-50031 bsc#1231947). +- Update + patches.suse/efistub-tpm-Use-ACPI-reclaim-memory-for-event-log-to.patch + (stable-fixes CVE-2024-49858 bsc#1232251). +- Update + patches.suse/ep93xx-clock-Fix-off-by-one-in-ep93xx_div_recalc_rat.patch + (git-fixes CVE-2024-47686 bsc#1232000). +- Update + patches.suse/exfat-fix-memory-leak-in-exfat_load_bitmap.patch + (git-fixes CVE-2024-50013 bsc#1232080). +- Update + patches.suse/fbcon-Fix-a-NULL-pointer-dereference-issue-in-fbcon_.patch + (stable-fixes CVE-2024-50048 bsc#1232310). +- Update + patches.suse/firmware-arm_scmi-Fix-double-free-in-OPTEE-transport.patch + (git-fixes CVE-2024-49853 bsc#1232192). +- Update patches.suse/firmware_loader-Block-path-traversal.patch + (git-fixes CVE-2024-47742 bsc#1232126). +- Update + patches.suse/i2c-stm32f7-Do-not-prepare-unprepare-clock-during-ru.patch + (git-fixes CVE-2024-49985 bsc#1232094). +- Update + patches.suse/i3c-master-cdns-Fix-use-after-free-vulnerability-in-.patch + (stable-fixes CVE-2024-50061 bsc#1232263). +- Update + patches.suse/i3c-master-svc-Fix-use-after-free-vulnerability-in-s.patch + (git-fixes CVE-2024-49874 bsc#1232295). +- Update + patches.suse/i40e-Fix-XDP-program-unloading-while-removing-the-dr.patch + (git-fixes CVE-2024-41047 bsc#1228537). +- Update + patches.suse/idpf-fix-UAFs-when-destroying-the-queues.patch + (git-fixes CVE-2024-44932 bsc#1229808). +- Update + patches.suse/idpf-fix-memory-leaks-and-crashes-while-performing-a.patch + (git-fixes CVE-2024-44964 bsc#1230220). +- Update + patches.suse/iommufd-Protect-against-overflow-of-ALIGN-during-iov.patch + (git-fixes CVE-2024-47719 bsc#1231865). +- Update + patches.suse/jffs2-prevent-xattr-node-from-overflowing-the-eraseblock.patch + (git-fixes CVE-2024-38599 bsc#1226848 bsc#1223384). +- Update patches.suse/jfs-Fix-uaf-in-dbFreeBits.patch (git-fixes + CVE-2024-49903 bsc#1232362). +- Update + patches.suse/jfs-Fix-uninit-value-access-of-new_ea-in-ea_buffer.patch + (git-fixes CVE-2024-49900 bsc#1232359). +- Update + patches.suse/jfs-check-if-leafidx-greater-than-num-leaves-per-dmap-tree.patch + (git-fixes CVE-2024-49902 bsc#1232378). +- Update + patches.suse/jfs-fix-out-of-bounds-in-dbNextAG-and-diAlloc.patch + (git-fixes CVE-2024-47723 bsc#1232050). +- Update + patches.suse/mailbox-bcm2835-Fix-timeout-during-suspend-mode.patch + (git-fixes CVE-2024-49963 bsc#1232147). +- Update + patches.suse/md-Don-t-ignore-suspended-array-in-md_check_recovery-1baa.patch + (bsc#1219596 CVE-2024-26758 bsc#1230341). +- Update patches.suse/media-edia-dvbdev-fix-a-use-after-free.patch + (git-fixes CVE-2024-27043 bsc#1223824 bsc#1218562). +- Update + patches.suse/media-i2c-ar0521-Use-cansleep-version-of-gpiod_set_v.patch + (git-fixes CVE-2024-49961 bsc#1232148). +- Update + patches.suse/media-venus-fix-use-after-free-bug-in-venus_remove-d.patch + (git-fixes CVE-2024-49981 bsc#1232098). +- Update + patches.suse/nbd-fix-race-between-timeout-and-normal-completion.patch + (bsc#1230918 CVE-2024-49855 bsc#1232195). +- Update + patches.suse/net-phy-Remove-LED-entry-from-LEDs-list-on-unregiste.patch + (git-fixes CVE-2024-50023 bsc#1231955). +- Update + patches.suse/net-test-for-not-too-small-csum_start-in-virtio_net_.patch + (git-fixes CVE-2024-49947 bsc#1232162). +- Update + patches.suse/nfsd-call-cache_put-if-xdr_reserve_space-returns-NULL.patch + (git-fixes CVE-2024-47737 bsc#1232056). +- Update + patches.suse/nfsd-map-the-EBADMSG-to-nfserr_io-to-avoid-warning.patch + (git-fixes CVE-2024-49875 bsc#1232333). +- Update + patches.suse/nilfs2-fix-potential-null-ptr-deref-in-nilfs_btree_insert.patch + (git-fixes CVE-2024-47699 bsc#1231916). +- Update + patches.suse/nilfs2-fix-potential-oob-read-in-nilfs_btree_check_delete.patch + (git-fixes CVE-2024-47757 bsc#1232187). +- Update + patches.suse/nouveau-dmem-handle-kcalloc-allocation-failure.patch + (git-fixes CVE-2024-26943 bsc#1230527). +- Update + patches.suse/ocfs2-cancel-dqi_sync_work-before-freeing-oinfo.patch + (git-fixes CVE-2024-49966 bsc#1232141). +- Update + patches.suse/ocfs2-fix-null-ptr-deref-when-journal-load-failed.patch + (git-fixes CVE-2024-49957 bsc#1232152). +- Update + patches.suse/ocfs2-fix-possible-null-ptr-deref-in-ocfs2_set_buffer_uptodate.patch + (git-fixes CVE-2024-49877 bsc#1232339). +- Update + patches.suse/ocfs2-remove-unreasonable-unlock-in-ocfs2_read_blocks.patch + (git-fixes CVE-2024-49965 bsc#1232142). +- Update + patches.suse/parport-Proper-fix-for-array-out-of-bounds-access.patch + (git-fixes CVE-2024-50074 bsc#1232507). +- Update + patches.suse/pinctrl-apple-check-devm_kasprintf-returned-value.patch + (git-fixes CVE-2024-50069 bsc#1232511). +- Update + patches.suse/platform-x86-ISST-Fix-the-KASAN-report-slab-out-of-b.patch + (git-fixes CVE-2024-49886 bsc#1232196). +- Update + patches.suse/powercap-intel_rapl-Fix-off-by-one-in-get_rpi.patch + (git-fixes CVE-2024-49862 bsc#1231871). +- Update + patches.suse/resource-fix-region_intersects-vs-add_memory_driver_.patch + (git-fixes CVE-2024-49878 bsc#1232340). +- Update + patches.suse/scsi-fnic-Move-flush_work-initialization-out-of-if-b.patch + (bsc#1230055 CVE-2024-50025 bsc#1231953). +- Update + patches.suse/scsi-lpfc-validate-hdwq-pointers-before-dereferencing-in.patch + (bsc#1229429 jsc#PED-9899 CVE-2024-49891 bsc#1232218). +- Update + patches.suse/scsi-sd-Fix-off-by-one-error-in-sd_read_block_charac.patch + (bsc#1223848 CVE-2024-47682 bsc#1231856). +- Update + patches.suse/serial-protect-uart_port_dtr_rts-in-uart_shutdown-to.patch + (stable-fixes CVE-2024-50058 bsc#1232285). +- Update + patches.suse/tpm-Clean-up-TPM-space-after-command-failure.patch + (git-fixes CVE-2024-49851 bsc#1232134). +- Update + patches.suse/tty-n_gsm-Fix-use-after-free-in-gsm_cleanup_mux.patch + (stable-fixes CVE-2024-50073 bsc#1232520). +- Update + patches.suse/vhost-scsi-null-ptr-dereference-in-vhost_scsi_get_re.patch + (git-fixes CVE-2024-49863 bsc#1232255). +- Update + patches.suse/vhost_vdpa-assign-irq-bypass-producer-token-correctl.patch + (git-fixes CVE-2024-47748 bsc#1232174). +- Update patches.suse/vmxnet3-Fix-missing-reserved-tailroom.patch + (bsc#1226498 CVE-2024-27026 bsc#1223700). +- Update + patches.suse/vt-prevent-kernel-infoleak-in-con_font_get.patch + (git-fixes CVE-2024-50076 bsc#1232505). +- Update + patches.suse/wifi-ath11k-fix-array-out-of-bound-access-in-SoC-sta.patch + (stable-fixes CVE-2024-49930 bsc#1232260). +- Update + patches.suse/wifi-ath12k-fix-array-out-of-bound-access-in-SoC-sta.patch + (stable-fixes CVE-2024-49931 bsc#1232275). +- Update + patches.suse/wifi-ath9k_htc-Use-__skb_set_length-for-resetting-ur.patch + (stable-fixes CVE-2024-49938 bsc#1232552). +- Update + patches.suse/wifi-cfg80211-Set-correct-chandef-when-starting-CAC.patch + (stable-fixes CVE-2024-49937 bsc#1232427). +- Update + patches.suse/wifi-iwlwifi-mvm-avoid-NULL-pointer-dereference.patch + (stable-fixes CVE-2024-49929 bsc#1232253). +- Update + patches.suse/wifi-mac80211-don-t-use-rate-mask-for-offchannel-TX-.patch + (git-fixes CVE-2024-47738 bsc#1232114). +- Update + patches.suse/wifi-mac80211-use-two-phase-skb-reclamation-in-ieee8.patch + (git-fixes CVE-2024-47713 bsc#1232016). +- Update + patches.suse/wifi-mt76-mt7915-fix-oops-on-non-dbdc-mt7986.patch + (git-fixes CVE-2024-47715 bsc#1231860). +- Update + patches.suse/wifi-mt76-mt7996-fix-NULL-pointer-dereference-in-mt7.patch + (git-fixes CVE-2024-47681 bsc#1231855). +- Update + patches.suse/wifi-mt76-mt7996-use-hweight16-to-get-correct-tx-ant.patch + (git-fixes CVE-2024-47714 bsc#1232018). +- Update + patches.suse/wifi-mwifiex-Fix-memcpy-field-spanning-write-warning.patch + (stable-fixes CVE-2024-50008 bsc#1232317). +- Update + patches.suse/wifi-rtw88-always-wait-for-both-firmware-loading-att.patch + (git-fixes CVE-2024-47718 bsc#1232015). +- Update + patches.suse/wifi-rtw89-avoid-reading-out-of-bounds-when-loading-.patch + (stable-fixes CVE-2024-49928 bsc#1232250). +- Update + patches.suse/wifi-rtw89-avoid-to-add-interface-to-list-twice-when.patch + (stable-fixes CVE-2024-49939 bsc#1232381). +- Update + patches.suse/wifi-wilc1000-fix-potential-RCU-dereference-issue-in.patch + (git-fixes CVE-2024-47712 bsc#1232017). +- Update + patches.suse/xhci-tegra-fix-checked-USB2-port-number.patch + (git-fixes CVE-2024-50075 bsc#1232506). +- commit a270265 + +------------------------------------------------------------------- +Mon Nov 4 05:28:50 CET 2024 - jlee@suse.com + +- Update + patches.suse/i3c-mipi-i3c-hci-Fix-out-of-bounds-access-in-hci_dma.patch + (git-fixes CVE-2023-52766 bsc#1230620). +- Update + patches.suse/media-pci-cx23885-check-cx23885_vdev_init-return.patch + (stable-fixes CVE-2023-52918 bsc#1232047). +- Update + patches.suse/nfc-nci-fix-possible-NULL-pointer-dereference-in-sen.patch + (git-fixes CVE-2023-52919 bsc#1231988). +- Update + patches.suse/ntb-intel-Fix-the-NULL-vs-IS_ERR-bug-for-debugfs_cre.patch + (git-fixes CVE-2023-52917 bsc#1231849). +- Update + patches.suse/tcp-do-not-accept-ACK-of-bytes-we-never-sent.patch + (CVE-2023-52881 bsc#1225611 bsc#1223384). +- Update patches.suse/wifi-ath11k-fix-htt-pktlog-locking.patch + (git-fixes CVE-2023-52800 bsc#1230600). +- commit 9859953 + +------------------------------------------------------------------- +Mon Nov 4 05:11:42 CET 2024 - neilb@suse.de + +- NFSD: Force all NFSv4.2 COPY requests to be synchronous + (CVE-2024-49974 bsc#1232383). +- commit 16045fc + +------------------------------------------------------------------- +Sun Nov 3 21:24:28 CET 2024 - petr.pavlu@suse.com + +- fgraph: Change the name of cpuhp state to "fgraph:online" + (git-fixes). +- commit 59421b3 + +------------------------------------------------------------------- +Sun Nov 3 21:22:36 CET 2024 - petr.pavlu@suse.com + +- fgraph: Fix missing unlock in register_ftrace_graph() + (git-fixes). +- commit 60d91ed + +------------------------------------------------------------------- +Sun Nov 3 19:59:18 CET 2024 - ailiop@suse.com + +- fs/9p: drop inodes immediately on non-.L too (git-fixes). +- commit 5fa5f19 + +------------------------------------------------------------------- +Sun Nov 3 19:58:53 CET 2024 - ailiop@suse.com + +- 9p: explicitly deny setlease attempts (git-fixes). +- commit 474852b + +------------------------------------------------------------------- +Sun Nov 3 19:58:26 CET 2024 - ailiop@suse.com + +- fs/9p: fix the cache always being enabled on files with qid + flags (git-fixes). +- commit 362152c + +------------------------------------------------------------------- +Sun Nov 3 19:52:25 CET 2024 - ailiop@suse.com + +- zonefs: Improve error handling (git-fixes). +- commit cb63c4c + +------------------------------------------------------------------- +Sun Nov 3 19:51:33 CET 2024 - ailiop@suse.com + +- debugfs: fix automount d_fsdata usage (git-fixes). +- commit 5f78a06 + +------------------------------------------------------------------- +Sun Nov 3 19:50:40 CET 2024 - ailiop@suse.com + +- splice: fsnotify_access(in), fsnotify_modify(out) on success + in tee (git-fixes). +- commit d518e6d + +------------------------------------------------------------------- +Sun Nov 3 19:50:06 CET 2024 - ailiop@suse.com + +- splice: fsnotify_access(fd)/fsnotify_modify(fd) in vmsplice + (git-fixes). +- commit d630f18 + +------------------------------------------------------------------- +Sun Nov 3 19:49:32 CET 2024 - ailiop@suse.com + +- splice: always fsnotify_access(in), fsnotify_modify(out) + on success (git-fixes). +- commit e7f8947 + +------------------------------------------------------------------- +Sun Nov 3 19:48:48 CET 2024 - ailiop@suse.com + +- keys: Fix overwrite of key expiration on instantiation + (git-fixes). +- commit 323181d + +------------------------------------------------------------------- +Sun Nov 3 19:47:56 CET 2024 - ailiop@suse.com + +- audit: don't WARN_ON_ONCE(!current->mm) in audit_exe_compare() + (git-fixes). +- commit e2db423 + +------------------------------------------------------------------- +Sun Nov 3 19:32:51 CET 2024 - ailiop@suse.com + +- ocfs2: fix uninit-value in ocfs2_get_block() (git-fixes). +- commit 426a4b1 + +------------------------------------------------------------------- +Sun Nov 3 19:31:08 CET 2024 - ailiop@suse.com + +- keys, dns: Allow key types (eg. DNS) to be reclaimed immediately + on expiry (git-fixes). +- commit ce262a7 + +------------------------------------------------------------------- +Sun Nov 3 19:29:09 CET 2024 - ailiop@suse.com + +- Revert "KEYS: encrypted: Add check for strsep" (git-fixes). +- commit 7aa308c + +------------------------------------------------------------------- +Sun Nov 3 19:26:16 CET 2024 - ailiop@suse.com + +- ubifs: add check for crypto_shash_tfm_digest (git-fixes). +- commit ea9ba15 + +------------------------------------------------------------------- +Sun Nov 3 19:25:49 CET 2024 - ailiop@suse.com + +- ubifs: dbg_orphan_check: Fix missed key type checking + (git-fixes). +- commit 465ad1a + +------------------------------------------------------------------- +Sun Nov 3 19:24:02 CET 2024 - ailiop@suse.com + +- ubifs: Fix adding orphan entry twice for the same inode + (git-fixes). +- commit 93096ab + +------------------------------------------------------------------- +Sun Nov 3 19:21:34 CET 2024 - ailiop@suse.com + +- Revert "ubifs: ubifs_symlink: Fix memleak of inode->i_link in + error path" (git-fixes). +- commit 0a7c17d + +------------------------------------------------------------------- +Sun Nov 3 19:19:23 CET 2024 - ailiop@suse.com + +- ubifs: Fix unattached xattr inode if powercut happens after + deleting (git-fixes). +- commit 6c90268 + +------------------------------------------------------------------- +Sun Nov 3 19:08:05 CET 2024 - ailiop@suse.com + +- audit: don't take task_lock() in audit_exe_compare() code path + (git-fixes). +- Refresh patches.suse/vfs-add-super_operations-get_inode_dev. +- commit d4e23ef + +------------------------------------------------------------------- +Sun Nov 3 16:02:04 CET 2024 - petr.pavlu@suse.com + +- uprobes: fix kernel info leak via "[uprobes]" vma (bsc#1231114 + CVE-2024-46828). +- uprobes: turn xol_area->pages into xol_area->page (bsc#1231114). +- uprobes: introduce the global struct vm_special_mapping + xol_mapping (bsc#1231114). +- commit 4f9954c + +------------------------------------------------------------------- +Sun Nov 3 14:15:34 CET 2024 - petr.pavlu@suse.com + +- sched: sch_cake: fix bulk flow accounting logic for host + fairness (bsc#1231114 CVE-2024-46828). +- commit ad42d5f + +------------------------------------------------------------------- +Sun Nov 3 13:42:31 CET 2024 - ailiop@suse.com + +- xfs: fix finding a last resort AG in xfs_filestream_pick_ag + (git-fixes). +- commit a10af4c + +------------------------------------------------------------------- +Sat Nov 2 14:47:25 CET 2024 - petr.pavlu@suse.com + +- static_call: Handle module init failure correctly in + static_call_del_module() (bsc#1232083 CVE-2024-50002). +- commit af953b9 + +------------------------------------------------------------------- +Sat Nov 2 10:39:31 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Refactor and simplify Samsung Galaxy Book + init (stable-fixes). +- Refresh + patches.suse/ALSA-hda-realtek-Add-quirk-for-Huawei-MateBook-13-KL.patch. +- commit 98d4026 + +------------------------------------------------------------------- +Sat Nov 2 10:39:04 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Enable mic on Vaio VJFH52 (stable-fixes). +- commit 7075c22 + +------------------------------------------------------------------- +Sat Nov 2 10:38:26 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: tas2781: Fix ROG ALLY X audio (stable-fixes). +- commit e26a542 + +------------------------------------------------------------------- +Sat Nov 2 10:34:42 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Fix headset mic on TUXEDO Stellaris 16 Gen6 + mb1 (stable-fixes). +- ALSA: hda/realtek: Fix headset mic on TUXEDO Gemini 17 Gen3 + (stable-fixes). +- ALSA: usb-audio: Add quirks for Dell WD19 dock (stable-fixes). +- ASoC: dapm: fix bounds checker error in dapm_widget_list_create + (git-fixes). +- ASoC: Intel: sst: Fix used of uninitialized ctx to log an error + (git-fixes). +- ASoC: Intel: sst: Support LPE0F28 ACPI HID (stable-fixes). +- ASoC: Intel: bytcr_rt5640: Add DMI quirk for Vexia Edu Atla + 10 tablet (stable-fixes). +- ASoC: Intel: bytcr_rt5640: Add support for non ACPI instantiated + codec (stable-fixes). +- ASoC: codecs: rt5640: Always disable IRQs from + rt5640_cancel_work() (stable-fixes). +- ALSA: hda/realtek: Add subwoofer quirk for Infinix ZERO BOOK 13 + (stable-fixes). +- ALSA: hda/realtek: Limit internal Mic boost on Dell platform + (stable-fixes). +- commit 0d350ca + +------------------------------------------------------------------- +Sat Nov 2 10:32:30 CET 2024 - tiwai@suse.de + +- drm/mediatek: Fix get efuse issue for MT8188 DPTX (git-fixes). +- drm/amd/pm: Vangogh: Fix kernel memory out of bounds write + (git-fixes). +- ACPI: CPPC: Make rmw_lock a raw_spin_lock (git-fixes). +- firmware: arm_sdei: Fix the input parameter of + cpuhp_remove_state() (git-fixes). +- kasan: Fix Software Tag-Based KASAN with GCC (git-fixes). +- commit 2a07e04 + +------------------------------------------------------------------- +Sat Nov 2 10:28:12 CET 2024 - tiwai@suse.de + +- Bluetooth: hci: fix null-ptr-deref in hci_read_supported_codecs + (git-fixes). +- wifi: cfg80211: clear wdev->cqm_config pointer on free + (git-fixes). +- Revert "wifi: iwlwifi: remove retry loops in start" (git-fixes). +- wifi: iwlwifi: mvm: don't add default link in fw restart flow + (git-fixes). +- wifi: iwlwifi: mvm: Fix response handling in + iwl_mvm_send_recovery_cmd() (git-fixes). +- wifi: iwlwifi: mvm: don't leak a link on AP removal (git-fixes). +- wifi: ath11k: Fix invalid ring usage in full monitor mode + (git-fixes). +- wifi: ath10k: Fix memory leak in management tx (git-fixes). +- wifi: brcm80211: BRCM_TRACING should depend on TRACING + (git-fixes). +- wifi: mac80211: skip non-uploaded keys in ieee80211_iter_keys + (git-fixes). +- wifi: mac80211: do not pass a stopped vif to the driver in + .get_txpower (git-fixes). +- mac80211: MAC80211_MESSAGE_TRACING should depend on TRACING + (git-fixes). +- wifi: iwlegacy: Fix "field-spanning write" warning in + il_enqueue_hcmd() (git-fixes). +- ASoC: cs42l51: Fix some error handling paths in cs42l51_probe() + (git-fixes). +- platform/x86: dell-wmi: Ignore suspend notifications + (stable-fixes). +- ACPI: button: Add DMI quirk for Samsung Galaxy Book2 to fix + initial lid detection issue (stable-fixes). +- ACPI: resource: Add LG 16T90SP to irq1_level_low_skip_override[] + (stable-fixes). +- drm/amd/display: Disable PSR-SU on Parade 08-01 TCON too + (stable-fixes). +- drm/amd: Guard against bad data for ATIF ACPI method + (git-fixes). +- usb: gadget: f_uac2: fix return value for UAC2_ATTRIBUTE_STRING + store (git-fixes). +- accel/qaic: Fix the for loop used to walk SG table (git-fixes). +- drm/amd/amdgpu: Fix double unlock in amdgpu_mes_add_ring + (git-fixes). +- drm/msm/dpu: don't always program merge_3d block (git-fixes). +- drm/msm: Allocate memory for disp snapshot with kvzalloc() + (git-fixes). +- drm/msm: Avoid NULL dereference in msm_disp_state_print_regs() + (git-fixes). +- drm/msm/dsi: fix 32-bit signed integer extension in pclk_rate + calculation (git-fixes). +- drm/msm/dsi: improve/fix dsc pclk calculation (git-fixes). +- drm/msm/dpu: check for overflow in _dpu_crtc_setup_lm_bounds() + (git-fixes). +- drm/msm/dpu: move CRTC resource assignment to + dpu_encoder_virt_atomic_check (git-fixes). +- drm/msm/dpu: make sure phys resources are properly initialized + (git-fixes). +- platform/x86: dell-sysman: add support for alienware products + (stable-fixes). +- drm/vboxvideo: Replace fake VLA at end of + vbva_mouse_pointer_shape with real VLA (stable-fixes). +- usb: gadget: f_uac2: fix non-newline-terminated function name + (stable-fixes). +- usb: gadget: f_uac2: Replace snprintf() with the safer + scnprintf() variant (stable-fixes). +- commit 09f40f7 + +------------------------------------------------------------------- +Fri Nov 1 20:01:29 CET 2024 - dsterba@suse.com + +- drm/amd/display: Check null pointers before using them (CVE-2024-49922 bsc#1232374) +- commit 342005c + +------------------------------------------------------------------- +Fri Nov 1 19:47:32 CET 2024 - dsterba@suse.com + +- drm/amd/display: Handle null 'stream_status' in 'planes_changed_for_existing_stream' (CVE-2024-49912 bsc#1232367) +- commit 2394db2 + +------------------------------------------------------------------- +Fri Nov 1 19:39:05 CET 2024 - dsterba@suse.com + +- drm/amd/display: Add NULL check for function pointer in dcn20_set_output_transfer_func (CVE-2024-49911 bsc#1232366) +- commit 6c83ea7 + +------------------------------------------------------------------- +Fri Nov 1 19:22:24 CET 2024 - dsterba@suse.com + +- drm/amd/display: Pass non-null to dcn20_validate_apply_pipe_split_flags (CVE-2024-49923 bsc#1232361) +- commit 3759560 + +------------------------------------------------------------------- +Fri Nov 1 19:15:38 CET 2024 - dsterba@suse.com + +- drm/amd/display: Fix index out of bounds in DCN30 degamma hardware format translation (CVE-2024-49895 bsc#1232352) +- commit f36c162 + +------------------------------------------------------------------- +Fri Nov 1 19:09:39 CET 2024 - dsterba@suse.com + +- drm/amd/display: Initialize denominators' default to 1 (CVE-2024-49899 bsc#1232358) +- commit 282fa51 + +------------------------------------------------------------------- +Fri Nov 1 19:00:40 CET 2024 - dsterba@suse.com + +- Update references for patches.suse/0001-drm-amd-display-Add-null-check-for-afb-in-amdgpu_dm_.patch (bsc#1232335 CVE-2024-49908 bsc#1232357 CVE-2024-49905) +- commit fa3a85a + +------------------------------------------------------------------- +Fri Nov 1 18:52:17 CET 2024 - dsterba@suse.com + +- drm/amd/display: Check phantom_stream before it is used (CVE-2024-49897 bsc#1232355) +- commit d3fcaed + +------------------------------------------------------------------- +Fri Nov 1 18:43:28 CET 2024 - dsterba@suse.com + +- drm/amd/display: Fix index out of bounds in degamma hardware format translation (CVE-2024-49894 bsc#1232354) +- commit db76ccb + +------------------------------------------------------------------- +Fri Nov 1 18:36:48 CET 2024 - dsterba@suse.com + +- drm/amd/display: Add NULL check for function pointer in dcn32_set_output_transfer_func (CVE-2024-49909 bsc#1232337) +- commit 11facc9 + +------------------------------------------------------------------- +Fri Nov 1 18:30:46 CET 2024 - dsterba@suse.com + +- drm/amd/display: Add null check for top_pipe_to_program in commit_planes_for_stream (CVE-2024-49913 bsc#1232307) +- commit 60f7853 + +------------------------------------------------------------------- +Fri Nov 1 18:20:07 CET 2024 - dsterba@suse.com + +- drm/msm/adreno: Assign msm_gpu->pdev earlier to avoid nullptrs (CVE-2024-49901 bsc#1232305) +- commit 69be7bb + +------------------------------------------------------------------- +Fri Nov 1 14:53:56 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/ATL: Implement DF 4.5 NP2 denormalization (jsc#PED-10559). +- commit 52d40f4 + +------------------------------------------------------------------- +Fri Nov 1 14:53:36 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/ATL: Validate address map when information is gathered (jsc#PED-10559). +- commit 94e412f + +------------------------------------------------------------------- +Fri Nov 1 14:53:11 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/ATL: Expand helpers for adding and removing base and hole (jsc#PED-10559). +- commit 2b18348 + +------------------------------------------------------------------- +Fri Nov 1 14:52:54 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/ATL: Read DRAM hole base early (jsc#PED-10559). +- commit e1cf5b5 + +------------------------------------------------------------------- +Fri Nov 1 14:48:59 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/ATL: Add amd_atl pr_fmt() prefix (jsc#PED-10559). +- commit 17f78f9 + +------------------------------------------------------------------- +Fri Nov 1 13:59:05 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check null pointer before try to access it (bsc#1232332 CVE-2024-49906) +- commit f2b2892 + +------------------------------------------------------------------- +Fri Nov 1 13:57:34 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Add null check for pipe_ctx->plane_state in (bsc#1232369 CVE-2024-49914) +- commit c236474 + +------------------------------------------------------------------- +Fri Nov 1 10:58:06 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Add null check for 'afb' in amdgpu_dm_update_cursor (bsc#1232335 CVE-2024-49908) +- commit 64a943f + +------------------------------------------------------------------- +Fri Nov 1 10:47:38 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check null pointers before using dc->clk_mgr (bsc#1232334 CVE-2024-49907) +- commit 366c63a + +------------------------------------------------------------------- +Fri Nov 1 08:27:17 CET 2024 - nmorey@suse.com + +- RDMA/bnxt_re: synchronize the qp-handle table array (git-fixes) +- commit 866dbc5 + +------------------------------------------------------------------- +Fri Nov 1 08:26:48 CET 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix the usage of control path spin locks (git-fixes) +- commit c834f25 + +------------------------------------------------------------------- +Fri Nov 1 08:26:08 CET 2024 - nmorey@suse.com + +- RDMA/mlx5: Round max_rd_atomic/max_dest_rd_atomic up instead of down (git-fixes) +- commit 3c270f2 + +------------------------------------------------------------------- +Fri Nov 1 08:25:29 CET 2024 - nmorey@suse.com + +- RDMA/cxgb4: Dump vendor specific QP details (git-fixes) +- commit 587d3b0 + +------------------------------------------------------------------- +Thu Oct 31 23:06:07 CET 2024 - dsterba@suse.com + +- ext4: fix access to uninitialised lock in fc replay path (CVE-2024-50014 bsc#1232446) +- commit 1b2ba45 + +------------------------------------------------------------------- +Thu Oct 31 22:51:38 CET 2024 - dsterba@suse.com + +- ext4: fix i_data_sem unlock order in ext4_ind_migrate() (CVE-2024-50006 bsc#1232442) +- commit de0e62b + +------------------------------------------------------------------- +Thu Oct 31 21:27:59 CET 2024 - krisman@suse.de + +- scsi: ufs: core: Remove SCSI host only if added (CVE-2024-46843 + bsc#1231100). +- commit b455bee + +------------------------------------------------------------------- +Thu Oct 31 17:50:59 CET 2024 - krisman@suse.de + +- io_uring: check if we need to reschedule during overflow flush + (bsc#1232417 CVE-2024-50060). +- commit 695bc5f + +------------------------------------------------------------------- +Thu Oct 31 17:45:00 CET 2024 - vkarasulli@suse.de + +- iommu/vt-d: Fix potential lockup if qi_submit_sync called + with 0 count (bsc#1232316 CVE-2024-49993). +- commit f1e5ce7 + +------------------------------------------------------------------- +Thu Oct 31 17:09:02 CET 2024 - dsterba@suse.com + +- ext4: dax: fix overflowing extents beyond inode size when partially writing (CVE-2024-50015 bsc#1232079) +- commit 9768b7c + +------------------------------------------------------------------- +Thu Oct 31 16:58:37 CET 2024 - dsterba@suse.com + +- jbd2: stop waiting for space when jbd2_cleanup_journal_tail() returns error (CVE-2024-49959 bsc#1232149) +- commit 8307a3a + +------------------------------------------------------------------- +Thu Oct 31 14:30:50 CET 2024 - dsterba@suse.com + +- of: Add cleanup.h based auto release via __free(device_node) markings (bsc#1232386) +- commit 794e5ba + +------------------------------------------------------------------- +Thu Oct 31 12:23:15 CET 2024 - svarbanov@suse.de + +- net: stmmac: dwmac-tegra: Fix link bring-up sequence (git-fixes) +- commit 277d940 + +------------------------------------------------------------------- +Wed Oct 30 23:17:12 CET 2024 - dsterba@suse.com + +- cpufreq: Avoid a bad reference count on CPU node (CVE-2024-50012 bsc#1232386) +- commit 283b9a0 + +------------------------------------------------------------------- +Wed Oct 30 23:04:36 CET 2024 - dsterba@suse.com + +- ext4: update orig_path in ext4_find_extent() (CVE-2024-49881 bsc#1232201) +- commit 2ed2a04 + +------------------------------------------------------------------- +Wed Oct 30 23:04:06 CET 2024 - dsterba@suse.com + +- ext4: fix slab-use-after-free in ext4_split_extent_at() (bsc#1232201) +- commit c78e4be + +------------------------------------------------------------------- +Wed Oct 30 20:54:24 CET 2024 - krisman@suse.de + +- btrfs: don't BUG_ON on ENOMEM from btrfs_lookup_extent_info() + in walk_down_proc() (CVE-2024-46841 bsc#1231094). +- commit fb4a0c7 + +------------------------------------------------------------------- +Wed Oct 30 18:48:02 CET 2024 - dsterba@suse.com + +- ext4: aovid use-after-free in ext4_ext_insert_extent() (CVE-2024-49883 bsc#1232199) +- commit 2db9cb5 + +------------------------------------------------------------------- +Wed Oct 30 18:38:04 CET 2024 - dsterba@suse.com + +- blk_iocost: fix more out of bound shifts (CVE-2024-49933 bsc#1232368) +- commit df53397 + +------------------------------------------------------------------- +Wed Oct 30 16:48:50 CET 2024 - vkarasulli@suse.de + +- drm/amd/display: Fix index out of bounds in DCN30 color + transformation (CVE-2024-49969 bsc#1232519). +- commit 7d6c264 + +------------------------------------------------------------------- +Wed Oct 30 15:58:31 CET 2024 - petr.pavlu@suse.com + +- static_call: Replace pointless WARN_ON() in + static_call_module_notify() (bsc#1232155 CVE-2024-49954). +- commit 03b6c35 + +------------------------------------------------------------------- +Wed Oct 30 15:54:21 CET 2024 - petr.pavlu@suse.com + +- module: abort module loading when sysfs setup suffer errors + (git-fixes). +- Refresh patches.suse/add-suse-supported-flag.patch. +- commit db27509 + +------------------------------------------------------------------- +Wed Oct 30 15:36:07 CET 2024 - petr.pavlu@suse.com + +- bpf,perf: Fix perf_event_detach_bpf_prog error handling + (git-fixes). +- commit 5b6b2d4 + +------------------------------------------------------------------- +Wed Oct 30 15:33:23 CET 2024 - petr.pavlu@suse.com + +- tracing: Consider the NULL character when validating the event + length (git-fixes). +- commit 6b1d97f + +------------------------------------------------------------------- +Wed Oct 30 15:31:57 CET 2024 - petr.pavlu@suse.com + +- uprobe: avoid out-of-bounds memory access of fetching args + (git-fixes). +- uprobes: encapsulate preparation of uprobe args buffer + (git-fixes). +- commit ead6cfe + +------------------------------------------------------------------- +Wed Oct 30 14:51:36 CET 2024 - mfranc@suse.cz + +- s390/pci: Handle PCI error codes other than 0x3a (git-fixes + bsc#1232629). +- commit e4948be + +------------------------------------------------------------------- +Wed Oct 30 14:49:22 CET 2024 - mfranc@suse.cz + +- s390/sclp: Deactivate sclp after all its users (git-fixes + bsc#1232628). +- commit 9e889e7 + +------------------------------------------------------------------- +Wed Oct 30 14:47:56 CET 2024 - mfranc@suse.cz + +- s390/sclp_vt220: Convert newlines to CRLF instead of LFCR + (git-fixes bsc#1232627). +- commit 5725ee0 + +------------------------------------------------------------------- +Wed Oct 30 14:45:56 CET 2024 - mfranc@suse.cz + +- KVM: s390: Change virtual to physical address access in diag + 0x258 handler (git-fixes bsc#1232626). +- commit 2b0b1e9 + +------------------------------------------------------------------- +Wed Oct 30 14:44:28 CET 2024 - mfranc@suse.cz + +- KVM: s390: gaccess: Check if guest address is in memslot + (git-fixes bsc#1232623). +- commit b583687 + +------------------------------------------------------------------- +Wed Oct 30 14:22:09 CET 2024 - petr.pavlu@suse.com + +- fgraph: Use CPU hotplug mechanism to initialize idle shadow + stacks (git-fixes). +- commit 4265ef9 + +------------------------------------------------------------------- +Wed Oct 30 14:08:07 CET 2024 - petr.pavlu@suse.com + +- mm: khugepaged: fix the arguments order in + khugepaged_collapse_file trace point (git-fixes). +- commit 43546b6 + +------------------------------------------------------------------- +Wed Oct 30 13:50:31 CET 2024 - petr.pavlu@suse.com + +- tracing/hwlat: Fix a race during cpuhp processing (git-fixes). +- tracing/timerlat: Fix a race during cpuhp processing + (git-fixes). +- tracing/timerlat: Drop interface_lock in stop_kthread() + (git-fixes). +- tracing/timerlat: Fix duplicated kthread creation due to CPU + online/offline (git-fixes). +- tracing/osnoise: Fix build when timerlat is not enabled + (git-fixes). +- tracing/timerlat: Add interface_lock around clearing of kthread + in stop_kthread() (git-fixes). +- tracing/timerlat: Only clear timer if a kthread exists + (git-fixes). +- tracing/osnoise: Use a cpumask to know what threads are kthreads + (git-fixes). +- tracing/timerlat: Move hrtimer_init to timerlat_fd open() + (git-fixes). +- tracing/timerlat: Add user-space interface (git-fixes). +- tracing/osnoise: Skip running osnoise if all instances are off + (git-fixes). +- tracing/osnoise: Switch from PF_NO_SETAFFINITY to + migrate_disable (git-fixes). +- commit 8482ad0 + +------------------------------------------------------------------- +Wed Oct 30 12:23:56 CET 2024 - ailiop@suse.com + +- ocfs2: pass u64 to ocfs2_truncate_inline maybe overflow + (git-fixes). +- commit 24fea60 + +------------------------------------------------------------------- +Wed Oct 30 11:58:24 CET 2024 - nik.borisov@suse.com + +- Refresh patches.suse/x86-fix-user-address-masking-non-canonical-speculation-iss.patch. (bsc#1232529) + Give check_range a unique label. Otherwise the macro's 1b label + conflicts with __get_user_1's 1 label and this causes the exception fixup + entry, installed at the end of the file to match the wrong thing. + Instead of matching __get_user_1's 1b label it will match check_range's 1b + label when this macro is expanded for the last time in __get_user_8. + This fixes intermittent random crashes when copying data from userspace. +- commit 3a35fd0 + +------------------------------------------------------------------- +Wed Oct 30 11:24:28 CET 2024 - petr.pavlu@suse.com + +- jump_label: Fix static_key_slow_dec() yet again (git-fixes). +- commit ab363f5 + +------------------------------------------------------------------- +Wed Oct 30 09:20:29 CET 2024 - petr.pavlu@suse.com + +- SUNRPC: Fixup gss_status tracepoint error output (git-fixes). +- commit 84cc417 + +------------------------------------------------------------------- +Tue Oct 29 21:07:53 CET 2024 - dsterba@suse.com + +- drm/amd/display: Deallocate DML memory if allocation fails (CVE-2024-49972 bsc#1232315) +- commit dd5ab13 + +------------------------------------------------------------------- +Tue Oct 29 20:59:47 CET 2024 - dsterba@suse.com + +- drm/amd/display: Check stream before comparing them (CVE-2024-49896 bsc#1232221) +- commit 930546b + +------------------------------------------------------------------- +Tue Oct 29 20:55:31 CET 2024 - dsterba@suse.com + +- drm/amd/pm: ensure the fw_info is not null before using it (CVE-2024-49890 bsc#1232217) +- commit a0e8b9f + +------------------------------------------------------------------- +Tue Oct 29 20:41:30 CET 2024 - dsterba@suse.com + +- drm/amd/display: Initialize get_bytes_per_element's default to 1 (CVE-2024-49892 bsc#1232220) +- commit e1539d0 + +------------------------------------------------------------------- +Tue Oct 29 18:41:23 CET 2024 - dsterba@suse.com + +- drivers/perf: Fix ali_drw_pmu driver interrupt status clearing (CVE-2024-47731 bsc#1232117) +- commit 774dc33 + +------------------------------------------------------------------- +Tue Oct 29 18:39:12 CET 2024 - dsterba@suse.com + +- padata: use integer wrap around to prevent deadlock on seq_nr overflow (CVE-2024-47739 bsc#1232124) +- commit 7e58560 + +------------------------------------------------------------------- +Tue Oct 29 18:33:16 CET 2024 - dsterba@suse.com + +- media: mediatek: vcodec: Fix H264 stateless decoder smatch warning (CVE-2024-47752 bsc#1232130) +- commit 086cd43 + +------------------------------------------------------------------- +Tue Oct 29 18:31:07 CET 2024 - dsterba@suse.com + +- media: mediatek: vcodec: Fix H264 multi stateless decoder smatch warning (CVE-2024-47754 bsc#1232131) +- commit dacb1c6 + +------------------------------------------------------------------- +Tue Oct 29 18:01:27 CET 2024 - dsterba@suse.com + +- media: mediatek: vcodec: Fix VP8 stateless decoder smatch warning (CVE-2024-47753 bsc#1231868) +- commit fed66a9 + +------------------------------------------------------------------- +Tue Oct 29 17:34:26 CET 2024 - vkarasulli@suse.de + +- iommu/vt-d: Always reserve a domain ID for identity setup + (git-fixes). +- commit f7ecad0 + +------------------------------------------------------------------- +Tue Oct 29 16:38:55 CET 2024 - dsterba@suse.com + +- btrfs: clean up our handling of refs == 0 in snapshot delete (CVE-2024-46840 bsc#1231105) +- commit 788d396 + +------------------------------------------------------------------- +Tue Oct 29 16:33:10 CET 2024 - shung-hsi.yu@suse.com + +- kABI: bpf: struct bpf_map kABI workaround (CVE-2024-50063 + bsc#1232435). +- selftests/bpf: Add test for lsm tail call (CVE-2024-50063 + bsc#1232435). +- bpf: Prevent tail call between progs attached to different hooks + (CVE-2024-50063 bsc#1232435). +- commit 666246a + +------------------------------------------------------------------- +Tue Oct 29 16:03:50 CET 2024 - vkarasulli@suse.de + +- iommu/vt-d: Fix incorrect pci_for_each_dma_alias() for non-PCI + devices (git-fixes). +- commit 28951a9 + +------------------------------------------------------------------- +Tue Oct 29 14:55:33 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check null pointers before multiple uses (bsc#1232313 CVE-2024-49920) +- commit 5447aa1 + +------------------------------------------------------------------- +Tue Oct 29 10:57:15 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check link_res->hpo_dp_link_enc before using it (bsc#1231944) +- commit bf57b96 + +------------------------------------------------------------------- +Tue Oct 29 10:52:49 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check null-initialized variables (bsc#1232222 CVE-2024-49898) +- commit a00bfda + +------------------------------------------------------------------- +Tue Oct 29 09:40:48 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check link_res->hpo_dp_link_enc before using it (bsc#1231944 CVE-2024-47704) +- commit 931c899 + +------------------------------------------------------------------- +Tue Oct 29 08:12:37 CET 2024 - tiwai@suse.de + +- spi: spi-fsl-dspi: Fix crash when not using GPIO chip select + (git-fixes). +- spi: mtk-snfi: fix kerneldoc for mtk_snand_is_page_ops() + (git-fixes). +- spi: atmel-quadspi: Fix wrong register value written to MR + (git-fixes). +- commit fd0b348 + +------------------------------------------------------------------- +Mon Oct 28 23:06:31 CET 2024 - krisman@suse.de + +- crypto: stm32/cryp - call finalize with bh disabled + (CVE-2024-47658 bsc#1231436). +- commit 2854148 + +------------------------------------------------------------------- +Mon Oct 28 16:17:52 CET 2024 - henrique.carvalho@suse.com + +- smb: client: fix UAF in async decryption (bsc#1232418 + CVE-2024-50047). +- commit 381863e + +------------------------------------------------------------------- +Mon Oct 28 15:09:34 CET 2024 - tbogendoerfer@suse.de + +- e1000e: fix force smbus during suspend flow (git-fixes). +- commit f9cbf12 + +------------------------------------------------------------------- +Mon Oct 28 15:02:07 CET 2024 - fdmanana@suse.com + +- btrfs: wait for fixup workers before stopping cleaner kthread + during umount (bsc#1232262 CVE-2024-49867). +- btrfs: fix race setting file private on concurrent lseek using + same fd (bsc#1231869 CVE-2024-47741). +- commit af36a3e + +------------------------------------------------------------------- +Mon Oct 28 14:33:54 CET 2024 - tbogendoerfer@suse.de + +- ppp: fix ppp_async_encode() illegal access (CVE-2024-50035 + bsc#1232392). +- net: avoid potential underflow in qdisc_pkt_len_init() with UFO + (CVE-2024-49949 bsc#1232160). +- commit f4bcea0 + +------------------------------------------------------------------- +Mon Oct 28 14:17:25 CET 2024 - tbogendoerfer@suse.de + +- ice: map XDP queues to vectors in ice_vsi_map_rings_to_vectors() + (git-fixes). +- Refresh + patches.suse/ice-move-netif_queue_set_napi-to-rtnl-protected-sect.patch. +- commit 7b44c3c + +------------------------------------------------------------------- +Mon Oct 28 14:14:48 CET 2024 - tbogendoerfer@suse.de + +- net/mlx5: Check capability for fw_reset (git-fixes). +- Refresh + patches.suse/net-mlx5-Fix-MTMP-register-capability-offset-in-MCAM.patch. +- commit 480249d + +------------------------------------------------------------------- +Mon Oct 28 14:08:05 CET 2024 - tbogendoerfer@suse.de + +- net/mlx5e: Don't call cleanup on profile rollback failure + (git-fixes). +- net/mlx5: Unregister notifier on eswitch init failure + (git-fixes). +- net/mlx5: Fix command bitmask initialization (git-fixes). +- net/mlx5: Check for invalid vector index on EQ creation + (git-fixes). +- e1000e: change I219 (19) devices to ADP (git-fixes). +- ice: Flush FDB entries before reset (git-fixes). +- ice: Fix netif_is_ice() in Safe Mode (git-fixes). +- ice: fix VLAN replay after reset (git-fixes). +- ice: disallow DPLL_PIN_STATE_SELECTABLE for dpll output pins + (git-fixes). +- ice: clear port vlan config during reset (git-fixes). +- ice: set correct dst VSI in only LAN filters (git-fixes). +- net/mlx5: Added cond_resched() to crdump collection (git-fixes). +- vduse: avoid using __GFP_NOFAIL (git-fixes). +- igb: Always call igb_xdp_ring_update_tail() under Tx lock + (git-fixes). +- ice: fix VSI lists confusion when adding VLANs (git-fixes). +- ice: fix accounting for filters shared by multiple VSIs + (git-fixes). +- ice: Fix lldp packets dropping after changing the number of + channels (git-fixes). +- net/mlx5: Add missing masks and QoS bit masks for scheduling + elements (git-fixes). +- net/mlx5: Explicitly set scheduling element and TSAR type + (git-fixes). +- net/mlx5e: Add missing link mode to ptys2ext_ethtool_map + (git-fixes). +- net/mlx5e: Add missing link modes to ptys2ethtool_map + (git-fixes). +- net/mlx5: Update the list of the PCI supported devices + (git-fixes). +- ice: do not bring the VSI up, if it was down before the XDP + setup (git-fixes). +- igc: Unlock on error in igc_io_resume() (git-fixes). +- igb: Fix not clearing TimeSync interrupts for 82580 (git-fixes). +- ice: fix truesize operations for PAGE_SIZE >= 8192 (git-fixes). +- ice: fix ICE_LAST_OFFSET formula (git-fixes). +- ice: fix page reuse when PAGE_SIZE is over 8k (git-fixes). +- cxgb4: add forgotten u64 ivlan cast before shift (git-fixes). +- igc: Fix qbv tx latency by setting gtxoffset (git-fixes). +- igc: Fix reset adapter logics when tx mode change (git-fixes). +- igc: Fix qbv_config_change_errors logics (git-fixes). +- igc: Fix packet still tx after gate close by reducing i226 + MAC retry buffer (git-fixes). +- net/mlx5e: Correctly report errors for ethtool rx flows + (git-fixes). +- ice: Fix reset handler (git-fixes). +- idpf: fix UAFs when destroying the queues (git-fixes). +- idpf: fix memleak in vport interrupt configuration (git-fixes). +- idpf: fix memory leaks and crashes while performing a soft reset + (git-fixes). +- igc: Fix double reset adapter triggered from a single taprio + cmd (git-fixes). +- net/mlx5e: Add a check for the return value from + mlx5_port_set_eth_ptys (git-fixes). +- net/mlx5e: Require mlx5 tc classifier action support for IPsec + prio capability (git-fixes). +- net/mlx5: Lag, don't use the hardcoded value of the first port + (git-fixes). +- net/mlx5: Fix error handling in irq_pool_request_irq + (git-fixes). +- ice: add missing WRITE_ONCE when clearing ice_rx_ring::xdp_prog + (git-fixes). +- ice: replace synchronize_rcu with synchronize_net (git-fixes). +- ice: don't busy wait for Rx queue disable in ice_qp_dis() + (git-fixes). +- ice: respect netif readiness in AF_XDP ZC related ndo's + (git-fixes). +- gve: Fix an edge case for TSO skb validity check (git-fixes). +- ice: Fix recipe read procedure (git-fixes). +- gve: Fix XDP TX completion handling when counters overflow + (git-fixes). +- RDMA/mlx5: Use sq timestamp as QP timestamp when RoCE is + disabled (git-fixes). +- idpf: avoid bloating &idpf_q_vector with big %NR_CPUS + (git-fixes). +- i40e: Fix XDP program unloading while removing the driver + (git-fixes). +- ice: use proper macro for testing bit (git-fixes). +- ice: Reject pin requests with unsupported flags (git-fixes). +- e1000e: Fix S0ix residency on corporate systems (git-fixes). +- net/mlx5e: Add mqprio_rl cleanup and free in + mlx5e_priv_cleanup() (git-fixes). +- ice: Rebuild TC queues on VSI queue reconfiguration (git-fixes). +- bnxt_en: Restore PTP tx_avail count in case of skb_pad() error + (git-fixes). +- ice: Fix VSI list rule with ICE_SW_LKUP_LAST type (git-fixes). +- ice: implement AQ download pkg retry (git-fixes). +- ice: fix 200G link speed message log (git-fixes). +- ice: avoid IRQ collision to fix init failure on ACPI S3 resume + (git-fixes). +- bnxt_en: Cap the size of HWRM_PORT_PHY_QCFG forwarded response + (git-fixes). +- gve: ignore nonrelevant GSO type bits when processing TSO + headers (git-fixes). +- net/mlx5e: Fix features validation check for tunneled UDP + (non-VXLAN) packets (git-fixes). +- ice: add flag to distinguish reset from .ndo_bpf in XDP rings + config (git-fixes). +- ice: remove af_xdp_zc_qps bitmap (git-fixes). +- ice: fix reads from NVM Shadow RAM on E830 and E825-C devices + (git-fixes). +- ice: fix iteration of TLVs in Preserved Fields Area (git-fixes). +- net/mlx5: Stop waiting for PCI if pci channel is offline + (git-fixes). +- ice: fix 200G PHY types to link speed mapping (git-fixes). +- e1000e: move force SMBUS near the end of enable_ulp function + (git-fixes). +- ice: fix accounting if a VLAN already exists (git-fixes). +- idpf: don't enable NAPI and interrupts prior to allocating Rx + buffers (git-fixes). +- net/mlx5e: Fix UDP GSO for encapsulated packets (git-fixes). +- net/mlx5e: Use rx_missed_errors instead of rx_dropped for + reporting buffer exhaustion (git-fixes). +- net/mlx5e: Fix IPsec tunnel mode offload feature check + (git-fixes). +- net/mlx5: Lag, do bond only if slaves agree on roce state + (git-fixes). +- idpf: Interpret .set_channels() input differently (git-fixes). +- ice: Interpret .set_channels() input differently (git-fixes). +- idpf: don't skip over ethtool tcp-data-split setting + (git-fixes). +- ice: Fix package download algorithm (git-fixes). +- mlx5: stop warning for 64KB pages (git-fixes). +- mlx5: avoid truncating error message (git-fixes). +- qed: avoid truncating work queue length (git-fixes). +- cxgb4: unnecessary check for 0 in the free_sge_txq_uld() + function (git-fixes). +- cxgb4: Properly lock TX queue for the selftest (git-fixes). +- net: qede: use return from qede_parse_actions() (git-fixes). +- net: qede: use return from qede_parse_flow_attr() for flow_spec + (git-fixes). +- net: qede: use return from qede_parse_flow_attr() for flower + (git-fixes). +- net: qede: sanitize 'rc' in qede_add_tc_flower_fltr() + (git-fixes). +- iavf: Fix TC config comparison with existing adapter TC config + (git-fixes). +- i40e: Report MFS in decimal base instead of hex (git-fixes). +- eth: bnxt: fix counting packets discarded due to OOM and netpoll + (git-fixes). +- bnxt_en: Fix error recovery for 5760X (P7) chips (git-fixes). +- bnxt_en: Fix the PCI-AER routines (git-fixes). +- bnxt_en: refactor reset close code (git-fixes). +- ice: Fix checking for unsupported keys on non-tunnel device + (git-fixes). +- ice: tc: allow zero flags in parsing tc flower (git-fixes). +- ice: tc: check src_vsi in case of traffic from VF (git-fixes). +- vdpa: Fix an error handling path in eni_vdpa_probe() + (git-fixes). +- vdpa_sim_blk: allocate the buffer zeroed (git-fixes). +- vdpa_sim_blk: Fix the potential leak of mgmt_dev (git-fixes). +- commit 58c03fe + +------------------------------------------------------------------- +Mon Oct 28 10:54:33 CET 2024 - nik.borisov@suse.com + +- dcache: keep dentry_hashtable or d_hash_shift even when not used (git-fixes). +- commit d6ce9b3 + +------------------------------------------------------------------- +Mon Oct 28 09:28:40 CET 2024 - nik.borisov@suse.com + +- x86: fix user address masking non-canonical speculation issue (git-fixes). +- commit 561e50e + +------------------------------------------------------------------- +Mon Oct 28 09:19:21 CET 2024 - nik.borisov@suse.com + +- x86: make the masked_user_access_begin() macro use its argument only once (git-fixes). +- commit aa2495e + +------------------------------------------------------------------- +Mon Oct 28 09:19:02 CET 2024 - nik.borisov@suse.com + +- x86: do the user address masking outside the user access area (git-fixes). +- commit a4b9c7b + +------------------------------------------------------------------- +Mon Oct 28 09:13:19 CET 2024 - nik.borisov@suse.com + +- x86: support user address masking instead of non-speculative conditional (git-fixes). +- commit 6536d1f + +------------------------------------------------------------------- +Mon Oct 28 09:03:43 CET 2024 - nik.borisov@suse.com + +- runtime constants: add x86 architecture support (git-fixes). +- commit 32e2def + +------------------------------------------------------------------- +Mon Oct 28 09:03:24 CET 2024 - nik.borisov@suse.com + +- runtime constants: add default dummy infrastructure (git-fixes). +- commit dd17ee6 + +------------------------------------------------------------------- +Mon Oct 28 09:03:06 CET 2024 - nik.borisov@suse.com + +- vfs: dcache: move hashlen_hash() from callers into d_hash() (git-fixes). +- commit c440ebe + +------------------------------------------------------------------- +Mon Oct 28 07:13:50 CET 2024 - ohering@suse.de + +- hv_netvsc: Fix VF namespace also in synthetic NIC NETDEV_REGISTER event (git-fixes). +- commit 3dc5225 + +------------------------------------------------------------------- +Sat Oct 26 10:57:53 CEST 2024 - tiwai@suse.de + +- Drop USB dwc2 patch that caused a regression on RPi3 (bsc#1232342) +- commit c84227d + +------------------------------------------------------------------- +Sat Oct 26 10:00:49 CEST 2024 - tiwai@suse.de + +- ACPI: PRM: Clean up guid type in struct prm_handler_info + (git-fixes). +- commit 8c8a801 + +------------------------------------------------------------------- +Sat Oct 26 09:59:51 CEST 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Add subwoofer quirk for Acer Predator G9-593 + (stable-fixes). +- commit 595e400 + +------------------------------------------------------------------- +Sat Oct 26 09:58:45 CEST 2024 - tiwai@suse.de + +- ACPI: PRM: Find EFI_MEMORY_RUNTIME block for PRM handler and + context (git-fixes). +- ata: libata: Set DID_TIME_OUT for commands that actually timed + out (git-fixes). +- ASoC: max98388: Fix missing increment of variable slot_found + (git-fixes). +- ASoC: qcom: Fix NULL Dereference in + asoc_qcom_lpass_cpu_platform_probe() (git-fixes). +- ALSA: hda/realtek: Update default depop procedure (git-fixes). +- ALSA: hda/tas2781: select CRC32 instead of CRC32_SARWATE + (git-fixes). +- ALSA: firewire-lib: Avoid division by zero in + apply_constraint_to_size() (git-fixes). +- cpufreq/amd-pstate: Fix amd_pstate mode switch on shared memory + systems (git-fixes). +- ntb: intel: Fix the NULL vs IS_ERR() bug for + debugfs_create_dir() (git-fixes). +- commit 33d7ff7 + +------------------------------------------------------------------- +Fri Oct 25 19:09:16 CEST 2024 - vkarasulli@suse.de + +- platform/x86: x86-android-tablets: Fix use after free on + platform_device_register() errors (bsc#1232093 CVE-2024-49986). +- commit a5650bf + +------------------------------------------------------------------- +Fri Oct 25 18:45:05 CEST 2024 - vkarasulli@suse.de + +- thermal: core: Free tzp copy along with the thermal zone + (bsc#1231951 CVE-2024-50027). +- commit 5199a1f + +------------------------------------------------------------------- +Fri Oct 25 18:24:47 CEST 2024 - vkarasulli@suse.de + +- device-dax: correct pgoff align in dax_set_mapping() + (bsc#1231956 CVE-2024-50022). +- commit 527a95e + +------------------------------------------------------------------- +Fri Oct 25 17:54:38 CEST 2024 - tiwai@suse.de + +- ntb: ntb_hw_switchtec: Fix use after free vulnerability in + switchtec_ntb_remove due to race condition (CVE-2024-50059 + bsc#1232345). +- commit 4d86c47 + +------------------------------------------------------------------- +Fri Oct 25 17:07:16 CEST 2024 - vbabka@suse.cz + +- mm: call the security_mmap_file() LSM hook in remap_file_pages() + (CVE-2024-47745 bsc#1232135). +- commit 18a36ea + +------------------------------------------------------------------- +Fri Oct 25 14:54:04 CEST 2024 - sjaeckel@suse.de + +- Bluetooth: L2CAP: Fix uaf in l2cap_connect (CVE-2024-49950 + bsc#1232159). +- commit c906740 + +------------------------------------------------------------------- +Fri Oct 25 12:50:22 CEST 2024 - sjaeckel@suse.de + +- rxrpc: Fix a race between socket set up and I/O thread creation + (CVE-2024-49864 bsc#1232256). +- commit 9a8fa8a + +------------------------------------------------------------------- +Fri Oct 25 12:07:23 CEST 2024 - ailiop@suse.com + +- jfs: Fix sanity check in dbMount (git-fixes). +- commit 82a9085 + +------------------------------------------------------------------- +Fri Oct 25 11:29:51 CEST 2024 - tbogendoerfer@suse.de + +- net/mlx5e: Fix NULL deref in mlx5e_tir_builder_alloc() + (CVE-2024-50000 bsc#1232085). +- commit fe8d0fb + +------------------------------------------------------------------- +Fri Oct 25 11:18:01 CEST 2024 - lhenriques@suse.de + +- ext4: fix double brelse() the buffer of the extents path + (bsc#1232200 CVE-2024-49882). +- ext4: no need to continue when the number of entries is 1 + (bsc#1232140 CVE-2024-49967). +- commit 4a7f79c + +------------------------------------------------------------------- +Fri Oct 25 10:29:35 CEST 2024 - dwagner@suse.de + +- nvme: disable CC.CRIME (NVME_CC_CRIME) (jsc#PED-9901). +- commit e02c81e + +------------------------------------------------------------------- +Fri Oct 25 10:06:22 CEST 2024 - tbogendoerfer@suse.de + +- ice: Fix improper handling of refcount in + ice_sriov_set_msix_vec_count() (CVE-2024-50020 bsc#1231989). +- Refresh patches.suse/ice-Fix-increasing-MSI-X-on-VF.patch. +- commit 879bb19 + +------------------------------------------------------------------- +Fri Oct 25 10:04:06 CEST 2024 - tbogendoerfer@suse.de + +- igb: Do not bring the device up after non-fatal error + (CVE-2024-50040 bsc#1231908). +- ice: Fix improper handling of refcount in + ice_dpll_init_rclk_pins() (CVE-2024-50021 bsc#1231957). +- ppp: do not assume bh is held in ppp_channel_bridge_input() + (CVE-2024-49946 bsc#1232164). +- net/mlx5e: Fix crash caused by calling __xfrm_state_delete() + twice (CVE-2024-49953 bsc#1232156). +- net/mlx5: Fix error path in multi-packet WQE transmit + (CVE-2024-50001 bsc#1232084). +- net: seeq: Fix use after free vulnerability in ether3 Driver + Due to Race Condition (CVE-2024-47747 bsc#1232145). +- vdpa/mlx5: Fix invalid mr resource destroy (CVE-2024-47687 + bsc#1232003). +- Revert "ixgbe: Manual AN-37 for troublesome link partners for + X550 SFI" (git-fixes). +- commit bf0d04c + +------------------------------------------------------------------- +Fri Oct 25 10:01:04 CEST 2024 - oneukum@suse.com + +- net: usb: usbnet: fix name regression (get-fixes). +- commit 05e3778 + +------------------------------------------------------------------- +Fri Oct 25 01:11:46 CEST 2024 - dsterba@suse.com + +- r8169: add tally counter fields added with RTL8125 (CVE-2024-49973 bsc#1232105) +- commit bda1225 + +------------------------------------------------------------------- +Fri Oct 25 01:06:16 CEST 2024 - dsterba@suse.com + +- crypto: hisilicon/qm - flush all work before driver removed (bsc#1232075) +- commit fe52020 + +------------------------------------------------------------------- +Fri Oct 25 01:04:40 CEST 2024 - dsterba@suse.com + +- crypto: hisilicon/qm - inject error before stopping queue (CVE-2024-47730 bsc#1232075) +- commit 2ca1dd9 + +------------------------------------------------------------------- +Thu Oct 24 23:28:01 CEST 2024 - dsterba@suse.com + +- sock_map: Add a cond_resched() in sock_hash_free() (CVE-2024-47710 bsc#1232049) +- commit 0ac9917 + +------------------------------------------------------------------- +Thu Oct 24 21:33:04 CEST 2024 - ematsumiya@suse.de + +- cifs: Fix buffer overflow when parsing NFS reparse points + (bsc#1232089, CVE-2024-49996). +- commit f42a100 + +------------------------------------------------------------------- +Thu Oct 24 21:19:19 CEST 2024 - dsterba@suse.com + +- netfilter: nf_reject_ipv6: fix nf_reject_ip6_tcphdr_put() (CVE-2024-47685 bsc#1231998) +- commit 8da2621 + +------------------------------------------------------------------- +Thu Oct 24 21:07:16 CEST 2024 - dsterba@suse.com + +- net: Fix an unsafe loop on the list (CVE-2024-50024 bsc#1231954) +- commit 89e6925 + +------------------------------------------------------------------- +Thu Oct 24 21:00:39 CEST 2024 - dsterba@suse.com + +- ipv6: avoid possible NULL deref in rt6_uncached_list_flush_dev() (CVE-2024-47707 bsc#1231935) +- commit cc8f915 + +------------------------------------------------------------------- +Thu Oct 24 20:40:04 CEST 2024 - dsterba@suse.com + +- netfilter: br_netfilter: fix panic with metadata_dst skb (CVE-2024-50045 bsc#1231903) +- commit e6591d1 + +------------------------------------------------------------------- +Thu Oct 24 20:01:54 CEST 2024 - dsterba@suse.com + +- block, bfq: fix possible UAF for bfqq->bic with merge chain (CVE-2024-47706 bsc#1231942) +- commit 5c1066e + +------------------------------------------------------------------- +Thu Oct 24 19:46:24 CEST 2024 - dsterba@suse.com + +- tcp: check skb is non-NULL in tcp_rto_delta_us() (CVE-2024-47684 bsc#1231987) +- commit e27a5c2 + +------------------------------------------------------------------- +Thu Oct 24 18:02:07 CEST 2024 - ohering@suse.de + +- add bug references to existing mana changes (bsc#1232033, bsc#1232034, bsc#1232036). +- commit e93ce92 + +------------------------------------------------------------------- +Thu Oct 24 14:26:39 CEST 2024 - rgoldwyn@suse.com + +- filemap: remove use of wait bookmarks (bsc#1224088). +- commit 323bb54 + +------------------------------------------------------------------- +Thu Oct 24 10:53:09 CEST 2024 - nik.borisov@suse.com + +- config: Disable LAM on x86 (bsc#1217845) + LAM is affected by speculative execution vulnerabilities so until LASS + lands it's advisable to be disabled. +- commit 405fa97 + +------------------------------------------------------------------- +Thu Oct 24 10:30:58 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: adjust global_func15 test to validate prog exit + precision (CVE-2024-47703 bsc#1231946). +- selftests/bpf: validate async callback return value check + correctness (CVE-2024-47703 bsc#1231946). +- bpf: enforce precision of R0 on program/async callback return + (CVE-2024-47703 bsc#1231946). +- bpf: unify async callback and program retval checks + (CVE-2024-47703 bsc#1231946). +- commit d5ff894 + +------------------------------------------------------------------- +Thu Oct 24 10:24:51 CEST 2024 - shung-hsi.yu@suse.com + +- bpf: enforce precise retval range on program exit + (CVE-2024-47703 bsc#1231946). +- selftests/bpf: add selftest validating callback result is + enforced (CVE-2024-47703 bsc#1231946). +- bpf: enforce exact retval range on subprog/callback exit + (CVE-2024-47703 bsc#1231946). +- Refresh patches.kabi/bpf-verifier-kABI-workarounds.patch +- bpf: provide correct register name for exception callback + retval check (CVE-2024-47703 bsc#1231946). +- bpf: rearrange bpf_func_state fields to save a bit of memory + (CVE-2024-47703 bsc#1231946). +- Refresh patches.suse/bpf-Add-some-comments-to-stack-representation.patch +- Refresh patches.kabi/bpf-verifier-kABI-workarounds.patch +- bpf: Treat first argument as return value for bpf_throw + (CVE-2024-47703 bsc#1231946). +- commit 5efe683 + +------------------------------------------------------------------- +Thu Oct 24 09:53:03 CEST 2024 - osalvador@suse.de + +- drm/amd/display: Add null check for head_pipe in + dcn32_acquire_idle_pipe_for_head_pipe_in_layer (CVE-2024-49918 + bsc#1231967). +- commit 0e6515f + +------------------------------------------------------------------- +Thu Oct 24 06:35:40 CEST 2024 - osalvador@suse.de + +- drm/amd/display: Add NULL check for clk_mgr and clk_mgr->funcs + in dcn30_init_hw (bsc#1231965 CVE-2024-49917). +- commit 0859f94 + +------------------------------------------------------------------- +Wed Oct 23 19:22:26 CEST 2024 - ailiop@suse.com + +- ocfs2: reserve space for inline xattr before attaching reflink + tree (bsc#1232151 CVE-2024-49958). +- commit 9d01096 + +------------------------------------------------------------------- +Wed Oct 23 17:43:11 CEST 2024 - iivanov@suse.de + +- arm64: probes: Fix uprobes for big-endian kernels (git-fixes) +- commit 5114e0b + +------------------------------------------------------------------- +Wed Oct 23 17:41:37 CEST 2024 - iivanov@suse.de + +- arm64: probes: Fix simulate_ldr*_literal() (git-fixes) +- commit 2795830 + +------------------------------------------------------------------- +Wed Oct 23 17:39:54 CEST 2024 - iivanov@suse.de + +- arm64: probes: Remove broken LDR (literal) uprobe support (git-fixes) +- commit 83d2001 + +------------------------------------------------------------------- +Wed Oct 23 17:38:03 CEST 2024 - dsterba@suse.com + +- spi: hisi-kunpeng: Add verification for the max_frequency provided by the firmware (CVE-2024-47664 bsc#1231442) +- commit 89945c9 + +------------------------------------------------------------------- +Wed Oct 23 17:36:35 CEST 2024 - iivanov@suse.de + +- arm64: Subscribe Microsoft Azure Cobalt 100 to erratum 3194386 (git-fixes) +- commit ad9716f + +------------------------------------------------------------------- +Wed Oct 23 17:35:13 CEST 2024 - iivanov@suse.de + +- arm64: errata: Expand speculative SSBS workaround once more (git-fixes) +- commit f66e878 + +------------------------------------------------------------------- +Wed Oct 23 17:32:20 CEST 2024 - iivanov@suse.de + +- arm64: cputype: Add Neoverse-N3 definitions (git-fixes) +- commit 6a20007 + +------------------------------------------------------------------- +Wed Oct 23 17:26:56 CEST 2024 - iivanov@suse.de + +- arm64: esr: Define ESR_ELx_EC_* constants as UL (git-fixes) +- commit 28e8491 + +------------------------------------------------------------------- +Wed Oct 23 15:17:14 CEST 2024 - pmladek@suse.com + +- printk: Add notation to console_srcu locking (bsc#1232183). +- commit b5edcce + +------------------------------------------------------------------- +Wed Oct 23 15:10:11 CEST 2024 - pmladek@suse.com + +- Update patches.suse/kthread-unpark-only-parked-kthread.patch + (git-fixes, bsc#1231990, CVE-2024-50019). +- commit 1ac001a + +------------------------------------------------------------------- +Wed Oct 23 14:57:40 CEST 2024 - nik.borisov@suse.com + +- x86/bugs: Do not use UNTRAIN_RET with IBPB on entry (git-fixes). +- commit 9059d40 + +------------------------------------------------------------------- +Wed Oct 23 14:56:36 CEST 2024 - nik.borisov@suse.com + +- x86/bugs: Skip RSB fill at VMEXIT (git-fixes). +- commit 1c2e2e9 + +------------------------------------------------------------------- +Wed Oct 23 14:55:06 CEST 2024 - mfranc@suse.cz + +- supported.conf: mark ultravisor userspace access as supported (bsc#1232090) + This is needed for secure execution attestations feature. +- commit 9d4c7ad + +------------------------------------------------------------------- +Wed Oct 23 14:54:57 CEST 2024 - nik.borisov@suse.com + +- x86/entry: Have entry_ibpb() invalidate return predictions (git-fixes). +- commit 8e4a09c + +------------------------------------------------------------------- +Wed Oct 23 14:49:23 CEST 2024 - nik.borisov@suse.com + +- x86/cpufeatures: Add a IBPB_NO_RET BUG flag (git-fixes). +- commit 4411a53 + +------------------------------------------------------------------- +Wed Oct 23 14:43:28 CEST 2024 - mfranc@suse.cz + +- config s390x: build ultravisor userspace access into the kernel (bsc#1232090) + The new s390-tools attestation-related tools depends on this. It's + better to have this built into the kernel just like in all other + branches. +- commit 25c0449 + +------------------------------------------------------------------- +Wed Oct 23 14:38:26 CEST 2024 - nik.borisov@suse.com + +- x86/cpufeatures: Define X86_FEATURE_AMD_IBPB_RET (git-fixes). +- commit 589671a + +------------------------------------------------------------------- +Wed Oct 23 12:32:05 CEST 2024 - nik.borisov@suse.com + +- x86/tdx: Fix "in-kernel MMIO" check (bsc#1232116 CVE-2024-47727). +- commit 9b65946 + +------------------------------------------------------------------- +Wed Oct 23 12:15:26 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add test for sign extension in + coerce_subreg_to_size_sx() (git-fixes). +- selftests/bpf: Add test for truncation after sign extension + in coerce_reg_to_size_sx() (git-fixes). +- bpf: Fix truncation bug in coerce_reg_to_size_sx() (git-fixes). +- selftests/bpf: Add test for sign extension in + coerce_subreg_to_size_sx() (git-fixes). +- selftests/bpf: Add test for truncation after sign extension + in coerce_reg_to_size_sx() (git-fixes). +- bpf: Fix truncation bug in coerce_reg_to_size_sx() (git-fixes). +- commit 34bee66 + +------------------------------------------------------------------- +Wed Oct 23 12:14:23 CEST 2024 - ailiop@suse.com + +- xfs: fix freeing speculative preallocations for preallocated + files (git-fixes). +- commit 80e4f70 + +------------------------------------------------------------------- +Wed Oct 23 12:10:27 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add test for lsm tail call (CVE-2024-50063). +- commit 810e00e + +------------------------------------------------------------------- +Wed Oct 23 12:08:38 CEST 2024 - ailiop@suse.com + +- xfs: make sure sb_fdblocks is non-negative (git-fixes). +- commit 258a678 + +------------------------------------------------------------------- +Wed Oct 23 12:07:27 CEST 2024 - ailiop@suse.com + +- xfs: remove a racy if_bytes check in xfs_reflink_end_cow_extent + (git-fixes). +- commit 4ab4091 + +------------------------------------------------------------------- +Wed Oct 23 12:04:39 CEST 2024 - ailiop@suse.com + +- xfs: convert delayed extents to unwritten when zeroing post + eof blocks (git-fixes). +- commit 6f12db2 + +------------------------------------------------------------------- +Wed Oct 23 12:03:32 CEST 2024 - ailiop@suse.com + +- xfs: make xfs_bmapi_convert_delalloc() to allocate the target + offset (git-fixes). +- commit 9f0f731 + +------------------------------------------------------------------- +Wed Oct 23 12:02:19 CEST 2024 - ailiop@suse.com + +- xfs: make the seq argument to xfs_bmapi_convert_delalloc() + optional (git-fixes). +- commit 504e0bc + +------------------------------------------------------------------- +Wed Oct 23 12:00:51 CEST 2024 - ailiop@suse.com + +- xfs: validate recovered name buffers when recovering xattr items + (git-fixes). +- commit a53fc5e + +------------------------------------------------------------------- +Wed Oct 23 11:59:30 CEST 2024 - ailiop@suse.com + +- xfs: check shortform attr entry flags specifically (git-fixes). +- commit 621ec11 + +------------------------------------------------------------------- +Wed Oct 23 11:55:40 CEST 2024 - shung-hsi.yu@suse.com + +- kABI: bpf: struct bpf_map kABI workaround (CVE-2024-50063). +- bpf: Prevent tail call between progs attached to different hooks + (CVE-2024-50063). +- commit cef79ef + +------------------------------------------------------------------- +Wed Oct 23 11:55:39 CEST 2024 - ailiop@suse.com + +- xfs: check opcode and iovec count match in + xlog_recover_attri_commit_pass2 (git-fixes). +- commit 2398ba4 + +------------------------------------------------------------------- +Wed Oct 23 11:55:00 CEST 2024 - ailiop@suse.com + +- fat: fix uninitialized variable (git-fixes). +- commit 77f5dad + +------------------------------------------------------------------- +Wed Oct 23 11:12:53 CEST 2024 - osalvador@suse.de + +- drm/amd/display: Add null check for head_pipe in + dcn201_acquire_free_pipe_for_layer (CVE-2024-49919 bsc#1231968). +- commit ff31b31 + +------------------------------------------------------------------- +Wed Oct 23 09:42:16 CEST 2024 - tbogendoerfer@suse.de + +- slip: make slhc_remember() more robust against malicious packets + (CVE-2024-50033 bsc#1231914). +- i40e: Fix macvlan leak by synchronizing access to + mac_filter_hash (CVE-2024-50041 bsc#1231907). +- ice: Fix increasing MSI-X on VF (CVE-2024-50042 bsc#1231906). +- commit a1fb8a8 + +------------------------------------------------------------------- +Wed Oct 23 08:18:07 CEST 2024 - tiwai@suse.de + +- pinctrl: ocelot: fix system hang on level based interrupts + (stable-fixes). +- tty: n_gsm: Fix use-after-free in gsm_cleanup_mux + (stable-fixes). +- USB: serial: option: add Telit FN920C04 MBIM compositions + (stable-fixes). +- USB: serial: option: add support for Quectel EG916Q-GL + (stable-fixes). +- drm/vmwgfx: Handle surface check failure correctly (git-fixes). +- drm/amdgpu/swsmu: Only force workload setup on init (git-fixes). +- drm/radeon: Fix encoder->possible_clones (git-fixes). +- commit 4fdf5d1 + +------------------------------------------------------------------- +Wed Oct 23 08:11:28 CEST 2024 - tiwai@suse.de + +- thermal: core: Reference count the zone in + thermal_zone_get_by_id() (CVE-2024-50028 bsc#1231950). +- commit a5813a1 + +------------------------------------------------------------------- +Wed Oct 23 05:24:11 CEST 2024 - shung-hsi.yu@suse.com + +- bpf: Fix a sdiv overflow issue (CVE-2024-49888 bsc#1232208). +- commit ce8f994 + +------------------------------------------------------------------- +Tue Oct 22 23:11:46 CEST 2024 - ailiop@suse.com + +- kabi fix for NFSv4: Prevent NULL-pointer dereference in + nfs42_complete_copies() (bsc#1231902 CVE-2024-50046). +- NFSv4: Prevent NULL-pointer dereference in + nfs42_complete_copies() (bsc#1231902 CVE-2024-50046). +- commit e5e1a89 + +------------------------------------------------------------------- +Tue Oct 22 15:54:23 CEST 2024 - vbabka@suse.cz + +- zram: don't free statically defined names (CVE-2024-50064 + bsc#1231901). +- commit 645eb93 + +------------------------------------------------------------------- +Tue Oct 22 15:52:01 CEST 2024 - vbabka@suse.cz + +- zram: free secondary algorithms names (CVE-2024-50064 + bsc#1231901). +- commit 293822f + +------------------------------------------------------------------- +Tue Oct 22 12:43:04 CEST 2024 - lhenriques@suse.de + +- block: fix potential invalid pointer dereference in + blk_add_partition (bsc#1231872 CVE-2024-47705). +- block: print symbolic error name instead of error code + (bsc#1231872). +- commit fcde2ed + +------------------------------------------------------------------- +Tue Oct 22 12:01:45 CEST 2024 - ddiss@suse.de + +- nfsd: return -EINVAL when namelen is 0 (CVE-2024-47692 + bsc#1231857). +- commit 9ee6831 + +------------------------------------------------------------------- +Tue Oct 22 11:56:22 CEST 2024 - jslaby@suse.cz + +- PCI: Fix pci_enable_acs() support for the ACS quirks (bsc#1229019). +- commit 1bd1860 + +------------------------------------------------------------------- +Tue Oct 22 11:40:54 CEST 2024 - ailiop@suse.com + +- nilfs2: fix kernel bug due to missing clearing of buffer delay + flag (git-fixes). +- commit 472d949 + +------------------------------------------------------------------- +Mon Oct 21 17:08:33 CEST 2024 - jgross@suse.com + +- Update + patches.suse/xen-move-max_pfn-in-xen_memory_setup-out-of-function.patch + (bsc#1226003 bsc#1231828). +- commit ec3e6a6 + +------------------------------------------------------------------- +Mon Oct 21 13:43:20 CEST 2024 - nik.borisov@suse.com + +- x86/sev: Check for MWAITX and MONITORX opcodes in the #VC handler (git-fixes). +- commit 23789e3 + +------------------------------------------------------------------- +Mon Oct 21 13:41:00 CEST 2024 - nik.borisov@suse.com + +- x86/apic: Make x2apic_disable() work correctly (git-fixes). +- commit 546101e + +------------------------------------------------------------------- +Mon Oct 21 13:28:12 CEST 2024 - nik.borisov@suse.com + +- x86/entry: Remove unwanted instrumentation in common_interrupt() (git-fixes). +- commit 846156b + +------------------------------------------------------------------- +Mon Oct 21 13:16:04 CEST 2024 - nik.borisov@suse.com + +- x86/mm: Use IPIs to synchronize LAM enablement (git-fixes). +- commit 8a7a0be + +------------------------------------------------------------------- +Mon Oct 21 13:07:35 CEST 2024 - nik.borisov@suse.com + +- x86/amd_nb: Add new PCI IDs for AMD family 1Ah model 60h (git-fixes). +- commit 60a5f34 + +------------------------------------------------------------------- +Mon Oct 21 13:03:52 CEST 2024 - nik.borisov@suse.com + +- x86/PCI: Check pcie_find_root_port() return for NULL (git-fixes). +- commit 7c1cc11 + +------------------------------------------------------------------- +Mon Oct 21 12:43:44 CEST 2024 - vbabka@suse.cz + +- maple_tree: correct tree corruption on spanning store + (git-fixes). +- commit 2b034f1 + +------------------------------------------------------------------- +Mon Oct 21 12:35:07 CEST 2024 - nik.borisov@suse.com + +- x86/resctrl: Avoid overflow in MB settings in bw_validate() (git-fixes). +- commit b2f0d6d + +------------------------------------------------------------------- +Mon Oct 21 12:34:47 CEST 2024 - nik.borisov@suse.com + +- x86/resctrl: Annotate get_mem_config() functions as __init (git-fixes). +- commit 7e80f38 + +------------------------------------------------------------------- +Mon Oct 21 12:21:56 CEST 2024 - nik.borisov@suse.com + +- x86/apic: Always explicitly disarm TSC-deadline timer (git-fixes). +- commit 312d3e7 + +------------------------------------------------------------------- +Mon Oct 21 12:19:13 CEST 2024 - nik.borisov@suse.com + +- x86/CPU/AMD: Only apply Zenbleed fix for Zen2 during late microcode load (git-fixes). +- commit 0cb125d + +------------------------------------------------------------------- +Mon Oct 21 12:08:59 CEST 2024 - davide.benini@suse.com + +- ethtool: fail closed if we can't get max channel used in + indirection tables (CVE-2024-46834 bsc#1231096). +- commit 5cacc93 + +------------------------------------------------------------------- +Mon Oct 21 09:41:04 CEST 2024 - tiwai@suse.de + +- Bluetooth: btusb: Fix regression with fake CSR controllers + 0a12:0001 (git-fixes). +- Bluetooth: bnep: fix wild-memory-access in proto_unregister + (git-fixes). +- Bluetooth: Remove debugfs directory on module init failure + (git-fixes). +- Bluetooth: Call iso_exit() on module unload (git-fixes). +- Bluetooth: ISO: Fix multiple init when debugfs is disabled + (git-fixes). +- pinctrl: apple: check devm_kasprintf() returned value + (git-fixes). +- parport: Proper fix for array out-of-bounds access (git-fixes). +- iio: frequency: admv4420: fix missing select REMAP_SPI in + Kconfig (git-fixes). +- iio: adc: ti-ads8688: add missing select IIO_(TRIGGERED_)BUFFER + in Kconfig (git-fixes). +- iio: hid-sensors: Fix an error handling path in + _hid_sensor_set_report_latency() (git-fixes). +- iio: dac: stm32-dac-core: add missing select REGMAP_MMIO in + Kconfig (git-fixes). +- iio: dac: ltc1660: add missing select REGMAP_SPI in Kconfig + (git-fixes). +- iio: dac: ad5770r: add missing select REGMAP_SPI in Kconfig + (git-fixes). +- iio: amplifiers: ada4250: add missing select REGMAP_SPI in + Kconfig (git-fixes). +- iio: frequency: adf4377: add missing select REMAP_SPI in Kconfig + (git-fixes). +- iio: proximity: mb1232: add missing select + IIO_(TRIGGERED_)BUFFER in Kconfig (git-fixes). +- iio: dac: ad5766: add missing select IIO_(TRIGGERED_)BUFFER + in Kconfig (git-fixes). +- iio: dac: ad3552r: add missing select IIO_(TRIGGERED_)BUFFER + in Kconfig (git-fixes). +- iio: adc: ti-lmp92064: add missing select REGMAP_SPI in Kconfig + (git-fixes). +- iio: adc: ti-ads124s08: add missing select + IIO_(TRIGGERED_)BUFFER in Kconfig (git-fixes). +- iio: accel: kx022a: add missing select IIO_(TRIGGERED_)BUFFER + in Kconfig (git-fixes). +- iio: light: veml6030: fix ALS sensor resolution (git-fixes). +- iio: light: opt3001: add missing full-scale range value + (git-fixes). +- iio: light: veml6030: fix IIO device retrieval from embedded + device (git-fixes). +- iio: accel: bma400: Fix uninitialized variable field_value in + tap event handling (git-fixes). +- serial: imx: Update mctrl old_status on RTSD interrupt + (git-fixes). +- vt: prevent kernel-infoleak in con_font_get() (git-fixes). +- xhci: Mitigate failed set dequeue pointer commands (git-fixes). +- xhci: Fix incorrect stream context type macro (git-fixes). +- xhci: tegra: fix checked USB2 port number (git-fixes). +- usb: dwc3: Wait for EndXfer completion before restoring + GUSB2PHYCFG (git-fixes). +- usb: typec: altmode should keep reference to parent (git-fixes). +- commit 5e08e81 + +------------------------------------------------------------------- +Sat Oct 19 19:14:25 CEST 2024 - mfranc@suse.cz + +- supported.conf: mark nhpoly1305 module as supported (bsc#1231035) + In 59d03d7c990c, we marked adiantum as a supported module, I'm afraid + we need to mark nhpoly1305 as supported too (as a dependecy) if we + want adiantum to work. + This makes tcrypt test case 219 (adiantum) pass on SLE15-SP6 (tested + on z15 VM). +- commit 01d2906 + +------------------------------------------------------------------- +Fri Oct 18 19:31:45 CEST 2024 - tbogendoerfer@suse.de + +- vmxnet3: Fix packet corruption in vmxnet3_xdp_xmit_frame + (bsc#1226498). +- vmxnet3: Fix missing reserved tailroom (bsc#1226498). +- commit 1bd55aa + +------------------------------------------------------------------- +Fri Oct 18 14:00:12 CEST 2024 - tbogendoerfer@suse.de + +- vmxnet3: update to version 9 (bsc#1226498). +- vmxnet3: add command to allow disabling of offloads + (bsc#1226498). +- vmxnet3: add latency measurement support in vmxnet3 + (bsc#1226498). +- vmxnet3: prepare for version 9 changes (bsc#1226498). +- vmxnet3: Add XDP support (bsc#1226498). +- commit 3fdc8e3 + +------------------------------------------------------------------- +Fri Oct 18 11:38:13 CEST 2024 - ailiop@suse.com + +- SUNRPC: Fix integer overflow in decode_rc_list() (git-fixes). +- commit 15be003 + +------------------------------------------------------------------- +Fri Oct 18 11:37:32 CEST 2024 - ailiop@suse.com + +- NFSD: Mark filecache "down" if init fails (git-fixes). +- commit ceca4b8 + +------------------------------------------------------------------- +Fri Oct 18 11:34:31 CEST 2024 - ailiop@suse.com + +- SUNRPC: clnt.c: Remove misleading comment (git-fixes). +- commit 2e12710 + +------------------------------------------------------------------- +Fri Oct 18 11:26:40 CEST 2024 - ailiop@suse.com + +- nfs: fix memory leak in error path of nfs4_do_reclaim + (git-fixes). +- commit 1994ef6 + +------------------------------------------------------------------- +Fri Oct 18 11:24:48 CEST 2024 - ailiop@suse.com + +- nfsd: fix delegation_blocked() to block correctly for at least + 30 seconds (git-fixes). +- commit f66078d + +------------------------------------------------------------------- +Fri Oct 18 11:23:40 CEST 2024 - ailiop@suse.com + +- nfsd: return -EINVAL when namelen is 0 (git-fixes). +- commit 1bc1c36 + +------------------------------------------------------------------- +Fri Oct 18 11:22:25 CEST 2024 - ailiop@suse.com + +- nfsd: call cache_put if xdr_reserve_space returns NULL + (git-fixes). +- commit 003f784 + +------------------------------------------------------------------- +Fri Oct 18 11:21:41 CEST 2024 - ailiop@suse.com + +- nfsd: map the EBADMSG to nfserr_io to avoid warning (git-fixes). +- commit 5b8020a + +------------------------------------------------------------------- +Fri Oct 18 11:20:45 CEST 2024 - ailiop@suse.com + +- NFSD: Fix NFSv4's PUTPUBFH operation (git-fixes). +- commit 88290fb + +------------------------------------------------------------------- +Fri Oct 18 11:19:24 CEST 2024 - ailiop@suse.com + +- nfsd: fix refcount leak when file is unhashed after being found + (git-fixes). +- commit 5a551a1 + +------------------------------------------------------------------- +Fri Oct 18 11:18:34 CEST 2024 - ailiop@suse.com + +- nfsd: remove unneeded EEXIST error check in nfsd_do_file_acquire + (git-fixes). +- commit 6d18e0e + +------------------------------------------------------------------- +Fri Oct 18 11:17:44 CEST 2024 - ailiop@suse.com + +- NFS: Avoid unnecessary rescanning of the per-server delegation + list (git-fixes). +- commit e5841ef + +------------------------------------------------------------------- +Fri Oct 18 11:16:15 CEST 2024 - ailiop@suse.com + +- NFSv4: Fix clearing of layout segments in layoutreturn + (git-fixes). +- commit ec4c812 + +------------------------------------------------------------------- +Fri Oct 18 10:01:52 CEST 2024 - tiwai@suse.de + +- ALSA: hda/conexant - Use cached pin control for Node 0x1d on + HP EliteOne 1000 G2 (git-fixes). +- ALSA/hda: intel-sdw-acpi: simplify sdw-master-count property + read (stable-fixes). +- ALSA/hda: intel-sdw-acpi: fetch fwnode once in + sdw_intel_scan_controller() (stable-fixes). +- ALSA/hda: intel-sdw-acpi: cleanup sdw_intel_scan_controller + (stable-fixes). +- ALSA: hda/tas2781: Add new quirk for Lenovo, ASUS, Dell projects + (stable-fixes). +- ALSA: line6: update contact information (stable-fixes). +- ALSA: hda/conexant - Fix audio routing for HP EliteOne 1000 G2 + (stable-fixes). +- ALSA: hda: Sound support for HP Spectre x360 16 inch model 2024 + (stable-fixes). +- commit fb6c2ec + +------------------------------------------------------------------- +Fri Oct 18 09:54:54 CEST 2024 - tiwai@suse.de + +- firmware: arm_scmi: Fix the double free in + scmi_debugfs_common_setup() (git-fixes). +- ALSA: hda/cs8409: Fix possible NULL dereference (git-fixes). +- netdevsim: use cond_resched() in nsim_dev_trap_report_work() + (git-fixes). +- macsec: don't increment counters for an unrelated SA + (git-fixes). +- net: usb: usbnet: fix race in probe failure (git-fixes). +- HID: plantronics: Workaround for an unexcepted opposite volume + key (stable-fixes). +- usb: xhci: Fix problem with xhci resume from suspend + (stable-fixes). +- usb: storage: ignore bogus device raised by JieLi BR21 USB + sound chip (stable-fixes). +- net: phy: Remove LED entry from LEDs list on unregister + (git-fixes). +- net: phy: bcm84881: Fix some error handling paths (git-fixes). +- net: phy: dp83869: fix memory corruption when enabling fiber + (git-fixes). +- kthread: unpark only parked kthread (git-fixes). +- unicode: Don't special case ignorable code points + (stable-fixes). +- fbdev: sisfb: Fix strbuf array overflow (stable-fixes). +- fbcon: Fix a NULL pointer dereference issue in fbcon_putcs + (stable-fixes). +- drm/amd/display: Check null pointer before dereferencing se + (stable-fixes). +- driver core: bus: Fix double free in driver API bus_register() + (stable-fixes). +- driver core: bus: Return -EIO instead of 0 when show/store + invalid bus attribute (stable-fixes). +- comedi: ni_routing: tools: Check when the file could not be + opened (stable-fixes). +- serial: protect uart_port_dtr_rts() in uart_shutdown() too + (stable-fixes). +- usb: dwc2: Adjust the timing of USB Driver Interrupt + Registration in the Crashkernel Scenario (stable-fixes). +- usb: chipidea: udc: enable suspend interrupt after usb reset + (stable-fixes). +- i3c: master: cdns: Fix use after free vulnerability in + cdns_i3c_master Driver Due to Race Condition (stable-fixes). +- media: videobuf2-core: clear memory related fields in + __vb2_plane_dmabuf_put() (stable-fixes). +- clk: imx: Remove CLK_SET_PARENT_GATE for DRAM mux for i.MX7D + (stable-fixes). +- clk: bcm: bcm53573: fix OF node leak in init (stable-fixes). +- i2c: i801: Use a different adapter-name for IDF adapters + (stable-fixes). +- mfd: intel_soc_pmic_chtwc: Make Lenovo Yoga Tab 3 X90F DMI + match less strict (stable-fixes). +- soundwire: intel_bus_common: enable interrupts before exiting + reset (stable-fixes). +- PCI: Mark Creative Labs EMU20k2 INTx masking as broken + (stable-fixes). +- PCI: Add ACS quirk for Qualcomm SA8775P (stable-fixes). +- PCI: Add function 0 DMA alias quirk for Glenfly Arise chip + (stable-fixes). +- drm/amd/display: Revert "Check HDCP returned status" + (stable-fixes). +- HID: multitouch: Add support for lenovo Y9000P Touchpad + (stable-fixes). +- drm/amd/display: Remove a redundant check in authenticated_dp + (stable-fixes). +- HID: i2c-hid: Remove I2C_HID_QUIRK_SET_PWR_WAKEUP_DEV quirk + (stable-fixes). +- commit f829d20 + +------------------------------------------------------------------- +Fri Oct 18 08:40:12 CEST 2024 - nmorey@suse.com + +- RDMA/mlx5: Enforce umem boundaries for explicit ODP page faults (git-fixes) +- commit b9b835e + +------------------------------------------------------------------- +Fri Oct 18 08:39:51 CEST 2024 - nmorey@suse.com + +- RDMA/rtrs-srv: Avoid null pointer deref during path establishment (git-fixes) +- commit cf9eccb + +------------------------------------------------------------------- +Fri Oct 18 08:39:22 CEST 2024 - nmorey@suse.com + +- RDMA/mad: Improve handling of timed out WRs of mad agent (git-fixes) +- commit 72bef76 + +------------------------------------------------------------------- +Thu Oct 17 16:49:47 CEST 2024 - krisman@suse.de + +- io_uring/sqpoll: do not put cpumask on stack (git-fixes). +- io_uring/sqpoll: retain test for whether the CPU is valid + (git-fixes). +- commit ff84c2d + +------------------------------------------------------------------- +Thu Oct 17 11:49:13 CEST 2024 - vbabka@suse.cz + +- mm: avoid leaving partial pfn mappings around in error case + (CVE-2024-47674 bsc#1231673). +- commit 83d1625 + +------------------------------------------------------------------- +Thu Oct 17 09:29:21 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Avoid CPU lockups due fifo occupancy check loop (git-fixes) +- commit 21fb93d + +------------------------------------------------------------------- +Thu Oct 17 09:24:11 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix the GID table length (git-fixes) +- commit 6a0779e + +------------------------------------------------------------------- +Thu Oct 17 09:22:54 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix a bug while setting up Level-2 PBL pages (git-fixes) +- commit d91ede3 + +------------------------------------------------------------------- +Thu Oct 17 09:21:04 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Change the sequence of updating the CQ toggle value (git-fixes) +- commit 414cbde + +------------------------------------------------------------------- +Thu Oct 17 09:17:35 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Return more meaningful error (git-fixes) +- commit 6755798 + +------------------------------------------------------------------- +Thu Oct 17 09:16:17 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix incorrect dereference of srq in async event (git-fixes) +- commit 4e1ef61 + +------------------------------------------------------------------- +Thu Oct 17 09:15:12 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix out of bound check (git-fixes) +- commit d8d1339 + +------------------------------------------------------------------- +Thu Oct 17 09:12:59 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix the max CQ WQEs for older adapters (git-fixes) +- commit 598626b + +------------------------------------------------------------------- +Thu Oct 17 09:12:17 CEST 2024 - nmorey@suse.com + +- RDMA/srpt: Make slab cache names unique (git-fixes) +- commit 29c0fcb + +------------------------------------------------------------------- +Thu Oct 17 09:04:27 CEST 2024 - nmorey@suse.com + +- RDMA/irdma: Fix misspelling of "accept*" (git-fixes) +- commit 2566da7 + +------------------------------------------------------------------- +Thu Oct 17 09:03:06 CEST 2024 - nmorey@suse.com + +- RDMA/cxgb4: Fix RDMA_CM_EVENT_UNREACHABLE error for iWARP (git-fixes) +- commit 89fa27f + +------------------------------------------------------------------- +Thu Oct 17 08:59:43 CEST 2024 - nmorey@suse.com + +- RDMA/core: Fix ENODEV error for iWARP test over vlan (git-fixes) +- commit 4c15511 + +------------------------------------------------------------------- +Thu Oct 17 08:59:08 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Add a check for memory allocation (git-fixes) +- commit abea295 + +------------------------------------------------------------------- +Thu Oct 17 08:56:53 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix incorrect AVID type in WQE structure (git-fixes) +- commit ae91db1 + +------------------------------------------------------------------- +Thu Oct 17 08:56:20 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix a possible memory leak (git-fixes) +- commit 77c3f34 + +------------------------------------------------------------------- +Wed Oct 16 22:23:03 CEST 2024 - krisman@suse.de + +- io_uring/rw: fix cflags posting for single issue multishot read + (git-fixes). +- commit 320c7ee + +------------------------------------------------------------------- +Wed Oct 16 22:12:58 CEST 2024 - krisman@suse.de + +- io_uring/net: harden multishot termination case for recv + (git-fixes). +- commit 6529e65 + +------------------------------------------------------------------- +Wed Oct 16 20:26:49 CEST 2024 - krisman@suse.de + +- io_uring: check for presence of task_work rather than + TIF_NOTIFY_SIGNAL (git-fixes). +- commit 5b92400 + +------------------------------------------------------------------- +Wed Oct 16 20:18:34 CEST 2024 - krisman@suse.de + +- io_uring/io-wq: inherit cpuset of cgroup in io worker + (git-fixes). +- commit 474a07e + +------------------------------------------------------------------- +Wed Oct 16 20:13:50 CEST 2024 - krisman@suse.de + +- io_uring/io-wq: do not allow pinning outside of cpuset + (git-fixes). +- commit e99d8a8 + +------------------------------------------------------------------- +Wed Oct 16 19:57:51 CEST 2024 - krisman@suse.de + +- io_uring/rw: treat -EOPNOTSUPP for IOCB_NOWAIT like -EAGAIN + (git-fixes). +- io_uring/sqpoll: do not allow pinning outside of cpuset + (git-fixes). +- commit 37d0dce + +------------------------------------------------------------------- +Wed Oct 16 19:53:10 CEST 2024 - krisman@suse.de + +- io_uring/eventfd: move to more idiomatic RCU free usage + (git-fixes). +- commit 4e262c3 + +------------------------------------------------------------------- +Wed Oct 16 18:23:27 CEST 2024 - jack@suse.cz + +- udf: Avoid excessive partition lengths (bsc#1230773 + CVE-2024-46777). +- commit ec61258 + +------------------------------------------------------------------- +Wed Oct 16 18:23:13 CEST 2024 - jack@suse.cz + +- fsnotify: clear PARENT_WATCHED flags lazily (bsc#1231439 + CVE-2024-47660). +- commit 133a7e9 + +------------------------------------------------------------------- +Wed Oct 16 15:56:19 CEST 2024 - davide.benini@suse.com + +- netem: fix return value if duplicate enqueue fails + (CVE-2024-45016 bsc#1230429). +- commit 8c9c269 + +------------------------------------------------------------------- +Wed Oct 16 13:36:45 CEST 2024 - oneukum@suse.com + +- media: pci: ipu3-cio2: Initialise timing struct to avoid a + compiler warning (git-fixes). +- commit c21df3e + +------------------------------------------------------------------- +Wed Oct 16 12:34:26 CEST 2024 - oneukum@suse.com + +- wifi: rtw88: Fix USB/SDIO devices not transmitting beacons + (git-fixes). +- commit d46bb93 + +------------------------------------------------------------------- +Wed Oct 16 11:48:31 CEST 2024 - msuchanek@suse.de + +- crypto: powerpc/p10-aes-gcm - Add dependency on CRYPTO_SIMD and + re-enable CRYPTO_AES_GCM_P10 (bsc#1230501 ltc#208632). + - Update config files. +- crypto: powerpc/p10-aes-gcm - Register modules as SIMD + (bsc#1230501 ltc#208632). +- crypto: powerpc/p10-aes-gcm - Re-write AES/GCM stitched + implementation (bsc#1230501 ltc#208632). +- crypto: powerpc/p10-aes-gcm - Disable CRYPTO_AES_GCM_P10 + (bsc#1230501 ltc#208632). +- powerpc/crypto: don't build aes-gcm-p10 by default (bsc#1230501 + ltc#208632). +- powerpc/crypto: fix missing skcipher dependency for aes-gcm-p10 + (bsc#1230501 ltc#208632). +- commit a579f42 + +------------------------------------------------------------------- +Tue Oct 15 15:39:00 CEST 2024 - oneukum@suse.com + +- powercap: intel_rapl: Fix off by one in get_rpi() (git-fixes). +- commit 6c73c0c + ------------------------------------------------------------------- Tue Oct 15 14:45:11 CEST 2024 - mgorman@suse.de @@ -5,12 +6017,1289 @@ Tue Oct 15 14:45:11 CEST 2024 - mgorman@suse.de - No -rt specific changes this merge. - commit b49e7e5 +------------------------------------------------------------------- +Tue Oct 15 12:49:45 CEST 2024 - tzimmermann@suse.com + +- drm/amd/display: Disable DMCUB timeout for DCN35 (bsc#1231435 CVE-2024-46870) +- commit 0a39326 + +------------------------------------------------------------------- +Tue Oct 15 10:25:38 CEST 2024 - tzimmermann@suse.com + +- drm/amd/display: Add disable timeout option (bsc#1231435) +- commit cb303b5 + +------------------------------------------------------------------- +Tue Oct 15 08:38:57 CEST 2024 - tiwai@suse.de + +- Refresh patches.suse/paddings-add-paddings-to-TypeC-stuff.patch + Drop superfluous file mode modifications in the patch that broke the + patch expansion recently +- commit e7ac9e1 + +------------------------------------------------------------------- +Tue Oct 15 08:04:58 CEST 2024 - tiwai@suse.de + +- Move upstreamed scsi patch into sorted section +- commit 5db43b0 + +------------------------------------------------------------------- +Mon Oct 14 17:30:00 CEST 2024 - mkubecek@suse.cz + +- nbd: fix race between timeout and normal completion + (bsc#1230918). +- commit 57c54c8 + +------------------------------------------------------------------- +Mon Oct 14 16:34:18 CEST 2024 - lhenriques@suse.de + +- ext4: mark fc as ineligible using an handle in ext4_xattr_set() + (bsc#1231640). +- ext4: use handle to mark fc as ineligible in + __track_dentry_update() (bsc#1231639). +- jbd2: correctly compare tids with tid_geq function in + jbd2_fc_begin_commit (bsc#1231638). +- ext4: fix incorrect tid assumption in ext4_fc_mark_ineligible() + (bsc#1231637). +- ext4: fix fast commit inode enqueueing during a full journal + commit (bsc#1231636). +- ext4: don't track ranges in fast_commit if inode has inlined + data (bsc#1231635). +- ext4: fix possible tid_t sequence overflows (bsc#1231634). +- commit 6951914 + +------------------------------------------------------------------- +Mon Oct 14 15:56:50 CEST 2024 - oneukum@suse.com + +- net: sysfs: Fix /sys/class/net/ path for statistics + (git-fixes). +- commit 54925d7 + +------------------------------------------------------------------- +Mon Oct 14 15:54:12 CEST 2024 - oneukum@suse.com + +- devlink: Fix command annotation documentation (git-fixes). +- commit 2b95827 + +------------------------------------------------------------------- +Mon Oct 14 15:44:49 CEST 2024 - oneukum@suse.com + +- x86/Documentation: Indent 'note::' directive for protocol + version number note (git-fixes). +- commit ec31602 + +------------------------------------------------------------------- +Mon Oct 14 15:42:12 CEST 2024 - ddiss@suse.de + +- mm/filemap: optimize filemap folio adding (bsc#1231617). +- lib/xarray: introduce a new helper xas_get_order (bsc#1231617). +- mm/filemap: return early if failed to allocate memory for split + (bsc#1231617). +- commit c3c5888 + +------------------------------------------------------------------- +Mon Oct 14 15:32:15 CEST 2024 - oneukum@suse.com + +- srcu: Fix callbacks acceleration mishandling (git-fixes). +- task_work: add kerneldoc annotation for 'data' argument + (git-fixes). +- commit a4661ee + +------------------------------------------------------------------- +Mon Oct 14 08:34:06 CEST 2024 - tiwai@suse.de + +- HID: amd_sfh: Switch to device-managed dmam_alloc_coherent() + (git-fixes). +- hid: intel-ish-hid: Fix uninitialized variable 'rv' in + ish_fw_xfer_direct_dma (git-fixes). +- usb: dwc3: core: Stop processing of pending events if controller + is halted (git-fixes). +- usb: gadget: core: force synchronous registration (git-fixes). +- commit 2bb6fd5 + +------------------------------------------------------------------- +Sun Oct 13 09:19:15 CEST 2024 - tiwai@suse.de + +- hwmon: (adt7470) Add missing dependency on REGMAP_I2C + (git-fixes). +- hwmon: (adm9240) Add missing dependency on REGMAP_I2C + (git-fixes). +- hwmon: (mc34vr500) Add missing dependency on REGMAP_I2C + (git-fixes). +- hwmon: (tmp513) Add missing dependency on REGMAP_I2C + (git-fixes). +- hwmon: intel-m10-bmc-hwmon: relabel Columbiaville to CVL Die + Temperature (git-fixes). +- commit 07e1f67 + +------------------------------------------------------------------- +Sat Oct 12 10:12:54 CEST 2024 - tiwai@suse.de + +- gpio: aspeed: Use devm_clk api to manage clock source + (git-fixes). +- gpio: aspeed: Add the flush write to ensure the write complete + (git-fixes). +- ata: libata: avoid superfluous disk spin down + spin up during + hibernation (git-fixes). +- nouveau/dmem: Fix vulnerability in migrate_to_ram upon copy + error (git-fixes). +- nouveau/dmem: Fix privileged error in copy engine channel + (git-fixes). +- drm/vc4: Stop the active perfmon before being destroyed + (git-fixes). +- drm/v3d: Stop the active perfmon before being destroyed + (git-fixes). +- drm/i915/hdcp: fix connector refcounting (git-fixes). +- commit 8534efe + +------------------------------------------------------------------- +Sat Oct 12 05:12:33 CEST 2024 - shung-hsi.yu@suse.com + +- kABI: bpf: struct bpf_insn_acces_aux kABI workaround (git-fixes). +- commit c2cff36 + +------------------------------------------------------------------- +Fri Oct 11 18:25:31 CEST 2024 - vkarasulli@suse.de + +- Update patches.suse/ASoC-meson-axg-card-fix-use-after-free.patch + (git-fixes CVE-2024-46849 bsc#1231073). +- Update + patches.suse/KVM-x86-Acquire-kvm-srcu-when-handling-KVM_SET_VCPU_.patch + (git-fixes CVE-2024-46830 bsc#1231116). +- Update + patches.suse/PCI-keystone-Add-workaround-for-Errata-i2037-AM65x-S.patch + (stable-fixes CVE-2024-47667 bsc#1231481). +- Update patches.suse/USB-usbtmc-prevent-kernel-usb-infoleak.patch + (git-fixes CVE-2024-47671 bsc#1231541). +- Update patches.suse/arm64-tlb-Fix-TLBI-RANGE-operand.patch + (bsc#1229585 CVE-2024-35980 bsc#1224574). +- Update + patches.suse/dma-buf-heaps-Fix-off-by-one-in-CMA-heap-fault-handl.patch + (git-fixes CVE-2024-46852 bsc#1231082). +- Update + patches.suse/drm-amd-amdgpu-Check-tbo-resource-pointer.patch + (stable-fixes CVE-2024-46807 bsc#1231138). +- Update + patches.suse/drm-amd-display-Add-array-index-check-for-hdcp-ddc-a.patch + (stable-fixes CVE-2024-46804 bsc#1231132). +- Update + patches.suse/drm-amd-display-Avoid-overflow-from-uint32_t-to-uint.patch + (stable-fixes CVE-2024-47661 bsc#1231496). +- Update + patches.suse/drm-amd-display-Avoid-race-between-dcn10_set_drr-and.patch + (git-fixes CVE-2024-46851 bsc#1231081). +- Update + patches.suse/drm-amd-display-Check-BIOS-images-before-it-is-used.patch + (stable-fixes CVE-2024-46809 bsc#1231148). +- Update + patches.suse/drm-amd-display-Check-gpio_id-before-used-as-array-i.patch + (stable-fixes CVE-2024-46818 bsc#1231203). +- Update + patches.suse/drm-amd-display-Check-msg_id-before-processing-trans.patch + (stable-fixes CVE-2024-46814 bsc#1231193). +- Update + patches.suse/drm-amd-display-Check-num_valid_sets-before-accessin.patch + (stable-fixes CVE-2024-46815 bsc#1231195). +- Update + patches.suse/drm-amd-display-Correct-the-defined-value-for-AMDGPU.patch + (stable-fixes CVE-2024-46871 bsc#1231434). +- Update + patches.suse/drm-amd-display-Fix-index-may-exceed-array-range-wit.patch + (stable-fixes CVE-2024-46811 bsc#1231179). +- Update + patches.suse/drm-amd-display-Remove-register-from-DCN35-DMCUB-dia.patch + (stable-fixes CVE-2024-47662 bsc#1231440). +- Update + patches.suse/drm-amd-display-Skip-inactive-planes-within-ModeSupp.patch + (stable-fixes CVE-2024-46812 bsc#1231187). +- Update + patches.suse/drm-amd-display-Stop-amdgpu_dm-initialize-when-strea.patch + (stable-fixes CVE-2024-46817 bsc#1231200). +- Update + patches.suse/drm-amd-display-added-NULL-check-at-start-of-dc_vali.patch + (stable-fixes CVE-2024-46802 bsc#1231111). +- Update + patches.suse/drm-amd-pm-Fix-negative-array-index-read.patch + (stable-fixes CVE-2024-46821 bsc#1231169). +- Update + patches.suse/drm-amdgpu-Fix-smatch-static-checker-warning.patch + (stable-fixes CVE-2024-46835 bsc#1231098). +- Update + patches.suse/drm-amdgpu-Fix-the-warning-division-or-modulo-by-zer.patch + (stable-fixes CVE-2024-46806 bsc#1231136). +- Update + patches.suse/drm-amdgpu-fix-the-waring-dereferencing-hive.patch + (stable-fixes CVE-2024-46805 bsc#1231135). +- Update + patches.suse/drm-amdgpu-the-warning-dereferencing-obj-for-nbio_v7.patch + (stable-fixes CVE-2024-46819 bsc#1231202). +- Update + patches.suse/drm-amdkfd-Check-debug-trap-enable-before-write-dbg_.patch + (stable-fixes CVE-2024-46803 bsc#1231131). +- Update + patches.suse/drm-bridge-tc358767-Check-if-fully-initialized-befor.patch + (stable-fixes CVE-2024-46810 bsc#1231178). +- Update + patches.suse/i3c-mipi-i3c-hci-Error-out-instead-on-BUG_ON-in-IBI-.patch + (stable-fixes CVE-2024-47665 bsc#1231452). +- Update + patches.suse/lib-generic-radix-tree.c-Fix-rare-race-in-__genradix.patch + (stable-fixes CVE-2024-47668 bsc#1231502). +- Update + patches.suse/msft-hv-3054-x86-hyperv-fix-kexec-crash-due-to-VP-assist-page-cor.patch + (git-fixes CVE-2024-46864 bsc#1231108). +- Update + patches.suse/nilfs2-fix-state-management-in-error-path-of-log-writing-function.patch + (git-fixes CVE-2024-47669 bsc#1231474). +- Update + patches.suse/ocfs2-add-bounds-checking-to-ocfs2_xattr_find_entry.patch + (bsc#1228410 CVE-2024-41016 CVE-2024-47670 bsc#1231537). +- Update + patches.suse/perf-x86-intel-Limit-the-period-on-Haswell.patch + (git-fixes CVE-2024-46848 bsc#1231072). +- Update + patches.suse/platform-x86-panasonic-laptop-Fix-SINF-array-out-of-.patch + (git-fixes CVE-2024-46859 bsc#1231089). +- Update + patches.suse/rcu-Fix-buffer-overflow-in-print_cpu_stall_info.patch + (bsc#1226623 CVE-2024-38576). +- Update + patches.suse/rcu-tasks-Fix-show_rcu_tasks_trace_gp_kthread-buffer-overflow.patch + (bsc#1226631 CVE-2024-38577). +- Update + patches.suse/scsi-lpfc-Handle-mailbox-timeouts-in-lpfc_get_sfp_in.patch + (bsc#1228857 CVE-2024-46842 bsc#1231101). +- Update + patches.suse/spi-nxp-fspi-fix-the-KASAN-report-out-of-bounds-bug.patch + (git-fixes CVE-2024-46853 bsc#1231083). +- Update + patches.suse/spi-rockchip-Resolve-unbalanced-runtime-PM-system-PM.patch + (git-fixes CVE-2024-46846 bsc#1231075). +- Update + patches.suse/staging-iio-frequency-ad9834-Validate-frequency-para.patch + (git-fixes CVE-2024-47663 bsc#1231441). +- Update + patches.suse/usb-gadget-aspeed_udc-validate-endpoint-index-for-as.patch + (stable-fixes CVE-2024-46836 bsc#1231092). +- Update + patches.suse/usbnet-ipheth-do-not-stop-RX-on-failing-RX-callback.patch + (git-fixes CVE-2024-46861 bsc#1231102). +- Update + patches.suse/wifi-ath12k-fix-firmware-crash-due-to-invalid-peer-n.patch + (stable-fixes CVE-2024-46827 bsc#1231171). +- Update + patches.suse/wifi-iwlwifi-mvm-don-t-wait-for-tx-queues-if-firmwar.patch + (stable-fixes CVE-2024-47672 bsc#1231540). +- Update + patches.suse/wifi-iwlwifi-mvm-pause-TCM-when-the-firmware-is-stop.patch + (stable-fixes CVE-2024-47673 bsc#1231539). +- Update + patches.suse/wifi-iwlwifi-mvm-use-IWL_FW_CHECK-for-link-ID-check.patch + (stable-fixes CVE-2024-46825 bsc#1231170). +- Update + patches.suse/wifi-mt76-mt7921-fix-NULL-pointer-access-in-mt7921_i.patch + (stable-fixes CVE-2024-46860 bsc#1231093). +- commit 1ed6329 + +------------------------------------------------------------------- +Fri Oct 11 14:36:01 CEST 2024 - mgorman@suse.de + +- sched/smt: Fix unbalance sched_smt_present dec/inc + (CVE-2024-44958 bsc#1230179). +- sched/smt: Introduce sched_smt_present_inc/dec() helper + (CVE-2024-44958 bsc#1230179). +- commit b09820b + +------------------------------------------------------------------- +Fri Oct 11 13:25:41 CEST 2024 - tiwai@suse.de + +- crypto: octeontx* - Select CRYPTO_AUTHENC (git-fixes). +- commit 155c418 + +------------------------------------------------------------------- +Fri Oct 11 13:23:57 CEST 2024 - tiwai@suse.de + +- spi: spi-imx: Fix pm_runtime_set_suspended() with runtime pm + enabled (git-fixes). +- spi: s3c64xx: fix timeout counters in flush_fifo (git-fixes). +- i2c: synquacer: Deal with optional PCLK correctly (git-fixes). +- media: imx335: Fix reset-gpio handling (git-fixes). +- i2c: xiic: Try re-initialization on bus busy timeout + (git-fixes). +- platform/x86: touchscreen_dmi: add nanote-next quirk + (stable-fixes). +- platform/x86: lenovo-ymc: Ignore the 0x0 state (stable-fixes). +- hwmon: (nct6775) add G15CF to ASUS WMI monitoring list + (stable-fixes). +- power: reset: brcmstb: Do not go into infinite loop if reset + fails (stable-fixes). +- wifi: ath9k_htc: Use __skb_set_length() for resetting urb + before resubmit (stable-fixes). +- wifi: mt76: mt7915: hold dev->mt76.mutex while disabling tx + worker (stable-fixes). +- wifi: mt76: mt7915: add dummy HW offload of IEEE 802.11 + fragmentation (stable-fixes). +- wifi: mt76: mt7915: disable tx worker during tx BA session + enable/disable (stable-fixes). +- wifi: rtw89: avoid reading out of bounds when loading TX power + FW elements (stable-fixes). +- wifi: rtw89: correct base HT rate mask for firmware + (stable-fixes). +- wifi: mwifiex: Fix memcpy() field-spanning write warning in + mwifiex_cmd_802_11_scan_ext() (stable-fixes). +- wifi: cfg80211: Set correct chandef when starting CAC + (stable-fixes). +- wifi: mac80211: fix RCU list iterations (stable-fixes). +- wifi: iwlwifi: mvm: avoid NULL pointer dereference + (stable-fixes). +- wifi: iwlwifi: allow only CN mcc from WRDD (stable-fixes). +- wifi: iwlwifi: mvm: drop wrong STA selection in TX + (stable-fixes). +- wifi: iwlwifi: mvm: Fix a race in scan abort flow + (stable-fixes). +- wifi: iwlwifi: mvm: use correct key iteration (stable-fixes). +- wifi: ath9k: fix possible integer overflow in + ath9k_get_et_stats() (stable-fixes). +- wifi: ath11k: fix array out-of-bound access in SoC stats + (stable-fixes). +- wifi: ath12k: fix array out-of-bound access in SoC stats + (stable-fixes). +- wifi: rtw89: avoid to add interface to list twice when SER + (stable-fixes). +- wifi: rtw88: select WANT_DEV_COREDUMP (stable-fixes). +- i2c: xiic: improve error message when transfer fails to start + (stable-fixes). +- i2c: synquacer: Remove a clk reference from struct synquacer_i2c + (stable-fixes). +- media: i2c: imx335: Enable regulator supplies (stable-fixes). +- commit 490fb1f + +------------------------------------------------------------------- +Fri Oct 11 13:16:10 CEST 2024 - tiwai@suse.de + +- ALSA: usb-audio: Replace complex quirk lines with macros + (stable-fixes). +- commit 6f67136 + +------------------------------------------------------------------- +Fri Oct 11 13:14:26 CEST 2024 - tiwai@suse.de + +- Bluetooth: RFCOMM: FIX possible deadlock in + rfcomm_sk_state_change (git-fixes). +- ACPI: battery: Fix possible crash when unregistering a battery + hook (git-fixes). +- ACPI: battery: Simplify battery hook locking (stable-fixes). +- ACPI: resource: Add Asus ExpertBook B2502CVA to + irq1_level_low_skip_override[] (stable-fixes). +- ACPI: resource: Add Asus Vivobook X1704VAP to + irq1_level_low_skip_override[] (stable-fixes). +- HID: Ignore battery for all ELAN I2C-HID devices (stable-fixes). +- HID: multitouch: Add support for Thinkpad X12 Gen 2 Kbd + Portfolio (stable-fixes). +- ASoC: codecs: wsa883x: Handle reading version failure + (stable-fixes). +- ALSA: usb-audio: Add logitech Audio profile quirk + (stable-fixes). +- ALSA: usb-audio: Define macros for quirk table entries + (stable-fixes). +- ALSA: hdsp: Break infinite MIDI input flush loop (stable-fixes). +- ALSA: asihpi: Fix potential OOB array access (stable-fixes). +- ALSA: usb-audio: Add input value sanity checks for standard + types (stable-fixes). +- ACPI: PAD: fix crash in exit_round_robin() (stable-fixes). +- ACPI: video: Add force_vendor quirk for Panasonic Toughbook + CF-18 (stable-fixes). +- ACPI: CPPC: Add support for setting EPP register in FFH + (stable-fixes). +- ACPI: EC: Do not release locks during operation region accesses + (stable-fixes). +- ACPICA: iasl: handle empty connection_node (stable-fixes). +- ACPICA: Fix memory leak if acpi_ps_get_next_field() fails + (stable-fixes). +- ACPICA: Fix memory leak if acpi_ps_get_next_namepath() fails + (stable-fixes). +- ACPICA: check null return of ACPI_ALLOCATE_ZEROED() in + acpi_db_convert_to_package() (stable-fixes). +- crypto: octeontx2 - Fix authenc setkey (stable-fixes). +- crypto: octeontx - Fix authenc setkey (stable-fixes). +- Bluetooth: btusb: Add Realtek RTL8852C support ID 0x0489:0xe122 + (stable-fixes). +- can: netlink: avoid call to do_set_data_bittiming callback + with stale can_priv::ctrlmode (stable-fixes). +- commit 650f32e + +------------------------------------------------------------------- +Fri Oct 11 11:33:14 CEST 2024 - ailiop@suse.com + +- ocfs2: fix the la space leak when unmounting an ocfs2 volume + (git-fixes). +- commit 92d1b30 + +------------------------------------------------------------------- +Fri Oct 11 11:29:38 CEST 2024 - ailiop@suse.com + +- jfs: Fix uninit-value access of new_ea in ea_buffer (git-fixes). +- commit b1e0ef1 + +------------------------------------------------------------------- +Fri Oct 11 11:29:02 CEST 2024 - ailiop@suse.com + +- jfs: check if leafidx greater than num leaves per dmap tree + (git-fixes). +- commit 4cb79e7 + +------------------------------------------------------------------- +Fri Oct 11 11:28:08 CEST 2024 - ailiop@suse.com + +- jfs: Fix uaf in dbFreeBits (git-fixes). +- commit da4aab1 + +------------------------------------------------------------------- +Fri Oct 11 11:27:16 CEST 2024 - ailiop@suse.com + +- jfs: UBSAN: shift-out-of-bounds in dbFindBits (git-fixes). +- commit fee8a70 + +------------------------------------------------------------------- +Fri Oct 11 06:57:49 CEST 2024 - shung-hsi.yu@suse.com + +- kABI: bpf: enum bpf_{type_flag,arg_type} kABI workaround (git-fixes). +- commit 93e6047 + +------------------------------------------------------------------- +Thu Oct 10 19:18:41 CEST 2024 - vkarasulli@suse.de + +- iommu/amd: Allocate the page table root using GFP_KERNEL + (git-fixes). +- commit cdbbb3f + +------------------------------------------------------------------- +Thu Oct 10 19:10:13 CEST 2024 - vkarasulli@suse.de + +- iommu/amd: Fix typo of , instead of ; (git-fixes). +- commit baf85d0 + +------------------------------------------------------------------- +Thu Oct 10 17:32:18 CEST 2024 - dwagner@suse.de + +- block: sed-opal: add ioctl IOC_OPAL_SET_SID_PW (bsc#1229677). +- commit 5ca02dc + +------------------------------------------------------------------- +Thu Oct 10 11:54:20 CEST 2024 - hare@suse.de + +- nvme-multipath: suppress partition scan until the disk is ready + (bsc#1228244). +- commit 5accc60 + +------------------------------------------------------------------- +Wed Oct 9 23:52:08 CEST 2024 - krisman@suse.de + +- fix bitmap corruption on close_range() with CLOSE_RANGE_UNSHARE + (CVE-2024-45025 bsc#1230456). +- commit c3824ef + +------------------------------------------------------------------- +Wed Oct 9 19:24:22 CEST 2024 - oneukum@suse.com + +- i2c: core: Setup i2c_adapter runtime-pm before calling + device_add() (git-fixes). +- commit 5095dfb + +------------------------------------------------------------------- +Wed Oct 9 19:15:38 CEST 2024 - oneukum@suse.com + +- i2c: ismt: kill transaction in hardware on timeout (git-fixes). +- commit f6029bb + +------------------------------------------------------------------- +Wed Oct 9 19:11:31 CEST 2024 - vkarasulli@suse.de + +- iommufd: Check the domain owner of the parent before creating + a nesting domain (git-fixes). +- commit 3ff7340 + +------------------------------------------------------------------- +Wed Oct 9 19:01:29 CEST 2024 - vkarasulli@suse.de + +- iommufd: Protect against overflow of ALIGN() during iova + allocation (git-fixes). +- commit fffeb67 + +------------------------------------------------------------------- +Wed Oct 9 18:59:06 CEST 2024 - vkarasulli@suse.de + +- iommu/amd: Do not set the D bit on AMD v2 table entries + (git-fixes). +- commit e3053a9 + +------------------------------------------------------------------- +Wed Oct 9 18:58:44 CEST 2024 - oneukum@suse.com + +- i2c: omap: wakeup the controller during suspend() callback + (git-fixes). +- commit 52f3dad + +------------------------------------------------------------------- +Wed Oct 9 18:57:28 CEST 2024 - oneukum@suse.com + +- i2c: omap: switch to NOIRQ_SYSTEM_SLEEP_PM_OPS() and + RUNTIME_PM_OPS() (git-fixes). +- commit 3fe2f94 + +------------------------------------------------------------------- +Wed Oct 9 17:03:57 CEST 2024 - tiwai@suse.de + +- Drop the previous HD-audio TAS2781 fix (bsc#1230132) + The proposed fix turned out to be incorrect +- commit b3a4c29 + +------------------------------------------------------------------- +Wed Oct 9 16:10:51 CEST 2024 - rgoldwyn@suse.com + +- Update config files: Enable NFSD_V2 (bsc#1230914) + NFSv2 was disabled because of the upstream kernel commit 2f3a4b2ac2f2 + ("nfsd: allow disabling NFSv2 at compile time"). + Enable it for the few users who cannot upgrade to NFSv3. + https://bugzilla.suse.com/show_bug.cgi?id=1230914#c5 +- commit 9e3254d + ------------------------------------------------------------------- Wed Oct 9 16:07:58 CEST 2024 - nstange@suse.de - Enable livepatching related packages on -RT (jsc#PED-1706) - commit cdfdbf1 +------------------------------------------------------------------- +Wed Oct 9 15:24:02 CEST 2024 - oneukum@suse.com + +- i2c: stm32f7: perform most of irq job in threaded handler + (git-fixes). +- commit 4a35980 + +------------------------------------------------------------------- +Wed Oct 9 15:11:44 CEST 2024 - oneukum@suse.com + +- i2c: i801: Add lis3lv02d for Dell XPS 15 7590 (git-fixes). +- commit 38f58af + +------------------------------------------------------------------- +Wed Oct 9 14:59:29 CEST 2024 - oneukum@suse.com + +- i2c: i801: Add lis3lv02d for Dell Precision 3540 (git-fixes). +- commit 036aff9 + +------------------------------------------------------------------- +Wed Oct 9 14:47:22 CEST 2024 - oneukum@suse.com + +- i2c: cpm: Remove linux,i2c-index conversion from be32 + (git-fixes). +- commit 5d04b4e + +------------------------------------------------------------------- +Wed Oct 9 14:42:11 CEST 2024 - oneukum@suse.com + +- i2c: ocores: Move system PM hooks to the NOIRQ phase + (git-fixes). +- commit 0df7a53 + +------------------------------------------------------------------- +Wed Oct 9 14:41:10 CEST 2024 - oneukum@suse.com + +- i2c: ocores: Remove #ifdef guards for PM related functions + (git-fixes). +- commit ead06ad + +------------------------------------------------------------------- +Wed Oct 9 14:38:59 CEST 2024 - tiwai@suse.de + +- wifi: iwlwifi: config: label 'gl' devices as discrete + (git-fixes). +- commit 6321867 + +------------------------------------------------------------------- +Wed Oct 9 14:36:36 CEST 2024 - tiwai@suse.de + +- kconfig: qconf: fix buffer overflow in debug links (git-fixes). +- platform/x86: ISST: Fix the KASAN report slab-out-of-bounds bug + (git-fixes). +- i2c: stm32f7: Do not prepare/unprepare clock during runtime + suspend/resume (git-fixes). +- gpio: davinci: fix lazy disable (git-fixes). +- drm/i915/gem: fix bitwise and logical AND mixup (git-fixes). +- drm/sched: Always wake up correct scheduler in + drm_sched_entity_push_job (git-fixes). +- drm/sched: Add locking to drm_sched_entity_modify_sched + (git-fixes). +- drm: Consistently use struct drm_mode_rect for FB_DAMAGE_CLIPS + (git-fixes). +- Bluetooth: hci_event: Align BR/EDR JUST_WORKS paring with LE + (git-fixes). +- Bluetooth: btmrvl: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- ieee802154: Fix build error (git-fixes). +- Input: adp5589-keys - fix adp5589_gpio_get_value() (git-fixes). +- Input: adp5589-keys - fix NULL pointer dereference (git-fixes). +- drm/amdgpu/vcn: enable AV1 on both instances (stable-fixes). +- drm/amd/display: Validate backlight caps are sane + (stable-fixes). +- drm/amd/display: Skip to enable dsc if it has been off + (stable-fixes). +- drm/amd/display: Add HDMI DSC native YCbCr422 support + (stable-fixes). +- drm/amd/display: Clean up dsc blocks in accelerated mode + (stable-fixes). +- drm/amd/display: Round calculated vtotal (stable-fixes). +- efistub/tpm: Use ACPI reclaim memory for event log to avoid + corruption (stable-fixes). +- iio: magnetometer: ak8975: drop incorrect AK09116 compatible + (git-fixes). +- Input: i8042 - add TUXEDO Stellaris 15 Slim Gen6 AMD to i8042 + quirk table (stable-fixes). +- Input: i8042 - add another board name for TUXEDO Stellaris + Gen5 AMD line (stable-fixes). +- Input: i8042 - add TUXEDO Stellaris 16 Gen5 AMD to i8042 quirk + table (stable-fixes). +- hwmon: (max16065) Fix alarm attributes (git-fixes). +- ACPI: resource: Add another DMI match for the TongFang GMxXGxx + (stable-fixes). +- wifi: rtw88: 8821cu: Remove VID/PID 0bda:c82c (stable-fixes). +- ASoC: tas2781: Use of_property_read_reg() (stable-fixes). +- wifi: iwlwifi: remove AX101, AX201 and AX203 support from LNL + (stable-fixes). +- hwmon: (max16065) Remove use of i2c_match_id() (stable-fixes). +- nouveau/gsp: Avoid addressing beyond end of rpc->entries + (stable-fixes). +- thunderbolt: Improve DisplayPort tunnel setup process to be + more robust (stable-fixes). +- iio: magnetometer: ak8975: Fix 'Unexpected device' error + (git-fixes). +- iio: magnetometer: ak8975: Convert enum->pointer for data in + the match tables (stable-fixes). +- commit 85984c8 + +------------------------------------------------------------------- +Wed Oct 9 14:26:52 CEST 2024 - oneukum@suse.com + +- i2c: core: fix lockdep warning for sparsely nested adapter chain + (git-fixes). +- commit 691570d + +------------------------------------------------------------------- +Wed Oct 9 14:23:18 CEST 2024 - oneukum@suse.com + +- i2c: exynos5: Calculate t_scl_l, t_scl_h according to i2c spec + (git-fixes). +- commit cbbb120 + +------------------------------------------------------------------- +Wed Oct 9 14:15:28 CEST 2024 - oneukum@suse.com + +- i2c: i801: add helper i801_restore_regs (git-fixes). +- commit 3839f86 + +------------------------------------------------------------------- +Wed Oct 9 14:01:22 CEST 2024 - oneukum@suse.com + +- i2c: rcar: properly format a debug output (git-fixes). +- commit e7085c8 + +------------------------------------------------------------------- +Wed Oct 9 12:04:43 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add a test case to write mtu result into .rodata + (git-fixes). +- selftests/bpf: Add a test case to write strtol result into + .rodata (git-fixes). +- commit 805bbba + +------------------------------------------------------------------- +Wed Oct 9 12:03:13 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Rename ARG_PTR_TO_LONG test description + (git-fixes). +- selftests/bpf: Fix ARG_PTR_TO_LONG {half-,}uninitialized test + (git-fixes). +- bpf: Zero former ARG_PTR_TO_{LONG,INT} args in case of error + (git-fixes). +- bpf: Improve check_raw_mode_ok test for MEM_UNINIT-tagged types + (git-fixes). +- commit 4580630 + +------------------------------------------------------------------- +Wed Oct 9 11:27:23 CEST 2024 - shung-hsi.yu@suse.com + +- bpf: Fix helper writes to read-only maps (git-fixes). +- bpf: Remove truncation test in bpf_strtol and bpf_strtoul + helpers (git-fixes). +- bpf: Fix bpf_strtol and bpf_strtoul helpers for 32bit + (git-fixes). +- commit 5fc2ffd + +------------------------------------------------------------------- +Wed Oct 9 11:17:51 CEST 2024 - vkarasulli@suse.de + +- bpf: Remove tst_run from lwt_seg6local_prog_ops (bsc#1230801 + CVE-2024-46754). +- commit a7335b8 + +------------------------------------------------------------------- +Wed Oct 9 11:12:18 CEST 2024 - shung-hsi.yu@suse.com + +- bpf: Fix error message on kfunc arg type mismatch (git-fixes). +- commit 04ed437 + +------------------------------------------------------------------- +Wed Oct 9 10:59:52 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: test for malformed BPF_CORE_TYPE_ID_LOCAL + relocation (git-fixes). +- bpf: correctly handle malformed BPF_CORE_TYPE_ID_LOCAL relos + (git-fixes). +- commit 67ebe66 + +------------------------------------------------------------------- +Wed Oct 9 10:58:29 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add tests for ldsx of pkt data/data_end/data_meta + accesses (git-fixes). +- bpf: Fail verification for sign-extension of packet + data/data_end/data_meta (git-fixes). +- bpf, lsm: Add disabled BPF LSM hook list (git-fixes). +- commit df1486e + +------------------------------------------------------------------- +Wed Oct 9 10:03:28 CEST 2024 - shung-hsi.yu@suse.com + +- bpf, net: Fix a potential race in do_sock_getsockopt() + (git-fixes). +- bpf: Fix tailcall cases in test_bpf (git-fixes). +- bpf, x64: Remove tail call detection (git-fixes). +- bpf, verifier: Correct tail_call_reachable for bpf prog + (git-fixes). +- commit e072387 + +------------------------------------------------------------------- +Tue Oct 8 18:58:44 CEST 2024 - ohering@suse.de + +- add bug reference for a mana change (bsc#1229769). +- commit 64c619e + +------------------------------------------------------------------- +Tue Oct 8 17:54:22 CEST 2024 - dsterba@suse.com + +- net/sched: taprio: extend minimum interval restriction to entire cycle too (CVE-2024-36244 bsc#1226797) +- commit 5ade9d6 + +------------------------------------------------------------------- +Tue Oct 8 17:39:16 CEST 2024 - andrea.porta@suse.com + +- arm64: fix selection of HAVE_DYNAMIC_FTRACE_WITH_ARGS + (git-fixes). +- commit 7e90455 + +------------------------------------------------------------------- +Tue Oct 8 17:01:15 CEST 2024 - andrea.porta@suse.com + +- arm64: errata: Enable the AC03_CPU_38 workaround for ampere1a + (git-fixes). +- commit 994f16f + +------------------------------------------------------------------- +Tue Oct 8 16:00:31 CEST 2024 - jlee@suse.com + +- aoe: fix the potential use-after-free problem in more places + (bsc#1218562 CVE-2023-6270). +- commit 1a991ba + +------------------------------------------------------------------- +Tue Oct 8 14:34:25 CEST 2024 - tiwai@suse.de + +- ALSA: hda: tas2781: Fix missing setup at runtime PM + (bsc#1230132). +- commit 3dc7842 + +------------------------------------------------------------------- +Tue Oct 8 14:33:35 CEST 2024 - tiwai@suse.de + +- Move upstreamed sound patch into sorted section +- commit b11079c + +------------------------------------------------------------------- +Tue Oct 8 14:31:27 CEST 2024 - msuchanek@suse.de + +- kbuild,bpf: Add module-specific pahole flags for distilled + base BTF (bsc#1230414 bsc#1229450). +- kbuild: bpf: Tell pahole to DECL_TAG kfuncs (bsc#1230414 + bsc#1229450). +- kbuild, bpf: Use test-ge check for v1.25-only pahole + (bsc#1230414 bsc#1229450). +- kbuild,bpf: Switch to using --btf_features for pahole v1.26 + and later (bsc#1230414 bsc#1229450). +- kbuild: avoid too many execution of scripts/pahole-flags.sh + (bsc#1230414 bsc#1229450). +- btf, scripts: rust: drop is_rust_module.sh (bsc#1230414 + bsc#1229450). +- commit e2cacce + +------------------------------------------------------------------- +Tue Oct 8 13:40:12 CEST 2024 - tiwai@suse.de + +- Use pahole -j1 option for reproducible builds (bsc#1230414 + bsc#1229450). +- commit 340585e + +------------------------------------------------------------------- +Tue Oct 8 11:56:04 CEST 2024 - lhenriques@suse.de + +- ceph: fix cap ref leak via netfs init_request (bsc#1231384). +- commit ca24d43 + +------------------------------------------------------------------- +Tue Oct 8 11:50:08 CEST 2024 - jgross@suse.com + +- vhost/scsi: null-ptr-dereference in vhost_scsi_get_req() + (git-fixes). +- commit 267df6b + +------------------------------------------------------------------- +Tue Oct 8 11:17:47 CEST 2024 - jgross@suse.com + +- virtio_console: fix misc probe bugs (git-fixes). +- commit f7d3065 + +------------------------------------------------------------------- +Tue Oct 8 11:13:40 CEST 2024 - ohering@suse.de + +- RDMA/mana_ib: use the correct page size for mapping user-mode + doorbell page (git-fixes). +- RDMA/mana_ib: use the correct page table index based on hardware + page size (git-fixes). +- tools: hv: rm .*.cmd when make clean (git-fixes). +- x86/hyperv: Set X86_FEATURE_TSC_KNOWN_FREQ when Hyper-V provides + frequency (git-fixes). +- commit 059fd95 + +------------------------------------------------------------------- +Tue Oct 8 10:45:27 CEST 2024 - jgross@suse.com + +- KVM: VMX: Set PFERR_GUEST_{FINAL,PAGE}_MASK if and only if + the GVA is valid (git-fixes). +- commit bb6f3d3 + +------------------------------------------------------------------- +Tue Oct 8 10:13:08 CEST 2024 - jgross@suse.com + +- KVM: x86/mmu: Skip emulation on page fault iff 1+ SPs were + unprotected (git-fixes). +- commit bcfafe2 + +------------------------------------------------------------------- +Tue Oct 8 09:35:38 CEST 2024 - jgross@suse.com + +- KVM: x86/mmu: Trigger unprotect logic only on write-protection + page faults (git-fixes). +- commit 322cf36 + +------------------------------------------------------------------- +Mon Oct 7 19:31:27 CEST 2024 - jgross@suse.com + +- KVM: VMX: Also clear SGX EDECCSSA in KVM CPU caps when SGX is + disabled (git-fixes). +- commit d7b7771 + +------------------------------------------------------------------- +Mon Oct 7 19:03:42 CEST 2024 - fdmanana@suse.com + +- btrfs: send: fix invalid clone operation for file that got + its size decreased (git-fixes). +- commit 26ee3ac + +------------------------------------------------------------------- +Mon Oct 7 18:25:48 CEST 2024 - jgross@suse.com + +- KVM: x86: Exit to userspace if fastpath triggers one on + instruction skip (git-fixes). +- commit 1621f7b + +------------------------------------------------------------------- +Mon Oct 7 17:53:20 CEST 2024 - jgross@suse.com + +- KVM: x86: Dedup fastpath MSR post-handling logic (git-fixes). +- commit c20ff7c + +------------------------------------------------------------------- +Mon Oct 7 17:19:33 CEST 2024 - jgross@suse.com + +- KVM: x86: Re-enter guest if WRMSR(X2APIC_ICR) fastpath is + successful (git-fixes). +- commit 0dc4c78 + +------------------------------------------------------------------- +Mon Oct 7 16:25:12 CEST 2024 - jgross@suse.com + +- kABI fix of VM: x86: Re-split x2APIC ICR into ICR+ICR2 for AMD + (x2AVIC) (git-fixes). +- commit 0a6716e + +------------------------------------------------------------------- +Mon Oct 7 15:01:37 CEST 2024 - jgross@suse.com + +- KVM: x86: Re-split x2APIC ICR into ICR+ICR2 for AMD (x2AVIC) + (git-fixes). +- commit 6a07b23 + +------------------------------------------------------------------- +Mon Oct 7 14:28:23 CEST 2024 - jgross@suse.com + +- KVM: x86: Move x2APIC ICR helper above kvm_apic_write_nodecode() + (git-fixes). +- commit 4f194f7 + +------------------------------------------------------------------- +Mon Oct 7 14:12:30 CEST 2024 - oneukum@suse.com + +- USB: misc: yurex: fix race between read and write (git-fixes). +- commit 7f6ab55 + +------------------------------------------------------------------- +Mon Oct 7 14:07:19 CEST 2024 - oneukum@suse.com + +- USB: misc: cypress_cy7c63: check for short transfer (git-fixes). +- commit 3dcfad1 + +------------------------------------------------------------------- +Mon Oct 7 14:03:19 CEST 2024 - oneukum@suse.com + +- USB: appledisplay: close race between probe and completion + handler (git-fixes). +- commit 888718f + +------------------------------------------------------------------- +Mon Oct 7 13:37:47 CEST 2024 - jgross@suse.com + +- KVM: x86: Enforce x2APIC's must-be-zero reserved ICR bits + (git-fixes). +- commit 891c3ef + +------------------------------------------------------------------- +Mon Oct 7 13:15:47 CEST 2024 - oneukum@suse.com + +- usb: xhci: fix loss of data on Cadence xHC (git-fixes). +- commit 9e9d585 + +------------------------------------------------------------------- +Mon Oct 7 12:59:08 CEST 2024 - jgross@suse.com + +- KVM: Write the per-page "segment" when clearing (part of) + a guest page (git-fixes). +- commit dae8f10 + +------------------------------------------------------------------- +Mon Oct 7 12:51:27 CEST 2024 - oneukum@suse.com + +- xhci: Add a quirk for writing ERST in high-low order + (git-fixes). +- commit d0eccfc + +------------------------------------------------------------------- +Mon Oct 7 12:34:01 CEST 2024 - tzimmermann@suse.com + +- drm/amd/display: Validate function returns (bsc#1230774 CVE-2024-46775) +- commit fc9ad2b + +------------------------------------------------------------------- +Mon Oct 7 12:19:24 CEST 2024 - jgross@suse.com + +- KVM: Fix coalesced_mmio_has_room() to avoid premature userspace + exit (git-fixes). +- commit 93dbc58 + +------------------------------------------------------------------- +Mon Oct 7 11:39:38 CEST 2024 - jgross@suse.com + +- KVM: Use dedicated mutex to protect kvm_usage_count to avoid + deadlock (git-fixes). +- commit 2ff88a8 + +------------------------------------------------------------------- +Mon Oct 7 11:13:48 CEST 2024 - msuchanek@suse.de + +- Delete some more obsolete scripts +- commit 9bb77f8 + +------------------------------------------------------------------- +Mon Oct 7 10:44:04 CEST 2024 - jgross@suse.com + +- KVM: SVM: Disallow guest from changing userspace's + MSR_AMD64_DE_CFG value (git-fixes). +- commit c8fa16d + +------------------------------------------------------------------- +Mon Oct 7 10:19:47 CEST 2024 - pjakobsson@suse.de + +- drm/amd/display: Stop amdgpu_dm initialize when link nums greater than max_links (CVE-2024-46816 bsc#1231197). +- commit c05e7e2 + +------------------------------------------------------------------- +Mon Oct 7 10:11:27 CEST 2024 - jgross@suse.com + +- net: test for not too small csum_start in + virtio_net_hdr_to_skb() (git-fixes). +- commit ed78dff + +------------------------------------------------------------------- +Mon Oct 7 09:39:06 CEST 2024 - jgross@suse.com + +- vhost_vdpa: assign irq bypass producer token correctly + (git-fixes). +- commit 1a9cba6 + +------------------------------------------------------------------- +Mon Oct 7 09:16:13 CEST 2024 - pjakobsson@suse.de + +- drm/amd/display: Check link_index before accessing dc->links (CVE-2024-46813 bsc#1231191). +- commit eb31596 + +------------------------------------------------------------------- +Mon Oct 7 08:43:09 CEST 2024 - jgross@suse.com + +- minmax: avoid overly complex min()/max() macro arguments in xen + (git-fixes). +- Refresh + patches.suse/xen-move-max_pfn-in-xen_memory_setup-out-of-function.patch. +- commit 754808b + +------------------------------------------------------------------- +Sat Oct 5 09:18:57 CEST 2024 - tiwai@suse.de + +- ALSA: hda/conexant: Fix conflicting quirk for System76 Pangolin + (git-fixes). +- ALSA: line6: add hw monitor volume control to POD HD500X + (stable-fixes). +- ALSA: usb-audio: Add native DSD support for Luxman D-08u + (stable-fixes). +- ALSA: core: add isascii() check to card ID generator + (stable-fixes). +- ASoC: qcom: sm8250: add qrb4210-rb2-sndcard compatible string + (stable-fixes). +- ASoC: imx-card: Set card.owner to avoid a warning calltrace + if SND=m (git-fixes). +- ASoC: fsl_sai: Enable 'FIFO continue on error' FCONT bit + (stable-fixes). +- ASoC: codecs: lpass-rx-macro: add missing + CDC_RX_BCL_VBAT_RF_PROC2 to default regs values (stable-fixes). +- ASoC: atmel: mchp-pdmc: Skip ALSA restoration if substream + runtime is uninitialized (git-fixes). +- ASoC: amd: yc: Add quirk for HP Dragonfly pro one + (stable-fixes). +- Revert "ALSA: hda: Conditionally use snooping for AMD HDMI" + (stable-fixes). +- ALSA: hda/realtek: Add a quirk for HP Pavilion 15z-ec200 + (stable-fixes). +- ALSA: silence integer wrapping warning (stable-fixes). +- ALSA: Reorganize kerneldoc parameter names (stable-fixes). +- ALSA: hda/realtek: Fix the push button function for the ALC257 + (git-fixes). +- ALSA: hda/conexant: fix some typos (stable-fixes). +- ALSA: mixer_oss: Remove some incorrect kfree_const() usages + (git-fixes). +- ALSA: hda/realtek: Add quirk for Huawei MateBook 13 KLV-WX9 + (stable-fixes). +- ALSA: usb-audio: Add delay quirk for VIVO USB-C HEADSET + (stable-fixes). +- ALSA: hda/tas2781: Add new quirk for Lenovo Y990 Laptop + (stable-fixes). +- ALSA: hda/realtek: fix mute/micmute LED for HP mt645 G8 + (stable-fixes). +- commit 1cdc743 + +------------------------------------------------------------------- +Fri Oct 4 17:17:00 CEST 2024 - mkoutny@suse.com + +- rcu-tasks: Fix show_rcu_tasks_trace_gp_kthread buffer overflow + (bsc#1226631). +- commit 36faf07 + +------------------------------------------------------------------- +Fri Oct 4 17:13:50 CEST 2024 - mwilck@suse.com + +- scsi: fnic: Move flush_work initialization out of if block + (bsc#1230055). +- commit 9b5b899 + +------------------------------------------------------------------- +Fri Oct 4 17:11:25 CEST 2024 - mkoutny@suse.com + +- rcu: Fix buffer overflow in print_cpu_stall_info() + (bsc#1226623). +- commit b695829 + +------------------------------------------------------------------- +Fri Oct 4 09:57:09 CEST 2024 - msuchanek@suse.de + +- Replace ALP with SLFO +- Refresh patches.suse/kernel-add-product-identifying-information-to-kernel-build.patch +- Update config files. +- commit 267a9d3 + +------------------------------------------------------------------- +Fri Oct 4 09:49:25 CEST 2024 - msuchanek@suse.de + +- Update config files. + Update SUSE_VERSION to match SLFO project version +- commit 0d531e8 + +------------------------------------------------------------------- +Fri Oct 4 09:44:38 CEST 2024 - msuchanek@suse.de + +- config.sh: Remove Arm build project, we do not build armv7 configs +- commit 359f219 + +------------------------------------------------------------------- +Fri Oct 4 09:43:19 CEST 2024 - msuchanek@suse.de + +- config.sh: Update bugzilla product +- commit 0688dde + +------------------------------------------------------------------- +Fri Oct 4 09:17:31 CEST 2024 - msuchanek@suse.de + +- rpm/release-projects: Add SLFO projects (bsc#1231293). +- commit 9f2c584 + +------------------------------------------------------------------- +Thu Oct 3 18:22:53 CEST 2024 - msuchanek@suse.de + +- Update patches.suse/powerpc-qspinlock-Fix-deadlock-in-MCS-queue.patch + (bsc#1230295 ltc#206656 CVE-2024-46797 bsc#1230831). +- commit af09bb2 + +------------------------------------------------------------------- +Thu Oct 3 17:03:35 CEST 2024 - mfranc@suse.cz + +- KVM: s390: Fix SORTL and DFLTCC instruction format error in + __insn32_query (git-fixes bsc#1231276). +- commit 39bab2d + +------------------------------------------------------------------- +Thu Oct 3 14:28:21 CEST 2024 - tabraham@suse.com + +- s390/mm: Add cond_resched() to cmm_alloc/free_pages() + (bsc#1228747). +- commit d0c79ab + +------------------------------------------------------------------- +Thu Oct 3 00:20:05 CEST 2024 - dsterba@suse.com + +- ELF: fix kernel.randomize_va_space double read (CVE-2024-46826 bsc#1231115) +- commit 0519fb0 + +------------------------------------------------------------------- +Wed Oct 2 17:46:55 CEST 2024 - dsterba@suse.com + +- net/mlx5: Fix bridge mode operations when there are no VFs (CVE-2024-46857 bsc#1231087) +- commit b20fc2c + +------------------------------------------------------------------- +Wed Oct 2 17:39:18 CEST 2024 - dsterba@suse.com + +- netfilter: nft_socket: fix sk refcount leaks (CVE-2024-46855 bsc#1231085) +- commit 6c66212 + +------------------------------------------------------------------- +Wed Oct 2 16:55:39 CEST 2024 - tbogendoerfer@suse.de + +- net: microchip: vcap: Fix use-after-free error in kunit test + (CVE-2024-46831 bsc#1231117). +- commit 630e2e8 + +------------------------------------------------------------------- +Wed Oct 2 10:12:12 CEST 2024 - mhocko@suse.com + +- vmalloc: modify the alloc_vmap_area() error message for better + diagnostics (jsc#PED-10978). +- mm: mmap: no need to call khugepaged_enter_vma() for stack + (jsc#PED-10978). +- commit 41e1775 + +------------------------------------------------------------------- +Wed Oct 2 09:20:43 CEST 2024 - dwagner@suse.de + +- nvme-pci: qdepth 1 quirk (git-fixes). +- commit ee2b909 + +------------------------------------------------------------------- +Wed Oct 2 08:26:33 CEST 2024 - tiwai@suse.de + +- ALSA: hda/generic: Unconditionally prefer preferred_dacs pairs + (bsc#1219803). +- commit 020b49a + +------------------------------------------------------------------- +Tue Oct 1 18:50:14 CEST 2024 - msuchanek@suse.de + +- powerpc/code-patching: Add generic memory patching + (bsc#1194869). +- powerpc/code-patching: Perform hwsync in __patch_instruction() + in case of failure (bsc#1194869). +- commit 33b01a6 + +------------------------------------------------------------------- +Tue Oct 1 16:33:00 CEST 2024 - oneukum@suse.com + +- usbnet: fix cyclical race on disconnect with work queue + (git-fixes). +- Refresh + patches.suse/0002-Add-a-void-suse_kabi_padding-placeholder-to-some-USB.patch. +- commit 8272f2d + +------------------------------------------------------------------- +Tue Oct 1 16:27:57 CEST 2024 - dsterba@suse.com + +- apparmor: fix possible NULL pointer dereference (CVE-2024-46721 bsc#1230710) +- commit 2d35a7c + +------------------------------------------------------------------- +Tue Oct 1 14:20:26 CEST 2024 - msuchanek@suse.de + +- powerpc/64: Convert patch_instruction() to patch_u32() + (bsc#1194869). +- powerpc/boot: Only free if realloc() succeeds (bsc#1194869). +- powerpc/boot: Handle allocation failure in simple_realloc() + (bsc#1194869). +- powerpc/xics: Check return value of kasprintf in + icp_native_map_one_cpu (bsc#1194869). +- powerpc/vdso: Fix VDSO data access when running in a non-root + time namespace (bsc#1194869). +- commit 0dec2e8 + +------------------------------------------------------------------- +Tue Oct 1 14:19:14 CEST 2024 - tbogendoerfer@suse.de + +- net: mana: Improve mana_set_channels() in low mem conditions + (bsc#1230289). +- net: mana: Implement get_ringparam/set_ringparam for mana + (bsc#1229891). +- net: dpaa: Pad packets to ETH_ZLEN (CVE-2024-46854 bsc#1231084). +- ice: move netif_queue_set_napi to rtnl-protected sections + (CVE-2024-46766 bsc#1230762). +- ice: Add netif_device_attach/detach into PF reset flow + (CVE-2024-46770 bsc#1230763). +- bonding: change ipsec_lock from spin lock to mutex + (CVE-2024-46678 bsc#1230550). +- bonding: extract the use of real_device into local variable + (CVE-2024-46678 bsc#1230550). +- bonding: implement xdo_dev_state_free and call it after deletion + (CVE-2024-46678 bsc#1230550). +- commit 9ee67ad + +------------------------------------------------------------------- +Tue Oct 1 13:22:16 CEST 2024 - msuchanek@suse.de + +- powerpc/xmon: Fix disassembly CPU feature checks (bsc#1065729). +- commit c675509 + ------------------------------------------------------------------- Tue Oct 1 11:47:27 CEST 2024 - tiwai@suse.de @@ -29,6 +7318,13 @@ Tue Oct 1 11:41:13 CEST 2024 - lhenriques@suse.de pages (bsc#1231182). - commit ba82da7 +------------------------------------------------------------------- +Tue Oct 1 11:35:14 CEST 2024 - schwab@suse.de + +- rpm/check-for-config-changes: add HAVE_RUST and RUSTC_SUPPORTS_ to IGNORED_CONFIGS_RE + They depend on SHADOW_CALL_STACK. +- commit 65fa52b + ------------------------------------------------------------------- Tue Oct 1 08:04:40 CEST 2024 - tiwai@suse.de @@ -82,6 +7378,20 @@ Tue Oct 1 08:01:28 CEST 2024 - tiwai@suse.de - can: mcp251xfd: properly indent labels (stable-fixes). - commit a530f31 +------------------------------------------------------------------- +Mon Sep 30 19:11:45 CEST 2024 - krisman@suse.de + +- mm/filemap: skip to create PMD-sized page cache if needed + (bsc#1228454 CVE-2024-41031). +- commit 03907fa + +------------------------------------------------------------------- +Mon Sep 30 17:14:19 CEST 2024 - dwagner@suse.de + +- nvme-fabrics: use reserved tag for reg read/write command + (bsc#1228620 CVE-2024-41082). +- commit 239456c + ------------------------------------------------------------------- Mon Sep 30 16:28:50 CEST 2024 - pmladek@suse.com @@ -283,14 +7593,6 @@ Fri Sep 27 18:21:58 CEST 2024 - dsterba@suse.com - drm/amd/display: Check denominator crb_pipes before used (CVE-2024-46772 bsc#1230772) - commit 322be4a -------------------------------------------------------------------- -Fri Sep 27 17:47:54 CEST 2024 - dsterba@suse.com - -- blacklist.conf: CVE-2024-46727 bsc#1230707: not applicable - No OTG code and all return values from - resource_get_otg_master_for_stream() are checked before use. -- commit f44b1e7 - ------------------------------------------------------------------- Fri Sep 27 15:39:02 CEST 2024 - andrea.porta@suse.com @@ -716,12 +8018,6 @@ Wed Sep 25 11:02:22 CEST 2024 - oneukum@suse.com (git-fixes). - commit 45cee3b -------------------------------------------------------------------- -Wed Sep 25 10:53:00 CEST 2024 - oneukum@suse.com - -- blacklist.conf: too risky -- commit f0e13c3 - ------------------------------------------------------------------- Wed Sep 25 10:49:36 CEST 2024 - oneukum@suse.com @@ -887,12 +8183,6 @@ Wed Sep 25 08:20:37 CEST 2024 - nmorey@suse.com - RDMA/core: Remove unused declaration rdma_resolve_ip_route() (git-fixes) - commit 4cb7201 -------------------------------------------------------------------- -Wed Sep 25 08:00:58 CEST 2024 - jslaby@suse.cz - -- blacklist.conf: add one for clang and one PCI git-fixes -- commit b26aea4 - ------------------------------------------------------------------- Wed Sep 25 06:59:40 CEST 2024 - jslaby@suse.cz @@ -902,26 +8192,12 @@ Wed Sep 25 06:59:40 CEST 2024 - jslaby@suse.cz investigate. - commit 3b92a44 -------------------------------------------------------------------- -Tue Sep 24 21:41:32 CEST 2024 - dsterba@suse.com - -- blacklist.conf: CVE-2024-44972 bsc#1230212: not applicable - Subpage code exists but zoned mode is not enabled being hidden behind - CONFIG_BTRFS_DEBUG. -- commit ed17920 - ------------------------------------------------------------------- Tue Sep 24 16:44:45 CEST 2024 - dsterba@suse.com - btrfs: handle errors from btrfs_dec_ref() properly (CVE-2024-46753 bsc#1230796) - commit 3e3b2cb -------------------------------------------------------------------- -Tue Sep 24 14:00:01 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 05421bb - ------------------------------------------------------------------- Tue Sep 24 13:58:04 CEST 2024 - oneukum@suse.com @@ -1169,12 +8445,6 @@ Fri Sep 20 16:00:48 CEST 2024 - fdmanana@suse.com i_size (bsc#1230854). - commit e9cad4b -------------------------------------------------------------------- -Fri Sep 20 11:03:38 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 5244a06 - ------------------------------------------------------------------- Fri Sep 20 10:42:37 CEST 2024 - ailiop@suse.com @@ -1304,16 +8574,6 @@ Thu Sep 19 21:02:08 CEST 2024 - dsterba@suse.com - gtp: fix a potential NULL pointer dereference (CVE-2024-46677 bsc#1230549) - commit 9cdd14b -------------------------------------------------------------------- -Thu Sep 19 20:03:29 CEST 2024 - dsterba@suse.com - -- blacklist.conf: CVE-2024-46711 bsc#1230542: code partially present, fix part of refactoring and fix series - The patch to backport is one in a number of about 30 patches refactoring - and reworking MPTCP subflow handling. Several other patches are needed - just to apply it cleanly but also change some of the logic where the - actual fix would apply. -- commit 1a03613 - ------------------------------------------------------------------- Thu Sep 19 19:35:19 CEST 2024 - dsterba@suse.com @@ -1503,6 +8763,13 @@ Thu Sep 19 08:58:46 CEST 2024 - tiwai@suse.de (stable-fixes). - commit 040b0ea +------------------------------------------------------------------- +Thu Sep 19 03:35:24 CEST 2024 - neilb@suse.de + +- Update patches.suse/NFS-never-reuse-a-NFSv4-0-lock-owner.patch + (bsc#1227726 bsc#1230733 bsc#1230971) +- commit b1f9aec + ------------------------------------------------------------------- Wed Sep 18 19:30:32 CEST 2024 - jdelvare@suse.de @@ -1676,12 +8943,6 @@ Mon Sep 16 17:26:10 CEST 2024 - jgross@suse.com (git-fixes). - commit 6b94c45 -------------------------------------------------------------------- -Mon Sep 16 16:52:08 CEST 2024 - jgross@suse.com - -- blacklist.conf: add 840b2d39a2dc ("virtio_ring: fix KMSAN error for premapped mode") -- commit 2b97440 - ------------------------------------------------------------------- Mon Sep 16 16:51:12 CEST 2024 - jgross@suse.com @@ -1689,12 +8950,6 @@ Mon Sep 16 16:51:12 CEST 2024 - jgross@suse.com and MSR_GS_BASE (git-fixes). - commit aeba695 -------------------------------------------------------------------- -Mon Sep 16 16:15:44 CEST 2024 - jgross@suse.com - -- blacklist.conf: add 611ff1b1ae98 ("xen: privcmd: Fix possible access to a freed kirqfd instance") -- commit d91e53f - ------------------------------------------------------------------- Mon Sep 16 15:47:44 CEST 2024 - lhenriques@suse.de @@ -1829,12 +9084,6 @@ Fri Sep 13 21:16:43 CEST 2024 - tonyj@suse.de functions (git fixes). - commit bb48e43 -------------------------------------------------------------------- -Fri Sep 13 21:15:11 CEST 2024 - tonyj@suse.de - -- blacklist.conf: Add perf git-fix that won't be backported -- commit fbbd522 - ------------------------------------------------------------------- Fri Sep 13 19:40:15 CEST 2024 - dsterba@suse.com @@ -2120,12 +9369,6 @@ Thu Sep 12 16:08:18 CEST 2024 - tiwai@suse.de - Move upstreamed input patch into sorted section - commit e197a51 -------------------------------------------------------------------- -Thu Sep 12 16:07:50 CEST 2024 - jgross@suse.com - -- blacklist.conf: add db5247d9bf5c ("vhost_task: Handle SIGKILL by flushing work and exiting") -- commit 7acfcbb - ------------------------------------------------------------------- Thu Sep 12 16:06:12 CEST 2024 - jgross@suse.com @@ -2157,12 +9400,6 @@ Thu Sep 12 13:58:10 CEST 2024 - jroedel@suse.de patches.suse/iommu-dma-Trace-bounce-buffer-usage-when-mapping-buf.patch. - commit d37ca1f -------------------------------------------------------------------- -Thu Sep 12 13:45:38 CEST 2024 - jgross@suse.com - -- blacklist.conf: add 778c350eb580 ("Revert KVM: async_pf: avoid recursive flushing of work items") -- commit 3ff1683 - ------------------------------------------------------------------- Thu Sep 12 13:44:28 CEST 2024 - jgross@suse.com @@ -2190,18 +9427,6 @@ Thu Sep 12 11:54:51 CEST 2024 - jgross@suse.com entries (git-fixes). - commit e3cb3e5 -------------------------------------------------------------------- -Thu Sep 12 10:18:36 CEST 2024 - jgross@suse.com - -- blacklist.conf: add f62d4c3eb687 ("KVM: arm64: Don't defer TLB invalidation when zapping table entries") -- commit 80a75dc - -------------------------------------------------------------------- -Thu Sep 12 10:11:31 CEST 2024 - jgross@suse.com - -- blacklist.conf: add c60d847be7b8 ("KVM: arm64: Fix double-free following kvm_pgtable_stage2_free_unlinked()") -- commit 518faac - ------------------------------------------------------------------- Thu Sep 12 10:05:18 CEST 2024 - jgross@suse.com @@ -2877,17 +10102,6 @@ Sat Sep 7 10:18:31 CEST 2024 - tiwai@suse.de (git-fixes). - commit 7a89765 -------------------------------------------------------------------- -Fri Sep 6 17:33:50 CEST 2024 - dsterba@suse.com - -- blacklist.conf: CVE-2024-43886 bsc#1229748: not applicable, functionality not present - The fix adds a NULL check but it is already there in this codebase. The - upstream fix is for patch 5db346c256bbac ("drm/amd/display: update pipe - topology log to support subvp") that adds a secondary display and - refactors code so the NULL check gets lost in - resource_log_pipe_topology_update(). -- commit b9c5bf2 - ------------------------------------------------------------------- Fri Sep 6 15:56:40 CEST 2024 - dsterba@suse.com @@ -3028,12 +10242,6 @@ Thu Sep 5 10:01:51 CEST 2024 - iivanov@suse.de - arm64: tlb: Fix TLBI RANGE operand (bsc#1229585) - commit 24bd468 -------------------------------------------------------------------- -Thu Sep 5 09:56:43 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("KVM: arm64: Use TLBI_TTL_UNKNOWN in __kvm_tlb_flush_vmid_range()") (bsc#1229585) -- commit 29fbf2b - ------------------------------------------------------------------- Thu Sep 5 09:52:38 CEST 2024 - iivanov@suse.de @@ -3249,12 +10457,6 @@ Wed Sep 4 07:41:41 CEST 2024 - neilb@suse.de (git-fixes). - commit 3ab58b8 -------------------------------------------------------------------- -Wed Sep 4 07:37:30 CEST 2024 - neilb@suse.de - -- blacklist.conf: These aren't wanted for various reasons. -- commit 39478da - ------------------------------------------------------------------- Wed Sep 4 00:34:05 CEST 2024 - krisman@suse.de @@ -3266,18 +10468,6 @@ Wed Sep 4 00:34:05 CEST 2024 - krisman@suse.de same way, but through a separate kABI patch. - commit 08e57d6 -------------------------------------------------------------------- -Tue Sep 3 16:04:36 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add cf3f9a593dab mm: optimize the redundant loop of mm_update_owner_next() -- commit 3184f0b - -------------------------------------------------------------------- -Tue Sep 3 15:59:41 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: d24f05987ce8 cgroup: Avoid extra dereference in css_populate_dir() -- commit 922f944 - ------------------------------------------------------------------- Tue Sep 3 14:44:24 CEST 2024 - oneukum@suse.com @@ -3674,15 +10864,6 @@ Fri Aug 30 16:03:27 CEST 2024 - vkarasulli@suse.de iommufd_device_do_replace() (git-fixes). - commit bbc9a65 -------------------------------------------------------------------- -Fri Aug 30 13:03:14 CEST 2024 - lhenriques@suse.de - -- blacklist.conf: add 053fc4f755ad fuse: fix UAF in rcu pathwalks - This commit breaks kABI and the data structure has no free room for the - extra field, i.e. memcpy would fail to copy the additional member added by - this patch. -- commit 941b81c - ------------------------------------------------------------------- Fri Aug 30 11:44:34 CEST 2024 - lhenriques@suse.de @@ -3696,12 +10877,6 @@ Fri Aug 30 11:11:17 CEST 2024 - petr.pavlu@suse.com (git-fixes). - commit 88d1dac -------------------------------------------------------------------- -Fri Aug 30 11:00:49 CEST 2024 - petr.pavlu@suse.com - -- blacklist.conf: add a not-relevant tracing commit -- commit 9e3013e - ------------------------------------------------------------------- Fri Aug 30 10:55:19 CEST 2024 - ailiop@suse.com @@ -3947,12 +11122,6 @@ Wed Aug 28 14:06:14 CEST 2024 - pjakobsson@suse.de - drm/amd/display: Fix null pointer deref in dcn20_resource.c (CVE-2024-43899 bsc#1229754). - commit 1811990 -------------------------------------------------------------------- -Wed Aug 28 10:37:01 CEST 2024 - andrea.porta@suse.com - -- blacklist.conf: add 56769ba4b297a629148eb24d554aef72d1ddfd9e -- commit e1cb2aa - ------------------------------------------------------------------- Wed Aug 28 09:55:29 CEST 2024 - mhocko@suse.com @@ -4023,7 +11192,7 @@ Tue Aug 27 18:43:37 CEST 2024 - vkarasulli@suse.de - kABI: vfio: struct virqfd kABI workaround (CVE-2024-26812 bsc#1222808). -- commit ae735c0 +- commit fec2e84 ------------------------------------------------------------------- Tue Aug 27 16:32:25 CEST 2024 - denis.kirjanov@suse.com @@ -4230,21 +11399,21 @@ Fri Aug 23 20:13:46 CEST 2024 - vkarasulli@suse.de - vfio/pci: fix potential memory leak in vfio_intx_enable() (git-fixes). -- commit 45c2786 +- commit b034db2 ------------------------------------------------------------------- Fri Aug 23 19:31:17 CEST 2024 - vkarasulli@suse.de - vfio: Introduce interface to flush virqfd inject workqueue (CVE-2024-26812 bsc#1222808). -- commit 0704da7 +- commit babdbba ------------------------------------------------------------------- Fri Aug 23 16:17:01 CEST 2024 - vkarasulli@suse.de - vfio/pci: Create persistent INTx handler (CVE-2024-26812 bsc#1222808). -- commit c0eeff7 +- commit 8062aa3 ------------------------------------------------------------------- Fri Aug 23 13:54:07 CEST 2024 - mgorman@suse.de @@ -4567,15 +11736,6 @@ Wed Aug 21 17:20:53 CEST 2024 - sjaeckel@suse.de bsc#1226604). - commit 7beae73 -------------------------------------------------------------------- -Wed Aug 21 16:37:18 CEST 2024 - andrea.porta@suse.com - -- blacklist.conf: git-fixes f2eaed1565acc2bdeb5c433f5f6c7bd7a0d62db1 - blacklisted since it involves backporting many other commits not - that are relevnat only to gdb debug scripts and whose dependent - commits may break kABI. -- commit 323e420 - ------------------------------------------------------------------- Wed Aug 21 16:19:21 CEST 2024 - rgoldwyn@suse.com @@ -4770,13 +11930,6 @@ Tue Aug 20 17:34:18 CEST 2024 - dwagner@suse.de Use the version which got upload upstream. - commit 4896f98 -------------------------------------------------------------------- -Tue Aug 20 17:32:22 CEST 2024 - jgross@suse.com - -- blacklist.conf: add ffe6176b7f53 ("virtio: store owner from modules - with register_virtio_driver()") -- commit 08df841 - ------------------------------------------------------------------- Tue Aug 20 17:31:40 CEST 2024 - jgross@suse.com @@ -4981,12 +12134,6 @@ Tue Aug 20 10:32:23 CEST 2024 - mfranc@suse.cz (git-fixes bsc#1229451). - commit 4e0b259 -------------------------------------------------------------------- -Tue Aug 20 10:20:39 CEST 2024 - mfranc@suse.cz - -- blacklist.conf: we don't enable CONFIG_CPUMASK_OFFSTACK on s390 -- commit 8a36035 - ------------------------------------------------------------------- Tue Aug 20 10:11:40 CEST 2024 - pjakobsson@suse.de @@ -5031,12 +12178,6 @@ Tue Aug 20 09:03:13 CEST 2024 - tiwai@suse.de (stable-fixes). - commit a485c9b -------------------------------------------------------------------- -Tue Aug 20 08:53:29 CEST 2024 - tiwai@suse.de - -- blacklist.conf: Add libata upstream revert entry (bsc#1229054) -- commit 5ded40a - ------------------------------------------------------------------- Tue Aug 20 08:24:59 CEST 2024 - shung-hsi.yu@suse.com @@ -5145,12 +12286,6 @@ Mon Aug 19 08:41:03 CEST 2024 - tiwai@suse.de (git-fixes). - commit e3fe681 -------------------------------------------------------------------- -Mon Aug 19 06:55:31 CEST 2024 - neilb@suse.de - -- blacklist.conf: add unwanted nfs/sunrpc patch -- commit 405ec89 - ------------------------------------------------------------------- Mon Aug 19 06:53:37 CEST 2024 - neilb@suse.de @@ -5270,12 +12405,6 @@ Fri Aug 16 18:05:44 CEST 2024 - ailiop@suse.com (git-fixes). - commit 184b713 -------------------------------------------------------------------- -Fri Aug 16 17:59:06 CEST 2024 - jgross@suse.com - -- blacklist.conf: add f99b052256f1 ("KVM: SNP: Fix LBR Virtualization for SNP guest") -- commit c9ad47e - ------------------------------------------------------------------- Fri Aug 16 17:52:51 CEST 2024 - jgross@suse.com @@ -5402,12 +12531,6 @@ Fri Aug 16 14:09:45 CEST 2024 - ailiop@suse.com - xfs: allow symlinks with short remote targets (bsc#1229160). - commit e82d4ad -------------------------------------------------------------------- -Fri Aug 16 14:04:33 CEST 2024 - jgross@suse.com - -- blacklist.conf: add 1c682593096a ("xen: privcmd: Switch from mutex to spinlock for irqfds") -- commit 46d4480 - ------------------------------------------------------------------- Fri Aug 16 14:01:51 CEST 2024 - jgross@suse.com @@ -5491,25 +12614,6 @@ Thu Aug 15 20:27:34 CEST 2024 - msuchanek@suse.de CONFIG_KVM_BOOK3S_HV_POSSIBLE (bsc#1194869). - commit 4e7f0fe -------------------------------------------------------------------- -Thu Aug 15 19:38:47 CEST 2024 - msuchanek@suse.de - -- blacklist.conf: Add a bunch of superfluous ppc changes reported by - git-fixes. -- commit 7c2a851 - -------------------------------------------------------------------- -Thu Aug 15 18:40:14 CEST 2024 - msuchanek@suse.de - -- blacklist.conf: Add ppc more ppc unsupported arch paths and commits. -- commit 66e06b4 - -------------------------------------------------------------------- -Thu Aug 15 18:05:23 CEST 2024 - msuchanek@suse.de - -- blacklist.conf: Add more ppc 32bit paths. -- commit 013a9db - ------------------------------------------------------------------- Thu Aug 15 17:09:55 CEST 2024 - iivanov@suse.de @@ -6315,7 +13419,7 @@ Sat Aug 10 10:27:04 CEST 2024 - tiwai@suse.de Sat Aug 10 09:45:49 CEST 2024 - tiwai@suse.de - Moved upstreamed ASoC patch into sorted section -- commit 3058bc3 +- commit 47c5c29 ------------------------------------------------------------------- Sat Aug 10 09:37:31 CEST 2024 - tiwai@suse.de @@ -6337,24 +13441,7 @@ Sat Aug 10 09:37:31 CEST 2024 - tiwai@suse.de - ALSA: hda: Add HP MP9 G4 Retail System AMS to force connect list (stable-fixes). - ALSA: line6: Fix racy access to midibuf (stable-fixes). -- ASoC: cs35l56: Patch CS35L56_IRQ1_MASK_18 to the default value - (stable-fixes). -- ASoC: amd: yc: Support mic on Lenovo Thinkpad E14 Gen 6 - (stable-fixes). -- ASoC: cs35l56: Handle OTP read latency over SoundWire - (stable-fixes). -- ASoC: nau8822: Lower debug print priority (stable-fixes). -- ASoC: fsl_micfil: Expand the range of FIFO watermark mask - (stable-fixes). -- ASoC: amd: yc: Support mic on HP 14-em0002la (stable-fixes). -- ALSA: hda/realtek: Add Framework Laptop 13 (Intel Core Ultra) - to quirks (stable-fixes). -- ALSA: hda/hdmi: Yet more pin fix for HP EliteDesk 800 G4 - (stable-fixes). -- ALSA: hda: Add HP MP9 G4 Retail System AMS to force connect list - (stable-fixes). -- ALSA: line6: Fix racy access to midibuf (stable-fixes). -- commit a8c8868 +- commit c1044c2 ------------------------------------------------------------------- Sat Aug 10 09:30:52 CEST 2024 - tiwai@suse.de @@ -6368,16 +13455,7 @@ Sat Aug 10 09:30:52 CEST 2024 - tiwai@suse.de - ASoC: codecs: wcd938x-sdw: Correct Soundwire ports mask (git-fixes). - ALSA: usb-audio: Re-add ScratchAmp quirk entries (git-fixes). -- ASoC: meson: axg-fifo: fix irq scheduling issue with PREEMPT_RT - (git-fixes). -- ASoC: SOF: Remove libraries from topology lookups (git-fixes). -- ASoC: codecs: wsa884x: Correct Soundwire ports mask (git-fixes). -- ASoC: codecs: wsa883x: Correct Soundwire ports mask (git-fixes). -- ASoC: codecs: wsa881x: Correct Soundwire ports mask (git-fixes). -- ASoC: codecs: wcd938x-sdw: Correct Soundwire ports mask - (git-fixes). -- ALSA: usb-audio: Re-add ScratchAmp quirk entries (git-fixes). -- commit cdc2939 +- commit 2621ea8 ------------------------------------------------------------------- Fri Aug 9 21:13:42 CEST 2024 - mpdesouza@suse.com @@ -6422,12 +13500,8 @@ Fri Aug 9 16:37:03 CEST 2024 - mfranc@suse.cz ------------------------------------------------------------------- Fri Aug 9 14:35:05 CEST 2024 - pmladek@suse.com -- blacklist.conf: printk/sysctl: breaks kernel without pre-requisite - patches (bsc#1229025) -- Delete - patches.suse/printk-Remove-the-now-superfluous-sentinel-elements-from-ctl_table-array.patch. - blacklist.conf: printk/sysctl: breaks kernel without pre-requisite patches (bsc#1229025) - Delete patches.suse/printk-Remove-the-now-superfluous-sentinel-elements-from-ctl_table-array.patch. -- commit 3560636 +- commit b88511a ------------------------------------------------------------------- Fri Aug 9 13:30:05 CEST 2024 - mfranc@suse.cz @@ -6908,12 +13982,6 @@ Wed Aug 7 14:05:50 CEST 2024 - tbogendoerfer@suse.de (CVE-2024-42162 bsc#1228706). - commit e94d07a -------------------------------------------------------------------- -Wed Aug 7 13:29:08 CEST 2024 - jslaby@suse.cz - -- blacklist.conf: add some IRQ HANDLING ones -- commit 404c094 - ------------------------------------------------------------------- Wed Aug 7 13:07:25 CEST 2024 - mkoutny@suse.com @@ -7060,12 +14128,6 @@ Mon Aug 5 19:10:12 CEST 2024 - msuchanek@suse.de with MSR_EE (bsc#1215199). - commit 6051d0b -------------------------------------------------------------------- -Mon Aug 5 18:57:39 CEST 2024 - msuchanek@suse.de - -- blacklist.conf: KVM PPC APIv2 enablement not included. -- commit b36c39a - ------------------------------------------------------------------- Mon Aug 5 16:35:22 CEST 2024 - tbogendoerfer@suse.de @@ -7714,13 +14776,6 @@ Fri Aug 2 15:36:25 CEST 2024 - sjaeckel@suse.de in nsh_gso_segment() (CVE-2024-36933 bsc#1225832). - commit 6740d82 -------------------------------------------------------------------- -Fri Aug 2 14:48:37 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add 943ad0b62e3c kernel: rerun task_work while freezing in get_signal() - and related io_uring fix. -- commit ead5c32 - ------------------------------------------------------------------- Fri Aug 2 14:12:56 CEST 2024 - sjaeckel@suse.de @@ -7728,12 +14783,6 @@ Fri Aug 2 14:12:56 CEST 2024 - sjaeckel@suse.de (CVE-2024-36929 bsc#1225814). - commit e49ed10 -------------------------------------------------------------------- -Fri Aug 2 13:53:13 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add 7a4479680d7f cgroup_misc: add kernel-doc comments for enum misc_res_type -- commit fe05fa4 - ------------------------------------------------------------------- Fri Aug 2 13:52:28 CEST 2024 - mkoutny@suse.com @@ -7891,13 +14940,6 @@ Wed Jul 31 10:48:53 CEST 2024 - lhenriques@suse.de fscache_try_get_volume() (bsc#1228459 bsc#1228462). - commit a80ddf3 -------------------------------------------------------------------- -Wed Jul 31 10:25:23 CEST 2024 - oneukum@suse.com - -- platform/chrome: cros_ec_proto: Lock device when updating MKBP - version (git-fixes). -- commit ab277a6 - ------------------------------------------------------------------- Wed Jul 31 10:02:32 CEST 2024 - heming.zhao@suse.com @@ -8016,42 +15058,6 @@ Tue Jul 30 11:16:24 CEST 2024 - shung-hsi.yu@suse.com Fix the issue by adding parenthesis around ternary operator. - commit dfba20e -------------------------------------------------------------------- -Tue Jul 30 11:10:16 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add 9c573cd31343 randomize_kstack: Improve entropy diffusion -- commit 095be15 - -------------------------------------------------------------------- -Tue Jul 30 10:53:31 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 1dd3f93 - -------------------------------------------------------------------- -Tue Jul 30 10:50:00 CEST 2024 - oneukum@suse.com - -- blacklist.conf: spelling fix in comment -- commit de0ca0a - -------------------------------------------------------------------- -Tue Jul 30 10:48:26 CEST 2024 - oneukum@suse.com - -- blacklist.conf: cleanup, no code change -- commit 19384b6 - -------------------------------------------------------------------- -Tue Jul 30 10:46:03 CEST 2024 - oneukum@suse.com - -- blacklist.conf: pure cleanup -- commit 21ff021 - -------------------------------------------------------------------- -Tue Jul 30 10:43:49 CEST 2024 - oneukum@suse.com - -- blacklist.conf: pure cleanup -- commit fef6015 - ------------------------------------------------------------------- Tue Jul 30 08:37:32 CEST 2024 - tiwai@suse.de @@ -8579,25 +15585,12 @@ Tue Jul 23 11:57:37 CEST 2024 - nik.borisov@suse.com - x86/resctrl: Remove redundant variable in mbm_config_write_domain() (git-fixes). - commit 7ae6079 -------------------------------------------------------------------- -Tue Jul 23 11:57:14 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: This patch gets reverted -- commit c490f33 - ------------------------------------------------------------------- Tue Jul 23 11:56:24 CEST 2024 - nik.borisov@suse.com - x86/resctrl: Read supported bandwidth sources from CPUID (git-fixes). - commit 907534d -------------------------------------------------------------------- -Tue Jul 23 11:55:05 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: Remove dead-end revert - We never merged the buggy upstream fix. -- commit 9b319fd - ------------------------------------------------------------------- Tue Jul 23 11:50:03 CEST 2024 - nik.borisov@suse.com @@ -8674,7 +15667,7 @@ Tue Jul 23 10:42:33 CEST 2024 - mhocko@suse.com Tue Jul 23 10:31:43 CEST 2024 - jslaby@suse.cz - PCI: Extend ACS configurability (bsc#1228090). -- commit 571e431 +- commit 3be1ce1 ------------------------------------------------------------------- Tue Jul 23 10:21:51 CEST 2024 - nik.borisov@suse.com @@ -8955,13 +15948,6 @@ Mon Jul 22 16:35:48 CEST 2024 - ailiop@suse.com path (bsc#1228211). - commit 4c79a42 -------------------------------------------------------------------- -Mon Jul 22 15:30:13 CEST 2024 - oneukum@suse.com - -- supported.conf: Add support for v4l2-dv-timings - (jsc#PED-8645) -- commit 6262df7 - ------------------------------------------------------------------- Mon Jul 22 15:24:53 CEST 2024 - oneukum@suse.com @@ -9084,12 +16070,6 @@ Mon Jul 22 14:46:53 CEST 2024 - iivanov@suse.de - arm64: dts: imx93-11x11-evk: Remove the 'no-sdio' property (git-fixes) - commit a10e3de -------------------------------------------------------------------- -Mon Jul 22 14:45:36 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: dts: freescale: imx8mm-verdin: Fix GPU speed") -- commit ea9f475 - ------------------------------------------------------------------- Mon Jul 22 14:40:20 CEST 2024 - tiwai@suse.de @@ -10531,15 +17511,6 @@ Wed Jul 17 09:31:55 CEST 2024 - tiwai@suse.de pmic_glink_init (git-fixes). - commit aea26b0 -------------------------------------------------------------------- -Tue Jul 16 18:29:23 CEST 2024 - ailiop@suse.com - -- blacklist.conf: add 54cbc058d86b - commit 54cbc058d86b ("fs/aio: Make io_cancel() generate completions - again") was later reverted upstream by commit 28468cbed92e, so blacklist - it. -- commit bc9be4f - ------------------------------------------------------------------- Tue Jul 16 18:25:16 CEST 2024 - fdmanana@suse.com @@ -11098,12 +18069,6 @@ Mon Jul 15 13:33:32 CEST 2024 - mhocko@suse.com (CVE-2024-27064 bsc#1223740). - commit daf6634 -------------------------------------------------------------------- -Mon Jul 15 13:30:59 CEST 2024 - oneukum@suse.com - -- blacklist.conf: feature, not fix -- commit 7a64b31 - ------------------------------------------------------------------- Mon Jul 15 13:30:17 CEST 2024 - petr.pavlu@suse.com @@ -11117,12 +18082,6 @@ Mon Jul 15 13:12:22 CEST 2024 - mhocko@suse.com tipc_udp_nl_bearer_add() (CVE-2024-26663 bsc#1222326). - commit fff5ef3 -------------------------------------------------------------------- -Mon Jul 15 11:47:14 CEST 2024 - petr.pavlu@suse.com - -- blacklist.conf: add not-relevant tracing fixes -- commit b158327 - ------------------------------------------------------------------- Mon Jul 15 11:41:17 CEST 2024 - petr.pavlu@suse.com @@ -13844,12 +20803,6 @@ Wed Jul 10 10:28:13 CEST 2024 - nik.borisov@suse.com - x86/asm: Fix build of UML with KASAN (git-fixes). - commit 89fc5d7 -------------------------------------------------------------------- -Wed Jul 10 10:27:52 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: Blacklist useless revert -- commit 0a21e69 - ------------------------------------------------------------------- Wed Jul 10 10:04:47 CEST 2024 - nik.borisov@suse.com @@ -14230,12 +21183,6 @@ Thu Jul 4 18:58:54 CEST 2024 - vkarasulli@suse.de - iommu/arm-smmu-v3: Free MSIs in case of ENOMEM (git-fixes). - commit 2fb4aa0 -------------------------------------------------------------------- -Thu Jul 4 17:41:12 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add d988d9a9b9d1 panic: Flush kernel log buffer at the end -- commit 0ce2686 - ------------------------------------------------------------------- Thu Jul 4 15:25:28 CEST 2024 - ptesarik@suse.com @@ -14310,12 +21257,6 @@ Wed Jul 3 14:51:53 CEST 2024 - hare@suse.de CVE-2024-38604). - commit 9e332c1 -------------------------------------------------------------------- -Wed Jul 3 14:41:56 CEST 2024 - pjakobsson@suse.de - -- blacklist.conf: 9cb46b31f3d0 drm/xe/xe_migrate: Cast to output precision before multiplying operands -- commit d95545e - ------------------------------------------------------------------- Wed Jul 3 14:19:36 CEST 2024 - denis.kirjanov@suse.com @@ -15708,12 +22649,6 @@ Fri Jun 28 15:37:51 CEST 2024 - tiwai@suse.de to peer STA/P2PClient (bsc#1227149). - commit 03e12a0 -------------------------------------------------------------------- -Fri Jun 28 15:37:23 CEST 2024 - tiwai@suse.de - -- blacklist: drop the wifi entries to be backported -- commit 891934b - ------------------------------------------------------------------- Fri Jun 28 15:35:23 CEST 2024 - tiwai@suse.de @@ -16605,13 +23540,6 @@ Mon Jun 24 17:40:50 CEST 2024 - nik.borisov@suse.com - x86/uaccess: Fix missed zeroing of ia32 u64 get_user() range checking (git-fixes). - commit 1c4403a -------------------------------------------------------------------- -Mon Jun 24 17:31:22 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: Blacklist invalid commit (git-fixes) - We don't support CPU_MITIGATIONS hence to need for this logic -- commit 6899966 - ------------------------------------------------------------------- Mon Jun 24 09:44:52 CEST 2024 - tbogendoerfer@suse.de @@ -16764,12 +23692,6 @@ Fri Jun 21 17:24:29 CEST 2024 - mkoutny@suse.com parameter in cpu_max_write() (bsc#1226791). - commit 6b67975 -------------------------------------------------------------------- -Fri Jun 21 17:21:26 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add 6fb454606153 sched: Simplify tg_set_cfs_bandwidth() -- commit 4e56705 - ------------------------------------------------------------------- Fri Jun 21 16:31:57 CEST 2024 - dfaggioli@suse.com @@ -16861,12 +23783,6 @@ Thu Jun 20 17:39:41 CEST 2024 - lhenriques@suse.de (bsc#1226588). - commit b238f81 -------------------------------------------------------------------- -Thu Jun 20 12:31:55 CEST 2024 - jslaby@suse.cz - -- blacklist.conf: add ppdev cleanup -- commit 58ce126 - ------------------------------------------------------------------- Thu Jun 20 10:59:35 CEST 2024 - mfranc@suse.cz @@ -17384,12 +24300,6 @@ Fri Jun 14 14:07:11 CEST 2024 - shung-hsi.yu@suse.com (bsc#1225903). - commit 63dfc45 -------------------------------------------------------------------- -Fri Jun 14 13:27:19 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add a7fb0423c201 cgroup: Move rcu_head up near the top of cgroup_root -- commit 3f951ce - ------------------------------------------------------------------- Fri Jun 14 12:18:36 CEST 2024 - denis.kirjanov@suse.com @@ -17786,14 +24696,6 @@ Thu Jun 13 11:57:17 CEST 2024 - ailiop@suse.com since there are no SLE consumers of it, mark it as optional. - commit 264e3d2 -------------------------------------------------------------------- -Thu Jun 13 11:55:02 CEST 2024 - ailiop@suse.com - -- blacklist.conf: add f2fs fixes 87161a2b0aed and 4e0197f9932f - Both are f2fs-related fixes, f2fs is unsupported and not compiled at - all. -- commit e891815 - ------------------------------------------------------------------- Thu Jun 13 11:52:09 CEST 2024 - ailiop@suse.com @@ -17809,12 +24711,6 @@ Thu Jun 13 11:32:01 CEST 2024 - fvogt@suse.de build. - commit aaee141 -------------------------------------------------------------------- -Thu Jun 13 10:11:58 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 70e89e6 - ------------------------------------------------------------------- Thu Jun 13 10:09:33 CEST 2024 - oneukum@suse.com @@ -18009,12 +24905,6 @@ Mon Jun 10 21:03:05 CEST 2024 - krisman@suse.de CVE-2023-52672). - commit 333fe30 -------------------------------------------------------------------- -Mon Jun 10 17:13:33 CEST 2024 - lduncan@suse.com - -- blacklist.conf: add bsc#1223013 CVE-2024-26482, does not apply -- commit a7ff2c2 - ------------------------------------------------------------------- Mon Jun 10 13:36:57 CEST 2024 - davide.benini@suse.com @@ -18022,12 +24912,6 @@ Mon Jun 10 13:36:57 CEST 2024 - davide.benini@suse.com (CVE-2024-36005 bsc#1224539). - commit 5b08b61 -------------------------------------------------------------------- -Mon Jun 10 10:47:24 CEST 2024 - oneukum@suse.com - -- blacklist.conf: irrelevant build fix -- commit 226f27a - ------------------------------------------------------------------- Sat Jun 8 16:22:10 CEST 2024 - lduncan@suse.com @@ -18273,14 +25157,6 @@ Tue Jun 4 20:13:35 CEST 2024 - ematsumiya@suse.de (bsc#1225172, bsc#1225548, CVE-2023-52757). - commit 1b322a8 -------------------------------------------------------------------- -Tue Jun 4 12:28:46 CEST 2024 - davide.benini@suse.com - -- blacklist.conf: add d380ce70058a4ccddc3e5f5c2063165dc07672c6 - netrom: Fix data-races around sysctl_net_busy_read - (CVE-2024-27419 bsc#1224759) -- commit 1fe217c - ------------------------------------------------------------------- Tue Jun 4 12:01:21 CEST 2024 - iivanov@suse.de @@ -18366,732 +25242,6 @@ Mon Jun 3 15:25:22 CEST 2024 - dwagner@suse.de - nvme: fix multipath batched completion accounting (git-fixes). - commit ed3b392 -------------------------------------------------------------------- -Mon Jun 3 14:40:11 CEST 2024 - mfranc@suse.cz - -- Update - patches.suse/ACPI-CPPC-Use-access_width-over-bit_width-for-system.patch - (stable-fixes bsc#1224557 CVE-2024-35995). -- Update - patches.suse/ACPI-LPIT-Avoid-u32-multiplication-overflow.patch - (git-fixes bsc#1224627 CVE-2023-52683). -- Update - patches.suse/ACPI-video-check-for-error-while-searching-for-backl.patch - (git-fixes bsc#1224686 CVE-2023-52693). -- Update - patches.suse/ALSA-hda-intel-sdw-acpi-fix-usage-of-device_get_name.patch - (git-fixes CVE-2024-36955). -- Update - patches.suse/ALSA-usb-audio-Stop-parsing-channels-bits-when-all-c.patch - (git-fixes bsc#1224803 CVE-2024-27436). -- Update - patches.suse/ARM-9381-1-kasan-clear-stale-stack-poison.patch - (git-fixes bsc#1225715 CVE-2024-36906). -- Update - patches.suse/ASoC-Intel-sof_sdw_rt_sdca_jack_common-ctx-headset_c.patch - (git-fixes bsc#1224596 CVE-2023-52697). -- Update - patches.suse/ASoC-SOF-amd-Fix-memory-leak-in-amd_sof_acp_probe.patch - (git-fixes bsc#1224630 CVE-2023-52663). -- Update - patches.suse/ASoC-SOF-ipc4-pcm-Workaround-for-crashed-firmware-on.patch - (stable-fixes bsc#1223831 CVE-2024-27057). -- Update - patches.suse/ASoC-mediatek-sof-common-Add-NULL-check-for-normal_l.patch - (git-fixes bsc#1224688 CVE-2024-35842). -- Update - patches.suse/Bluetooth-Fix-memory-leak-in-hci_req_sync_complete.patch - (git-fixes bsc#1224571 CVE-2024-35978). -- Update - patches.suse/Bluetooth-Fix-use-after-free-bugs-caused-by-sco_sock.patch - (git-fixes bsc#1224174 CVE-2024-27398). -- Update - patches.suse/Bluetooth-HCI-Fix-potential-null-ptr-deref.patch - (git-fixes bsc#1225579 CVE-2024-36011). -- Update - patches.suse/Bluetooth-L2CAP-Fix-not-validating-setsockopt-user-i.patch - (git-fixes bsc#1224579 CVE-2024-35965). -- Update - patches.suse/Bluetooth-RFCOMM-Fix-not-validating-setsockopt-user-.patch - (git-fixes bsc#1224576 CVE-2024-35966). -- Update - patches.suse/Bluetooth-SCO-Fix-not-validating-setsockopt-user-inp.patch - (git-fixes bsc#1224587 CVE-2024-35967). -- Update - patches.suse/Bluetooth-btintel-Fix-null-ptr-deref-in-btintel_read.patch - (stable-fixes bsc#1224640 CVE-2024-35933). -- Update - patches.suse/Bluetooth-hci_event-Fix-handling-of-HCI_EV_IO_CAPA_R.patch - (git-fixes bsc#1224723 CVE-2024-27416). -- Update - patches.suse/Bluetooth-hci_sock-Fix-not-validating-setsockopt-use.patch - (git-fixes bsc#1224582 CVE-2024-35963). -- Update - patches.suse/Bluetooth-l2cap-fix-null-ptr-deref-in-l2cap_chan_tim.patch - (git-fixes bsc#1224177 CVE-2024-27399). -- Update - patches.suse/Bluetooth-msft-fix-slab-use-after-free-in-msft_do_cl.patch - (git-fixes bsc#1225502 CVE-2024-36012). -- Update - patches.suse/Bluetooth-qca-add-missing-firmware-sanity-checks.patch - (git-fixes bsc#1225722 CVE-2024-36880). -- Update - patches.suse/Bluetooth-qca-fix-NULL-deref-on-non-serdev-setup.patch - (git-fixes bsc#1224600 CVE-2024-35850). -- Update - patches.suse/Bluetooth-qca-fix-NULL-deref-on-non-serdev-suspend.patch - (git-fixes bsc#1224509 CVE-2024-35851). -- Update - patches.suse/Bluetooth-qca-fix-firmware-check-error-path.patch - (git-fixes CVE-2024-36942). -- Update - patches.suse/Bluetooth-qca-fix-info-leak-when-fetching-fw-build-i.patch - (git-fixes bsc#1225720 CVE-2024-36032). -- Update - patches.suse/Bluetooth-rfcomm-Fix-null-ptr-deref-in-rfcomm_check_.patch - (bsc#1219170 CVE-2024-22099 bsc#1223187 CVE-2024-26903). -- Update - patches.suse/HID-i2c-hid-remove-I2C_HID_READ_PENDING-flag-to-prev.patch - (git-fixes bsc#1224552 CVE-2024-35997). -- Update - patches.suse/NFS-Fix-nfs_netfs_issue_read-xarray-locking-for-writ.patch - (git-fixes bsc#1223805 CVE-2024-27031). -- Update - patches.suse/NFSv4.2-fix-nfs4_listxattr-kernel-BUG-at-mm-usercopy.patch - (git-fixes bsc#1223113 CVE-2024-26870). -- Update - patches.suse/PCI-PM-Drain-runtime-idle-callbacks-before-driver-re.patch - (stable-fixes bsc#1224738 CVE-2024-35809). -- Update - patches.suse/Reapply-drm-qxl-simplify-qxl_fence_wait.patch - (stable-fixes CVE-2024-36944). -- Update - patches.suse/Revert-drm-amd-pm-resolve-reboot-exception-for-si-ol.patch - (git-fixes bsc#1224722 CVE-2023-52657). -- Update - patches.suse/Revert-net-mlx5-Block-entering-switchdev-mode-with-n.patch - (git-fixes bsc#1224719 CVE-2023-52658). -- Update - patches.suse/SUNRPC-fix-a-memleak-in-gss_import_v2_context.patch - (git-fixes bsc#1223712 CVE-2023-52653). -- Update - patches.suse/SUNRPC-fix-some-memleaks-in-gssx_dec_option_array.patch - (git-fixes bsc#1223744 CVE-2024-27388). -- Update - patches.suse/USB-core-Fix-access-violation-during-port-device-rem.patch - (git-fixes bsc#1225734 CVE-2024-36896). -- Update - patches.suse/USB-core-Fix-deadlock-in-usb_deauthorize_interface.patch - (git-fixes bsc#1223671 CVE-2024-26934). -- Update patches.suse/accel-ivpu-Fix-deadlock-in-context_xa.patch - (git-fixes bsc#1224704 CVE-2024-35953). -- Update - patches.suse/amd-amdkfd-sync-all-devices-to-wait-all-processes-be.patch - (stable-fixes CVE-2024-36949). -- Update - patches.suse/arm64-hibernate-Fix-level3-translation-fault-in-swsu.patch - (git-fixes bsc#1223748 CVE-2024-26989). -- Update patches.suse/ax25-Fix-netdev-refcount-issue.patch - (git-fixes bsc#1224542 CVE-2024-36009). -- Update - patches.suse/ax25-fix-use-after-free-bugs-caused-by-ax25_ds_del_t.patch - (git-fixes bsc#1224663 CVE-2024-35887). -- Update - patches.suse/batman-adv-Avoid-infinite-loop-trying-to-resize-loca.patch - (git-fixes bsc#1224566 CVE-2024-35982). -- Update - patches.suse/block-fix-q-blkg_list-corruption-during-disk-rebind.patch - (bsc#1223591 bsc#1224573 CVE-2024-35974). -- Update - patches.suse/bnxt_en-Fix-possible-memory-leak-in-bnxt_rdma_aux_de.patch - (git-fixes bsc#1224577 CVE-2024-35972). -- Update - patches.suse/bootconfig-use-memblock_free_late-to-free-xbc-memory.patch - (git-fixes bsc#1223637 CVE-2024-26983). -- Update - patches.suse/bpf-Guard-stack-limits-against-32bit-overflow.patch - (git-fixes bsc#1224730 CVE-2023-52676). -- Update - patches.suse/btrfs-fix-deadlock-with-fiemap-and-extent-locking.patch - (bsc#1223285 bsc#1224804 CVE-2024-35784). -- Update - patches.suse/btrfs-fix-information-leak-in-btrfs_ioctl_logical_to.patch - (git-fixes bsc#1224733 CVE-2024-35849). -- Update - patches.suse/btrfs-fix-race-between-ordered-extent-completion-and.patch - (bsc#1223285 bsc#1222426 CVE-2024-26794). -- Update - patches.suse/btrfs-fix-race-when-detecting-delalloc-ranges-during.patch - (bsc#1223285 bsc#1223782 CVE-2024-27080). -- Update - patches.suse/btrfs-handle-chunk-tree-lookup-error-in-btrfs_reloca.patch - (git-fixes bsc#1224644 CVE-2024-35936). -- Update - patches.suse/clk-Get-runtime-PM-before-walking-tree-during-disabl.patch - (git-fixes bsc#1223762 CVE-2024-27004). -- Update - patches.suse/clk-Get-runtime-PM-before-walking-tree-for-clk_summa.patch - (git-fixes bsc#1223761 CVE-2024-27003). -- Update - patches.suse/clk-mediatek-Do-a-runtime-PM-get-on-controllers-duri.patch - (git-fixes bsc#1223759 CVE-2024-27002). -- Update - patches.suse/clk-sunxi-ng-h6-Reparent-CPUX-during-PLL-CPUX-rate-c.patch - (git-fixes bsc#1225692 CVE-2023-52882). -- Update - patches.suse/comedi-vmk80xx-fix-incomplete-endpoint-checking.patch - (git-fixes bsc#1223698 CVE-2024-27001). -- Update - patches.suse/crypto-rsa-add-a-check-for-allocation-failure.patch - (bsc#1222775 bsc#1220430 CVE-2023-52472). -- Update - patches.suse/crypto-s390-aes-Fix-buffer-overread-in-CTR-mode.patch - (git-fixes bsc#1224637 CVE-2023-52669). -- Update - patches.suse/crypto-safexcel-Add-error-handling-for-dma_map_sg-ca.patch - (git-fixes bsc#1224501 CVE-2023-52687). -- Update - patches.suse/cxl-pci-Fix-disabling-memory-if-DVSEC-CXL-Range-does.patch - (git-fixes CVE-2024-26761). -- Update - patches.suse/dm-raid-really-frozen-sync_thread-during-suspend-16c4.patch - (jsc#PED-7542 bsc#1224706 CVE-2024-35794). -- Update - patches.suse/dm-raid456-md-raid456-fix-a-deadlock-for-dm-raid456-4142.patch - (bsc#1219596 bsc#1223654 CVE-2024-26962). -- Update - patches.suse/dma-buf-Fix-NULL-pointer-dereference-in-sanitycheck.patch - (git-fixes bsc#1224480 CVE-2024-35916). -- Update patches.suse/dma-xilinx_dpdma-Fix-locking.patch - (git-fixes bsc#1224559 CVE-2024-35990). -- Update - patches.suse/dmaengine-fsl-qdma-Fix-a-memory-leak-related-to-the--3aa58cb.patch - (git-fixes bsc#1224632 CVE-2024-35833). -- Update - patches.suse/dmaengine-idxd-Fix-oops-during-rmmod-on-single-CPU-p.patch - (git-fixes bsc#1224558 CVE-2024-35989). -- Update - patches.suse/dpll-fix-dpll_pin_on_pin_register-for-multiple-paren.patch - (CVE-2024-27027 bsc#1223787 bsc#1224546 CVE-2024-36002). -- Update - patches.suse/dpll-fix-pin-dump-crash-for-rebound-module.patch - (jsc#PED-6079 bsc#1224633 CVE-2024-35836). -- Update - patches.suse/drm-Check-output-polling-initialized-before-disablin.patch - (stable-fixes bsc#1224654 CVE-2024-35927). -- Update - patches.suse/drm-amd-amdgpu-Fix-potential-ioremap-memory-leaks-in.patch - (stable-fixes bsc#1224653 CVE-2024-35928). -- Update - patches.suse/drm-amd-display-Atom-Integrated-System-Info-v2_2-for.patch - (stable-fixes bsc#1225735 CVE-2024-36897). -- Update - patches.suse/drm-amd-display-Check-writeback-connectors-in-create.patch - (git-fixes bsc#1224506 CVE-2023-52695). -- Update - patches.suse/drm-amd-display-Fix-a-debugfs-null-pointer-error.patch - (git-fixes bsc#1224741 CVE-2023-52673). -- Update - patches.suse/drm-amd-display-Fix-bounds-check-for-dcn35-DcfClocks.patch - (git-fixes bsc#1224709 CVE-2024-35788). -- Update - patches.suse/drm-amd-display-Fix-hang-underflow-when-transitionin.patch - (git-fixes bsc#1224729 CVE-2023-52671). -- Update - patches.suse/drm-amd-display-Prevent-crash-when-disable-stream.patch - (stable-fixes bsc#1224740 CVE-2024-35799). -- Update - patches.suse/drm-amd-pm-fix-a-double-free-in-si_dpm_init.patch - (git-fixes bsc#1224607 CVE-2023-52691). -- Update - patches.suse/drm-amd-pm-fixes-a-random-hang-in-S4-for-SMU-v13.0.4.patch - (stable-fixes bsc#1225705 CVE-2024-36026). -- Update - patches.suse/drm-amdgpu-amdgpu_ttm_gart_bind-set-gtt-bound-flag.patch - (stable-fixes bsc#1224736 CVE-2024-35817). -- Update - patches.suse/drm-amdgpu-fix-deadlock-while-reading-mqd-from-debug.patch - (git-fixes bsc#1224634 CVE-2024-35795). -- Update - patches.suse/drm-amdgpu-fix-mmhub-client-id-out-of-bounds-access.patch - (git-fixes bsc#1223789 CVE-2024-27029). -- Update - patches.suse/drm-amdgpu-once-more-fix-the-call-oder-in-amdgpu_ttm.patch - (git-fixes bsc#1224180 CVE-2024-27400). -- Update - patches.suse/drm-amdgpu-pm-Fix-NULL-pointer-dereference-when-get-.patch - (git-fixes bsc#1223665 CVE-2024-26949). -- Update - patches.suse/drm-amdgpu-validate-the-parameters-of-bo-mapping-ope.patch - (git-fixes bsc#1223315 CVE-2024-26922). -- Update - patches.suse/drm-amdkfd-Confirm-list-is-non-empty-before-utilizin.patch - (git-fixes bsc#1224617 CVE-2023-52678). -- Update - patches.suse/drm-amdkfd-Fix-memory-leak-in-create_process-failure.patch - (git-fixes bsc#1223728 CVE-2024-26986). -- Update - patches.suse/drm-amdkfd-range-check-cp-bad-op-exception-interrupt.patch - (stable-fixes CVE-2024-36951). -- Update - patches.suse/drm-arm-malidp-fix-a-possible-null-pointer-dereferen.patch - (git-fixes bsc#1225593 CVE-2024-36014). -- Update patches.suse/drm-ast-Fix-soft-lockup.patch (git-fixes - bsc#1224705 CVE-2024-35952). -- Update - patches.suse/drm-bridge-tpd12s015-Drop-buggy-__exit-annotation-fo.patch - (git-fixes bsc#1224598 CVE-2023-52694). -- Update - patches.suse/drm-client-Fully-protect-modes-with-dev-mode_config..patch - (stable-fixes bsc#1224703 CVE-2024-35950). -- Update - patches.suse/drm-i915-bios-Tolerate-devdata-NULL-in-intel_bios_en.patch - (stable-fixes bsc#1223678 CVE-2024-26938). -- Update - patches.suse/drm-i915-gt-Reset-queue_priority_hint-on-parking.patch - (git-fixes bsc#1223677 CVE-2024-26937). -- Update - patches.suse/drm-lima-fix-a-memleak-in-lima_heap_alloc.patch - (git-fixes bsc#1224707 CVE-2024-35829). -- Update - patches.suse/drm-nouveau-firmware-Fix-SG_DEBUG-error-with-nvkm_fi.patch - (stable-fixes bsc#1225728 CVE-2024-36885). -- Update - patches.suse/drm-nouveau-fix-stale-locked-mutex-in-nouveau_gem_io.patch - (git-fixes bsc#1224714 CVE-2024-35786). -- Update - patches.suse/drm-nouveau-keep-DMA-buffers-required-for-suspend-re.patch - (git-fixes bsc#1224433 CVE-2024-27411). -- Update patches.suse/drm-nv04-Fix-out-of-bounds-access.patch - (git-fixes bsc#1223802 CVE-2024-27008). -- Update - patches.suse/drm-panfrost-Fix-the-error-path-in-panfrost_mmu_map_.patch - (git-fixes bsc#1224701 CVE-2024-35951). -- Update - patches.suse/drm-tegra-rgb-Fix-missing-clk_put-in-the-error-handl.patch - (git-fixes bsc#1224445 CVE-2023-52661). -- Update - patches.suse/drm-vc4-don-t-check-if-plane-state-fb-state-fb.patch - (stable-fixes bsc#1224650 CVE-2024-35932). -- Update - patches.suse/drm-vmwgfx-Create-debugfs-ttm_resource_manager-entry.patch - (git-fixes bsc#1223718 CVE-2024-26940). -- Update - patches.suse/drm-vmwgfx-Fix-the-lifetime-of-the-bo-cursor-memory.patch - (git-fixes bsc#1224626 CVE-2024-35810). -- Update - patches.suse/drm-vmwgfx-fix-a-memleak-in-vmw_gmrid_man_get_node.patch - (git-fixes bsc#1224449 CVE-2023-52662). -- Update - patches.suse/dyndbg-fix-old-BUG_ON-in-control-parser.patch - (stable-fixes bsc#1224647 CVE-2024-35947). -- Update - patches.suse/efi-capsule-loader-fix-incorrect-allocation-size.patch - (git-fixes bsc#1224438 CVE-2024-27413). -- Update patches.suse/efi-fix-panic-in-kdump-kernel.patch - (git-fixes bsc#1224507 CVE-2024-35800). -- Update patches.suse/efivarfs-Free-s_fs_info-on-unmount.patch - (bsc#1220328 CVE-2023-52463 bsc#1224505 CVE-2023-52681). -- Update - patches.suse/fat-fix-uninitialized-field-in-nostale-filehandles.patch - (git-fixes bsc#1223641 CVE-2024-26973). -- Update - patches.suse/fbmon-prevent-division-by-zero-in-fb_videomode_from_.patch - (stable-fixes bsc#1224660 CVE-2024-35922). -- Update - patches.suse/firewire-ohci-mask-bus-reset-interrupts-between-ISR-.patch - (stable-fixes CVE-2024-36950). -- Update - patches.suse/fs-aio-Check-IOCB_AIO_RW-before-the-struct-aio_kiocb.patch - (bsc#1222721 CVE-2024-26764 bsc#1224685 CVE-2024-35815). -- Update - patches.suse/geneve-fix-header-validation-in-geneve-6-_xmit_skb.patch - (git-fixes bsc#1224586 CVE-2024-35973). -- Update - patches.suse/geneve-make-sure-to-pull-inner-header-in-geneve_rx.patch - (git-fixes bsc#1223058 CVE-2024-26857). -- Update patches.suse/gpiolib-cdev-fix-uninitialised-kfifo.patch - (git-fixes bsc#1225736 CVE-2024-36898). -- Update - patches.suse/i2c-smbus-fix-NULL-function-pointer-dereference.patch - (git-fixes bsc#1224567 CVE-2024-35984). -- Update - patches.suse/i40e-fix-vf-may-be-used-uninitialized-in-this-functi.patch - (git-fixes bsc#1225698 CVE-2024-36020). -- Update - patches.suse/ice-fix-memory-corruption-bug-with-suspend-and-rebui.patch - (git-fixes bsc#1224486 CVE-2024-35911). -- Update - patches.suse/ice-fix-uninitialized-dplls-mutex-usage.patch - (git-fixes bsc#1223039 CVE-2024-26854). -- Update - patches.suse/idpf-fix-kernel-panic-on-unknown-packet-types.patch - (git-fixes bsc#1224517 CVE-2024-35889). -- Update - patches.suse/igc-avoid-returning-frame-twice-in-XDP_REDIRECT.patch - (git-fixes bsc#1223061 CVE-2024-26853). -- Update - patches.suse/init-main.c-Fix-potential-static_command_line-memory.patch - (git-fixes bsc#1223747 CVE-2024-26988). -- Update - patches.suse/iommufd-Fix-iopt_access_list_id-overwrite-bug.patch - (git-fixes bsc#1222780 CVE-2024-26786). -- Update - patches.suse/irqchip-gic-v3-its-Prevent-double-free-on-error.patch - (git-fixes bsc#1224697 CVE-2024-35847). -- Update - patches.suse/kprobes-Fix-possible-use-after-free-issue-on-kprobe-registration.patch - (git-fixes bsc#1224676 CVE-2024-35955). -- Update - patches.suse/mac802154-fix-llsec-key-resources-release-in-mac8021.patch - (git-fixes bsc#1223652 CVE-2024-26961). -- Update - patches.suse/maple_tree-fix-mas_empty_area_rev-null-pointer-deref.patch - (git-fixes bsc#1225710 CVE-2024-36891). -- Update - patches.suse/md-dm-raid-don-t-call-md_reap_sync_thread-directly-cd32.patch - (jsc#PED-7542 bsc#1224623 CVE-2024-35808). -- Update patches.suse/md-fix-kmemleak-of-rdev-serial-6cf3.patch - (jsc#PED-7542 bsc#1223046 CVE-2024-26900). -- Update - patches.suse/media-rkisp1-Fix-IRQ-handling-due-to-shared-interrup.patch - (stable-fixes bsc#1224443 CVE-2023-52660). -- Update - patches.suse/media-tc358743-register-v4l2-async-device-only-after.patch - (git-fixes bsc#1224680 CVE-2024-35830). -- Update - patches.suse/misc-lis3lv02d_i2c-Fix-regulators-getting-en-dis-abl.patch - (git-fixes bsc#1224609 CVE-2024-35824). -- Update - patches.suse/mlxbf_gige-call-request_irq-after-NAPI-initialized.patch - (git-fixes bsc#1224492 CVE-2024-35907). -- Update - patches.suse/mlxbf_gige-stop-interface-during-shutdown.patch - (git-fixes bsc#1224519 CVE-2024-35885). -- Update - patches.suse/mmc-core-Avoid-negative-index-with-array-access.patch - (git-fixes bsc#1224618 CVE-2024-35813). -- Update - patches.suse/mmc-sdhci-msm-pervent-access-to-suspended-controller.patch - (git-fixes bsc#1225708 CVE-2024-36029). -- Update - patches.suse/msft-hv-2971-net-mana-Fix-Rx-DMA-datasize-and-skb_over_panic.patch - (git-fixes bsc#1224495 CVE-2024-35901). -- Update - patches.suse/net-atlantic-eliminate-double-free-in-error-handling.patch - (git-fixes bsc#1224747 CVE-2023-52664). -- Update - patches.suse/net-ena-Fix-incorrect-descriptor-free-behavior.patch - (git-fixes bsc#1224677 CVE-2024-35958). -- Update - patches.suse/net-ethernet-mtk_eth_soc-fix-PPE-hanging-issue.patch - (git-fixes bsc#1224716 CVE-2024-27432). -- Update - patches.suse/net-hns3-fix-kernel-crash-when-1588-is-received-on-H.patch - (git-fixes bsc#1223041 CVE-2024-26881). -- Update - patches.suse/net-hns3-fix-kernel-crash-when-devlink-reload-during.patch - (git-fixes bsc#1225699 CVE-2024-36021). -- Update - patches.suse/net-ice-Fix-potential-NULL-pointer-dereference-in-ic.patch - (git-fixes bsc#1223051 CVE-2024-26855). -- Update - patches.suse/net-ks8851-Handle-softirqs-at-the-end-of-IRQ-thread-.patch - (git-fixes bsc#1224578 CVE-2024-35971). -- Update - patches.suse/net-ll_temac-platform_get_resource-replaced-by-wrong.patch - (git-fixes bsc#1224615 CVE-2024-35796). -- Update - patches.suse/net-mlx5-Properly-link-new-fs-rules-into-the-tree.patch - (git-fixes bsc#1224588 CVE-2024-35960). -- Update - patches.suse/net-mlx5-Register-devlink-first-under-devlink-lock.patch - (git-fixes bsc#1224585 CVE-2024-35961). -- Update - patches.suse/net-mlx5e-Fix-mlx5e_priv_init-cleanup-flow.patch - (git-fixes bsc#1224666 CVE-2024-35959). -- Update - patches.suse/net-mlx5e-Use-a-memory-barrier-to-enforce-PTP-WQ-xmi.patch - (git-fixes bsc#1223020 CVE-2024-26858). -- Update - patches.suse/net-mlx5e-fix-a-double-free-in-arfs_create_groups.patch - (jsc#PED-3311 bsc#1224605 CVE-2024-35835). -- Update - patches.suse/net-mlx5e-fix-a-potential-double-free-in-fs_any_crea.patch - (jsc#PED-3311 bsc#1224603 CVE-2023-52667). -- Update - patches.suse/net-mvpp2-clear-BM-pool-before-initialization.patch - (git-fixes bsc#1224500 CVE-2024-35837). -- Update - patches.suse/net-phy-micrel-Fix-potential-null-pointer-dereferenc.patch - (git-fixes bsc#1224513 CVE-2024-35891). -- Update - patches.suse/net-phy-phy_device-Prevent-nullptr-exceptions-on-ISR.patch - (stable-fixes bsc#1224639 CVE-2024-35945). -- Update - patches.suse/net-sparx5-Fix-use-after-free-inside-sparx5_del_mact.patch - (git-fixes bsc#1223052 CVE-2024-26856). -- Update patches.suse/net-tls-fix-WARNIING-in-__sk_msg_free.patch - (bsc#1221858 bsc#1224687 CVE-2024-35841). -- Update - patches.suse/net-wwan-t7xx-Split-64bit-accesses-to-fix-alignment-.patch - (git-fixes bsc#1224491 CVE-2024-35909). -- Update - patches.suse/nfc-nci-Fix-uninit-value-in-nci_dev_up-and-nci_ntf_p.patch - (git-fixes bsc#1224479 CVE-2024-35915). -- Update - patches.suse/nfp-flower-handle-acti_netdevs-allocation-failure.patch - (git-fixes bsc#1223827 CVE-2024-27046). -- Update - patches.suse/nfs-fix-panic-when-nfs4_ff_layout_prepare_ds-fails.patch - (git-fixes bsc#1223038 CVE-2024-26868). -- Update - patches.suse/nfsd-Fix-error-cleanup-path-in-nfsd_rename.patch - (bsc#1221044 CVE-2023-52591 bsc#1224482 CVE-2024-35914). -- Update - patches.suse/nouveau-dmem-handle-kcalloc-allocation-failure.patch - (git-fixes CVE-2024-26943). -- Update - patches.suse/nouveau-fix-instmem-race-condition-around-ptr-stores.patch - (git-fixes bsc#1223633 CVE-2024-26984). -- Update patches.suse/nouveau-lock-the-client-object-tree.patch - (stable-fixes bsc#1223834 CVE-2024-27062). -- Update - patches.suse/nouveau-uvmm-fix-addr-range-calcs-for-remap-operatio.patch - (git-fixes bsc#1225694 CVE-2024-36018). -- Update - patches.suse/nvme-fc-do-not-wait-in-vain-when-unloading-module.patch - (git-fixes bsc#1223023 CVE-2024-26846). -- Update - patches.suse/nvme-fix-reconnection-fail-due-to-reserved-tag-alloc.patch - (git-fixes bsc#1224717 CVE-2024-27435). -- Update - patches.suse/octeontx2-af-Use-separate-handlers-for-interrupts.patch - (git-fixes bsc#1223790 CVE-2024-27030). -- Update - patches.suse/octeontx2-pf-Fix-transmit-scheduler-resource-leak.patch - (git-fixes bsc#1224569 CVE-2024-35975). -- Update - patches.suse/of-Fix-double-free-in-of_parse_phandle_with_args_map.patch - (git-fixes bsc#1224508 CVE-2023-52679). -- Update - patches.suse/of-dynamic-Synchronize-of_changeset_destroy-with-the.patch - (git-fixes bsc#1224524 CVE-2024-35879). -- Update - patches.suse/of-module-prevent-NULL-pointer-dereference-in-vsnpri.patch - (stable-fixes bsc#1224671 CVE-2024-35878). -- Update - patches.suse/phy-marvell-a3700-comphy-Fix-out-of-bounds-read.patch - (git-fixes bsc#1224555 CVE-2024-35992). -- Update - patches.suse/phy-ti-tusb1210-Resolve-charger-det-crash-if-charger.patch - (git-fixes bsc#1224562 CVE-2024-35986). -- Update - patches.suse/pinctrl-core-delete-incorrect-free-in-pinctrl_enable.patch - (git-fixes CVE-2024-36940). -- Update - patches.suse/pinctrl-devicetree-fix-refcount-leak-in-pinctrl_dt_t.patch - (git-fixes CVE-2024-36959). -- Update - patches.suse/platform-chrome-cros_ec_uart-properly-fix-race-condi.patch - (git-fixes bsc#1224568 CVE-2024-35977). -- Update - patches.suse/power-supply-bq27xxx-i2c-Do-not-free-non-existing-IR.patch - (git-fixes bsc#1224437 CVE-2024-27412). -- Update - patches.suse/powerpc-imc-pmu-Add-a-null-pointer-check-in-update_events_in_group.patch - (git-fixes bsc#1224504 CVE-2023-52675). -- Update - patches.suse/powerpc-powernv-Add-a-null-pointer-check-in-opal_eve.patch - (bsc#1065729 bsc#1224682 CVE-2023-52686). -- Update - patches.suse/powerpc-powernv-Add-a-null-pointer-check-in-opal_pow.patch - (bsc#1181674 ltc#189159 git-fixes bsc#1224601 CVE-2023-52696). -- Update - patches.suse/powerpc-powernv-Add-a-null-pointer-check-to-scom_deb.patch - (bsc#1194869 bsc#1224611 CVE-2023-52690). -- Update - patches.suse/pstore-inode-Only-d_invalidate-is-needed.patch - (git-fixes bsc#1223705 CVE-2024-27389). -- Update - patches.suse/pstore-ram_core-fix-possible-overflow-in-persistent_.patch - (git-fixes bsc#1224728 CVE-2023-52685). -- Update - patches.suse/pstore-zone-Add-a-null-pointer-check-to-the-psz_kmsg.patch - (stable-fixes bsc#1224537 CVE-2024-35940). -- Update - patches.suse/regmap-maple-Fix-cache-corruption-in-regcache_maple_.patch - (git-fixes bsc#1225695 CVE-2024-36019). -- Update - patches.suse/rpmsg-virtio-Free-driver_override-when-rpmsg_remove.patch - (git-fixes bsc#1224696 CVE-2023-52670). -- Update - patches.suse/s390-cio-Ensure-the-copied-buf-is-NUL-terminated.patch - (git-fixes bsc#1223869 bsc#1225747 CVE-2024-36931). -- Update - patches.suse/s390-qeth-Fix-kernel-panic-after-setting-hsuid.patch - (git-fixes bsc#1223874 bsc#1225775 CVE-2024-36928). -- Update - patches.suse/s390-zcrypt-fix-reference-counting-on-zcrypt-card-objects.patch - (git-fixes bsc#1223592 bsc#1223666 CVE-2024-26957). -- Update - patches.suse/scsi-core-Fix-unremoved-procfs-host-directory-regression.patch - (git-fixes bsc#1223675 CVE-2024-26935). -- Update - patches.suse/scsi-lpfc-Fix-possible-memory-leak-in-lpfc_rcv_padis.patch - (bsc#1220021 bsc#1224651 CVE-2024-35930). -- Update - patches.suse/scsi-qla2xxx-Fix-off-by-one-in-qla_edif_app_getstats.patch - (git-fixes bsc#1225704 CVE-2024-36025). -- Update patches.suse/scsi-sg-Avoid-sg-device-teardown-race.patch - (git-fixes bsc#1224675 CVE-2024-35954). -- Update - patches.suse/scsi-smartpqi-Fix-disable_managed_interrupts.patch - (git-fixes bsc#1222608 CVE-2024-26742). -- Update - patches.suse/selinux-avoid-dereference-of-garbage-after-mount-fai.patch - (git-fixes bsc#1224494 CVE-2024-35904). -- Update - patches.suse/serial-mxs-auart-add-spinlock-around-changing-cts-st.patch - (git-fixes bsc#1223757 CVE-2024-27000). -- Update - patches.suse/serial-pmac_zilog-Remove-flawed-mitigation-for-rx-ir.patch - (git-fixes bsc#1223754 CVE-2024-26999). -- Update - patches.suse/soc-fsl-qbman-Always-disable-interrupts-when-taking-.patch - (git-fixes bsc#1224699 CVE-2024-35806). -- Update - patches.suse/soc-fsl-qbman-Use-raw-spinlock-for-cgr_lock.patch - (git-fixes bsc#1224683 CVE-2024-35819). -- Update patches.suse/speakup-Avoid-crash-on-very-long-word.patch - (git-fixes bsc#1223750 CVE-2024-26994). -- Update - patches.suse/spi-fix-null-pointer-dereference-within-spi_sync.patch - (git-fixes CVE-2024-36930). -- Update - patches.suse/spi-lpspi-Avoid-potential-use-after-free-in-probe.patch - (git-fixes bsc#1223024 CVE-2024-26866). -- Update - patches.suse/spi-mchp-pci1xxx-Fix-a-possible-null-pointer-derefer.patch - (git-fixes bsc#1224521 CVE-2024-35883). -- Update - patches.suse/spi-spi-mt65xx-Fix-NULL-pointer-access-in-interrupt-.patch - (git-fixes bsc#1223788 CVE-2024-27028). -- Update - patches.suse/ubifs-Set-page-uptodate-in-the-correct-place.patch - (git-fixes bsc#1224629 CVE-2024-35821). -- Update - patches.suse/usb-cdc-wdm-close-race-between-read-and-workqueue.patch - (git-fixes bsc#1224624 CVE-2024-35812). -- Update - patches.suse/usb-dwc2-host-Fix-dereference-issue-in-DDMA-completi.patch - (git-fixes bsc#1223741 CVE-2024-26997). -- Update - patches.suse/usb-dwc3-am62-fix-module-unload-reload-behavior.patch - (git-fixes bsc#1223651 CVE-2024-26963). -- Update - patches.suse/usb-gadget-f_fs-Fix-race-between-aio_cancel-and-AIO-.patch - (git-fixes bsc#1225749 CVE-2024-36894). -- Update - patches.suse/usb-gadget-f_ncm-Fix-UAF-ncm-object-at-re-bind-after.patch - (stable-fixes bsc#1223752 CVE-2024-26996). -- Update - patches.suse/usb-gadget-ncm-Avoid-dropping-datagrams-of-properly-.patch - (git-fixes bsc#1224423 CVE-2024-27405). -- Update - patches.suse/usb-gadget-ncm-Fix-handling-of-zero-block-length-pac.patch - (git-fixes bsc#1224681 CVE-2024-35825). -- Update - patches.suse/usb-gadget-uvc-use-correct-buffer-size-when-parsing-.patch - (git-fixes bsc#1225750 CVE-2024-36895). -- Update - patches.suse/usb-typec-altmodes-displayport-create-sysfs-nodes-as.patch - (git-fixes bsc#1224712 CVE-2024-35790). -- Update - patches.suse/usb-typec-tcpm-Check-for-port-partner-validity-befor.patch - (git-fixes bsc#1225748 CVE-2024-36893). -- Update - patches.suse/usb-typec-tcpm-Correct-the-PDO-counting-in-pd_set.patch - (git-fixes bsc#1223696 CVE-2024-26995). -- Update - patches.suse/usb-typec-tcpm-fix-double-free-issue-in-tcpm_port_un.patch - (git-fixes bsc#1223649 CVE-2024-26932). -- Update patches.suse/usb-typec-ucsi-Limit-read-size-on-v1.2.patch - (stable-fixes bsc#1224657 CVE-2024-35924). -- Update - patches.suse/usb-udc-remove-warning-when-queue-disabled-ep.patch - (stable-fixes bsc#1224739 CVE-2024-35822). -- Update - patches.suse/usb-xhci-Add-error-handling-in-xhci_map_urb_for_dma.patch - (git-fixes bsc#1223650 CVE-2024-26964). -- Update - patches.suse/vt-fix-unicode-buffer-corruption-when-deleting-chara.patch - (git-fixes bsc#1224692 CVE-2024-35823). -- Update - patches.suse/wifi-ath11k-decrease-MHI-channel-buffer-length-to-8K.patch - (bsc#1207948 bsc#1224643 CVE-2024-35938). -- Update - patches.suse/wifi-brcmfmac-Fix-use-after-free-bug-in-brcmf_cfg802.patch - (CVE-2023-47233 bsc#1216702 bsc#1224592 CVE-2024-35811). -- Update - patches.suse/wifi-cfg80211-check-A-MSDU-format-more-carefully.patch - (stable-fixes bsc#1224526 CVE-2024-35937). -- Update - patches.suse/wifi-iwlwifi-dbg-tlv-ensure-NUL-termination.patch - (git-fixes bsc#1224731 CVE-2024-35845). -- Update - patches.suse/wifi-iwlwifi-mvm-don-t-set-the-MFP-flag-for-the-GTK.patch - (git-fixes bsc#1224710 CVE-2024-27434). -- Update - patches.suse/wifi-iwlwifi-mvm-guard-against-invalid-STA-ID-on-rem.patch - (stable-fixes bsc#1225769 CVE-2024-36921). -- Update - patches.suse/wifi-iwlwifi-mvm-rfi-fix-potential-response-leaks.patch - (git-fixes bsc#1224487 CVE-2024-35912). -- Update - patches.suse/wifi-iwlwifi-read-txq-read_ptr-under-lock.patch - (stable-fixes CVE-2024-36922). -- Update - patches.suse/wifi-libertas-fix-some-memleaks-in-lbs_allocate_cmd_.patch - (git-fixes bsc#1224622 CVE-2024-35828). -- Update - patches.suse/wifi-mac80211-check-clear-fast-rx-for-non-4addr-sta-.patch - (stable-fixes bsc#1224749 CVE-2024-35789). -- Update - patches.suse/wifi-mac80211-fix-potential-sta-link-leak.patch - (git-fixes bsc#1224613 CVE-2024-35838). -- Update - patches.suse/wifi-nl80211-don-t-free-NULL-coalescing-rule.patch - (git-fixes CVE-2024-36941). -- Update - patches.suse/wifi-nl80211-reject-iftype-change-with-mesh-ID-chang.patch - (git-fixes bsc#1224432 CVE-2024-27410). -- Update - patches.suse/wifi-rtw89-fix-null-pointer-access-when-abort-scan.patch - (stable-fixes bsc#1224646 CVE-2024-35946). -- Update - patches.suse/wireguard-netlink-access-device-through-ctx-instead-.patch - (git-fixes bsc#1223661 CVE-2024-26950). -- Update - patches.suse/wireguard-netlink-check-for-dangling-peer-via-is_dea.patch - (git-fixes bsc#1223660 CVE-2024-26951). -- Update - patches.suse/wireguard-receive-annotate-data-race-around-receivin.patch - (git-fixes bsc#1223076 CVE-2024-26861). -- Update - patches.suse/x86-coco-Require-seeding-RNG-with-RDRAND-on-CoCo-systems.patch - (git-fixes bsc#1224665 CVE-2024-35875). -- Update - patches.suse/x86-fpu-Keep-xfd_state-in-sync-with-MSR_IA32_XFD.patch - (git-fixes bsc#1224732 CVE-2024-35801). -- Update - patches.suse/xen-evtchn-avoid-WARN-when-unbinding-an-event-channe.patch - (git-fixes bsc#1223739 CVE-2024-27067). -- Update - patches.suse/xsk-recycle-buffer-in-case-Rx-queue-was-full.patch - (bsc#1221303 CVE-2024-26611 bsc#1224620 CVE-2024-35834). -- commit 0191191 - ------------------------------------------------------------------- Mon Jun 3 14:06:08 CEST 2024 - mfranc@suse.cz @@ -19248,12 +25398,6 @@ Mon Jun 3 13:25:29 CEST 2024 - msuchanek@suse.de lookup (bsc#1187716 ltc#193451 git-fixes). - commit ceab637 -------------------------------------------------------------------- -Mon Jun 3 13:19:17 CEST 2024 - msuchanek@suse.de - -- blacklist.conf: PPC fsl_msi is not used -- commit ae6590d - ------------------------------------------------------------------- Mon Jun 3 13:03:27 CEST 2024 - msuchanek@suse.de @@ -19368,18 +25512,6 @@ Fri May 31 19:39:48 CEST 2024 - dsterba@suse.com - 9p: add missing locking around taking dentry fid list (git-fixes) - commit 581af2d -------------------------------------------------------------------- -Fri May 31 18:08:13 CEST 2024 - dsterba@suse.com - -- blacklist.conf: only a VFS cleanup -- commit f4a0ca8 - -------------------------------------------------------------------- -Fri May 31 18:00:27 CEST 2024 - dsterba@suse.com - -- blacklist.conf: openpromfs not built -- commit 475ff82 - ------------------------------------------------------------------- Fri May 31 17:58:22 CEST 2024 - dsterba@suse.com @@ -19429,24 +25561,12 @@ Fri May 31 17:08:22 CEST 2024 - shung-hsi.yu@suse.com - bpf: handle ldimm64 properly in check_cfg() (bsc#1225756). - commit 9cbb99b -------------------------------------------------------------------- -Fri May 31 16:48:47 CEST 2024 - dsterba@suse.com - -- blacklist.conf: remove add and revert patch pair -- commit f17fe30 - ------------------------------------------------------------------- Fri May 31 16:41:07 CEST 2024 - dsterba@suse.com - fs: indicate request originates from old mount API (git-fixes) - commit 0754468 -------------------------------------------------------------------- -Fri May 31 16:38:52 CEST 2024 - dsterba@suse.com - -- blacklist.conf: only comment fix -- commit b912460 - ------------------------------------------------------------------- Fri May 31 16:36:29 CEST 2024 - dsterba@suse.com @@ -19614,12 +25734,6 @@ Wed May 29 18:24:54 CEST 2024 - nstange@suse.de from the PKCS#7 selftest. - commit cfa0827 -------------------------------------------------------------------- -Wed May 29 17:39:53 CEST 2024 - mbrugger@suse.com - -- blacklist.conf: arm: kernel does not support folios -- commit e0489ca - ------------------------------------------------------------------- Wed May 29 17:23:53 CEST 2024 - pmladek@suse.com @@ -19820,13 +25934,6 @@ Wed May 29 13:45:07 CEST 2024 - pmladek@suse.com klp_resolve_symbols() (bsc#1223539). - commit af0f908 -------------------------------------------------------------------- -Wed May 29 13:33:07 CEST 2024 - pmladek@suse.com - -- blacklist.conf: workqueues: system-wide nr_active enforcement patchset; - not worth the risk (bsc#1225580) -- commit 059cebc - ------------------------------------------------------------------- Wed May 29 13:28:17 CEST 2024 - shung-hsi.yu@suse.com @@ -19872,12 +25979,6 @@ Wed May 29 11:25:39 CEST 2024 - jlee@suse.com (bsc#1224581 CVE-2024-35964). - commit 9d49d44 -------------------------------------------------------------------- -Wed May 29 11:06:17 CEST 2024 - pmladek@suse.com - -- blacklist.conf: workqueues: cosmetic; truncated names in ps output -- commit 2ed068f - ------------------------------------------------------------------- Wed May 29 10:52:47 CEST 2024 - jlee@suse.com @@ -20014,13 +26115,6 @@ Tue May 28 20:07:48 CEST 2024 - ematsumiya@suse.de (bsc#1225172). - commit 3ddf86f -------------------------------------------------------------------- -Tue May 28 16:02:28 CEST 2024 - iivanov@suse.de - -- blacklist.conf: Ignore all devicetree schemes changes - We do not use them, so lets silence all git-fixes for them. -- commit 84a3286 - ------------------------------------------------------------------- Tue May 28 13:34:20 CEST 2024 - nik.borisov@suse.com @@ -20250,18 +26344,6 @@ Mon May 27 15:40:09 CEST 2024 - dsterba@suse.com - btrfs: make error messages more clear when getting a chunk map (git-fixes) - commit 47ecf55 -------------------------------------------------------------------- -Mon May 27 15:38:41 CEST 2024 - dsterba@suse.com - -- blacklist.conf: btrfs: compilation warning fix -- commit 02490e2 - -------------------------------------------------------------------- -Mon May 27 15:37:02 CEST 2024 - dsterba@suse.com - -- blacklist.conf: btrfs: code not built -- commit 5199fc3 - ------------------------------------------------------------------- Mon May 27 15:29:06 CEST 2024 - dsterba@suse.com @@ -20307,12 +26389,6 @@ Mon May 27 15:20:36 CEST 2024 - petr.pavlu@suse.com - tracing: hide unused ftrace_event_id_fops (git-fixes). - commit 61c90c7 -------------------------------------------------------------------- -Mon May 27 15:19:03 CEST 2024 - petr.pavlu@suse.com - -- blacklist.conf: add not-relevant tracing commits -- commit b97c070 - ------------------------------------------------------------------- Mon May 27 11:19:26 CEST 2024 - nik.borisov@suse.com @@ -21596,14 +27672,6 @@ Wed May 22 10:48:23 CEST 2024 - iivanov@suse.de - supported.conf: Add APM X-Gene SoC hardware monitoring driver (bsc#1223265 jsc#PED-8570) - commit 4b0eeb3 -------------------------------------------------------------------- -Wed May 22 10:35:02 CEST 2024 - lhenriques@suse.de - -- blacklist.conf: cephfs client logging infrastructure commits - These two commits are useless in isolation, they are part of a larger set - of commits that add extra info to debug logs. -- commit 2056926 - ------------------------------------------------------------------- Wed May 22 08:47:44 CEST 2024 - tiwai@suse.de @@ -21688,12 +27756,6 @@ Tue May 21 16:07:04 CEST 2024 - jgross@suse.com dirty status (git-fixes). - commit 7bdd69f -------------------------------------------------------------------- -Tue May 21 15:26:06 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add a1fd0b9d751f sched/fair: Allow disabling sched_balance_newidle with sched_relax_domain_level -- commit 3d0aa70 - ------------------------------------------------------------------- Tue May 21 15:16:02 CEST 2024 - tiwai@suse.de @@ -21889,12 +27951,6 @@ Tue May 21 09:57:46 CEST 2024 - jgross@suse.com due to bad index (git-fixes). - commit b2e9cf1 -------------------------------------------------------------------- -Tue May 21 09:22:11 CEST 2024 - shung-hsi.yu@suse.com - -- blacklist.conf: add "libbpf: Fix NULL pointer dereference in bpf_object__collect_prog_relos" -- commit f859338 - ------------------------------------------------------------------- Tue May 21 09:07:54 CEST 2024 - jgross@suse.com @@ -22036,12 +28092,6 @@ Mon May 20 17:28:06 CEST 2024 - dsterba@suse.com - btrfs: sysfs: validate scrub_speed_max value (git-fixes) - commit 333b480 -------------------------------------------------------------------- -Mon May 20 17:26:31 CEST 2024 - dsterba@suse.com - -- blacklist.conf: btrfs: build fix for config we don't use -- commit d489b93 - ------------------------------------------------------------------- Mon May 20 17:25:16 CEST 2024 - dsterba@suse.com @@ -22210,12 +28260,6 @@ Mon May 20 15:37:10 CEST 2024 - nmorey@suse.com - RDMA/rxe: Fix the problem "mutex_destroy missing" (git-fixes) - commit 0a73f85 -------------------------------------------------------------------- -Mon May 20 14:08:23 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: dts: broadcom: bcmbca: bcm4908: set brcm,wp-not-connected") -- commit a7b0273 - ------------------------------------------------------------------- Mon May 20 14:04:41 CEST 2024 - iivanov@suse.de @@ -22265,270 +28309,12 @@ Mon May 20 13:22:07 CEST 2024 - iivanov@suse.de Refresh patches.suse/arm64-dts-rockchip-enable-internal-pull-up-on-PCIE_WAKE-for-RK3399-Puma.patch - commit aeac8db -------------------------------------------------------------------- -Mon May 20 12:53:44 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: display: samsung,ams495qa01: add missing SPI properties") -- commit f4f5a90 - -------------------------------------------------------------------- -Mon May 20 12:53:08 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: iio: health: maxim,max30102: fix compatible check") -- commit 1690e24 - -------------------------------------------------------------------- -Mon May 20 12:52:51 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: pwm: mediatek,pwm-disp: Document power-domains property") -- commit 6958159 - -------------------------------------------------------------------- -Mon May 20 12:52:16 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: fsl-imx-sdma: fix HDMI audio index") -- commit 952bf73 - -------------------------------------------------------------------- -Mon May 20 12:52:05 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: lcdif: Do not require power-domains for i.MX6ULL") -- commit eabdd33 - -------------------------------------------------------------------- -Mon May 20 12:51:52 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: interrupt-controller: renesas,rzg2l-irqc: Update") -- commit ad9009e - -------------------------------------------------------------------- -Mon May 20 12:51:31 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mtd: avoid automatically select from mtd.yaml") -- commit 2d9981a - -------------------------------------------------------------------- -Mon May 20 12:51:15 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: can: mpfs: add missing required clock") -- commit d5f79eb - -------------------------------------------------------------------- -Mon May 20 12:50:57 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mfd: dlg,da9063: Make #interrupt-cells required") -- commit a6ea77b - -------------------------------------------------------------------- -Mon May 20 12:50:46 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: pinctr: pinctrl-zynq: Fix compatible string") -- commit f208a95 - -------------------------------------------------------------------- -Mon May 20 12:49:28 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: msm: qcom, mdss: Include ommited fam-b compatible") -- commit 3478db8 - -------------------------------------------------------------------- -Mon May 20 12:49:08 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: display: ti,am65x-dss: Add support for common1 region") -- commit 7eb6591 - -------------------------------------------------------------------- -Mon May 20 12:48:50 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: opp: drop maxItems from inner items") -- commit 878a019 - -------------------------------------------------------------------- -Mon May 20 12:48:31 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: pwm: amlogic: fix s4 bindings") -- commit e2029e3 - -------------------------------------------------------------------- -Mon May 20 12:48:15 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: arm: rockchip: Correct vendor for Banana Pi R2 Pro") -- commit c1d1519 - -------------------------------------------------------------------- -Mon May 20 12:45:53 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: arm: rockchip: Correct vendor for Orange Pi RK3399 board") -- commit 88539b6 - ------------------------------------------------------------------- Mon May 20 12:45:20 CEST 2024 - iivanov@suse.de - dt-bindings: clock: qcom: Add missing UFS QREF clocks (git-fixes) - commit 4e403e4 -------------------------------------------------------------------- -Mon May 20 12:43:49 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: arm: qcom: drop the superfluous device compatibility") -- commit f6fdbc2 - -------------------------------------------------------------------- -Mon May 20 12:43:00 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: riscv: cpus: Clarify mmu-type interpretation") -- commit 4b6b7f4 - -------------------------------------------------------------------- -Mon May 20 12:42:52 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: power: reset: qcom-pon: fix inconsistent example") -- commit b2da43b - -------------------------------------------------------------------- -Mon May 20 12:42:42 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: rtc: qcom-pm8xxx: fix inconsistent example") -- commit 673e959 - -------------------------------------------------------------------- -Mon May 20 12:42:30 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: phy: qcom,sc8280xp-qmp-usb43dp-phy: fix path to header") -- commit 2965719 - -------------------------------------------------------------------- -Mon May 20 12:42:17 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: phy: amlogic,g12a-mipi-dphy-analog: drop unneeded reg") -- commit 44293cc - -------------------------------------------------------------------- -Mon May 20 12:42:03 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: gpio: xilinx: Fix node address in gpio") -- commit 51eae0f - -------------------------------------------------------------------- -Mon May 20 12:41:48 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: iio/adc: qcom,spmi-vadc: fix example node names") -- commit 5559cae - -------------------------------------------------------------------- -Mon May 20 12:41:19 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: iio/adc: qcom,spmi-iadc: fix example node name") -- commit 6d910c5 - -------------------------------------------------------------------- -Mon May 20 12:39:37 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: PCI: qcom: Correct reset-names property") -- commit cfa6f44 - -------------------------------------------------------------------- -Mon May 20 12:17:43 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mailbox: zynqmp: extend required list") -- commit 193f0ac - -------------------------------------------------------------------- -Mon May 20 12:17:21 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mailbox: qcom,apcs-kpss-global: drop duplicated") -- commit 855a271 - -------------------------------------------------------------------- -Mon May 20 12:17:05 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mfd: hisilicon,hi6421-spmi-pmic: Fix regulator binding") -- commit 9b3e020 - -------------------------------------------------------------------- -Mon May 20 12:16:23 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mfd: hisilicon,hi6421-spmi-pmic: Fix up binding") -- commit a0c4967 - -------------------------------------------------------------------- -Mon May 20 12:16:03 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: remoteproc: qcom: sc7180-pas: Fix SC7280 MPSS PD-names") -- commit de1ba63 - -------------------------------------------------------------------- -Mon May 20 11:58:54 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mmc: sdhci-pxa: Fix 'regs' typo") -- commit 3378497 - -------------------------------------------------------------------- -Mon May 20 11:58:39 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: Remove alt_ref from versal") -- commit 4d14333 - -------------------------------------------------------------------- -Mon May 20 11:58:17 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: watchdog: qcom-wdt: Make the interrupt example edge") -- commit 17a3ab8 - -------------------------------------------------------------------- -Mon May 20 11:57:04 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: display: msm: qcm2290-mdss: Use the non-deprecated DSI") -- commit 4aa1481 - -------------------------------------------------------------------- -Mon May 20 11:56:20 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: arm: stm32: don't mix SCMI and non-SCMI board") -- commit 448ff06 - -------------------------------------------------------------------- -Mon May 20 11:55:42 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: media: mediatek: mdp3: correct RDMA and WROT node with") -- commit ab03332 - -------------------------------------------------------------------- -Mon May 20 11:55:04 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: nvmem: mxs-ocotp: Document fsl,ocotp") -- commit 1d6fc28 - -------------------------------------------------------------------- -Mon May 20 11:54:37 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: interrupt-controller: Allow #power-domain-cells") -- commit 027195f - -------------------------------------------------------------------- -Mon May 20 11:54:05 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt: dt-extract-compatibles: Don't follow symlinks when walking tree") -- commit 60fcfee - -------------------------------------------------------------------- -Mon May 20 11:52:07 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: soc: fsl: cpm_qe: cpm1-scc-qmc: Fix example property") -- commit de60146 - -------------------------------------------------------------------- -Mon May 20 11:51:01 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: PCI: brcm,iproc-pcie: Fix 'msi' child node schema") -- commit d7b96e4 - -------------------------------------------------------------------- -Mon May 20 11:49:15 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: soc: qcom: smd-rpm: Add MSM8909 to qcom,smd-channels") -- commit 1171729 - ------------------------------------------------------------------- Mon May 20 08:14:54 CEST 2024 - tiwai@suse.de @@ -22571,19 +28357,6 @@ Sun May 19 09:24:05 CEST 2024 - tiwai@suse.de (git-fixes). - commit 8bfa411 -------------------------------------------------------------------- -Sun May 19 04:57:25 CEST 2024 - jlee@suse.com - -- Bluetooth: Fix use-after-free bugs caused by sco_sock_timeout - (bsc#1224174 CVE-2024-27398). -- commit 5039ac8 - -------------------------------------------------------------------- -Sat May 18 09:44:27 CEST 2024 - tiwai@suse.de - -- blacklist.conf: Add reverted dmaengine commit entries -- commit 134f997 - ------------------------------------------------------------------- Sat May 18 09:42:47 CEST 2024 - tiwai@suse.de @@ -22713,12 +28486,6 @@ Fri May 17 14:31:26 CEST 2024 - dsterba@suse.com - btrfs: file_remove_privs needs an exclusive lock in direct io write (git-fixes) - commit 0bc88db -------------------------------------------------------------------- -Fri May 17 14:29:12 CEST 2024 - dsterba@suse.com - -- blacklist.conf: btrfs: cleanup, v0 extent removal -- commit fecc398 - ------------------------------------------------------------------- Fri May 17 14:28:15 CEST 2024 - dsterba@suse.com @@ -23048,12 +28815,6 @@ Thu May 16 15:22:52 CEST 2024 - dsterba@suse.com - btrfs: fix off-by-one when checking chunk map includes logical address (git-fixes) - commit e5842bb -------------------------------------------------------------------- -Thu May 16 15:20:56 CEST 2024 - dsterba@suse.com - -- blacklist.conf: btrfs: ref-verify not built -- commit 701d654 - ------------------------------------------------------------------- Thu May 16 15:20:06 CEST 2024 - dsterba@suse.com @@ -23371,12 +29132,6 @@ Wed May 15 14:30:48 CEST 2024 - mkoutny@suse.com - cifs: fix underflow in parse_server_interfaces() (CVE-2024-26828 bsc#1223084). - commit 40aba68 -------------------------------------------------------------------- -Wed May 15 14:27:20 CEST 2024 - dsterba@suse.com - -- blacklist.conf: fs updates -- commit 372a9be - ------------------------------------------------------------------- Wed May 15 13:58:14 CEST 2024 - denis.kirjanov@suse.com @@ -23770,12 +29525,6 @@ Tue May 14 10:50:12 CEST 2024 - nik.borisov@suse.com patches.suse/x86-srso-fix-vulnerability-reporting-for-missing-microcode.patch. - commit 3afb908 -------------------------------------------------------------------- -Tue May 14 10:41:29 CEST 2024 - oneukum@suse.com - -- blacklist.conf: not applicable -- commit 158f7dc - ------------------------------------------------------------------- Tue May 14 10:25:06 CEST 2024 - nik.borisov@suse.com @@ -23850,12 +29599,6 @@ Mon May 13 19:20:28 CEST 2024 - dsterba@suse.com - btrfs: add missing mutex_unlock in btrfs_relocate_sys_chunks() (git-fixes) - commit 8bc326a -------------------------------------------------------------------- -Mon May 13 18:29:29 CEST 2024 - tonyj@suse.de - -- blacklist.conf: add perf patch already known by alias commit -- commit 706da8e - ------------------------------------------------------------------- Mon May 13 17:53:02 CEST 2024 - dsterba@suse.com @@ -23899,12 +29642,6 @@ Mon May 13 17:32:40 CEST 2024 - dsterba@suse.com - btrfs: release path before inode lookup during the ino lookup ioctl (git-fixes) - commit 4b7ba54 -------------------------------------------------------------------- -Mon May 13 17:29:01 CEST 2024 - dsterba@suse.com - -- blacklist.conf: Add 2d6cd791e63e "btrfs: fix race between finishing block group creation and its item update" -- commit ca673ac - ------------------------------------------------------------------- Mon May 13 17:09:25 CEST 2024 - tiwai@suse.de @@ -23933,18 +29670,6 @@ Mon May 13 15:02:10 CEST 2024 - nstange@suse.de - crypto: rsa - add a check for allocation failure (bsc#1222775). - commit 8c6c396 -------------------------------------------------------------------- -Mon May 13 14:53:32 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 70f199a - -------------------------------------------------------------------- -Mon May 13 14:51:33 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 835874a - ------------------------------------------------------------------- Mon May 13 14:00:14 CEST 2024 - tiwai@suse.de @@ -24862,18 +30587,6 @@ Thu May 2 15:14:12 CEST 2024 - iivanov@suse.de - arm64: dts: rockchip: fix rk3328 hdmi ports node (git-fixes) - commit 3f691a1 -------------------------------------------------------------------- -Thu May 2 15:12:55 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: dts: rockchip: mark system power controller on rk3588-evb1") -- commit 24dc024 - -------------------------------------------------------------------- -Thu May 2 15:11:02 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64/mm: Modify range-based tlbi to decrement scale") -- commit 9fd5163 - ------------------------------------------------------------------- Thu May 2 13:38:24 CEST 2024 - jslaby@suse.cz @@ -24992,12 +30705,6 @@ Tue Apr 30 16:11:40 CEST 2024 - tiwai@suse.de (CVE-2024-23848 bsc#1219104). - commit c39ac04 -------------------------------------------------------------------- -Tue Apr 30 16:07:18 CEST 2024 - mfranc@suse.cz - -- blacklist.conf: refactoring, not a fix -- commit d5a22ac - ------------------------------------------------------------------- Tue Apr 30 16:02:50 CEST 2024 - mfranc@suse.cz @@ -25346,12 +31053,6 @@ Sat Apr 27 08:33:05 CEST 2024 - tiwai@suse.de - drm/gma500: Remove lid code (git-fixes). - commit 783bf0e -------------------------------------------------------------------- -Fri Apr 26 18:54:14 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add 246f80a0b17f8 ("sh: push-switch: Reorder cleanup operations to avoid use-after-free bug") -- commit 0fe9e4b - ------------------------------------------------------------------- Fri Apr 26 12:38:44 CEST 2024 - tiwai@suse.de @@ -25795,12 +31496,6 @@ Mon Apr 22 13:54:41 CEST 2024 - nik.borisov@suse.com - x86/bugs: Fix BHI retpoline check (git-fixes). - commit 00081b1 -------------------------------------------------------------------- -Mon Apr 22 13:53:35 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: Blacklist spurious patch -- commit 14b3e73 - ------------------------------------------------------------------- Mon Apr 22 08:45:08 CEST 2024 - msuchanek@suse.de @@ -25910,20 +31605,6 @@ Sat Apr 20 08:38:21 CEST 2024 - tiwai@suse.de - nilfs2: fix OOB in nilfs_set_de_type (git-fixes). - commit de35710 -------------------------------------------------------------------- -Fri Apr 19 21:07:04 CEST 2024 - tonyj@suse.de - -- blacklist.conf: kill erroneous blank line added by 58324b9ff787 -- commit abcb85f - -------------------------------------------------------------------- -Fri Apr 19 19:47:40 CEST 2024 - lduncan@suse.com - -- blacklist.conf: add 3 commits to be skipped - One is a configuration change for an unused options, and - two are for SCSI structure changes that breaks kabi. -- commit c143746 - ------------------------------------------------------------------- Fri Apr 19 18:37:34 CEST 2024 - lduncan@suse.com @@ -26636,13 +32317,6 @@ Tue Apr 16 18:23:07 CEST 2024 - jbohac@suse.cz Refresh patches.suse/kdump-implement-reserve_crashkernel_cma.patch. - commit b256f70 -------------------------------------------------------------------- -Tue Apr 16 16:43:44 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: Disable irrelevant patch - We don't have syscall hardening in our kernels. -- commit 36739c9 - ------------------------------------------------------------------- Tue Apr 16 16:43:33 CEST 2024 - nik.borisov@suse.com @@ -26952,12 +32626,6 @@ Mon Apr 15 10:15:49 CEST 2024 - iivanov@suse.de - Update patches.suse/spi-hisi-sfc-v3xx-Return-IRQ_NONE-if-no-interrupts-w.patch (git-fixes CVE-2024-26776 bsc#1222764) - commit ec068f3 -------------------------------------------------------------------- -Mon Apr 15 09:13:59 CEST 2024 - colyli@suse.de - -- blacklist.conf: add non-backport md git-fixes patch commit. -- commit 58324b9 - ------------------------------------------------------------------- Mon Apr 15 09:12:46 CEST 2024 - colyli@suse.de @@ -27152,12 +32820,6 @@ Thu Apr 11 15:27:33 CEST 2024 - mhocko@suse.com (bsc#1220419 CVE-2024-26752 bsc#1222667). - commit 2f09d95 -------------------------------------------------------------------- -Thu Apr 11 15:17:11 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add d9b3ce8769e3 mm: writeback: ratelimit stat flush from mem_cgroup_wb_stats -- commit 82800cb - ------------------------------------------------------------------- Thu Apr 11 12:01:45 CEST 2024 - jslaby@suse.cz @@ -27720,12 +33382,6 @@ Mon Apr 8 13:38:54 CEST 2024 - iivanov@suse.de - arm64: dts: broadcom: bcmbca: bcm4908: drop invalid switch cells (git-fixes) - commit c68c0f5 -------------------------------------------------------------------- -Mon Apr 8 13:37:17 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: ftrace: Don't forbid CALL_OPS+CC_OPTIMIZE_FOR_SIZE with Clang") -- commit 92045ae - ------------------------------------------------------------------- Mon Apr 8 13:35:46 CEST 2024 - iivanov@suse.de @@ -28322,12 +33978,6 @@ Tue Apr 2 13:36:01 CEST 2024 - tiwai@suse.de (bsc#1193599). - commit 3dfca11 -------------------------------------------------------------------- -Tue Apr 2 10:38:32 CEST 2024 - pjakobsson@suse.de - -- blacklist.conf: fbdev: flush deferred IO before closing (bsc#1221814) -- commit 6339fe4 - ------------------------------------------------------------------- Tue Apr 2 09:02:40 CEST 2024 - mkubecek@suse.cz @@ -28414,12 +34064,6 @@ Sat Mar 30 09:55:11 CET 2024 - tiwai@suse.de in acpi_db_walk_for_fields() (git-fixes). - commit 3764402 -------------------------------------------------------------------- -Fri Mar 29 11:21:01 CET 2024 - mkoutny@suse.com - -- README.BRANCH: Remove copy of branch name -- commit 85aeac7 - ------------------------------------------------------------------- Fri Mar 29 11:21:00 CET 2024 - mkoutny@suse.com @@ -29507,12 +35151,6 @@ Mon Mar 25 10:15:05 CET 2024 - denis.kirjanov@suse.com - Update references - commit 2642ab1 -------------------------------------------------------------------- -Mon Mar 25 09:10:29 CET 2024 - jslaby@suse.cz - -- blacklist.conf: add one PCI miss -- commit 45d2467 - ------------------------------------------------------------------- Mon Mar 25 09:06:28 CET 2024 - jslaby@suse.cz @@ -30077,12 +35715,6 @@ Wed Mar 20 14:31:18 CET 2024 - mgorman@suse.de patches.suse/printk-Monolithic-bring-printk-up-to-date-with-v6.6-rt25.patch. - commit dde15d2 -------------------------------------------------------------------- -Wed Mar 20 13:05:54 CET 2024 - jslaby@suse.cz - -- blacklist.conf: add one x86/mem_encrypt entry -- commit 6d2cc3b - ------------------------------------------------------------------- Wed Mar 20 13:04:03 CET 2024 - jslaby@suse.cz @@ -30168,12 +35800,6 @@ Wed Mar 20 02:06:22 CET 2024 - neilb@suse.de - SUNRPC: fix a memleak in gss_import_v2_context (git-fixes). - commit cf1cfe0 -------------------------------------------------------------------- -Wed Mar 20 01:13:52 CET 2024 - neilb@suse.de - -- blacklist.conf: add a 'cosmetic' commit -- commit 704be6f - ------------------------------------------------------------------- Tue Mar 19 18:30:13 CET 2024 - mkoutny@suse.com @@ -31785,12 +37411,6 @@ Wed Mar 13 15:26:37 CET 2024 - tiwai@suse.de - 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 @@ -31803,12 +37423,6 @@ 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 @@ -32261,24 +37875,6 @@ 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 @@ -32533,12 +38129,6 @@ Wed Mar 6 17:32:46 CET 2024 - msuchanek@suse.de (jsc#PED-7970). - commit 1346447 -------------------------------------------------------------------- -Wed Mar 6 16:34:55 CET 2024 - mkoutny@suse.com - -- blacklist.conf: Add 118642d7f606 mm: memcontrol: clarify swapaccount=0 deprecation warning -- commit b280e82 - ------------------------------------------------------------------- Wed Mar 6 15:32:29 CET 2024 - iivanov@suse.de @@ -32627,12 +38217,6 @@ Wed Mar 6 04:43:19 CET 2024 - ailiop@suse.com (bsc#1220897 CVE-2023-52526). - commit ff061f8 -------------------------------------------------------------------- -Tue Mar 5 23:08:29 CET 2024 - tonyj@suse.de - -- blacklist.conf: Mark "Fix 'perf script' tests on s390" as irrelvant -- commit 80d8ff7 - ------------------------------------------------------------------- Tue Mar 5 23:07:57 CET 2024 - tonyj@suse.de @@ -32861,12 +38445,6 @@ Tue Mar 5 13:13:04 CET 2024 - tiwai@suse.de - drm/amd/display: Fix a debugfs null pointer error (git-fixes). - commit 36bc980 -------------------------------------------------------------------- -Tue Mar 5 13:12:26 CET 2024 - tiwai@suse.de - -- blacklist.conf: drop amdgpu commit that will be backported now -- commit eac0ec4 - ------------------------------------------------------------------- Tue Mar 5 13:11:19 CET 2024 - nstange@suse.de @@ -33508,14 +39086,6 @@ Thu Feb 29 19:05:14 CET 2024 - mhocko@suse.com (git-fixes, bsc#1220398, CVE-2024-26602). - commit 2095c13 -------------------------------------------------------------------- -Thu Feb 29 18:59:01 CET 2024 - krisman@suse.de - -- blacklist.conf: Add duplicated commit "io_uring/af_unix: disable sending io_uring over sockets" - This was merged twice, through net and io_uring trees. Since we already - applied the net version as a CVE fix, blacklist the io_uring hash. -- commit ebf8ff8 - ------------------------------------------------------------------- Thu Feb 29 15:34:13 CET 2024 - petr.pavlu@suse.com @@ -35063,12 +40633,6 @@ Mon Feb 26 16:20:43 CET 2024 - iivanov@suse.de - arm64/signal: Don't assume that TIF_SVE means we saved SVE state (git-fixes) - commit 09cd4e0 -------------------------------------------------------------------- -Mon Feb 26 16:19:42 CET 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: scs: Disable LTO for SCS patching code") -- commit 58e088b - ------------------------------------------------------------------- Mon Feb 26 16:16:26 CET 2024 - iivanov@suse.de @@ -35184,12 +40748,6 @@ Mon Feb 26 12:54:01 CET 2024 - tiwai@suse.de - Drop ath11k hibernation patches for refreshing to the new patch set (bsc#1207948) - commit f6e50f6 -------------------------------------------------------------------- -Mon Feb 26 12:25:59 CET 2024 - msuchanek@suse.de - -- blacklist.conf: Add reverted commit. -- commit c46ef6f - ------------------------------------------------------------------- Mon Feb 26 10:22:14 CET 2024 - pjakobsson@suse.de @@ -35197,12 +40755,6 @@ Mon Feb 26 10:22:14 CET 2024 - pjakobsson@suse.de dc_dmub_srv (git-fixes). - commit 351cd92 -------------------------------------------------------------------- -Mon Feb 26 10:21:12 CET 2024 - pjakobsson@suse.de - -- blacklist.conf: dbf5d3d02987 drm/amd/display: Check writeback connectors in create_validate_stream_for_sink -- commit f11d1ed - ------------------------------------------------------------------- Mon Feb 26 10:19:59 CET 2024 - pjakobsson@suse.de @@ -36442,12 +41994,6 @@ Tue Feb 20 11:41:41 CET 2024 - jgross@suse.com (git-fixes). - commit fb286cc -------------------------------------------------------------------- -Tue Feb 20 11:07:23 CET 2024 - jgross@suse.com - -- blacklist.conf: add 7d8c67dd5d4f2 (only comment changes) -- commit c4873a4 - ------------------------------------------------------------------- Tue Feb 20 11:04:11 CET 2024 - jgross@suse.com @@ -36466,12 +42012,6 @@ Tue Feb 20 10:06:08 CET 2024 - oneukum@suse.com - timers: Tag (hr)timer softirq as hotplug safe (git-fixes). - commit 37f54ca -------------------------------------------------------------------- -Tue Feb 20 10:01:24 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive, fixed feature not backported -- commit 6569781 - ------------------------------------------------------------------- Tue Feb 20 09:57:03 CET 2024 - jgross@suse.com @@ -36564,16 +42104,11 @@ Mon Feb 19 16:52:01 CET 2024 - msuchanek@suse.de - commit 72b942a ------------------------------------------------------------------- -Mon Feb 19 15:53:41 CET 2024 - msuchanek@suse.de +Mon Feb 19 16:16:15 CET 2024 - lhruska@suse.cz -- blacklist: Add more files for unsupported powerpc architectures -- commit 47ca633 - -------------------------------------------------------------------- -Mon Feb 19 15:29:10 CET 2024 - mbrugger@suse.com - -- blacklist.conf: fix for config we don't have -- commit 6278860 +- rpm/scripts: Remove obsolete Symbols.list + Symbols.list is not longer needed by the new klp-convert implementation. (bsc#1218644) +- commit 596cf9f ------------------------------------------------------------------- Mon Feb 19 15:22:04 CET 2024 - msuchanek@suse.de @@ -50767,12 +56302,6 @@ Wed Feb 14 15:58:54 CET 2024 - jgross@suse.com - Update config files. - commit 6e3621a -------------------------------------------------------------------- -Wed Feb 14 15:48:32 CET 2024 - oneukum@suse.com - -- blacklist.conf: obsoleted -- commit c534e08 - ------------------------------------------------------------------- Wed Feb 14 15:26:00 CET 2024 - oneukum@suse.com @@ -50868,12 +56397,6 @@ Wed Feb 14 14:41:06 CET 2024 - oneukum@suse.com and v1.9.0 (git-fixes). - commit c7b4716 -------------------------------------------------------------------- -Wed Feb 14 14:33:32 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive -- commit 88b8f1d - ------------------------------------------------------------------- Wed Feb 14 14:28:52 CET 2024 - oneukum@suse.com @@ -51045,12 +56568,6 @@ Wed Feb 14 12:31:44 CET 2024 - denis.kirjanov@suse.com - net: ravb: Use pm_runtime_resume_and_get() (git-fixes). - commit f02fced -------------------------------------------------------------------- -Wed Feb 14 12:30:47 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive -- commit 569fb89 - ------------------------------------------------------------------- Wed Feb 14 12:30:19 CET 2024 - denis.kirjanov@suse.com @@ -51064,12 +56581,6 @@ Wed Feb 14 12:28:50 CET 2024 - denis.kirjanov@suse.com - net: libwx: fix memory leak on msix entry (git-fixes). - commit 159ffaa -------------------------------------------------------------------- -Wed Feb 14 12:24:16 CET 2024 - oneukum@suse.com - -- blacklist.conf: stupid cleanup -- commit 7489b61 - ------------------------------------------------------------------- Wed Feb 14 12:21:18 CET 2024 - jgross@suse.com @@ -51323,12 +56834,6 @@ Tue Feb 13 17:38:00 CET 2024 - jgross@suse.com (jsc#PED-7322). - commit 8de3668 -------------------------------------------------------------------- -Tue Feb 13 17:18:08 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive -- commit 3612d1b - ------------------------------------------------------------------- Tue Feb 13 17:15:19 CET 2024 - colyli@suse.de @@ -52027,12 +57532,6 @@ Fri Feb 9 14:28:37 CET 2024 - denis.kirjanov@suse.com for MT7986 SoC (git-fixes). - commit be286c4 -------------------------------------------------------------------- -Fri Feb 9 14:28:23 CET 2024 - tiwai@suse.de - -- blacklist.conf: drop two entries to be revived (bsc#1219692) -- commit ba7ec6f - ------------------------------------------------------------------- Fri Feb 9 14:26:52 CET 2024 - denis.kirjanov@suse.com @@ -52372,12 +57871,6 @@ Tue Feb 6 12:36:41 CET 2024 - jroedel@suse.de - Update config files. - commit 646dbdf -------------------------------------------------------------------- -Tue Feb 6 12:32:50 CET 2024 - vbabka@suse.cz - -- blacklist.conf: add f96c48670319 ("mm: disable CONFIG_PER_VMA_LOCK until its fixed") -- commit 8e3f9d5 - ------------------------------------------------------------------- Tue Feb 6 12:26:12 CET 2024 - fweisbecker@suse.de @@ -52936,13 +58429,6 @@ Mon Feb 5 21:17:53 CET 2024 - vbabka@suse.cz section of file mapping lock (bsc#1219558). - commit 4a16ce1 -------------------------------------------------------------------- -Mon Feb 5 19:22:20 CET 2024 - dwagner@suse.de - -- blacklist.conf: add 'nvme: fix error-handling for io_uring - nvme-passthrough' -- commit 36e1796 - ------------------------------------------------------------------- Mon Feb 5 19:14:18 CET 2024 - dwagner@suse.de @@ -56026,12 +61512,6 @@ Wed Jan 24 15:25:26 CET 2024 - iivanov@suse.de - arm64: add dependency between vmlinuz.efi and Image (git-fixes) - commit d79de8f -------------------------------------------------------------------- -Wed Jan 24 15:24:15 CET 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: dts: rockchip: Add NanoPC T6 PCIe e-key support") -- commit a24916f - ------------------------------------------------------------------- Wed Jan 24 15:22:57 CET 2024 - iivanov@suse.de @@ -56082,18 +61562,6 @@ Tue Jan 23 17:34:56 CET 2024 - jack@suse.cz - blk-wbt: Fix detection of dirty-throttled tasks (bsc#1218272). - commit 497a3db -------------------------------------------------------------------- -Tue Jan 23 13:33:21 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive, driver not backported -- commit f337957 - -------------------------------------------------------------------- -Tue Jan 23 13:28:37 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive without driver conversion to glue layer -- commit 5276996 - ------------------------------------------------------------------- Tue Jan 23 13:12:13 CET 2024 - tiwai@suse.de @@ -58103,18 +63571,6 @@ Tue Jan 16 19:40:07 CET 2024 - lduncan@suse.com - scsi: libsas: Simplify sas_check_eeds() (bsc#1216435). - commit 0820552 -------------------------------------------------------------------- -Tue Jan 16 18:44:09 CET 2024 - mkoutny@suse.com - -- blacklist.conf: Add 24e41bf8a6b4 mm: add a NO_INHERIT flag to the PR_SET_MDWE prctl -- commit b099e35 - -------------------------------------------------------------------- -Tue Jan 16 18:39:20 CET 2024 - mkoutny@suse.com - -- blacklist.conf: Add 793838138c15 prctl: Disable prctl(PR_SET_MDWE) on parisc -- commit 892fb82 - ------------------------------------------------------------------- Tue Jan 16 18:37:39 CET 2024 - mkoutny@suse.com @@ -58612,13 +64068,6 @@ Mon Jan 15 19:38:42 CET 2024 - hare@suse.de (bsc#1218785). - commit 34e3536 -------------------------------------------------------------------- -Mon Jan 15 19:06:12 CET 2024 - tonyj@suse.de - -- blacklist.conf: blacklist "perf test: Remove x permission from - lib/stat_output.sh" change -- commit d50c64f - ------------------------------------------------------------------- Mon Jan 15 19:00:35 CET 2024 - tonyj@suse.de @@ -61149,12 +66598,6 @@ Thu Jan 11 15:42:40 CET 2024 - tiwai@suse.de Fix compile warning due to trailing spaces - commit 3d15652 -------------------------------------------------------------------- -Thu Jan 11 15:34:47 CET 2024 - tiwai@suse.de - -- blacklist.conf: Add cfg80211 commit that was reverted in stable -- commit fa9d6ac - ------------------------------------------------------------------- Thu Jan 11 15:27:25 CET 2024 - tiwai@suse.de @@ -62728,12 +68171,6 @@ Fri Jan 5 10:14:48 CET 2024 - tiwai@suse.de - ALSA: hda/tas2781: do not use regcache (git-fixes). - commit 38d6c8e -------------------------------------------------------------------- -Fri Jan 5 09:05:34 CET 2024 - pjakobsson@suse.de - -- blacklist.conf: 7a0e005c7957 drm/amd/display: edp do not add non-edid timings -- commit 82e295c - ------------------------------------------------------------------- Fri Jan 5 09:00:59 CET 2024 - pjakobsson@suse.de @@ -63494,24 +68931,12 @@ Wed Jan 3 16:56:08 CET 2024 - tbogendoerfer@suse.de (jsc#PED-4876). - commit ca3b156 -------------------------------------------------------------------- -Wed Jan 3 16:25:32 CET 2024 - mkoutny@suse.com - -- blacklist.conf: e63a57303599 blk-cgroup: bypass blkcg_deactivate_policy after destroying -- commit 11bfa0e - ------------------------------------------------------------------- Wed Jan 3 11:44:52 CET 2024 - msuchanek@suse.de - rpm/config.sh: Enable multibuild. - commit 8362cb4 -------------------------------------------------------------------- -Wed Jan 3 00:43:17 CET 2024 - lduncan@suse.com - -- blacklist.conf: add commit with duplicate id -- commit d39fdcd - ------------------------------------------------------------------- Wed Jan 3 00:32:44 CET 2024 - tonyj@suse.de @@ -65555,13 +70980,6 @@ Tue Dec 12 14:45:48 CET 2023 - tiwai@suse.de (git-fixes). - commit f3ff4cb -------------------------------------------------------------------- -Tue Dec 12 14:37:05 CET 2023 - tiwai@suse.de - -- blacklist.conf: ignore loongarch, smb server and rust patches - Those are disabled on SUSE kernels -- commit 7c646fb - ------------------------------------------------------------------- Tue Dec 12 14:26:58 CET 2023 - tiwai@suse.de @@ -82094,12 +87512,6 @@ Fri Oct 27 20:23:43 CEST 2023 - msuchanek@suse.de (bsc#1215199). - commit 17dca43 -------------------------------------------------------------------- -Fri Oct 27 20:14:07 CEST 2023 - msuchanek@suse.de - -- blacklist.conf: Add ff9e8f415136 powerpc/mm: Allow ARCH_FORCE_MAX_ORDER up to 12 -- commit e7a922b - ------------------------------------------------------------------- Fri Oct 27 20:10:23 CEST 2023 - msuchanek@suse.de @@ -83843,12 +89255,6 @@ Thu Oct 19 08:09:16 CEST 2023 - hare@suse.de - net/tcp: don't peek at tail for io_uring zc (bsc#1216396). - commit 1cbac60 -------------------------------------------------------------------- -Wed Oct 18 15:47:41 CEST 2023 - hare@suse.de - -- blacklist.conf: Add kernel-doc only commit -- commit 2ddda2d - ------------------------------------------------------------------- Wed Oct 18 15:47:32 CEST 2023 - hare@suse.de @@ -83888,12 +89294,6 @@ Tue Oct 17 18:00:55 CEST 2023 - msuchanek@suse.de - Refresh SED OPAL patches to current version. - commit 8de998c -------------------------------------------------------------------- -Tue Oct 17 16:39:52 CEST 2023 - osalvador@suse.de - -- blacklist.conf: Updated -- commit a30a51f - ------------------------------------------------------------------- Tue Oct 17 16:38:53 CEST 2023 - osalvador@suse.de @@ -84311,12 +89711,6 @@ Mon Oct 16 09:50:00 CEST 2023 - mhocko@suse.com (git-fixes). - commit 76715d0 -------------------------------------------------------------------- -Fri Oct 13 16:36:23 CEST 2023 - mfranc@suse.cz - -- blacklist.conf: happens only for CONFIG_SMC=y and CONFIG_ISM=m -- commit e983db0 - ------------------------------------------------------------------- Fri Oct 13 11:56:54 CEST 2023 - mfranc@suse.cz @@ -84851,12 +90245,6 @@ Mon Oct 9 18:17:02 CEST 2023 - mkoutny@suse.com installed before init (bsc#1216062). - commit 82eb0da -------------------------------------------------------------------- -Mon Oct 9 17:51:35 CEST 2023 - mkoutny@suse.com - -- blacklist.conf: Add 82b90b6c5b38 cgroup:namespace: Remove unused cgroup_namespaces_init() -- commit 8f5c0b6 - ------------------------------------------------------------------- Mon Oct 9 17:41:37 CEST 2023 - tiwai@suse.de @@ -86391,12 +91779,6 @@ Mon Oct 2 17:09:57 CEST 2023 - ohering@suse.de - Update patch headers to reflect state of TDX for Hyper-V (bsc#1206453). - commit 4f4b833 -------------------------------------------------------------------- -Mon Oct 2 17:07:37 CEST 2023 - pmladek@suse.com - -- blacklist.conf: livepatch: cosmetic -- commit 634df5c - ------------------------------------------------------------------- Mon Oct 2 17:03:58 CEST 2023 - pmladek@suse.com @@ -86912,12 +92294,6 @@ Tue Sep 26 14:39:19 CEST 2023 - petr.pavlu@suse.com * Fix typos and improve some wording. - commit 640988f -------------------------------------------------------------------- -Tue Sep 26 12:36:18 CEST 2023 - lhenriques@suse.de - -- blacklist.conf: Add 3af5ae22030c ("ceph: make members in struct ceph_mds_request_args_ext a union") -- commit 02fca20 - ------------------------------------------------------------------- Tue Sep 26 09:39:36 CEST 2023 - jlee@suse.com @@ -104137,12 +109513,6 @@ Mon Sep 11 14:34:56 CEST 2023 - ohering@suse.de - clocksource/drivers/hyper-v: Rework clocksource and sched clock setup (git-fixes). - commit 31e4022 -------------------------------------------------------------------- -Mon Sep 11 12:14:43 CEST 2023 - msuchanek@suse.de - -- blacklist.conf: Add ef73dcaa3121 ("powerpc: xmon: remove unused variables") -- commit 54a0db2 - ------------------------------------------------------------------- Mon Sep 11 12:08:42 CEST 2023 - msuchanek@suse.de @@ -104177,12 +109547,6 @@ Mon Sep 11 11:32:07 CEST 2023 - petr.pavlu@suse.com - net/mlx4: Remove many unnecessary NULL values (bsc#1187236). - commit e58c7a4 -------------------------------------------------------------------- -Mon Sep 11 10:25:12 CEST 2023 - msuchanek@suse.de - -- blacklist.conf: Add 750bd41aeaeb powerpc/pseries: Fix hcall tracepoints with JUMP_LABEL=n -- commit a91431a - ------------------------------------------------------------------- Mon Sep 11 10:24:24 CEST 2023 - msuchanek@suse.de @@ -104579,18 +109943,6 @@ Thu Sep 7 08:20:22 CEST 2023 - tiwai@suse.de (bsc#1012628). - commit 603fb0d -------------------------------------------------------------------- -Thu Sep 7 08:19:54 CEST 2023 - tiwai@suse.de - -- blacklist.conf: drop entry backported in stable 6.4.15 -- commit aa9afe7 - -------------------------------------------------------------------- -Wed Sep 6 23:36:02 CEST 2023 - tbogendoerfer@suse.de - -- blacklist.conf: Added temporary blacklist until mlx5 backport could be done (missing PED number) -- commit 653e287 - ------------------------------------------------------------------- Wed Sep 6 18:43:31 CEST 2023 - oneukum@suse.com @@ -104714,13 +110066,6 @@ Wed Sep 6 17:29:41 CEST 2023 - oneukum@suse.com (jsc#PED-6061). - commit 81b59d1 -------------------------------------------------------------------- -Wed Sep 6 17:27:40 CEST 2023 - mhocko@suse.com - -- blacklist.conf: 9011e49d54dc ("modules: only allow symbol_get of - EXPORT_SYMBOL_GPL modules") is not really fixing any existing bug. -- commit 541c06b - ------------------------------------------------------------------- Wed Sep 6 17:19:34 CEST 2023 - oneukum@suse.com @@ -105813,12 +111158,6 @@ Fri Sep 1 12:42:57 CEST 2023 - denis.kirjanov@suse.com - Update metadata - commit 94184dc -------------------------------------------------------------------- -Fri Sep 1 11:11:11 CEST 2023 - tiwai@suse.de - -- blacklist.conf: add entries that have been already cherry-picked in 6.4 -- commit 3bbc83b - ------------------------------------------------------------------- Fri Sep 1 10:03:35 CEST 2023 - tiwai@suse.de diff --git a/kernel-source-rt.spec b/kernel-source-rt.spec index a1d78b3..7496c11 100644 --- a/kernel-source-rt.spec +++ b/kernel-source-rt.spec @@ -18,17 +18,17 @@ %define srcversion 6.4 %define patchversion 6.4.0 -%define git_commit b49e7e52bdc1b46f45fadb1bc0aa310f52f5ac80 +%define git_commit 76e28cef5375feb1d7dcea0d112f8b50524eb429 %define variant -rt%{nil} %include %_sourcedir/kernel-spec-macros -%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,log.sh,try-disable-staging-driver,compress-vmlinux.sh,mkspec-dtb,check-module-license,klp-symbols,splitflist,mergedep,moddep,modflist,kernel-subpackage-build}) +%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,log.sh,try-disable-staging-driver,compress-vmlinux.sh,mkspec-dtb,check-module-license,splitflist,mergedep,moddep,modflist,kernel-subpackage-build}) Name: kernel-source-rt Version: 6.4.0 %if 0%{?is_kotd} -Release: .gb49e7e5 +Release: .g76e28ce %else Release: 0 %endif @@ -105,7 +105,6 @@ Source73: dtb.spec.in.in Source74: mkspec-dtb Source75: release-projects Source76: check-module-license -Source77: klp-symbols Source78: modules.fips Source79: splitflist Source80: mergedep diff --git a/kernel-source.spec.in b/kernel-source.spec.in index 774b360..5aa984b 100644 --- a/kernel-source.spec.in +++ b/kernel-source.spec.in @@ -105,7 +105,6 @@ Source73: dtb.spec.in.in Source74: mkspec-dtb Source75: release-projects Source76: check-module-license -Source77: klp-symbols Source78: modules.fips Source79: splitflist Source80: mergedep diff --git a/kernel-syms-rt.changes b/kernel-syms-rt.changes index 96700bd..9a6f53f 100644 --- a/kernel-syms-rt.changes +++ b/kernel-syms-rt.changes @@ -1,3 +1,6015 @@ +------------------------------------------------------------------- +Sat Dec 7 09:37:47 CET 2024 - tiwai@suse.de + +- ASoC: Intel: avs: da7219: Remove suspend_pre() and resume_post() + (stable-fixes). +- ALSA: hda/realtek: Add support for Samsung Galaxy Book3 360 + (NP730QFG) (stable-fixes). +- ALSA: hda/realtek: Enable mute and micmute LED on HP ProBook + 430 G8 (stable-fixes). +- ALSA: usb-audio: add mixer mapping for Corsair HS80 + (stable-fixes). +- ALSA: hda/conexant: fix Z60MR100 startup pop issue + (stable-fixes). +- commit 8c25a0a + +------------------------------------------------------------------- +Sat Dec 7 09:34:01 CET 2024 - tiwai@suse.de + +- drm/v3d: Enable Performance Counters before clearing them + (git-fixes). +- drm/sti: Add __iomem for mixer_dbg_mxn's parameter (git-fixes). +- dma-fence: Use kernel's sort for merging fences (git-fixes). +- dma-fence: Fix reference leak on fence merge failure path + (git-fixes). +- ASoC: mediatek: mt8188-mt6359: Remove hardcoded dmic codec + (git-fixes). +- ASoC: SOF: ipc3-topology: fix resource leaks in + sof_ipc3_widget_setup_comp_dai() (git-fixes). +- ALSA: usb-audio: Fix a DMA to stack memory bug (git-fixes). +- regmap: detach regmap from dev on regmap_exit (git-fixes). +- spi: mpc52xx: Add cancel_work_sync before module remove + (git-fixes). +- mmc: core: Further prevent card detect during shutdown + (git-fixes). +- commit 87e627e + +------------------------------------------------------------------- +Fri Dec 6 16:27:36 CET 2024 - tbogendoerfer@suse.de + +- net/mlx5e: kTLS, Fix incorrect page refcounting (CVE-2024-53138 + bsc#1234223). +- ice: protect XDP configuration with a mutex (CVE-2024-46765 + bsc#1230807). +- sch/netem: fix use after free in netem_dequeue (CVE-2024-46800 + bsc#1230827). +- commit c9f3783 + +------------------------------------------------------------------- +Fri Dec 6 15:48:44 CET 2024 - jgross@suse.com + +- vp_vdpa: fix id_table array not null terminated error + (CVE-2024-53110 bsc#1234085). +- commit ffc9457 + +------------------------------------------------------------------- +Fri Dec 6 14:33:58 CET 2024 - tbogendoerfer@suse.de + +- net/mlx5: fs, lock FTE when checking if active (CVE-2024-53121 + bsc#1234078). +- mlxsw: spectrum_ipip: Fix memory leak when changing remote + IPv6 address (CVE-2024-50252 bsc#1233201). +- commit 06c045b + +------------------------------------------------------------------- +Fri Dec 6 13:18:57 CET 2024 - tiwai@suse.de + +- netdevsim: copy addresses for both in and out paths (git-fixes). +- commit daf115e + +------------------------------------------------------------------- +Fri Dec 6 12:49:22 CET 2024 - tiwai@suse.de + +- can: j1939: j1939_session_new(): fix skb reference counting + (git-fixes). +- can: mcp251xfd: mcp251xfd_get_tef_len(): work around erratum + DS80000789E 6 (git-fixes). +- can: ems_usb: ems_usb_rx_err(): fix {rx,tx}_errors statistics + (git-fixes). +- can: sun4i_can: sun4i_can_err(): fix {rx,tx}_errors statistics + (git-fixes). +- can: sja1000: sja1000_err(): fix {rx,tx}_errors statistics + (git-fixes). +- can: hi311x: hi3110_can_ist(): fix {rx,tx}_errors statistics + (git-fixes). +- can: ifi_canfd: ifi_canfd_handle_lec_err(): fix {rx,tx}_errors + statistics (git-fixes). +- can: m_can: m_can_handle_lec_err(): fix {rx,tx}_errors + statistics (git-fixes). +- can: hi311x: hi3110_can_ist(): fix potential use-after-free + (git-fixes). +- can: sun4i_can: sun4i_can_err(): call can_change_state() + even if cf is NULL (git-fixes). +- can: c_can: c_can_handle_bus_err(): update statistics if skb + allocation fails (git-fixes). +- can: dev: can_set_termination(): allow sleeping GPIOs + (git-fixes). +- HID: wacom: fix when get product name maybe null pointer + (git-fixes). +- watchdog: rti: of: honor timeout-sec property (git-fixes). +- watchdog: mediatek: Make sure system reset gets asserted in + mtk_wdt_restart() (git-fixes). +- watchdog: apple: Actually flush writes after requesting watchdog + restart (git-fixes). +- iTCO_wdt: mask NMI_NOW bit for update_no_reboot_bit() call + (git-fixes). +- commit 535e699 + +------------------------------------------------------------------- +Fri Dec 6 09:25:08 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Correct GPIO polarity on brcm BT nodes (git-fixes) +- commit ed87dba + +------------------------------------------------------------------- +Fri Dec 6 09:23:49 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: remove num-slots property from (git-fixes) +- commit cb47197 + +------------------------------------------------------------------- +Fri Dec 6 09:20:06 CET 2024 - iivanov@suse.de + +- kABI: Restore exported __arm_smccc_sve_check (git-fixes) +- commit 3817c3a + +------------------------------------------------------------------- +Thu Dec 5 22:16:43 CET 2024 - dsterba@suse.com + +- drm/i915/hdcp: Add encoder check in intel_hdcp_get_capability (CVE-2024-53051 bsc#1233547) +- commit 5262489 + +------------------------------------------------------------------- +Thu Dec 5 21:21:56 CET 2024 - dsterba@suse.com + +- mctp i2c: handle NULL header address (CVE-2024-53043 bsc#1233523) +- commit 5a81634 + +------------------------------------------------------------------- +Thu Dec 5 21:19:36 CET 2024 - dsterba@suse.com + +- wifi: iwlwifi: mvm: fix 6 GHz scan construction (CVE-2024-53055 bsc#1233550) +- commit c2d5beb + +------------------------------------------------------------------- +Thu Dec 5 19:33:08 CET 2024 - dsterba@suse.com + +- drm/mediatek: Fix potential NULL dereference in mtk_crtc_destroy() (CVE-2024-53056 bsc#1233568) +- commit 95cef70 + +------------------------------------------------------------------- +Thu Dec 5 19:16:12 CET 2024 - dsterba@suse.com + +- Bluetooth: btnxpuart: Resolve TX timeout error in power save stress test (bsc#1230557) +- commit 9ca14b5 + +------------------------------------------------------------------- +Thu Dec 5 19:14:45 CET 2024 - dsterba@suse.com + +- Bluetooth: btnxpuart: Fix random crash seen while removing driver (CVE-2024-46680 bsc#1230557) +- commit 3831431 + +------------------------------------------------------------------- +Thu Dec 5 18:57:57 CET 2024 - dsterba@suse.com + +- net: dsa: fix netdev_priv() dereference before check on non-DSA netdevice events (CVE-2024-26596 bsc#1220355) +- commit 4861dc8 + +------------------------------------------------------------------- +Thu Dec 5 18:44:20 CET 2024 - dsterba@suse.com + +- net: hns3: fix kernel crash when uninstalling driver (CVE-2024-50296 bsc#1233485) +- commit 6e41fd9 + +------------------------------------------------------------------- +Thu Dec 5 17:13:01 CET 2024 - msuchanek@suse.de + +- powerpc/fadump: Move fadump_cma_init to setup_arch() after + initmem_init() (bsc#1215199). +- powerpc/fadump: Refactor and prepare fadump_cma_init for late + init (bsc#1215199). +- powerpc/pseries: Use correct data types from pseries_hp_errorlog + struct (bsc#1215199). +- powerpc/vdso: Inconditionally use CFUNC macro (bsc#1215199). +- powerpc/64s: Fix unnecessary copy to 0 when kernel is booted + at address 0 (bsc#1215199). +- commit d36d28e + +------------------------------------------------------------------- +Thu Dec 5 17:05:26 CET 2024 - iivanov@suse.de + +- bpf, arm64: Remove garbage frame for struct_ops trampoline (git-fixes) +- commit e1353aa + +------------------------------------------------------------------- +Thu Dec 5 17:03:24 CET 2024 - iivanov@suse.de + +- arm64: dts: allwinner: pinephone: Add mount matrix to accelerometer (git-fixes) +- commit 6a9e851 + +------------------------------------------------------------------- +Thu Dec 5 17:01:59 CET 2024 - iivanov@suse.de + +- arm64: dts: freescale: imx8mp-verdin: Fix SD regulator startup delay (git-fixes) +- commit c644bc4 + +------------------------------------------------------------------- +Thu Dec 5 17:00:48 CET 2024 - iivanov@suse.de + +- arm64: dts: freescale: imx8mm-verdin: Fix SD regulator startup delay (git-fixes) +- commit c8b850b + +------------------------------------------------------------------- +Thu Dec 5 16:59:21 CET 2024 - iivanov@suse.de + +- arm64: tls: Fix context-switching of tpidrro_el0 when kpti is enabled (git-fixes) +- commit dd2d99e + +------------------------------------------------------------------- +Thu Dec 5 16:51:05 CET 2024 - iivanov@suse.de + +- arm64: fix .data.rel.ro size assertion when CONFIG_LTO_CLANG (git-fixes) +- commit b16f3b1 + +------------------------------------------------------------------- +Thu Dec 5 16:48:22 CET 2024 - iivanov@suse.de + +- arm64: smccc: Remove broken support for SMCCCv1.3 SVE discard hint (git-fixes) +- commit 10c58e2 + +------------------------------------------------------------------- +Thu Dec 5 16:44:41 CET 2024 - iivanov@suse.de + +- arm64: smccc: replace custom COUNT_ARGS() & CONCATENATE() (git-fixes) +- commit 75545f9 + +------------------------------------------------------------------- +Thu Dec 5 15:58:34 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: remove orphaned pinctrl-names from pinephone (git-fixes) +- commit cc13a0d + +------------------------------------------------------------------- +Thu Dec 5 15:57:02 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix LED triggers on rk3308-roc-cc (git-fixes) +- commit a83a13f + +------------------------------------------------------------------- +Thu Dec 5 15:55:49 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Remove #cooling-cells from fan on Theobroma (git-fixes) +- commit ad38ac0 + +------------------------------------------------------------------- +Thu Dec 5 15:54:32 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Remove undocumented supports-emmc property (git-fixes) +- commit 2a5a31d + +------------------------------------------------------------------- +Thu Dec 5 15:53:20 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix bluetooth properties on Rock960 boards (git-fixes) +- commit 8dd2fe4 + +------------------------------------------------------------------- +Thu Dec 5 15:51:59 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix bluetooth properties on rk3566 box demo (git-fixes) +- commit af29eab + +------------------------------------------------------------------- +Thu Dec 5 15:50:48 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: fix i2c2 pinctrl-names property on (git-fixes) +- commit bffe233 + +------------------------------------------------------------------- +Thu Dec 5 15:49:40 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix reset-gpios property on brcm BT nodes (git-fixes) +- commit 34a0cb0 + +------------------------------------------------------------------- +Thu Dec 5 15:48:14 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix wakeup prop names on PineNote BT node (git-fixes) +- commit 600dbb4 + +------------------------------------------------------------------- +Thu Dec 5 15:33:16 CET 2024 - msuchanek@suse.de + +- powerpc/kexec: Fix return of uninitialized variable + (bsc#1194869). +- powerpc/pseries: Fix KVM guest detection for disabling + hardlockup detector (bsc#1194869). +- powerpc/pseries: Fix dtl_access_lock to be a rw_semaphore + (bsc#1194869). +- powerpc/mm/fault: Fix kfence page fault reporting (bsc#1194869). +- powerpc/powernv: Free name on error in opal_event_init() + (bsc#1194869). +- powerpc/atomic: Use YZ constraints for DS-form instructions + (bsc#1194869). +- powerpc/mm: Fix boot warning with hugepages and + CONFIG_DEBUG_VIRTUAL (bsc#1194869). +- powerpc/mm: Fix boot crash with FLATMEM (bsc#1194869). +- commit 290216a + +------------------------------------------------------------------- +Thu Dec 5 12:34:48 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Remove hdmi's 2nd interrupt on rk3328 (git-fixes) +- commit 428c79d + +------------------------------------------------------------------- +Thu Dec 5 12:27:44 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix rt5651 compatible value on (git-fixes) +- commit 3b24a1d + +------------------------------------------------------------------- +Thu Dec 5 12:26:35 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Fix rt5651 compatible value on rk3399-eaidk-610 (git-fixes) +- commit eac58a3 + +------------------------------------------------------------------- +Thu Dec 5 12:24:21 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8-ss-vpu: Fix imx8qm VPU IRQs (git-fixes) +- commit 225491d + +------------------------------------------------------------------- +Thu Dec 5 12:23:08 CET 2024 - iivanov@suse.de + +- bpf, arm64: Fix address emission with tag-based KASAN enabled (git-fixes) +- commit a6cd1e5 + +------------------------------------------------------------------- +Thu Dec 5 12:05:42 CET 2024 - iivanov@suse.de + +- arm64: dts: rockchip: Add DTS for FriendlyARM NanoPi R2S Plus (git-fixes) +- commit 8261b13 + +------------------------------------------------------------------- +Thu Dec 5 12:01:15 CET 2024 - iivanov@suse.de + +- arm64: tegra: Move AGX Orin nodes to correct location (git-fixes) +- commit 8c00b3f + +------------------------------------------------------------------- +Thu Dec 5 11:57:36 CET 2024 - iivanov@suse.de + +- arm64: dts: imx93: add nvmem property for eqos (git-fixes) +- commit 05664af + +------------------------------------------------------------------- +Thu Dec 5 11:54:15 CET 2024 - iivanov@suse.de + +- arm64: dts: imx93: add nvmem property for fec1 (git-fixes) +- commit 428b0c1 + +------------------------------------------------------------------- +Thu Dec 5 11:52:31 CET 2024 - iivanov@suse.de + +- arm64: dts: imx93: add ocotp node (git-fixes) +- commit 9645cb0 + +------------------------------------------------------------------- +Thu Dec 5 11:47:21 CET 2024 - iivanov@suse.de + +- arm64: dts: imx8qxp: Add VPU subsystem file (git-fixes) +- commit 1bf0ccc + +------------------------------------------------------------------- +Wed Dec 4 13:01:43 CET 2024 - ailiop@suse.com + +- nfsd: remove unsafe BUG_ON from set_change_info (bsc#1234121). +- commit 6c0f124 + +------------------------------------------------------------------- +Wed Dec 4 11:28:27 CET 2024 - sjaeckel@suse.de + +- tcp: Fix use-after-free of nreq in reqsk_timer_handler() + (CVE-2024-50154 bsc#1233070). +- commit 297942f + +------------------------------------------------------------------- +Wed Dec 4 11:02:35 CET 2024 - tiwai@suse.de + +- f2fs: get out of a repeat loop when getting a locked data page + (bsc#1234011). +- commit dfe277f + +------------------------------------------------------------------- +Wed Dec 4 10:26:17 CET 2024 - pjakobsson@suse.de + +- drm: Expand max DRM device number to full MINORBITS (jsc#PED-11580). +- commit d737023 + +------------------------------------------------------------------- +Wed Dec 4 10:25:43 CET 2024 - pjakobsson@suse.de + +- accel: Use XArray instead of IDR for minors (jsc#PED-11580). +- commit 013fbaa + +------------------------------------------------------------------- +Wed Dec 4 10:25:07 CET 2024 - pjakobsson@suse.de + +- drm: Use XArray instead of IDR for minors (jsc#PED-11580). +- commit b04b73a + +------------------------------------------------------------------- +Wed Dec 4 10:19:48 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: fix a UBSAN warning in DML2.1 (bsc#1233115 CVE-2024-50177) +- commit 2f6004f + +------------------------------------------------------------------- +Wed Dec 4 00:56:19 CET 2024 - henrique.carvalho@suse.com + +- smb: client: Fix use-after-free of network namespace + (bsc#1233642 CVE-2024-53095). + Also applies: + smb: client: fix warning in generic_ip_connect() +- commit 97b3d9a + +------------------------------------------------------------------- +Tue Dec 3 23:04:22 CET 2024 - jack@suse.cz + +- jbd2: fix kernel-doc for j_transaction_overhead_buffers + (bsc#1234042). +- commit 20d4b12 + +------------------------------------------------------------------- +Tue Dec 3 20:21:07 CET 2024 - dsterba@suse.com + +- sctp: set sk_state back to CLOSED if autobind fails in sctp_listen_start (CVE-2024-49944 bsc#1232166) +- commit c7bd304 + +------------------------------------------------------------------- +Tue Dec 3 20:10:02 CET 2024 - dsterba@suse.com + +- netfilter: nf_tables: prevent nf_skb_duplicated corruption (CVE-2024-49952 bsc#1232157) +- commit d0f307b + +------------------------------------------------------------------- +Tue Dec 3 18:17:41 CET 2024 - jack@suse.cz + +- jbd2: Move j_transaction_overhead_buffers into a hole + (bsc#1234042). +- commit 1c42745 + +------------------------------------------------------------------- +Tue Dec 3 18:10:57 CET 2024 - mhocko@suse.com + +- Update + patches.suse/drm-amd-display-Adjust-VSDB-parser-for-replay-featur.patch + (stable-fixes CVE-2024-53108 bsc#1234081). +- Update + patches.suse/fs-ntfs3-Fixed-overflow-check-in-mi_enum_attr.patch + (bsc#1233207 CVE-2024-27407 bsc#1224429). +- Update + patches.suse/ima-fix-buffer-overrun-in-ima_eventdigest_init_commo.patch + (git-fixes CVE-2024-53106 bsc#1234083). +- Update + patches.suse/keys-Fix-overwrite-of-key-expiration-on-instantiation.patch + (git-fixes CVE-2024-36031 bsc#1225713). +- Update + patches.suse/media-uvcvideo-Skip-parsing-frames-of-type-UVC_VS_UN.patch + (git-fixes CVE-2024-53104 bsc#1234025). +- Update + patches.suse/net-relax-socket-state-check-at-accept-time.patch + (git-fixes CVE-2024-36484 bsc#1226872). +- Update + patches.suse/nvme-multipath-defer-partition-scanning.patch + (bsc#122824 git-fixes CVE-2024-53093 bsc#1233640). +- Update + patches.suse/nvme-tcp-avoid-race-between-queue_lock-lock-and-dest.patch + (git-fixes CVE-2024-53100 bsc#1233771). +- Update + patches.suse/ocfs2-uncache-inode-which-has-failed-entering-the-group.patch + (git-fixes CVE-2024-53112 bsc#1234087). +- Update + patches.suse/scsi-mpi3mr-Avoid-memcpy-field-spanning-write-WARNING.patch + (git-fixes CVE-2024-36920 bsc#1225768). +- Update + patches.suse/scsi-pm80xx-Set-phy-enable_completion-only-when-we-wait-for-it.patch + (git-fixes CVE-2024-47666 bsc#1231453). +- Update + patches.suse/tcp-Fix-refcnt-handling-in-__inet_hash_connect.patch + (git-fixes CVE-2024-26864 bsc#1223112). +- Update + patches.suse/tracing-osnoise-Use-a-cpumask-to-know-what-threads-are-kthreads.patch + (git-fixes CVE-2024-46788 bsc#1230817). +- Update + patches.suse/tracing-timerlat-Move-hrtimer_init-to-timerlat_fd-open.patch + (git-fixes CVE-2024-26703 bsc#1222423). +- Update + patches.suse/x86-CPU-AMD-Clear-virtualized-VMLOAD-VMSAVE-on-Zen4-client + (bsc#1233443 CVE-2024-53114 bsc#1234072). +- commit 420eea1 + +------------------------------------------------------------------- +Tue Dec 3 17:42:21 CET 2024 - sjaeckel@suse.de + +- Bluetooth: SCO: Fix UAF on sco_sock_timeout (CVE-2024-50125 + bsc#1232928). +- Refresh + patches.suse/Bluetooth-ISO-Fix-UAF-on-iso_sock_timeout.patch. + Revert Bluetooth-ISO-Fix-UAF-on-iso_sock_timeout.patch to the upstream + version of the patch. + The reverted version was a mix of 1bf4470a and 246b435a, since they were + accidentally identified as two different commits doing the same changes. + The changes are indeed mostly the same, but to different files. +- commit 5725fe5 + +------------------------------------------------------------------- +Tue Dec 3 17:06:26 CET 2024 - mkoutny@suse.com + +- cgroup/bpf: only cgroup v2 can be attached by bpf programs + (bsc#1234108). +- Revert "cgroup: Fix memory leak caused by missing + cgroup_bpf_offline" (bsc#1234108). +- commit 6a48bcc + +------------------------------------------------------------------- +Tue Dec 3 16:27:05 CET 2024 - ptesarik@suse.com + +- kexec_file: fix elfcorehdr digest exclusion when + CONFIG_CRASH_HOTPLUG=y (git-fixes). +- commit 1b2a54a + +------------------------------------------------------------------- +Tue Dec 3 14:36:00 CET 2024 - mkoutny@suse.com + +- signal: restore the override_rlimit logic (CVE-2024-50271 + bsc#1233460). +- ucounts: fix counter leak in inc_rlimit_get_ucounts() + (bsc#1233460). +- commit 232c2a6 + +------------------------------------------------------------------- +Tue Dec 3 14:26:42 CET 2024 - ohering@suse.de + +- hv_sock: Initializing vsk->trans to NULL to prevent a dangling pointer (git-fixes). +- commit 109e508 + +------------------------------------------------------------------- +Tue Dec 3 14:13:52 CET 2024 - mkoutny@suse.com + +- posix-cpu-timers: Clear TICK_DEP_BIT_POSIX_TIMER on clone + (bsc#1234098). +- commit 362812c + +------------------------------------------------------------------- +Tue Dec 3 14:01:19 CET 2024 - mkoutny@suse.com + +- signal: Replace BUG_ON()s (bsc#1234093). +- commit dad9530 + +------------------------------------------------------------------- +Tue Dec 3 13:20:50 CET 2024 - mfranc@suse.cz + +- dm cache: fix out-of-bounds access to the dirty bitset when + resizing (CVE-2024-50279 bsc#1233468). +- commit 2080b22 + +------------------------------------------------------------------- +Tue Dec 3 11:51:24 CET 2024 - mfranc@suse.cz + +- ipv4: ip_tunnel: Fix suspicious RCU usage warning in + ip_tunnel_init_flow() (CVE-2024-53042 bsc#1233540). +- commit 6649f10 + +------------------------------------------------------------------- +Tue Dec 3 10:21:53 CET 2024 - vliaskovitis@suse.com + +- intel_idle: fix ACPI _CST matching for newer Xeon platforms + (bsc#1231630). +- commit 0f23b16 + +------------------------------------------------------------------- +Tue Dec 3 10:19:21 CET 2024 - vliaskovitis@suse.com + +- intel_idle: add Granite Rapids Xeon support (bsc#1231630). +- commit 111abfc + +------------------------------------------------------------------- +Tue Dec 3 09:42:55 CET 2024 - tbogendoerfer@suse.de + +- Update config files. + Enabled IDPF for ARM64 (bsc#1221309) +- commit adee356 + +------------------------------------------------------------------- +Tue Dec 3 08:53:54 CET 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: validate fake register spill/fill precision + backtracking logic (bsc#1232823 CVE-2023-52920). +- bpf: handle fake register spill to stack with BPF_ST_MEM + instruction (bsc#1232823 CVE-2023-52920). +- commit 52cdf87 + +------------------------------------------------------------------- +Tue Dec 3 08:52:17 CET 2024 - neelx@suse.com + +- btrfs: fix a NULL pointer dereference when failed to start a + new trasacntion (CVE-2024-49868 bsc#1232272). +- commit cc68ee3 + +------------------------------------------------------------------- +Tue Dec 3 07:24:38 CET 2024 - jslaby@suse.cz + +- PCI: j721e: Deassert PERST# after a delay of PCIE_T_PVPERL_MS + milliseconds (git-fixes). +- PCI: Add T_PVPERL macro (git-fixes). +- commit 664a849 + +------------------------------------------------------------------- +Mon Dec 2 21:56:21 CET 2024 - vbabka@suse.cz + +- mm/thp: fix deferred split unqueue naming and locking + (CVE-2024-53079 bsc#1233570). +- commit b50ea3e + +------------------------------------------------------------------- +Mon Dec 2 21:16:07 CET 2024 - vliaskovitis@suse.com + +- cxl: downgrade a warning message to debug level in + cxl_probe_component_regs() (bsc#1229165). +- commit 388d64b + +------------------------------------------------------------------- +Mon Dec 2 17:16:15 CET 2024 - dwagner@suse.de + +- nvme-fabrics: fix kernel crash while shutting down controller + (git-fixes). +- nvme-pci: reverse request order in nvme_queue_rqs (git-fixes). +- nvme-pci: fix freeing of the HMB descriptor table (git-fixes). +- nvme/host: Fix RCU list traversal to use SRCU primitive + (git-fixes). +- commit 9f9c907 + +------------------------------------------------------------------- +Mon Dec 2 17:10:36 CET 2024 - dwagner@suse.de + +- nvme-loop: flush off pending I/O while shutting down loop + controller (git-fixes). +- commit 85bcc27 + +------------------------------------------------------------------- +Mon Dec 2 17:09:17 CET 2024 - dwagner@suse.de + +- Rename to + patches.suse/nvme-multipath-defer-partition-scanning.patch. (git-fixes bsc#122824) +- commit 79fcf69 + +------------------------------------------------------------------- +Mon Dec 2 17:06:20 CET 2024 - dwagner@suse.de + +- nvme: tcp: avoid race between queue_lock lock and destroy + (git-fixes). +- commit 0d6537a + +------------------------------------------------------------------- +Mon Dec 2 16:49:45 CET 2024 - dwagner@suse.de + +- Update + patches.suse/scsi-qla2xxx-Update-version-to-10.02.09.300-k.patch + (bsc#1228850 jsc#PED-9943 jsc#PED-11316). + This is the latest greatest version of qla2xxx. Add the jira + reference so that it is tracked. +- commit 8eff9b2 + +------------------------------------------------------------------- +Mon Dec 2 16:48:06 CET 2024 - dwagner@suse.de + +- scsi: lpfc: Copyright updates for 14.4.0.6 patches (bsc#1233241 + jsc#PED-9943). +- scsi: lpfc: Update lpfc version to 14.4.0.6 (bsc#1233241 + jsc#PED-9943). +- scsi: lpfc: Change lpfc_nodelist nlp_flag member into a bitmask + (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Remove NLP_RELEASE_RPI flag from nodelist structure + (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Prevent NDLP reference count underflow in + dev_loss_tmo callback (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Add cleanup of nvmels_wq after HBA reset + (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Check SLI_ACTIVE flag in FDMI cmpl before submitting + follow up FDMI (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Update lpfc_els_flush_cmd() to check for SLI_ACTIVE + before BSG flag (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Call lpfc_sli4_queue_unset() in restart and rmmod + paths (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Check devloss callbk done flag for potential stale + NDLP ptrs (bsc#1233241 jsc#PED-9943). +- scsi: lpfc: Modify CGN warning signal calculation based on + EDC response (bsc#1233241 jsc#PED-9943). +- commit 566c7c9 + +------------------------------------------------------------------- +Mon Dec 2 15:46:30 CET 2024 - vbabka@suse.cz + +- mm: always initialise folio->_deferred_list (CVE-2024-53079 + bsc#1233570 prerequisity). +- commit 3c832a9 + +------------------------------------------------------------------- +Mon Dec 2 15:07:02 CET 2024 - osalvador@suse.de + +- mm/hugetlb: fix nodes huge page allocation when there are + surplus pages (bsc#1234012). +- commit 9fde6f7 + +------------------------------------------------------------------- +Mon Dec 2 15:00:04 CET 2024 - oneukum@suse.com + +- Input: xpad - add support for MSI Claw A1M (git-fixes). +- commit d37ec4c + +------------------------------------------------------------------- +Mon Dec 2 14:58:20 CET 2024 - oneukum@suse.com + +- Input: xpad - add support for 8BitDo Ultimate 2C Wireless + Controller (git-fixes). +- commit 0d7bec2 + +------------------------------------------------------------------- +Mon Dec 2 14:55:18 CET 2024 - oneukum@suse.com + +- Input: xpad - add support for Machenike G5 Pro Controller + (git-fixes). +- commit f071586 + +------------------------------------------------------------------- +Mon Dec 2 14:51:08 CET 2024 - oneukum@suse.com + +- Input: xpad - sort xpad_device by vendor and product ID + (git-fixes). +- Refresh + patches.suse/Input-xpad-add-support-for-Snakebyte-GAMEPADs.patch. +- commit 5f46bd9 + +------------------------------------------------------------------- +Mon Dec 2 14:49:37 CET 2024 - oneukum@suse.com + +- Input: xpad - add GameSir T4 Kaleid Controller support + (git-fixes). +- commit d80239f + +------------------------------------------------------------------- +Mon Dec 2 14:48:03 CET 2024 - oneukum@suse.com + +- Input: xpad - add GameSir VID for Xbox One controllers + (git-fixes). +- commit 993ca75 + +------------------------------------------------------------------- +Mon Dec 2 14:46:07 CET 2024 - oneukum@suse.com + +- Input: xpad - fix support for some third-party controllers + (git-fixes). +- commit 1d5b082 + +------------------------------------------------------------------- +Mon Dec 2 14:42:05 CET 2024 - oneukum@suse.com + +- Input: xpad - spelling fixes for "Xbox" (git-fixes). +- Refresh + patches.suse/Input-xpad-add-HyperX-Clutch-Gladiate-Support.patch. +- Refresh + patches.suse/Input-xpad-add-Lenovo-Legion-Go-controllers.patch. +- Refresh patches.suse/Input-xpad-add-PXN-V900-support.patch. +- Refresh + patches.suse/Input-xpad-add-additional-HyperX-Controller-Identifi.patch. +- Refresh + patches.suse/Input-xpad-add-support-for-ASUS-ROG-RAIKIRI.patch. +- Refresh + patches.suse/Input-xpad-add-support-for-Snakebyte-GAMEPADs.patch. +- commit 15a1c29 + +------------------------------------------------------------------- +Mon Dec 2 14:26:37 CET 2024 - jack@suse.cz + +- jbd2: fix soft lockup in journal_finish_inode_data_buffers() + (bsc#1234046). +- commit f32d01d + +------------------------------------------------------------------- +Mon Dec 2 14:26:05 CET 2024 - jack@suse.cz + +- jbd2: correct the printing of write_flags in + jbd2_write_superblock() (bsc#1234045). +- commit fe6bf4e + +------------------------------------------------------------------- +Mon Dec 2 14:25:44 CET 2024 - jack@suse.cz + +- jbd2: fix potential data lost in recovering journal raced with + synchronizing fs bdev (bsc#1234044). +- commit 5fbdfed + +------------------------------------------------------------------- +Mon Dec 2 14:25:43 CET 2024 - vbabka@suse.cz + +- mm: convert free_transhuge_folio() to + folio_undo_large_rmappable() (CVE-2024-53079 bsc#1233570 + prerequisity). +- commit 4e7d9f6 + +------------------------------------------------------------------- +Mon Dec 2 14:22:23 CET 2024 - jack@suse.cz + +- jbd2: avoid memleak in jbd2_journal_write_metadata_buffer + (bsc#1234043). +- commit ffe100a + +------------------------------------------------------------------- +Mon Dec 2 14:21:38 CET 2024 - jack@suse.cz + +- jbd2: precompute number of transaction descriptor blocks + (bsc#1234042). +- commit 3ed7ebf + +------------------------------------------------------------------- +Mon Dec 2 14:20:57 CET 2024 - jack@suse.cz + +- jbd2: make jbd2_journal_get_max_txn_bufs() internal + (bsc#1234041). +- commit ad2f96f + +------------------------------------------------------------------- +Mon Dec 2 14:20:21 CET 2024 - jack@suse.cz + +- jbd2: avoid mount failed when commit block is partial submitted + (bsc#1234040). +- commit 7226fe5 + +------------------------------------------------------------------- +Mon Dec 2 14:19:05 CET 2024 - jack@suse.cz + +- jbd2: avoid infinite transaction commit loop (bsc#1234039). +- commit ad1118f + +------------------------------------------------------------------- +Mon Dec 2 14:07:12 CET 2024 - jack@suse.cz + +- ext4: fix unttached inode after power cut with orphan file + feature enabled (bsc#1234009). +- commit 3e057c0 + +------------------------------------------------------------------- +Mon Dec 2 13:08:10 CET 2024 - tbogendoerfer@suse.de + +- net: arc: fix the device for dma_map_single/dma_unmap_single + (CVE-2024-50295 bsc#1233484). +- net: vertexcom: mse102x: Fix possible double free of TX skb + (CVE-2024-50276 bsc#1233465). +- net: enetc: allocate vf_state during PF probes (CVE-2024-50298 + bsc#1233487). +- net: stmmac: TSO: Fix unbalanced DMA map/unmap for non-paged + SKB data (CVE-2024-53058 bsc#1233552). +- commit ae38000 + +------------------------------------------------------------------- +Mon Dec 2 12:40:06 CET 2024 - jroedel@suse.de + +- x86/CPU/AMD: Clear virtualized VMLOAD/VMSAVE on Zen4 client + (bsc#1233443). +- commit 5beba61 + +------------------------------------------------------------------- +Mon Dec 2 10:48:58 CET 2024 - nik.borisov@suse.com + +- x86: Increase brk randomness entropy for 64-bit systems (git-fixes). +- commit 7e88dd7 + +------------------------------------------------------------------- +Mon Dec 2 10:48:31 CET 2024 - nik.borisov@suse.com + +- x86/resctrl: Remove hard-coded memory bandwidth limit (git-fixes). +- Refresh patches.suse/x86-resctrl-Annotate-get_mem_config-functions-as-__init.patch. +- commit 6888d66 + +------------------------------------------------------------------- +Mon Dec 2 09:56:24 CET 2024 - vkarasulli@suse.de + +- Update + patches.suse/ASoC-dapm-fix-bounds-checker-error-in-dapm_widget_li.patch + (git-fixes CVE-2024-53045 bsc#1233524). +- Update + patches.suse/ASoC-stm32-spdifrx-fix-dma-channel-release-in-stm32_.patch + (git-fixes CVE-2024-50292 bsc#1233481). +- Update + patches.suse/HID-core-zero-initialize-the-report-buffer.patch + (git-fixes CVE-2024-50302 bsc#1233491). +- Update + patches.suse/USB-serial-io_edgeport-fix-use-after-free-in-debug-p.patch + (git-fixes CVE-2024-50267 bsc#1233456). +- Update patches.suse/can-bcm-Fix-UAF-in-bcm_proc_show.patch + (bsc#1012628 CVE-2023-52922 bsc#1233977). +- Update + patches.suse/drm-amdgpu-add-missing-size-check-in-amdgpu_debugfs_.patch + (stable-fixes CVE-2024-50282 bsc#1233471). +- Update + patches.suse/drm-amdgpu-fix-possible-UAF-in-amdgpu_cs_pass1.patch + (jsc#PED-3527 jsc#PED-5475 jsc#PED-6068 jsc#PED-6070 + jsc#PED-6116 jsc#PED-6120 jsc#PED-5065 jsc#PED-5477 jsc#PED-5511 + jsc#PED-6041 jsc#PED-6069 jsc#PED-6071 CVE-2023-52921 + bsc#1233452). +- Update + patches.suse/drm-amdgpu-prevent-NULL-pointer-dereference-if-ATIF-.patch + (git-fixes CVE-2024-53060 bsc#1233554). +- Update + patches.suse/firmware-arm_scmi-Fix-slab-use-after-free-in-scmi_bu.patch + (git-fixes CVE-2024-53068 bsc#1233561). +- Update + patches.suse/fs-Fix-uninitialized-value-issue-in-from_kuid-and-from_kgid.patch + (git-fixes CVE-2024-53101 bsc#1233769). +- Update + patches.suse/i40e-fix-race-condition-by-adding-filter-s-intermedi.patch + (git-fixes CVE-2024-53088 bsc#1233580). +- Update + patches.suse/iio-gts-helper-Fix-memory-leaks-for-the-error-path-o.patch + (git-fixes CVE-2024-53076 bsc#1233567). +- Update + patches.suse/io_uring-rw-fix-missing-NOWAIT-check-for-O_DIRECT-st.patch + (git-fixes CVE-2024-53052 bsc#1233548). +- Update + patches.suse/media-ar0521-don-t-overflow-when-checking-PLL-values.patch + (git-fixes CVE-2024-53081 bsc#1233572). +- Update + patches.suse/media-cx24116-prevent-overflows-on-SNR-calculus.patch + (git-fixes CVE-2024-50290 bsc#1233479). +- Update + patches.suse/media-dvbdev-prevent-the-risk-of-out-of-memory-acces.patch + (git-fixes CVE-2024-53063 bsc#1233557). +- Update + patches.suse/media-s5p-jpeg-prevent-buffer-overflows.patch + (git-fixes CVE-2024-53061 bsc#1233555). +- Update + patches.suse/media-v4l2-tpg-prevent-the-risk-of-a-division-by-zer.patch + (git-fixes CVE-2024-50287 bsc#1233476). +- Update + patches.suse/nfs-Fix-KMSAN-warning-in-decode_getfattr_attrs.patch + (git-fixes CVE-2024-53066 bsc#1233560). +- Update + patches.suse/ocfs2-remove-entry-once-instead-of-null-ptr-dereference-in-ocfs2_xa_remove.patch + (git-fixes CVE-2024-50265 bsc#1233454). +- Update + patches.suse/platform-x86-amd-pmc-Detect-when-STB-is-not-availabl.patch + (git-fixes CVE-2024-53072 bsc#1233564). +- Update + patches.suse/posix-clock-posix-clock-Fix-unbalanced-locking-in-pc.patch + (CVE-2024-50195 bsc#1233103 CVE-2024-50210 bsc#1233097). +- Update + patches.suse/scsi-wd33c93-Don-t-use-stale-scsi_pointer-value.patch + (git-fixes CVE-2024-50026 bsc#1231952). +- Update + patches.suse/security-keys-fix-slab-out-of-bounds-in-key_task_per.patch + (git-fixes CVE-2024-50301 bsc#1233490). +- Update + patches.suse/tpm-Lock-TPM-chip-in-tpm_pm_suspend-first.patch + (bsc#1082555 git-fixes CVE-2024-53085 bsc#1233577). +- Update + patches.suse/usb-musb-sunxi-Fix-accessing-an-released-usb-phy.patch + (git-fixes CVE-2024-50269 bsc#1233458). +- Update + patches.suse/usb-typec-fix-potential-out-of-bounds-in-ucsi_ccg_up.patch + (git-fixes CVE-2024-50268 bsc#1233457). +- Update + patches.suse/wifi-iwlwifi-mvm-Fix-response-handling-in-iwl_mvm_se.patch + (git-fixes CVE-2024-53059 bsc#1233553). +- Update + patches.suse/wifi-iwlwifi-mvm-don-t-leak-a-link-on-AP-removal.patch + (git-fixes CVE-2024-53074 bsc#1233566). +- commit 5a024cd + +------------------------------------------------------------------- +Mon Dec 2 09:42:05 CET 2024 - nik.borisov@suse.com + +- x86/tdx: Enable CPU topology enumeration (git-fixes). +- commit cf1674b + +------------------------------------------------------------------- +Mon Dec 2 09:41:44 CET 2024 - nik.borisov@suse.com + +- x86/tdx: Dynamically disable SEPT violations from causing #VEs (git-fixes). +- commit 29f8884 + +------------------------------------------------------------------- +Mon Dec 2 09:40:56 CET 2024 - nik.borisov@suse.com + +- x86/tdx: Rename tdx_parse_tdinfo() to tdx_setup() (git-fixes). +- commit a66f7df + +------------------------------------------------------------------- +Mon Dec 2 09:40:31 CET 2024 - nik.borisov@suse.com + +- x86/tdx: Introduce wrappers to read and write TD metadata (git-fixes). +- commit 182660e + +------------------------------------------------------------------- +Mon Dec 2 09:36:47 CET 2024 - nik.borisov@suse.com + +- x86/microcode/intel: Remove unnecessary cache writeback and invalidation (git-fixes). +- commit dc97c33 + +------------------------------------------------------------------- +Mon Dec 2 09:31:59 CET 2024 - nik.borisov@suse.com + +- x86/traps: move kmsan check after instrumentation_begin (git-fixes). +- commit 788cc4b + +------------------------------------------------------------------- +Mon Dec 2 09:30:48 CET 2024 - nik.borisov@suse.com + +- x86: fix off-by-one in access_ok() (git-fixes). +- commit ada1011 + +------------------------------------------------------------------- +Mon Dec 2 09:30:26 CET 2024 - nik.borisov@suse.com + +- x86/syscall: Avoid memcpy() for ia32 syscall_get_arguments() (git-fixes). +- commit a421b7f + +------------------------------------------------------------------- +Sun Dec 1 09:31:13 CET 2024 - tiwai@suse.de + +- tools/power turbostat: Fix trailing '\n' parsing (git-fixes). +- modpost: remove incorrect code in do_eisa_entry() (git-fixes). +- rtc: ab-eoz9: don't fail temperature reads on undervoltage + notification (git-fixes). +- rtc: rzn1: fix BCD to rtc_time conversion errors (git-fixes). +- rtc: check if __rtc_read_time was successful in + rtc_timer_do_work() (git-fixes). +- rtc: abx80x: Fix WDT bit position of the status register + (git-fixes). +- rtc: bbnsm: add remove hook (git-fixes). +- rtc: st-lpc: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- tty: ldsic: fix tty_ldisc_autoload sysctl's proc_handler + (git-fixes). +- serial: 8250: omap: Move pm_runtime_get_sync (git-fixes). +- commit 003de2e + +------------------------------------------------------------------- +Sat Nov 30 10:34:31 CET 2024 - tiwai@suse.de + +- USB: chaoskey: Fix possible deadlock chaoskey_list_lock + (git-fixes). +- commit bc5d0b3 + +------------------------------------------------------------------- +Sat Nov 30 10:33:34 CET 2024 - tiwai@suse.de + +- ALSA: hda: Show the codec quirk info at probing (stable-fixes). +- ALSA: hda/realtek: Set PCBeep to default value for ALC274 + (stable-fixes). +- ALSA: usb-audio: Fix out of bounds reads when finding clock + sources (stable-fixes). +- ALSA: pcm: Add sanity NULL check for the default mmap fault + handler (stable-fixes). +- commit 0da3d44 + +------------------------------------------------------------------- +Sat Nov 30 10:27:17 CET 2024 - tiwai@suse.de + +- drm/amd/display: Fix null check for pipe_ctx->plane_state in + hwss_setup_dpp (git-fixes). +- drm/amd/display: Fix null check for pipe_ctx->plane_state in + dcn20_program_pipe (git-fixes). +- drm/amd: Add some missing straps from NBIO 7.11.0 (git-fixes). +- ASoC: SOF: ipc3-topology: Convert the topology pin index to + ALH dai index (git-fixes). +- ASoC: amd: yc: Fix for enabling DMIC on acp6x via _DSD entry + (git-fixes). +- ALSA: ump: Fix evaluation of MIDI 1.0 FB info (git-fixes). +- ALSA: hda/realtek: Update ALC225 depop procedure (git-fixes). +- ALSA: usb-audio: Fix potential out-of-bound accesses for Extigy + and Mbox devices (git-fixes). +- ALSA: hda/realtek: Update ALC256 depop procedure (git-fixes). +- ALSA: ac97: bus: Fix the mistake in the comment (git-fixes). +- =?UTF-8?q?iio:=20accel:=20kxcjk-1013:=20Remove=20redundan?= + =?UTF-8?q?t=20I=C2=B2C=20ID?= (git-fixes). +- iio: Fix fwnode_handle in __fwnode_iio_channel_get_by_name() + (git-fixes). +- iio: accel: kx022a: Fix raw read format (git-fixes). +- iio: gts: fix infinite loop for gain_to_scaletables() + (git-fixes). +- iio: gts: Fix uninitialized symbol 'ret' (git-fixes). +- ad7780: fix division by zero in ad7780_write_raw() (git-fixes). +- iio: adc: ad7923: Fix buffer overflow for tx_buf and ring_xfer + (git-fixes). +- comedi: Flush partial mappings in error case (git-fixes). +- goldfish: Fix unused const variable 'goldfish_pipe_acpi_match' + (git-fixes). +- iio: adc: ad7606: Fix typo in the driver name (git-fixes). +- iio: light: al3010: Fix an error handling path in al3010_probe() + (git-fixes). +- misc: apds990x: Fix missing pm_runtime_disable() (git-fixes). +- firmware_loader: Fix possible resource leak in + fw_log_firmware_info() (git-fixes). +- usb: dwc3: gadget: Fix looping of queued SG entries (git-fixes). +- usb: dwc3: gadget: Fix checking for number of TRBs left + (git-fixes). +- Revert "usb: gadget: composite: fix OS descriptors w_value + logic" (git-fixes). +- usb: ehci-spear: fix call balance of sehci clk handling routines + (git-fixes). +- USB: serial: ftdi_sio: Fix atomicity violation in + get_serial_info() (git-fixes). +- usb: dwc3: gadget: Add missing check for single port RAM in + TxFIFO resizing logic (git-fixes). +- usb: musb: Fix hardware lockup on first Rx endpoint request + (git-fixes). +- usb: xhci: Fix TD invalidation under pending Set TR Dequeue + (git-fixes). +- USB: chaoskey: fail open after removal (git-fixes). +- usb: yurex: make waiting on yurex_write interruptible + (git-fixes). +- usb: using mutex lock and supporting O_NONBLOCK flag in + iowarrior_read() (git-fixes). +- apparmor: fix 'Do simple duplicate message elimination' + (git-fixes). +- apparmor: test: Fix memory leak for aa_unpack_strdup() + (git-fixes). +- apparmor: use kvfree_sensitive to free data->data (git-fixes). +- commit 875afee + +------------------------------------------------------------------- +Fri Nov 29 16:59:51 CET 2024 - nmorey@suse.com + +- RDMA/hns: Disassociate mmap pages for all uctx when HW is being reset (git-fixes) +- commit 41e9c5b + +------------------------------------------------------------------- +Fri Nov 29 16:27:58 CET 2024 - dfaggioli@suse.com + +- bpf, vsock: Drop static vsock_bpf_prot initialization (git-fixes). +- commit 939d649 + +------------------------------------------------------------------- +Fri Nov 29 16:26:26 CET 2024 - dfaggioli@suse.com + +- vsock: Update msg_count on read_skb() (git-fixes). +- commit fce5f41 + +------------------------------------------------------------------- +Fri Nov 29 16:23:46 CET 2024 - dfaggioli@suse.com + +- vsock: Update rx_bytes on read_skb() (git-fixes, bsc#1233320, + CVE-2024-50169). +- commit acfc5df + +------------------------------------------------------------------- +Fri Nov 29 16:19:13 CET 2024 - dfaggioli@suse.com + +- bpf, sockmap: SK_DROP on attempted redirects of unsupported af_vsock (git-fixes). +- commit 8db08f8 + +------------------------------------------------------------------- +Fri Nov 29 13:04:50 CET 2024 - mgorman@suse.de + +- mm: revert "mm: shmem: fix data-race in shmem_getattr()" + (CVE-2024-50228, bsc#1233204, git fixes (mm/shmem)). + CVE is likely a non-issue while the fix introduces real bugs. +- commit b77756a + +------------------------------------------------------------------- +Fri Nov 29 09:29:22 CET 2024 - tiwai@suse.de + +- Bluetooth: MGMT: Fix slab-use-after-free Read in + set_powered_sync (git-fixes). +- net: mdio-ipq4019: add missing error check (git-fixes). +- net: usb: lan78xx: Fix refcounting and autosuspend on invalid + WoL configuration (git-fixes). +- net: usb: lan78xx: Fix memory leak on device unplug by freeing + PHY device (git-fixes). +- net: usb: lan78xx: Fix double free issue with interrupt buffer + allocation (git-fixes). +- spi: Fix acpi deferred irq probe (git-fixes). +- spi: atmel-quadspi: Fix register name in verbose logging + function (git-fixes). +- power: supply: rt9471: Use IC status regfield to report real + charger status (git-fixes). +- power: supply: rt9471: Fix wrong WDT function regfield + declaration (git-fixes). +- power: supply: bq27xxx: Fix registers of bq27426 (git-fixes). +- power: supply: core: Remove might_sleep() from + power_supply_put() (git-fixes). +- commit 0e6f9cb + +------------------------------------------------------------------- +Thu Nov 28 23:22:45 CET 2024 - krisman@suse.de + +- pktgen: use cpus_read_lock() in pg_net_init() (bsc#1230558 + CVE-2024-46681). +- commit ad3c579 + +------------------------------------------------------------------- +Thu Nov 28 17:10:36 CET 2024 - dsterba@suse.com + +- posix-clock: posix-clock: Fix unbalanced locking in pc_clock_settime() (CVE-2024-50195 bsc#1233103) +- commit 6192694 + +------------------------------------------------------------------- +Thu Nov 28 16:33:22 CET 2024 - tiwai@suse.de + +- media: av7110: fix a spectre vulnerability (CVE-2024-50289 + bsc#1233478). +- commit 2969047 + +------------------------------------------------------------------- +Thu Nov 28 12:51:05 CET 2024 - tiwai@suse.de + +- Drop OCFS2 patch causing a regression (bsc#1233255) + Deleted: + patches.suse/ocfs2-fix-the-la-space-leak-when-unmounting-an-ocfs2-volume.patch +- commit 2a24fc4 + +------------------------------------------------------------------- +Thu Nov 28 10:35:25 CET 2024 - sjaeckel@suse.de + +- net: fix out-of-bounds access in ops_init (CVE-2024-36883 + bsc#1225725). +- commit f1b40e8 + +------------------------------------------------------------------- +Thu Nov 28 09:15:07 CET 2024 - tiwai@suse.de + +- efi/memattr: Ignore table if the size is clearly bogus + (bsc#1231465). +- commit c92a68e + +------------------------------------------------------------------- +Thu Nov 28 08:32:59 CET 2024 - tiwai@suse.de + +- thermal: int3400: Fix reading of current_uuid for active policy + (git-fixes). +- gpio: exar: set value when external pull-up or pull-down is + present (git-fixes). +- gpio: zevio: Add missed label initialisation (git-fixes). +- commit a62e144 + +------------------------------------------------------------------- +Thu Nov 28 08:30:58 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Apply quirk for Medion E15433 (bsc#1233298). +- commit 9a99613 + +------------------------------------------------------------------- +Wed Nov 27 17:49:09 CET 2024 - tbogendoerfer@suse.de + +- ice: fix crash on probe for DPLL enabled E810 LOM + (CVE-2024-53048 bsc#1233721). +- commit 5f7ca77 + +------------------------------------------------------------------- +Wed Nov 27 17:46:22 CET 2024 - nmorey@suse.com + +- Update references for patches.suse/RDMA-siw-Add-sendpage_ok-check-to-disable-MSG_SPLICE.patch (bsc#1233641 CVE-2024-53094) +- commit 1f528cf + +------------------------------------------------------------------- +Wed Nov 27 11:51:43 CET 2024 - osalvador@suse.de + +- mm/hugetlb: fix missing hugetlb_lock for resv uncharge + (bsc#1224548 CVE-2024-36000). +- commit 92c1bc7 + +------------------------------------------------------------------- +Wed Nov 27 11:50:37 CET 2024 - osalvador@suse.de + +- mm/huge_memory: don't unpoison huge_zero_folio (bsc#1227842 + CVE-2024-40914). +- commit 14bb799 + +------------------------------------------------------------------- +Wed Nov 27 11:30:16 CET 2024 - tbogendoerfer@suse.de + +- net: xfrm: preserve kabi for xfrm_state (bsc#1233754). +- idpf: avoid vport access in idpf_get_link_ksettings + (CVE-2024-50274 bsc#1233463). +- xfrm: Export symbol xfrm_dev_state_delete (bsc#1233754). +- xfrm: Fix unregister netdevice hang on hardware offload + (bsc#1233754). +- commit 8c4cfeb + +------------------------------------------------------------------- +Wed Nov 27 08:40:26 CET 2024 - tiwai@suse.de + +- hwmon: (tps23861) Fix reporting of negative temperatures + (git-fixes). +- i3c: master: svc: Fix pm_runtime_set_suspended() with runtime + pm enabled (git-fixes). +- i3c: master: Fix miss free init_dyn_addr at + i3c_master_put_i3c_addrs() (git-fixes). +- PCI: Fix reset_method_store() memory leak (git-fixes). +- PCI: rockchip-ep: Fix address translation unit programming + (git-fixes). +- PCI: keystone: Add link up check to ks_pcie_other_map_bus() + (git-fixes). +- PCI: keystone: Set mode as Root Complex for "ti,keystone-pcie" + compatible (git-fixes). +- PCI: endpoint: Clear secondary (not primary) EPC in + pci_epc_remove_epf() (git-fixes). +- commit 29a3aa9 + +------------------------------------------------------------------- +Tue Nov 26 18:06:28 CET 2024 - tiwai@suse.de + +- Move kabi netfilter fix into patches.kabi +- commit 6c82cf8 + +------------------------------------------------------------------- +Tue Nov 26 15:34:51 CET 2024 - farosas@suse.de + +- virtio_net: Add hash_key_length check (CVE-2024-53082 + bsc#1233573). +- commit 1273e47 + +------------------------------------------------------------------- +Tue Nov 26 13:40:37 CET 2024 - sjaeckel@suse.de + +- net: relax socket state check at accept time (git-fixes). +- netfilter: nf_tables: missing iterator type in lookup walk + (git-fixes). +- commit 180e959 + +------------------------------------------------------------------- +Tue Nov 26 13:36:06 CET 2024 - tbogendoerfer@suse.de + +- net: hns3: fix a deadlock problem when config TC during + resetting (CVE-2024-44995 bsc#1230231). +- commit e1fa968 + +------------------------------------------------------------------- +Tue Nov 26 13:11:16 CET 2024 - msuchanek@suse.de + +- KVM: PPC: Book3S HV: Avoid returning to nested hypervisor on + pending doorbells (bsc#1215199). +- KVM: PPC: Book3S HV: Stop using vc->dpdes for nested KVM guests + (bsc#1215199). +- Revert "KVM: PPC: Book3S HV Nested: Stop forwarding all HFUs + to L1" (bsc#1215199). +- commit d27c0c3 + +------------------------------------------------------------------- +Tue Nov 26 11:46:07 CET 2024 - tiwai@suse.de + +- mailbox: arm_mhuv2: clean up loop in get_irq_chan_comb() + (git-fixes). +- pinctrl: k210: Undef K210_PC_DEFAULT (git-fixes). +- pinctrl: qcom: spmi: fix debugfs drive strength (git-fixes). +- pinctrl: zynqmp: drop excess struct member description + (git-fixes). +- lib: string_helpers: silence snprintf() output truncation + warning (git-fixes). +- fbdev: sh7760fb: Fix a possible memory leak in + sh7760fb_alloc_mem() (git-fixes). +- Input: hycon-hy46xx - add missing dependency on REGMAP_I2C + (git-fixes). +- Input: hideep - add missing dependency on REGMAP_I2C + (git-fixes). +- commit 17f846a + +------------------------------------------------------------------- +Tue Nov 26 11:40:04 CET 2024 - msuchanek@suse.de + +- KVM: PPC: Book3S HV: remove unused varible (bsc#1194869). +- commit 932ea3b + +------------------------------------------------------------------- +Tue Nov 26 11:21:25 CET 2024 - sjaeckel@suse.de + +- netrom: fix possible dead-lock in nr_rt_ioctl() (CVE-2024-38589 + bsc#1226748). +- commit 0e7a285 + +------------------------------------------------------------------- +Tue Nov 26 11:02:02 CET 2024 - msuchanek@suse.de + +- tpm: Lock TPM chip in tpm_pm_suspend() first (bsc#1082555 + git-fixes). +- commit 4594f81 + +------------------------------------------------------------------- +Tue Nov 26 10:59:27 CET 2024 - sjaeckel@suse.de + +- kABI fix for netfilter: nft_set_pipapo: walk over current view + on netlink dump (CVE-2024-27017 bsc#1223733). +- commit 2be46c1 + +------------------------------------------------------------------- +Tue Nov 26 09:34:44 CET 2024 - vbabka@suse.cz + +- Update references for + patches.suse/mm-resolve-faulty-mmap_region-error-path-behaviour.patch + (git-fixes CVE-2024-53096 bsc#1233756). +- commit 6c0d091 + +------------------------------------------------------------------- +Tue Nov 26 09:11:53 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Enable speaker pins for Medion E15443 + platform (bsc#1233298). +- ALSA: hda/realtek: Fix Internal Speaker and Mic boost of + Infinix Y4 Max (bsc#1233298). +- commit dd8caae + +------------------------------------------------------------------- +Tue Nov 26 09:10:22 CET 2024 - tiwai@suse.de + +- Move upstreamed patches into sorted section +- commit b72de8f + +------------------------------------------------------------------- +Tue Nov 26 08:25:42 CET 2024 - vbabka@suse.cz + +- kabi, mm: refactor arch_calc_vm_flag_bits() and arm64 MTE + handling (git-fixes kabi). +- mm: refactor arch_calc_vm_flag_bits() and arm64 MTE handling + (git-fixes). +- commit f31b0e3 + +------------------------------------------------------------------- +Mon Nov 25 21:57:38 CET 2024 - vbabka@suse.cz + +- mm: resolve faulty mmap_region() error path behaviour + (git-fixes). +- commit 84c4dfc + +------------------------------------------------------------------- +Mon Nov 25 18:24:50 CET 2024 - vbabka@suse.cz + +- mm: refactor map_deny_write_exec() (git-fixes). +- commit 8c66a90 + +------------------------------------------------------------------- +Mon Nov 25 18:20:13 CET 2024 - vbabka@suse.cz + +- mm: unconditionally close VMAs on error (git-fixes). +- commit f81f7df + +------------------------------------------------------------------- +Mon Nov 25 18:17:22 CET 2024 - vbabka@suse.cz + +- mm: move dummy_vm_ops out of a header (git-fixes prerequisity). +- commit e1045c0 + +------------------------------------------------------------------- +Mon Nov 25 18:06:16 CET 2024 - vbabka@suse.cz + +- mm: avoid unsafe VMA hook invocation when error arises on mmap + hook (git-fixes). +- commit 2b96063 + +------------------------------------------------------------------- +Mon Nov 25 17:21:25 CET 2024 - tbogendoerfer@suse.de + +- fsl/fman: Fix refcount handling of fman-related devices + (CVE-2024-50166 bsc#1233050). +- fsl/fman: Save device references taken in mac_probe() + (CVE-2024-50166 bsc#1233050). +- commit cff0dea + +------------------------------------------------------------------- +Mon Nov 25 16:20:17 CET 2024 - sjaeckel@suse.de + +- tcp: Fix refcnt handling in __inet_hash_connect() (git-fixes). +- commit 2b4c1a0 + +------------------------------------------------------------------- +Mon Nov 25 14:01:51 CET 2024 - sjaeckel@suse.de + +- tipc: fix UAF in error path (CVE-2024-36886 bsc#1225730). +- commit be7d8d3 + +------------------------------------------------------------------- +Mon Nov 25 13:58:02 CET 2024 - sjaeckel@suse.de + +- ipv4: Fix uninit-value access in __ip_make_skb() (CVE-2024-36927 + bsc#1225813). +- commit 5457624 + +------------------------------------------------------------------- +Mon Nov 25 13:17:32 CET 2024 - mfranc@suse.cz + +- vsock/virtio: Initialization of the dangling pointer occurring + in vsk->trans (CVE-2024-50264 bsc#1233453). +- arm64/sve: Discard stale CPU state when handling SVE traps + (CVE-2024-50275 bsc#1233464). +- commit 2855c61 + +------------------------------------------------------------------- +Mon Nov 25 13:03:37 CET 2024 - sjaeckel@suse.de + +- tcp: defer shutdown(SEND_SHUTDOWN) for TCP_SYN_RECV sockets + (CVE-2024-36905 bsc#1225742). +- commit 84c8bd7 + +------------------------------------------------------------------- +Mon Nov 25 11:08:06 CET 2024 - nik.borisov@suse.com + +- kasan: move checks to do_strncpy_from_user (git-fixes). +- commit ca3142b + +------------------------------------------------------------------- +Mon Nov 25 10:56:40 CET 2024 - sjaeckel@suse.de + +- tipc: fix a possible memleak in tipc_buf_append (CVE-2024-36954 + bsc#1225764). +- commit b7093a9 + +------------------------------------------------------------------- +Mon Nov 25 10:53:25 CET 2024 - sjaeckel@suse.de + +- erspan: make sure erspan_base_hdr is present in skb->head + (CVE-2024-35888 bsc#1224518). +- commit aaa779d + +------------------------------------------------------------------- +Mon Nov 25 10:46:58 CET 2024 - sjaeckel@suse.de + +- net: esp: fix bad handling of pages from page_pool + (CVE-2024-26953 bsc#1223656). +- commit b0a65f5 + +------------------------------------------------------------------- +Mon Nov 25 10:45:00 CET 2024 - sjaeckel@suse.de + +- netfilter: nft_set_pipapo: walk over current view on netlink + dump (CVE-2024-27017 bsc#1223733). +- commit d1885c4 + +------------------------------------------------------------------- +Mon Nov 25 10:39:52 CET 2024 - sjaeckel@suse.de + +- dccp/tcp: Unhash sk from ehash for tb2 alloc failure after + check_estalblished() (CVE-2024-26741 bsc#1222587). +- commit 9a5ac8a + +------------------------------------------------------------------- +Sun Nov 24 21:31:48 CET 2024 - lduncan@suse.com + +- minmax: scsi: fix mis-use of 'clamp()' in sr.c (git-fixes). +- commit 46d200b + +------------------------------------------------------------------- +Sun Nov 24 18:09:35 CET 2024 - nmorey@suse.com + +- Fix warning in patches.suse/RDMA-mlx5-Move-events-notifier-registration-to-be-af.patch + Fixes: ff613dcf3cc9c8aa5b4cc959d0bdfac2dec81854 +- commit 56a258b + +------------------------------------------------------------------- +Sun Nov 24 09:49:00 CET 2024 - tiwai@suse.de + +- Move upstreamed crypto patches into sorted section +- commit 7706550 + +------------------------------------------------------------------- +Sun Nov 24 09:22:34 CET 2024 - tiwai@suse.de + +- maple_tree: refine mas_store_root() on storing NULL (git-fixes). +- maple_tree: fix alloc node fail issue (git-fixes). +- unicode: Fix utf8_load() error path (git-fixes). +- commit 7f4b1c4 + +------------------------------------------------------------------- +Sat Nov 23 16:38:17 CET 2024 - nmorey@suse.com + +- RDMA/mlx5: Move events notifier registration to be after device registration (git-fixes) +- commit ff613dc + +------------------------------------------------------------------- +Sat Nov 23 16:20:10 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix different dgids mapping to the same dip_idx (git-fixes) +- commit 482b364 + +------------------------------------------------------------------- +Sat Nov 23 16:19:30 CET 2024 - nmorey@suse.com + +- RDMA/hns: Use macro instead of magic number (git-fixes) +- commit d6d944a + +------------------------------------------------------------------- +Sat Nov 23 16:15:49 CET 2024 - nmorey@suse.com + +- RDMA/hns: Add mutex_destroy() (git-fixes) +- commit 096658f + +------------------------------------------------------------------- +Sat Nov 23 16:12:59 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix NULL pointer derefernce in hns_roce_map_mr_sg() (git-fixes) +- commit abdac11 + +------------------------------------------------------------------- +Sat Nov 23 16:12:49 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix out-of-order issue of requester when setting FENCE (git-fixes) +- commit a53ecd7 + +------------------------------------------------------------------- +Sat Nov 23 16:12:37 CET 2024 - nmorey@suse.com + +- RDMA/rxe: Set queue pair cur_qp_state when being queried (git-fixes) +- commit 74c369b + +------------------------------------------------------------------- +Sat Nov 23 16:12:28 CET 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Check cqe flags to know imm_data vs inv_irkey (git-fixes) +- commit 7a90d31 + +------------------------------------------------------------------- +Sat Nov 23 16:12:19 CET 2024 - nmorey@suse.com + +- RDMA/rxe: Fix the qp flush warnings in req (git-fixes) +- commit 678f36e + +------------------------------------------------------------------- +Sat Nov 23 16:12:04 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix cpu stuck caused by printings during reset (git-fixes) +- commit 0c19d33 + +------------------------------------------------------------------- +Sat Nov 23 16:11:49 CET 2024 - nmorey@suse.com + +- RDMA/hns: Use dev_* printings in hem code instead of ibdev_* (git-fixes) +- commit 21d3575 + +------------------------------------------------------------------- +Sat Nov 23 16:10:37 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix flush cqe error when racing with destroy qp (git-fixes) +- commit 4c3bddb + +------------------------------------------------------------------- +Sat Nov 23 16:07:39 CET 2024 - nmorey@suse.com + +- RDMA/hns: Fix an AEQE overflow error caused by untimely update of eq_db_ci (git-fixes) +- commit c0d9dba + +------------------------------------------------------------------- +Sat Nov 23 10:08:30 CET 2024 - tiwai@suse.de + +- cpufreq: CPPC: Fix wrong return value in cppc_get_cpu_power() + (git-fixes). +- cpufreq: CPPC: Fix wrong return value in cppc_get_cpu_cost() + (git-fixes). +- commit b53ff09 + +------------------------------------------------------------------- +Sat Nov 23 10:06:44 CET 2024 - tiwai@suse.de + +- cpufreq: mediatek-hw: Fix wrong return value in + mtk_cpufreq_get_cpu_power() (git-fixes). +- cpufreq: CPPC: Fix possible null-ptr-deref for + cppc_get_cpu_cost() (git-fixes). +- cpufreq: CPPC: Fix possible null-ptr-deref for + cpufreq_cpu_get_raw() (git-fixes). +- Revert "cpufreq: brcmstb-avs-cpufreq: Fix initial command check" + (stable-fixes). +- cpufreq: loongson2: Unregister platform_driver on failure + (git-fixes). +- mtd: rawnand: atmel: Fix possible memory leak (git-fixes). +- mtd: spi-nor: core: replace dummy buswidth from addr to data + (git-fixes). +- clk: qcom: clk-alpha-pll: fix lucid 5lpe pll enabled check + (git-fixes). +- clk: qcom: clk-alpha-pll: drop lucid-evo pll enabled warning + (git-fixes). +- clk: qcom: gcc-qcs404: fix initial rate of GPLL3 (git-fixes). +- clk: clk-axi-clkgen: make sure to enable the AXI bus clock + (git-fixes). +- clk: sunxi-ng: d1: Fix PLL_AUDIO0 preset (git-fixes). +- clk: imx: clk-scu: fix clk enable state save and restore + (git-fixes). +- clk: imx: fracn-gppll: fix pll power up (git-fixes). +- clk: imx: fracn-gppll: correct PLL initialization flow + (git-fixes). +- clk: imx: lpcg-scu: SW workaround for errata (e10858) + (git-fixes). +- clk: renesas: rzg2l: Fix FOUTPOSTDIV clk (git-fixes). +- clk: clk-apple-nco: Add NULL check in applnco_probe (git-fixes). +- leds: lp55xx: Remove redundant test for invalid channel number + (git-fixes). +- mfd: rt5033: Fix missing regmap_del_irq_chip() (git-fixes). +- mfd: tps65010: Use IRQF_NO_AUTOEN flag in request_irq() to + fix race (git-fixes). +- drm/amd: Fix initialization mistake for NBIO 7.7.0 + (stable-fixes). +- drm/amd/display: Adjust VSDB parser for replay feature + (stable-fixes). +- media: dvbdev: fix the logic when DVB_DYNAMIC_MINORS is not set + (stable-fixes). +- commit 15015b2 + +------------------------------------------------------------------- +Sat Nov 23 00:12:11 CET 2024 - lduncan@suse.com + +- scsi: cdrom: kABI: fix cdrom_dev_ops change (git-fixes). +- commit ab3e426 + +------------------------------------------------------------------- +Fri Nov 22 18:38:31 CET 2024 - davide.benini@suse.com + +- netfilter: Fix use-after-free in get_info() (CVE-2024-50257 + bsc#1233244). +- commit 1f00653 + +------------------------------------------------------------------- +Fri Nov 22 11:08:31 CET 2024 - tiwai@suse.de + +- ALSA: usb-audio: Make mic volume workarounds globally applicable + (stable-fixes). +- Refresh + patches.suse/ALSA-usb-audio-Add-quirk-for-HP-320-FHD-Webcam.patch. +- commit 777a5df + +------------------------------------------------------------------- +Fri Nov 22 10:59:49 CET 2024 - tiwai@suse.de + +- drm/vc4: Match drm_dev_enter and exit calls in vc4_hvs_lut_load + (git-fixes). +- ALSA: hda: Poll jack events for LS7A HD-Audio (stable-fixes). +- ALSA: usb-audio: Add Pioneer DJ/AlphaTheta DJM-A9 Mixer + (stable-fixes). +- ALSA: usb-audio: Use snprintf instead of sprintf in + build_mixer_unit_ctl (stable-fixes). +- ALSA: ice1712: Remove redundant code in stac9460_dac_vol_put + (stable-fixes). +- commit e772374 + +------------------------------------------------------------------- +Fri Nov 22 10:51:41 CET 2024 - tiwai@suse.de + +- drm/amdkfd: Fix wrong usage of INIT_WORK() (git-fixes). +- drm/panfrost: Add missing OPP table refcnt decremental + (git-fixes). +- drm: use ATOMIC64_INIT() for atomic64_t (git-fixes). +- drm/vkms: Drop unnecessary call to drm_crtc_cleanup() + (git-fixes). +- drm/etnaviv: hold GPU lock across perfmon sampling (git-fixes). +- drm/etnaviv: Request pages from DMA32 zone on addressing_limited + (git-fixes). +- drm/amd/display: Fix brightness level not retained over reboot + (git-fixes). +- drm/msm/dpu: cast crtc_clk calculation to u64 in + _dpu_core_perf_calc_clk() (git-fixes). +- drm/mediatek: Fix child node refcount handling in early exit + (git-fixes). +- drm/msm/gpu: Check the status of registration to PM QoS + (git-fixes). +- drm/msm/adreno: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- drm/msm: Fix some typos in comment (git-fixes). +- drm/msm/dpu: drop LM_3 / LM_4 on MSM8998 (git-fixes). +- drm/msm/dpu: drop LM_3 / LM_4 on SDM845 (git-fixes). +- drm/msm/dpu: on SDM845 move DSPP_3 to LM_5 block (git-fixes). +- drm: xlnx: zynqmp_dpsub: fix hotplug detection (git-fixes). +- drm: zynqmp_kms: Unplug DRM device before removal (git-fixes). +- drm/nouveau/gr/gf100: Fix missing unlock in gf100_gr_chan_new() + (git-fixes). +- drm/panfrost: Remove unused id_mask from struct panfrost_model + (git-fixes). +- drm/amdgpu: Fix JPEG v4.0.3 register write (git-fixes). +- drm/bridge: tc358767: Fix link properties discovery (git-fixes). +- drm/vc4: Match drm_dev_enter and exit calls in + vc4_hvs_atomic_flush (git-fixes). +- drm/bridge: it6505: Drop EDID cache on bridge power off + (git-fixes). +- drm/bridge: anx7625: Drop EDID cache on bridge power off + (git-fixes). +- drm/v3d: Address race-condition in MMU flush (git-fixes). +- drm/sti: avoid potential dereference of error pointers + (git-fixes). +- drm/sti: avoid potential dereference of error pointers in + sti_gdp_atomic_check (git-fixes). +- drm/sti: avoid potential dereference of error pointers in + sti_hqvdp_atomic_check (git-fixes). +- drm/imx/ipuv3: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- drm/imx/dcss: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- drm/omap: Fix locking in omap_gem_new_dmabuf() (git-fixes). +- drm/omap: Fix possible NULL dereference (git-fixes). +- drm/vc4: hvs: Correct logic on stopping an HVS channel + (git-fixes). +- drm/vc4: hvs: Remove incorrect limit from hvs_dlist debugfs + function (git-fixes). +- drm/vc4: hvs: Fix dlist debug not resetting the next entry + pointer (git-fixes). +- drm/vc4: hdmi: Avoid hang with debug registers when suspended + (git-fixes). +- drm/vc4: hvs: Don't write gamma luts on 2711 (git-fixes). +- drm/mm: Mark drm_mm_interval_tree*() functions with + __maybe_unused (git-fixes). +- ASoC: codecs: Fix atomicity violation in + snd_soc_component_get_drvdata() (git-fixes). +- ASoC: rt722-sdca: Remove logically deadcode in rt722-sdca.c + (git-fixes). +- ASoC: fsl_micfil: fix regmap_write_bits usage (git-fixes). +- ALSA: 6fire: Release resources at card release (git-fixes). +- ALSA: caiaq: Use snd_card_free_when_closed() at disconnection + (git-fixes). +- ALSA: us122l: Use snd_card_free_when_closed() at disconnection + (git-fixes). +- ALSA: usx2y: Use snd_card_free_when_closed() at disconnection + (git-fixes). +- Bluetooth: fix use-after-free in device_for_each_child() + (git-fixes). +- wifi: brcmfmac: release 'root' node in all execution paths + (git-fixes). +- wifi: cw1200: Fix potential NULL dereference (git-fixes). +- wifi: wfx: Fix error handling in wfx_core_init() (git-fixes). +- wifi: ath12k: fix warning when unbinding (git-fixes). +- wifi: ath12k: fix crash when unbinding (git-fixes). +- wifi: ath12k: remove msdu_end structure for WCN7850 (git-fixes). +- wifi: ath11k: Fix CE offset address calculation for WCN6750 + in SSR (git-fixes). +- wifi: ath12k: Skip Rx TID cleanup for self peer (git-fixes). +- wifi: ath10k: fix invalid VHT parameters in + supported_vht_mcs_rate_nss2 (git-fixes). +- wifi: ath10k: fix invalid VHT parameters in + supported_vht_mcs_rate_nss1 (git-fixes). +- wifi: ath9k: add range check for conn_rsp_epid in + htc_connect_service() (git-fixes). +- wifi: mwifiex: Fix memcpy() field-spanning write warning in + mwifiex_config_scan() (git-fixes). +- wifi: mwifiex: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- wifi: p54: Use IRQF_NO_AUTOEN flag in request_irq() (git-fixes). +- commit c54011d + +------------------------------------------------------------------- +Fri Nov 22 01:02:40 CET 2024 - lduncan@suse.com + +- scsi: kABI: restore no_start_on_resume to scsi_device + (git-fixes). +- scsi: sd_zbc: Use kvzalloc() to allocate REPORT ZONES buffer + (git-fixes). +- scsi: mpi3mr: Validate SAS port assignments (git-fixes). +- scsi: scsi_transport_fc: Allow setting rport state to current + state (git-fixes). +- scsi: wd33c93: Don't use stale scsi_pointer value (git-fixes). +- scsi: pm8001: Do not overwrite PCI queue mapping (git-fixes). +- scsi: smartpqi: correct stream detection (git-fixes). +- scsi: NCR5380: Initialize buffer for MSG IN and STATUS transfers + (git-fixes). +- scsi: NCR5380: Check for phase match during PDMA fixup + (git-fixes). +- scsi: mac_scsi: Disallow bus errors during PDMA send + (git-fixes). +- scsi: mac_scsi: Refactor polling loop (git-fixes). +- scsi: mac_scsi: Revise printk(KERN_DEBUG ...) messages + (git-fixes). +- scsi: smartpqi: revert + propagate-the-multipath-failure-to-SML-quickly (git-fixes). +- scsi: aacraid: Rearrange order of struct aac_srb_unit + (git-fixes). +- scsi: sd: Ignore command SYNCHRONIZE CACHE error if format in + progress (git-fixes). +- scsi: core: Fix the return value of scsi_logical_block_count() + (git-fixes). +- scsi: mpt3sas: Avoid IOMMU page faults on REPORT ZONES + (git-fixes). +- scsi: mpi3mr: Avoid IOMMU page faults on REPORT ZONES + (git-fixes). +- scsi: pm80xx: Set phy->enable_completion only when we wait + for it (git-fixes). +- scsi: libsas: Fix exp-attached device scan after probe failure + scanned in again after probe failed (git-fixes). +- scsi: mpi3mr: Fix ATA NCQ priority support (git-fixes). +- scsi: core: Disable CDL by default (git-fixes). +- scsi: core: Handle devices which return an unusually large + VPD page count (git-fixes). +- scsi: qedf: Set qed_slowpath_params to zero before use + (git-fixes). +- scsi: sr: Fix unintentional arithmetic wraparound (git-fixes). +- scsi: core: alua: I/O errors for ALUA state transitions + (git-fixes). +- scsi: hpsa: Fix allocation size for Scsi_Host private data + (git-fixes). +- scsi: libsas: Fix the failure of adding phy with zero-address + to port (git-fixes). +- scsi: mpi3mr: Avoid possible run-time warning with long + manufacturer strings (git-fixes). +- scsi: core: Fix handling of SCMD_FAIL_IF_RECOVERING (git-fixes). +- scsi: hisi_sas: Handle the NCQ error returned by D2H frame + (git-fixes). +- scsi: mpi3mr: Avoid memcpy field-spanning write WARNING + (git-fixes). +- scsi: spi: Fix sshdr use (git-fixes). +- scsi: Remove scsi device no_start_on_resume flag (git-fixes). +- commit d5d37f8 + +------------------------------------------------------------------- +Thu Nov 21 08:11:24 CET 2024 - tiwai@suse.de + +- soc: fsl: rcpm: fix missing of_node_put() in + copy_ippdexpcr1_setting() (git-fixes). +- firmware: arm_scpi: Check the DVFS OPP count returned by the + firmware (git-fixes). +- soc: ti: smartreflex: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- soc: qcom: geni-se: fix array underflow in geni_se_clk_tbl_get() + (git-fixes). +- drivers: soc: xilinx: add the missing kfree in + xlnx_add_cb_for_suspend() (git-fixes). +- efi/libstub: Free correct pointer on failure (git-fixes). +- tpm: fix signed/unsigned bug when checking event logs + (git-fixes). +- efi/libstub: fix efi_parse_options() ignoring the default + command line (git-fixes). +- platform/x86: panasonic-laptop: Return errno correctly in show + callback (git-fixes). +- media: uvcvideo: Skip parsing frames of type UVC_VS_UNDEFINED + in uvc_parse_format (git-fixes). +- media: platform: exynos4-is: Fix an OF node reference leak in + fimc_md_is_isp_available (git-fixes). +- media: atomisp: Add check for rgby_data memory allocation + failure (git-fixes). +- media: gspca: ov534-ov772x: Fix off-by-one error in + set_frame_rate() (git-fixes). +- media: venus: Fix pm_runtime_set_suspended() with runtime pm + enabled (git-fixes). +- media: amphion: Fix pm_runtime_set_suspended() with runtime + pm enabled (git-fixes). +- media: i2c: dw9768: Fix pm_runtime_set_suspended() with runtime + pm enabled (git-fixes). +- media: mantis: remove orphan mantis_core.h (git-fixes). +- media: vb2: Fix comment (git-fixes). +- media: uvcvideo: Stop stream during unregister (git-fixes). +- media: ts2020: fix null-ptr-deref in ts2020_probe() (git-fixes). +- media: platform: allegro-dvt: Fix possible memory leak in + allocate_buffers_internal() (git-fixes). +- media: i2c: tc358743: Fix crash in the probe error path when + using polling (git-fixes). +- media: wl128x: Fix atomicity violation in fmc_send_cmd() + (git-fixes). +- media: imx-jpeg: Ensure power suppliers be suspended before + detach them (git-fixes). +- media: amphion: Set video drvdata before register video device + (git-fixes). +- media: imx-jpeg: Set video drvdata before register video device + (git-fixes). +- media: mtk-jpeg: Fix null-ptr-deref during unload module + (git-fixes). +- media: uvcvideo: Require entities to have a non-zero unique ID + (git-fixes). +- HID: wacom: Interpret tilt data from Intuos Pro BT as signed + values (git-fixes). +- mmc: mmc_spi: drop buggy snprintf() (git-fixes). +- =?UTF-8?q?spi:=20zynqmp-gqspi:=20Undo=20runtime=20PM=20ch?= + =?UTF-8?q?anges=20at=20driver=20exit=20time=E2=80=8B?= + (git-fixes). +- spi: tegra210-quad: Avoid shift-out-of-bounds (git-fixes). +- regmap: irq: Set lockdep class for hierarchical IRQ domains + (git-fixes). +- Documentation: kgdb: Correct parameter error (git-fixes). +- efi/libstub: zboot.lds: Discard .discard sections + (stable-fixes). +- commit fbb8e93 + +------------------------------------------------------------------- +Wed Nov 20 08:53:46 CET 2024 - tiwai@suse.de + +- doc: rcu: update printed dynticks counter bits (git-fixes). +- hwmon: (nct6775-core) Fix overflows seen when writing limit + attributes (git-fixes). +- ACPI: CPPC: Fix _CPC register setting issue (git-fixes). +- thermal: core: Initialize thermal zones before registering them + (git-fixes). +- amd-pstate: Set min_perf to nominal_perf for active mode + performance gov (git-fixes). +- crypto: cavium - Fix an error handling path in + cpt_ucode_load_fw() (git-fixes). +- crypto: bcm - add error check in the ahash_hmac_init function + (git-fixes). +- crypto: caam - add error check to caam_rsa_set_priv_key_form + (git-fixes). +- crypto: inside-secure - Fix the return value of + safexcel_xcbcmac_cra_init() (git-fixes). +- crypto: cavium - Fix the if condition to exit loop after timeout + (git-fixes). +- crypto: x86/aegis128 - access 32-bit arguments as 32-bit + (git-fixes). +- crypto: pcrypt - Call crypto layer directly when + padata_do_parallel() return -EBUSY (git-fixes). +- crypto: qat - remove faulty arbiter config reset (git-fixes). +- crypto: qat/qat_4xxx - fix off by one in uof_get_name() + (git-fixes). +- crypto: qat - remove check after debugfs_create_dir() + (git-fixes). +- crypto: caam - Fix the pointer passed to caam_qi_shutdown() + (git-fixes). +- firmware: google: Unregister driver_info on failure (git-fixes). +- platform/chrome: cros_ec_typec: fix missing fwnode reference + decrement (git-fixes). +- acpi/arm64: Adjust error handling procedure in + gtdt_parse_timer_block() (git-fixes). +- commit af7e948 + +------------------------------------------------------------------- +Tue Nov 19 15:57:33 CET 2024 - fdmanana@suse.com + +- btrfs: reinitialize delayed ref list after deleting it from + the list (bsc#1233462 CVE-2024-50273). +- commit 174bbc2 + +------------------------------------------------------------------- +Mon Nov 18 16:26:54 CET 2024 - msuchanek@suse.de + +- kernel-binary: Enable livepatch package only when livepatch is enabled + Otherwise the filelist may be empty failing the build (bsc#1218644). +- commit f730eec + +------------------------------------------------------------------- +Mon Nov 18 16:01:38 CET 2024 - msuchanek@suse.de + +- Update config files (bsc#1218644). + LIVEPATCH_IPA_CLONES=n => LIVEPATCH=n +- commit cabd446 + +------------------------------------------------------------------- +Mon Nov 18 12:57:29 CET 2024 - tiwai@suse.de + +- ASoC: audio-graph-card2: Purge absent supplies for device tree + nodes (stable-fixes). +- ALSA: hda/realtek: fix mute/micmute LEDs for a HP EliteBook + 645 G10 (stable-fixes). +- ALSA: hda/realtek - Fixed Clevo platform headset Mic issue + (stable-fixes). +- ALSA: usb-audio: Fix Yamaha P-125 Quirk Entry (stable-fixes). +- commit 03ba04a + +------------------------------------------------------------------- +Mon Nov 18 12:55:46 CET 2024 - tiwai@suse.de + +- drm/amdgpu: fix check in gmc_v9_0_get_vm_pte() (git-fixes). +- drm/bridge: tc358768: Fix DSI command tx (git-fixes). +- nouveau/dp: handle retries for AUX CH transfers with GSP + (git-fixes). +- nouveau: handle EBUSY and EAGAIN for GSP aux errors (git-fixes). +- nouveau: fw: sync dma after setup is called (git-fixes). +- drm/rockchip: vop: Fix a dereferenced before check warning + (git-fixes). +- Revert "mmc: dw_mmc: Fix IDMAC operation with pages bigger + than 4K" (git-fixes). +- mmc: sunxi-mmc: Fix A100 compatible description (git-fixes). +- ALSA: hda/realtek - update set GPIO3 to default for Thinkpad + with ALC1318 (git-fixes). +- ASoC: fsl_micfil: Add sample rate constraint (stable-fixes). +- ASoC: rt722-sdca: increase clk_stop_timeout to fix clock stop + issue (stable-fixes). +- ASoC: amd: yc: Fix non-functional mic on ASUS E1404FA + (stable-fixes). +- ASoC: amd: yc: Add quirk for ASUS Vivobook S15 M3502RA + (stable-fixes). +- net: usb: qmi_wwan: add Fibocom FG132 0x0112 composition + (stable-fixes). +- net: wwan: fix global oob in wwan_rtnl_policy (git-fixes). +- HID: lenovo: Add support for Thinkpad X1 Tablet Gen 3 keyboard + (stable-fixes). +- HID: multitouch: Add quirk for Logitech Bolt receiver w/ + Casa touchpad (stable-fixes). +- drm/vmwgfx: Limit display layout ioctl array size to + VMWGFX_NUM_DISPLAY_UNITS (stable-fixes). +- drm/amdkfd: Accounting pdd vram_usage for svm (stable-fixes). +- crypto: api - Fix liveliness check in crypto_alg_tested + (stable-fixes). +- HID: multitouch: Add quirk for HONOR MagicBook Art 14 touchpad + (stable-fixes). +- HID: multitouch: Add support for B2402FVA track point + (stable-fixes). +- commit 42778ee + +------------------------------------------------------------------- +Mon Nov 18 10:12:01 CET 2024 - ailiop@suse.com + +- ocfs2: uncache inode which has failed entering the group + (git-fixes). +- commit 4caa305 + +------------------------------------------------------------------- +Mon Nov 18 10:09:43 CET 2024 - ailiop@suse.com + +- ocfs2: fix UBSAN warning in ocfs2_verify_volume() (git-fixes). +- commit fe96ee2 + +------------------------------------------------------------------- +Mon Nov 18 10:08:42 CET 2024 - ailiop@suse.com + +- ocfs2: remove entry once instead of null-ptr-dereference in + ocfs2_xa_remove() (git-fixes). +- commit 7a347a0 + +------------------------------------------------------------------- +Mon Nov 18 10:01:48 CET 2024 - ailiop@suse.com + +- fs: Fix uninitialized value issue in from_kuid and from_kgid + (git-fixes). +- commit 46de67d + +------------------------------------------------------------------- +Mon Nov 18 09:28:56 CET 2024 - nmorey@suse.com + +- Revert "RDMA/core: Fix ENODEV error for iWARP test over vlan" (git-fixes) +- commit 89dc95f + +------------------------------------------------------------------- +Mon Nov 18 09:28:29 CET 2024 - nmorey@suse.com + +- RDMA/siw: Add sendpage_ok() check to disable MSG_SPLICE_PAGES (git-fixes) +- commit 1e78f0f + +------------------------------------------------------------------- +Sat Nov 16 14:28:26 CET 2024 - mfranc@suse.cz + +- Bluetooth: ISO: Fix UAF on iso_sock_timeout (CVE-2024-50124 + bsc#1232926). +- commit 25f5727 + +------------------------------------------------------------------- +Fri Nov 15 21:26:02 CET 2024 - trenn@suse.com + +- tools/power turbostat: Increase the limit for fd opened + (bsc#1233119). +- commit 58c7a4f + +------------------------------------------------------------------- +Fri Nov 15 19:36:25 CET 2024 - dsterba@suse.com + +- posix-clock: Fix missing timespec64 check in pc_clock_settime() (CVE-2024-50195 bsc#1233103) +- commit 5c410cf + +------------------------------------------------------------------- +Fri Nov 15 19:22:13 CET 2024 - dsterba@suse.com + +- bpf: Use raw_spinlock_t in ringbuf (CVE-2024-50138 bsc#1232935) +- commit 949411a + +------------------------------------------------------------------- +Fri Nov 15 19:15:20 CET 2024 - dsterba@suse.com + +- net: systemport: fix potential memory leak in bcm_sysport_xmit() (CVE-2024-50171 bsc#1233057) +- commit 24f9c7b + +------------------------------------------------------------------- +Fri Nov 15 13:23:36 CET 2024 - msuchanek@suse.de + +- crypto: aes-gcm-p10 - Use the correct bit to test for P10 + (bsc#1232704). +- commit 52eb6a0 + +------------------------------------------------------------------- +Fri Nov 15 12:09:15 CET 2024 - ohering@suse.de + +- add bugreference to a hv_netvsc patch (bsc#1232413). +- commit 14b76c0 + +------------------------------------------------------------------- +Fri Nov 15 10:37:05 CET 2024 - mfranc@suse.cz + +- scsi: target: core: Fix null-ptr-deref in target_alloc_device() + (CVE-2024-50153 bsc#1233061). +- commit 76e65bc + +------------------------------------------------------------------- +Fri Nov 15 10:32:59 CET 2024 - mfranc@suse.cz + +- octeon_ep: Add SKB allocation failures handling in + __octep_oq_process_rx() (CVE-2024-50145 bsc#1233044). +- octeon_ep: Implement helper for iterating packets in Rx queue + (CVE-2024-50145 bsc#1233044). +- commit 6b574c1 + +------------------------------------------------------------------- +Fri Nov 15 10:30:49 CET 2024 - sjaeckel@suse.de + +- Fix for kABI fix for Bluetooth: L2CAP: Fix + div-by-zero in l2cap_le_flowctl_init() (CVE-2024-36968 bsc#1226130). + The chosen position of `mtu` in the `struct hci_conn` in the first + iteration of this patch was done based on the wrong version of the header + and therefore on the wrong position. Correct that. + Fixes: d93ac77c0df4b8dfe469c26e60d4fb45fc305341 +- commit 77fc56a + +------------------------------------------------------------------- +Fri Nov 15 10:15:49 CET 2024 - mfranc@suse.cz + +- net: wwan: fix global oob in wwan_rtnl_policy (CVE-2024-50128 + bsc#1232905). +- commit c939671 + +------------------------------------------------------------------- +Fri Nov 15 10:12:23 CET 2024 - mfranc@suse.cz + +- xfrm: fix one more kernel-infoleak in algo dumping + (CVE-2024-50110 bsc#1232885). +- commit 2ae0e01 + +------------------------------------------------------------------- +Fri Nov 15 10:04:59 CET 2024 - mfranc@suse.cz + +- scsi: ufs: core: Set SDEV_OFFLINE when UFS is shut down + (CVE-2024-50098 bsc#1232881). +- commit f344a8e + +------------------------------------------------------------------- +Fri Nov 15 09:56:09 CET 2024 - mfranc@suse.cz + +- Update + patches.suse/thermal-intel-int340x-processor-Fix-warning-during-m.patch + (git-fixes bsc#1232877 CVE-2024-50093). +- commit 6ec2cb2 + +------------------------------------------------------------------- +Fri Nov 15 09:52:21 CET 2024 - tiwai@suse.de + +- Bluetooth: btintel: Direct exception event to bluetooth stack + (git-fixes). +- Bluetooth: hci_core: Fix calling mgmt_device_connected + (git-fixes). +- USB: serial: qcserial: add support for Sierra Wireless EM86xx + (stable-fixes). +- USB: serial: option: add Quectel RG650V (stable-fixes). +- USB: serial: option: add Fibocom FG132 0x0112 composition + (stable-fixes). +- tools/lib/thermal: Fix sampling handler context ptr (git-fixes). +- drm/amdgpu: add missing size check in + amdgpu_debugfs_gprwave_read() (stable-fixes). +- drm/amdgpu: Adjust debugfs eviction and IB access permissions + (stable-fixes). +- drm/amdgpu: Adjust debugfs register access permissions + (stable-fixes). +- drm/amdgpu: prevent NULL pointer dereference if ATIF is not + supported (git-fixes). +- net: phy: ti: add PHY_RST_AFTER_CLK_EN flag (git-fixes). +- net: wwan: t7xx: Fix off-by-one error in + t7xx_dpmaif_rx_buf_alloc() (git-fixes). +- net: phy: dp83822: Fix reset pin definitions (git-fixes). +- commit 48ec995 + +------------------------------------------------------------------- +Fri Nov 15 09:41:23 CET 2024 - tiwai@suse.de + +- Delete patches.suse/wifi-mac80211-fix-RCU-list-iterations.patch + It was reverted on 6.6.x stable +- commit e2ead50 + +------------------------------------------------------------------- +Fri Nov 15 09:37:00 CET 2024 - mfranc@suse.cz + +- net: explicitly clear the sk pointer, when pf->create fails + (CVE-2024-50186 bsc#1233110). +- commit dfaff4b + +------------------------------------------------------------------- +Fri Nov 15 09:00:18 CET 2024 - mfranc@suse.cz + +- secretmem: disable memfd_secret() if arch cannot set direct map + (CVE-2024-50182 bsc#1233129). +- commit 0d23f21 + +------------------------------------------------------------------- +Fri Nov 15 08:24:28 CET 2024 - jslaby@suse.cz + +- Update + patches.suse/ACPI-CPPC-Make-rmw_lock-a-raw_spin_lock.patch + (git-fixes CVE-2024-50249 bsc#1233197). +- Update + patches.suse/ACPI-PRM-Find-EFI_MEMORY_RUNTIME-block-for-PRM-handl.patch + (git-fixes CVE-2024-50141 bsc#1233065). +- Update + patches.suse/ALSA-firewire-lib-Avoid-division-by-zero-in-apply_co.patch + (git-fixes CVE-2024-50205 bsc#1233293). +- Update + patches.suse/ALSA-hda-cs8409-Fix-possible-NULL-dereference.patch + (git-fixes CVE-2024-50160 bsc#1233074). +- Update + patches.suse/ASoC-qcom-Fix-NULL-Dereference-in-asoc_qcom_lpass_cp.patch + (git-fixes CVE-2024-50103 bsc#1232878). +- Update + patches.suse/Bluetooth-bnep-fix-wild-memory-access-in-proto_unreg.patch + (git-fixes CVE-2024-50148 bsc#1233063). +- Update + patches.suse/Bluetooth-hci-fix-null-ptr-deref-in-hci_read_support.patch + (git-fixes CVE-2024-50255 bsc#1233238). +- Update + patches.suse/HID-amd_sfh-Switch-to-device-managed-dmam_alloc_cohe.patch + (git-fixes CVE-2024-50189 bsc#1233105). +- Update + patches.suse/RDMA-bnxt_re-Add-a-check-for-memory-allocation.patch + (git-fixes CVE-2024-50209 bsc#1233114). +- Update + patches.suse/RDMA-bnxt_re-Avoid-CPU-lockups-due-fifo-occupancy-ch.patch + (git-fixes CVE-2024-50157 bsc#1233032). +- Update + patches.suse/RDMA-bnxt_re-Fix-a-bug-while-setting-up-Level-2-PBL-.patch + (git-fixes CVE-2024-50208 bsc#1233117). +- Update + patches.suse/RDMA-bnxt_re-Fix-a-possible-memory-leak.patch + (git-fixes CVE-2024-50172 bsc#1233029). +- Update patches.suse/RDMA-bnxt_re-Fix-out-of-bound-check.patch + (git-fixes CVE-2024-50158 bsc#1233036). +- Update + patches.suse/RDMA-mad-Improve-handling-of-timed-out-WRs-of-mad-ag.patch + (git-fixes CVE-2024-50095 bsc#1232873). +- Update + patches.suse/USB-gadget-dummy-hcd-Fix-task-hung-problem.patch + (git-fixes CVE-2024-50100 bsc#1232876). +- Update + patches.suse/arm64-probes-Fix-uprobes-for-big-endian-kernels.patch + (git-fixes CVE-2024-50194 bsc#1233111). +- Update + patches.suse/arm64-probes-Remove-broken-LDR-literal-uprobe-support.patch + (git-fixes CVE-2024-50099 bsc#1232887). +- Update + patches.suse/ceph-remove-the-incorrect-Fw-reference-check-when-dir.patch + (bsc#1231182 CVE-2024-50179 bsc#1233123). +- Update + patches.suse/clk-imx-Remove-CLK_SET_PARENT_GATE-for-DRAM-mux-for-.patch + (stable-fixes CVE-2024-50181 bsc#1233127). +- Update + patches.suse/drm-amd-Guard-against-bad-data-for-ATIF-ACPI-method.patch + (git-fixes CVE-2024-50117 bsc#1232897). +- Update + patches.suse/drm-amd-display-Disable-PSR-SU-on-Parade-08-01-TCON-.patch + (stable-fixes CVE-2024-50108 bsc#1232884). +- Update + patches.suse/drm-amd-pm-Vangogh-Fix-kernel-memory-out-of-bounds-w.patch + (git-fixes CVE-2024-50221 bsc#1233185). +- Update + patches.suse/drm-msm-Avoid-NULL-dereference-in-msm_disp_state_pri.patch + (git-fixes CVE-2024-50156 bsc#1233073). +- Update patches.suse/drm-radeon-Fix-encoder-possible_clones.patch + (git-fixes CVE-2024-50201 bsc#1233104). +- Update + patches.suse/drm-vboxvideo-Replace-fake-VLA-at-end-of-vbva_mouse_.patch + (stable-fixes CVE-2024-50134 bsc#1232890). +- Update + patches.suse/drm-vc4-Stop-the-active-perfmon-before-being-destroy.patch + (git-fixes CVE-2024-50187 bsc#1233108). +- Update + patches.suse/ext4-fix-slab-use-after-free-in-ext4_split_extent_at.patch + (bsc#1232201 CVE-2024-49884 bsc#1232198). +- Update patches.suse/fbdev-sisfb-Fix-strbuf-array-overflow.patch + (stable-fixes CVE-2024-50180 bsc#1233125). +- Update + patches.suse/firmware-arm_scmi-Fix-the-double-free-in-scmi_debugf.patch + (git-fixes CVE-2024-50159 bsc#1233041). +- Update + patches.suse/iio-adc-ad7124-fix-division-by-zero-in-ad7124_set_ch.patch + (git-fixes CVE-2024-50232 bsc#1233209). +- Update + patches.suse/iio-gts-helper-Fix-memory-leaks-in-iio_gts_build_ava.patch + (git-fixes CVE-2024-50231 bsc#1233208). +- Update + patches.suse/iio-light-veml6030-fix-IIO-device-retrieval-from-emb.patch + (git-fixes CVE-2024-50198 bsc#1233100). +- Update + patches.suse/iommu-vt-d-Fix-incorrect-pci_for_each_dma_alias-for-.patch + (git-fixes CVE-2024-50101 bsc#1232869). +- Update + patches.suse/maple_tree-correct-tree-corruption-on-spanning-store.patch + (git-fixes CVE-2024-50200 bsc#1233088). +- Update + patches.suse/media-qcom-camss-Remove-use_count-guard-in-stop_stre.patch + (git-fixes CVE-2024-50175 bsc#1233092). +- Update + patches.suse/net-mlx5-Fix-command-bitmask-initialization.patch + (git-fixes CVE-2024-50147 bsc#1233067). +- Update + patches.suse/net-mlx5-Unregister-notifier-on-eswitch-init-failure.patch + (git-fixes CVE-2024-50136 bsc#1232914). +- Update + patches.suse/net-mlx5e-Don-t-call-cleanup-on-profile-rollback-fai.patch + (git-fixes CVE-2024-50146 bsc#1233056). +- Update + patches.suse/net-phy-dp83869-fix-memory-corruption-when-enabling-.patch + (git-fixes CVE-2024-50188 bsc#1233107). +- Update + patches.suse/netdevsim-use-cond_resched-in-nsim_dev_trap_report_w.patch + (git-fixes CVE-2024-50155 bsc#1233035). +- Update + patches.suse/nfsd-cancel-nfsd_shrinker_work-using-sync-mode-in-nf.patch + (git-fixes CVE-2024-50121 bsc#1232925). +- Update + patches.suse/nilfs2-fix-kernel-bug-due-to-missing-clearing-of-buffer-delay-flag.patch + (git-fixes CVE-2024-50116 bsc#1232892). +- Update + patches.suse/nilfs2-fix-potential-deadlock-with-newly-created-symlinks.patch + (git-fixes CVE-2024-50229 bsc#1233205). +- Update + patches.suse/nouveau-dmem-Fix-vulnerability-in-migrate_to_ram-upo.patch + (git-fixes CVE-2024-50096 bsc#1232870). +- Update + patches.suse/nvme-pci-fix-race-condition-between-reset-and-nvme_d.patch + (git-fixes CVE-2024-50135 bsc#1232888). +- Update + patches.suse/nvmet-auth-assign-dh_key-to-NULL-after-kfree_sensiti.patch + (git-fixes CVE-2024-50215 bsc#1233189). +- Update + patches.suse/ocfs2-pass-u64-to-ocfs2_truncate_inline-maybe-overflow.patch + (git-fixes CVE-2024-50218 bsc#1233191). +- Update + patches.suse/phy-qcom-qmp-usb-fix-NULL-deref-on-runtime-suspend.patch + (git-fixes CVE-2024-50240 bsc#1233217). +- Update + patches.suse/pinctrl-ocelot-fix-system-hang-on-level-based-interr.patch + (stable-fixes CVE-2024-50196 bsc#1233113). +- Update + patches.suse/remoteproc-k3-r5-Fix-error-handling-when-power-up-fa.patch + (git-fixes CVE-2024-50176 bsc#1233091). +- Update + patches.suse/scsi-lpfc-Ensure-DA_ID-handling-completion-before-de.patch + (bsc#1232757 CVE-2024-50183 bsc#1233130). +- Update + patches.suse/spi-spi-fsl-dspi-Fix-crash-when-not-using-GPIO-chip-.patch + (git-fixes CVE-2024-50224 bsc#1233188). +- Update + patches.suse/staging-iio-frequency-ad9832-fix-division-by-zero-in.patch + (git-fixes CVE-2024-50233 bsc#1233210). +- Update + patches.suse/thermal-intel-int340x-processor-Fix-warning-during-m.patch + (git-fixes CVE-2024-50093 bsc#1232877). +- Update + patches.suse/tracing-Consider-the-NULL-character-when-validating-the-event-length.patch + (git-fixes CVE-2024-50131 bsc#1232896). +- Update + patches.suse/tracing-timerlat-Drop-interface_lock-in-stop_kthread.patch + (git-fixes CVE-2024-49976 bsc#1232103). +- Update + patches.suse/tracing-timerlat-Only-clear-timer-if-a-kthread-exists.patch + (git-fixes CVE-2024-46845 bsc#1231076). +- Update + patches.suse/unicode-Don-t-special-case-ignorable-code-points.patch + (stable-fixes CVE-2024-50089 bsc#1232860). +- Update + patches.suse/uprobe-avoid-out-of-bounds-memory-access-of-fetching-args.patch + (git-fixes CVE-2024-50067 bsc#1232416). +- Update + patches.suse/uprobes-fix-kernel-info-leak-via-uprobes-vma.patch + (bsc#1231114 CVE-2024-46828 CVE-2024-49975 bsc#1232104). +- Update + patches.suse/usb-typec-altmode-should-keep-reference-to-parent.patch + (git-fixes CVE-2024-50150 bsc#1233051). +- Update + patches.suse/wifi-ath10k-Fix-memory-leak-in-management-tx.patch + (git-fixes CVE-2024-50236 bsc#1233212). +- Update + patches.suse/wifi-cfg80211-clear-wdev-cqm_config-pointer-on-free.patch + (git-fixes CVE-2024-50235 bsc#1233176). +- Update + patches.suse/wifi-iwlegacy-Clear-stale-interrupts-before-resuming.patch + (stable-fixes CVE-2024-50234 bsc#1233211). +- Update + patches.suse/wifi-mac80211-do-not-pass-a-stopped-vif-to-the-drive.patch + (git-fixes CVE-2024-50237 bsc#1233216). +- Update + patches.suse/x86-fix-user-address-masking-non-canonical-speculation-iss.patch + (git-fixes CVE-2024-50102 bsc#1232880). +- Update + patches.suse/xfs-fix-finding-a-last-resort-AG-in-xfs_filestream_pick_ag.patch + (git-fixes CVE-2024-50216 bsc#1233179). +- commit 7d67ea3 + +------------------------------------------------------------------- +Thu Nov 14 21:41:24 CET 2024 - dsterba@suse.com + +- btrfs: fix error propagation of split bios (CVE-2024-50225 bsc#1233193) +- commit ec9c552 + +------------------------------------------------------------------- +Thu Nov 14 21:40:24 CET 2024 - dsterba@suse.com + +- btrfs: merge btrfs_orig_bbio_end_io() into btrfs_bio_end_io() (bsc#1233193) +- commit b9564da + +------------------------------------------------------------------- +Thu Nov 14 21:32:27 CET 2024 - dsterba@suse.com + +- Update references in patches.suse/ntfs3-Add-bounds-checking-to-mi_enum_attr.patch (CVE-2024-50248 bsc#1233219 bsc#1233207) +- commit 56e1d55 + +------------------------------------------------------------------- +Thu Nov 14 21:29:07 CET 2024 - dsterba@suse.com + +- fs/ntfs3: Sequential field availability check in mi_enum_attr() (bsc#1233207) +- commit 95663e2 + +------------------------------------------------------------------- +Thu Nov 14 21:23:01 CET 2024 - dsterba@suse.com + +- fs/ntfs3: Add rough attr alloc_size check (CVE-2024-50246 bsc#1233207) +- commit 378df6a + +------------------------------------------------------------------- +Thu Nov 14 21:21:37 CET 2024 - dsterba@suse.com + +- ntfs3: Add bounds checking to mi_enum_attr() (bsc#1233207) +- commit 418f82a + +------------------------------------------------------------------- +Thu Nov 14 21:20:35 CET 2024 - dsterba@suse.com + +- fs/ntfs3: Fixed overflow check in mi_enum_attr() (bsc#1233207) +- commit 6744037 + +------------------------------------------------------------------- +Thu Nov 14 21:19:03 CET 2024 - dsterba@suse.com + +- fs/ntfs3: Add more attributes checks in mi_enum_attr() (bsc#1233207) +- commit 766ca6e + +------------------------------------------------------------------- +Thu Nov 14 19:53:46 CET 2024 - dsterba@suse.com + +- fs/ntfs3: Fix possible deadlock in mi_read (CVE-2024-50245 bsc#1233203) +- commit 5f9c2da + +------------------------------------------------------------------- +Thu Nov 14 16:57:13 CET 2024 - sjaeckel@suse.de + +- Rename to + patches.kabi/kABI-fix-for-Bluetooth-L2CAP-Fix-div-by-zero-in-l2ca.patch. + Fixes: d93ac77c0df4b8dfe469c26e60d4fb45fc305341 +- commit 1f6a42b + +------------------------------------------------------------------- +Thu Nov 14 16:43:15 CET 2024 - jgross@suse.com + +- virtio_pmem: Check device status before requesting flush + (CVE-2024-50184 bsc#1233135). +- commit 4e28ae6 + +------------------------------------------------------------------- +Thu Nov 14 16:25:22 CET 2024 - jgross@suse.com + +- KVM: SEV-ES: Fix svm_get_msr()/svm_set_msr() for KVM_SEV_ES_INIT + guests (bsc#1232207). +- commit 4b9eff5 + +------------------------------------------------------------------- +Thu Nov 14 13:49:22 CET 2024 - jgross@suse.com + +- KVM: SEV-ES: Prevent MSR access post VMSA encryption + (bsc#1232207). +- commit 61f28ae + +------------------------------------------------------------------- +Thu Nov 14 13:34:42 CET 2024 - ptesarik@suse.com + +- u64_stats: fix u64_stats_init() for lockdep when used repeatedly + in one file (git-fixes). +- commit 017d59a + +------------------------------------------------------------------- +Thu Nov 14 12:11:06 CET 2024 - sjaeckel@suse.de + +- tcp/dccp: Don't use timer_pending() in reqsk_queue_unlink() + (CVE-2024-50154 bsc#1233070). +- commit 43fc2d5 + +------------------------------------------------------------------- +Thu Nov 14 10:16:35 CET 2024 - shung-hsi.yu@suse.com + +- Refresh patches.kabi/bpf-verifier-kABI-workarounds.patch (bsc#1233350) + Correctly workaround kABI breakage that was introduced with fixes + backported for bsc#1225903. +- commit 52684a5 + +------------------------------------------------------------------- +Thu Nov 14 08:19:25 CET 2024 - tiwai@suse.de + +- ASoC: SOF: ipc4-topology: Only handle dai_config with HW_PARAMS + for ChainDMA (bsc#1233305). +- commit 1b06409 + +------------------------------------------------------------------- +Wed Nov 13 20:54:32 CET 2024 - krisman@suse.de + +- io_uring/rw: fix missing NOWAIT check for O_DIRECT start write + (git-fixes). +- io_uring/sqpoll: close race on waiting for sqring entries + (git-fixes). +- commit 83eaece + +------------------------------------------------------------------- +Wed Nov 13 12:35:24 CET 2024 - mgorman@suse.de + +- mm: shmem: fix data-race in shmem_getattr() (CVE-2024-50228, + bsc#1233204, git fixes (mm/shmem)). +- commit 89c94b7 + +------------------------------------------------------------------- +Wed Nov 13 12:09:35 CET 2024 - jslaby@suse.cz + +- irqchip/gic-v4: Correctly deal with set_affinity on + lazily-mapped VPEs (CVE-2024-50192 bsc#1233106). +- commit 4258dbe + +------------------------------------------------------------------- +Wed Nov 13 12:06:59 CET 2024 - jslaby@suse.cz + +- irqchip/gic-v4: Don't allow a VMOVP on a dying VPE + (CVE-2024-50192 bsc#1233106). +- kABI: Don't allow a VMOVP on a dying VPE (kabi CVE-2024-50192 + bsc#1233106). +- irqchip/gic-v3-its: Avoid explicit cpumask allocation on stack + (git-fixes). +- commit 9bd7834 + +------------------------------------------------------------------- +Wed Nov 13 11:40:39 CET 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: add stack access precision test (bsc#1232823 + CVE-2023-52920). +- bpf: support non-r10 register spill/fill to/from stack in + precision tracking (bsc#1232823 CVE-2023-52920). +- Refresh patches.suse/bpf-Fix-accesses-to-uninit-stack-slots.patch +- Refresh patches.kabi/bpf-verifier-kABI-workarounds.patch +- commit 2dc84ae + +------------------------------------------------------------------- +Wed Nov 13 11:22:43 CET 2024 - sjaeckel@suse.de + +- kABI fix for - Bluetooth: L2CAP: Fix + div-by-zero in l2cap_le_flowctl_init() + (CVE-2024-36968 bsc#1226130). - Refresh + patches.suse/Bluetooth-Ignore-too-large-handle-values-in-BIG.patch. +- Refresh + patches.suse/Bluetooth-L2CAP-Fix-deadlock.patch. - Refresh + patches.suse/Bluetooth-btnxpuart-Enable-Power-Save-feature-on-sta.patch. +- Refresh + patches.suse/bluetooth-hci-disallow-setting-handle-bigger-than-HC.patch. +- Refresh + patches.suse/bluetooth-l2cap-sync-sock-recv-cb-and-release.patch. +- commit d93ac77 + +------------------------------------------------------------------- +Wed Nov 13 10:58:33 CET 2024 - tbogendoerfer@suse.de + +- macsec: Fix use-after-free while sending the offloading packet + (CVE-2024-50261 bsc#1233253). +- commit 493a21e + +------------------------------------------------------------------- +Wed Nov 13 10:11:01 CET 2024 - tiwai@suse.de + +- kABI workaround for ASoC SOF (bsc#1233305). +- commit d8b041e + +------------------------------------------------------------------- +Wed Nov 13 09:25:20 CET 2024 - tiwai@suse.de + +- ASoC: SOF: ipc4-topology: Add definition for generic switch/enum + control (bsc#1233305). +- Refresh + patches.suse/ASoC-SOF-ipc4-topology-Correct-data-structures-for-t-e238b68.patch. +- commit 6d4ee28 + +------------------------------------------------------------------- +Wed Nov 13 09:22:31 CET 2024 - tiwai@suse.de + +- ASoC: SOF: topology: Parse DAI type token for dspless mode + (bsc#1233305). +- ASoC: SOF: topology: dynamically allocate and store DAI + widget->private (bsc#1233305). +- ASoC: SOF: ipc4-topology: change chain_dma handling in + dai_config (bsc#1233305). +- ASoC: SOF: ipc4-topology: set config_length based on + device_count (bsc#1233305). +- ASoC: SOF: Rename amd_bt sof_dai_type (bsc#1233305). +- ASoC: SOF: Add i2s bt dai configuration support for AMD + platforms (bsc#1233305). +- ASoC: SOF: Refactor sof_i2s_tokens reading to update acpbt dai + (bsc#1233305). +- ASoC: SOF: IPC4: synchronize fw_config_params with fw + definitions (bsc#1233305). +- ASoC: SOF: Wire up buffer flags (bsc#1233305). +- ASoC: SOF: add alignment for topology header file struct + definition (bsc#1233305). +- ASoC: SOF: align topology header file with sof topology header + (bsc#1233305). +- ASoC: SOF: ipc4-topology: Add module ID print during module + set up (bsc#1233305). +- ASoC: SOF: ipc4: Add data struct for module notification + message from firmware (bsc#1233305). +- ASoC: SOF: ipc4-topology: Helper to find an swidget by + module/instance id (bsc#1233305). +- ASoC: SOF: Add support for configuring PDM interface from + topology (bsc#1233305). +- ASoC: SOF: IPC4: get pipeline priority from topology + (bsc#1233305). +- ASoC: SOF: ipc4-mtrace: move debug slot related definitions + to header.h (bsc#1233305). +- ASoC: SOF: ipc4-control: Add support for ALSA enum control + (bsc#1233305). +- ASoC: SOF: ipc4-control: Add support for ALSA switch control + (bsc#1233305). +- ASoC: SOF: ipc4-topology: export + sof_ipc4_copier_is_single_format (bsc#1233305). +- ASoC: SOF: ipc4: Add new message type: + SOF_IPC4_GLB_LOAD_LIBRARY_PREPARE (bsc#1233305). +- ASoC: SOF: ipc4-topology: Add deep buffer size to debug prints + (bsc#1233305). +- ASoC: SOF: Deprecate invalid enums in IPC3 (bsc#1233305). +- commit ccbfc43 + +------------------------------------------------------------------- +Wed Nov 13 08:39:39 CET 2024 - tiwai@suse.de + +- ima: fix buffer overrun in ima_eventdigest_init_common + (git-fixes). +- commit 200c852 + +------------------------------------------------------------------- +Tue Nov 12 19:04:54 CET 2024 - vkarasulli@suse.de + +- KVM: arm64: Fix shift-out-of-bounds bug (CVE-2024-50139 + bsc#1233062). +- commit dc4add6 + +------------------------------------------------------------------- +Tue Nov 12 18:22:43 CET 2024 - vkarasulli@suse.de + +- KVM: nSVM: Ignore nCR3[4:0] when loading PDPTEs from memory + (CVE-2024-50115 bsc#1232919). +- commit b8f7c4d + +------------------------------------------------------------------- +Tue Nov 12 17:48:16 CET 2024 - sjaeckel@suse.de + +- Bluetooth: L2CAP: Fix div-by-zero in l2cap_le_flowctl_init() + (CVE-2024-36968 bsc#1226130). +- Refresh + patches.suse/Bluetooth-Ignore-too-large-handle-values-in-BIG.patch. +- Refresh patches.suse/Bluetooth-L2CAP-Fix-deadlock.patch. +- Refresh + patches.suse/Bluetooth-btnxpuart-Enable-Power-Save-feature-on-sta.patch. +- Refresh + patches.suse/bluetooth-hci-disallow-setting-handle-bigger-than-HC.patch. +- Refresh + patches.suse/bluetooth-l2cap-sync-sock-recv-cb-and-release.patch. +- commit c95a285 + +------------------------------------------------------------------- +Tue Nov 12 17:47:56 CET 2024 - sjaeckel@suse.de + +- net: sched: fix use-after-free in taprio_change() + (CVE-2024-50127 bsc#1232907). +- commit 8d80c7f + +------------------------------------------------------------------- +Tue Nov 12 17:08:29 CET 2024 - rgoldwyn@suse.com + +- fsdax: dax_unshare_iter needs to copy entire blocks + (bsc#1233226, CVE-2024-50250). +- fsdax: remove zeroing code from dax_unshare_iter (bsc#1233226, + CVE-2024-50250). +- commit 94457ab + +------------------------------------------------------------------- +Tue Nov 12 12:43:07 CET 2024 - ailiop@suse.com + +- nilfs2: fix kernel bug due to missing clearing of checked flag + (bsc#1233206 CVE-2024-50230). +- commit ba9ac5c + +------------------------------------------------------------------- +Tue Nov 12 10:10:29 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check null pointers before used (bsc#1232371 CVE-2024-49921) +- commit 3bf6629 + +------------------------------------------------------------------- +Mon Nov 11 22:33:32 CET 2024 - tbogendoerfer@suse.de + +- net/ncsi: Disable the ncsi work before freeing the associated + structure (CVE-2024-49945 bsc#1232165). +- commit 75d875c + +------------------------------------------------------------------- +Mon Nov 11 22:09:30 CET 2024 - tbogendoerfer@suse.de + +- e1000e: Remove Meteor Lake SMBUS workarounds (git-fixes). +- i40e: fix race condition by adding filter's intermediate sync + state (git-fixes). +- commit f4e661d + +------------------------------------------------------------------- +Mon Nov 11 12:19:25 CET 2024 - jack@suse.cz + +- Revert "mm/writeback: fix possible divide-by-zero in + wb_dirty_limits(), again" (CVE-2024-42102 bsc#1233132). +- commit 696592c + +------------------------------------------------------------------- +Mon Nov 11 08:59:20 CET 2024 - tiwai@suse.de + +- i2c: designware: do not hold SCL low when I2C_DYNAMIC_TAR_UPDATE + is not set (git-fixes). +- USB: serial: io_edgeport: fix use after free in debug printk + (git-fixes). +- usb: typec: fix potential out of bounds in + ucsi_ccg_update_set_new_cam_cmd() (git-fixes). +- usb: musb: sunxi: Fix accessing an released usb phy (git-fixes). +- commit d16f490 + +------------------------------------------------------------------- +Sat Nov 9 15:13:51 CET 2024 - tiwai@suse.de + +- ASoC: stm: Prevent potential division by zero in + stm32_sai_get_clk_div() (stable-fixes). +- ASoC: stm: Prevent potential division by zero in + stm32_sai_mclk_round_rate() (stable-fixes). +- ASoC: amd: yc: Support dmic on another model of Lenovo Thinkpad + E14 Gen 6 (stable-fixes). +- ASoC: amd: yc: fix internal mic on Xiaomi Book Pro 14 2022 + (stable-fixes). +- ASoC: tas2781: Add new driver version for tas2563 & tas2781 + qfn chip (stable-fixes). +- commit 1f9992e + +------------------------------------------------------------------- +Sat Nov 9 15:11:22 CET 2024 - tiwai@suse.de + +- drm/amdgpu: Fix DPX valid mode check on GC 9.4.3 (git-fixes). +- ASoC: SOF: sof-client-probes-ipc4: Set param_size extension bits + (git-fixes). +- ASoC: stm32: spdifrx: fix dma channel release in + stm32_spdifrx_remove (git-fixes). +- ALSA: firewire-lib: fix return value on fail in + amdtp_tscm_init() (git-fixes). +- media: pulse8-cec: fix data timestamp at pulse8_setup() + (git-fixes). +- media: stb0899_algo: initialize cfr before using it (git-fixes). +- media: adv7604: prevent underflow condition when reporting + colorspace (git-fixes). +- media: cx24116: prevent overflows on SNR calculus (git-fixes). +- media: ar0521: don't overflow when checking PLL values + (git-fixes). +- media: s5p-jpeg: prevent buffer overflows (git-fixes). +- media: dvb_frontend: don't play tricks with underflow values + (git-fixes). +- media: dvbdev: prevent the risk of out of memory access + (git-fixes). +- media: v4l2-tpg: prevent the risk of a division by zero + (git-fixes). +- media: v4l2-ctrls-api: fix error handling for v4l2_g_ctrl() + (git-fixes). +- thunderbolt: Honor TMU requirements in the domain when setting + TMU mode (stable-fixes). +- wifi: iwlegacy: Clear stale interrupts before resuming device + (stable-fixes). +- USB: gadget: dummy-hcd: Fix "task hung" problem (git-fixes). +- usb: gadget: dummy_hcd: execute hrtimer callback in softirq + context (git-fixes). +- usb: gadget: dummy_hcd: Set transfer interval to 1 microframe + (stable-fixes). +- usb: gadget: dummy_hcd: Switch to hrtimer transfer scheduler + (stable-fixes). +- commit c5281d0 + +------------------------------------------------------------------- +Sat Nov 9 14:11:38 CET 2024 - ailiop@suse.com + +- nfs: avoid i_lock contention in nfs_clear_invalid_mapping + (git-fixes). +- commit e6016a1 + +------------------------------------------------------------------- +Sat Nov 9 14:10:27 CET 2024 - ailiop@suse.com + +- nfs: Fix KMSAN warning in decode_getfattr_attrs() (git-fixes). +- commit 9358249 + +------------------------------------------------------------------- +Sat Nov 9 14:03:29 CET 2024 - ailiop@suse.com + +- NFS: remove revoked delegation from server's delegation list + (git-fixes). +- commit 6feb8eb + +------------------------------------------------------------------- +Sat Nov 9 14:01:26 CET 2024 - ailiop@suse.com + +- SUNRPC: Remove BUG_ON call sites (git-fixes). +- commit 5969339 + +------------------------------------------------------------------- +Sat Nov 9 14:00:34 CET 2024 - ailiop@suse.com + +- nilfs2: fix potential deadlock with newly created symlinks + (git-fixes). +- commit 002996c + +------------------------------------------------------------------- +Fri Nov 8 18:47:54 CET 2024 - ggherdovich@suse.cz + +- cpufreq: amd-pstate: add check for cpufreq_cpu_get's return + value (CVE-2024-50009 bsc#1232318). +- commit 15f7e86 + +------------------------------------------------------------------- +Fri Nov 8 12:41:05 CET 2024 - jack@suse.cz + +- ext4: fix error message when rejecting the default hash + (bsc#1232264 CVE-2024-49968). +- commit 5d137c7 + +------------------------------------------------------------------- +Fri Nov 8 11:48:14 CET 2024 - ggherdovich@suse.cz + +- sched/deadline: Fix task_struct reference leak (CVE-2024-41023 + bsc#1228430). +- commit 3a83981 + +------------------------------------------------------------------- +Fri Nov 8 10:45:27 CET 2024 - tbogendoerfer@suse.de + +- be2net: fix potential memory leak in be_xmit() (CVE-2024-50167 + bsc#1233049). +- commit 376f8c7 + +------------------------------------------------------------------- +Fri Nov 8 09:33:54 CET 2024 - tiwai@suse.de + +- can: mcp251xfd: mcp251xfd_get_tef_len(): fix length calculation + (git-fixes). +- can: mcp251xfd: mcp251xfd_ring_alloc(): fix coalescing + configuration when switching CAN modes (git-fixes). +- can: c_can: fix {rx,tx}_errors statistics (git-fixes). +- pwm: imx-tpm: Use correct MODULO value for EPWM mode + (git-fixes). +- commit c5fa961 + +------------------------------------------------------------------- +Thu Nov 7 22:19:18 CET 2024 - dsterba@suse.com + +- blk-rq-qos: fix crash on rq_qos_wait vs. rq_qos_wake_function race (CVE-2024-50082 bsc#1232500) +- commit 6a67bac + +------------------------------------------------------------------- +Thu Nov 7 22:06:48 CET 2024 - dsterba@suse.com + +- btrfs: fix uninitialized pointer free on read_alloc_one_name() error (CVE-2024-50087 bsc#1232499) +- commit a3c097a + +------------------------------------------------------------------- +Thu Nov 7 22:05:16 CET 2024 - dsterba@suse.com + +- btrfs: fix uninitialized pointer free in add_inode_ref() (CVE-2024-50088 bsc#1232498) +- commit 75b1127 + +------------------------------------------------------------------- +Thu Nov 7 22:01:46 CET 2024 - dsterba@suse.com + +- net: microchip: vcap api: Fix memory leaks in vcap_api_encode_rule_test() (CVE-2024-50084 bsc#1232494) +- commit e53e21a + +------------------------------------------------------------------- +Thu Nov 7 21:41:14 CET 2024 - dsterba@suse.com + +- drm/amd/display: fix double free issue during amdgpu module unload (CVE-2024-49989 bsc#1232483) +- commit 6511376 + +------------------------------------------------------------------- +Thu Nov 7 21:10:20 CET 2024 - dsterba@suse.com + +- drm/amd/display: update DML2 policy EnhancedPrefetchScheduleAccelerationFinal DCN35 (CVE-2024-50004 bsc#1232396) +- commit d5739f8 + +------------------------------------------------------------------- +Thu Nov 7 20:56:46 CET 2024 - dsterba@suse.com + +- drm/amd/display: Fix system hang while resume with TBT monitor (CVE-2024-50003 bsc#1232385) +- commit 24ceb7a + +------------------------------------------------------------------- +Thu Nov 7 17:02:21 CET 2024 - tiwai@suse.de + +- thermal: intel: int340x: processor: Fix warning during module + unload (git-fixes). +- commit 2c3d870 + +------------------------------------------------------------------- +Thu Nov 7 15:40:50 CET 2024 - sjaeckel@suse.de + +- mptcp: fix double-free on socket dismantle (CVE-2024-26782 + bsc#1222590). +- mptcp: deal with large GSO size (CVE-2023-52778 bsc#1224948). +- commit 86ee052 + +------------------------------------------------------------------- +Thu Nov 7 14:25:16 CET 2024 - mgorman@suse.de + +- Merge branch 'SUSE-2024' (4ab5f0e9752a) into 'SUSE-2024-RT' +- No -rt specific changes this merge. +- commit 64ea9ce + +------------------------------------------------------------------- +Thu Nov 7 13:33:56 CET 2024 - jack@suse.cz + +- ext4: ext4_search_dir should return a proper error (bsc#1231920 + CVE-2024-47701). +- commit 7c02130 + +------------------------------------------------------------------- +Thu Nov 7 13:33:25 CET 2024 - jack@suse.cz + +- ext4: explicitly exit when ext4_find_inline_entry returns an + error (bsc#1231920 CVE-2024-47701). +- commit e600961 + +------------------------------------------------------------------- +Thu Nov 7 13:32:00 CET 2024 - jack@suse.cz + +- ext4: return error on ext4_find_inline_entry (bsc#1231920 + CVE-2024-47701). +- commit 39b6acc + +------------------------------------------------------------------- +Thu Nov 7 13:14:47 CET 2024 - tbogendoerfer@suse.de + +- igb: Disable threaded IRQ for igb_msix_other (git-fixes). +- commit b8afad1 + +------------------------------------------------------------------- +Thu Nov 7 13:04:09 CET 2024 - jack@suse.cz + +- fs/inode: Prevent dump_mapping() accessing invalid + dentry.d_name.name (bsc#1232387 CVE-2024-49934). +- commit cf2a806 + +------------------------------------------------------------------- +Thu Nov 7 13:03:53 CET 2024 - jack@suse.cz + +- ext4: filesystems without casefold feature cannot be mounted + with siphash (bsc#1232264 CVE-2024-49968). +- commit 1907014 + +------------------------------------------------------------------- +Thu Nov 7 13:03:22 CET 2024 - jack@suse.cz + +- ext4: drop ppath from ext4_ext_replay_update_ex() to avoid + double-free (bsc#1232096 CVE-2024-49983). +- commit 4a6ac53 + +------------------------------------------------------------------- +Thu Nov 7 13:03:07 CET 2024 - jack@suse.cz + +- vfs: fix race between evice_inodes() and find_inode()&iput() + (bsc#1231930 CVE-2024-47679). +- commit dcf9f6e + +------------------------------------------------------------------- +Thu Nov 7 13:02:52 CET 2024 - jack@suse.cz + +- ext4: avoid OOB when system.data xattr changes underneath the + filesystem (bsc#1231920 CVE-2024-47701). +- commit f292cb3 + +------------------------------------------------------------------- +Thu Nov 7 09:47:26 CET 2024 - tiwai@suse.de + +- security/keys: fix slab-out-of-bounds in key_task_permission + (git-fixes). +- platform/x86/amd/pmc: Detect when STB is not available + (git-fixes). +- HID: core: zero-initialize the report buffer (git-fixes). +- commit 277fa5f + +------------------------------------------------------------------- +Thu Nov 7 08:52:10 CET 2024 - tbogendoerfer@suse.de + +- mlxbf_gige: disable RX filters until RX path initialized + (git-fixes). +- commit f2b07e9 + +------------------------------------------------------------------- +Thu Nov 7 06:25:00 CET 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add tests for sdiv/smod overflow cases + (CVE-2024-49888 bsc#1232208). +- commit b193d4f + +------------------------------------------------------------------- +Thu Nov 7 05:51:18 CET 2024 - ddiss@suse.de + +- initramfs: avoid filename buffer overrun (bsc#1232436). +- commit 4918398 + +------------------------------------------------------------------- +Thu Nov 7 05:46:24 CET 2024 - shung-hsi.yu@suse.com + +- netfilter: bpf: must hold reference on net namespace + (bsc#1232894 CVE-2024-50130). +- commit 7d292ad + +------------------------------------------------------------------- +Thu Nov 7 04:32:52 CET 2024 - shung-hsi.yu@suse.com + +- bpftool: Fix undefined behavior in qsort(NULL, 0, + ...) (bsc#1232258 CVE-2024-49987). +- commit 80f8e64 + +------------------------------------------------------------------- +Wed Nov 6 17:59:46 CET 2024 - mhocko@suse.com + +- Update + patches.suse/mm-mmap-no-need-to-call-khugepaged_enter_vma-for-sta.patch + (jsc#PED-11442). +- commit d087a3b + +------------------------------------------------------------------- +Wed Nov 6 14:42:55 CET 2024 - jlee@suse.com + +- fbdev: efifb: Register sysfs groups through driver core + (bsc#1232224 CVE-2024-49925). +- commit 4fd0365 + +------------------------------------------------------------------- +Wed Nov 6 13:23:45 CET 2024 - msuchanek@suse.de + +- aes-gcm-p10: Use the correct bit to test for P10 (bsc#1232704). +- commit f0dea0e + +------------------------------------------------------------------- +Tue Nov 5 22:26:42 CET 2024 - krisman@suse.de + +- ublk: don't allow user copy for unprivileged device + (CVE-2024-50080 bsc#1232502). +- commit 267c92f + +------------------------------------------------------------------- +Tue Nov 5 22:24:27 CET 2024 - krisman@suse.de + +- blk-mq: setup queue ->tag_set before initializing hctx + (CVE-2024-50081 bsc#1232501). +- commit 87d4a82 + +------------------------------------------------------------------- +Tue Nov 5 17:41:14 CET 2024 - oneukum@suse.com + +- media: core: v4l2-ioctl: check if ioctl is known to avoid NULL + name (git-fixes). +- commit c862b93 + +------------------------------------------------------------------- +Tue Nov 5 15:39:08 CET 2024 - oneukum@suse.com + +- media: videobuf2: fix typo: vb2_dbuf -> vb2_qbuf (git-fixes). +- commit 92209c4 + +------------------------------------------------------------------- +Tue Nov 5 14:47:17 CET 2024 - oneukum@suse.com + +- media: bttv: use audio defaults for winfast2000 (git-fixes). +- commit 6e1da70 + +------------------------------------------------------------------- +Tue Nov 5 14:39:14 CET 2024 - mfranc@suse.cz + +- scsi: elx: libefc: Fix potential use after free in + efc_nport_vport_del() (CVE-2024-49852 bsc#1232819). +- commit 51395e6 + +------------------------------------------------------------------- +Tue Nov 5 13:57:57 CET 2024 - jwiesner@suse.de + +- Update config files. + c37e85c135ce ("clocksource: Loosen clocksource watchdog constraints") + introduced a new default for the time skew measured by the clocksource + watchdog. The value was raised from 100 to 125 microseconds. Reflect this + change in the kernel config. This is an x86_64 option only. +- commit 14c1b2d + +------------------------------------------------------------------- +Tue Nov 5 13:09:52 CET 2024 - tiwai@suse.de + +- ALSA: usb-audio: Add quirk for HP 320 FHD Webcam (bsc#1232768). +- commit 7c39137 + +------------------------------------------------------------------- +Tue Nov 5 09:35:40 CET 2024 - shung-hsi.yu@suse.com + +- kABI: bpf: struct bpf_func_state kABI workaround (CVE-2024-47703 + bsc#1231946). +- commit fd45833 + +------------------------------------------------------------------- +Tue Nov 5 08:24:15 CET 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Workaround strict bpf_lsm return value check + (CVE-2024-47703 bsc#1231946). +- selftests/bpf: Add verifier tests for bpf lsm (CVE-2024-47703 + bsc#1231946). +- selftests/bpf: Add return value checks for failed tests + (CVE-2024-47703 bsc#1231946). +- bpf: Fix compare error in function retval_range_within + (CVE-2024-47703 bsc#1231946). +- bpf, lsm: Add check for BPF LSM return value (CVE-2024-47703 + bsc#1231946). +- Refresh patches.suse/bpf-Fail-verification-for-sign-extension-of-packet-d.patch +- Refresh patches.kabi/bpf-struct-bpf_insn_access_aux-workaround.patch +- selftests/bpf: fix timer/test_bad_ret subtest on + test_progs-cpuv4 flavor (CVE-2024-47703 bsc#1231946). +- commit a0c7d4f + +------------------------------------------------------------------- +Tue Nov 5 08:16:32 CET 2024 - tiwai@suse.de + +- rpmsg: glink: Handle rejected intent request better (git-fixes). +- firmware: arm_scmi: Fix slab-use-after-free in + scmi_bus_notifier() (git-fixes). +- commit 01fe6bf + +------------------------------------------------------------------- +Mon Nov 4 18:03:58 CET 2024 - dsterba@suse.com + +- Update references for patches.suse/tracing-timerlat-Fix-a-race-during-cpuhp-processing.patch (CVE-2024-49866 bsc#1232259 git-fixes) +- commit d9311d0 + +------------------------------------------------------------------- +Mon Nov 4 16:27:12 CET 2024 - tiwai@suse.de + +- Move out-of-tree patch into a proper section +- commit c581359 + +------------------------------------------------------------------- +Mon Nov 4 16:26:16 CET 2024 - tiwai@suse.de + +- Revert "ALSA: hda/conexant: Mute speakers at suspend / shutdown" + (bsc#1228269). +- commit 13ce240 + +------------------------------------------------------------------- +Mon Nov 4 16:18:22 CET 2024 - dwagner@suse.de + +- scsi: lpfc: Update lpfc version to 14.4.0.5 (bsc#1232757). +- scsi: lpfc: Support loopback tests with VMID enabled + (bsc#1232757). +- scsi: lpfc: Revise TRACE_EVENT log flag severities from KERN_ERR + to KERN_WARNING (bsc#1232757). +- scsi: lpfc: Ensure DA_ID handling completion before deleting + an NPIV instance (bsc#1232757). +- scsi: lpfc: Fix kref imbalance on fabric ndlps from dev_loss_tmo + handler (bsc#1232757). +- scsi: lpfc: Restrict support for 32 byte CDBs to specific HBAs + (bsc#1232757 bsc#1228119). +- scsi: lpfc: Update phba link state conditional before sending + CMF_SYNC_WQE (bsc#1232757). +- scsi: lpfc: Add ELS_RSP cmd to the list of WQEs to flush in + lpfc_els_flush_cmd() (bsc#1232757). +- scsi: lpfc: Remove trailing space after \n newline + (bsc#1232757). +- commit 3cf27b4 + +------------------------------------------------------------------- +Mon Nov 4 16:14:15 CET 2024 - vkarasulli@suse.de + +- ext4: fix timer use-after-free on failed mount (CVE-2024-49960 + bsc#1232395). +- commit bd6997d + +------------------------------------------------------------------- +Mon Nov 4 16:04:43 CET 2024 - mfranc@suse.cz + +- net/xen-netback: prevent UAF in xenvif_flush_hash() + (CVE-2024-49936 bsc#1232424). +- commit ae05dab + +------------------------------------------------------------------- +Mon Nov 4 15:52:22 CET 2024 - vkarasulli@suse.de + +- tipc: guard against string buffer overrun (CVE-2024-49995 + bsc#1232432). +- commit ada263e + +------------------------------------------------------------------- +Mon Nov 4 14:53:58 CET 2024 - tiwai@suse.de + +- drm/amdkfd: amdkfd_free_gtt_mem clear the correct pointer + (CVE-2024-49991 bsc#1232282). +- commit 1b15839 + +------------------------------------------------------------------- +Mon Nov 4 13:19:32 CET 2024 - dwagner@suse.de + +- nvme: re-fix error-handling for io_uring nvme-passthrough + (git-fixes). +- nvmet-auth: assign dh_key to NULL after kfree_sensitive + (git-fixes). +- nvme-pci: fix race condition between reset and + nvme_dev_disable() (git-fixes). +- nvme: null terminate nvme_tls_attrs (git-fixes). +- nvme-pci: set doorbell config before unquiescing (git-fixes). +- commit d7598b1 + +------------------------------------------------------------------- +Mon Nov 4 10:14:41 CET 2024 - vbabka@suse.cz + +- mm: split critical region in remap_file_pages() and invoke + LSMs in between (CVE-2024-47745 bsc#1232135 git-fix). +- commit 8228ecb + +------------------------------------------------------------------- +Mon Nov 4 09:25:15 CET 2024 - tiwai@suse.de + +- Add alt-commit to AMDGPU patch +- commit 9e50980 + +------------------------------------------------------------------- +Mon Nov 4 09:24:06 CET 2024 - tiwai@suse.de + +- phy: tegra: xusb: Add error pointer check in xusb.c (git-fixes). +- phy: freescale: imx8m-pcie: Do CMN_RST just before PHY PLL + lock check (git-fixes). +- phy: ti: phy-j721e-wiz: fix usxgmii configuration (git-fixes). +- phy: qcom: qmp-combo: move driver data initialisation earlier + (git-fixes). +- phy: qcom: qmp-usb: fix NULL-deref on runtime suspend + (git-fixes). +- dmaengine: ti: k3-udma: Set EOP for all TRs in cyclic BCDMA + transfer (git-fixes). +- dmaengine: sh: rz-dmac: handle configs where one address is zero + (git-fixes). +- Revert "driver core: Fix uevent_show() vs driver detach race" + (git-fixes). +- usb: phy: Fix API devm_usb_put_phy() can not release the phy + (git-fixes). +- usb: typec: fix unreleased fwnode_handle in + typec_port_register_altmodes() (git-fixes). +- xhci: Fix Link TRB DMA in command ring stopped completion event + (git-fixes). +- xhci: Use pm_runtime_get to prevent RPM on unsupported systems + (git-fixes). +- usbip: tools: Fix detach_port() invalid port error path + (git-fixes). +- iio: adc: ad7124: fix division by zero in + ad7124_set_channel_odr() (git-fixes). +- staging: iio: frequency: ad9832: fix division by zero in + ad9832_calc_freqreg() (git-fixes). +- iio: light: veml6030: fix microlux value calculation + (git-fixes). +- iio: gts-helper: Fix memory leaks for the error path of + iio_gts_build_avail_scale_table() (git-fixes). +- iio: gts-helper: Fix memory leaks in + iio_gts_build_avail_scale_table() (git-fixes). +- mei: use kvmalloc for read buffer (git-fixes). +- Input: edt-ft5x06 - fix regmap leak when probe fails + (git-fixes). +- modpost: fix input MODULE_DEVICE_TABLE() built for 64-bit on + 32-bit host (git-fixes). +- modpost: fix acpi MODULE_DEVICE_TABLE built with mismatched + endianness (git-fixes). +- sumversion: Fix a memory leak in get_src_version() (git-fixes). +- genirq/msi: Fix off-by-one error in msi_domain_alloc() + (git-fixes). +- commit df7fb9d + +------------------------------------------------------------------- +Mon Nov 4 09:04:48 CET 2024 - jslaby@suse.cz + +- Refresh + patches.suse/PCI-Fix-pci_enable_acs-support-for-the-ACS-quirks.patch. + Update upstream status. +- commit f283868 + +------------------------------------------------------------------- +Mon Nov 4 07:17:46 CET 2024 - neilb@suse.de + +- nfsd: cancel nfsd_shrinker_work using sync mode in + nfs4_state_shutdown_net (git-fixes). +- commit ed2b339 + +------------------------------------------------------------------- +Mon Nov 4 06:45:48 CET 2024 - neilb@suse.de + +- NFSv3: only use NFS timeout for MOUNT when protocols are + compatible (bsc#1231016). +- commit ddbeb4f + +------------------------------------------------------------------- +Mon Nov 4 05:29:33 CET 2024 - jlee@suse.com + +- Update + patches.suse/0002-x86-mm-ident_map-Use-gbpages-only-where-full-GB-page.patch + (bsc#1220382 CVE-2024-50017 bsc#1232312). +- Update patches.suse/ACPI-PAD-fix-crash-in-exit_round_robin.patch + (stable-fixes CVE-2024-49935 bsc#1232370). +- Update + patches.suse/ACPI-battery-Fix-possible-crash-when-unregistering-a.patch + (git-fixes CVE-2024-49955 bsc#1232154). +- Update + patches.suse/ACPI-sysfs-validate-return-type-of-_STR-method.patch + (git-fixes CVE-2024-49860 bsc#1231861). +- Update + patches.suse/ACPICA-check-null-return-of-ACPI_ALLOCATE_ZEROED-in-.patch + (stable-fixes CVE-2024-49962 bsc#1232314). +- Update + patches.suse/ALSA-asihpi-Fix-potential-OOB-array-access.patch + (stable-fixes CVE-2024-50007 bsc#1232394). +- Update + patches.suse/Bluetooth-Call-iso_exit-on-module-unload.patch + (git-fixes CVE-2024-50078 bsc#1232503). +- Update + patches.suse/Bluetooth-ISO-Fix-multiple-init-when-debugfs-is-disa.patch + (git-fixes CVE-2024-50077 bsc#1232504). +- Update + patches.suse/Bluetooth-RFCOMM-FIX-possible-deadlock-in-rfcomm_sk_.patch + (git-fixes CVE-2024-50044 bsc#1231904). +- Update + patches.suse/IB-core-Fix-ib_cache_setup_one-error-flow-cleanup.patch + (git-fixes CVE-2024-47693 bsc#1232013). +- Update + patches.suse/IB-core-Implement-a-limit-on-UMAD-receive-List.patch + (bsc#1228743 CVE-2024-42145 bsc#1223384). +- Update + patches.suse/Input-adp5589-keys-fix-NULL-pointer-dereference.patch + (git-fixes CVE-2024-49871 bsc#1232287). +- Update + patches.suse/KEYS-prevent-NULL-pointer-dereference-in-find_asymme.patch + (git-fixes CVE-2024-47743 bsc#1232129). +- Update + patches.suse/KVM-Use-dedicated-mutex-to-protect-kvm_usage_count-t.patch + (git-fixes CVE-2024-47744 bsc#1232132). +- Update + patches.suse/PCI-keystone-Fix-if-statement-expression-in-ks_pcie_.patch + (git-fixes CVE-2024-47756 bsc#1232185). +- Update + patches.suse/PCI-kirin-Fix-buffer-overflow-in-kirin_pcie_parse_po.patch + (git-fixes CVE-2024-47751 bsc#1232127). +- Update + patches.suse/RDMA-cxgb4-Added-NULL-check-for-lookup_atid.patch + (git-fixes CVE-2024-47749 bsc#1232180). +- Update + patches.suse/RDMA-hns-Fix-Use-After-Free-of-rsv_qp-on-HIP08.patch + (git-fixes CVE-2024-47750 bsc#1232182). +- Update + patches.suse/RDMA-hns-Fix-spin_unlock_irqrestore-called-with-IRQs.patch + (git-fixes CVE-2024-47735 bsc#1232111). +- Update + patches.suse/RDMA-iwcm-Fix-WARNING-at_kernel-workqueue.c-check_fl.patch + (git-fixes CVE-2024-47696 bsc#1231864). +- Update + patches.suse/RDMA-rtrs-clt-Reset-cid-to-con_num-1-to-stay-in-boun.patch + (git-fixes CVE-2024-47695 bsc#1231931). +- Update + patches.suse/RDMA-rtrs-srv-Avoid-null-pointer-deref-during-path-e.patch + (git-fixes CVE-2024-50062 bsc#1232232). +- Update + patches.suse/aoe-fix-the-potential-use-after-free-problem-in-more.patch + (bsc#1218562 CVE-2023-6270 CVE-2024-49982 bsc#1232097). +- Update + patches.suse/bpf-Fail-verification-for-sign-extension-of-packet-d.patch + (git-fixes CVE-2024-47702 bsc#1231924). +- Update + patches.suse/bpf-Fix-helper-writes-to-read-only-maps.patch + (git-fixes CVE-2024-49861 bsc#1232254). +- Update + patches.suse/bpf-Fix-use-after-free-in-bpf_uprobe_multi_link_attach.patch + (git-fixes CVE-2024-47675 bsc#1231926). +- Update + patches.suse/bpf-Zero-former-ARG_PTR_TO_-LONG-INT-args-in-case-of.patch + (git-fixes CVE-2024-47728 bsc#1232076). +- Update + patches.suse/bpf-correctly-handle-malformed-BPF_CORE_TYPE_ID_LOCA.patch + (git-fixes CVE-2024-49850 bsc#1232189). +- Update + patches.suse/cachefiles-fix-dentry-leak-in-cachefiles_open_file.patch + (bsc#1231183 CVE-2024-49870 bsc#1232279). +- Update + patches.suse/can-bcm-Clear-bo-bcm_proc_read-after-remove_proc_ent.patch + (git-fixes CVE-2024-47709 bsc#1232048). +- Update + patches.suse/crypto-iaa-Fix-potential-use-after-free-bug.patch + (git-fixes CVE-2024-47732 bsc#1232109). +- Update + patches.suse/cxl-pci-Fix-disabling-memory-if-DVSEC-CXL-Range-does.patch + (git-fixes CVE-2024-26761 bsc#1230375). +- Update + patches.suse/driver-core-Fix-a-potential-null-ptr-deref-in-module.patch + (git-fixes CVE-2024-47688 bsc#1232009). +- Update + patches.suse/driver-core-bus-Fix-double-free-in-driver-API-bus_re.patch + (stable-fixes CVE-2024-50055 bsc#1232329). +- Update + patches.suse/drivers-media-dvb-frontends-rtl2830-fix-an-out-of-bo.patch + (git-fixes CVE-2024-47697 bsc#1231858). +- Update + patches.suse/drivers-media-dvb-frontends-rtl2832-fix-an-out-of-bo.patch + (git-fixes CVE-2024-47698 bsc#1231859). +- Update + patches.suse/drm-amd-display-Add-null-check-for-set_output_gamma-.patch + (git-fixes CVE-2024-47720 bsc#1232043). +- Update + patches.suse/drm-amd-display-Check-null-pointer-before-dereferenc.patch + (stable-fixes CVE-2024-50049 bsc#1232309). +- Update + patches.suse/drm-amd-display-fixed-integer-types-and-null-check-l.patch + (git-fixes CVE-2024-26767 bsc#1230339). +- Update + patches.suse/drm-omapdrm-Add-missing-check-for-alloc_ordered_work.patch + (git-fixes CVE-2024-49879 bsc#1232349). +- Update + patches.suse/drm-v3d-Stop-the-active-perfmon-before-being-destroy.patch + (git-fixes CVE-2024-50031 bsc#1231947). +- Update + patches.suse/efistub-tpm-Use-ACPI-reclaim-memory-for-event-log-to.patch + (stable-fixes CVE-2024-49858 bsc#1232251). +- Update + patches.suse/ep93xx-clock-Fix-off-by-one-in-ep93xx_div_recalc_rat.patch + (git-fixes CVE-2024-47686 bsc#1232000). +- Update + patches.suse/exfat-fix-memory-leak-in-exfat_load_bitmap.patch + (git-fixes CVE-2024-50013 bsc#1232080). +- Update + patches.suse/fbcon-Fix-a-NULL-pointer-dereference-issue-in-fbcon_.patch + (stable-fixes CVE-2024-50048 bsc#1232310). +- Update + patches.suse/firmware-arm_scmi-Fix-double-free-in-OPTEE-transport.patch + (git-fixes CVE-2024-49853 bsc#1232192). +- Update patches.suse/firmware_loader-Block-path-traversal.patch + (git-fixes CVE-2024-47742 bsc#1232126). +- Update + patches.suse/i2c-stm32f7-Do-not-prepare-unprepare-clock-during-ru.patch + (git-fixes CVE-2024-49985 bsc#1232094). +- Update + patches.suse/i3c-master-cdns-Fix-use-after-free-vulnerability-in-.patch + (stable-fixes CVE-2024-50061 bsc#1232263). +- Update + patches.suse/i3c-master-svc-Fix-use-after-free-vulnerability-in-s.patch + (git-fixes CVE-2024-49874 bsc#1232295). +- Update + patches.suse/i40e-Fix-XDP-program-unloading-while-removing-the-dr.patch + (git-fixes CVE-2024-41047 bsc#1228537). +- Update + patches.suse/idpf-fix-UAFs-when-destroying-the-queues.patch + (git-fixes CVE-2024-44932 bsc#1229808). +- Update + patches.suse/idpf-fix-memory-leaks-and-crashes-while-performing-a.patch + (git-fixes CVE-2024-44964 bsc#1230220). +- Update + patches.suse/iommufd-Protect-against-overflow-of-ALIGN-during-iov.patch + (git-fixes CVE-2024-47719 bsc#1231865). +- Update + patches.suse/jffs2-prevent-xattr-node-from-overflowing-the-eraseblock.patch + (git-fixes CVE-2024-38599 bsc#1226848 bsc#1223384). +- Update patches.suse/jfs-Fix-uaf-in-dbFreeBits.patch (git-fixes + CVE-2024-49903 bsc#1232362). +- Update + patches.suse/jfs-Fix-uninit-value-access-of-new_ea-in-ea_buffer.patch + (git-fixes CVE-2024-49900 bsc#1232359). +- Update + patches.suse/jfs-check-if-leafidx-greater-than-num-leaves-per-dmap-tree.patch + (git-fixes CVE-2024-49902 bsc#1232378). +- Update + patches.suse/jfs-fix-out-of-bounds-in-dbNextAG-and-diAlloc.patch + (git-fixes CVE-2024-47723 bsc#1232050). +- Update + patches.suse/mailbox-bcm2835-Fix-timeout-during-suspend-mode.patch + (git-fixes CVE-2024-49963 bsc#1232147). +- Update + patches.suse/md-Don-t-ignore-suspended-array-in-md_check_recovery-1baa.patch + (bsc#1219596 CVE-2024-26758 bsc#1230341). +- Update patches.suse/media-edia-dvbdev-fix-a-use-after-free.patch + (git-fixes CVE-2024-27043 bsc#1223824 bsc#1218562). +- Update + patches.suse/media-i2c-ar0521-Use-cansleep-version-of-gpiod_set_v.patch + (git-fixes CVE-2024-49961 bsc#1232148). +- Update + patches.suse/media-venus-fix-use-after-free-bug-in-venus_remove-d.patch + (git-fixes CVE-2024-49981 bsc#1232098). +- Update + patches.suse/nbd-fix-race-between-timeout-and-normal-completion.patch + (bsc#1230918 CVE-2024-49855 bsc#1232195). +- Update + patches.suse/net-phy-Remove-LED-entry-from-LEDs-list-on-unregiste.patch + (git-fixes CVE-2024-50023 bsc#1231955). +- Update + patches.suse/net-test-for-not-too-small-csum_start-in-virtio_net_.patch + (git-fixes CVE-2024-49947 bsc#1232162). +- Update + patches.suse/nfsd-call-cache_put-if-xdr_reserve_space-returns-NULL.patch + (git-fixes CVE-2024-47737 bsc#1232056). +- Update + patches.suse/nfsd-map-the-EBADMSG-to-nfserr_io-to-avoid-warning.patch + (git-fixes CVE-2024-49875 bsc#1232333). +- Update + patches.suse/nilfs2-fix-potential-null-ptr-deref-in-nilfs_btree_insert.patch + (git-fixes CVE-2024-47699 bsc#1231916). +- Update + patches.suse/nilfs2-fix-potential-oob-read-in-nilfs_btree_check_delete.patch + (git-fixes CVE-2024-47757 bsc#1232187). +- Update + patches.suse/nouveau-dmem-handle-kcalloc-allocation-failure.patch + (git-fixes CVE-2024-26943 bsc#1230527). +- Update + patches.suse/ocfs2-cancel-dqi_sync_work-before-freeing-oinfo.patch + (git-fixes CVE-2024-49966 bsc#1232141). +- Update + patches.suse/ocfs2-fix-null-ptr-deref-when-journal-load-failed.patch + (git-fixes CVE-2024-49957 bsc#1232152). +- Update + patches.suse/ocfs2-fix-possible-null-ptr-deref-in-ocfs2_set_buffer_uptodate.patch + (git-fixes CVE-2024-49877 bsc#1232339). +- Update + patches.suse/ocfs2-remove-unreasonable-unlock-in-ocfs2_read_blocks.patch + (git-fixes CVE-2024-49965 bsc#1232142). +- Update + patches.suse/parport-Proper-fix-for-array-out-of-bounds-access.patch + (git-fixes CVE-2024-50074 bsc#1232507). +- Update + patches.suse/pinctrl-apple-check-devm_kasprintf-returned-value.patch + (git-fixes CVE-2024-50069 bsc#1232511). +- Update + patches.suse/platform-x86-ISST-Fix-the-KASAN-report-slab-out-of-b.patch + (git-fixes CVE-2024-49886 bsc#1232196). +- Update + patches.suse/powercap-intel_rapl-Fix-off-by-one-in-get_rpi.patch + (git-fixes CVE-2024-49862 bsc#1231871). +- Update + patches.suse/resource-fix-region_intersects-vs-add_memory_driver_.patch + (git-fixes CVE-2024-49878 bsc#1232340). +- Update + patches.suse/scsi-fnic-Move-flush_work-initialization-out-of-if-b.patch + (bsc#1230055 CVE-2024-50025 bsc#1231953). +- Update + patches.suse/scsi-lpfc-validate-hdwq-pointers-before-dereferencing-in.patch + (bsc#1229429 jsc#PED-9899 CVE-2024-49891 bsc#1232218). +- Update + patches.suse/scsi-sd-Fix-off-by-one-error-in-sd_read_block_charac.patch + (bsc#1223848 CVE-2024-47682 bsc#1231856). +- Update + patches.suse/serial-protect-uart_port_dtr_rts-in-uart_shutdown-to.patch + (stable-fixes CVE-2024-50058 bsc#1232285). +- Update + patches.suse/tpm-Clean-up-TPM-space-after-command-failure.patch + (git-fixes CVE-2024-49851 bsc#1232134). +- Update + patches.suse/tty-n_gsm-Fix-use-after-free-in-gsm_cleanup_mux.patch + (stable-fixes CVE-2024-50073 bsc#1232520). +- Update + patches.suse/vhost-scsi-null-ptr-dereference-in-vhost_scsi_get_re.patch + (git-fixes CVE-2024-49863 bsc#1232255). +- Update + patches.suse/vhost_vdpa-assign-irq-bypass-producer-token-correctl.patch + (git-fixes CVE-2024-47748 bsc#1232174). +- Update patches.suse/vmxnet3-Fix-missing-reserved-tailroom.patch + (bsc#1226498 CVE-2024-27026 bsc#1223700). +- Update + patches.suse/vt-prevent-kernel-infoleak-in-con_font_get.patch + (git-fixes CVE-2024-50076 bsc#1232505). +- Update + patches.suse/wifi-ath11k-fix-array-out-of-bound-access-in-SoC-sta.patch + (stable-fixes CVE-2024-49930 bsc#1232260). +- Update + patches.suse/wifi-ath12k-fix-array-out-of-bound-access-in-SoC-sta.patch + (stable-fixes CVE-2024-49931 bsc#1232275). +- Update + patches.suse/wifi-ath9k_htc-Use-__skb_set_length-for-resetting-ur.patch + (stable-fixes CVE-2024-49938 bsc#1232552). +- Update + patches.suse/wifi-cfg80211-Set-correct-chandef-when-starting-CAC.patch + (stable-fixes CVE-2024-49937 bsc#1232427). +- Update + patches.suse/wifi-iwlwifi-mvm-avoid-NULL-pointer-dereference.patch + (stable-fixes CVE-2024-49929 bsc#1232253). +- Update + patches.suse/wifi-mac80211-don-t-use-rate-mask-for-offchannel-TX-.patch + (git-fixes CVE-2024-47738 bsc#1232114). +- Update + patches.suse/wifi-mac80211-use-two-phase-skb-reclamation-in-ieee8.patch + (git-fixes CVE-2024-47713 bsc#1232016). +- Update + patches.suse/wifi-mt76-mt7915-fix-oops-on-non-dbdc-mt7986.patch + (git-fixes CVE-2024-47715 bsc#1231860). +- Update + patches.suse/wifi-mt76-mt7996-fix-NULL-pointer-dereference-in-mt7.patch + (git-fixes CVE-2024-47681 bsc#1231855). +- Update + patches.suse/wifi-mt76-mt7996-use-hweight16-to-get-correct-tx-ant.patch + (git-fixes CVE-2024-47714 bsc#1232018). +- Update + patches.suse/wifi-mwifiex-Fix-memcpy-field-spanning-write-warning.patch + (stable-fixes CVE-2024-50008 bsc#1232317). +- Update + patches.suse/wifi-rtw88-always-wait-for-both-firmware-loading-att.patch + (git-fixes CVE-2024-47718 bsc#1232015). +- Update + patches.suse/wifi-rtw89-avoid-reading-out-of-bounds-when-loading-.patch + (stable-fixes CVE-2024-49928 bsc#1232250). +- Update + patches.suse/wifi-rtw89-avoid-to-add-interface-to-list-twice-when.patch + (stable-fixes CVE-2024-49939 bsc#1232381). +- Update + patches.suse/wifi-wilc1000-fix-potential-RCU-dereference-issue-in.patch + (git-fixes CVE-2024-47712 bsc#1232017). +- Update + patches.suse/xhci-tegra-fix-checked-USB2-port-number.patch + (git-fixes CVE-2024-50075 bsc#1232506). +- commit a270265 + +------------------------------------------------------------------- +Mon Nov 4 05:28:50 CET 2024 - jlee@suse.com + +- Update + patches.suse/i3c-mipi-i3c-hci-Fix-out-of-bounds-access-in-hci_dma.patch + (git-fixes CVE-2023-52766 bsc#1230620). +- Update + patches.suse/media-pci-cx23885-check-cx23885_vdev_init-return.patch + (stable-fixes CVE-2023-52918 bsc#1232047). +- Update + patches.suse/nfc-nci-fix-possible-NULL-pointer-dereference-in-sen.patch + (git-fixes CVE-2023-52919 bsc#1231988). +- Update + patches.suse/ntb-intel-Fix-the-NULL-vs-IS_ERR-bug-for-debugfs_cre.patch + (git-fixes CVE-2023-52917 bsc#1231849). +- Update + patches.suse/tcp-do-not-accept-ACK-of-bytes-we-never-sent.patch + (CVE-2023-52881 bsc#1225611 bsc#1223384). +- Update patches.suse/wifi-ath11k-fix-htt-pktlog-locking.patch + (git-fixes CVE-2023-52800 bsc#1230600). +- commit 9859953 + +------------------------------------------------------------------- +Mon Nov 4 05:11:42 CET 2024 - neilb@suse.de + +- NFSD: Force all NFSv4.2 COPY requests to be synchronous + (CVE-2024-49974 bsc#1232383). +- commit 16045fc + +------------------------------------------------------------------- +Sun Nov 3 21:24:28 CET 2024 - petr.pavlu@suse.com + +- fgraph: Change the name of cpuhp state to "fgraph:online" + (git-fixes). +- commit 59421b3 + +------------------------------------------------------------------- +Sun Nov 3 21:22:36 CET 2024 - petr.pavlu@suse.com + +- fgraph: Fix missing unlock in register_ftrace_graph() + (git-fixes). +- commit 60d91ed + +------------------------------------------------------------------- +Sun Nov 3 19:59:18 CET 2024 - ailiop@suse.com + +- fs/9p: drop inodes immediately on non-.L too (git-fixes). +- commit 5fa5f19 + +------------------------------------------------------------------- +Sun Nov 3 19:58:53 CET 2024 - ailiop@suse.com + +- 9p: explicitly deny setlease attempts (git-fixes). +- commit 474852b + +------------------------------------------------------------------- +Sun Nov 3 19:58:26 CET 2024 - ailiop@suse.com + +- fs/9p: fix the cache always being enabled on files with qid + flags (git-fixes). +- commit 362152c + +------------------------------------------------------------------- +Sun Nov 3 19:52:25 CET 2024 - ailiop@suse.com + +- zonefs: Improve error handling (git-fixes). +- commit cb63c4c + +------------------------------------------------------------------- +Sun Nov 3 19:51:33 CET 2024 - ailiop@suse.com + +- debugfs: fix automount d_fsdata usage (git-fixes). +- commit 5f78a06 + +------------------------------------------------------------------- +Sun Nov 3 19:50:40 CET 2024 - ailiop@suse.com + +- splice: fsnotify_access(in), fsnotify_modify(out) on success + in tee (git-fixes). +- commit d518e6d + +------------------------------------------------------------------- +Sun Nov 3 19:50:06 CET 2024 - ailiop@suse.com + +- splice: fsnotify_access(fd)/fsnotify_modify(fd) in vmsplice + (git-fixes). +- commit d630f18 + +------------------------------------------------------------------- +Sun Nov 3 19:49:32 CET 2024 - ailiop@suse.com + +- splice: always fsnotify_access(in), fsnotify_modify(out) + on success (git-fixes). +- commit e7f8947 + +------------------------------------------------------------------- +Sun Nov 3 19:48:48 CET 2024 - ailiop@suse.com + +- keys: Fix overwrite of key expiration on instantiation + (git-fixes). +- commit 323181d + +------------------------------------------------------------------- +Sun Nov 3 19:47:56 CET 2024 - ailiop@suse.com + +- audit: don't WARN_ON_ONCE(!current->mm) in audit_exe_compare() + (git-fixes). +- commit e2db423 + +------------------------------------------------------------------- +Sun Nov 3 19:32:51 CET 2024 - ailiop@suse.com + +- ocfs2: fix uninit-value in ocfs2_get_block() (git-fixes). +- commit 426a4b1 + +------------------------------------------------------------------- +Sun Nov 3 19:31:08 CET 2024 - ailiop@suse.com + +- keys, dns: Allow key types (eg. DNS) to be reclaimed immediately + on expiry (git-fixes). +- commit ce262a7 + +------------------------------------------------------------------- +Sun Nov 3 19:29:09 CET 2024 - ailiop@suse.com + +- Revert "KEYS: encrypted: Add check for strsep" (git-fixes). +- commit 7aa308c + +------------------------------------------------------------------- +Sun Nov 3 19:26:16 CET 2024 - ailiop@suse.com + +- ubifs: add check for crypto_shash_tfm_digest (git-fixes). +- commit ea9ba15 + +------------------------------------------------------------------- +Sun Nov 3 19:25:49 CET 2024 - ailiop@suse.com + +- ubifs: dbg_orphan_check: Fix missed key type checking + (git-fixes). +- commit 465ad1a + +------------------------------------------------------------------- +Sun Nov 3 19:24:02 CET 2024 - ailiop@suse.com + +- ubifs: Fix adding orphan entry twice for the same inode + (git-fixes). +- commit 93096ab + +------------------------------------------------------------------- +Sun Nov 3 19:21:34 CET 2024 - ailiop@suse.com + +- Revert "ubifs: ubifs_symlink: Fix memleak of inode->i_link in + error path" (git-fixes). +- commit 0a7c17d + +------------------------------------------------------------------- +Sun Nov 3 19:19:23 CET 2024 - ailiop@suse.com + +- ubifs: Fix unattached xattr inode if powercut happens after + deleting (git-fixes). +- commit 6c90268 + +------------------------------------------------------------------- +Sun Nov 3 19:08:05 CET 2024 - ailiop@suse.com + +- audit: don't take task_lock() in audit_exe_compare() code path + (git-fixes). +- Refresh patches.suse/vfs-add-super_operations-get_inode_dev. +- commit d4e23ef + +------------------------------------------------------------------- +Sun Nov 3 16:02:04 CET 2024 - petr.pavlu@suse.com + +- uprobes: fix kernel info leak via "[uprobes]" vma (bsc#1231114 + CVE-2024-46828). +- uprobes: turn xol_area->pages into xol_area->page (bsc#1231114). +- uprobes: introduce the global struct vm_special_mapping + xol_mapping (bsc#1231114). +- commit 4f9954c + +------------------------------------------------------------------- +Sun Nov 3 14:15:34 CET 2024 - petr.pavlu@suse.com + +- sched: sch_cake: fix bulk flow accounting logic for host + fairness (bsc#1231114 CVE-2024-46828). +- commit ad42d5f + +------------------------------------------------------------------- +Sun Nov 3 13:42:31 CET 2024 - ailiop@suse.com + +- xfs: fix finding a last resort AG in xfs_filestream_pick_ag + (git-fixes). +- commit a10af4c + +------------------------------------------------------------------- +Sat Nov 2 14:47:25 CET 2024 - petr.pavlu@suse.com + +- static_call: Handle module init failure correctly in + static_call_del_module() (bsc#1232083 CVE-2024-50002). +- commit af953b9 + +------------------------------------------------------------------- +Sat Nov 2 10:39:31 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Refactor and simplify Samsung Galaxy Book + init (stable-fixes). +- Refresh + patches.suse/ALSA-hda-realtek-Add-quirk-for-Huawei-MateBook-13-KL.patch. +- commit 98d4026 + +------------------------------------------------------------------- +Sat Nov 2 10:39:04 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Enable mic on Vaio VJFH52 (stable-fixes). +- commit 7075c22 + +------------------------------------------------------------------- +Sat Nov 2 10:38:26 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: tas2781: Fix ROG ALLY X audio (stable-fixes). +- commit e26a542 + +------------------------------------------------------------------- +Sat Nov 2 10:34:42 CET 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Fix headset mic on TUXEDO Stellaris 16 Gen6 + mb1 (stable-fixes). +- ALSA: hda/realtek: Fix headset mic on TUXEDO Gemini 17 Gen3 + (stable-fixes). +- ALSA: usb-audio: Add quirks for Dell WD19 dock (stable-fixes). +- ASoC: dapm: fix bounds checker error in dapm_widget_list_create + (git-fixes). +- ASoC: Intel: sst: Fix used of uninitialized ctx to log an error + (git-fixes). +- ASoC: Intel: sst: Support LPE0F28 ACPI HID (stable-fixes). +- ASoC: Intel: bytcr_rt5640: Add DMI quirk for Vexia Edu Atla + 10 tablet (stable-fixes). +- ASoC: Intel: bytcr_rt5640: Add support for non ACPI instantiated + codec (stable-fixes). +- ASoC: codecs: rt5640: Always disable IRQs from + rt5640_cancel_work() (stable-fixes). +- ALSA: hda/realtek: Add subwoofer quirk for Infinix ZERO BOOK 13 + (stable-fixes). +- ALSA: hda/realtek: Limit internal Mic boost on Dell platform + (stable-fixes). +- commit 0d350ca + +------------------------------------------------------------------- +Sat Nov 2 10:32:30 CET 2024 - tiwai@suse.de + +- drm/mediatek: Fix get efuse issue for MT8188 DPTX (git-fixes). +- drm/amd/pm: Vangogh: Fix kernel memory out of bounds write + (git-fixes). +- ACPI: CPPC: Make rmw_lock a raw_spin_lock (git-fixes). +- firmware: arm_sdei: Fix the input parameter of + cpuhp_remove_state() (git-fixes). +- kasan: Fix Software Tag-Based KASAN with GCC (git-fixes). +- commit 2a07e04 + +------------------------------------------------------------------- +Sat Nov 2 10:28:12 CET 2024 - tiwai@suse.de + +- Bluetooth: hci: fix null-ptr-deref in hci_read_supported_codecs + (git-fixes). +- wifi: cfg80211: clear wdev->cqm_config pointer on free + (git-fixes). +- Revert "wifi: iwlwifi: remove retry loops in start" (git-fixes). +- wifi: iwlwifi: mvm: don't add default link in fw restart flow + (git-fixes). +- wifi: iwlwifi: mvm: Fix response handling in + iwl_mvm_send_recovery_cmd() (git-fixes). +- wifi: iwlwifi: mvm: don't leak a link on AP removal (git-fixes). +- wifi: ath11k: Fix invalid ring usage in full monitor mode + (git-fixes). +- wifi: ath10k: Fix memory leak in management tx (git-fixes). +- wifi: brcm80211: BRCM_TRACING should depend on TRACING + (git-fixes). +- wifi: mac80211: skip non-uploaded keys in ieee80211_iter_keys + (git-fixes). +- wifi: mac80211: do not pass a stopped vif to the driver in + .get_txpower (git-fixes). +- mac80211: MAC80211_MESSAGE_TRACING should depend on TRACING + (git-fixes). +- wifi: iwlegacy: Fix "field-spanning write" warning in + il_enqueue_hcmd() (git-fixes). +- ASoC: cs42l51: Fix some error handling paths in cs42l51_probe() + (git-fixes). +- platform/x86: dell-wmi: Ignore suspend notifications + (stable-fixes). +- ACPI: button: Add DMI quirk for Samsung Galaxy Book2 to fix + initial lid detection issue (stable-fixes). +- ACPI: resource: Add LG 16T90SP to irq1_level_low_skip_override[] + (stable-fixes). +- drm/amd/display: Disable PSR-SU on Parade 08-01 TCON too + (stable-fixes). +- drm/amd: Guard against bad data for ATIF ACPI method + (git-fixes). +- usb: gadget: f_uac2: fix return value for UAC2_ATTRIBUTE_STRING + store (git-fixes). +- accel/qaic: Fix the for loop used to walk SG table (git-fixes). +- drm/amd/amdgpu: Fix double unlock in amdgpu_mes_add_ring + (git-fixes). +- drm/msm/dpu: don't always program merge_3d block (git-fixes). +- drm/msm: Allocate memory for disp snapshot with kvzalloc() + (git-fixes). +- drm/msm: Avoid NULL dereference in msm_disp_state_print_regs() + (git-fixes). +- drm/msm/dsi: fix 32-bit signed integer extension in pclk_rate + calculation (git-fixes). +- drm/msm/dsi: improve/fix dsc pclk calculation (git-fixes). +- drm/msm/dpu: check for overflow in _dpu_crtc_setup_lm_bounds() + (git-fixes). +- drm/msm/dpu: move CRTC resource assignment to + dpu_encoder_virt_atomic_check (git-fixes). +- drm/msm/dpu: make sure phys resources are properly initialized + (git-fixes). +- platform/x86: dell-sysman: add support for alienware products + (stable-fixes). +- drm/vboxvideo: Replace fake VLA at end of + vbva_mouse_pointer_shape with real VLA (stable-fixes). +- usb: gadget: f_uac2: fix non-newline-terminated function name + (stable-fixes). +- usb: gadget: f_uac2: Replace snprintf() with the safer + scnprintf() variant (stable-fixes). +- commit 09f40f7 + +------------------------------------------------------------------- +Fri Nov 1 20:01:29 CET 2024 - dsterba@suse.com + +- drm/amd/display: Check null pointers before using them (CVE-2024-49922 bsc#1232374) +- commit 342005c + +------------------------------------------------------------------- +Fri Nov 1 19:47:32 CET 2024 - dsterba@suse.com + +- drm/amd/display: Handle null 'stream_status' in 'planes_changed_for_existing_stream' (CVE-2024-49912 bsc#1232367) +- commit 2394db2 + +------------------------------------------------------------------- +Fri Nov 1 19:39:05 CET 2024 - dsterba@suse.com + +- drm/amd/display: Add NULL check for function pointer in dcn20_set_output_transfer_func (CVE-2024-49911 bsc#1232366) +- commit 6c83ea7 + +------------------------------------------------------------------- +Fri Nov 1 19:22:24 CET 2024 - dsterba@suse.com + +- drm/amd/display: Pass non-null to dcn20_validate_apply_pipe_split_flags (CVE-2024-49923 bsc#1232361) +- commit 3759560 + +------------------------------------------------------------------- +Fri Nov 1 19:15:38 CET 2024 - dsterba@suse.com + +- drm/amd/display: Fix index out of bounds in DCN30 degamma hardware format translation (CVE-2024-49895 bsc#1232352) +- commit f36c162 + +------------------------------------------------------------------- +Fri Nov 1 19:09:39 CET 2024 - dsterba@suse.com + +- drm/amd/display: Initialize denominators' default to 1 (CVE-2024-49899 bsc#1232358) +- commit 282fa51 + +------------------------------------------------------------------- +Fri Nov 1 19:00:40 CET 2024 - dsterba@suse.com + +- Update references for patches.suse/0001-drm-amd-display-Add-null-check-for-afb-in-amdgpu_dm_.patch (bsc#1232335 CVE-2024-49908 bsc#1232357 CVE-2024-49905) +- commit fa3a85a + +------------------------------------------------------------------- +Fri Nov 1 18:52:17 CET 2024 - dsterba@suse.com + +- drm/amd/display: Check phantom_stream before it is used (CVE-2024-49897 bsc#1232355) +- commit d3fcaed + +------------------------------------------------------------------- +Fri Nov 1 18:43:28 CET 2024 - dsterba@suse.com + +- drm/amd/display: Fix index out of bounds in degamma hardware format translation (CVE-2024-49894 bsc#1232354) +- commit db76ccb + +------------------------------------------------------------------- +Fri Nov 1 18:36:48 CET 2024 - dsterba@suse.com + +- drm/amd/display: Add NULL check for function pointer in dcn32_set_output_transfer_func (CVE-2024-49909 bsc#1232337) +- commit 11facc9 + +------------------------------------------------------------------- +Fri Nov 1 18:30:46 CET 2024 - dsterba@suse.com + +- drm/amd/display: Add null check for top_pipe_to_program in commit_planes_for_stream (CVE-2024-49913 bsc#1232307) +- commit 60f7853 + +------------------------------------------------------------------- +Fri Nov 1 18:20:07 CET 2024 - dsterba@suse.com + +- drm/msm/adreno: Assign msm_gpu->pdev earlier to avoid nullptrs (CVE-2024-49901 bsc#1232305) +- commit 69be7bb + +------------------------------------------------------------------- +Fri Nov 1 14:53:56 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/ATL: Implement DF 4.5 NP2 denormalization (jsc#PED-10559). +- commit 52d40f4 + +------------------------------------------------------------------- +Fri Nov 1 14:53:36 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/ATL: Validate address map when information is gathered (jsc#PED-10559). +- commit 94e412f + +------------------------------------------------------------------- +Fri Nov 1 14:53:11 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/ATL: Expand helpers for adding and removing base and hole (jsc#PED-10559). +- commit 2b18348 + +------------------------------------------------------------------- +Fri Nov 1 14:52:54 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/ATL: Read DRAM hole base early (jsc#PED-10559). +- commit e1cf5b5 + +------------------------------------------------------------------- +Fri Nov 1 14:48:59 CET 2024 - nik.borisov@suse.com + +- RAS/AMD/ATL: Add amd_atl pr_fmt() prefix (jsc#PED-10559). +- commit 17f78f9 + +------------------------------------------------------------------- +Fri Nov 1 13:59:05 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check null pointer before try to access it (bsc#1232332 CVE-2024-49906) +- commit f2b2892 + +------------------------------------------------------------------- +Fri Nov 1 13:57:34 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Add null check for pipe_ctx->plane_state in (bsc#1232369 CVE-2024-49914) +- commit c236474 + +------------------------------------------------------------------- +Fri Nov 1 10:58:06 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Add null check for 'afb' in amdgpu_dm_update_cursor (bsc#1232335 CVE-2024-49908) +- commit 64a943f + +------------------------------------------------------------------- +Fri Nov 1 10:47:38 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check null pointers before using dc->clk_mgr (bsc#1232334 CVE-2024-49907) +- commit 366c63a + +------------------------------------------------------------------- +Fri Nov 1 08:27:17 CET 2024 - nmorey@suse.com + +- RDMA/bnxt_re: synchronize the qp-handle table array (git-fixes) +- commit 866dbc5 + +------------------------------------------------------------------- +Fri Nov 1 08:26:48 CET 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix the usage of control path spin locks (git-fixes) +- commit c834f25 + +------------------------------------------------------------------- +Fri Nov 1 08:26:08 CET 2024 - nmorey@suse.com + +- RDMA/mlx5: Round max_rd_atomic/max_dest_rd_atomic up instead of down (git-fixes) +- commit 3c270f2 + +------------------------------------------------------------------- +Fri Nov 1 08:25:29 CET 2024 - nmorey@suse.com + +- RDMA/cxgb4: Dump vendor specific QP details (git-fixes) +- commit 587d3b0 + +------------------------------------------------------------------- +Thu Oct 31 23:06:07 CET 2024 - dsterba@suse.com + +- ext4: fix access to uninitialised lock in fc replay path (CVE-2024-50014 bsc#1232446) +- commit 1b2ba45 + +------------------------------------------------------------------- +Thu Oct 31 22:51:38 CET 2024 - dsterba@suse.com + +- ext4: fix i_data_sem unlock order in ext4_ind_migrate() (CVE-2024-50006 bsc#1232442) +- commit de0e62b + +------------------------------------------------------------------- +Thu Oct 31 21:27:59 CET 2024 - krisman@suse.de + +- scsi: ufs: core: Remove SCSI host only if added (CVE-2024-46843 + bsc#1231100). +- commit b455bee + +------------------------------------------------------------------- +Thu Oct 31 17:50:59 CET 2024 - krisman@suse.de + +- io_uring: check if we need to reschedule during overflow flush + (bsc#1232417 CVE-2024-50060). +- commit 695bc5f + +------------------------------------------------------------------- +Thu Oct 31 17:45:00 CET 2024 - vkarasulli@suse.de + +- iommu/vt-d: Fix potential lockup if qi_submit_sync called + with 0 count (bsc#1232316 CVE-2024-49993). +- commit f1e5ce7 + +------------------------------------------------------------------- +Thu Oct 31 17:09:02 CET 2024 - dsterba@suse.com + +- ext4: dax: fix overflowing extents beyond inode size when partially writing (CVE-2024-50015 bsc#1232079) +- commit 9768b7c + +------------------------------------------------------------------- +Thu Oct 31 16:58:37 CET 2024 - dsterba@suse.com + +- jbd2: stop waiting for space when jbd2_cleanup_journal_tail() returns error (CVE-2024-49959 bsc#1232149) +- commit 8307a3a + +------------------------------------------------------------------- +Thu Oct 31 14:30:50 CET 2024 - dsterba@suse.com + +- of: Add cleanup.h based auto release via __free(device_node) markings (bsc#1232386) +- commit 794e5ba + +------------------------------------------------------------------- +Thu Oct 31 12:23:15 CET 2024 - svarbanov@suse.de + +- net: stmmac: dwmac-tegra: Fix link bring-up sequence (git-fixes) +- commit 277d940 + +------------------------------------------------------------------- +Wed Oct 30 23:17:12 CET 2024 - dsterba@suse.com + +- cpufreq: Avoid a bad reference count on CPU node (CVE-2024-50012 bsc#1232386) +- commit 283b9a0 + +------------------------------------------------------------------- +Wed Oct 30 23:04:36 CET 2024 - dsterba@suse.com + +- ext4: update orig_path in ext4_find_extent() (CVE-2024-49881 bsc#1232201) +- commit 2ed2a04 + +------------------------------------------------------------------- +Wed Oct 30 23:04:06 CET 2024 - dsterba@suse.com + +- ext4: fix slab-use-after-free in ext4_split_extent_at() (bsc#1232201) +- commit c78e4be + +------------------------------------------------------------------- +Wed Oct 30 20:54:24 CET 2024 - krisman@suse.de + +- btrfs: don't BUG_ON on ENOMEM from btrfs_lookup_extent_info() + in walk_down_proc() (CVE-2024-46841 bsc#1231094). +- commit fb4a0c7 + +------------------------------------------------------------------- +Wed Oct 30 18:48:02 CET 2024 - dsterba@suse.com + +- ext4: aovid use-after-free in ext4_ext_insert_extent() (CVE-2024-49883 bsc#1232199) +- commit 2db9cb5 + +------------------------------------------------------------------- +Wed Oct 30 18:38:04 CET 2024 - dsterba@suse.com + +- blk_iocost: fix more out of bound shifts (CVE-2024-49933 bsc#1232368) +- commit df53397 + +------------------------------------------------------------------- +Wed Oct 30 16:48:50 CET 2024 - vkarasulli@suse.de + +- drm/amd/display: Fix index out of bounds in DCN30 color + transformation (CVE-2024-49969 bsc#1232519). +- commit 7d6c264 + +------------------------------------------------------------------- +Wed Oct 30 15:58:31 CET 2024 - petr.pavlu@suse.com + +- static_call: Replace pointless WARN_ON() in + static_call_module_notify() (bsc#1232155 CVE-2024-49954). +- commit 03b6c35 + +------------------------------------------------------------------- +Wed Oct 30 15:54:21 CET 2024 - petr.pavlu@suse.com + +- module: abort module loading when sysfs setup suffer errors + (git-fixes). +- Refresh patches.suse/add-suse-supported-flag.patch. +- commit db27509 + +------------------------------------------------------------------- +Wed Oct 30 15:36:07 CET 2024 - petr.pavlu@suse.com + +- bpf,perf: Fix perf_event_detach_bpf_prog error handling + (git-fixes). +- commit 5b6b2d4 + +------------------------------------------------------------------- +Wed Oct 30 15:33:23 CET 2024 - petr.pavlu@suse.com + +- tracing: Consider the NULL character when validating the event + length (git-fixes). +- commit 6b1d97f + +------------------------------------------------------------------- +Wed Oct 30 15:31:57 CET 2024 - petr.pavlu@suse.com + +- uprobe: avoid out-of-bounds memory access of fetching args + (git-fixes). +- uprobes: encapsulate preparation of uprobe args buffer + (git-fixes). +- commit ead6cfe + +------------------------------------------------------------------- +Wed Oct 30 14:51:36 CET 2024 - mfranc@suse.cz + +- s390/pci: Handle PCI error codes other than 0x3a (git-fixes + bsc#1232629). +- commit e4948be + +------------------------------------------------------------------- +Wed Oct 30 14:49:22 CET 2024 - mfranc@suse.cz + +- s390/sclp: Deactivate sclp after all its users (git-fixes + bsc#1232628). +- commit 9e889e7 + +------------------------------------------------------------------- +Wed Oct 30 14:47:56 CET 2024 - mfranc@suse.cz + +- s390/sclp_vt220: Convert newlines to CRLF instead of LFCR + (git-fixes bsc#1232627). +- commit 5725ee0 + +------------------------------------------------------------------- +Wed Oct 30 14:45:56 CET 2024 - mfranc@suse.cz + +- KVM: s390: Change virtual to physical address access in diag + 0x258 handler (git-fixes bsc#1232626). +- commit 2b0b1e9 + +------------------------------------------------------------------- +Wed Oct 30 14:44:28 CET 2024 - mfranc@suse.cz + +- KVM: s390: gaccess: Check if guest address is in memslot + (git-fixes bsc#1232623). +- commit b583687 + +------------------------------------------------------------------- +Wed Oct 30 14:22:09 CET 2024 - petr.pavlu@suse.com + +- fgraph: Use CPU hotplug mechanism to initialize idle shadow + stacks (git-fixes). +- commit 4265ef9 + +------------------------------------------------------------------- +Wed Oct 30 14:08:07 CET 2024 - petr.pavlu@suse.com + +- mm: khugepaged: fix the arguments order in + khugepaged_collapse_file trace point (git-fixes). +- commit 43546b6 + +------------------------------------------------------------------- +Wed Oct 30 13:50:31 CET 2024 - petr.pavlu@suse.com + +- tracing/hwlat: Fix a race during cpuhp processing (git-fixes). +- tracing/timerlat: Fix a race during cpuhp processing + (git-fixes). +- tracing/timerlat: Drop interface_lock in stop_kthread() + (git-fixes). +- tracing/timerlat: Fix duplicated kthread creation due to CPU + online/offline (git-fixes). +- tracing/osnoise: Fix build when timerlat is not enabled + (git-fixes). +- tracing/timerlat: Add interface_lock around clearing of kthread + in stop_kthread() (git-fixes). +- tracing/timerlat: Only clear timer if a kthread exists + (git-fixes). +- tracing/osnoise: Use a cpumask to know what threads are kthreads + (git-fixes). +- tracing/timerlat: Move hrtimer_init to timerlat_fd open() + (git-fixes). +- tracing/timerlat: Add user-space interface (git-fixes). +- tracing/osnoise: Skip running osnoise if all instances are off + (git-fixes). +- tracing/osnoise: Switch from PF_NO_SETAFFINITY to + migrate_disable (git-fixes). +- commit 8482ad0 + +------------------------------------------------------------------- +Wed Oct 30 12:23:56 CET 2024 - ailiop@suse.com + +- ocfs2: pass u64 to ocfs2_truncate_inline maybe overflow + (git-fixes). +- commit 24fea60 + +------------------------------------------------------------------- +Wed Oct 30 11:58:24 CET 2024 - nik.borisov@suse.com + +- Refresh patches.suse/x86-fix-user-address-masking-non-canonical-speculation-iss.patch. (bsc#1232529) + Give check_range a unique label. Otherwise the macro's 1b label + conflicts with __get_user_1's 1 label and this causes the exception fixup + entry, installed at the end of the file to match the wrong thing. + Instead of matching __get_user_1's 1b label it will match check_range's 1b + label when this macro is expanded for the last time in __get_user_8. + This fixes intermittent random crashes when copying data from userspace. +- commit 3a35fd0 + +------------------------------------------------------------------- +Wed Oct 30 11:24:28 CET 2024 - petr.pavlu@suse.com + +- jump_label: Fix static_key_slow_dec() yet again (git-fixes). +- commit ab363f5 + +------------------------------------------------------------------- +Wed Oct 30 09:20:29 CET 2024 - petr.pavlu@suse.com + +- SUNRPC: Fixup gss_status tracepoint error output (git-fixes). +- commit 84cc417 + +------------------------------------------------------------------- +Tue Oct 29 21:07:53 CET 2024 - dsterba@suse.com + +- drm/amd/display: Deallocate DML memory if allocation fails (CVE-2024-49972 bsc#1232315) +- commit dd5ab13 + +------------------------------------------------------------------- +Tue Oct 29 20:59:47 CET 2024 - dsterba@suse.com + +- drm/amd/display: Check stream before comparing them (CVE-2024-49896 bsc#1232221) +- commit 930546b + +------------------------------------------------------------------- +Tue Oct 29 20:55:31 CET 2024 - dsterba@suse.com + +- drm/amd/pm: ensure the fw_info is not null before using it (CVE-2024-49890 bsc#1232217) +- commit a0e8b9f + +------------------------------------------------------------------- +Tue Oct 29 20:41:30 CET 2024 - dsterba@suse.com + +- drm/amd/display: Initialize get_bytes_per_element's default to 1 (CVE-2024-49892 bsc#1232220) +- commit e1539d0 + +------------------------------------------------------------------- +Tue Oct 29 18:41:23 CET 2024 - dsterba@suse.com + +- drivers/perf: Fix ali_drw_pmu driver interrupt status clearing (CVE-2024-47731 bsc#1232117) +- commit 774dc33 + +------------------------------------------------------------------- +Tue Oct 29 18:39:12 CET 2024 - dsterba@suse.com + +- padata: use integer wrap around to prevent deadlock on seq_nr overflow (CVE-2024-47739 bsc#1232124) +- commit 7e58560 + +------------------------------------------------------------------- +Tue Oct 29 18:33:16 CET 2024 - dsterba@suse.com + +- media: mediatek: vcodec: Fix H264 stateless decoder smatch warning (CVE-2024-47752 bsc#1232130) +- commit 086cd43 + +------------------------------------------------------------------- +Tue Oct 29 18:31:07 CET 2024 - dsterba@suse.com + +- media: mediatek: vcodec: Fix H264 multi stateless decoder smatch warning (CVE-2024-47754 bsc#1232131) +- commit dacb1c6 + +------------------------------------------------------------------- +Tue Oct 29 18:01:27 CET 2024 - dsterba@suse.com + +- media: mediatek: vcodec: Fix VP8 stateless decoder smatch warning (CVE-2024-47753 bsc#1231868) +- commit fed66a9 + +------------------------------------------------------------------- +Tue Oct 29 17:34:26 CET 2024 - vkarasulli@suse.de + +- iommu/vt-d: Always reserve a domain ID for identity setup + (git-fixes). +- commit f7ecad0 + +------------------------------------------------------------------- +Tue Oct 29 16:38:55 CET 2024 - dsterba@suse.com + +- btrfs: clean up our handling of refs == 0 in snapshot delete (CVE-2024-46840 bsc#1231105) +- commit 788d396 + +------------------------------------------------------------------- +Tue Oct 29 16:33:10 CET 2024 - shung-hsi.yu@suse.com + +- kABI: bpf: struct bpf_map kABI workaround (CVE-2024-50063 + bsc#1232435). +- selftests/bpf: Add test for lsm tail call (CVE-2024-50063 + bsc#1232435). +- bpf: Prevent tail call between progs attached to different hooks + (CVE-2024-50063 bsc#1232435). +- commit 666246a + +------------------------------------------------------------------- +Tue Oct 29 16:03:50 CET 2024 - vkarasulli@suse.de + +- iommu/vt-d: Fix incorrect pci_for_each_dma_alias() for non-PCI + devices (git-fixes). +- commit 28951a9 + +------------------------------------------------------------------- +Tue Oct 29 14:55:33 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check null pointers before multiple uses (bsc#1232313 CVE-2024-49920) +- commit 5447aa1 + +------------------------------------------------------------------- +Tue Oct 29 10:57:15 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check link_res->hpo_dp_link_enc before using it (bsc#1231944) +- commit bf57b96 + +------------------------------------------------------------------- +Tue Oct 29 10:52:49 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check null-initialized variables (bsc#1232222 CVE-2024-49898) +- commit a00bfda + +------------------------------------------------------------------- +Tue Oct 29 09:40:48 CET 2024 - tzimmermann@suse.com + +- drm/amd/display: Check link_res->hpo_dp_link_enc before using it (bsc#1231944 CVE-2024-47704) +- commit 931c899 + +------------------------------------------------------------------- +Tue Oct 29 08:12:37 CET 2024 - tiwai@suse.de + +- spi: spi-fsl-dspi: Fix crash when not using GPIO chip select + (git-fixes). +- spi: mtk-snfi: fix kerneldoc for mtk_snand_is_page_ops() + (git-fixes). +- spi: atmel-quadspi: Fix wrong register value written to MR + (git-fixes). +- commit fd0b348 + +------------------------------------------------------------------- +Mon Oct 28 23:06:31 CET 2024 - krisman@suse.de + +- crypto: stm32/cryp - call finalize with bh disabled + (CVE-2024-47658 bsc#1231436). +- commit 2854148 + +------------------------------------------------------------------- +Mon Oct 28 16:17:52 CET 2024 - henrique.carvalho@suse.com + +- smb: client: fix UAF in async decryption (bsc#1232418 + CVE-2024-50047). +- commit 381863e + +------------------------------------------------------------------- +Mon Oct 28 15:09:34 CET 2024 - tbogendoerfer@suse.de + +- e1000e: fix force smbus during suspend flow (git-fixes). +- commit f9cbf12 + +------------------------------------------------------------------- +Mon Oct 28 15:02:07 CET 2024 - fdmanana@suse.com + +- btrfs: wait for fixup workers before stopping cleaner kthread + during umount (bsc#1232262 CVE-2024-49867). +- btrfs: fix race setting file private on concurrent lseek using + same fd (bsc#1231869 CVE-2024-47741). +- commit af36a3e + +------------------------------------------------------------------- +Mon Oct 28 14:33:54 CET 2024 - tbogendoerfer@suse.de + +- ppp: fix ppp_async_encode() illegal access (CVE-2024-50035 + bsc#1232392). +- net: avoid potential underflow in qdisc_pkt_len_init() with UFO + (CVE-2024-49949 bsc#1232160). +- commit f4bcea0 + +------------------------------------------------------------------- +Mon Oct 28 14:17:25 CET 2024 - tbogendoerfer@suse.de + +- ice: map XDP queues to vectors in ice_vsi_map_rings_to_vectors() + (git-fixes). +- Refresh + patches.suse/ice-move-netif_queue_set_napi-to-rtnl-protected-sect.patch. +- commit 7b44c3c + +------------------------------------------------------------------- +Mon Oct 28 14:14:48 CET 2024 - tbogendoerfer@suse.de + +- net/mlx5: Check capability for fw_reset (git-fixes). +- Refresh + patches.suse/net-mlx5-Fix-MTMP-register-capability-offset-in-MCAM.patch. +- commit 480249d + +------------------------------------------------------------------- +Mon Oct 28 14:08:05 CET 2024 - tbogendoerfer@suse.de + +- net/mlx5e: Don't call cleanup on profile rollback failure + (git-fixes). +- net/mlx5: Unregister notifier on eswitch init failure + (git-fixes). +- net/mlx5: Fix command bitmask initialization (git-fixes). +- net/mlx5: Check for invalid vector index on EQ creation + (git-fixes). +- e1000e: change I219 (19) devices to ADP (git-fixes). +- ice: Flush FDB entries before reset (git-fixes). +- ice: Fix netif_is_ice() in Safe Mode (git-fixes). +- ice: fix VLAN replay after reset (git-fixes). +- ice: disallow DPLL_PIN_STATE_SELECTABLE for dpll output pins + (git-fixes). +- ice: clear port vlan config during reset (git-fixes). +- ice: set correct dst VSI in only LAN filters (git-fixes). +- net/mlx5: Added cond_resched() to crdump collection (git-fixes). +- vduse: avoid using __GFP_NOFAIL (git-fixes). +- igb: Always call igb_xdp_ring_update_tail() under Tx lock + (git-fixes). +- ice: fix VSI lists confusion when adding VLANs (git-fixes). +- ice: fix accounting for filters shared by multiple VSIs + (git-fixes). +- ice: Fix lldp packets dropping after changing the number of + channels (git-fixes). +- net/mlx5: Add missing masks and QoS bit masks for scheduling + elements (git-fixes). +- net/mlx5: Explicitly set scheduling element and TSAR type + (git-fixes). +- net/mlx5e: Add missing link mode to ptys2ext_ethtool_map + (git-fixes). +- net/mlx5e: Add missing link modes to ptys2ethtool_map + (git-fixes). +- net/mlx5: Update the list of the PCI supported devices + (git-fixes). +- ice: do not bring the VSI up, if it was down before the XDP + setup (git-fixes). +- igc: Unlock on error in igc_io_resume() (git-fixes). +- igb: Fix not clearing TimeSync interrupts for 82580 (git-fixes). +- ice: fix truesize operations for PAGE_SIZE >= 8192 (git-fixes). +- ice: fix ICE_LAST_OFFSET formula (git-fixes). +- ice: fix page reuse when PAGE_SIZE is over 8k (git-fixes). +- cxgb4: add forgotten u64 ivlan cast before shift (git-fixes). +- igc: Fix qbv tx latency by setting gtxoffset (git-fixes). +- igc: Fix reset adapter logics when tx mode change (git-fixes). +- igc: Fix qbv_config_change_errors logics (git-fixes). +- igc: Fix packet still tx after gate close by reducing i226 + MAC retry buffer (git-fixes). +- net/mlx5e: Correctly report errors for ethtool rx flows + (git-fixes). +- ice: Fix reset handler (git-fixes). +- idpf: fix UAFs when destroying the queues (git-fixes). +- idpf: fix memleak in vport interrupt configuration (git-fixes). +- idpf: fix memory leaks and crashes while performing a soft reset + (git-fixes). +- igc: Fix double reset adapter triggered from a single taprio + cmd (git-fixes). +- net/mlx5e: Add a check for the return value from + mlx5_port_set_eth_ptys (git-fixes). +- net/mlx5e: Require mlx5 tc classifier action support for IPsec + prio capability (git-fixes). +- net/mlx5: Lag, don't use the hardcoded value of the first port + (git-fixes). +- net/mlx5: Fix error handling in irq_pool_request_irq + (git-fixes). +- ice: add missing WRITE_ONCE when clearing ice_rx_ring::xdp_prog + (git-fixes). +- ice: replace synchronize_rcu with synchronize_net (git-fixes). +- ice: don't busy wait for Rx queue disable in ice_qp_dis() + (git-fixes). +- ice: respect netif readiness in AF_XDP ZC related ndo's + (git-fixes). +- gve: Fix an edge case for TSO skb validity check (git-fixes). +- ice: Fix recipe read procedure (git-fixes). +- gve: Fix XDP TX completion handling when counters overflow + (git-fixes). +- RDMA/mlx5: Use sq timestamp as QP timestamp when RoCE is + disabled (git-fixes). +- idpf: avoid bloating &idpf_q_vector with big %NR_CPUS + (git-fixes). +- i40e: Fix XDP program unloading while removing the driver + (git-fixes). +- ice: use proper macro for testing bit (git-fixes). +- ice: Reject pin requests with unsupported flags (git-fixes). +- e1000e: Fix S0ix residency on corporate systems (git-fixes). +- net/mlx5e: Add mqprio_rl cleanup and free in + mlx5e_priv_cleanup() (git-fixes). +- ice: Rebuild TC queues on VSI queue reconfiguration (git-fixes). +- bnxt_en: Restore PTP tx_avail count in case of skb_pad() error + (git-fixes). +- ice: Fix VSI list rule with ICE_SW_LKUP_LAST type (git-fixes). +- ice: implement AQ download pkg retry (git-fixes). +- ice: fix 200G link speed message log (git-fixes). +- ice: avoid IRQ collision to fix init failure on ACPI S3 resume + (git-fixes). +- bnxt_en: Cap the size of HWRM_PORT_PHY_QCFG forwarded response + (git-fixes). +- gve: ignore nonrelevant GSO type bits when processing TSO + headers (git-fixes). +- net/mlx5e: Fix features validation check for tunneled UDP + (non-VXLAN) packets (git-fixes). +- ice: add flag to distinguish reset from .ndo_bpf in XDP rings + config (git-fixes). +- ice: remove af_xdp_zc_qps bitmap (git-fixes). +- ice: fix reads from NVM Shadow RAM on E830 and E825-C devices + (git-fixes). +- ice: fix iteration of TLVs in Preserved Fields Area (git-fixes). +- net/mlx5: Stop waiting for PCI if pci channel is offline + (git-fixes). +- ice: fix 200G PHY types to link speed mapping (git-fixes). +- e1000e: move force SMBUS near the end of enable_ulp function + (git-fixes). +- ice: fix accounting if a VLAN already exists (git-fixes). +- idpf: don't enable NAPI and interrupts prior to allocating Rx + buffers (git-fixes). +- net/mlx5e: Fix UDP GSO for encapsulated packets (git-fixes). +- net/mlx5e: Use rx_missed_errors instead of rx_dropped for + reporting buffer exhaustion (git-fixes). +- net/mlx5e: Fix IPsec tunnel mode offload feature check + (git-fixes). +- net/mlx5: Lag, do bond only if slaves agree on roce state + (git-fixes). +- idpf: Interpret .set_channels() input differently (git-fixes). +- ice: Interpret .set_channels() input differently (git-fixes). +- idpf: don't skip over ethtool tcp-data-split setting + (git-fixes). +- ice: Fix package download algorithm (git-fixes). +- mlx5: stop warning for 64KB pages (git-fixes). +- mlx5: avoid truncating error message (git-fixes). +- qed: avoid truncating work queue length (git-fixes). +- cxgb4: unnecessary check for 0 in the free_sge_txq_uld() + function (git-fixes). +- cxgb4: Properly lock TX queue for the selftest (git-fixes). +- net: qede: use return from qede_parse_actions() (git-fixes). +- net: qede: use return from qede_parse_flow_attr() for flow_spec + (git-fixes). +- net: qede: use return from qede_parse_flow_attr() for flower + (git-fixes). +- net: qede: sanitize 'rc' in qede_add_tc_flower_fltr() + (git-fixes). +- iavf: Fix TC config comparison with existing adapter TC config + (git-fixes). +- i40e: Report MFS in decimal base instead of hex (git-fixes). +- eth: bnxt: fix counting packets discarded due to OOM and netpoll + (git-fixes). +- bnxt_en: Fix error recovery for 5760X (P7) chips (git-fixes). +- bnxt_en: Fix the PCI-AER routines (git-fixes). +- bnxt_en: refactor reset close code (git-fixes). +- ice: Fix checking for unsupported keys on non-tunnel device + (git-fixes). +- ice: tc: allow zero flags in parsing tc flower (git-fixes). +- ice: tc: check src_vsi in case of traffic from VF (git-fixes). +- vdpa: Fix an error handling path in eni_vdpa_probe() + (git-fixes). +- vdpa_sim_blk: allocate the buffer zeroed (git-fixes). +- vdpa_sim_blk: Fix the potential leak of mgmt_dev (git-fixes). +- commit 58c03fe + +------------------------------------------------------------------- +Mon Oct 28 10:54:33 CET 2024 - nik.borisov@suse.com + +- dcache: keep dentry_hashtable or d_hash_shift even when not used (git-fixes). +- commit d6ce9b3 + +------------------------------------------------------------------- +Mon Oct 28 09:28:40 CET 2024 - nik.borisov@suse.com + +- x86: fix user address masking non-canonical speculation issue (git-fixes). +- commit 561e50e + +------------------------------------------------------------------- +Mon Oct 28 09:19:21 CET 2024 - nik.borisov@suse.com + +- x86: make the masked_user_access_begin() macro use its argument only once (git-fixes). +- commit aa2495e + +------------------------------------------------------------------- +Mon Oct 28 09:19:02 CET 2024 - nik.borisov@suse.com + +- x86: do the user address masking outside the user access area (git-fixes). +- commit a4b9c7b + +------------------------------------------------------------------- +Mon Oct 28 09:13:19 CET 2024 - nik.borisov@suse.com + +- x86: support user address masking instead of non-speculative conditional (git-fixes). +- commit 6536d1f + +------------------------------------------------------------------- +Mon Oct 28 09:03:43 CET 2024 - nik.borisov@suse.com + +- runtime constants: add x86 architecture support (git-fixes). +- commit 32e2def + +------------------------------------------------------------------- +Mon Oct 28 09:03:24 CET 2024 - nik.borisov@suse.com + +- runtime constants: add default dummy infrastructure (git-fixes). +- commit dd17ee6 + +------------------------------------------------------------------- +Mon Oct 28 09:03:06 CET 2024 - nik.borisov@suse.com + +- vfs: dcache: move hashlen_hash() from callers into d_hash() (git-fixes). +- commit c440ebe + +------------------------------------------------------------------- +Mon Oct 28 07:13:50 CET 2024 - ohering@suse.de + +- hv_netvsc: Fix VF namespace also in synthetic NIC NETDEV_REGISTER event (git-fixes). +- commit 3dc5225 + +------------------------------------------------------------------- +Sat Oct 26 10:57:53 CEST 2024 - tiwai@suse.de + +- Drop USB dwc2 patch that caused a regression on RPi3 (bsc#1232342) +- commit c84227d + +------------------------------------------------------------------- +Sat Oct 26 10:00:49 CEST 2024 - tiwai@suse.de + +- ACPI: PRM: Clean up guid type in struct prm_handler_info + (git-fixes). +- commit 8c8a801 + +------------------------------------------------------------------- +Sat Oct 26 09:59:51 CEST 2024 - tiwai@suse.de + +- ALSA: hda/realtek: Add subwoofer quirk for Acer Predator G9-593 + (stable-fixes). +- commit 595e400 + +------------------------------------------------------------------- +Sat Oct 26 09:58:45 CEST 2024 - tiwai@suse.de + +- ACPI: PRM: Find EFI_MEMORY_RUNTIME block for PRM handler and + context (git-fixes). +- ata: libata: Set DID_TIME_OUT for commands that actually timed + out (git-fixes). +- ASoC: max98388: Fix missing increment of variable slot_found + (git-fixes). +- ASoC: qcom: Fix NULL Dereference in + asoc_qcom_lpass_cpu_platform_probe() (git-fixes). +- ALSA: hda/realtek: Update default depop procedure (git-fixes). +- ALSA: hda/tas2781: select CRC32 instead of CRC32_SARWATE + (git-fixes). +- ALSA: firewire-lib: Avoid division by zero in + apply_constraint_to_size() (git-fixes). +- cpufreq/amd-pstate: Fix amd_pstate mode switch on shared memory + systems (git-fixes). +- ntb: intel: Fix the NULL vs IS_ERR() bug for + debugfs_create_dir() (git-fixes). +- commit 33d7ff7 + +------------------------------------------------------------------- +Fri Oct 25 19:09:16 CEST 2024 - vkarasulli@suse.de + +- platform/x86: x86-android-tablets: Fix use after free on + platform_device_register() errors (bsc#1232093 CVE-2024-49986). +- commit a5650bf + +------------------------------------------------------------------- +Fri Oct 25 18:45:05 CEST 2024 - vkarasulli@suse.de + +- thermal: core: Free tzp copy along with the thermal zone + (bsc#1231951 CVE-2024-50027). +- commit 5199a1f + +------------------------------------------------------------------- +Fri Oct 25 18:24:47 CEST 2024 - vkarasulli@suse.de + +- device-dax: correct pgoff align in dax_set_mapping() + (bsc#1231956 CVE-2024-50022). +- commit 527a95e + +------------------------------------------------------------------- +Fri Oct 25 17:54:38 CEST 2024 - tiwai@suse.de + +- ntb: ntb_hw_switchtec: Fix use after free vulnerability in + switchtec_ntb_remove due to race condition (CVE-2024-50059 + bsc#1232345). +- commit 4d86c47 + +------------------------------------------------------------------- +Fri Oct 25 17:07:16 CEST 2024 - vbabka@suse.cz + +- mm: call the security_mmap_file() LSM hook in remap_file_pages() + (CVE-2024-47745 bsc#1232135). +- commit 18a36ea + +------------------------------------------------------------------- +Fri Oct 25 14:54:04 CEST 2024 - sjaeckel@suse.de + +- Bluetooth: L2CAP: Fix uaf in l2cap_connect (CVE-2024-49950 + bsc#1232159). +- commit c906740 + +------------------------------------------------------------------- +Fri Oct 25 12:50:22 CEST 2024 - sjaeckel@suse.de + +- rxrpc: Fix a race between socket set up and I/O thread creation + (CVE-2024-49864 bsc#1232256). +- commit 9a8fa8a + +------------------------------------------------------------------- +Fri Oct 25 12:07:23 CEST 2024 - ailiop@suse.com + +- jfs: Fix sanity check in dbMount (git-fixes). +- commit 82a9085 + +------------------------------------------------------------------- +Fri Oct 25 11:29:51 CEST 2024 - tbogendoerfer@suse.de + +- net/mlx5e: Fix NULL deref in mlx5e_tir_builder_alloc() + (CVE-2024-50000 bsc#1232085). +- commit fe8d0fb + +------------------------------------------------------------------- +Fri Oct 25 11:18:01 CEST 2024 - lhenriques@suse.de + +- ext4: fix double brelse() the buffer of the extents path + (bsc#1232200 CVE-2024-49882). +- ext4: no need to continue when the number of entries is 1 + (bsc#1232140 CVE-2024-49967). +- commit 4a7f79c + +------------------------------------------------------------------- +Fri Oct 25 10:29:35 CEST 2024 - dwagner@suse.de + +- nvme: disable CC.CRIME (NVME_CC_CRIME) (jsc#PED-9901). +- commit e02c81e + +------------------------------------------------------------------- +Fri Oct 25 10:06:22 CEST 2024 - tbogendoerfer@suse.de + +- ice: Fix improper handling of refcount in + ice_sriov_set_msix_vec_count() (CVE-2024-50020 bsc#1231989). +- Refresh patches.suse/ice-Fix-increasing-MSI-X-on-VF.patch. +- commit 879bb19 + +------------------------------------------------------------------- +Fri Oct 25 10:04:06 CEST 2024 - tbogendoerfer@suse.de + +- igb: Do not bring the device up after non-fatal error + (CVE-2024-50040 bsc#1231908). +- ice: Fix improper handling of refcount in + ice_dpll_init_rclk_pins() (CVE-2024-50021 bsc#1231957). +- ppp: do not assume bh is held in ppp_channel_bridge_input() + (CVE-2024-49946 bsc#1232164). +- net/mlx5e: Fix crash caused by calling __xfrm_state_delete() + twice (CVE-2024-49953 bsc#1232156). +- net/mlx5: Fix error path in multi-packet WQE transmit + (CVE-2024-50001 bsc#1232084). +- net: seeq: Fix use after free vulnerability in ether3 Driver + Due to Race Condition (CVE-2024-47747 bsc#1232145). +- vdpa/mlx5: Fix invalid mr resource destroy (CVE-2024-47687 + bsc#1232003). +- Revert "ixgbe: Manual AN-37 for troublesome link partners for + X550 SFI" (git-fixes). +- commit bf0d04c + +------------------------------------------------------------------- +Fri Oct 25 10:01:04 CEST 2024 - oneukum@suse.com + +- net: usb: usbnet: fix name regression (get-fixes). +- commit 05e3778 + +------------------------------------------------------------------- +Fri Oct 25 01:11:46 CEST 2024 - dsterba@suse.com + +- r8169: add tally counter fields added with RTL8125 (CVE-2024-49973 bsc#1232105) +- commit bda1225 + +------------------------------------------------------------------- +Fri Oct 25 01:06:16 CEST 2024 - dsterba@suse.com + +- crypto: hisilicon/qm - flush all work before driver removed (bsc#1232075) +- commit fe52020 + +------------------------------------------------------------------- +Fri Oct 25 01:04:40 CEST 2024 - dsterba@suse.com + +- crypto: hisilicon/qm - inject error before stopping queue (CVE-2024-47730 bsc#1232075) +- commit 2ca1dd9 + +------------------------------------------------------------------- +Thu Oct 24 23:28:01 CEST 2024 - dsterba@suse.com + +- sock_map: Add a cond_resched() in sock_hash_free() (CVE-2024-47710 bsc#1232049) +- commit 0ac9917 + +------------------------------------------------------------------- +Thu Oct 24 21:33:04 CEST 2024 - ematsumiya@suse.de + +- cifs: Fix buffer overflow when parsing NFS reparse points + (bsc#1232089, CVE-2024-49996). +- commit f42a100 + +------------------------------------------------------------------- +Thu Oct 24 21:19:19 CEST 2024 - dsterba@suse.com + +- netfilter: nf_reject_ipv6: fix nf_reject_ip6_tcphdr_put() (CVE-2024-47685 bsc#1231998) +- commit 8da2621 + +------------------------------------------------------------------- +Thu Oct 24 21:07:16 CEST 2024 - dsterba@suse.com + +- net: Fix an unsafe loop on the list (CVE-2024-50024 bsc#1231954) +- commit 89e6925 + +------------------------------------------------------------------- +Thu Oct 24 21:00:39 CEST 2024 - dsterba@suse.com + +- ipv6: avoid possible NULL deref in rt6_uncached_list_flush_dev() (CVE-2024-47707 bsc#1231935) +- commit cc8f915 + +------------------------------------------------------------------- +Thu Oct 24 20:40:04 CEST 2024 - dsterba@suse.com + +- netfilter: br_netfilter: fix panic with metadata_dst skb (CVE-2024-50045 bsc#1231903) +- commit e6591d1 + +------------------------------------------------------------------- +Thu Oct 24 20:01:54 CEST 2024 - dsterba@suse.com + +- block, bfq: fix possible UAF for bfqq->bic with merge chain (CVE-2024-47706 bsc#1231942) +- commit 5c1066e + +------------------------------------------------------------------- +Thu Oct 24 19:46:24 CEST 2024 - dsterba@suse.com + +- tcp: check skb is non-NULL in tcp_rto_delta_us() (CVE-2024-47684 bsc#1231987) +- commit e27a5c2 + +------------------------------------------------------------------- +Thu Oct 24 18:02:07 CEST 2024 - ohering@suse.de + +- add bug references to existing mana changes (bsc#1232033, bsc#1232034, bsc#1232036). +- commit e93ce92 + +------------------------------------------------------------------- +Thu Oct 24 14:26:39 CEST 2024 - rgoldwyn@suse.com + +- filemap: remove use of wait bookmarks (bsc#1224088). +- commit 323bb54 + +------------------------------------------------------------------- +Thu Oct 24 10:53:09 CEST 2024 - nik.borisov@suse.com + +- config: Disable LAM on x86 (bsc#1217845) + LAM is affected by speculative execution vulnerabilities so until LASS + lands it's advisable to be disabled. +- commit 405fa97 + +------------------------------------------------------------------- +Thu Oct 24 10:30:58 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: adjust global_func15 test to validate prog exit + precision (CVE-2024-47703 bsc#1231946). +- selftests/bpf: validate async callback return value check + correctness (CVE-2024-47703 bsc#1231946). +- bpf: enforce precision of R0 on program/async callback return + (CVE-2024-47703 bsc#1231946). +- bpf: unify async callback and program retval checks + (CVE-2024-47703 bsc#1231946). +- commit d5ff894 + +------------------------------------------------------------------- +Thu Oct 24 10:24:51 CEST 2024 - shung-hsi.yu@suse.com + +- bpf: enforce precise retval range on program exit + (CVE-2024-47703 bsc#1231946). +- selftests/bpf: add selftest validating callback result is + enforced (CVE-2024-47703 bsc#1231946). +- bpf: enforce exact retval range on subprog/callback exit + (CVE-2024-47703 bsc#1231946). +- Refresh patches.kabi/bpf-verifier-kABI-workarounds.patch +- bpf: provide correct register name for exception callback + retval check (CVE-2024-47703 bsc#1231946). +- bpf: rearrange bpf_func_state fields to save a bit of memory + (CVE-2024-47703 bsc#1231946). +- Refresh patches.suse/bpf-Add-some-comments-to-stack-representation.patch +- Refresh patches.kabi/bpf-verifier-kABI-workarounds.patch +- bpf: Treat first argument as return value for bpf_throw + (CVE-2024-47703 bsc#1231946). +- commit 5efe683 + +------------------------------------------------------------------- +Thu Oct 24 09:53:03 CEST 2024 - osalvador@suse.de + +- drm/amd/display: Add null check for head_pipe in + dcn32_acquire_idle_pipe_for_head_pipe_in_layer (CVE-2024-49918 + bsc#1231967). +- commit 0e6515f + +------------------------------------------------------------------- +Thu Oct 24 06:35:40 CEST 2024 - osalvador@suse.de + +- drm/amd/display: Add NULL check for clk_mgr and clk_mgr->funcs + in dcn30_init_hw (bsc#1231965 CVE-2024-49917). +- commit 0859f94 + +------------------------------------------------------------------- +Wed Oct 23 19:22:26 CEST 2024 - ailiop@suse.com + +- ocfs2: reserve space for inline xattr before attaching reflink + tree (bsc#1232151 CVE-2024-49958). +- commit 9d01096 + +------------------------------------------------------------------- +Wed Oct 23 17:43:11 CEST 2024 - iivanov@suse.de + +- arm64: probes: Fix uprobes for big-endian kernels (git-fixes) +- commit 5114e0b + +------------------------------------------------------------------- +Wed Oct 23 17:41:37 CEST 2024 - iivanov@suse.de + +- arm64: probes: Fix simulate_ldr*_literal() (git-fixes) +- commit 2795830 + +------------------------------------------------------------------- +Wed Oct 23 17:39:54 CEST 2024 - iivanov@suse.de + +- arm64: probes: Remove broken LDR (literal) uprobe support (git-fixes) +- commit 83d2001 + +------------------------------------------------------------------- +Wed Oct 23 17:38:03 CEST 2024 - dsterba@suse.com + +- spi: hisi-kunpeng: Add verification for the max_frequency provided by the firmware (CVE-2024-47664 bsc#1231442) +- commit 89945c9 + +------------------------------------------------------------------- +Wed Oct 23 17:36:35 CEST 2024 - iivanov@suse.de + +- arm64: Subscribe Microsoft Azure Cobalt 100 to erratum 3194386 (git-fixes) +- commit ad9716f + +------------------------------------------------------------------- +Wed Oct 23 17:35:13 CEST 2024 - iivanov@suse.de + +- arm64: errata: Expand speculative SSBS workaround once more (git-fixes) +- commit f66e878 + +------------------------------------------------------------------- +Wed Oct 23 17:32:20 CEST 2024 - iivanov@suse.de + +- arm64: cputype: Add Neoverse-N3 definitions (git-fixes) +- commit 6a20007 + +------------------------------------------------------------------- +Wed Oct 23 17:26:56 CEST 2024 - iivanov@suse.de + +- arm64: esr: Define ESR_ELx_EC_* constants as UL (git-fixes) +- commit 28e8491 + +------------------------------------------------------------------- +Wed Oct 23 15:17:14 CEST 2024 - pmladek@suse.com + +- printk: Add notation to console_srcu locking (bsc#1232183). +- commit b5edcce + +------------------------------------------------------------------- +Wed Oct 23 15:10:11 CEST 2024 - pmladek@suse.com + +- Update patches.suse/kthread-unpark-only-parked-kthread.patch + (git-fixes, bsc#1231990, CVE-2024-50019). +- commit 1ac001a + +------------------------------------------------------------------- +Wed Oct 23 14:57:40 CEST 2024 - nik.borisov@suse.com + +- x86/bugs: Do not use UNTRAIN_RET with IBPB on entry (git-fixes). +- commit 9059d40 + +------------------------------------------------------------------- +Wed Oct 23 14:56:36 CEST 2024 - nik.borisov@suse.com + +- x86/bugs: Skip RSB fill at VMEXIT (git-fixes). +- commit 1c2e2e9 + +------------------------------------------------------------------- +Wed Oct 23 14:55:06 CEST 2024 - mfranc@suse.cz + +- supported.conf: mark ultravisor userspace access as supported (bsc#1232090) + This is needed for secure execution attestations feature. +- commit 9d4c7ad + +------------------------------------------------------------------- +Wed Oct 23 14:54:57 CEST 2024 - nik.borisov@suse.com + +- x86/entry: Have entry_ibpb() invalidate return predictions (git-fixes). +- commit 8e4a09c + +------------------------------------------------------------------- +Wed Oct 23 14:49:23 CEST 2024 - nik.borisov@suse.com + +- x86/cpufeatures: Add a IBPB_NO_RET BUG flag (git-fixes). +- commit 4411a53 + +------------------------------------------------------------------- +Wed Oct 23 14:43:28 CEST 2024 - mfranc@suse.cz + +- config s390x: build ultravisor userspace access into the kernel (bsc#1232090) + The new s390-tools attestation-related tools depends on this. It's + better to have this built into the kernel just like in all other + branches. +- commit 25c0449 + +------------------------------------------------------------------- +Wed Oct 23 14:38:26 CEST 2024 - nik.borisov@suse.com + +- x86/cpufeatures: Define X86_FEATURE_AMD_IBPB_RET (git-fixes). +- commit 589671a + +------------------------------------------------------------------- +Wed Oct 23 12:32:05 CEST 2024 - nik.borisov@suse.com + +- x86/tdx: Fix "in-kernel MMIO" check (bsc#1232116 CVE-2024-47727). +- commit 9b65946 + +------------------------------------------------------------------- +Wed Oct 23 12:15:26 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add test for sign extension in + coerce_subreg_to_size_sx() (git-fixes). +- selftests/bpf: Add test for truncation after sign extension + in coerce_reg_to_size_sx() (git-fixes). +- bpf: Fix truncation bug in coerce_reg_to_size_sx() (git-fixes). +- selftests/bpf: Add test for sign extension in + coerce_subreg_to_size_sx() (git-fixes). +- selftests/bpf: Add test for truncation after sign extension + in coerce_reg_to_size_sx() (git-fixes). +- bpf: Fix truncation bug in coerce_reg_to_size_sx() (git-fixes). +- commit 34bee66 + +------------------------------------------------------------------- +Wed Oct 23 12:14:23 CEST 2024 - ailiop@suse.com + +- xfs: fix freeing speculative preallocations for preallocated + files (git-fixes). +- commit 80e4f70 + +------------------------------------------------------------------- +Wed Oct 23 12:10:27 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add test for lsm tail call (CVE-2024-50063). +- commit 810e00e + +------------------------------------------------------------------- +Wed Oct 23 12:08:38 CEST 2024 - ailiop@suse.com + +- xfs: make sure sb_fdblocks is non-negative (git-fixes). +- commit 258a678 + +------------------------------------------------------------------- +Wed Oct 23 12:07:27 CEST 2024 - ailiop@suse.com + +- xfs: remove a racy if_bytes check in xfs_reflink_end_cow_extent + (git-fixes). +- commit 4ab4091 + +------------------------------------------------------------------- +Wed Oct 23 12:04:39 CEST 2024 - ailiop@suse.com + +- xfs: convert delayed extents to unwritten when zeroing post + eof blocks (git-fixes). +- commit 6f12db2 + +------------------------------------------------------------------- +Wed Oct 23 12:03:32 CEST 2024 - ailiop@suse.com + +- xfs: make xfs_bmapi_convert_delalloc() to allocate the target + offset (git-fixes). +- commit 9f0f731 + +------------------------------------------------------------------- +Wed Oct 23 12:02:19 CEST 2024 - ailiop@suse.com + +- xfs: make the seq argument to xfs_bmapi_convert_delalloc() + optional (git-fixes). +- commit 504e0bc + +------------------------------------------------------------------- +Wed Oct 23 12:00:51 CEST 2024 - ailiop@suse.com + +- xfs: validate recovered name buffers when recovering xattr items + (git-fixes). +- commit a53fc5e + +------------------------------------------------------------------- +Wed Oct 23 11:59:30 CEST 2024 - ailiop@suse.com + +- xfs: check shortform attr entry flags specifically (git-fixes). +- commit 621ec11 + +------------------------------------------------------------------- +Wed Oct 23 11:55:40 CEST 2024 - shung-hsi.yu@suse.com + +- kABI: bpf: struct bpf_map kABI workaround (CVE-2024-50063). +- bpf: Prevent tail call between progs attached to different hooks + (CVE-2024-50063). +- commit cef79ef + +------------------------------------------------------------------- +Wed Oct 23 11:55:39 CEST 2024 - ailiop@suse.com + +- xfs: check opcode and iovec count match in + xlog_recover_attri_commit_pass2 (git-fixes). +- commit 2398ba4 + +------------------------------------------------------------------- +Wed Oct 23 11:55:00 CEST 2024 - ailiop@suse.com + +- fat: fix uninitialized variable (git-fixes). +- commit 77f5dad + +------------------------------------------------------------------- +Wed Oct 23 11:12:53 CEST 2024 - osalvador@suse.de + +- drm/amd/display: Add null check for head_pipe in + dcn201_acquire_free_pipe_for_layer (CVE-2024-49919 bsc#1231968). +- commit ff31b31 + +------------------------------------------------------------------- +Wed Oct 23 09:42:16 CEST 2024 - tbogendoerfer@suse.de + +- slip: make slhc_remember() more robust against malicious packets + (CVE-2024-50033 bsc#1231914). +- i40e: Fix macvlan leak by synchronizing access to + mac_filter_hash (CVE-2024-50041 bsc#1231907). +- ice: Fix increasing MSI-X on VF (CVE-2024-50042 bsc#1231906). +- commit a1fb8a8 + +------------------------------------------------------------------- +Wed Oct 23 08:18:07 CEST 2024 - tiwai@suse.de + +- pinctrl: ocelot: fix system hang on level based interrupts + (stable-fixes). +- tty: n_gsm: Fix use-after-free in gsm_cleanup_mux + (stable-fixes). +- USB: serial: option: add Telit FN920C04 MBIM compositions + (stable-fixes). +- USB: serial: option: add support for Quectel EG916Q-GL + (stable-fixes). +- drm/vmwgfx: Handle surface check failure correctly (git-fixes). +- drm/amdgpu/swsmu: Only force workload setup on init (git-fixes). +- drm/radeon: Fix encoder->possible_clones (git-fixes). +- commit 4fdf5d1 + +------------------------------------------------------------------- +Wed Oct 23 08:11:28 CEST 2024 - tiwai@suse.de + +- thermal: core: Reference count the zone in + thermal_zone_get_by_id() (CVE-2024-50028 bsc#1231950). +- commit a5813a1 + +------------------------------------------------------------------- +Wed Oct 23 05:24:11 CEST 2024 - shung-hsi.yu@suse.com + +- bpf: Fix a sdiv overflow issue (CVE-2024-49888 bsc#1232208). +- commit ce8f994 + +------------------------------------------------------------------- +Tue Oct 22 23:11:46 CEST 2024 - ailiop@suse.com + +- kabi fix for NFSv4: Prevent NULL-pointer dereference in + nfs42_complete_copies() (bsc#1231902 CVE-2024-50046). +- NFSv4: Prevent NULL-pointer dereference in + nfs42_complete_copies() (bsc#1231902 CVE-2024-50046). +- commit e5e1a89 + +------------------------------------------------------------------- +Tue Oct 22 15:54:23 CEST 2024 - vbabka@suse.cz + +- zram: don't free statically defined names (CVE-2024-50064 + bsc#1231901). +- commit 645eb93 + +------------------------------------------------------------------- +Tue Oct 22 15:52:01 CEST 2024 - vbabka@suse.cz + +- zram: free secondary algorithms names (CVE-2024-50064 + bsc#1231901). +- commit 293822f + +------------------------------------------------------------------- +Tue Oct 22 12:43:04 CEST 2024 - lhenriques@suse.de + +- block: fix potential invalid pointer dereference in + blk_add_partition (bsc#1231872 CVE-2024-47705). +- block: print symbolic error name instead of error code + (bsc#1231872). +- commit fcde2ed + +------------------------------------------------------------------- +Tue Oct 22 12:01:45 CEST 2024 - ddiss@suse.de + +- nfsd: return -EINVAL when namelen is 0 (CVE-2024-47692 + bsc#1231857). +- commit 9ee6831 + +------------------------------------------------------------------- +Tue Oct 22 11:56:22 CEST 2024 - jslaby@suse.cz + +- PCI: Fix pci_enable_acs() support for the ACS quirks (bsc#1229019). +- commit 1bd1860 + +------------------------------------------------------------------- +Tue Oct 22 11:40:54 CEST 2024 - ailiop@suse.com + +- nilfs2: fix kernel bug due to missing clearing of buffer delay + flag (git-fixes). +- commit 472d949 + +------------------------------------------------------------------- +Mon Oct 21 17:08:33 CEST 2024 - jgross@suse.com + +- Update + patches.suse/xen-move-max_pfn-in-xen_memory_setup-out-of-function.patch + (bsc#1226003 bsc#1231828). +- commit ec3e6a6 + +------------------------------------------------------------------- +Mon Oct 21 13:43:20 CEST 2024 - nik.borisov@suse.com + +- x86/sev: Check for MWAITX and MONITORX opcodes in the #VC handler (git-fixes). +- commit 23789e3 + +------------------------------------------------------------------- +Mon Oct 21 13:41:00 CEST 2024 - nik.borisov@suse.com + +- x86/apic: Make x2apic_disable() work correctly (git-fixes). +- commit 546101e + +------------------------------------------------------------------- +Mon Oct 21 13:28:12 CEST 2024 - nik.borisov@suse.com + +- x86/entry: Remove unwanted instrumentation in common_interrupt() (git-fixes). +- commit 846156b + +------------------------------------------------------------------- +Mon Oct 21 13:16:04 CEST 2024 - nik.borisov@suse.com + +- x86/mm: Use IPIs to synchronize LAM enablement (git-fixes). +- commit 8a7a0be + +------------------------------------------------------------------- +Mon Oct 21 13:07:35 CEST 2024 - nik.borisov@suse.com + +- x86/amd_nb: Add new PCI IDs for AMD family 1Ah model 60h (git-fixes). +- commit 60a5f34 + +------------------------------------------------------------------- +Mon Oct 21 13:03:52 CEST 2024 - nik.borisov@suse.com + +- x86/PCI: Check pcie_find_root_port() return for NULL (git-fixes). +- commit 7c1cc11 + +------------------------------------------------------------------- +Mon Oct 21 12:43:44 CEST 2024 - vbabka@suse.cz + +- maple_tree: correct tree corruption on spanning store + (git-fixes). +- commit 2b034f1 + +------------------------------------------------------------------- +Mon Oct 21 12:35:07 CEST 2024 - nik.borisov@suse.com + +- x86/resctrl: Avoid overflow in MB settings in bw_validate() (git-fixes). +- commit b2f0d6d + +------------------------------------------------------------------- +Mon Oct 21 12:34:47 CEST 2024 - nik.borisov@suse.com + +- x86/resctrl: Annotate get_mem_config() functions as __init (git-fixes). +- commit 7e80f38 + +------------------------------------------------------------------- +Mon Oct 21 12:21:56 CEST 2024 - nik.borisov@suse.com + +- x86/apic: Always explicitly disarm TSC-deadline timer (git-fixes). +- commit 312d3e7 + +------------------------------------------------------------------- +Mon Oct 21 12:19:13 CEST 2024 - nik.borisov@suse.com + +- x86/CPU/AMD: Only apply Zenbleed fix for Zen2 during late microcode load (git-fixes). +- commit 0cb125d + +------------------------------------------------------------------- +Mon Oct 21 12:08:59 CEST 2024 - davide.benini@suse.com + +- ethtool: fail closed if we can't get max channel used in + indirection tables (CVE-2024-46834 bsc#1231096). +- commit 5cacc93 + +------------------------------------------------------------------- +Mon Oct 21 09:41:04 CEST 2024 - tiwai@suse.de + +- Bluetooth: btusb: Fix regression with fake CSR controllers + 0a12:0001 (git-fixes). +- Bluetooth: bnep: fix wild-memory-access in proto_unregister + (git-fixes). +- Bluetooth: Remove debugfs directory on module init failure + (git-fixes). +- Bluetooth: Call iso_exit() on module unload (git-fixes). +- Bluetooth: ISO: Fix multiple init when debugfs is disabled + (git-fixes). +- pinctrl: apple: check devm_kasprintf() returned value + (git-fixes). +- parport: Proper fix for array out-of-bounds access (git-fixes). +- iio: frequency: admv4420: fix missing select REMAP_SPI in + Kconfig (git-fixes). +- iio: adc: ti-ads8688: add missing select IIO_(TRIGGERED_)BUFFER + in Kconfig (git-fixes). +- iio: hid-sensors: Fix an error handling path in + _hid_sensor_set_report_latency() (git-fixes). +- iio: dac: stm32-dac-core: add missing select REGMAP_MMIO in + Kconfig (git-fixes). +- iio: dac: ltc1660: add missing select REGMAP_SPI in Kconfig + (git-fixes). +- iio: dac: ad5770r: add missing select REGMAP_SPI in Kconfig + (git-fixes). +- iio: amplifiers: ada4250: add missing select REGMAP_SPI in + Kconfig (git-fixes). +- iio: frequency: adf4377: add missing select REMAP_SPI in Kconfig + (git-fixes). +- iio: proximity: mb1232: add missing select + IIO_(TRIGGERED_)BUFFER in Kconfig (git-fixes). +- iio: dac: ad5766: add missing select IIO_(TRIGGERED_)BUFFER + in Kconfig (git-fixes). +- iio: dac: ad3552r: add missing select IIO_(TRIGGERED_)BUFFER + in Kconfig (git-fixes). +- iio: adc: ti-lmp92064: add missing select REGMAP_SPI in Kconfig + (git-fixes). +- iio: adc: ti-ads124s08: add missing select + IIO_(TRIGGERED_)BUFFER in Kconfig (git-fixes). +- iio: accel: kx022a: add missing select IIO_(TRIGGERED_)BUFFER + in Kconfig (git-fixes). +- iio: light: veml6030: fix ALS sensor resolution (git-fixes). +- iio: light: opt3001: add missing full-scale range value + (git-fixes). +- iio: light: veml6030: fix IIO device retrieval from embedded + device (git-fixes). +- iio: accel: bma400: Fix uninitialized variable field_value in + tap event handling (git-fixes). +- serial: imx: Update mctrl old_status on RTSD interrupt + (git-fixes). +- vt: prevent kernel-infoleak in con_font_get() (git-fixes). +- xhci: Mitigate failed set dequeue pointer commands (git-fixes). +- xhci: Fix incorrect stream context type macro (git-fixes). +- xhci: tegra: fix checked USB2 port number (git-fixes). +- usb: dwc3: Wait for EndXfer completion before restoring + GUSB2PHYCFG (git-fixes). +- usb: typec: altmode should keep reference to parent (git-fixes). +- commit 5e08e81 + +------------------------------------------------------------------- +Sat Oct 19 19:14:25 CEST 2024 - mfranc@suse.cz + +- supported.conf: mark nhpoly1305 module as supported (bsc#1231035) + In 59d03d7c990c, we marked adiantum as a supported module, I'm afraid + we need to mark nhpoly1305 as supported too (as a dependecy) if we + want adiantum to work. + This makes tcrypt test case 219 (adiantum) pass on SLE15-SP6 (tested + on z15 VM). +- commit 01d2906 + +------------------------------------------------------------------- +Fri Oct 18 19:31:45 CEST 2024 - tbogendoerfer@suse.de + +- vmxnet3: Fix packet corruption in vmxnet3_xdp_xmit_frame + (bsc#1226498). +- vmxnet3: Fix missing reserved tailroom (bsc#1226498). +- commit 1bd55aa + +------------------------------------------------------------------- +Fri Oct 18 14:00:12 CEST 2024 - tbogendoerfer@suse.de + +- vmxnet3: update to version 9 (bsc#1226498). +- vmxnet3: add command to allow disabling of offloads + (bsc#1226498). +- vmxnet3: add latency measurement support in vmxnet3 + (bsc#1226498). +- vmxnet3: prepare for version 9 changes (bsc#1226498). +- vmxnet3: Add XDP support (bsc#1226498). +- commit 3fdc8e3 + +------------------------------------------------------------------- +Fri Oct 18 11:38:13 CEST 2024 - ailiop@suse.com + +- SUNRPC: Fix integer overflow in decode_rc_list() (git-fixes). +- commit 15be003 + +------------------------------------------------------------------- +Fri Oct 18 11:37:32 CEST 2024 - ailiop@suse.com + +- NFSD: Mark filecache "down" if init fails (git-fixes). +- commit ceca4b8 + +------------------------------------------------------------------- +Fri Oct 18 11:34:31 CEST 2024 - ailiop@suse.com + +- SUNRPC: clnt.c: Remove misleading comment (git-fixes). +- commit 2e12710 + +------------------------------------------------------------------- +Fri Oct 18 11:26:40 CEST 2024 - ailiop@suse.com + +- nfs: fix memory leak in error path of nfs4_do_reclaim + (git-fixes). +- commit 1994ef6 + +------------------------------------------------------------------- +Fri Oct 18 11:24:48 CEST 2024 - ailiop@suse.com + +- nfsd: fix delegation_blocked() to block correctly for at least + 30 seconds (git-fixes). +- commit f66078d + +------------------------------------------------------------------- +Fri Oct 18 11:23:40 CEST 2024 - ailiop@suse.com + +- nfsd: return -EINVAL when namelen is 0 (git-fixes). +- commit 1bc1c36 + +------------------------------------------------------------------- +Fri Oct 18 11:22:25 CEST 2024 - ailiop@suse.com + +- nfsd: call cache_put if xdr_reserve_space returns NULL + (git-fixes). +- commit 003f784 + +------------------------------------------------------------------- +Fri Oct 18 11:21:41 CEST 2024 - ailiop@suse.com + +- nfsd: map the EBADMSG to nfserr_io to avoid warning (git-fixes). +- commit 5b8020a + +------------------------------------------------------------------- +Fri Oct 18 11:20:45 CEST 2024 - ailiop@suse.com + +- NFSD: Fix NFSv4's PUTPUBFH operation (git-fixes). +- commit 88290fb + +------------------------------------------------------------------- +Fri Oct 18 11:19:24 CEST 2024 - ailiop@suse.com + +- nfsd: fix refcount leak when file is unhashed after being found + (git-fixes). +- commit 5a551a1 + +------------------------------------------------------------------- +Fri Oct 18 11:18:34 CEST 2024 - ailiop@suse.com + +- nfsd: remove unneeded EEXIST error check in nfsd_do_file_acquire + (git-fixes). +- commit 6d18e0e + +------------------------------------------------------------------- +Fri Oct 18 11:17:44 CEST 2024 - ailiop@suse.com + +- NFS: Avoid unnecessary rescanning of the per-server delegation + list (git-fixes). +- commit e5841ef + +------------------------------------------------------------------- +Fri Oct 18 11:16:15 CEST 2024 - ailiop@suse.com + +- NFSv4: Fix clearing of layout segments in layoutreturn + (git-fixes). +- commit ec4c812 + +------------------------------------------------------------------- +Fri Oct 18 10:01:52 CEST 2024 - tiwai@suse.de + +- ALSA: hda/conexant - Use cached pin control for Node 0x1d on + HP EliteOne 1000 G2 (git-fixes). +- ALSA/hda: intel-sdw-acpi: simplify sdw-master-count property + read (stable-fixes). +- ALSA/hda: intel-sdw-acpi: fetch fwnode once in + sdw_intel_scan_controller() (stable-fixes). +- ALSA/hda: intel-sdw-acpi: cleanup sdw_intel_scan_controller + (stable-fixes). +- ALSA: hda/tas2781: Add new quirk for Lenovo, ASUS, Dell projects + (stable-fixes). +- ALSA: line6: update contact information (stable-fixes). +- ALSA: hda/conexant - Fix audio routing for HP EliteOne 1000 G2 + (stable-fixes). +- ALSA: hda: Sound support for HP Spectre x360 16 inch model 2024 + (stable-fixes). +- commit fb6c2ec + +------------------------------------------------------------------- +Fri Oct 18 09:54:54 CEST 2024 - tiwai@suse.de + +- firmware: arm_scmi: Fix the double free in + scmi_debugfs_common_setup() (git-fixes). +- ALSA: hda/cs8409: Fix possible NULL dereference (git-fixes). +- netdevsim: use cond_resched() in nsim_dev_trap_report_work() + (git-fixes). +- macsec: don't increment counters for an unrelated SA + (git-fixes). +- net: usb: usbnet: fix race in probe failure (git-fixes). +- HID: plantronics: Workaround for an unexcepted opposite volume + key (stable-fixes). +- usb: xhci: Fix problem with xhci resume from suspend + (stable-fixes). +- usb: storage: ignore bogus device raised by JieLi BR21 USB + sound chip (stable-fixes). +- net: phy: Remove LED entry from LEDs list on unregister + (git-fixes). +- net: phy: bcm84881: Fix some error handling paths (git-fixes). +- net: phy: dp83869: fix memory corruption when enabling fiber + (git-fixes). +- kthread: unpark only parked kthread (git-fixes). +- unicode: Don't special case ignorable code points + (stable-fixes). +- fbdev: sisfb: Fix strbuf array overflow (stable-fixes). +- fbcon: Fix a NULL pointer dereference issue in fbcon_putcs + (stable-fixes). +- drm/amd/display: Check null pointer before dereferencing se + (stable-fixes). +- driver core: bus: Fix double free in driver API bus_register() + (stable-fixes). +- driver core: bus: Return -EIO instead of 0 when show/store + invalid bus attribute (stable-fixes). +- comedi: ni_routing: tools: Check when the file could not be + opened (stable-fixes). +- serial: protect uart_port_dtr_rts() in uart_shutdown() too + (stable-fixes). +- usb: dwc2: Adjust the timing of USB Driver Interrupt + Registration in the Crashkernel Scenario (stable-fixes). +- usb: chipidea: udc: enable suspend interrupt after usb reset + (stable-fixes). +- i3c: master: cdns: Fix use after free vulnerability in + cdns_i3c_master Driver Due to Race Condition (stable-fixes). +- media: videobuf2-core: clear memory related fields in + __vb2_plane_dmabuf_put() (stable-fixes). +- clk: imx: Remove CLK_SET_PARENT_GATE for DRAM mux for i.MX7D + (stable-fixes). +- clk: bcm: bcm53573: fix OF node leak in init (stable-fixes). +- i2c: i801: Use a different adapter-name for IDF adapters + (stable-fixes). +- mfd: intel_soc_pmic_chtwc: Make Lenovo Yoga Tab 3 X90F DMI + match less strict (stable-fixes). +- soundwire: intel_bus_common: enable interrupts before exiting + reset (stable-fixes). +- PCI: Mark Creative Labs EMU20k2 INTx masking as broken + (stable-fixes). +- PCI: Add ACS quirk for Qualcomm SA8775P (stable-fixes). +- PCI: Add function 0 DMA alias quirk for Glenfly Arise chip + (stable-fixes). +- drm/amd/display: Revert "Check HDCP returned status" + (stable-fixes). +- HID: multitouch: Add support for lenovo Y9000P Touchpad + (stable-fixes). +- drm/amd/display: Remove a redundant check in authenticated_dp + (stable-fixes). +- HID: i2c-hid: Remove I2C_HID_QUIRK_SET_PWR_WAKEUP_DEV quirk + (stable-fixes). +- commit f829d20 + +------------------------------------------------------------------- +Fri Oct 18 08:40:12 CEST 2024 - nmorey@suse.com + +- RDMA/mlx5: Enforce umem boundaries for explicit ODP page faults (git-fixes) +- commit b9b835e + +------------------------------------------------------------------- +Fri Oct 18 08:39:51 CEST 2024 - nmorey@suse.com + +- RDMA/rtrs-srv: Avoid null pointer deref during path establishment (git-fixes) +- commit cf9eccb + +------------------------------------------------------------------- +Fri Oct 18 08:39:22 CEST 2024 - nmorey@suse.com + +- RDMA/mad: Improve handling of timed out WRs of mad agent (git-fixes) +- commit 72bef76 + +------------------------------------------------------------------- +Thu Oct 17 16:49:47 CEST 2024 - krisman@suse.de + +- io_uring/sqpoll: do not put cpumask on stack (git-fixes). +- io_uring/sqpoll: retain test for whether the CPU is valid + (git-fixes). +- commit ff84c2d + +------------------------------------------------------------------- +Thu Oct 17 11:49:13 CEST 2024 - vbabka@suse.cz + +- mm: avoid leaving partial pfn mappings around in error case + (CVE-2024-47674 bsc#1231673). +- commit 83d1625 + +------------------------------------------------------------------- +Thu Oct 17 09:29:21 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Avoid CPU lockups due fifo occupancy check loop (git-fixes) +- commit 21fb93d + +------------------------------------------------------------------- +Thu Oct 17 09:24:11 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix the GID table length (git-fixes) +- commit 6a0779e + +------------------------------------------------------------------- +Thu Oct 17 09:22:54 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix a bug while setting up Level-2 PBL pages (git-fixes) +- commit d91ede3 + +------------------------------------------------------------------- +Thu Oct 17 09:21:04 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Change the sequence of updating the CQ toggle value (git-fixes) +- commit 414cbde + +------------------------------------------------------------------- +Thu Oct 17 09:17:35 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Return more meaningful error (git-fixes) +- commit 6755798 + +------------------------------------------------------------------- +Thu Oct 17 09:16:17 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix incorrect dereference of srq in async event (git-fixes) +- commit 4e1ef61 + +------------------------------------------------------------------- +Thu Oct 17 09:15:12 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix out of bound check (git-fixes) +- commit d8d1339 + +------------------------------------------------------------------- +Thu Oct 17 09:12:59 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix the max CQ WQEs for older adapters (git-fixes) +- commit 598626b + +------------------------------------------------------------------- +Thu Oct 17 09:12:17 CEST 2024 - nmorey@suse.com + +- RDMA/srpt: Make slab cache names unique (git-fixes) +- commit 29c0fcb + +------------------------------------------------------------------- +Thu Oct 17 09:04:27 CEST 2024 - nmorey@suse.com + +- RDMA/irdma: Fix misspelling of "accept*" (git-fixes) +- commit 2566da7 + +------------------------------------------------------------------- +Thu Oct 17 09:03:06 CEST 2024 - nmorey@suse.com + +- RDMA/cxgb4: Fix RDMA_CM_EVENT_UNREACHABLE error for iWARP (git-fixes) +- commit 89fa27f + +------------------------------------------------------------------- +Thu Oct 17 08:59:43 CEST 2024 - nmorey@suse.com + +- RDMA/core: Fix ENODEV error for iWARP test over vlan (git-fixes) +- commit 4c15511 + +------------------------------------------------------------------- +Thu Oct 17 08:59:08 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Add a check for memory allocation (git-fixes) +- commit abea295 + +------------------------------------------------------------------- +Thu Oct 17 08:56:53 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix incorrect AVID type in WQE structure (git-fixes) +- commit ae91db1 + +------------------------------------------------------------------- +Thu Oct 17 08:56:20 CEST 2024 - nmorey@suse.com + +- RDMA/bnxt_re: Fix a possible memory leak (git-fixes) +- commit 77c3f34 + +------------------------------------------------------------------- +Wed Oct 16 22:23:03 CEST 2024 - krisman@suse.de + +- io_uring/rw: fix cflags posting for single issue multishot read + (git-fixes). +- commit 320c7ee + +------------------------------------------------------------------- +Wed Oct 16 22:12:58 CEST 2024 - krisman@suse.de + +- io_uring/net: harden multishot termination case for recv + (git-fixes). +- commit 6529e65 + +------------------------------------------------------------------- +Wed Oct 16 20:26:49 CEST 2024 - krisman@suse.de + +- io_uring: check for presence of task_work rather than + TIF_NOTIFY_SIGNAL (git-fixes). +- commit 5b92400 + +------------------------------------------------------------------- +Wed Oct 16 20:18:34 CEST 2024 - krisman@suse.de + +- io_uring/io-wq: inherit cpuset of cgroup in io worker + (git-fixes). +- commit 474a07e + +------------------------------------------------------------------- +Wed Oct 16 20:13:50 CEST 2024 - krisman@suse.de + +- io_uring/io-wq: do not allow pinning outside of cpuset + (git-fixes). +- commit e99d8a8 + +------------------------------------------------------------------- +Wed Oct 16 19:57:51 CEST 2024 - krisman@suse.de + +- io_uring/rw: treat -EOPNOTSUPP for IOCB_NOWAIT like -EAGAIN + (git-fixes). +- io_uring/sqpoll: do not allow pinning outside of cpuset + (git-fixes). +- commit 37d0dce + +------------------------------------------------------------------- +Wed Oct 16 19:53:10 CEST 2024 - krisman@suse.de + +- io_uring/eventfd: move to more idiomatic RCU free usage + (git-fixes). +- commit 4e262c3 + +------------------------------------------------------------------- +Wed Oct 16 18:23:27 CEST 2024 - jack@suse.cz + +- udf: Avoid excessive partition lengths (bsc#1230773 + CVE-2024-46777). +- commit ec61258 + +------------------------------------------------------------------- +Wed Oct 16 18:23:13 CEST 2024 - jack@suse.cz + +- fsnotify: clear PARENT_WATCHED flags lazily (bsc#1231439 + CVE-2024-47660). +- commit 133a7e9 + +------------------------------------------------------------------- +Wed Oct 16 15:56:19 CEST 2024 - davide.benini@suse.com + +- netem: fix return value if duplicate enqueue fails + (CVE-2024-45016 bsc#1230429). +- commit 8c9c269 + +------------------------------------------------------------------- +Wed Oct 16 13:36:45 CEST 2024 - oneukum@suse.com + +- media: pci: ipu3-cio2: Initialise timing struct to avoid a + compiler warning (git-fixes). +- commit c21df3e + +------------------------------------------------------------------- +Wed Oct 16 12:34:26 CEST 2024 - oneukum@suse.com + +- wifi: rtw88: Fix USB/SDIO devices not transmitting beacons + (git-fixes). +- commit d46bb93 + +------------------------------------------------------------------- +Wed Oct 16 11:48:31 CEST 2024 - msuchanek@suse.de + +- crypto: powerpc/p10-aes-gcm - Add dependency on CRYPTO_SIMD and + re-enable CRYPTO_AES_GCM_P10 (bsc#1230501 ltc#208632). + - Update config files. +- crypto: powerpc/p10-aes-gcm - Register modules as SIMD + (bsc#1230501 ltc#208632). +- crypto: powerpc/p10-aes-gcm - Re-write AES/GCM stitched + implementation (bsc#1230501 ltc#208632). +- crypto: powerpc/p10-aes-gcm - Disable CRYPTO_AES_GCM_P10 + (bsc#1230501 ltc#208632). +- powerpc/crypto: don't build aes-gcm-p10 by default (bsc#1230501 + ltc#208632). +- powerpc/crypto: fix missing skcipher dependency for aes-gcm-p10 + (bsc#1230501 ltc#208632). +- commit a579f42 + +------------------------------------------------------------------- +Tue Oct 15 15:39:00 CEST 2024 - oneukum@suse.com + +- powercap: intel_rapl: Fix off by one in get_rpi() (git-fixes). +- commit 6c73c0c + ------------------------------------------------------------------- Tue Oct 15 14:45:11 CEST 2024 - mgorman@suse.de @@ -5,12 +6017,1289 @@ Tue Oct 15 14:45:11 CEST 2024 - mgorman@suse.de - No -rt specific changes this merge. - commit b49e7e5 +------------------------------------------------------------------- +Tue Oct 15 12:49:45 CEST 2024 - tzimmermann@suse.com + +- drm/amd/display: Disable DMCUB timeout for DCN35 (bsc#1231435 CVE-2024-46870) +- commit 0a39326 + +------------------------------------------------------------------- +Tue Oct 15 10:25:38 CEST 2024 - tzimmermann@suse.com + +- drm/amd/display: Add disable timeout option (bsc#1231435) +- commit cb303b5 + +------------------------------------------------------------------- +Tue Oct 15 08:38:57 CEST 2024 - tiwai@suse.de + +- Refresh patches.suse/paddings-add-paddings-to-TypeC-stuff.patch + Drop superfluous file mode modifications in the patch that broke the + patch expansion recently +- commit e7ac9e1 + +------------------------------------------------------------------- +Tue Oct 15 08:04:58 CEST 2024 - tiwai@suse.de + +- Move upstreamed scsi patch into sorted section +- commit 5db43b0 + +------------------------------------------------------------------- +Mon Oct 14 17:30:00 CEST 2024 - mkubecek@suse.cz + +- nbd: fix race between timeout and normal completion + (bsc#1230918). +- commit 57c54c8 + +------------------------------------------------------------------- +Mon Oct 14 16:34:18 CEST 2024 - lhenriques@suse.de + +- ext4: mark fc as ineligible using an handle in ext4_xattr_set() + (bsc#1231640). +- ext4: use handle to mark fc as ineligible in + __track_dentry_update() (bsc#1231639). +- jbd2: correctly compare tids with tid_geq function in + jbd2_fc_begin_commit (bsc#1231638). +- ext4: fix incorrect tid assumption in ext4_fc_mark_ineligible() + (bsc#1231637). +- ext4: fix fast commit inode enqueueing during a full journal + commit (bsc#1231636). +- ext4: don't track ranges in fast_commit if inode has inlined + data (bsc#1231635). +- ext4: fix possible tid_t sequence overflows (bsc#1231634). +- commit 6951914 + +------------------------------------------------------------------- +Mon Oct 14 15:56:50 CEST 2024 - oneukum@suse.com + +- net: sysfs: Fix /sys/class/net/ path for statistics + (git-fixes). +- commit 54925d7 + +------------------------------------------------------------------- +Mon Oct 14 15:54:12 CEST 2024 - oneukum@suse.com + +- devlink: Fix command annotation documentation (git-fixes). +- commit 2b95827 + +------------------------------------------------------------------- +Mon Oct 14 15:44:49 CEST 2024 - oneukum@suse.com + +- x86/Documentation: Indent 'note::' directive for protocol + version number note (git-fixes). +- commit ec31602 + +------------------------------------------------------------------- +Mon Oct 14 15:42:12 CEST 2024 - ddiss@suse.de + +- mm/filemap: optimize filemap folio adding (bsc#1231617). +- lib/xarray: introduce a new helper xas_get_order (bsc#1231617). +- mm/filemap: return early if failed to allocate memory for split + (bsc#1231617). +- commit c3c5888 + +------------------------------------------------------------------- +Mon Oct 14 15:32:15 CEST 2024 - oneukum@suse.com + +- srcu: Fix callbacks acceleration mishandling (git-fixes). +- task_work: add kerneldoc annotation for 'data' argument + (git-fixes). +- commit a4661ee + +------------------------------------------------------------------- +Mon Oct 14 08:34:06 CEST 2024 - tiwai@suse.de + +- HID: amd_sfh: Switch to device-managed dmam_alloc_coherent() + (git-fixes). +- hid: intel-ish-hid: Fix uninitialized variable 'rv' in + ish_fw_xfer_direct_dma (git-fixes). +- usb: dwc3: core: Stop processing of pending events if controller + is halted (git-fixes). +- usb: gadget: core: force synchronous registration (git-fixes). +- commit 2bb6fd5 + +------------------------------------------------------------------- +Sun Oct 13 09:19:15 CEST 2024 - tiwai@suse.de + +- hwmon: (adt7470) Add missing dependency on REGMAP_I2C + (git-fixes). +- hwmon: (adm9240) Add missing dependency on REGMAP_I2C + (git-fixes). +- hwmon: (mc34vr500) Add missing dependency on REGMAP_I2C + (git-fixes). +- hwmon: (tmp513) Add missing dependency on REGMAP_I2C + (git-fixes). +- hwmon: intel-m10-bmc-hwmon: relabel Columbiaville to CVL Die + Temperature (git-fixes). +- commit 07e1f67 + +------------------------------------------------------------------- +Sat Oct 12 10:12:54 CEST 2024 - tiwai@suse.de + +- gpio: aspeed: Use devm_clk api to manage clock source + (git-fixes). +- gpio: aspeed: Add the flush write to ensure the write complete + (git-fixes). +- ata: libata: avoid superfluous disk spin down + spin up during + hibernation (git-fixes). +- nouveau/dmem: Fix vulnerability in migrate_to_ram upon copy + error (git-fixes). +- nouveau/dmem: Fix privileged error in copy engine channel + (git-fixes). +- drm/vc4: Stop the active perfmon before being destroyed + (git-fixes). +- drm/v3d: Stop the active perfmon before being destroyed + (git-fixes). +- drm/i915/hdcp: fix connector refcounting (git-fixes). +- commit 8534efe + +------------------------------------------------------------------- +Sat Oct 12 05:12:33 CEST 2024 - shung-hsi.yu@suse.com + +- kABI: bpf: struct bpf_insn_acces_aux kABI workaround (git-fixes). +- commit c2cff36 + +------------------------------------------------------------------- +Fri Oct 11 18:25:31 CEST 2024 - vkarasulli@suse.de + +- Update patches.suse/ASoC-meson-axg-card-fix-use-after-free.patch + (git-fixes CVE-2024-46849 bsc#1231073). +- Update + patches.suse/KVM-x86-Acquire-kvm-srcu-when-handling-KVM_SET_VCPU_.patch + (git-fixes CVE-2024-46830 bsc#1231116). +- Update + patches.suse/PCI-keystone-Add-workaround-for-Errata-i2037-AM65x-S.patch + (stable-fixes CVE-2024-47667 bsc#1231481). +- Update patches.suse/USB-usbtmc-prevent-kernel-usb-infoleak.patch + (git-fixes CVE-2024-47671 bsc#1231541). +- Update patches.suse/arm64-tlb-Fix-TLBI-RANGE-operand.patch + (bsc#1229585 CVE-2024-35980 bsc#1224574). +- Update + patches.suse/dma-buf-heaps-Fix-off-by-one-in-CMA-heap-fault-handl.patch + (git-fixes CVE-2024-46852 bsc#1231082). +- Update + patches.suse/drm-amd-amdgpu-Check-tbo-resource-pointer.patch + (stable-fixes CVE-2024-46807 bsc#1231138). +- Update + patches.suse/drm-amd-display-Add-array-index-check-for-hdcp-ddc-a.patch + (stable-fixes CVE-2024-46804 bsc#1231132). +- Update + patches.suse/drm-amd-display-Avoid-overflow-from-uint32_t-to-uint.patch + (stable-fixes CVE-2024-47661 bsc#1231496). +- Update + patches.suse/drm-amd-display-Avoid-race-between-dcn10_set_drr-and.patch + (git-fixes CVE-2024-46851 bsc#1231081). +- Update + patches.suse/drm-amd-display-Check-BIOS-images-before-it-is-used.patch + (stable-fixes CVE-2024-46809 bsc#1231148). +- Update + patches.suse/drm-amd-display-Check-gpio_id-before-used-as-array-i.patch + (stable-fixes CVE-2024-46818 bsc#1231203). +- Update + patches.suse/drm-amd-display-Check-msg_id-before-processing-trans.patch + (stable-fixes CVE-2024-46814 bsc#1231193). +- Update + patches.suse/drm-amd-display-Check-num_valid_sets-before-accessin.patch + (stable-fixes CVE-2024-46815 bsc#1231195). +- Update + patches.suse/drm-amd-display-Correct-the-defined-value-for-AMDGPU.patch + (stable-fixes CVE-2024-46871 bsc#1231434). +- Update + patches.suse/drm-amd-display-Fix-index-may-exceed-array-range-wit.patch + (stable-fixes CVE-2024-46811 bsc#1231179). +- Update + patches.suse/drm-amd-display-Remove-register-from-DCN35-DMCUB-dia.patch + (stable-fixes CVE-2024-47662 bsc#1231440). +- Update + patches.suse/drm-amd-display-Skip-inactive-planes-within-ModeSupp.patch + (stable-fixes CVE-2024-46812 bsc#1231187). +- Update + patches.suse/drm-amd-display-Stop-amdgpu_dm-initialize-when-strea.patch + (stable-fixes CVE-2024-46817 bsc#1231200). +- Update + patches.suse/drm-amd-display-added-NULL-check-at-start-of-dc_vali.patch + (stable-fixes CVE-2024-46802 bsc#1231111). +- Update + patches.suse/drm-amd-pm-Fix-negative-array-index-read.patch + (stable-fixes CVE-2024-46821 bsc#1231169). +- Update + patches.suse/drm-amdgpu-Fix-smatch-static-checker-warning.patch + (stable-fixes CVE-2024-46835 bsc#1231098). +- Update + patches.suse/drm-amdgpu-Fix-the-warning-division-or-modulo-by-zer.patch + (stable-fixes CVE-2024-46806 bsc#1231136). +- Update + patches.suse/drm-amdgpu-fix-the-waring-dereferencing-hive.patch + (stable-fixes CVE-2024-46805 bsc#1231135). +- Update + patches.suse/drm-amdgpu-the-warning-dereferencing-obj-for-nbio_v7.patch + (stable-fixes CVE-2024-46819 bsc#1231202). +- Update + patches.suse/drm-amdkfd-Check-debug-trap-enable-before-write-dbg_.patch + (stable-fixes CVE-2024-46803 bsc#1231131). +- Update + patches.suse/drm-bridge-tc358767-Check-if-fully-initialized-befor.patch + (stable-fixes CVE-2024-46810 bsc#1231178). +- Update + patches.suse/i3c-mipi-i3c-hci-Error-out-instead-on-BUG_ON-in-IBI-.patch + (stable-fixes CVE-2024-47665 bsc#1231452). +- Update + patches.suse/lib-generic-radix-tree.c-Fix-rare-race-in-__genradix.patch + (stable-fixes CVE-2024-47668 bsc#1231502). +- Update + patches.suse/msft-hv-3054-x86-hyperv-fix-kexec-crash-due-to-VP-assist-page-cor.patch + (git-fixes CVE-2024-46864 bsc#1231108). +- Update + patches.suse/nilfs2-fix-state-management-in-error-path-of-log-writing-function.patch + (git-fixes CVE-2024-47669 bsc#1231474). +- Update + patches.suse/ocfs2-add-bounds-checking-to-ocfs2_xattr_find_entry.patch + (bsc#1228410 CVE-2024-41016 CVE-2024-47670 bsc#1231537). +- Update + patches.suse/perf-x86-intel-Limit-the-period-on-Haswell.patch + (git-fixes CVE-2024-46848 bsc#1231072). +- Update + patches.suse/platform-x86-panasonic-laptop-Fix-SINF-array-out-of-.patch + (git-fixes CVE-2024-46859 bsc#1231089). +- Update + patches.suse/rcu-Fix-buffer-overflow-in-print_cpu_stall_info.patch + (bsc#1226623 CVE-2024-38576). +- Update + patches.suse/rcu-tasks-Fix-show_rcu_tasks_trace_gp_kthread-buffer-overflow.patch + (bsc#1226631 CVE-2024-38577). +- Update + patches.suse/scsi-lpfc-Handle-mailbox-timeouts-in-lpfc_get_sfp_in.patch + (bsc#1228857 CVE-2024-46842 bsc#1231101). +- Update + patches.suse/spi-nxp-fspi-fix-the-KASAN-report-out-of-bounds-bug.patch + (git-fixes CVE-2024-46853 bsc#1231083). +- Update + patches.suse/spi-rockchip-Resolve-unbalanced-runtime-PM-system-PM.patch + (git-fixes CVE-2024-46846 bsc#1231075). +- Update + patches.suse/staging-iio-frequency-ad9834-Validate-frequency-para.patch + (git-fixes CVE-2024-47663 bsc#1231441). +- Update + patches.suse/usb-gadget-aspeed_udc-validate-endpoint-index-for-as.patch + (stable-fixes CVE-2024-46836 bsc#1231092). +- Update + patches.suse/usbnet-ipheth-do-not-stop-RX-on-failing-RX-callback.patch + (git-fixes CVE-2024-46861 bsc#1231102). +- Update + patches.suse/wifi-ath12k-fix-firmware-crash-due-to-invalid-peer-n.patch + (stable-fixes CVE-2024-46827 bsc#1231171). +- Update + patches.suse/wifi-iwlwifi-mvm-don-t-wait-for-tx-queues-if-firmwar.patch + (stable-fixes CVE-2024-47672 bsc#1231540). +- Update + patches.suse/wifi-iwlwifi-mvm-pause-TCM-when-the-firmware-is-stop.patch + (stable-fixes CVE-2024-47673 bsc#1231539). +- Update + patches.suse/wifi-iwlwifi-mvm-use-IWL_FW_CHECK-for-link-ID-check.patch + (stable-fixes CVE-2024-46825 bsc#1231170). +- Update + patches.suse/wifi-mt76-mt7921-fix-NULL-pointer-access-in-mt7921_i.patch + (stable-fixes CVE-2024-46860 bsc#1231093). +- commit 1ed6329 + +------------------------------------------------------------------- +Fri Oct 11 14:36:01 CEST 2024 - mgorman@suse.de + +- sched/smt: Fix unbalance sched_smt_present dec/inc + (CVE-2024-44958 bsc#1230179). +- sched/smt: Introduce sched_smt_present_inc/dec() helper + (CVE-2024-44958 bsc#1230179). +- commit b09820b + +------------------------------------------------------------------- +Fri Oct 11 13:25:41 CEST 2024 - tiwai@suse.de + +- crypto: octeontx* - Select CRYPTO_AUTHENC (git-fixes). +- commit 155c418 + +------------------------------------------------------------------- +Fri Oct 11 13:23:57 CEST 2024 - tiwai@suse.de + +- spi: spi-imx: Fix pm_runtime_set_suspended() with runtime pm + enabled (git-fixes). +- spi: s3c64xx: fix timeout counters in flush_fifo (git-fixes). +- i2c: synquacer: Deal with optional PCLK correctly (git-fixes). +- media: imx335: Fix reset-gpio handling (git-fixes). +- i2c: xiic: Try re-initialization on bus busy timeout + (git-fixes). +- platform/x86: touchscreen_dmi: add nanote-next quirk + (stable-fixes). +- platform/x86: lenovo-ymc: Ignore the 0x0 state (stable-fixes). +- hwmon: (nct6775) add G15CF to ASUS WMI monitoring list + (stable-fixes). +- power: reset: brcmstb: Do not go into infinite loop if reset + fails (stable-fixes). +- wifi: ath9k_htc: Use __skb_set_length() for resetting urb + before resubmit (stable-fixes). +- wifi: mt76: mt7915: hold dev->mt76.mutex while disabling tx + worker (stable-fixes). +- wifi: mt76: mt7915: add dummy HW offload of IEEE 802.11 + fragmentation (stable-fixes). +- wifi: mt76: mt7915: disable tx worker during tx BA session + enable/disable (stable-fixes). +- wifi: rtw89: avoid reading out of bounds when loading TX power + FW elements (stable-fixes). +- wifi: rtw89: correct base HT rate mask for firmware + (stable-fixes). +- wifi: mwifiex: Fix memcpy() field-spanning write warning in + mwifiex_cmd_802_11_scan_ext() (stable-fixes). +- wifi: cfg80211: Set correct chandef when starting CAC + (stable-fixes). +- wifi: mac80211: fix RCU list iterations (stable-fixes). +- wifi: iwlwifi: mvm: avoid NULL pointer dereference + (stable-fixes). +- wifi: iwlwifi: allow only CN mcc from WRDD (stable-fixes). +- wifi: iwlwifi: mvm: drop wrong STA selection in TX + (stable-fixes). +- wifi: iwlwifi: mvm: Fix a race in scan abort flow + (stable-fixes). +- wifi: iwlwifi: mvm: use correct key iteration (stable-fixes). +- wifi: ath9k: fix possible integer overflow in + ath9k_get_et_stats() (stable-fixes). +- wifi: ath11k: fix array out-of-bound access in SoC stats + (stable-fixes). +- wifi: ath12k: fix array out-of-bound access in SoC stats + (stable-fixes). +- wifi: rtw89: avoid to add interface to list twice when SER + (stable-fixes). +- wifi: rtw88: select WANT_DEV_COREDUMP (stable-fixes). +- i2c: xiic: improve error message when transfer fails to start + (stable-fixes). +- i2c: synquacer: Remove a clk reference from struct synquacer_i2c + (stable-fixes). +- media: i2c: imx335: Enable regulator supplies (stable-fixes). +- commit 490fb1f + +------------------------------------------------------------------- +Fri Oct 11 13:16:10 CEST 2024 - tiwai@suse.de + +- ALSA: usb-audio: Replace complex quirk lines with macros + (stable-fixes). +- commit 6f67136 + +------------------------------------------------------------------- +Fri Oct 11 13:14:26 CEST 2024 - tiwai@suse.de + +- Bluetooth: RFCOMM: FIX possible deadlock in + rfcomm_sk_state_change (git-fixes). +- ACPI: battery: Fix possible crash when unregistering a battery + hook (git-fixes). +- ACPI: battery: Simplify battery hook locking (stable-fixes). +- ACPI: resource: Add Asus ExpertBook B2502CVA to + irq1_level_low_skip_override[] (stable-fixes). +- ACPI: resource: Add Asus Vivobook X1704VAP to + irq1_level_low_skip_override[] (stable-fixes). +- HID: Ignore battery for all ELAN I2C-HID devices (stable-fixes). +- HID: multitouch: Add support for Thinkpad X12 Gen 2 Kbd + Portfolio (stable-fixes). +- ASoC: codecs: wsa883x: Handle reading version failure + (stable-fixes). +- ALSA: usb-audio: Add logitech Audio profile quirk + (stable-fixes). +- ALSA: usb-audio: Define macros for quirk table entries + (stable-fixes). +- ALSA: hdsp: Break infinite MIDI input flush loop (stable-fixes). +- ALSA: asihpi: Fix potential OOB array access (stable-fixes). +- ALSA: usb-audio: Add input value sanity checks for standard + types (stable-fixes). +- ACPI: PAD: fix crash in exit_round_robin() (stable-fixes). +- ACPI: video: Add force_vendor quirk for Panasonic Toughbook + CF-18 (stable-fixes). +- ACPI: CPPC: Add support for setting EPP register in FFH + (stable-fixes). +- ACPI: EC: Do not release locks during operation region accesses + (stable-fixes). +- ACPICA: iasl: handle empty connection_node (stable-fixes). +- ACPICA: Fix memory leak if acpi_ps_get_next_field() fails + (stable-fixes). +- ACPICA: Fix memory leak if acpi_ps_get_next_namepath() fails + (stable-fixes). +- ACPICA: check null return of ACPI_ALLOCATE_ZEROED() in + acpi_db_convert_to_package() (stable-fixes). +- crypto: octeontx2 - Fix authenc setkey (stable-fixes). +- crypto: octeontx - Fix authenc setkey (stable-fixes). +- Bluetooth: btusb: Add Realtek RTL8852C support ID 0x0489:0xe122 + (stable-fixes). +- can: netlink: avoid call to do_set_data_bittiming callback + with stale can_priv::ctrlmode (stable-fixes). +- commit 650f32e + +------------------------------------------------------------------- +Fri Oct 11 11:33:14 CEST 2024 - ailiop@suse.com + +- ocfs2: fix the la space leak when unmounting an ocfs2 volume + (git-fixes). +- commit 92d1b30 + +------------------------------------------------------------------- +Fri Oct 11 11:29:38 CEST 2024 - ailiop@suse.com + +- jfs: Fix uninit-value access of new_ea in ea_buffer (git-fixes). +- commit b1e0ef1 + +------------------------------------------------------------------- +Fri Oct 11 11:29:02 CEST 2024 - ailiop@suse.com + +- jfs: check if leafidx greater than num leaves per dmap tree + (git-fixes). +- commit 4cb79e7 + +------------------------------------------------------------------- +Fri Oct 11 11:28:08 CEST 2024 - ailiop@suse.com + +- jfs: Fix uaf in dbFreeBits (git-fixes). +- commit da4aab1 + +------------------------------------------------------------------- +Fri Oct 11 11:27:16 CEST 2024 - ailiop@suse.com + +- jfs: UBSAN: shift-out-of-bounds in dbFindBits (git-fixes). +- commit fee8a70 + +------------------------------------------------------------------- +Fri Oct 11 06:57:49 CEST 2024 - shung-hsi.yu@suse.com + +- kABI: bpf: enum bpf_{type_flag,arg_type} kABI workaround (git-fixes). +- commit 93e6047 + +------------------------------------------------------------------- +Thu Oct 10 19:18:41 CEST 2024 - vkarasulli@suse.de + +- iommu/amd: Allocate the page table root using GFP_KERNEL + (git-fixes). +- commit cdbbb3f + +------------------------------------------------------------------- +Thu Oct 10 19:10:13 CEST 2024 - vkarasulli@suse.de + +- iommu/amd: Fix typo of , instead of ; (git-fixes). +- commit baf85d0 + +------------------------------------------------------------------- +Thu Oct 10 17:32:18 CEST 2024 - dwagner@suse.de + +- block: sed-opal: add ioctl IOC_OPAL_SET_SID_PW (bsc#1229677). +- commit 5ca02dc + +------------------------------------------------------------------- +Thu Oct 10 11:54:20 CEST 2024 - hare@suse.de + +- nvme-multipath: suppress partition scan until the disk is ready + (bsc#1228244). +- commit 5accc60 + +------------------------------------------------------------------- +Wed Oct 9 23:52:08 CEST 2024 - krisman@suse.de + +- fix bitmap corruption on close_range() with CLOSE_RANGE_UNSHARE + (CVE-2024-45025 bsc#1230456). +- commit c3824ef + +------------------------------------------------------------------- +Wed Oct 9 19:24:22 CEST 2024 - oneukum@suse.com + +- i2c: core: Setup i2c_adapter runtime-pm before calling + device_add() (git-fixes). +- commit 5095dfb + +------------------------------------------------------------------- +Wed Oct 9 19:15:38 CEST 2024 - oneukum@suse.com + +- i2c: ismt: kill transaction in hardware on timeout (git-fixes). +- commit f6029bb + +------------------------------------------------------------------- +Wed Oct 9 19:11:31 CEST 2024 - vkarasulli@suse.de + +- iommufd: Check the domain owner of the parent before creating + a nesting domain (git-fixes). +- commit 3ff7340 + +------------------------------------------------------------------- +Wed Oct 9 19:01:29 CEST 2024 - vkarasulli@suse.de + +- iommufd: Protect against overflow of ALIGN() during iova + allocation (git-fixes). +- commit fffeb67 + +------------------------------------------------------------------- +Wed Oct 9 18:59:06 CEST 2024 - vkarasulli@suse.de + +- iommu/amd: Do not set the D bit on AMD v2 table entries + (git-fixes). +- commit e3053a9 + +------------------------------------------------------------------- +Wed Oct 9 18:58:44 CEST 2024 - oneukum@suse.com + +- i2c: omap: wakeup the controller during suspend() callback + (git-fixes). +- commit 52f3dad + +------------------------------------------------------------------- +Wed Oct 9 18:57:28 CEST 2024 - oneukum@suse.com + +- i2c: omap: switch to NOIRQ_SYSTEM_SLEEP_PM_OPS() and + RUNTIME_PM_OPS() (git-fixes). +- commit 3fe2f94 + +------------------------------------------------------------------- +Wed Oct 9 17:03:57 CEST 2024 - tiwai@suse.de + +- Drop the previous HD-audio TAS2781 fix (bsc#1230132) + The proposed fix turned out to be incorrect +- commit b3a4c29 + +------------------------------------------------------------------- +Wed Oct 9 16:10:51 CEST 2024 - rgoldwyn@suse.com + +- Update config files: Enable NFSD_V2 (bsc#1230914) + NFSv2 was disabled because of the upstream kernel commit 2f3a4b2ac2f2 + ("nfsd: allow disabling NFSv2 at compile time"). + Enable it for the few users who cannot upgrade to NFSv3. + https://bugzilla.suse.com/show_bug.cgi?id=1230914#c5 +- commit 9e3254d + ------------------------------------------------------------------- Wed Oct 9 16:07:58 CEST 2024 - nstange@suse.de - Enable livepatching related packages on -RT (jsc#PED-1706) - commit cdfdbf1 +------------------------------------------------------------------- +Wed Oct 9 15:24:02 CEST 2024 - oneukum@suse.com + +- i2c: stm32f7: perform most of irq job in threaded handler + (git-fixes). +- commit 4a35980 + +------------------------------------------------------------------- +Wed Oct 9 15:11:44 CEST 2024 - oneukum@suse.com + +- i2c: i801: Add lis3lv02d for Dell XPS 15 7590 (git-fixes). +- commit 38f58af + +------------------------------------------------------------------- +Wed Oct 9 14:59:29 CEST 2024 - oneukum@suse.com + +- i2c: i801: Add lis3lv02d for Dell Precision 3540 (git-fixes). +- commit 036aff9 + +------------------------------------------------------------------- +Wed Oct 9 14:47:22 CEST 2024 - oneukum@suse.com + +- i2c: cpm: Remove linux,i2c-index conversion from be32 + (git-fixes). +- commit 5d04b4e + +------------------------------------------------------------------- +Wed Oct 9 14:42:11 CEST 2024 - oneukum@suse.com + +- i2c: ocores: Move system PM hooks to the NOIRQ phase + (git-fixes). +- commit 0df7a53 + +------------------------------------------------------------------- +Wed Oct 9 14:41:10 CEST 2024 - oneukum@suse.com + +- i2c: ocores: Remove #ifdef guards for PM related functions + (git-fixes). +- commit ead06ad + +------------------------------------------------------------------- +Wed Oct 9 14:38:59 CEST 2024 - tiwai@suse.de + +- wifi: iwlwifi: config: label 'gl' devices as discrete + (git-fixes). +- commit 6321867 + +------------------------------------------------------------------- +Wed Oct 9 14:36:36 CEST 2024 - tiwai@suse.de + +- kconfig: qconf: fix buffer overflow in debug links (git-fixes). +- platform/x86: ISST: Fix the KASAN report slab-out-of-bounds bug + (git-fixes). +- i2c: stm32f7: Do not prepare/unprepare clock during runtime + suspend/resume (git-fixes). +- gpio: davinci: fix lazy disable (git-fixes). +- drm/i915/gem: fix bitwise and logical AND mixup (git-fixes). +- drm/sched: Always wake up correct scheduler in + drm_sched_entity_push_job (git-fixes). +- drm/sched: Add locking to drm_sched_entity_modify_sched + (git-fixes). +- drm: Consistently use struct drm_mode_rect for FB_DAMAGE_CLIPS + (git-fixes). +- Bluetooth: hci_event: Align BR/EDR JUST_WORKS paring with LE + (git-fixes). +- Bluetooth: btmrvl: Use IRQF_NO_AUTOEN flag in request_irq() + (git-fixes). +- ieee802154: Fix build error (git-fixes). +- Input: adp5589-keys - fix adp5589_gpio_get_value() (git-fixes). +- Input: adp5589-keys - fix NULL pointer dereference (git-fixes). +- drm/amdgpu/vcn: enable AV1 on both instances (stable-fixes). +- drm/amd/display: Validate backlight caps are sane + (stable-fixes). +- drm/amd/display: Skip to enable dsc if it has been off + (stable-fixes). +- drm/amd/display: Add HDMI DSC native YCbCr422 support + (stable-fixes). +- drm/amd/display: Clean up dsc blocks in accelerated mode + (stable-fixes). +- drm/amd/display: Round calculated vtotal (stable-fixes). +- efistub/tpm: Use ACPI reclaim memory for event log to avoid + corruption (stable-fixes). +- iio: magnetometer: ak8975: drop incorrect AK09116 compatible + (git-fixes). +- Input: i8042 - add TUXEDO Stellaris 15 Slim Gen6 AMD to i8042 + quirk table (stable-fixes). +- Input: i8042 - add another board name for TUXEDO Stellaris + Gen5 AMD line (stable-fixes). +- Input: i8042 - add TUXEDO Stellaris 16 Gen5 AMD to i8042 quirk + table (stable-fixes). +- hwmon: (max16065) Fix alarm attributes (git-fixes). +- ACPI: resource: Add another DMI match for the TongFang GMxXGxx + (stable-fixes). +- wifi: rtw88: 8821cu: Remove VID/PID 0bda:c82c (stable-fixes). +- ASoC: tas2781: Use of_property_read_reg() (stable-fixes). +- wifi: iwlwifi: remove AX101, AX201 and AX203 support from LNL + (stable-fixes). +- hwmon: (max16065) Remove use of i2c_match_id() (stable-fixes). +- nouveau/gsp: Avoid addressing beyond end of rpc->entries + (stable-fixes). +- thunderbolt: Improve DisplayPort tunnel setup process to be + more robust (stable-fixes). +- iio: magnetometer: ak8975: Fix 'Unexpected device' error + (git-fixes). +- iio: magnetometer: ak8975: Convert enum->pointer for data in + the match tables (stable-fixes). +- commit 85984c8 + +------------------------------------------------------------------- +Wed Oct 9 14:26:52 CEST 2024 - oneukum@suse.com + +- i2c: core: fix lockdep warning for sparsely nested adapter chain + (git-fixes). +- commit 691570d + +------------------------------------------------------------------- +Wed Oct 9 14:23:18 CEST 2024 - oneukum@suse.com + +- i2c: exynos5: Calculate t_scl_l, t_scl_h according to i2c spec + (git-fixes). +- commit cbbb120 + +------------------------------------------------------------------- +Wed Oct 9 14:15:28 CEST 2024 - oneukum@suse.com + +- i2c: i801: add helper i801_restore_regs (git-fixes). +- commit 3839f86 + +------------------------------------------------------------------- +Wed Oct 9 14:01:22 CEST 2024 - oneukum@suse.com + +- i2c: rcar: properly format a debug output (git-fixes). +- commit e7085c8 + +------------------------------------------------------------------- +Wed Oct 9 12:04:43 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add a test case to write mtu result into .rodata + (git-fixes). +- selftests/bpf: Add a test case to write strtol result into + .rodata (git-fixes). +- commit 805bbba + +------------------------------------------------------------------- +Wed Oct 9 12:03:13 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Rename ARG_PTR_TO_LONG test description + (git-fixes). +- selftests/bpf: Fix ARG_PTR_TO_LONG {half-,}uninitialized test + (git-fixes). +- bpf: Zero former ARG_PTR_TO_{LONG,INT} args in case of error + (git-fixes). +- bpf: Improve check_raw_mode_ok test for MEM_UNINIT-tagged types + (git-fixes). +- commit 4580630 + +------------------------------------------------------------------- +Wed Oct 9 11:27:23 CEST 2024 - shung-hsi.yu@suse.com + +- bpf: Fix helper writes to read-only maps (git-fixes). +- bpf: Remove truncation test in bpf_strtol and bpf_strtoul + helpers (git-fixes). +- bpf: Fix bpf_strtol and bpf_strtoul helpers for 32bit + (git-fixes). +- commit 5fc2ffd + +------------------------------------------------------------------- +Wed Oct 9 11:17:51 CEST 2024 - vkarasulli@suse.de + +- bpf: Remove tst_run from lwt_seg6local_prog_ops (bsc#1230801 + CVE-2024-46754). +- commit a7335b8 + +------------------------------------------------------------------- +Wed Oct 9 11:12:18 CEST 2024 - shung-hsi.yu@suse.com + +- bpf: Fix error message on kfunc arg type mismatch (git-fixes). +- commit 04ed437 + +------------------------------------------------------------------- +Wed Oct 9 10:59:52 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: test for malformed BPF_CORE_TYPE_ID_LOCAL + relocation (git-fixes). +- bpf: correctly handle malformed BPF_CORE_TYPE_ID_LOCAL relos + (git-fixes). +- commit 67ebe66 + +------------------------------------------------------------------- +Wed Oct 9 10:58:29 CEST 2024 - shung-hsi.yu@suse.com + +- selftests/bpf: Add tests for ldsx of pkt data/data_end/data_meta + accesses (git-fixes). +- bpf: Fail verification for sign-extension of packet + data/data_end/data_meta (git-fixes). +- bpf, lsm: Add disabled BPF LSM hook list (git-fixes). +- commit df1486e + +------------------------------------------------------------------- +Wed Oct 9 10:03:28 CEST 2024 - shung-hsi.yu@suse.com + +- bpf, net: Fix a potential race in do_sock_getsockopt() + (git-fixes). +- bpf: Fix tailcall cases in test_bpf (git-fixes). +- bpf, x64: Remove tail call detection (git-fixes). +- bpf, verifier: Correct tail_call_reachable for bpf prog + (git-fixes). +- commit e072387 + +------------------------------------------------------------------- +Tue Oct 8 18:58:44 CEST 2024 - ohering@suse.de + +- add bug reference for a mana change (bsc#1229769). +- commit 64c619e + +------------------------------------------------------------------- +Tue Oct 8 17:54:22 CEST 2024 - dsterba@suse.com + +- net/sched: taprio: extend minimum interval restriction to entire cycle too (CVE-2024-36244 bsc#1226797) +- commit 5ade9d6 + +------------------------------------------------------------------- +Tue Oct 8 17:39:16 CEST 2024 - andrea.porta@suse.com + +- arm64: fix selection of HAVE_DYNAMIC_FTRACE_WITH_ARGS + (git-fixes). +- commit 7e90455 + +------------------------------------------------------------------- +Tue Oct 8 17:01:15 CEST 2024 - andrea.porta@suse.com + +- arm64: errata: Enable the AC03_CPU_38 workaround for ampere1a + (git-fixes). +- commit 994f16f + +------------------------------------------------------------------- +Tue Oct 8 16:00:31 CEST 2024 - jlee@suse.com + +- aoe: fix the potential use-after-free problem in more places + (bsc#1218562 CVE-2023-6270). +- commit 1a991ba + +------------------------------------------------------------------- +Tue Oct 8 14:34:25 CEST 2024 - tiwai@suse.de + +- ALSA: hda: tas2781: Fix missing setup at runtime PM + (bsc#1230132). +- commit 3dc7842 + +------------------------------------------------------------------- +Tue Oct 8 14:33:35 CEST 2024 - tiwai@suse.de + +- Move upstreamed sound patch into sorted section +- commit b11079c + +------------------------------------------------------------------- +Tue Oct 8 14:31:27 CEST 2024 - msuchanek@suse.de + +- kbuild,bpf: Add module-specific pahole flags for distilled + base BTF (bsc#1230414 bsc#1229450). +- kbuild: bpf: Tell pahole to DECL_TAG kfuncs (bsc#1230414 + bsc#1229450). +- kbuild, bpf: Use test-ge check for v1.25-only pahole + (bsc#1230414 bsc#1229450). +- kbuild,bpf: Switch to using --btf_features for pahole v1.26 + and later (bsc#1230414 bsc#1229450). +- kbuild: avoid too many execution of scripts/pahole-flags.sh + (bsc#1230414 bsc#1229450). +- btf, scripts: rust: drop is_rust_module.sh (bsc#1230414 + bsc#1229450). +- commit e2cacce + +------------------------------------------------------------------- +Tue Oct 8 13:40:12 CEST 2024 - tiwai@suse.de + +- Use pahole -j1 option for reproducible builds (bsc#1230414 + bsc#1229450). +- commit 340585e + +------------------------------------------------------------------- +Tue Oct 8 11:56:04 CEST 2024 - lhenriques@suse.de + +- ceph: fix cap ref leak via netfs init_request (bsc#1231384). +- commit ca24d43 + +------------------------------------------------------------------- +Tue Oct 8 11:50:08 CEST 2024 - jgross@suse.com + +- vhost/scsi: null-ptr-dereference in vhost_scsi_get_req() + (git-fixes). +- commit 267df6b + +------------------------------------------------------------------- +Tue Oct 8 11:17:47 CEST 2024 - jgross@suse.com + +- virtio_console: fix misc probe bugs (git-fixes). +- commit f7d3065 + +------------------------------------------------------------------- +Tue Oct 8 11:13:40 CEST 2024 - ohering@suse.de + +- RDMA/mana_ib: use the correct page size for mapping user-mode + doorbell page (git-fixes). +- RDMA/mana_ib: use the correct page table index based on hardware + page size (git-fixes). +- tools: hv: rm .*.cmd when make clean (git-fixes). +- x86/hyperv: Set X86_FEATURE_TSC_KNOWN_FREQ when Hyper-V provides + frequency (git-fixes). +- commit 059fd95 + +------------------------------------------------------------------- +Tue Oct 8 10:45:27 CEST 2024 - jgross@suse.com + +- KVM: VMX: Set PFERR_GUEST_{FINAL,PAGE}_MASK if and only if + the GVA is valid (git-fixes). +- commit bb6f3d3 + +------------------------------------------------------------------- +Tue Oct 8 10:13:08 CEST 2024 - jgross@suse.com + +- KVM: x86/mmu: Skip emulation on page fault iff 1+ SPs were + unprotected (git-fixes). +- commit bcfafe2 + +------------------------------------------------------------------- +Tue Oct 8 09:35:38 CEST 2024 - jgross@suse.com + +- KVM: x86/mmu: Trigger unprotect logic only on write-protection + page faults (git-fixes). +- commit 322cf36 + +------------------------------------------------------------------- +Mon Oct 7 19:31:27 CEST 2024 - jgross@suse.com + +- KVM: VMX: Also clear SGX EDECCSSA in KVM CPU caps when SGX is + disabled (git-fixes). +- commit d7b7771 + +------------------------------------------------------------------- +Mon Oct 7 19:03:42 CEST 2024 - fdmanana@suse.com + +- btrfs: send: fix invalid clone operation for file that got + its size decreased (git-fixes). +- commit 26ee3ac + +------------------------------------------------------------------- +Mon Oct 7 18:25:48 CEST 2024 - jgross@suse.com + +- KVM: x86: Exit to userspace if fastpath triggers one on + instruction skip (git-fixes). +- commit 1621f7b + +------------------------------------------------------------------- +Mon Oct 7 17:53:20 CEST 2024 - jgross@suse.com + +- KVM: x86: Dedup fastpath MSR post-handling logic (git-fixes). +- commit c20ff7c + +------------------------------------------------------------------- +Mon Oct 7 17:19:33 CEST 2024 - jgross@suse.com + +- KVM: x86: Re-enter guest if WRMSR(X2APIC_ICR) fastpath is + successful (git-fixes). +- commit 0dc4c78 + +------------------------------------------------------------------- +Mon Oct 7 16:25:12 CEST 2024 - jgross@suse.com + +- kABI fix of VM: x86: Re-split x2APIC ICR into ICR+ICR2 for AMD + (x2AVIC) (git-fixes). +- commit 0a6716e + +------------------------------------------------------------------- +Mon Oct 7 15:01:37 CEST 2024 - jgross@suse.com + +- KVM: x86: Re-split x2APIC ICR into ICR+ICR2 for AMD (x2AVIC) + (git-fixes). +- commit 6a07b23 + +------------------------------------------------------------------- +Mon Oct 7 14:28:23 CEST 2024 - jgross@suse.com + +- KVM: x86: Move x2APIC ICR helper above kvm_apic_write_nodecode() + (git-fixes). +- commit 4f194f7 + +------------------------------------------------------------------- +Mon Oct 7 14:12:30 CEST 2024 - oneukum@suse.com + +- USB: misc: yurex: fix race between read and write (git-fixes). +- commit 7f6ab55 + +------------------------------------------------------------------- +Mon Oct 7 14:07:19 CEST 2024 - oneukum@suse.com + +- USB: misc: cypress_cy7c63: check for short transfer (git-fixes). +- commit 3dcfad1 + +------------------------------------------------------------------- +Mon Oct 7 14:03:19 CEST 2024 - oneukum@suse.com + +- USB: appledisplay: close race between probe and completion + handler (git-fixes). +- commit 888718f + +------------------------------------------------------------------- +Mon Oct 7 13:37:47 CEST 2024 - jgross@suse.com + +- KVM: x86: Enforce x2APIC's must-be-zero reserved ICR bits + (git-fixes). +- commit 891c3ef + +------------------------------------------------------------------- +Mon Oct 7 13:15:47 CEST 2024 - oneukum@suse.com + +- usb: xhci: fix loss of data on Cadence xHC (git-fixes). +- commit 9e9d585 + +------------------------------------------------------------------- +Mon Oct 7 12:59:08 CEST 2024 - jgross@suse.com + +- KVM: Write the per-page "segment" when clearing (part of) + a guest page (git-fixes). +- commit dae8f10 + +------------------------------------------------------------------- +Mon Oct 7 12:51:27 CEST 2024 - oneukum@suse.com + +- xhci: Add a quirk for writing ERST in high-low order + (git-fixes). +- commit d0eccfc + +------------------------------------------------------------------- +Mon Oct 7 12:34:01 CEST 2024 - tzimmermann@suse.com + +- drm/amd/display: Validate function returns (bsc#1230774 CVE-2024-46775) +- commit fc9ad2b + +------------------------------------------------------------------- +Mon Oct 7 12:19:24 CEST 2024 - jgross@suse.com + +- KVM: Fix coalesced_mmio_has_room() to avoid premature userspace + exit (git-fixes). +- commit 93dbc58 + +------------------------------------------------------------------- +Mon Oct 7 11:39:38 CEST 2024 - jgross@suse.com + +- KVM: Use dedicated mutex to protect kvm_usage_count to avoid + deadlock (git-fixes). +- commit 2ff88a8 + +------------------------------------------------------------------- +Mon Oct 7 11:13:48 CEST 2024 - msuchanek@suse.de + +- Delete some more obsolete scripts +- commit 9bb77f8 + +------------------------------------------------------------------- +Mon Oct 7 10:44:04 CEST 2024 - jgross@suse.com + +- KVM: SVM: Disallow guest from changing userspace's + MSR_AMD64_DE_CFG value (git-fixes). +- commit c8fa16d + +------------------------------------------------------------------- +Mon Oct 7 10:19:47 CEST 2024 - pjakobsson@suse.de + +- drm/amd/display: Stop amdgpu_dm initialize when link nums greater than max_links (CVE-2024-46816 bsc#1231197). +- commit c05e7e2 + +------------------------------------------------------------------- +Mon Oct 7 10:11:27 CEST 2024 - jgross@suse.com + +- net: test for not too small csum_start in + virtio_net_hdr_to_skb() (git-fixes). +- commit ed78dff + +------------------------------------------------------------------- +Mon Oct 7 09:39:06 CEST 2024 - jgross@suse.com + +- vhost_vdpa: assign irq bypass producer token correctly + (git-fixes). +- commit 1a9cba6 + +------------------------------------------------------------------- +Mon Oct 7 09:16:13 CEST 2024 - pjakobsson@suse.de + +- drm/amd/display: Check link_index before accessing dc->links (CVE-2024-46813 bsc#1231191). +- commit eb31596 + +------------------------------------------------------------------- +Mon Oct 7 08:43:09 CEST 2024 - jgross@suse.com + +- minmax: avoid overly complex min()/max() macro arguments in xen + (git-fixes). +- Refresh + patches.suse/xen-move-max_pfn-in-xen_memory_setup-out-of-function.patch. +- commit 754808b + +------------------------------------------------------------------- +Sat Oct 5 09:18:57 CEST 2024 - tiwai@suse.de + +- ALSA: hda/conexant: Fix conflicting quirk for System76 Pangolin + (git-fixes). +- ALSA: line6: add hw monitor volume control to POD HD500X + (stable-fixes). +- ALSA: usb-audio: Add native DSD support for Luxman D-08u + (stable-fixes). +- ALSA: core: add isascii() check to card ID generator + (stable-fixes). +- ASoC: qcom: sm8250: add qrb4210-rb2-sndcard compatible string + (stable-fixes). +- ASoC: imx-card: Set card.owner to avoid a warning calltrace + if SND=m (git-fixes). +- ASoC: fsl_sai: Enable 'FIFO continue on error' FCONT bit + (stable-fixes). +- ASoC: codecs: lpass-rx-macro: add missing + CDC_RX_BCL_VBAT_RF_PROC2 to default regs values (stable-fixes). +- ASoC: atmel: mchp-pdmc: Skip ALSA restoration if substream + runtime is uninitialized (git-fixes). +- ASoC: amd: yc: Add quirk for HP Dragonfly pro one + (stable-fixes). +- Revert "ALSA: hda: Conditionally use snooping for AMD HDMI" + (stable-fixes). +- ALSA: hda/realtek: Add a quirk for HP Pavilion 15z-ec200 + (stable-fixes). +- ALSA: silence integer wrapping warning (stable-fixes). +- ALSA: Reorganize kerneldoc parameter names (stable-fixes). +- ALSA: hda/realtek: Fix the push button function for the ALC257 + (git-fixes). +- ALSA: hda/conexant: fix some typos (stable-fixes). +- ALSA: mixer_oss: Remove some incorrect kfree_const() usages + (git-fixes). +- ALSA: hda/realtek: Add quirk for Huawei MateBook 13 KLV-WX9 + (stable-fixes). +- ALSA: usb-audio: Add delay quirk for VIVO USB-C HEADSET + (stable-fixes). +- ALSA: hda/tas2781: Add new quirk for Lenovo Y990 Laptop + (stable-fixes). +- ALSA: hda/realtek: fix mute/micmute LED for HP mt645 G8 + (stable-fixes). +- commit 1cdc743 + +------------------------------------------------------------------- +Fri Oct 4 17:17:00 CEST 2024 - mkoutny@suse.com + +- rcu-tasks: Fix show_rcu_tasks_trace_gp_kthread buffer overflow + (bsc#1226631). +- commit 36faf07 + +------------------------------------------------------------------- +Fri Oct 4 17:13:50 CEST 2024 - mwilck@suse.com + +- scsi: fnic: Move flush_work initialization out of if block + (bsc#1230055). +- commit 9b5b899 + +------------------------------------------------------------------- +Fri Oct 4 17:11:25 CEST 2024 - mkoutny@suse.com + +- rcu: Fix buffer overflow in print_cpu_stall_info() + (bsc#1226623). +- commit b695829 + +------------------------------------------------------------------- +Fri Oct 4 09:57:09 CEST 2024 - msuchanek@suse.de + +- Replace ALP with SLFO +- Refresh patches.suse/kernel-add-product-identifying-information-to-kernel-build.patch +- Update config files. +- commit 267a9d3 + +------------------------------------------------------------------- +Fri Oct 4 09:49:25 CEST 2024 - msuchanek@suse.de + +- Update config files. + Update SUSE_VERSION to match SLFO project version +- commit 0d531e8 + +------------------------------------------------------------------- +Fri Oct 4 09:44:38 CEST 2024 - msuchanek@suse.de + +- config.sh: Remove Arm build project, we do not build armv7 configs +- commit 359f219 + +------------------------------------------------------------------- +Fri Oct 4 09:43:19 CEST 2024 - msuchanek@suse.de + +- config.sh: Update bugzilla product +- commit 0688dde + +------------------------------------------------------------------- +Fri Oct 4 09:17:31 CEST 2024 - msuchanek@suse.de + +- rpm/release-projects: Add SLFO projects (bsc#1231293). +- commit 9f2c584 + +------------------------------------------------------------------- +Thu Oct 3 18:22:53 CEST 2024 - msuchanek@suse.de + +- Update patches.suse/powerpc-qspinlock-Fix-deadlock-in-MCS-queue.patch + (bsc#1230295 ltc#206656 CVE-2024-46797 bsc#1230831). +- commit af09bb2 + +------------------------------------------------------------------- +Thu Oct 3 17:03:35 CEST 2024 - mfranc@suse.cz + +- KVM: s390: Fix SORTL and DFLTCC instruction format error in + __insn32_query (git-fixes bsc#1231276). +- commit 39bab2d + +------------------------------------------------------------------- +Thu Oct 3 14:28:21 CEST 2024 - tabraham@suse.com + +- s390/mm: Add cond_resched() to cmm_alloc/free_pages() + (bsc#1228747). +- commit d0c79ab + +------------------------------------------------------------------- +Thu Oct 3 00:20:05 CEST 2024 - dsterba@suse.com + +- ELF: fix kernel.randomize_va_space double read (CVE-2024-46826 bsc#1231115) +- commit 0519fb0 + +------------------------------------------------------------------- +Wed Oct 2 17:46:55 CEST 2024 - dsterba@suse.com + +- net/mlx5: Fix bridge mode operations when there are no VFs (CVE-2024-46857 bsc#1231087) +- commit b20fc2c + +------------------------------------------------------------------- +Wed Oct 2 17:39:18 CEST 2024 - dsterba@suse.com + +- netfilter: nft_socket: fix sk refcount leaks (CVE-2024-46855 bsc#1231085) +- commit 6c66212 + +------------------------------------------------------------------- +Wed Oct 2 16:55:39 CEST 2024 - tbogendoerfer@suse.de + +- net: microchip: vcap: Fix use-after-free error in kunit test + (CVE-2024-46831 bsc#1231117). +- commit 630e2e8 + +------------------------------------------------------------------- +Wed Oct 2 10:12:12 CEST 2024 - mhocko@suse.com + +- vmalloc: modify the alloc_vmap_area() error message for better + diagnostics (jsc#PED-10978). +- mm: mmap: no need to call khugepaged_enter_vma() for stack + (jsc#PED-10978). +- commit 41e1775 + +------------------------------------------------------------------- +Wed Oct 2 09:20:43 CEST 2024 - dwagner@suse.de + +- nvme-pci: qdepth 1 quirk (git-fixes). +- commit ee2b909 + +------------------------------------------------------------------- +Wed Oct 2 08:26:33 CEST 2024 - tiwai@suse.de + +- ALSA: hda/generic: Unconditionally prefer preferred_dacs pairs + (bsc#1219803). +- commit 020b49a + +------------------------------------------------------------------- +Tue Oct 1 18:50:14 CEST 2024 - msuchanek@suse.de + +- powerpc/code-patching: Add generic memory patching + (bsc#1194869). +- powerpc/code-patching: Perform hwsync in __patch_instruction() + in case of failure (bsc#1194869). +- commit 33b01a6 + +------------------------------------------------------------------- +Tue Oct 1 16:33:00 CEST 2024 - oneukum@suse.com + +- usbnet: fix cyclical race on disconnect with work queue + (git-fixes). +- Refresh + patches.suse/0002-Add-a-void-suse_kabi_padding-placeholder-to-some-USB.patch. +- commit 8272f2d + +------------------------------------------------------------------- +Tue Oct 1 16:27:57 CEST 2024 - dsterba@suse.com + +- apparmor: fix possible NULL pointer dereference (CVE-2024-46721 bsc#1230710) +- commit 2d35a7c + +------------------------------------------------------------------- +Tue Oct 1 14:20:26 CEST 2024 - msuchanek@suse.de + +- powerpc/64: Convert patch_instruction() to patch_u32() + (bsc#1194869). +- powerpc/boot: Only free if realloc() succeeds (bsc#1194869). +- powerpc/boot: Handle allocation failure in simple_realloc() + (bsc#1194869). +- powerpc/xics: Check return value of kasprintf in + icp_native_map_one_cpu (bsc#1194869). +- powerpc/vdso: Fix VDSO data access when running in a non-root + time namespace (bsc#1194869). +- commit 0dec2e8 + +------------------------------------------------------------------- +Tue Oct 1 14:19:14 CEST 2024 - tbogendoerfer@suse.de + +- net: mana: Improve mana_set_channels() in low mem conditions + (bsc#1230289). +- net: mana: Implement get_ringparam/set_ringparam for mana + (bsc#1229891). +- net: dpaa: Pad packets to ETH_ZLEN (CVE-2024-46854 bsc#1231084). +- ice: move netif_queue_set_napi to rtnl-protected sections + (CVE-2024-46766 bsc#1230762). +- ice: Add netif_device_attach/detach into PF reset flow + (CVE-2024-46770 bsc#1230763). +- bonding: change ipsec_lock from spin lock to mutex + (CVE-2024-46678 bsc#1230550). +- bonding: extract the use of real_device into local variable + (CVE-2024-46678 bsc#1230550). +- bonding: implement xdo_dev_state_free and call it after deletion + (CVE-2024-46678 bsc#1230550). +- commit 9ee67ad + +------------------------------------------------------------------- +Tue Oct 1 13:22:16 CEST 2024 - msuchanek@suse.de + +- powerpc/xmon: Fix disassembly CPU feature checks (bsc#1065729). +- commit c675509 + ------------------------------------------------------------------- Tue Oct 1 11:47:27 CEST 2024 - tiwai@suse.de @@ -29,6 +7318,13 @@ Tue Oct 1 11:41:13 CEST 2024 - lhenriques@suse.de pages (bsc#1231182). - commit ba82da7 +------------------------------------------------------------------- +Tue Oct 1 11:35:14 CEST 2024 - schwab@suse.de + +- rpm/check-for-config-changes: add HAVE_RUST and RUSTC_SUPPORTS_ to IGNORED_CONFIGS_RE + They depend on SHADOW_CALL_STACK. +- commit 65fa52b + ------------------------------------------------------------------- Tue Oct 1 08:04:40 CEST 2024 - tiwai@suse.de @@ -82,6 +7378,20 @@ Tue Oct 1 08:01:28 CEST 2024 - tiwai@suse.de - can: mcp251xfd: properly indent labels (stable-fixes). - commit a530f31 +------------------------------------------------------------------- +Mon Sep 30 19:11:45 CEST 2024 - krisman@suse.de + +- mm/filemap: skip to create PMD-sized page cache if needed + (bsc#1228454 CVE-2024-41031). +- commit 03907fa + +------------------------------------------------------------------- +Mon Sep 30 17:14:19 CEST 2024 - dwagner@suse.de + +- nvme-fabrics: use reserved tag for reg read/write command + (bsc#1228620 CVE-2024-41082). +- commit 239456c + ------------------------------------------------------------------- Mon Sep 30 16:28:50 CEST 2024 - pmladek@suse.com @@ -283,14 +7593,6 @@ Fri Sep 27 18:21:58 CEST 2024 - dsterba@suse.com - drm/amd/display: Check denominator crb_pipes before used (CVE-2024-46772 bsc#1230772) - commit 322be4a -------------------------------------------------------------------- -Fri Sep 27 17:47:54 CEST 2024 - dsterba@suse.com - -- blacklist.conf: CVE-2024-46727 bsc#1230707: not applicable - No OTG code and all return values from - resource_get_otg_master_for_stream() are checked before use. -- commit f44b1e7 - ------------------------------------------------------------------- Fri Sep 27 15:39:02 CEST 2024 - andrea.porta@suse.com @@ -716,12 +8018,6 @@ Wed Sep 25 11:02:22 CEST 2024 - oneukum@suse.com (git-fixes). - commit 45cee3b -------------------------------------------------------------------- -Wed Sep 25 10:53:00 CEST 2024 - oneukum@suse.com - -- blacklist.conf: too risky -- commit f0e13c3 - ------------------------------------------------------------------- Wed Sep 25 10:49:36 CEST 2024 - oneukum@suse.com @@ -887,12 +8183,6 @@ Wed Sep 25 08:20:37 CEST 2024 - nmorey@suse.com - RDMA/core: Remove unused declaration rdma_resolve_ip_route() (git-fixes) - commit 4cb7201 -------------------------------------------------------------------- -Wed Sep 25 08:00:58 CEST 2024 - jslaby@suse.cz - -- blacklist.conf: add one for clang and one PCI git-fixes -- commit b26aea4 - ------------------------------------------------------------------- Wed Sep 25 06:59:40 CEST 2024 - jslaby@suse.cz @@ -902,26 +8192,12 @@ Wed Sep 25 06:59:40 CEST 2024 - jslaby@suse.cz investigate. - commit 3b92a44 -------------------------------------------------------------------- -Tue Sep 24 21:41:32 CEST 2024 - dsterba@suse.com - -- blacklist.conf: CVE-2024-44972 bsc#1230212: not applicable - Subpage code exists but zoned mode is not enabled being hidden behind - CONFIG_BTRFS_DEBUG. -- commit ed17920 - ------------------------------------------------------------------- Tue Sep 24 16:44:45 CEST 2024 - dsterba@suse.com - btrfs: handle errors from btrfs_dec_ref() properly (CVE-2024-46753 bsc#1230796) - commit 3e3b2cb -------------------------------------------------------------------- -Tue Sep 24 14:00:01 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 05421bb - ------------------------------------------------------------------- Tue Sep 24 13:58:04 CEST 2024 - oneukum@suse.com @@ -1169,12 +8445,6 @@ Fri Sep 20 16:00:48 CEST 2024 - fdmanana@suse.com i_size (bsc#1230854). - commit e9cad4b -------------------------------------------------------------------- -Fri Sep 20 11:03:38 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 5244a06 - ------------------------------------------------------------------- Fri Sep 20 10:42:37 CEST 2024 - ailiop@suse.com @@ -1304,16 +8574,6 @@ Thu Sep 19 21:02:08 CEST 2024 - dsterba@suse.com - gtp: fix a potential NULL pointer dereference (CVE-2024-46677 bsc#1230549) - commit 9cdd14b -------------------------------------------------------------------- -Thu Sep 19 20:03:29 CEST 2024 - dsterba@suse.com - -- blacklist.conf: CVE-2024-46711 bsc#1230542: code partially present, fix part of refactoring and fix series - The patch to backport is one in a number of about 30 patches refactoring - and reworking MPTCP subflow handling. Several other patches are needed - just to apply it cleanly but also change some of the logic where the - actual fix would apply. -- commit 1a03613 - ------------------------------------------------------------------- Thu Sep 19 19:35:19 CEST 2024 - dsterba@suse.com @@ -1503,6 +8763,13 @@ Thu Sep 19 08:58:46 CEST 2024 - tiwai@suse.de (stable-fixes). - commit 040b0ea +------------------------------------------------------------------- +Thu Sep 19 03:35:24 CEST 2024 - neilb@suse.de + +- Update patches.suse/NFS-never-reuse-a-NFSv4-0-lock-owner.patch + (bsc#1227726 bsc#1230733 bsc#1230971) +- commit b1f9aec + ------------------------------------------------------------------- Wed Sep 18 19:30:32 CEST 2024 - jdelvare@suse.de @@ -1676,12 +8943,6 @@ Mon Sep 16 17:26:10 CEST 2024 - jgross@suse.com (git-fixes). - commit 6b94c45 -------------------------------------------------------------------- -Mon Sep 16 16:52:08 CEST 2024 - jgross@suse.com - -- blacklist.conf: add 840b2d39a2dc ("virtio_ring: fix KMSAN error for premapped mode") -- commit 2b97440 - ------------------------------------------------------------------- Mon Sep 16 16:51:12 CEST 2024 - jgross@suse.com @@ -1689,12 +8950,6 @@ Mon Sep 16 16:51:12 CEST 2024 - jgross@suse.com and MSR_GS_BASE (git-fixes). - commit aeba695 -------------------------------------------------------------------- -Mon Sep 16 16:15:44 CEST 2024 - jgross@suse.com - -- blacklist.conf: add 611ff1b1ae98 ("xen: privcmd: Fix possible access to a freed kirqfd instance") -- commit d91e53f - ------------------------------------------------------------------- Mon Sep 16 15:47:44 CEST 2024 - lhenriques@suse.de @@ -1829,12 +9084,6 @@ Fri Sep 13 21:16:43 CEST 2024 - tonyj@suse.de functions (git fixes). - commit bb48e43 -------------------------------------------------------------------- -Fri Sep 13 21:15:11 CEST 2024 - tonyj@suse.de - -- blacklist.conf: Add perf git-fix that won't be backported -- commit fbbd522 - ------------------------------------------------------------------- Fri Sep 13 19:40:15 CEST 2024 - dsterba@suse.com @@ -2120,12 +9369,6 @@ Thu Sep 12 16:08:18 CEST 2024 - tiwai@suse.de - Move upstreamed input patch into sorted section - commit e197a51 -------------------------------------------------------------------- -Thu Sep 12 16:07:50 CEST 2024 - jgross@suse.com - -- blacklist.conf: add db5247d9bf5c ("vhost_task: Handle SIGKILL by flushing work and exiting") -- commit 7acfcbb - ------------------------------------------------------------------- Thu Sep 12 16:06:12 CEST 2024 - jgross@suse.com @@ -2157,12 +9400,6 @@ Thu Sep 12 13:58:10 CEST 2024 - jroedel@suse.de patches.suse/iommu-dma-Trace-bounce-buffer-usage-when-mapping-buf.patch. - commit d37ca1f -------------------------------------------------------------------- -Thu Sep 12 13:45:38 CEST 2024 - jgross@suse.com - -- blacklist.conf: add 778c350eb580 ("Revert KVM: async_pf: avoid recursive flushing of work items") -- commit 3ff1683 - ------------------------------------------------------------------- Thu Sep 12 13:44:28 CEST 2024 - jgross@suse.com @@ -2190,18 +9427,6 @@ Thu Sep 12 11:54:51 CEST 2024 - jgross@suse.com entries (git-fixes). - commit e3cb3e5 -------------------------------------------------------------------- -Thu Sep 12 10:18:36 CEST 2024 - jgross@suse.com - -- blacklist.conf: add f62d4c3eb687 ("KVM: arm64: Don't defer TLB invalidation when zapping table entries") -- commit 80a75dc - -------------------------------------------------------------------- -Thu Sep 12 10:11:31 CEST 2024 - jgross@suse.com - -- blacklist.conf: add c60d847be7b8 ("KVM: arm64: Fix double-free following kvm_pgtable_stage2_free_unlinked()") -- commit 518faac - ------------------------------------------------------------------- Thu Sep 12 10:05:18 CEST 2024 - jgross@suse.com @@ -2877,17 +10102,6 @@ Sat Sep 7 10:18:31 CEST 2024 - tiwai@suse.de (git-fixes). - commit 7a89765 -------------------------------------------------------------------- -Fri Sep 6 17:33:50 CEST 2024 - dsterba@suse.com - -- blacklist.conf: CVE-2024-43886 bsc#1229748: not applicable, functionality not present - The fix adds a NULL check but it is already there in this codebase. The - upstream fix is for patch 5db346c256bbac ("drm/amd/display: update pipe - topology log to support subvp") that adds a secondary display and - refactors code so the NULL check gets lost in - resource_log_pipe_topology_update(). -- commit b9c5bf2 - ------------------------------------------------------------------- Fri Sep 6 15:56:40 CEST 2024 - dsterba@suse.com @@ -3028,12 +10242,6 @@ Thu Sep 5 10:01:51 CEST 2024 - iivanov@suse.de - arm64: tlb: Fix TLBI RANGE operand (bsc#1229585) - commit 24bd468 -------------------------------------------------------------------- -Thu Sep 5 09:56:43 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("KVM: arm64: Use TLBI_TTL_UNKNOWN in __kvm_tlb_flush_vmid_range()") (bsc#1229585) -- commit 29fbf2b - ------------------------------------------------------------------- Thu Sep 5 09:52:38 CEST 2024 - iivanov@suse.de @@ -3249,12 +10457,6 @@ Wed Sep 4 07:41:41 CEST 2024 - neilb@suse.de (git-fixes). - commit 3ab58b8 -------------------------------------------------------------------- -Wed Sep 4 07:37:30 CEST 2024 - neilb@suse.de - -- blacklist.conf: These aren't wanted for various reasons. -- commit 39478da - ------------------------------------------------------------------- Wed Sep 4 00:34:05 CEST 2024 - krisman@suse.de @@ -3266,18 +10468,6 @@ Wed Sep 4 00:34:05 CEST 2024 - krisman@suse.de same way, but through a separate kABI patch. - commit 08e57d6 -------------------------------------------------------------------- -Tue Sep 3 16:04:36 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add cf3f9a593dab mm: optimize the redundant loop of mm_update_owner_next() -- commit 3184f0b - -------------------------------------------------------------------- -Tue Sep 3 15:59:41 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: d24f05987ce8 cgroup: Avoid extra dereference in css_populate_dir() -- commit 922f944 - ------------------------------------------------------------------- Tue Sep 3 14:44:24 CEST 2024 - oneukum@suse.com @@ -3674,15 +10864,6 @@ Fri Aug 30 16:03:27 CEST 2024 - vkarasulli@suse.de iommufd_device_do_replace() (git-fixes). - commit bbc9a65 -------------------------------------------------------------------- -Fri Aug 30 13:03:14 CEST 2024 - lhenriques@suse.de - -- blacklist.conf: add 053fc4f755ad fuse: fix UAF in rcu pathwalks - This commit breaks kABI and the data structure has no free room for the - extra field, i.e. memcpy would fail to copy the additional member added by - this patch. -- commit 941b81c - ------------------------------------------------------------------- Fri Aug 30 11:44:34 CEST 2024 - lhenriques@suse.de @@ -3696,12 +10877,6 @@ Fri Aug 30 11:11:17 CEST 2024 - petr.pavlu@suse.com (git-fixes). - commit 88d1dac -------------------------------------------------------------------- -Fri Aug 30 11:00:49 CEST 2024 - petr.pavlu@suse.com - -- blacklist.conf: add a not-relevant tracing commit -- commit 9e3013e - ------------------------------------------------------------------- Fri Aug 30 10:55:19 CEST 2024 - ailiop@suse.com @@ -3947,12 +11122,6 @@ Wed Aug 28 14:06:14 CEST 2024 - pjakobsson@suse.de - drm/amd/display: Fix null pointer deref in dcn20_resource.c (CVE-2024-43899 bsc#1229754). - commit 1811990 -------------------------------------------------------------------- -Wed Aug 28 10:37:01 CEST 2024 - andrea.porta@suse.com - -- blacklist.conf: add 56769ba4b297a629148eb24d554aef72d1ddfd9e -- commit e1cb2aa - ------------------------------------------------------------------- Wed Aug 28 09:55:29 CEST 2024 - mhocko@suse.com @@ -4023,7 +11192,7 @@ Tue Aug 27 18:43:37 CEST 2024 - vkarasulli@suse.de - kABI: vfio: struct virqfd kABI workaround (CVE-2024-26812 bsc#1222808). -- commit ae735c0 +- commit fec2e84 ------------------------------------------------------------------- Tue Aug 27 16:32:25 CEST 2024 - denis.kirjanov@suse.com @@ -4230,21 +11399,21 @@ Fri Aug 23 20:13:46 CEST 2024 - vkarasulli@suse.de - vfio/pci: fix potential memory leak in vfio_intx_enable() (git-fixes). -- commit 45c2786 +- commit b034db2 ------------------------------------------------------------------- Fri Aug 23 19:31:17 CEST 2024 - vkarasulli@suse.de - vfio: Introduce interface to flush virqfd inject workqueue (CVE-2024-26812 bsc#1222808). -- commit 0704da7 +- commit babdbba ------------------------------------------------------------------- Fri Aug 23 16:17:01 CEST 2024 - vkarasulli@suse.de - vfio/pci: Create persistent INTx handler (CVE-2024-26812 bsc#1222808). -- commit c0eeff7 +- commit 8062aa3 ------------------------------------------------------------------- Fri Aug 23 13:54:07 CEST 2024 - mgorman@suse.de @@ -4567,15 +11736,6 @@ Wed Aug 21 17:20:53 CEST 2024 - sjaeckel@suse.de bsc#1226604). - commit 7beae73 -------------------------------------------------------------------- -Wed Aug 21 16:37:18 CEST 2024 - andrea.porta@suse.com - -- blacklist.conf: git-fixes f2eaed1565acc2bdeb5c433f5f6c7bd7a0d62db1 - blacklisted since it involves backporting many other commits not - that are relevnat only to gdb debug scripts and whose dependent - commits may break kABI. -- commit 323e420 - ------------------------------------------------------------------- Wed Aug 21 16:19:21 CEST 2024 - rgoldwyn@suse.com @@ -4770,13 +11930,6 @@ Tue Aug 20 17:34:18 CEST 2024 - dwagner@suse.de Use the version which got upload upstream. - commit 4896f98 -------------------------------------------------------------------- -Tue Aug 20 17:32:22 CEST 2024 - jgross@suse.com - -- blacklist.conf: add ffe6176b7f53 ("virtio: store owner from modules - with register_virtio_driver()") -- commit 08df841 - ------------------------------------------------------------------- Tue Aug 20 17:31:40 CEST 2024 - jgross@suse.com @@ -4981,12 +12134,6 @@ Tue Aug 20 10:32:23 CEST 2024 - mfranc@suse.cz (git-fixes bsc#1229451). - commit 4e0b259 -------------------------------------------------------------------- -Tue Aug 20 10:20:39 CEST 2024 - mfranc@suse.cz - -- blacklist.conf: we don't enable CONFIG_CPUMASK_OFFSTACK on s390 -- commit 8a36035 - ------------------------------------------------------------------- Tue Aug 20 10:11:40 CEST 2024 - pjakobsson@suse.de @@ -5031,12 +12178,6 @@ Tue Aug 20 09:03:13 CEST 2024 - tiwai@suse.de (stable-fixes). - commit a485c9b -------------------------------------------------------------------- -Tue Aug 20 08:53:29 CEST 2024 - tiwai@suse.de - -- blacklist.conf: Add libata upstream revert entry (bsc#1229054) -- commit 5ded40a - ------------------------------------------------------------------- Tue Aug 20 08:24:59 CEST 2024 - shung-hsi.yu@suse.com @@ -5145,12 +12286,6 @@ Mon Aug 19 08:41:03 CEST 2024 - tiwai@suse.de (git-fixes). - commit e3fe681 -------------------------------------------------------------------- -Mon Aug 19 06:55:31 CEST 2024 - neilb@suse.de - -- blacklist.conf: add unwanted nfs/sunrpc patch -- commit 405ec89 - ------------------------------------------------------------------- Mon Aug 19 06:53:37 CEST 2024 - neilb@suse.de @@ -5270,12 +12405,6 @@ Fri Aug 16 18:05:44 CEST 2024 - ailiop@suse.com (git-fixes). - commit 184b713 -------------------------------------------------------------------- -Fri Aug 16 17:59:06 CEST 2024 - jgross@suse.com - -- blacklist.conf: add f99b052256f1 ("KVM: SNP: Fix LBR Virtualization for SNP guest") -- commit c9ad47e - ------------------------------------------------------------------- Fri Aug 16 17:52:51 CEST 2024 - jgross@suse.com @@ -5402,12 +12531,6 @@ Fri Aug 16 14:09:45 CEST 2024 - ailiop@suse.com - xfs: allow symlinks with short remote targets (bsc#1229160). - commit e82d4ad -------------------------------------------------------------------- -Fri Aug 16 14:04:33 CEST 2024 - jgross@suse.com - -- blacklist.conf: add 1c682593096a ("xen: privcmd: Switch from mutex to spinlock for irqfds") -- commit 46d4480 - ------------------------------------------------------------------- Fri Aug 16 14:01:51 CEST 2024 - jgross@suse.com @@ -5491,25 +12614,6 @@ Thu Aug 15 20:27:34 CEST 2024 - msuchanek@suse.de CONFIG_KVM_BOOK3S_HV_POSSIBLE (bsc#1194869). - commit 4e7f0fe -------------------------------------------------------------------- -Thu Aug 15 19:38:47 CEST 2024 - msuchanek@suse.de - -- blacklist.conf: Add a bunch of superfluous ppc changes reported by - git-fixes. -- commit 7c2a851 - -------------------------------------------------------------------- -Thu Aug 15 18:40:14 CEST 2024 - msuchanek@suse.de - -- blacklist.conf: Add ppc more ppc unsupported arch paths and commits. -- commit 66e06b4 - -------------------------------------------------------------------- -Thu Aug 15 18:05:23 CEST 2024 - msuchanek@suse.de - -- blacklist.conf: Add more ppc 32bit paths. -- commit 013a9db - ------------------------------------------------------------------- Thu Aug 15 17:09:55 CEST 2024 - iivanov@suse.de @@ -6315,7 +13419,7 @@ Sat Aug 10 10:27:04 CEST 2024 - tiwai@suse.de Sat Aug 10 09:45:49 CEST 2024 - tiwai@suse.de - Moved upstreamed ASoC patch into sorted section -- commit 3058bc3 +- commit 47c5c29 ------------------------------------------------------------------- Sat Aug 10 09:37:31 CEST 2024 - tiwai@suse.de @@ -6337,24 +13441,7 @@ Sat Aug 10 09:37:31 CEST 2024 - tiwai@suse.de - ALSA: hda: Add HP MP9 G4 Retail System AMS to force connect list (stable-fixes). - ALSA: line6: Fix racy access to midibuf (stable-fixes). -- ASoC: cs35l56: Patch CS35L56_IRQ1_MASK_18 to the default value - (stable-fixes). -- ASoC: amd: yc: Support mic on Lenovo Thinkpad E14 Gen 6 - (stable-fixes). -- ASoC: cs35l56: Handle OTP read latency over SoundWire - (stable-fixes). -- ASoC: nau8822: Lower debug print priority (stable-fixes). -- ASoC: fsl_micfil: Expand the range of FIFO watermark mask - (stable-fixes). -- ASoC: amd: yc: Support mic on HP 14-em0002la (stable-fixes). -- ALSA: hda/realtek: Add Framework Laptop 13 (Intel Core Ultra) - to quirks (stable-fixes). -- ALSA: hda/hdmi: Yet more pin fix for HP EliteDesk 800 G4 - (stable-fixes). -- ALSA: hda: Add HP MP9 G4 Retail System AMS to force connect list - (stable-fixes). -- ALSA: line6: Fix racy access to midibuf (stable-fixes). -- commit a8c8868 +- commit c1044c2 ------------------------------------------------------------------- Sat Aug 10 09:30:52 CEST 2024 - tiwai@suse.de @@ -6368,16 +13455,7 @@ Sat Aug 10 09:30:52 CEST 2024 - tiwai@suse.de - ASoC: codecs: wcd938x-sdw: Correct Soundwire ports mask (git-fixes). - ALSA: usb-audio: Re-add ScratchAmp quirk entries (git-fixes). -- ASoC: meson: axg-fifo: fix irq scheduling issue with PREEMPT_RT - (git-fixes). -- ASoC: SOF: Remove libraries from topology lookups (git-fixes). -- ASoC: codecs: wsa884x: Correct Soundwire ports mask (git-fixes). -- ASoC: codecs: wsa883x: Correct Soundwire ports mask (git-fixes). -- ASoC: codecs: wsa881x: Correct Soundwire ports mask (git-fixes). -- ASoC: codecs: wcd938x-sdw: Correct Soundwire ports mask - (git-fixes). -- ALSA: usb-audio: Re-add ScratchAmp quirk entries (git-fixes). -- commit cdc2939 +- commit 2621ea8 ------------------------------------------------------------------- Fri Aug 9 21:13:42 CEST 2024 - mpdesouza@suse.com @@ -6422,12 +13500,8 @@ Fri Aug 9 16:37:03 CEST 2024 - mfranc@suse.cz ------------------------------------------------------------------- Fri Aug 9 14:35:05 CEST 2024 - pmladek@suse.com -- blacklist.conf: printk/sysctl: breaks kernel without pre-requisite - patches (bsc#1229025) -- Delete - patches.suse/printk-Remove-the-now-superfluous-sentinel-elements-from-ctl_table-array.patch. - blacklist.conf: printk/sysctl: breaks kernel without pre-requisite patches (bsc#1229025) - Delete patches.suse/printk-Remove-the-now-superfluous-sentinel-elements-from-ctl_table-array.patch. -- commit 3560636 +- commit b88511a ------------------------------------------------------------------- Fri Aug 9 13:30:05 CEST 2024 - mfranc@suse.cz @@ -6908,12 +13982,6 @@ Wed Aug 7 14:05:50 CEST 2024 - tbogendoerfer@suse.de (CVE-2024-42162 bsc#1228706). - commit e94d07a -------------------------------------------------------------------- -Wed Aug 7 13:29:08 CEST 2024 - jslaby@suse.cz - -- blacklist.conf: add some IRQ HANDLING ones -- commit 404c094 - ------------------------------------------------------------------- Wed Aug 7 13:07:25 CEST 2024 - mkoutny@suse.com @@ -7060,12 +14128,6 @@ Mon Aug 5 19:10:12 CEST 2024 - msuchanek@suse.de with MSR_EE (bsc#1215199). - commit 6051d0b -------------------------------------------------------------------- -Mon Aug 5 18:57:39 CEST 2024 - msuchanek@suse.de - -- blacklist.conf: KVM PPC APIv2 enablement not included. -- commit b36c39a - ------------------------------------------------------------------- Mon Aug 5 16:35:22 CEST 2024 - tbogendoerfer@suse.de @@ -7714,13 +14776,6 @@ Fri Aug 2 15:36:25 CEST 2024 - sjaeckel@suse.de in nsh_gso_segment() (CVE-2024-36933 bsc#1225832). - commit 6740d82 -------------------------------------------------------------------- -Fri Aug 2 14:48:37 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add 943ad0b62e3c kernel: rerun task_work while freezing in get_signal() - and related io_uring fix. -- commit ead5c32 - ------------------------------------------------------------------- Fri Aug 2 14:12:56 CEST 2024 - sjaeckel@suse.de @@ -7728,12 +14783,6 @@ Fri Aug 2 14:12:56 CEST 2024 - sjaeckel@suse.de (CVE-2024-36929 bsc#1225814). - commit e49ed10 -------------------------------------------------------------------- -Fri Aug 2 13:53:13 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add 7a4479680d7f cgroup_misc: add kernel-doc comments for enum misc_res_type -- commit fe05fa4 - ------------------------------------------------------------------- Fri Aug 2 13:52:28 CEST 2024 - mkoutny@suse.com @@ -7891,13 +14940,6 @@ Wed Jul 31 10:48:53 CEST 2024 - lhenriques@suse.de fscache_try_get_volume() (bsc#1228459 bsc#1228462). - commit a80ddf3 -------------------------------------------------------------------- -Wed Jul 31 10:25:23 CEST 2024 - oneukum@suse.com - -- platform/chrome: cros_ec_proto: Lock device when updating MKBP - version (git-fixes). -- commit ab277a6 - ------------------------------------------------------------------- Wed Jul 31 10:02:32 CEST 2024 - heming.zhao@suse.com @@ -8016,42 +15058,6 @@ Tue Jul 30 11:16:24 CEST 2024 - shung-hsi.yu@suse.com Fix the issue by adding parenthesis around ternary operator. - commit dfba20e -------------------------------------------------------------------- -Tue Jul 30 11:10:16 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add 9c573cd31343 randomize_kstack: Improve entropy diffusion -- commit 095be15 - -------------------------------------------------------------------- -Tue Jul 30 10:53:31 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 1dd3f93 - -------------------------------------------------------------------- -Tue Jul 30 10:50:00 CEST 2024 - oneukum@suse.com - -- blacklist.conf: spelling fix in comment -- commit de0ca0a - -------------------------------------------------------------------- -Tue Jul 30 10:48:26 CEST 2024 - oneukum@suse.com - -- blacklist.conf: cleanup, no code change -- commit 19384b6 - -------------------------------------------------------------------- -Tue Jul 30 10:46:03 CEST 2024 - oneukum@suse.com - -- blacklist.conf: pure cleanup -- commit 21ff021 - -------------------------------------------------------------------- -Tue Jul 30 10:43:49 CEST 2024 - oneukum@suse.com - -- blacklist.conf: pure cleanup -- commit fef6015 - ------------------------------------------------------------------- Tue Jul 30 08:37:32 CEST 2024 - tiwai@suse.de @@ -8579,25 +15585,12 @@ Tue Jul 23 11:57:37 CEST 2024 - nik.borisov@suse.com - x86/resctrl: Remove redundant variable in mbm_config_write_domain() (git-fixes). - commit 7ae6079 -------------------------------------------------------------------- -Tue Jul 23 11:57:14 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: This patch gets reverted -- commit c490f33 - ------------------------------------------------------------------- Tue Jul 23 11:56:24 CEST 2024 - nik.borisov@suse.com - x86/resctrl: Read supported bandwidth sources from CPUID (git-fixes). - commit 907534d -------------------------------------------------------------------- -Tue Jul 23 11:55:05 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: Remove dead-end revert - We never merged the buggy upstream fix. -- commit 9b319fd - ------------------------------------------------------------------- Tue Jul 23 11:50:03 CEST 2024 - nik.borisov@suse.com @@ -8674,7 +15667,7 @@ Tue Jul 23 10:42:33 CEST 2024 - mhocko@suse.com Tue Jul 23 10:31:43 CEST 2024 - jslaby@suse.cz - PCI: Extend ACS configurability (bsc#1228090). -- commit 571e431 +- commit 3be1ce1 ------------------------------------------------------------------- Tue Jul 23 10:21:51 CEST 2024 - nik.borisov@suse.com @@ -8955,13 +15948,6 @@ Mon Jul 22 16:35:48 CEST 2024 - ailiop@suse.com path (bsc#1228211). - commit 4c79a42 -------------------------------------------------------------------- -Mon Jul 22 15:30:13 CEST 2024 - oneukum@suse.com - -- supported.conf: Add support for v4l2-dv-timings - (jsc#PED-8645) -- commit 6262df7 - ------------------------------------------------------------------- Mon Jul 22 15:24:53 CEST 2024 - oneukum@suse.com @@ -9084,12 +16070,6 @@ Mon Jul 22 14:46:53 CEST 2024 - iivanov@suse.de - arm64: dts: imx93-11x11-evk: Remove the 'no-sdio' property (git-fixes) - commit a10e3de -------------------------------------------------------------------- -Mon Jul 22 14:45:36 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: dts: freescale: imx8mm-verdin: Fix GPU speed") -- commit ea9f475 - ------------------------------------------------------------------- Mon Jul 22 14:40:20 CEST 2024 - tiwai@suse.de @@ -10531,15 +17511,6 @@ Wed Jul 17 09:31:55 CEST 2024 - tiwai@suse.de pmic_glink_init (git-fixes). - commit aea26b0 -------------------------------------------------------------------- -Tue Jul 16 18:29:23 CEST 2024 - ailiop@suse.com - -- blacklist.conf: add 54cbc058d86b - commit 54cbc058d86b ("fs/aio: Make io_cancel() generate completions - again") was later reverted upstream by commit 28468cbed92e, so blacklist - it. -- commit bc9be4f - ------------------------------------------------------------------- Tue Jul 16 18:25:16 CEST 2024 - fdmanana@suse.com @@ -11098,12 +18069,6 @@ Mon Jul 15 13:33:32 CEST 2024 - mhocko@suse.com (CVE-2024-27064 bsc#1223740). - commit daf6634 -------------------------------------------------------------------- -Mon Jul 15 13:30:59 CEST 2024 - oneukum@suse.com - -- blacklist.conf: feature, not fix -- commit 7a64b31 - ------------------------------------------------------------------- Mon Jul 15 13:30:17 CEST 2024 - petr.pavlu@suse.com @@ -11117,12 +18082,6 @@ Mon Jul 15 13:12:22 CEST 2024 - mhocko@suse.com tipc_udp_nl_bearer_add() (CVE-2024-26663 bsc#1222326). - commit fff5ef3 -------------------------------------------------------------------- -Mon Jul 15 11:47:14 CEST 2024 - petr.pavlu@suse.com - -- blacklist.conf: add not-relevant tracing fixes -- commit b158327 - ------------------------------------------------------------------- Mon Jul 15 11:41:17 CEST 2024 - petr.pavlu@suse.com @@ -13844,12 +20803,6 @@ Wed Jul 10 10:28:13 CEST 2024 - nik.borisov@suse.com - x86/asm: Fix build of UML with KASAN (git-fixes). - commit 89fc5d7 -------------------------------------------------------------------- -Wed Jul 10 10:27:52 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: Blacklist useless revert -- commit 0a21e69 - ------------------------------------------------------------------- Wed Jul 10 10:04:47 CEST 2024 - nik.borisov@suse.com @@ -14230,12 +21183,6 @@ Thu Jul 4 18:58:54 CEST 2024 - vkarasulli@suse.de - iommu/arm-smmu-v3: Free MSIs in case of ENOMEM (git-fixes). - commit 2fb4aa0 -------------------------------------------------------------------- -Thu Jul 4 17:41:12 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add d988d9a9b9d1 panic: Flush kernel log buffer at the end -- commit 0ce2686 - ------------------------------------------------------------------- Thu Jul 4 15:25:28 CEST 2024 - ptesarik@suse.com @@ -14310,12 +21257,6 @@ Wed Jul 3 14:51:53 CEST 2024 - hare@suse.de CVE-2024-38604). - commit 9e332c1 -------------------------------------------------------------------- -Wed Jul 3 14:41:56 CEST 2024 - pjakobsson@suse.de - -- blacklist.conf: 9cb46b31f3d0 drm/xe/xe_migrate: Cast to output precision before multiplying operands -- commit d95545e - ------------------------------------------------------------------- Wed Jul 3 14:19:36 CEST 2024 - denis.kirjanov@suse.com @@ -15708,12 +22649,6 @@ Fri Jun 28 15:37:51 CEST 2024 - tiwai@suse.de to peer STA/P2PClient (bsc#1227149). - commit 03e12a0 -------------------------------------------------------------------- -Fri Jun 28 15:37:23 CEST 2024 - tiwai@suse.de - -- blacklist: drop the wifi entries to be backported -- commit 891934b - ------------------------------------------------------------------- Fri Jun 28 15:35:23 CEST 2024 - tiwai@suse.de @@ -16605,13 +23540,6 @@ Mon Jun 24 17:40:50 CEST 2024 - nik.borisov@suse.com - x86/uaccess: Fix missed zeroing of ia32 u64 get_user() range checking (git-fixes). - commit 1c4403a -------------------------------------------------------------------- -Mon Jun 24 17:31:22 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: Blacklist invalid commit (git-fixes) - We don't support CPU_MITIGATIONS hence to need for this logic -- commit 6899966 - ------------------------------------------------------------------- Mon Jun 24 09:44:52 CEST 2024 - tbogendoerfer@suse.de @@ -16764,12 +23692,6 @@ Fri Jun 21 17:24:29 CEST 2024 - mkoutny@suse.com parameter in cpu_max_write() (bsc#1226791). - commit 6b67975 -------------------------------------------------------------------- -Fri Jun 21 17:21:26 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add 6fb454606153 sched: Simplify tg_set_cfs_bandwidth() -- commit 4e56705 - ------------------------------------------------------------------- Fri Jun 21 16:31:57 CEST 2024 - dfaggioli@suse.com @@ -16861,12 +23783,6 @@ Thu Jun 20 17:39:41 CEST 2024 - lhenriques@suse.de (bsc#1226588). - commit b238f81 -------------------------------------------------------------------- -Thu Jun 20 12:31:55 CEST 2024 - jslaby@suse.cz - -- blacklist.conf: add ppdev cleanup -- commit 58ce126 - ------------------------------------------------------------------- Thu Jun 20 10:59:35 CEST 2024 - mfranc@suse.cz @@ -17384,12 +24300,6 @@ Fri Jun 14 14:07:11 CEST 2024 - shung-hsi.yu@suse.com (bsc#1225903). - commit 63dfc45 -------------------------------------------------------------------- -Fri Jun 14 13:27:19 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add a7fb0423c201 cgroup: Move rcu_head up near the top of cgroup_root -- commit 3f951ce - ------------------------------------------------------------------- Fri Jun 14 12:18:36 CEST 2024 - denis.kirjanov@suse.com @@ -17786,14 +24696,6 @@ Thu Jun 13 11:57:17 CEST 2024 - ailiop@suse.com since there are no SLE consumers of it, mark it as optional. - commit 264e3d2 -------------------------------------------------------------------- -Thu Jun 13 11:55:02 CEST 2024 - ailiop@suse.com - -- blacklist.conf: add f2fs fixes 87161a2b0aed and 4e0197f9932f - Both are f2fs-related fixes, f2fs is unsupported and not compiled at - all. -- commit e891815 - ------------------------------------------------------------------- Thu Jun 13 11:52:09 CEST 2024 - ailiop@suse.com @@ -17809,12 +24711,6 @@ Thu Jun 13 11:32:01 CEST 2024 - fvogt@suse.de build. - commit aaee141 -------------------------------------------------------------------- -Thu Jun 13 10:11:58 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 70e89e6 - ------------------------------------------------------------------- Thu Jun 13 10:09:33 CEST 2024 - oneukum@suse.com @@ -18009,12 +24905,6 @@ Mon Jun 10 21:03:05 CEST 2024 - krisman@suse.de CVE-2023-52672). - commit 333fe30 -------------------------------------------------------------------- -Mon Jun 10 17:13:33 CEST 2024 - lduncan@suse.com - -- blacklist.conf: add bsc#1223013 CVE-2024-26482, does not apply -- commit a7ff2c2 - ------------------------------------------------------------------- Mon Jun 10 13:36:57 CEST 2024 - davide.benini@suse.com @@ -18022,12 +24912,6 @@ Mon Jun 10 13:36:57 CEST 2024 - davide.benini@suse.com (CVE-2024-36005 bsc#1224539). - commit 5b08b61 -------------------------------------------------------------------- -Mon Jun 10 10:47:24 CEST 2024 - oneukum@suse.com - -- blacklist.conf: irrelevant build fix -- commit 226f27a - ------------------------------------------------------------------- Sat Jun 8 16:22:10 CEST 2024 - lduncan@suse.com @@ -18273,14 +25157,6 @@ Tue Jun 4 20:13:35 CEST 2024 - ematsumiya@suse.de (bsc#1225172, bsc#1225548, CVE-2023-52757). - commit 1b322a8 -------------------------------------------------------------------- -Tue Jun 4 12:28:46 CEST 2024 - davide.benini@suse.com - -- blacklist.conf: add d380ce70058a4ccddc3e5f5c2063165dc07672c6 - netrom: Fix data-races around sysctl_net_busy_read - (CVE-2024-27419 bsc#1224759) -- commit 1fe217c - ------------------------------------------------------------------- Tue Jun 4 12:01:21 CEST 2024 - iivanov@suse.de @@ -18366,732 +25242,6 @@ Mon Jun 3 15:25:22 CEST 2024 - dwagner@suse.de - nvme: fix multipath batched completion accounting (git-fixes). - commit ed3b392 -------------------------------------------------------------------- -Mon Jun 3 14:40:11 CEST 2024 - mfranc@suse.cz - -- Update - patches.suse/ACPI-CPPC-Use-access_width-over-bit_width-for-system.patch - (stable-fixes bsc#1224557 CVE-2024-35995). -- Update - patches.suse/ACPI-LPIT-Avoid-u32-multiplication-overflow.patch - (git-fixes bsc#1224627 CVE-2023-52683). -- Update - patches.suse/ACPI-video-check-for-error-while-searching-for-backl.patch - (git-fixes bsc#1224686 CVE-2023-52693). -- Update - patches.suse/ALSA-hda-intel-sdw-acpi-fix-usage-of-device_get_name.patch - (git-fixes CVE-2024-36955). -- Update - patches.suse/ALSA-usb-audio-Stop-parsing-channels-bits-when-all-c.patch - (git-fixes bsc#1224803 CVE-2024-27436). -- Update - patches.suse/ARM-9381-1-kasan-clear-stale-stack-poison.patch - (git-fixes bsc#1225715 CVE-2024-36906). -- Update - patches.suse/ASoC-Intel-sof_sdw_rt_sdca_jack_common-ctx-headset_c.patch - (git-fixes bsc#1224596 CVE-2023-52697). -- Update - patches.suse/ASoC-SOF-amd-Fix-memory-leak-in-amd_sof_acp_probe.patch - (git-fixes bsc#1224630 CVE-2023-52663). -- Update - patches.suse/ASoC-SOF-ipc4-pcm-Workaround-for-crashed-firmware-on.patch - (stable-fixes bsc#1223831 CVE-2024-27057). -- Update - patches.suse/ASoC-mediatek-sof-common-Add-NULL-check-for-normal_l.patch - (git-fixes bsc#1224688 CVE-2024-35842). -- Update - patches.suse/Bluetooth-Fix-memory-leak-in-hci_req_sync_complete.patch - (git-fixes bsc#1224571 CVE-2024-35978). -- Update - patches.suse/Bluetooth-Fix-use-after-free-bugs-caused-by-sco_sock.patch - (git-fixes bsc#1224174 CVE-2024-27398). -- Update - patches.suse/Bluetooth-HCI-Fix-potential-null-ptr-deref.patch - (git-fixes bsc#1225579 CVE-2024-36011). -- Update - patches.suse/Bluetooth-L2CAP-Fix-not-validating-setsockopt-user-i.patch - (git-fixes bsc#1224579 CVE-2024-35965). -- Update - patches.suse/Bluetooth-RFCOMM-Fix-not-validating-setsockopt-user-.patch - (git-fixes bsc#1224576 CVE-2024-35966). -- Update - patches.suse/Bluetooth-SCO-Fix-not-validating-setsockopt-user-inp.patch - (git-fixes bsc#1224587 CVE-2024-35967). -- Update - patches.suse/Bluetooth-btintel-Fix-null-ptr-deref-in-btintel_read.patch - (stable-fixes bsc#1224640 CVE-2024-35933). -- Update - patches.suse/Bluetooth-hci_event-Fix-handling-of-HCI_EV_IO_CAPA_R.patch - (git-fixes bsc#1224723 CVE-2024-27416). -- Update - patches.suse/Bluetooth-hci_sock-Fix-not-validating-setsockopt-use.patch - (git-fixes bsc#1224582 CVE-2024-35963). -- Update - patches.suse/Bluetooth-l2cap-fix-null-ptr-deref-in-l2cap_chan_tim.patch - (git-fixes bsc#1224177 CVE-2024-27399). -- Update - patches.suse/Bluetooth-msft-fix-slab-use-after-free-in-msft_do_cl.patch - (git-fixes bsc#1225502 CVE-2024-36012). -- Update - patches.suse/Bluetooth-qca-add-missing-firmware-sanity-checks.patch - (git-fixes bsc#1225722 CVE-2024-36880). -- Update - patches.suse/Bluetooth-qca-fix-NULL-deref-on-non-serdev-setup.patch - (git-fixes bsc#1224600 CVE-2024-35850). -- Update - patches.suse/Bluetooth-qca-fix-NULL-deref-on-non-serdev-suspend.patch - (git-fixes bsc#1224509 CVE-2024-35851). -- Update - patches.suse/Bluetooth-qca-fix-firmware-check-error-path.patch - (git-fixes CVE-2024-36942). -- Update - patches.suse/Bluetooth-qca-fix-info-leak-when-fetching-fw-build-i.patch - (git-fixes bsc#1225720 CVE-2024-36032). -- Update - patches.suse/Bluetooth-rfcomm-Fix-null-ptr-deref-in-rfcomm_check_.patch - (bsc#1219170 CVE-2024-22099 bsc#1223187 CVE-2024-26903). -- Update - patches.suse/HID-i2c-hid-remove-I2C_HID_READ_PENDING-flag-to-prev.patch - (git-fixes bsc#1224552 CVE-2024-35997). -- Update - patches.suse/NFS-Fix-nfs_netfs_issue_read-xarray-locking-for-writ.patch - (git-fixes bsc#1223805 CVE-2024-27031). -- Update - patches.suse/NFSv4.2-fix-nfs4_listxattr-kernel-BUG-at-mm-usercopy.patch - (git-fixes bsc#1223113 CVE-2024-26870). -- Update - patches.suse/PCI-PM-Drain-runtime-idle-callbacks-before-driver-re.patch - (stable-fixes bsc#1224738 CVE-2024-35809). -- Update - patches.suse/Reapply-drm-qxl-simplify-qxl_fence_wait.patch - (stable-fixes CVE-2024-36944). -- Update - patches.suse/Revert-drm-amd-pm-resolve-reboot-exception-for-si-ol.patch - (git-fixes bsc#1224722 CVE-2023-52657). -- Update - patches.suse/Revert-net-mlx5-Block-entering-switchdev-mode-with-n.patch - (git-fixes bsc#1224719 CVE-2023-52658). -- Update - patches.suse/SUNRPC-fix-a-memleak-in-gss_import_v2_context.patch - (git-fixes bsc#1223712 CVE-2023-52653). -- Update - patches.suse/SUNRPC-fix-some-memleaks-in-gssx_dec_option_array.patch - (git-fixes bsc#1223744 CVE-2024-27388). -- Update - patches.suse/USB-core-Fix-access-violation-during-port-device-rem.patch - (git-fixes bsc#1225734 CVE-2024-36896). -- Update - patches.suse/USB-core-Fix-deadlock-in-usb_deauthorize_interface.patch - (git-fixes bsc#1223671 CVE-2024-26934). -- Update patches.suse/accel-ivpu-Fix-deadlock-in-context_xa.patch - (git-fixes bsc#1224704 CVE-2024-35953). -- Update - patches.suse/amd-amdkfd-sync-all-devices-to-wait-all-processes-be.patch - (stable-fixes CVE-2024-36949). -- Update - patches.suse/arm64-hibernate-Fix-level3-translation-fault-in-swsu.patch - (git-fixes bsc#1223748 CVE-2024-26989). -- Update patches.suse/ax25-Fix-netdev-refcount-issue.patch - (git-fixes bsc#1224542 CVE-2024-36009). -- Update - patches.suse/ax25-fix-use-after-free-bugs-caused-by-ax25_ds_del_t.patch - (git-fixes bsc#1224663 CVE-2024-35887). -- Update - patches.suse/batman-adv-Avoid-infinite-loop-trying-to-resize-loca.patch - (git-fixes bsc#1224566 CVE-2024-35982). -- Update - patches.suse/block-fix-q-blkg_list-corruption-during-disk-rebind.patch - (bsc#1223591 bsc#1224573 CVE-2024-35974). -- Update - patches.suse/bnxt_en-Fix-possible-memory-leak-in-bnxt_rdma_aux_de.patch - (git-fixes bsc#1224577 CVE-2024-35972). -- Update - patches.suse/bootconfig-use-memblock_free_late-to-free-xbc-memory.patch - (git-fixes bsc#1223637 CVE-2024-26983). -- Update - patches.suse/bpf-Guard-stack-limits-against-32bit-overflow.patch - (git-fixes bsc#1224730 CVE-2023-52676). -- Update - patches.suse/btrfs-fix-deadlock-with-fiemap-and-extent-locking.patch - (bsc#1223285 bsc#1224804 CVE-2024-35784). -- Update - patches.suse/btrfs-fix-information-leak-in-btrfs_ioctl_logical_to.patch - (git-fixes bsc#1224733 CVE-2024-35849). -- Update - patches.suse/btrfs-fix-race-between-ordered-extent-completion-and.patch - (bsc#1223285 bsc#1222426 CVE-2024-26794). -- Update - patches.suse/btrfs-fix-race-when-detecting-delalloc-ranges-during.patch - (bsc#1223285 bsc#1223782 CVE-2024-27080). -- Update - patches.suse/btrfs-handle-chunk-tree-lookup-error-in-btrfs_reloca.patch - (git-fixes bsc#1224644 CVE-2024-35936). -- Update - patches.suse/clk-Get-runtime-PM-before-walking-tree-during-disabl.patch - (git-fixes bsc#1223762 CVE-2024-27004). -- Update - patches.suse/clk-Get-runtime-PM-before-walking-tree-for-clk_summa.patch - (git-fixes bsc#1223761 CVE-2024-27003). -- Update - patches.suse/clk-mediatek-Do-a-runtime-PM-get-on-controllers-duri.patch - (git-fixes bsc#1223759 CVE-2024-27002). -- Update - patches.suse/clk-sunxi-ng-h6-Reparent-CPUX-during-PLL-CPUX-rate-c.patch - (git-fixes bsc#1225692 CVE-2023-52882). -- Update - patches.suse/comedi-vmk80xx-fix-incomplete-endpoint-checking.patch - (git-fixes bsc#1223698 CVE-2024-27001). -- Update - patches.suse/crypto-rsa-add-a-check-for-allocation-failure.patch - (bsc#1222775 bsc#1220430 CVE-2023-52472). -- Update - patches.suse/crypto-s390-aes-Fix-buffer-overread-in-CTR-mode.patch - (git-fixes bsc#1224637 CVE-2023-52669). -- Update - patches.suse/crypto-safexcel-Add-error-handling-for-dma_map_sg-ca.patch - (git-fixes bsc#1224501 CVE-2023-52687). -- Update - patches.suse/cxl-pci-Fix-disabling-memory-if-DVSEC-CXL-Range-does.patch - (git-fixes CVE-2024-26761). -- Update - patches.suse/dm-raid-really-frozen-sync_thread-during-suspend-16c4.patch - (jsc#PED-7542 bsc#1224706 CVE-2024-35794). -- Update - patches.suse/dm-raid456-md-raid456-fix-a-deadlock-for-dm-raid456-4142.patch - (bsc#1219596 bsc#1223654 CVE-2024-26962). -- Update - patches.suse/dma-buf-Fix-NULL-pointer-dereference-in-sanitycheck.patch - (git-fixes bsc#1224480 CVE-2024-35916). -- Update patches.suse/dma-xilinx_dpdma-Fix-locking.patch - (git-fixes bsc#1224559 CVE-2024-35990). -- Update - patches.suse/dmaengine-fsl-qdma-Fix-a-memory-leak-related-to-the--3aa58cb.patch - (git-fixes bsc#1224632 CVE-2024-35833). -- Update - patches.suse/dmaengine-idxd-Fix-oops-during-rmmod-on-single-CPU-p.patch - (git-fixes bsc#1224558 CVE-2024-35989). -- Update - patches.suse/dpll-fix-dpll_pin_on_pin_register-for-multiple-paren.patch - (CVE-2024-27027 bsc#1223787 bsc#1224546 CVE-2024-36002). -- Update - patches.suse/dpll-fix-pin-dump-crash-for-rebound-module.patch - (jsc#PED-6079 bsc#1224633 CVE-2024-35836). -- Update - patches.suse/drm-Check-output-polling-initialized-before-disablin.patch - (stable-fixes bsc#1224654 CVE-2024-35927). -- Update - patches.suse/drm-amd-amdgpu-Fix-potential-ioremap-memory-leaks-in.patch - (stable-fixes bsc#1224653 CVE-2024-35928). -- Update - patches.suse/drm-amd-display-Atom-Integrated-System-Info-v2_2-for.patch - (stable-fixes bsc#1225735 CVE-2024-36897). -- Update - patches.suse/drm-amd-display-Check-writeback-connectors-in-create.patch - (git-fixes bsc#1224506 CVE-2023-52695). -- Update - patches.suse/drm-amd-display-Fix-a-debugfs-null-pointer-error.patch - (git-fixes bsc#1224741 CVE-2023-52673). -- Update - patches.suse/drm-amd-display-Fix-bounds-check-for-dcn35-DcfClocks.patch - (git-fixes bsc#1224709 CVE-2024-35788). -- Update - patches.suse/drm-amd-display-Fix-hang-underflow-when-transitionin.patch - (git-fixes bsc#1224729 CVE-2023-52671). -- Update - patches.suse/drm-amd-display-Prevent-crash-when-disable-stream.patch - (stable-fixes bsc#1224740 CVE-2024-35799). -- Update - patches.suse/drm-amd-pm-fix-a-double-free-in-si_dpm_init.patch - (git-fixes bsc#1224607 CVE-2023-52691). -- Update - patches.suse/drm-amd-pm-fixes-a-random-hang-in-S4-for-SMU-v13.0.4.patch - (stable-fixes bsc#1225705 CVE-2024-36026). -- Update - patches.suse/drm-amdgpu-amdgpu_ttm_gart_bind-set-gtt-bound-flag.patch - (stable-fixes bsc#1224736 CVE-2024-35817). -- Update - patches.suse/drm-amdgpu-fix-deadlock-while-reading-mqd-from-debug.patch - (git-fixes bsc#1224634 CVE-2024-35795). -- Update - patches.suse/drm-amdgpu-fix-mmhub-client-id-out-of-bounds-access.patch - (git-fixes bsc#1223789 CVE-2024-27029). -- Update - patches.suse/drm-amdgpu-once-more-fix-the-call-oder-in-amdgpu_ttm.patch - (git-fixes bsc#1224180 CVE-2024-27400). -- Update - patches.suse/drm-amdgpu-pm-Fix-NULL-pointer-dereference-when-get-.patch - (git-fixes bsc#1223665 CVE-2024-26949). -- Update - patches.suse/drm-amdgpu-validate-the-parameters-of-bo-mapping-ope.patch - (git-fixes bsc#1223315 CVE-2024-26922). -- Update - patches.suse/drm-amdkfd-Confirm-list-is-non-empty-before-utilizin.patch - (git-fixes bsc#1224617 CVE-2023-52678). -- Update - patches.suse/drm-amdkfd-Fix-memory-leak-in-create_process-failure.patch - (git-fixes bsc#1223728 CVE-2024-26986). -- Update - patches.suse/drm-amdkfd-range-check-cp-bad-op-exception-interrupt.patch - (stable-fixes CVE-2024-36951). -- Update - patches.suse/drm-arm-malidp-fix-a-possible-null-pointer-dereferen.patch - (git-fixes bsc#1225593 CVE-2024-36014). -- Update patches.suse/drm-ast-Fix-soft-lockup.patch (git-fixes - bsc#1224705 CVE-2024-35952). -- Update - patches.suse/drm-bridge-tpd12s015-Drop-buggy-__exit-annotation-fo.patch - (git-fixes bsc#1224598 CVE-2023-52694). -- Update - patches.suse/drm-client-Fully-protect-modes-with-dev-mode_config..patch - (stable-fixes bsc#1224703 CVE-2024-35950). -- Update - patches.suse/drm-i915-bios-Tolerate-devdata-NULL-in-intel_bios_en.patch - (stable-fixes bsc#1223678 CVE-2024-26938). -- Update - patches.suse/drm-i915-gt-Reset-queue_priority_hint-on-parking.patch - (git-fixes bsc#1223677 CVE-2024-26937). -- Update - patches.suse/drm-lima-fix-a-memleak-in-lima_heap_alloc.patch - (git-fixes bsc#1224707 CVE-2024-35829). -- Update - patches.suse/drm-nouveau-firmware-Fix-SG_DEBUG-error-with-nvkm_fi.patch - (stable-fixes bsc#1225728 CVE-2024-36885). -- Update - patches.suse/drm-nouveau-fix-stale-locked-mutex-in-nouveau_gem_io.patch - (git-fixes bsc#1224714 CVE-2024-35786). -- Update - patches.suse/drm-nouveau-keep-DMA-buffers-required-for-suspend-re.patch - (git-fixes bsc#1224433 CVE-2024-27411). -- Update patches.suse/drm-nv04-Fix-out-of-bounds-access.patch - (git-fixes bsc#1223802 CVE-2024-27008). -- Update - patches.suse/drm-panfrost-Fix-the-error-path-in-panfrost_mmu_map_.patch - (git-fixes bsc#1224701 CVE-2024-35951). -- Update - patches.suse/drm-tegra-rgb-Fix-missing-clk_put-in-the-error-handl.patch - (git-fixes bsc#1224445 CVE-2023-52661). -- Update - patches.suse/drm-vc4-don-t-check-if-plane-state-fb-state-fb.patch - (stable-fixes bsc#1224650 CVE-2024-35932). -- Update - patches.suse/drm-vmwgfx-Create-debugfs-ttm_resource_manager-entry.patch - (git-fixes bsc#1223718 CVE-2024-26940). -- Update - patches.suse/drm-vmwgfx-Fix-the-lifetime-of-the-bo-cursor-memory.patch - (git-fixes bsc#1224626 CVE-2024-35810). -- Update - patches.suse/drm-vmwgfx-fix-a-memleak-in-vmw_gmrid_man_get_node.patch - (git-fixes bsc#1224449 CVE-2023-52662). -- Update - patches.suse/dyndbg-fix-old-BUG_ON-in-control-parser.patch - (stable-fixes bsc#1224647 CVE-2024-35947). -- Update - patches.suse/efi-capsule-loader-fix-incorrect-allocation-size.patch - (git-fixes bsc#1224438 CVE-2024-27413). -- Update patches.suse/efi-fix-panic-in-kdump-kernel.patch - (git-fixes bsc#1224507 CVE-2024-35800). -- Update patches.suse/efivarfs-Free-s_fs_info-on-unmount.patch - (bsc#1220328 CVE-2023-52463 bsc#1224505 CVE-2023-52681). -- Update - patches.suse/fat-fix-uninitialized-field-in-nostale-filehandles.patch - (git-fixes bsc#1223641 CVE-2024-26973). -- Update - patches.suse/fbmon-prevent-division-by-zero-in-fb_videomode_from_.patch - (stable-fixes bsc#1224660 CVE-2024-35922). -- Update - patches.suse/firewire-ohci-mask-bus-reset-interrupts-between-ISR-.patch - (stable-fixes CVE-2024-36950). -- Update - patches.suse/fs-aio-Check-IOCB_AIO_RW-before-the-struct-aio_kiocb.patch - (bsc#1222721 CVE-2024-26764 bsc#1224685 CVE-2024-35815). -- Update - patches.suse/geneve-fix-header-validation-in-geneve-6-_xmit_skb.patch - (git-fixes bsc#1224586 CVE-2024-35973). -- Update - patches.suse/geneve-make-sure-to-pull-inner-header-in-geneve_rx.patch - (git-fixes bsc#1223058 CVE-2024-26857). -- Update patches.suse/gpiolib-cdev-fix-uninitialised-kfifo.patch - (git-fixes bsc#1225736 CVE-2024-36898). -- Update - patches.suse/i2c-smbus-fix-NULL-function-pointer-dereference.patch - (git-fixes bsc#1224567 CVE-2024-35984). -- Update - patches.suse/i40e-fix-vf-may-be-used-uninitialized-in-this-functi.patch - (git-fixes bsc#1225698 CVE-2024-36020). -- Update - patches.suse/ice-fix-memory-corruption-bug-with-suspend-and-rebui.patch - (git-fixes bsc#1224486 CVE-2024-35911). -- Update - patches.suse/ice-fix-uninitialized-dplls-mutex-usage.patch - (git-fixes bsc#1223039 CVE-2024-26854). -- Update - patches.suse/idpf-fix-kernel-panic-on-unknown-packet-types.patch - (git-fixes bsc#1224517 CVE-2024-35889). -- Update - patches.suse/igc-avoid-returning-frame-twice-in-XDP_REDIRECT.patch - (git-fixes bsc#1223061 CVE-2024-26853). -- Update - patches.suse/init-main.c-Fix-potential-static_command_line-memory.patch - (git-fixes bsc#1223747 CVE-2024-26988). -- Update - patches.suse/iommufd-Fix-iopt_access_list_id-overwrite-bug.patch - (git-fixes bsc#1222780 CVE-2024-26786). -- Update - patches.suse/irqchip-gic-v3-its-Prevent-double-free-on-error.patch - (git-fixes bsc#1224697 CVE-2024-35847). -- Update - patches.suse/kprobes-Fix-possible-use-after-free-issue-on-kprobe-registration.patch - (git-fixes bsc#1224676 CVE-2024-35955). -- Update - patches.suse/mac802154-fix-llsec-key-resources-release-in-mac8021.patch - (git-fixes bsc#1223652 CVE-2024-26961). -- Update - patches.suse/maple_tree-fix-mas_empty_area_rev-null-pointer-deref.patch - (git-fixes bsc#1225710 CVE-2024-36891). -- Update - patches.suse/md-dm-raid-don-t-call-md_reap_sync_thread-directly-cd32.patch - (jsc#PED-7542 bsc#1224623 CVE-2024-35808). -- Update patches.suse/md-fix-kmemleak-of-rdev-serial-6cf3.patch - (jsc#PED-7542 bsc#1223046 CVE-2024-26900). -- Update - patches.suse/media-rkisp1-Fix-IRQ-handling-due-to-shared-interrup.patch - (stable-fixes bsc#1224443 CVE-2023-52660). -- Update - patches.suse/media-tc358743-register-v4l2-async-device-only-after.patch - (git-fixes bsc#1224680 CVE-2024-35830). -- Update - patches.suse/misc-lis3lv02d_i2c-Fix-regulators-getting-en-dis-abl.patch - (git-fixes bsc#1224609 CVE-2024-35824). -- Update - patches.suse/mlxbf_gige-call-request_irq-after-NAPI-initialized.patch - (git-fixes bsc#1224492 CVE-2024-35907). -- Update - patches.suse/mlxbf_gige-stop-interface-during-shutdown.patch - (git-fixes bsc#1224519 CVE-2024-35885). -- Update - patches.suse/mmc-core-Avoid-negative-index-with-array-access.patch - (git-fixes bsc#1224618 CVE-2024-35813). -- Update - patches.suse/mmc-sdhci-msm-pervent-access-to-suspended-controller.patch - (git-fixes bsc#1225708 CVE-2024-36029). -- Update - patches.suse/msft-hv-2971-net-mana-Fix-Rx-DMA-datasize-and-skb_over_panic.patch - (git-fixes bsc#1224495 CVE-2024-35901). -- Update - patches.suse/net-atlantic-eliminate-double-free-in-error-handling.patch - (git-fixes bsc#1224747 CVE-2023-52664). -- Update - patches.suse/net-ena-Fix-incorrect-descriptor-free-behavior.patch - (git-fixes bsc#1224677 CVE-2024-35958). -- Update - patches.suse/net-ethernet-mtk_eth_soc-fix-PPE-hanging-issue.patch - (git-fixes bsc#1224716 CVE-2024-27432). -- Update - patches.suse/net-hns3-fix-kernel-crash-when-1588-is-received-on-H.patch - (git-fixes bsc#1223041 CVE-2024-26881). -- Update - patches.suse/net-hns3-fix-kernel-crash-when-devlink-reload-during.patch - (git-fixes bsc#1225699 CVE-2024-36021). -- Update - patches.suse/net-ice-Fix-potential-NULL-pointer-dereference-in-ic.patch - (git-fixes bsc#1223051 CVE-2024-26855). -- Update - patches.suse/net-ks8851-Handle-softirqs-at-the-end-of-IRQ-thread-.patch - (git-fixes bsc#1224578 CVE-2024-35971). -- Update - patches.suse/net-ll_temac-platform_get_resource-replaced-by-wrong.patch - (git-fixes bsc#1224615 CVE-2024-35796). -- Update - patches.suse/net-mlx5-Properly-link-new-fs-rules-into-the-tree.patch - (git-fixes bsc#1224588 CVE-2024-35960). -- Update - patches.suse/net-mlx5-Register-devlink-first-under-devlink-lock.patch - (git-fixes bsc#1224585 CVE-2024-35961). -- Update - patches.suse/net-mlx5e-Fix-mlx5e_priv_init-cleanup-flow.patch - (git-fixes bsc#1224666 CVE-2024-35959). -- Update - patches.suse/net-mlx5e-Use-a-memory-barrier-to-enforce-PTP-WQ-xmi.patch - (git-fixes bsc#1223020 CVE-2024-26858). -- Update - patches.suse/net-mlx5e-fix-a-double-free-in-arfs_create_groups.patch - (jsc#PED-3311 bsc#1224605 CVE-2024-35835). -- Update - patches.suse/net-mlx5e-fix-a-potential-double-free-in-fs_any_crea.patch - (jsc#PED-3311 bsc#1224603 CVE-2023-52667). -- Update - patches.suse/net-mvpp2-clear-BM-pool-before-initialization.patch - (git-fixes bsc#1224500 CVE-2024-35837). -- Update - patches.suse/net-phy-micrel-Fix-potential-null-pointer-dereferenc.patch - (git-fixes bsc#1224513 CVE-2024-35891). -- Update - patches.suse/net-phy-phy_device-Prevent-nullptr-exceptions-on-ISR.patch - (stable-fixes bsc#1224639 CVE-2024-35945). -- Update - patches.suse/net-sparx5-Fix-use-after-free-inside-sparx5_del_mact.patch - (git-fixes bsc#1223052 CVE-2024-26856). -- Update patches.suse/net-tls-fix-WARNIING-in-__sk_msg_free.patch - (bsc#1221858 bsc#1224687 CVE-2024-35841). -- Update - patches.suse/net-wwan-t7xx-Split-64bit-accesses-to-fix-alignment-.patch - (git-fixes bsc#1224491 CVE-2024-35909). -- Update - patches.suse/nfc-nci-Fix-uninit-value-in-nci_dev_up-and-nci_ntf_p.patch - (git-fixes bsc#1224479 CVE-2024-35915). -- Update - patches.suse/nfp-flower-handle-acti_netdevs-allocation-failure.patch - (git-fixes bsc#1223827 CVE-2024-27046). -- Update - patches.suse/nfs-fix-panic-when-nfs4_ff_layout_prepare_ds-fails.patch - (git-fixes bsc#1223038 CVE-2024-26868). -- Update - patches.suse/nfsd-Fix-error-cleanup-path-in-nfsd_rename.patch - (bsc#1221044 CVE-2023-52591 bsc#1224482 CVE-2024-35914). -- Update - patches.suse/nouveau-dmem-handle-kcalloc-allocation-failure.patch - (git-fixes CVE-2024-26943). -- Update - patches.suse/nouveau-fix-instmem-race-condition-around-ptr-stores.patch - (git-fixes bsc#1223633 CVE-2024-26984). -- Update patches.suse/nouveau-lock-the-client-object-tree.patch - (stable-fixes bsc#1223834 CVE-2024-27062). -- Update - patches.suse/nouveau-uvmm-fix-addr-range-calcs-for-remap-operatio.patch - (git-fixes bsc#1225694 CVE-2024-36018). -- Update - patches.suse/nvme-fc-do-not-wait-in-vain-when-unloading-module.patch - (git-fixes bsc#1223023 CVE-2024-26846). -- Update - patches.suse/nvme-fix-reconnection-fail-due-to-reserved-tag-alloc.patch - (git-fixes bsc#1224717 CVE-2024-27435). -- Update - patches.suse/octeontx2-af-Use-separate-handlers-for-interrupts.patch - (git-fixes bsc#1223790 CVE-2024-27030). -- Update - patches.suse/octeontx2-pf-Fix-transmit-scheduler-resource-leak.patch - (git-fixes bsc#1224569 CVE-2024-35975). -- Update - patches.suse/of-Fix-double-free-in-of_parse_phandle_with_args_map.patch - (git-fixes bsc#1224508 CVE-2023-52679). -- Update - patches.suse/of-dynamic-Synchronize-of_changeset_destroy-with-the.patch - (git-fixes bsc#1224524 CVE-2024-35879). -- Update - patches.suse/of-module-prevent-NULL-pointer-dereference-in-vsnpri.patch - (stable-fixes bsc#1224671 CVE-2024-35878). -- Update - patches.suse/phy-marvell-a3700-comphy-Fix-out-of-bounds-read.patch - (git-fixes bsc#1224555 CVE-2024-35992). -- Update - patches.suse/phy-ti-tusb1210-Resolve-charger-det-crash-if-charger.patch - (git-fixes bsc#1224562 CVE-2024-35986). -- Update - patches.suse/pinctrl-core-delete-incorrect-free-in-pinctrl_enable.patch - (git-fixes CVE-2024-36940). -- Update - patches.suse/pinctrl-devicetree-fix-refcount-leak-in-pinctrl_dt_t.patch - (git-fixes CVE-2024-36959). -- Update - patches.suse/platform-chrome-cros_ec_uart-properly-fix-race-condi.patch - (git-fixes bsc#1224568 CVE-2024-35977). -- Update - patches.suse/power-supply-bq27xxx-i2c-Do-not-free-non-existing-IR.patch - (git-fixes bsc#1224437 CVE-2024-27412). -- Update - patches.suse/powerpc-imc-pmu-Add-a-null-pointer-check-in-update_events_in_group.patch - (git-fixes bsc#1224504 CVE-2023-52675). -- Update - patches.suse/powerpc-powernv-Add-a-null-pointer-check-in-opal_eve.patch - (bsc#1065729 bsc#1224682 CVE-2023-52686). -- Update - patches.suse/powerpc-powernv-Add-a-null-pointer-check-in-opal_pow.patch - (bsc#1181674 ltc#189159 git-fixes bsc#1224601 CVE-2023-52696). -- Update - patches.suse/powerpc-powernv-Add-a-null-pointer-check-to-scom_deb.patch - (bsc#1194869 bsc#1224611 CVE-2023-52690). -- Update - patches.suse/pstore-inode-Only-d_invalidate-is-needed.patch - (git-fixes bsc#1223705 CVE-2024-27389). -- Update - patches.suse/pstore-ram_core-fix-possible-overflow-in-persistent_.patch - (git-fixes bsc#1224728 CVE-2023-52685). -- Update - patches.suse/pstore-zone-Add-a-null-pointer-check-to-the-psz_kmsg.patch - (stable-fixes bsc#1224537 CVE-2024-35940). -- Update - patches.suse/regmap-maple-Fix-cache-corruption-in-regcache_maple_.patch - (git-fixes bsc#1225695 CVE-2024-36019). -- Update - patches.suse/rpmsg-virtio-Free-driver_override-when-rpmsg_remove.patch - (git-fixes bsc#1224696 CVE-2023-52670). -- Update - patches.suse/s390-cio-Ensure-the-copied-buf-is-NUL-terminated.patch - (git-fixes bsc#1223869 bsc#1225747 CVE-2024-36931). -- Update - patches.suse/s390-qeth-Fix-kernel-panic-after-setting-hsuid.patch - (git-fixes bsc#1223874 bsc#1225775 CVE-2024-36928). -- Update - patches.suse/s390-zcrypt-fix-reference-counting-on-zcrypt-card-objects.patch - (git-fixes bsc#1223592 bsc#1223666 CVE-2024-26957). -- Update - patches.suse/scsi-core-Fix-unremoved-procfs-host-directory-regression.patch - (git-fixes bsc#1223675 CVE-2024-26935). -- Update - patches.suse/scsi-lpfc-Fix-possible-memory-leak-in-lpfc_rcv_padis.patch - (bsc#1220021 bsc#1224651 CVE-2024-35930). -- Update - patches.suse/scsi-qla2xxx-Fix-off-by-one-in-qla_edif_app_getstats.patch - (git-fixes bsc#1225704 CVE-2024-36025). -- Update patches.suse/scsi-sg-Avoid-sg-device-teardown-race.patch - (git-fixes bsc#1224675 CVE-2024-35954). -- Update - patches.suse/scsi-smartpqi-Fix-disable_managed_interrupts.patch - (git-fixes bsc#1222608 CVE-2024-26742). -- Update - patches.suse/selinux-avoid-dereference-of-garbage-after-mount-fai.patch - (git-fixes bsc#1224494 CVE-2024-35904). -- Update - patches.suse/serial-mxs-auart-add-spinlock-around-changing-cts-st.patch - (git-fixes bsc#1223757 CVE-2024-27000). -- Update - patches.suse/serial-pmac_zilog-Remove-flawed-mitigation-for-rx-ir.patch - (git-fixes bsc#1223754 CVE-2024-26999). -- Update - patches.suse/soc-fsl-qbman-Always-disable-interrupts-when-taking-.patch - (git-fixes bsc#1224699 CVE-2024-35806). -- Update - patches.suse/soc-fsl-qbman-Use-raw-spinlock-for-cgr_lock.patch - (git-fixes bsc#1224683 CVE-2024-35819). -- Update patches.suse/speakup-Avoid-crash-on-very-long-word.patch - (git-fixes bsc#1223750 CVE-2024-26994). -- Update - patches.suse/spi-fix-null-pointer-dereference-within-spi_sync.patch - (git-fixes CVE-2024-36930). -- Update - patches.suse/spi-lpspi-Avoid-potential-use-after-free-in-probe.patch - (git-fixes bsc#1223024 CVE-2024-26866). -- Update - patches.suse/spi-mchp-pci1xxx-Fix-a-possible-null-pointer-derefer.patch - (git-fixes bsc#1224521 CVE-2024-35883). -- Update - patches.suse/spi-spi-mt65xx-Fix-NULL-pointer-access-in-interrupt-.patch - (git-fixes bsc#1223788 CVE-2024-27028). -- Update - patches.suse/ubifs-Set-page-uptodate-in-the-correct-place.patch - (git-fixes bsc#1224629 CVE-2024-35821). -- Update - patches.suse/usb-cdc-wdm-close-race-between-read-and-workqueue.patch - (git-fixes bsc#1224624 CVE-2024-35812). -- Update - patches.suse/usb-dwc2-host-Fix-dereference-issue-in-DDMA-completi.patch - (git-fixes bsc#1223741 CVE-2024-26997). -- Update - patches.suse/usb-dwc3-am62-fix-module-unload-reload-behavior.patch - (git-fixes bsc#1223651 CVE-2024-26963). -- Update - patches.suse/usb-gadget-f_fs-Fix-race-between-aio_cancel-and-AIO-.patch - (git-fixes bsc#1225749 CVE-2024-36894). -- Update - patches.suse/usb-gadget-f_ncm-Fix-UAF-ncm-object-at-re-bind-after.patch - (stable-fixes bsc#1223752 CVE-2024-26996). -- Update - patches.suse/usb-gadget-ncm-Avoid-dropping-datagrams-of-properly-.patch - (git-fixes bsc#1224423 CVE-2024-27405). -- Update - patches.suse/usb-gadget-ncm-Fix-handling-of-zero-block-length-pac.patch - (git-fixes bsc#1224681 CVE-2024-35825). -- Update - patches.suse/usb-gadget-uvc-use-correct-buffer-size-when-parsing-.patch - (git-fixes bsc#1225750 CVE-2024-36895). -- Update - patches.suse/usb-typec-altmodes-displayport-create-sysfs-nodes-as.patch - (git-fixes bsc#1224712 CVE-2024-35790). -- Update - patches.suse/usb-typec-tcpm-Check-for-port-partner-validity-befor.patch - (git-fixes bsc#1225748 CVE-2024-36893). -- Update - patches.suse/usb-typec-tcpm-Correct-the-PDO-counting-in-pd_set.patch - (git-fixes bsc#1223696 CVE-2024-26995). -- Update - patches.suse/usb-typec-tcpm-fix-double-free-issue-in-tcpm_port_un.patch - (git-fixes bsc#1223649 CVE-2024-26932). -- Update patches.suse/usb-typec-ucsi-Limit-read-size-on-v1.2.patch - (stable-fixes bsc#1224657 CVE-2024-35924). -- Update - patches.suse/usb-udc-remove-warning-when-queue-disabled-ep.patch - (stable-fixes bsc#1224739 CVE-2024-35822). -- Update - patches.suse/usb-xhci-Add-error-handling-in-xhci_map_urb_for_dma.patch - (git-fixes bsc#1223650 CVE-2024-26964). -- Update - patches.suse/vt-fix-unicode-buffer-corruption-when-deleting-chara.patch - (git-fixes bsc#1224692 CVE-2024-35823). -- Update - patches.suse/wifi-ath11k-decrease-MHI-channel-buffer-length-to-8K.patch - (bsc#1207948 bsc#1224643 CVE-2024-35938). -- Update - patches.suse/wifi-brcmfmac-Fix-use-after-free-bug-in-brcmf_cfg802.patch - (CVE-2023-47233 bsc#1216702 bsc#1224592 CVE-2024-35811). -- Update - patches.suse/wifi-cfg80211-check-A-MSDU-format-more-carefully.patch - (stable-fixes bsc#1224526 CVE-2024-35937). -- Update - patches.suse/wifi-iwlwifi-dbg-tlv-ensure-NUL-termination.patch - (git-fixes bsc#1224731 CVE-2024-35845). -- Update - patches.suse/wifi-iwlwifi-mvm-don-t-set-the-MFP-flag-for-the-GTK.patch - (git-fixes bsc#1224710 CVE-2024-27434). -- Update - patches.suse/wifi-iwlwifi-mvm-guard-against-invalid-STA-ID-on-rem.patch - (stable-fixes bsc#1225769 CVE-2024-36921). -- Update - patches.suse/wifi-iwlwifi-mvm-rfi-fix-potential-response-leaks.patch - (git-fixes bsc#1224487 CVE-2024-35912). -- Update - patches.suse/wifi-iwlwifi-read-txq-read_ptr-under-lock.patch - (stable-fixes CVE-2024-36922). -- Update - patches.suse/wifi-libertas-fix-some-memleaks-in-lbs_allocate_cmd_.patch - (git-fixes bsc#1224622 CVE-2024-35828). -- Update - patches.suse/wifi-mac80211-check-clear-fast-rx-for-non-4addr-sta-.patch - (stable-fixes bsc#1224749 CVE-2024-35789). -- Update - patches.suse/wifi-mac80211-fix-potential-sta-link-leak.patch - (git-fixes bsc#1224613 CVE-2024-35838). -- Update - patches.suse/wifi-nl80211-don-t-free-NULL-coalescing-rule.patch - (git-fixes CVE-2024-36941). -- Update - patches.suse/wifi-nl80211-reject-iftype-change-with-mesh-ID-chang.patch - (git-fixes bsc#1224432 CVE-2024-27410). -- Update - patches.suse/wifi-rtw89-fix-null-pointer-access-when-abort-scan.patch - (stable-fixes bsc#1224646 CVE-2024-35946). -- Update - patches.suse/wireguard-netlink-access-device-through-ctx-instead-.patch - (git-fixes bsc#1223661 CVE-2024-26950). -- Update - patches.suse/wireguard-netlink-check-for-dangling-peer-via-is_dea.patch - (git-fixes bsc#1223660 CVE-2024-26951). -- Update - patches.suse/wireguard-receive-annotate-data-race-around-receivin.patch - (git-fixes bsc#1223076 CVE-2024-26861). -- Update - patches.suse/x86-coco-Require-seeding-RNG-with-RDRAND-on-CoCo-systems.patch - (git-fixes bsc#1224665 CVE-2024-35875). -- Update - patches.suse/x86-fpu-Keep-xfd_state-in-sync-with-MSR_IA32_XFD.patch - (git-fixes bsc#1224732 CVE-2024-35801). -- Update - patches.suse/xen-evtchn-avoid-WARN-when-unbinding-an-event-channe.patch - (git-fixes bsc#1223739 CVE-2024-27067). -- Update - patches.suse/xsk-recycle-buffer-in-case-Rx-queue-was-full.patch - (bsc#1221303 CVE-2024-26611 bsc#1224620 CVE-2024-35834). -- commit 0191191 - ------------------------------------------------------------------- Mon Jun 3 14:06:08 CEST 2024 - mfranc@suse.cz @@ -19248,12 +25398,6 @@ Mon Jun 3 13:25:29 CEST 2024 - msuchanek@suse.de lookup (bsc#1187716 ltc#193451 git-fixes). - commit ceab637 -------------------------------------------------------------------- -Mon Jun 3 13:19:17 CEST 2024 - msuchanek@suse.de - -- blacklist.conf: PPC fsl_msi is not used -- commit ae6590d - ------------------------------------------------------------------- Mon Jun 3 13:03:27 CEST 2024 - msuchanek@suse.de @@ -19368,18 +25512,6 @@ Fri May 31 19:39:48 CEST 2024 - dsterba@suse.com - 9p: add missing locking around taking dentry fid list (git-fixes) - commit 581af2d -------------------------------------------------------------------- -Fri May 31 18:08:13 CEST 2024 - dsterba@suse.com - -- blacklist.conf: only a VFS cleanup -- commit f4a0ca8 - -------------------------------------------------------------------- -Fri May 31 18:00:27 CEST 2024 - dsterba@suse.com - -- blacklist.conf: openpromfs not built -- commit 475ff82 - ------------------------------------------------------------------- Fri May 31 17:58:22 CEST 2024 - dsterba@suse.com @@ -19429,24 +25561,12 @@ Fri May 31 17:08:22 CEST 2024 - shung-hsi.yu@suse.com - bpf: handle ldimm64 properly in check_cfg() (bsc#1225756). - commit 9cbb99b -------------------------------------------------------------------- -Fri May 31 16:48:47 CEST 2024 - dsterba@suse.com - -- blacklist.conf: remove add and revert patch pair -- commit f17fe30 - ------------------------------------------------------------------- Fri May 31 16:41:07 CEST 2024 - dsterba@suse.com - fs: indicate request originates from old mount API (git-fixes) - commit 0754468 -------------------------------------------------------------------- -Fri May 31 16:38:52 CEST 2024 - dsterba@suse.com - -- blacklist.conf: only comment fix -- commit b912460 - ------------------------------------------------------------------- Fri May 31 16:36:29 CEST 2024 - dsterba@suse.com @@ -19614,12 +25734,6 @@ Wed May 29 18:24:54 CEST 2024 - nstange@suse.de from the PKCS#7 selftest. - commit cfa0827 -------------------------------------------------------------------- -Wed May 29 17:39:53 CEST 2024 - mbrugger@suse.com - -- blacklist.conf: arm: kernel does not support folios -- commit e0489ca - ------------------------------------------------------------------- Wed May 29 17:23:53 CEST 2024 - pmladek@suse.com @@ -19820,13 +25934,6 @@ Wed May 29 13:45:07 CEST 2024 - pmladek@suse.com klp_resolve_symbols() (bsc#1223539). - commit af0f908 -------------------------------------------------------------------- -Wed May 29 13:33:07 CEST 2024 - pmladek@suse.com - -- blacklist.conf: workqueues: system-wide nr_active enforcement patchset; - not worth the risk (bsc#1225580) -- commit 059cebc - ------------------------------------------------------------------- Wed May 29 13:28:17 CEST 2024 - shung-hsi.yu@suse.com @@ -19872,12 +25979,6 @@ Wed May 29 11:25:39 CEST 2024 - jlee@suse.com (bsc#1224581 CVE-2024-35964). - commit 9d49d44 -------------------------------------------------------------------- -Wed May 29 11:06:17 CEST 2024 - pmladek@suse.com - -- blacklist.conf: workqueues: cosmetic; truncated names in ps output -- commit 2ed068f - ------------------------------------------------------------------- Wed May 29 10:52:47 CEST 2024 - jlee@suse.com @@ -20014,13 +26115,6 @@ Tue May 28 20:07:48 CEST 2024 - ematsumiya@suse.de (bsc#1225172). - commit 3ddf86f -------------------------------------------------------------------- -Tue May 28 16:02:28 CEST 2024 - iivanov@suse.de - -- blacklist.conf: Ignore all devicetree schemes changes - We do not use them, so lets silence all git-fixes for them. -- commit 84a3286 - ------------------------------------------------------------------- Tue May 28 13:34:20 CEST 2024 - nik.borisov@suse.com @@ -20250,18 +26344,6 @@ Mon May 27 15:40:09 CEST 2024 - dsterba@suse.com - btrfs: make error messages more clear when getting a chunk map (git-fixes) - commit 47ecf55 -------------------------------------------------------------------- -Mon May 27 15:38:41 CEST 2024 - dsterba@suse.com - -- blacklist.conf: btrfs: compilation warning fix -- commit 02490e2 - -------------------------------------------------------------------- -Mon May 27 15:37:02 CEST 2024 - dsterba@suse.com - -- blacklist.conf: btrfs: code not built -- commit 5199fc3 - ------------------------------------------------------------------- Mon May 27 15:29:06 CEST 2024 - dsterba@suse.com @@ -20307,12 +26389,6 @@ Mon May 27 15:20:36 CEST 2024 - petr.pavlu@suse.com - tracing: hide unused ftrace_event_id_fops (git-fixes). - commit 61c90c7 -------------------------------------------------------------------- -Mon May 27 15:19:03 CEST 2024 - petr.pavlu@suse.com - -- blacklist.conf: add not-relevant tracing commits -- commit b97c070 - ------------------------------------------------------------------- Mon May 27 11:19:26 CEST 2024 - nik.borisov@suse.com @@ -21596,14 +27672,6 @@ Wed May 22 10:48:23 CEST 2024 - iivanov@suse.de - supported.conf: Add APM X-Gene SoC hardware monitoring driver (bsc#1223265 jsc#PED-8570) - commit 4b0eeb3 -------------------------------------------------------------------- -Wed May 22 10:35:02 CEST 2024 - lhenriques@suse.de - -- blacklist.conf: cephfs client logging infrastructure commits - These two commits are useless in isolation, they are part of a larger set - of commits that add extra info to debug logs. -- commit 2056926 - ------------------------------------------------------------------- Wed May 22 08:47:44 CEST 2024 - tiwai@suse.de @@ -21688,12 +27756,6 @@ Tue May 21 16:07:04 CEST 2024 - jgross@suse.com dirty status (git-fixes). - commit 7bdd69f -------------------------------------------------------------------- -Tue May 21 15:26:06 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add a1fd0b9d751f sched/fair: Allow disabling sched_balance_newidle with sched_relax_domain_level -- commit 3d0aa70 - ------------------------------------------------------------------- Tue May 21 15:16:02 CEST 2024 - tiwai@suse.de @@ -21889,12 +27951,6 @@ Tue May 21 09:57:46 CEST 2024 - jgross@suse.com due to bad index (git-fixes). - commit b2e9cf1 -------------------------------------------------------------------- -Tue May 21 09:22:11 CEST 2024 - shung-hsi.yu@suse.com - -- blacklist.conf: add "libbpf: Fix NULL pointer dereference in bpf_object__collect_prog_relos" -- commit f859338 - ------------------------------------------------------------------- Tue May 21 09:07:54 CEST 2024 - jgross@suse.com @@ -22036,12 +28092,6 @@ Mon May 20 17:28:06 CEST 2024 - dsterba@suse.com - btrfs: sysfs: validate scrub_speed_max value (git-fixes) - commit 333b480 -------------------------------------------------------------------- -Mon May 20 17:26:31 CEST 2024 - dsterba@suse.com - -- blacklist.conf: btrfs: build fix for config we don't use -- commit d489b93 - ------------------------------------------------------------------- Mon May 20 17:25:16 CEST 2024 - dsterba@suse.com @@ -22210,12 +28260,6 @@ Mon May 20 15:37:10 CEST 2024 - nmorey@suse.com - RDMA/rxe: Fix the problem "mutex_destroy missing" (git-fixes) - commit 0a73f85 -------------------------------------------------------------------- -Mon May 20 14:08:23 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: dts: broadcom: bcmbca: bcm4908: set brcm,wp-not-connected") -- commit a7b0273 - ------------------------------------------------------------------- Mon May 20 14:04:41 CEST 2024 - iivanov@suse.de @@ -22265,270 +28309,12 @@ Mon May 20 13:22:07 CEST 2024 - iivanov@suse.de Refresh patches.suse/arm64-dts-rockchip-enable-internal-pull-up-on-PCIE_WAKE-for-RK3399-Puma.patch - commit aeac8db -------------------------------------------------------------------- -Mon May 20 12:53:44 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: display: samsung,ams495qa01: add missing SPI properties") -- commit f4f5a90 - -------------------------------------------------------------------- -Mon May 20 12:53:08 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: iio: health: maxim,max30102: fix compatible check") -- commit 1690e24 - -------------------------------------------------------------------- -Mon May 20 12:52:51 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: pwm: mediatek,pwm-disp: Document power-domains property") -- commit 6958159 - -------------------------------------------------------------------- -Mon May 20 12:52:16 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: fsl-imx-sdma: fix HDMI audio index") -- commit 952bf73 - -------------------------------------------------------------------- -Mon May 20 12:52:05 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: lcdif: Do not require power-domains for i.MX6ULL") -- commit eabdd33 - -------------------------------------------------------------------- -Mon May 20 12:51:52 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: interrupt-controller: renesas,rzg2l-irqc: Update") -- commit ad9009e - -------------------------------------------------------------------- -Mon May 20 12:51:31 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mtd: avoid automatically select from mtd.yaml") -- commit 2d9981a - -------------------------------------------------------------------- -Mon May 20 12:51:15 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: can: mpfs: add missing required clock") -- commit d5f79eb - -------------------------------------------------------------------- -Mon May 20 12:50:57 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mfd: dlg,da9063: Make #interrupt-cells required") -- commit a6ea77b - -------------------------------------------------------------------- -Mon May 20 12:50:46 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: pinctr: pinctrl-zynq: Fix compatible string") -- commit f208a95 - -------------------------------------------------------------------- -Mon May 20 12:49:28 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: msm: qcom, mdss: Include ommited fam-b compatible") -- commit 3478db8 - -------------------------------------------------------------------- -Mon May 20 12:49:08 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: display: ti,am65x-dss: Add support for common1 region") -- commit 7eb6591 - -------------------------------------------------------------------- -Mon May 20 12:48:50 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: opp: drop maxItems from inner items") -- commit 878a019 - -------------------------------------------------------------------- -Mon May 20 12:48:31 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: pwm: amlogic: fix s4 bindings") -- commit e2029e3 - -------------------------------------------------------------------- -Mon May 20 12:48:15 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: arm: rockchip: Correct vendor for Banana Pi R2 Pro") -- commit c1d1519 - -------------------------------------------------------------------- -Mon May 20 12:45:53 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: arm: rockchip: Correct vendor for Orange Pi RK3399 board") -- commit 88539b6 - ------------------------------------------------------------------- Mon May 20 12:45:20 CEST 2024 - iivanov@suse.de - dt-bindings: clock: qcom: Add missing UFS QREF clocks (git-fixes) - commit 4e403e4 -------------------------------------------------------------------- -Mon May 20 12:43:49 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: arm: qcom: drop the superfluous device compatibility") -- commit f6fdbc2 - -------------------------------------------------------------------- -Mon May 20 12:43:00 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: riscv: cpus: Clarify mmu-type interpretation") -- commit 4b6b7f4 - -------------------------------------------------------------------- -Mon May 20 12:42:52 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: power: reset: qcom-pon: fix inconsistent example") -- commit b2da43b - -------------------------------------------------------------------- -Mon May 20 12:42:42 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: rtc: qcom-pm8xxx: fix inconsistent example") -- commit 673e959 - -------------------------------------------------------------------- -Mon May 20 12:42:30 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: phy: qcom,sc8280xp-qmp-usb43dp-phy: fix path to header") -- commit 2965719 - -------------------------------------------------------------------- -Mon May 20 12:42:17 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: phy: amlogic,g12a-mipi-dphy-analog: drop unneeded reg") -- commit 44293cc - -------------------------------------------------------------------- -Mon May 20 12:42:03 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: gpio: xilinx: Fix node address in gpio") -- commit 51eae0f - -------------------------------------------------------------------- -Mon May 20 12:41:48 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: iio/adc: qcom,spmi-vadc: fix example node names") -- commit 5559cae - -------------------------------------------------------------------- -Mon May 20 12:41:19 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: iio/adc: qcom,spmi-iadc: fix example node name") -- commit 6d910c5 - -------------------------------------------------------------------- -Mon May 20 12:39:37 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: PCI: qcom: Correct reset-names property") -- commit cfa6f44 - -------------------------------------------------------------------- -Mon May 20 12:17:43 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mailbox: zynqmp: extend required list") -- commit 193f0ac - -------------------------------------------------------------------- -Mon May 20 12:17:21 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mailbox: qcom,apcs-kpss-global: drop duplicated") -- commit 855a271 - -------------------------------------------------------------------- -Mon May 20 12:17:05 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mfd: hisilicon,hi6421-spmi-pmic: Fix regulator binding") -- commit 9b3e020 - -------------------------------------------------------------------- -Mon May 20 12:16:23 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mfd: hisilicon,hi6421-spmi-pmic: Fix up binding") -- commit a0c4967 - -------------------------------------------------------------------- -Mon May 20 12:16:03 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: remoteproc: qcom: sc7180-pas: Fix SC7280 MPSS PD-names") -- commit de1ba63 - -------------------------------------------------------------------- -Mon May 20 11:58:54 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: mmc: sdhci-pxa: Fix 'regs' typo") -- commit 3378497 - -------------------------------------------------------------------- -Mon May 20 11:58:39 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: Remove alt_ref from versal") -- commit 4d14333 - -------------------------------------------------------------------- -Mon May 20 11:58:17 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: watchdog: qcom-wdt: Make the interrupt example edge") -- commit 17a3ab8 - -------------------------------------------------------------------- -Mon May 20 11:57:04 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: display: msm: qcm2290-mdss: Use the non-deprecated DSI") -- commit 4aa1481 - -------------------------------------------------------------------- -Mon May 20 11:56:20 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: arm: stm32: don't mix SCMI and non-SCMI board") -- commit 448ff06 - -------------------------------------------------------------------- -Mon May 20 11:55:42 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: media: mediatek: mdp3: correct RDMA and WROT node with") -- commit ab03332 - -------------------------------------------------------------------- -Mon May 20 11:55:04 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: nvmem: mxs-ocotp: Document fsl,ocotp") -- commit 1d6fc28 - -------------------------------------------------------------------- -Mon May 20 11:54:37 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: interrupt-controller: Allow #power-domain-cells") -- commit 027195f - -------------------------------------------------------------------- -Mon May 20 11:54:05 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt: dt-extract-compatibles: Don't follow symlinks when walking tree") -- commit 60fcfee - -------------------------------------------------------------------- -Mon May 20 11:52:07 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: soc: fsl: cpm_qe: cpm1-scc-qmc: Fix example property") -- commit de60146 - -------------------------------------------------------------------- -Mon May 20 11:51:01 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: PCI: brcm,iproc-pcie: Fix 'msi' child node schema") -- commit d7b96e4 - -------------------------------------------------------------------- -Mon May 20 11:49:15 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("dt-bindings: soc: qcom: smd-rpm: Add MSM8909 to qcom,smd-channels") -- commit 1171729 - ------------------------------------------------------------------- Mon May 20 08:14:54 CEST 2024 - tiwai@suse.de @@ -22571,19 +28357,6 @@ Sun May 19 09:24:05 CEST 2024 - tiwai@suse.de (git-fixes). - commit 8bfa411 -------------------------------------------------------------------- -Sun May 19 04:57:25 CEST 2024 - jlee@suse.com - -- Bluetooth: Fix use-after-free bugs caused by sco_sock_timeout - (bsc#1224174 CVE-2024-27398). -- commit 5039ac8 - -------------------------------------------------------------------- -Sat May 18 09:44:27 CEST 2024 - tiwai@suse.de - -- blacklist.conf: Add reverted dmaengine commit entries -- commit 134f997 - ------------------------------------------------------------------- Sat May 18 09:42:47 CEST 2024 - tiwai@suse.de @@ -22713,12 +28486,6 @@ Fri May 17 14:31:26 CEST 2024 - dsterba@suse.com - btrfs: file_remove_privs needs an exclusive lock in direct io write (git-fixes) - commit 0bc88db -------------------------------------------------------------------- -Fri May 17 14:29:12 CEST 2024 - dsterba@suse.com - -- blacklist.conf: btrfs: cleanup, v0 extent removal -- commit fecc398 - ------------------------------------------------------------------- Fri May 17 14:28:15 CEST 2024 - dsterba@suse.com @@ -23048,12 +28815,6 @@ Thu May 16 15:22:52 CEST 2024 - dsterba@suse.com - btrfs: fix off-by-one when checking chunk map includes logical address (git-fixes) - commit e5842bb -------------------------------------------------------------------- -Thu May 16 15:20:56 CEST 2024 - dsterba@suse.com - -- blacklist.conf: btrfs: ref-verify not built -- commit 701d654 - ------------------------------------------------------------------- Thu May 16 15:20:06 CEST 2024 - dsterba@suse.com @@ -23371,12 +29132,6 @@ Wed May 15 14:30:48 CEST 2024 - mkoutny@suse.com - cifs: fix underflow in parse_server_interfaces() (CVE-2024-26828 bsc#1223084). - commit 40aba68 -------------------------------------------------------------------- -Wed May 15 14:27:20 CEST 2024 - dsterba@suse.com - -- blacklist.conf: fs updates -- commit 372a9be - ------------------------------------------------------------------- Wed May 15 13:58:14 CEST 2024 - denis.kirjanov@suse.com @@ -23770,12 +29525,6 @@ Tue May 14 10:50:12 CEST 2024 - nik.borisov@suse.com patches.suse/x86-srso-fix-vulnerability-reporting-for-missing-microcode.patch. - commit 3afb908 -------------------------------------------------------------------- -Tue May 14 10:41:29 CEST 2024 - oneukum@suse.com - -- blacklist.conf: not applicable -- commit 158f7dc - ------------------------------------------------------------------- Tue May 14 10:25:06 CEST 2024 - nik.borisov@suse.com @@ -23850,12 +29599,6 @@ Mon May 13 19:20:28 CEST 2024 - dsterba@suse.com - btrfs: add missing mutex_unlock in btrfs_relocate_sys_chunks() (git-fixes) - commit 8bc326a -------------------------------------------------------------------- -Mon May 13 18:29:29 CEST 2024 - tonyj@suse.de - -- blacklist.conf: add perf patch already known by alias commit -- commit 706da8e - ------------------------------------------------------------------- Mon May 13 17:53:02 CEST 2024 - dsterba@suse.com @@ -23899,12 +29642,6 @@ Mon May 13 17:32:40 CEST 2024 - dsterba@suse.com - btrfs: release path before inode lookup during the ino lookup ioctl (git-fixes) - commit 4b7ba54 -------------------------------------------------------------------- -Mon May 13 17:29:01 CEST 2024 - dsterba@suse.com - -- blacklist.conf: Add 2d6cd791e63e "btrfs: fix race between finishing block group creation and its item update" -- commit ca673ac - ------------------------------------------------------------------- Mon May 13 17:09:25 CEST 2024 - tiwai@suse.de @@ -23933,18 +29670,6 @@ Mon May 13 15:02:10 CEST 2024 - nstange@suse.de - crypto: rsa - add a check for allocation failure (bsc#1222775). - commit 8c6c396 -------------------------------------------------------------------- -Mon May 13 14:53:32 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 70f199a - -------------------------------------------------------------------- -Mon May 13 14:51:33 CEST 2024 - oneukum@suse.com - -- blacklist.conf: kABI -- commit 835874a - ------------------------------------------------------------------- Mon May 13 14:00:14 CEST 2024 - tiwai@suse.de @@ -24862,18 +30587,6 @@ Thu May 2 15:14:12 CEST 2024 - iivanov@suse.de - arm64: dts: rockchip: fix rk3328 hdmi ports node (git-fixes) - commit 3f691a1 -------------------------------------------------------------------- -Thu May 2 15:12:55 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: dts: rockchip: mark system power controller on rk3588-evb1") -- commit 24dc024 - -------------------------------------------------------------------- -Thu May 2 15:11:02 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64/mm: Modify range-based tlbi to decrement scale") -- commit 9fd5163 - ------------------------------------------------------------------- Thu May 2 13:38:24 CEST 2024 - jslaby@suse.cz @@ -24992,12 +30705,6 @@ Tue Apr 30 16:11:40 CEST 2024 - tiwai@suse.de (CVE-2024-23848 bsc#1219104). - commit c39ac04 -------------------------------------------------------------------- -Tue Apr 30 16:07:18 CEST 2024 - mfranc@suse.cz - -- blacklist.conf: refactoring, not a fix -- commit d5a22ac - ------------------------------------------------------------------- Tue Apr 30 16:02:50 CEST 2024 - mfranc@suse.cz @@ -25346,12 +31053,6 @@ Sat Apr 27 08:33:05 CEST 2024 - tiwai@suse.de - drm/gma500: Remove lid code (git-fixes). - commit 783bf0e -------------------------------------------------------------------- -Fri Apr 26 18:54:14 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add 246f80a0b17f8 ("sh: push-switch: Reorder cleanup operations to avoid use-after-free bug") -- commit 0fe9e4b - ------------------------------------------------------------------- Fri Apr 26 12:38:44 CEST 2024 - tiwai@suse.de @@ -25795,12 +31496,6 @@ Mon Apr 22 13:54:41 CEST 2024 - nik.borisov@suse.com - x86/bugs: Fix BHI retpoline check (git-fixes). - commit 00081b1 -------------------------------------------------------------------- -Mon Apr 22 13:53:35 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: Blacklist spurious patch -- commit 14b3e73 - ------------------------------------------------------------------- Mon Apr 22 08:45:08 CEST 2024 - msuchanek@suse.de @@ -25910,20 +31605,6 @@ Sat Apr 20 08:38:21 CEST 2024 - tiwai@suse.de - nilfs2: fix OOB in nilfs_set_de_type (git-fixes). - commit de35710 -------------------------------------------------------------------- -Fri Apr 19 21:07:04 CEST 2024 - tonyj@suse.de - -- blacklist.conf: kill erroneous blank line added by 58324b9ff787 -- commit abcb85f - -------------------------------------------------------------------- -Fri Apr 19 19:47:40 CEST 2024 - lduncan@suse.com - -- blacklist.conf: add 3 commits to be skipped - One is a configuration change for an unused options, and - two are for SCSI structure changes that breaks kabi. -- commit c143746 - ------------------------------------------------------------------- Fri Apr 19 18:37:34 CEST 2024 - lduncan@suse.com @@ -26636,13 +32317,6 @@ Tue Apr 16 18:23:07 CEST 2024 - jbohac@suse.cz Refresh patches.suse/kdump-implement-reserve_crashkernel_cma.patch. - commit b256f70 -------------------------------------------------------------------- -Tue Apr 16 16:43:44 CEST 2024 - nik.borisov@suse.com - -- blacklist.conf: Disable irrelevant patch - We don't have syscall hardening in our kernels. -- commit 36739c9 - ------------------------------------------------------------------- Tue Apr 16 16:43:33 CEST 2024 - nik.borisov@suse.com @@ -26952,12 +32626,6 @@ Mon Apr 15 10:15:49 CEST 2024 - iivanov@suse.de - Update patches.suse/spi-hisi-sfc-v3xx-Return-IRQ_NONE-if-no-interrupts-w.patch (git-fixes CVE-2024-26776 bsc#1222764) - commit ec068f3 -------------------------------------------------------------------- -Mon Apr 15 09:13:59 CEST 2024 - colyli@suse.de - -- blacklist.conf: add non-backport md git-fixes patch commit. -- commit 58324b9 - ------------------------------------------------------------------- Mon Apr 15 09:12:46 CEST 2024 - colyli@suse.de @@ -27152,12 +32820,6 @@ Thu Apr 11 15:27:33 CEST 2024 - mhocko@suse.com (bsc#1220419 CVE-2024-26752 bsc#1222667). - commit 2f09d95 -------------------------------------------------------------------- -Thu Apr 11 15:17:11 CEST 2024 - mkoutny@suse.com - -- blacklist.conf: Add d9b3ce8769e3 mm: writeback: ratelimit stat flush from mem_cgroup_wb_stats -- commit 82800cb - ------------------------------------------------------------------- Thu Apr 11 12:01:45 CEST 2024 - jslaby@suse.cz @@ -27720,12 +33382,6 @@ Mon Apr 8 13:38:54 CEST 2024 - iivanov@suse.de - arm64: dts: broadcom: bcmbca: bcm4908: drop invalid switch cells (git-fixes) - commit c68c0f5 -------------------------------------------------------------------- -Mon Apr 8 13:37:17 CEST 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: ftrace: Don't forbid CALL_OPS+CC_OPTIMIZE_FOR_SIZE with Clang") -- commit 92045ae - ------------------------------------------------------------------- Mon Apr 8 13:35:46 CEST 2024 - iivanov@suse.de @@ -28322,12 +33978,6 @@ Tue Apr 2 13:36:01 CEST 2024 - tiwai@suse.de (bsc#1193599). - commit 3dfca11 -------------------------------------------------------------------- -Tue Apr 2 10:38:32 CEST 2024 - pjakobsson@suse.de - -- blacklist.conf: fbdev: flush deferred IO before closing (bsc#1221814) -- commit 6339fe4 - ------------------------------------------------------------------- Tue Apr 2 09:02:40 CEST 2024 - mkubecek@suse.cz @@ -28414,12 +34064,6 @@ Sat Mar 30 09:55:11 CET 2024 - tiwai@suse.de in acpi_db_walk_for_fields() (git-fixes). - commit 3764402 -------------------------------------------------------------------- -Fri Mar 29 11:21:01 CET 2024 - mkoutny@suse.com - -- README.BRANCH: Remove copy of branch name -- commit 85aeac7 - ------------------------------------------------------------------- Fri Mar 29 11:21:00 CET 2024 - mkoutny@suse.com @@ -29507,12 +35151,6 @@ Mon Mar 25 10:15:05 CET 2024 - denis.kirjanov@suse.com - Update references - commit 2642ab1 -------------------------------------------------------------------- -Mon Mar 25 09:10:29 CET 2024 - jslaby@suse.cz - -- blacklist.conf: add one PCI miss -- commit 45d2467 - ------------------------------------------------------------------- Mon Mar 25 09:06:28 CET 2024 - jslaby@suse.cz @@ -30077,12 +35715,6 @@ Wed Mar 20 14:31:18 CET 2024 - mgorman@suse.de patches.suse/printk-Monolithic-bring-printk-up-to-date-with-v6.6-rt25.patch. - commit dde15d2 -------------------------------------------------------------------- -Wed Mar 20 13:05:54 CET 2024 - jslaby@suse.cz - -- blacklist.conf: add one x86/mem_encrypt entry -- commit 6d2cc3b - ------------------------------------------------------------------- Wed Mar 20 13:04:03 CET 2024 - jslaby@suse.cz @@ -30168,12 +35800,6 @@ Wed Mar 20 02:06:22 CET 2024 - neilb@suse.de - SUNRPC: fix a memleak in gss_import_v2_context (git-fixes). - commit cf1cfe0 -------------------------------------------------------------------- -Wed Mar 20 01:13:52 CET 2024 - neilb@suse.de - -- blacklist.conf: add a 'cosmetic' commit -- commit 704be6f - ------------------------------------------------------------------- Tue Mar 19 18:30:13 CET 2024 - mkoutny@suse.com @@ -31785,12 +37411,6 @@ Wed Mar 13 15:26:37 CET 2024 - tiwai@suse.de - 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 @@ -31803,12 +37423,6 @@ 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 @@ -32261,24 +37875,6 @@ 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 @@ -32533,12 +38129,6 @@ Wed Mar 6 17:32:46 CET 2024 - msuchanek@suse.de (jsc#PED-7970). - commit 1346447 -------------------------------------------------------------------- -Wed Mar 6 16:34:55 CET 2024 - mkoutny@suse.com - -- blacklist.conf: Add 118642d7f606 mm: memcontrol: clarify swapaccount=0 deprecation warning -- commit b280e82 - ------------------------------------------------------------------- Wed Mar 6 15:32:29 CET 2024 - iivanov@suse.de @@ -32627,12 +38217,6 @@ Wed Mar 6 04:43:19 CET 2024 - ailiop@suse.com (bsc#1220897 CVE-2023-52526). - commit ff061f8 -------------------------------------------------------------------- -Tue Mar 5 23:08:29 CET 2024 - tonyj@suse.de - -- blacklist.conf: Mark "Fix 'perf script' tests on s390" as irrelvant -- commit 80d8ff7 - ------------------------------------------------------------------- Tue Mar 5 23:07:57 CET 2024 - tonyj@suse.de @@ -32861,12 +38445,6 @@ Tue Mar 5 13:13:04 CET 2024 - tiwai@suse.de - drm/amd/display: Fix a debugfs null pointer error (git-fixes). - commit 36bc980 -------------------------------------------------------------------- -Tue Mar 5 13:12:26 CET 2024 - tiwai@suse.de - -- blacklist.conf: drop amdgpu commit that will be backported now -- commit eac0ec4 - ------------------------------------------------------------------- Tue Mar 5 13:11:19 CET 2024 - nstange@suse.de @@ -33508,14 +39086,6 @@ Thu Feb 29 19:05:14 CET 2024 - mhocko@suse.com (git-fixes, bsc#1220398, CVE-2024-26602). - commit 2095c13 -------------------------------------------------------------------- -Thu Feb 29 18:59:01 CET 2024 - krisman@suse.de - -- blacklist.conf: Add duplicated commit "io_uring/af_unix: disable sending io_uring over sockets" - This was merged twice, through net and io_uring trees. Since we already - applied the net version as a CVE fix, blacklist the io_uring hash. -- commit ebf8ff8 - ------------------------------------------------------------------- Thu Feb 29 15:34:13 CET 2024 - petr.pavlu@suse.com @@ -35063,12 +40633,6 @@ Mon Feb 26 16:20:43 CET 2024 - iivanov@suse.de - arm64/signal: Don't assume that TIF_SVE means we saved SVE state (git-fixes) - commit 09cd4e0 -------------------------------------------------------------------- -Mon Feb 26 16:19:42 CET 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: scs: Disable LTO for SCS patching code") -- commit 58e088b - ------------------------------------------------------------------- Mon Feb 26 16:16:26 CET 2024 - iivanov@suse.de @@ -35184,12 +40748,6 @@ Mon Feb 26 12:54:01 CET 2024 - tiwai@suse.de - Drop ath11k hibernation patches for refreshing to the new patch set (bsc#1207948) - commit f6e50f6 -------------------------------------------------------------------- -Mon Feb 26 12:25:59 CET 2024 - msuchanek@suse.de - -- blacklist.conf: Add reverted commit. -- commit c46ef6f - ------------------------------------------------------------------- Mon Feb 26 10:22:14 CET 2024 - pjakobsson@suse.de @@ -35197,12 +40755,6 @@ Mon Feb 26 10:22:14 CET 2024 - pjakobsson@suse.de dc_dmub_srv (git-fixes). - commit 351cd92 -------------------------------------------------------------------- -Mon Feb 26 10:21:12 CET 2024 - pjakobsson@suse.de - -- blacklist.conf: dbf5d3d02987 drm/amd/display: Check writeback connectors in create_validate_stream_for_sink -- commit f11d1ed - ------------------------------------------------------------------- Mon Feb 26 10:19:59 CET 2024 - pjakobsson@suse.de @@ -36442,12 +41994,6 @@ Tue Feb 20 11:41:41 CET 2024 - jgross@suse.com (git-fixes). - commit fb286cc -------------------------------------------------------------------- -Tue Feb 20 11:07:23 CET 2024 - jgross@suse.com - -- blacklist.conf: add 7d8c67dd5d4f2 (only comment changes) -- commit c4873a4 - ------------------------------------------------------------------- Tue Feb 20 11:04:11 CET 2024 - jgross@suse.com @@ -36466,12 +42012,6 @@ Tue Feb 20 10:06:08 CET 2024 - oneukum@suse.com - timers: Tag (hr)timer softirq as hotplug safe (git-fixes). - commit 37f54ca -------------------------------------------------------------------- -Tue Feb 20 10:01:24 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive, fixed feature not backported -- commit 6569781 - ------------------------------------------------------------------- Tue Feb 20 09:57:03 CET 2024 - jgross@suse.com @@ -36564,16 +42104,11 @@ Mon Feb 19 16:52:01 CET 2024 - msuchanek@suse.de - commit 72b942a ------------------------------------------------------------------- -Mon Feb 19 15:53:41 CET 2024 - msuchanek@suse.de +Mon Feb 19 16:16:15 CET 2024 - lhruska@suse.cz -- blacklist: Add more files for unsupported powerpc architectures -- commit 47ca633 - -------------------------------------------------------------------- -Mon Feb 19 15:29:10 CET 2024 - mbrugger@suse.com - -- blacklist.conf: fix for config we don't have -- commit 6278860 +- rpm/scripts: Remove obsolete Symbols.list + Symbols.list is not longer needed by the new klp-convert implementation. (bsc#1218644) +- commit 596cf9f ------------------------------------------------------------------- Mon Feb 19 15:22:04 CET 2024 - msuchanek@suse.de @@ -50767,12 +56302,6 @@ Wed Feb 14 15:58:54 CET 2024 - jgross@suse.com - Update config files. - commit 6e3621a -------------------------------------------------------------------- -Wed Feb 14 15:48:32 CET 2024 - oneukum@suse.com - -- blacklist.conf: obsoleted -- commit c534e08 - ------------------------------------------------------------------- Wed Feb 14 15:26:00 CET 2024 - oneukum@suse.com @@ -50868,12 +56397,6 @@ Wed Feb 14 14:41:06 CET 2024 - oneukum@suse.com and v1.9.0 (git-fixes). - commit c7b4716 -------------------------------------------------------------------- -Wed Feb 14 14:33:32 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive -- commit 88b8f1d - ------------------------------------------------------------------- Wed Feb 14 14:28:52 CET 2024 - oneukum@suse.com @@ -51045,12 +56568,6 @@ Wed Feb 14 12:31:44 CET 2024 - denis.kirjanov@suse.com - net: ravb: Use pm_runtime_resume_and_get() (git-fixes). - commit f02fced -------------------------------------------------------------------- -Wed Feb 14 12:30:47 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive -- commit 569fb89 - ------------------------------------------------------------------- Wed Feb 14 12:30:19 CET 2024 - denis.kirjanov@suse.com @@ -51064,12 +56581,6 @@ Wed Feb 14 12:28:50 CET 2024 - denis.kirjanov@suse.com - net: libwx: fix memory leak on msix entry (git-fixes). - commit 159ffaa -------------------------------------------------------------------- -Wed Feb 14 12:24:16 CET 2024 - oneukum@suse.com - -- blacklist.conf: stupid cleanup -- commit 7489b61 - ------------------------------------------------------------------- Wed Feb 14 12:21:18 CET 2024 - jgross@suse.com @@ -51323,12 +56834,6 @@ Tue Feb 13 17:38:00 CET 2024 - jgross@suse.com (jsc#PED-7322). - commit 8de3668 -------------------------------------------------------------------- -Tue Feb 13 17:18:08 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive -- commit 3612d1b - ------------------------------------------------------------------- Tue Feb 13 17:15:19 CET 2024 - colyli@suse.de @@ -52027,12 +57532,6 @@ Fri Feb 9 14:28:37 CET 2024 - denis.kirjanov@suse.com for MT7986 SoC (git-fixes). - commit be286c4 -------------------------------------------------------------------- -Fri Feb 9 14:28:23 CET 2024 - tiwai@suse.de - -- blacklist.conf: drop two entries to be revived (bsc#1219692) -- commit ba7ec6f - ------------------------------------------------------------------- Fri Feb 9 14:26:52 CET 2024 - denis.kirjanov@suse.com @@ -52372,12 +57871,6 @@ Tue Feb 6 12:36:41 CET 2024 - jroedel@suse.de - Update config files. - commit 646dbdf -------------------------------------------------------------------- -Tue Feb 6 12:32:50 CET 2024 - vbabka@suse.cz - -- blacklist.conf: add f96c48670319 ("mm: disable CONFIG_PER_VMA_LOCK until its fixed") -- commit 8e3f9d5 - ------------------------------------------------------------------- Tue Feb 6 12:26:12 CET 2024 - fweisbecker@suse.de @@ -52936,13 +58429,6 @@ Mon Feb 5 21:17:53 CET 2024 - vbabka@suse.cz section of file mapping lock (bsc#1219558). - commit 4a16ce1 -------------------------------------------------------------------- -Mon Feb 5 19:22:20 CET 2024 - dwagner@suse.de - -- blacklist.conf: add 'nvme: fix error-handling for io_uring - nvme-passthrough' -- commit 36e1796 - ------------------------------------------------------------------- Mon Feb 5 19:14:18 CET 2024 - dwagner@suse.de @@ -56026,12 +61512,6 @@ Wed Jan 24 15:25:26 CET 2024 - iivanov@suse.de - arm64: add dependency between vmlinuz.efi and Image (git-fixes) - commit d79de8f -------------------------------------------------------------------- -Wed Jan 24 15:24:15 CET 2024 - iivanov@suse.de - -- blacklist.conf: ("arm64: dts: rockchip: Add NanoPC T6 PCIe e-key support") -- commit a24916f - ------------------------------------------------------------------- Wed Jan 24 15:22:57 CET 2024 - iivanov@suse.de @@ -56082,18 +61562,6 @@ Tue Jan 23 17:34:56 CET 2024 - jack@suse.cz - blk-wbt: Fix detection of dirty-throttled tasks (bsc#1218272). - commit 497a3db -------------------------------------------------------------------- -Tue Jan 23 13:33:21 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive, driver not backported -- commit f337957 - -------------------------------------------------------------------- -Tue Jan 23 13:28:37 CET 2024 - oneukum@suse.com - -- blacklist.conf: false positive without driver conversion to glue layer -- commit 5276996 - ------------------------------------------------------------------- Tue Jan 23 13:12:13 CET 2024 - tiwai@suse.de @@ -58103,18 +63571,6 @@ Tue Jan 16 19:40:07 CET 2024 - lduncan@suse.com - scsi: libsas: Simplify sas_check_eeds() (bsc#1216435). - commit 0820552 -------------------------------------------------------------------- -Tue Jan 16 18:44:09 CET 2024 - mkoutny@suse.com - -- blacklist.conf: Add 24e41bf8a6b4 mm: add a NO_INHERIT flag to the PR_SET_MDWE prctl -- commit b099e35 - -------------------------------------------------------------------- -Tue Jan 16 18:39:20 CET 2024 - mkoutny@suse.com - -- blacklist.conf: Add 793838138c15 prctl: Disable prctl(PR_SET_MDWE) on parisc -- commit 892fb82 - ------------------------------------------------------------------- Tue Jan 16 18:37:39 CET 2024 - mkoutny@suse.com @@ -58612,13 +64068,6 @@ Mon Jan 15 19:38:42 CET 2024 - hare@suse.de (bsc#1218785). - commit 34e3536 -------------------------------------------------------------------- -Mon Jan 15 19:06:12 CET 2024 - tonyj@suse.de - -- blacklist.conf: blacklist "perf test: Remove x permission from - lib/stat_output.sh" change -- commit d50c64f - ------------------------------------------------------------------- Mon Jan 15 19:00:35 CET 2024 - tonyj@suse.de @@ -61149,12 +66598,6 @@ Thu Jan 11 15:42:40 CET 2024 - tiwai@suse.de Fix compile warning due to trailing spaces - commit 3d15652 -------------------------------------------------------------------- -Thu Jan 11 15:34:47 CET 2024 - tiwai@suse.de - -- blacklist.conf: Add cfg80211 commit that was reverted in stable -- commit fa9d6ac - ------------------------------------------------------------------- Thu Jan 11 15:27:25 CET 2024 - tiwai@suse.de @@ -62728,12 +68171,6 @@ Fri Jan 5 10:14:48 CET 2024 - tiwai@suse.de - ALSA: hda/tas2781: do not use regcache (git-fixes). - commit 38d6c8e -------------------------------------------------------------------- -Fri Jan 5 09:05:34 CET 2024 - pjakobsson@suse.de - -- blacklist.conf: 7a0e005c7957 drm/amd/display: edp do not add non-edid timings -- commit 82e295c - ------------------------------------------------------------------- Fri Jan 5 09:00:59 CET 2024 - pjakobsson@suse.de @@ -63494,24 +68931,12 @@ Wed Jan 3 16:56:08 CET 2024 - tbogendoerfer@suse.de (jsc#PED-4876). - commit ca3b156 -------------------------------------------------------------------- -Wed Jan 3 16:25:32 CET 2024 - mkoutny@suse.com - -- blacklist.conf: e63a57303599 blk-cgroup: bypass blkcg_deactivate_policy after destroying -- commit 11bfa0e - ------------------------------------------------------------------- Wed Jan 3 11:44:52 CET 2024 - msuchanek@suse.de - rpm/config.sh: Enable multibuild. - commit 8362cb4 -------------------------------------------------------------------- -Wed Jan 3 00:43:17 CET 2024 - lduncan@suse.com - -- blacklist.conf: add commit with duplicate id -- commit d39fdcd - ------------------------------------------------------------------- Wed Jan 3 00:32:44 CET 2024 - tonyj@suse.de @@ -65555,13 +70980,6 @@ Tue Dec 12 14:45:48 CET 2023 - tiwai@suse.de (git-fixes). - commit f3ff4cb -------------------------------------------------------------------- -Tue Dec 12 14:37:05 CET 2023 - tiwai@suse.de - -- blacklist.conf: ignore loongarch, smb server and rust patches - Those are disabled on SUSE kernels -- commit 7c646fb - ------------------------------------------------------------------- Tue Dec 12 14:26:58 CET 2023 - tiwai@suse.de @@ -82094,12 +87512,6 @@ Fri Oct 27 20:23:43 CEST 2023 - msuchanek@suse.de (bsc#1215199). - commit 17dca43 -------------------------------------------------------------------- -Fri Oct 27 20:14:07 CEST 2023 - msuchanek@suse.de - -- blacklist.conf: Add ff9e8f415136 powerpc/mm: Allow ARCH_FORCE_MAX_ORDER up to 12 -- commit e7a922b - ------------------------------------------------------------------- Fri Oct 27 20:10:23 CEST 2023 - msuchanek@suse.de @@ -83843,12 +89255,6 @@ Thu Oct 19 08:09:16 CEST 2023 - hare@suse.de - net/tcp: don't peek at tail for io_uring zc (bsc#1216396). - commit 1cbac60 -------------------------------------------------------------------- -Wed Oct 18 15:47:41 CEST 2023 - hare@suse.de - -- blacklist.conf: Add kernel-doc only commit -- commit 2ddda2d - ------------------------------------------------------------------- Wed Oct 18 15:47:32 CEST 2023 - hare@suse.de @@ -83888,12 +89294,6 @@ Tue Oct 17 18:00:55 CEST 2023 - msuchanek@suse.de - Refresh SED OPAL patches to current version. - commit 8de998c -------------------------------------------------------------------- -Tue Oct 17 16:39:52 CEST 2023 - osalvador@suse.de - -- blacklist.conf: Updated -- commit a30a51f - ------------------------------------------------------------------- Tue Oct 17 16:38:53 CEST 2023 - osalvador@suse.de @@ -84311,12 +89711,6 @@ Mon Oct 16 09:50:00 CEST 2023 - mhocko@suse.com (git-fixes). - commit 76715d0 -------------------------------------------------------------------- -Fri Oct 13 16:36:23 CEST 2023 - mfranc@suse.cz - -- blacklist.conf: happens only for CONFIG_SMC=y and CONFIG_ISM=m -- commit e983db0 - ------------------------------------------------------------------- Fri Oct 13 11:56:54 CEST 2023 - mfranc@suse.cz @@ -84851,12 +90245,6 @@ Mon Oct 9 18:17:02 CEST 2023 - mkoutny@suse.com installed before init (bsc#1216062). - commit 82eb0da -------------------------------------------------------------------- -Mon Oct 9 17:51:35 CEST 2023 - mkoutny@suse.com - -- blacklist.conf: Add 82b90b6c5b38 cgroup:namespace: Remove unused cgroup_namespaces_init() -- commit 8f5c0b6 - ------------------------------------------------------------------- Mon Oct 9 17:41:37 CEST 2023 - tiwai@suse.de @@ -86391,12 +91779,6 @@ Mon Oct 2 17:09:57 CEST 2023 - ohering@suse.de - Update patch headers to reflect state of TDX for Hyper-V (bsc#1206453). - commit 4f4b833 -------------------------------------------------------------------- -Mon Oct 2 17:07:37 CEST 2023 - pmladek@suse.com - -- blacklist.conf: livepatch: cosmetic -- commit 634df5c - ------------------------------------------------------------------- Mon Oct 2 17:03:58 CEST 2023 - pmladek@suse.com @@ -86912,12 +92294,6 @@ Tue Sep 26 14:39:19 CEST 2023 - petr.pavlu@suse.com * Fix typos and improve some wording. - commit 640988f -------------------------------------------------------------------- -Tue Sep 26 12:36:18 CEST 2023 - lhenriques@suse.de - -- blacklist.conf: Add 3af5ae22030c ("ceph: make members in struct ceph_mds_request_args_ext a union") -- commit 02fca20 - ------------------------------------------------------------------- Tue Sep 26 09:39:36 CEST 2023 - jlee@suse.com @@ -104137,12 +109513,6 @@ Mon Sep 11 14:34:56 CEST 2023 - ohering@suse.de - clocksource/drivers/hyper-v: Rework clocksource and sched clock setup (git-fixes). - commit 31e4022 -------------------------------------------------------------------- -Mon Sep 11 12:14:43 CEST 2023 - msuchanek@suse.de - -- blacklist.conf: Add ef73dcaa3121 ("powerpc: xmon: remove unused variables") -- commit 54a0db2 - ------------------------------------------------------------------- Mon Sep 11 12:08:42 CEST 2023 - msuchanek@suse.de @@ -104177,12 +109547,6 @@ Mon Sep 11 11:32:07 CEST 2023 - petr.pavlu@suse.com - net/mlx4: Remove many unnecessary NULL values (bsc#1187236). - commit e58c7a4 -------------------------------------------------------------------- -Mon Sep 11 10:25:12 CEST 2023 - msuchanek@suse.de - -- blacklist.conf: Add 750bd41aeaeb powerpc/pseries: Fix hcall tracepoints with JUMP_LABEL=n -- commit a91431a - ------------------------------------------------------------------- Mon Sep 11 10:24:24 CEST 2023 - msuchanek@suse.de @@ -104579,18 +109943,6 @@ Thu Sep 7 08:20:22 CEST 2023 - tiwai@suse.de (bsc#1012628). - commit 603fb0d -------------------------------------------------------------------- -Thu Sep 7 08:19:54 CEST 2023 - tiwai@suse.de - -- blacklist.conf: drop entry backported in stable 6.4.15 -- commit aa9afe7 - -------------------------------------------------------------------- -Wed Sep 6 23:36:02 CEST 2023 - tbogendoerfer@suse.de - -- blacklist.conf: Added temporary blacklist until mlx5 backport could be done (missing PED number) -- commit 653e287 - ------------------------------------------------------------------- Wed Sep 6 18:43:31 CEST 2023 - oneukum@suse.com @@ -104714,13 +110066,6 @@ Wed Sep 6 17:29:41 CEST 2023 - oneukum@suse.com (jsc#PED-6061). - commit 81b59d1 -------------------------------------------------------------------- -Wed Sep 6 17:27:40 CEST 2023 - mhocko@suse.com - -- blacklist.conf: 9011e49d54dc ("modules: only allow symbol_get of - EXPORT_SYMBOL_GPL modules") is not really fixing any existing bug. -- commit 541c06b - ------------------------------------------------------------------- Wed Sep 6 17:19:34 CEST 2023 - oneukum@suse.com @@ -105813,12 +111158,6 @@ Fri Sep 1 12:42:57 CEST 2023 - denis.kirjanov@suse.com - Update metadata - commit 94184dc -------------------------------------------------------------------- -Fri Sep 1 11:11:11 CEST 2023 - tiwai@suse.de - -- blacklist.conf: add entries that have been already cherry-picked in 6.4 -- commit 3bbc83b - ------------------------------------------------------------------- Fri Sep 1 10:03:35 CEST 2023 - tiwai@suse.de diff --git a/kernel-syms-rt.spec b/kernel-syms-rt.spec index c55a8ad..aef98e4 100644 --- a/kernel-syms-rt.spec +++ b/kernel-syms-rt.spec @@ -16,7 +16,7 @@ # -%define git_commit b49e7e52bdc1b46f45fadb1bc0aa310f52f5ac80 +%define git_commit 76e28cef5375feb1d7dcea0d112f8b50524eb429 %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: .gb49e7e5 +Release: .g76e28ce %else Release: 0 %endif diff --git a/klp-symbols b/klp-symbols deleted file mode 100644 index 63d8803..0000000 --- a/klp-symbols +++ /dev/null @@ -1,72 +0,0 @@ -#!/bin/bash - -set -e -export LC_COLLATE=C - -usage() -{ - echo "Tool to generate list of symbols that are used to build kernel livepatches" - echo - echo "Usage: ${0##*/} kernel_build_dir klp_symbols" - echo " kernel_build_dir Directory where to find the built kernel binaries" - echo " klp_symbols Output file with the list of symbols" -} - -if test "$1" == "-h" -o "$1" == "--help" -o $# -ne 2 ; then - usage >&2 - exit 1 -fi - -KLP_DATA_VERSION="0.1" -KERNEL_BUILD_DIR="$1" -KLP_SYMBOLS="$2" - -VMLINUX="$KERNEL_BUILD_DIR/vmlinux" -MODVER_DIR="$KERNEL_BUILD_DIR/.tmp_versions" - -if ! test -f "$VMLINUX" ; then - echo "Error: Cannot open file: $VMLINUX" >&2 - exit 1 -fi - -if ! test -d "$MODVER_DIR" ; then - # kernel >= 5.3 has *.mod in the build tree - mod_cnt=$(find "$KERNEL_BUILD_DIR" -name '*.mod' | wc -l) - if [ $mod_cnt -eq 0 ]; then - echo "Error: Directory does not exist: $MODVER_DIR" >&2 - exit 1 - fi - MODVER_DIR="$KERNEL_BUILD_DIR" -fi - -get_symbols() -{ - nm -f posix "$1" | grep -v '\( [UN] \)\|\(\.L\|__crc_\)' | cut -d\ -f1 -} - -echo "klp-convert-symbol-data.$KLP_DATA_VERSION" > "$KLP_SYMBOLS" -echo "*vmlinux" >> "$KLP_SYMBOLS" -get_symbols "$VMLINUX" >> "$KLP_SYMBOLS" - -find "$MODVER_DIR" -iname '*.mod' | sort | while read KMOD ; do - if [ "$MODVER_DIR" = "$KERNEL_BUILD_DIR" ]; then - # kernel >= 5.3, just replace the suffix - KO_FILE="${KMOD%.mod}.ko" - else - # kernel <= 5.2, read .ko path and file from .mod file - KO_FILE="$(head -n1 $KMOD)" - fi - - # obtain module name and its object file by processing .ko file name - NO_SUFFIX="$(basename -s .ko $KO_FILE)" - KMOD_NAME="$(echo $NO_SUFFIX | sed 's/-/_/g')" - OBJ_FILE="$(dirname $KO_FILE)/$NO_SUFFIX.o" - - # write module name to Symbols file - echo "*$KMOD_NAME" >> "$KLP_SYMBOLS" - - # extract symbols from object file and write them to Symbols file - get_symbols "$OBJ_FILE" >> "$KLP_SYMBOLS" -done - -exit 0 diff --git a/patches.kabi.tar.bz2 b/patches.kabi.tar.bz2 index 276d54b..4a8550b 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:ce11b0fadc8f3b5c2ce80310e41eb399cf4865472873aaa4a1dbc1f4a03aa9f6 -size 36974 +oid sha256:90860c1b0c6499beb86e304b7b108caf961aa06cf59289aff60df61641c247f6 +size 45788 diff --git a/patches.suse.tar.bz2 b/patches.suse.tar.bz2 index bab82e4..cf12744 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:36aecebf993d9cfcee7418f510c938611a4cbf155a4e552cf5d3768f2dc6c3bf -size 23934158 +oid sha256:7c9126cb2459a06e9ea3f2907f734d4af02814130b6e1afb1ed89e1821733f82 +size 25052757 diff --git a/release-projects b/release-projects index 5cad804..8314706 100644 --- a/release-projects +++ b/release-projects @@ -1,6 +1,8 @@ # This file contains regular expressions that define which projects # are considered part of an official release channel. # This will mark the kernel as released when it's built. +SUSE:SLFO:[0-9].* +SUSE:ALP:Source:Standard:1.0 SUSE:SLE-.* SUSE:Maintenance:.* openSUSE:[0-9].*:Update diff --git a/series.conf b/series.conf index e4d4a72..e3b2090 100644 --- a/series.conf +++ b/series.conf @@ -2204,6 +2204,7 @@ patches.suse/Input-tests-modular-KUnit-tests-should-not-depe.patch patches.suse/Input-tests-fix-input_test_match_device_id-test.patch patches.suse/Input-adxl34x-do-not-hardcode-interrupt-trigger.patch + patches.suse/Input-xpad-spelling-fixes-for-Xbox.patch patches.suse/Input-pm8941-powerkey-fix-debounce-on-gen2-PMIC.patch patches.suse/ALSA-hda-realtek-Enable-mute-micmute-LEDs-and-l.patch patches.suse/ALSA-core-update-comment-on-snd_card.controls_rwsem.patch @@ -4249,6 +4250,7 @@ patches.suse/dt-bindings-gpio-Remove-FSI-domain-ports-on-Tegra234.patch patches.suse/ARM-dts-imx-Adjust-dma-apbh-node-name.patch patches.suse/ARM-dts-imx6dl-prtrvt-prtvt7-prti6q-prtwd2-fix.patch + patches.suse/arm64-dts-imx93-add-ocotp-node.patch patches.suse/arm64-dts-qcom-msm8916-longcheer-l8910-Add-front-fla.patch patches.suse/arm64-dts-qcom-ipq9574-Update-the-size-of-GICC-.patch patches.suse/arm64-dts-qcom-qrb4210-rb2-Fix-CD-gpio-for-SDHC.patch @@ -4500,6 +4502,9 @@ patches.suse/riscv-hibernation-Remove-duplicate-call-of-susp.patch patches.suse/riscv-uprobes-Restore-thread.bad_cause.patch patches.suse/riscv-hibernate-remove-WARN_ON-in-save_processo.patch + patches.suse/tracing-osnoise-Switch-from-PF_NO_SETAFFINITY-to-migrate_disable.patch + patches.suse/tracing-osnoise-Skip-running-osnoise-if-all-instances-are-off.patch + patches.suse/tracing-timerlat-Add-user-space-interface.patch patches.suse/fprobe-Pass-return-address-to-the-handlers.patch patches.suse/perf-tools-riscv-Add-support-for-riscv-lookup_binutils_path.patch patches.suse/perf-map-Add-helper-map__fprintf_dsoname_dsoff.patch @@ -5090,6 +5095,7 @@ patches.suse/ksmbd-avoid-field-overflow-warning.patch patches.suse/SMB3-Do-not-send-lease-break-acknowledgment-if-.patch patches.suse/smb-client-fix-warning-in-cifs_smb3_do_mount.patch + patches.suse/smb-client-fix-warning-in-generic_ip_connect-.patch patches.suse/cifs-prevent-use-after-free-by-freeing-the-cfil.patch patches.suse/cifs-do-all-necessary-checks-for-credits-within.patch patches.suse/cifs-fix-session-state-check-in-reconnect-to-a.patch @@ -6490,6 +6496,7 @@ patches.suse/tipc-stop-tipc-crypto-on-failure-in-tipc_node_c.patch patches.suse/mm-mempolicy-Take-VMA-lock-before-replacing-pol.patch patches.suse/cxl-acpi-Fix-a-use-after-free-in-cxl_parse_cfmw.patch + patches.suse/cxl-downgrade-a-warning-message-to-debug-level-in-cxl.patch patches.suse/cxl-acpi-Return-rc-instead-of-0-in-cxl_parse_cf.patch patches.suse/1736-drm-fb-helper-Remove-unused-inline-function-drm_fb_h.patch patches.suse/drm-i915-dpt-Use-shmem-for-dpt-objects.patch @@ -7391,6 +7398,9 @@ patches.suse/gfs2-convert-to-ctime-accessor-functions.patch patches.suse/bpf-convert-to-ctime-accessor-functions.patch patches.suse/reiserfs-Check-the-return-value-from-__getblk.patch + patches.suse/splice-always-fsnotify_access-in-fsnotify_modify-out-on-success.patch + patches.suse/splice-fsnotify_access-fd-fsnotify_modify-fd-in-vmsplice.patch + patches.suse/splice-fsnotify_access-in-fsnotify_modify-out-on-success-in-tee.patch patches.suse/fs-Fix-error-checking-for-d_hash_and_lookup.patch patches.suse/fs-buffer.c-disable-per-CPU-buffer_head-cache-for-is.patch patches.suse/io_uring-rename-kiocb_end_write-local-helper.patch @@ -7716,6 +7726,7 @@ patches.suse/kbuild-rust_is_available-fix-version-check-when-CC-h.patch patches.suse/kbuild-rust_is_available-add-check-for-bindgen-invoc.patch patches.suse/kbuild-rust_is_available-fix-confusion-when-a-versio.patch + patches.suse/btf-scripts-rust-drop-is_rust_module.sh.patch patches.suse/regmap-Revert-add-64-bit-mode-support-and-Co.patch patches.suse/regmap-cache-Revert-Add-64-bit-mode-support.patch patches.suse/regmap-Let-users-check-if-a-register-is-cached.patch @@ -7759,6 +7770,7 @@ patches.suse/hwrng-pic32-use-devm_clk_get_enabled.patch patches.suse/crypto-stm32-fix-loop-iterating-through-scatterlist-.patch patches.suse/crypto-stm32-fix-MDMAT-condition.patch + patches.suse/crypto-hisilicon-qm-flush-all-work-before-driver-rem.patch patches.suse/KEYS-use-kfree_sensitive-with-key.patch patches.suse/crypto-af_alg-Fix-missing-initialisation-affecting-g.patch patches.suse/crypto-stm32-Properly-handle-pm_runtime_get-failing.patch @@ -8422,6 +8434,7 @@ patches.suse/net-openvswitch-add-explicit-drop-action.patch patches.suse/net-openvswitch-add-meter-drop-reason.patch patches.suse/net-openvswitch-add-misc-error-drop-reasons.patch + patches.suse/vmxnet3-Add-XDP-support.patch patches.suse/net-macsec-Use-helper-functions-to-update-stats.patch patches.suse/devlink-parse-linecard-attr-in-doit-callbacks.patch patches.suse/devlink-parse-rate-attrs-in-doit-callbacks.patch @@ -8945,6 +8958,7 @@ patches.suse/mm-lock-vma-explicitly-before-doing-vm_flags_reset-and-vm_flags_reset_once.patch patches.suse/mm-always-lock-new-vma-before-inserting-into-vma-tree.patch patches.suse/mm-move-vma-locking-out-of-vma_prepare-and-dup_anon_vma.patch + patches.suse/mm-move-dummy_vm_ops-out-of-a-header.patch patches.suse/mm-mm_init-use-helper-macro-BITS_PER_LONG-and-BITS_PER_BYTE.patch patches.suse/mm-page_alloc-remove-track-of-active-PCP-lists-range-in-bulk-free.patch patches.suse/mm-page_alloc-remove-unnecessary-parameter-batch-of-nr_pcp_free.patch @@ -8954,6 +8968,7 @@ patches.suse/mm-page_alloc-use-get_pfnblock_migratetype-to-avoid-extra-page_to_pfn.patch patches.suse/selftests-memfd-error-out-test-process-when-child-te.patch patches.suse/io_uring-stop-calling-free_compound_page.patch + patches.suse/mm-convert-free_transhuge_folio-to-folio_undo_large_rmappable.patch patches.suse/0017-minmax-add-in_range-macro.patch patches.suse/arm64-mm-use-ptep_clear-instead-of-pte_clear-in-clea.patch patches.suse/maple_tree-clean-up-mas_wr_append.patch @@ -8974,6 +8989,7 @@ patches.suse/0014-kexec-rename-ARCH_HAS_KEXEC_PURGATORY.patch patches.suse/0015-remove-ARCH_DEFAULT_KEXEC-from-Kconfig.kexec.patch patches.suse/kernel.h-split-out-COUNT_ARGS-and-CONCATENATE-to-arg.patch + patches.suse/arm64-smccc-replace-custom-COUNT_ARGS-CONCATENATE-implementations.patch patches.suse/scripts-gdb-fix-lx-lsmod-show-the-wrong-size.patch patches.suse/0018-drm-i915-Move-abs_diff-to-math.h.patch patches.suse/fs-ocfs2-namei-check-return-value-of-ocfs2_add_entry.patch @@ -10448,6 +10464,7 @@ patches.suse/ASoC-SOF-Intel-start-simplify-the-signature-of-link_.patch patches.suse/ASoC-soc-acpi-move-link_slaves_found.patch patches.suse/ASoC-SOF-ipc3-update-dai_link_fixup-for-SOF_DAI_MEDI.patch + patches.suse/ASoC-SOF-Deprecate-invalid-enums-in-IPC3.patch patches.suse/ASoC-SOF-sof-client-probes-ipc4-add-checks-to-preven.patch patches.suse/ASoC-SOF-ipc3-add-checks-to-prevent-static-analysis-.patch patches.suse/ASoC-SOF-topology-simplify-code-to-prevent-static-an.patch @@ -10874,6 +10891,8 @@ patches.suse/x86-shstk-don-t-retry-vm_munmap-on-eintr.patch patches.suse/x86-ibt-convert-ibt-selftest-to-asm.patch patches.suse/x86-shstk-change-order-of-_user-in-type.patch + patches.suse/powerpc-crypto-fix-missing-skcipher-dependency-for-a.patch + patches.suse/powerpc-crypto-don-t-build-aes-gcm-p10-by-default.patch patches.suse/powerpc-pseries-Initialise-CPU-hotplug-callbacks-ear.patch patches.suse/powerpc-Add-HOTPLUG_SMT-support.patch patches.suse/powerpc-pseries-Honour-current-SMT-state-when-DLPAR-.patch @@ -10922,6 +10941,7 @@ patches.suse/jbd2-check-jh-b_transaction-before-removing-it-from-.patch patches.suse/jbd2-remove-unused-t_handle_lock.patch patches.suse/jbd2-correct-the-end-of-the-journal-recovery-scan-ra.patch + patches.suse/ext4-fix-unttached-inode-after-power-cut-with-orphan.patch patches.suse/ext4-drop-dio-overwrite-only-flag-and-associated-war.patch patches.suse/ext4-do-not-mark-inode-dirty-every-time-when-appendi.patch patches.suse/fs-jfs-prevent-double-free-in-dbUnmount-after-failed-jfs_remount.patch @@ -10932,6 +10952,7 @@ patches.suse/ksmbd-fix-slub-overflow-in-ksmbd_decode_ntlmss.patch patches.suse/ksmbd-replace-one-element-array-with-flex-arra.patch patches.suse/SUNRPC-Fix-the-recent-bv_offset-fix.patch + patches.suse/nfsd-remove-unsafe-BUG_ON-from-set_change_info.patch patches.suse/fs-lockd-avoid-possible-wrong-NULL-parameter.patch patches.suse/NFSD-da_addr_body-field-missing-in-some-GETDEVICEINF.patch patches.suse/NFSv4.2-Fix-READ_PLUS-smatch-warnings.patch @@ -11173,6 +11194,7 @@ patches.suse/media-cec-core-add-adap_unconfigured-callback.patch patches.suse/media-ipu3-cio2-allow-ipu_bridge-to-be-a-module-agai.patch patches.suse/media-go7007-Remove-redundant-if-statement.patch + patches.suse/media-pci-ipu3-cio2-Initialise-timing-struct-to-avoi.patch patches.suse/media-mediatek-vcodec-Removing-struct-mtk_vcodec_ctx.patch patches.suse/media-mediatek-vcodec-Removing-useless-debug-log.patch patches.suse/media-mediatek-vcodec-remove-the-dependency-of-vcode.patch @@ -11196,6 +11218,7 @@ patches.suse/media-ov2680-Fix-regulators-being-left-enabled-on-ov.patch patches.suse/media-i2c-ccs-Check-rules-is-non-NULL.patch patches.suse/media-i2c-rdacm21-Fix-uninitialized-value.patch + patches.suse/media-bttv-use-audio-defaults-for-winfast2000.patch patches.suse/HID-input-Support-devices-sending-Eraser-without-Inv.patch patches.suse/HID-cp2112-Make-irq_chip-immutable.patch patches.suse/HID-uclogic-Correct-devm-device-reference-for-hidinp.patch @@ -11421,6 +11444,7 @@ patches.suse/scsi-libsas-Delete-sas_ssp_task.enable_first_burst.patch patches.suse/scsi-libsas-Delete-sas_ssp_task.task_prio.patch patches.suse/msft-hv-2887-scsi-storvsc-Handle-additional-SRB-status-values.patch + patches.suse/f2fs-get-out-of-a-repeat-loop-when-getting-a-locked-.patch patches.suse/f2fs-fix-spelling-in-ABI-documentation.patch patches.suse/mtd-spi-nor-Correct-flags-for-Winbond-w25q128.patch patches.suse/mtd-spi-nor-Check-bus-width-while-setting-QE-bit.patch @@ -11483,6 +11507,7 @@ 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/i2c-ocores-Remove-ifdef-guards-for-PM-related-functi.patch patches.suse/i2c-mlxbf-Use-dev_err_probe-in-probe-function.patch patches.suse/i2c-mlxbf-Use-devm_platform_get_and_ioremap_resource.patch patches.suse/leds-pwm-Fix-error-code-in-led_pwm_create_fwnode.patch @@ -11547,6 +11572,9 @@ patches.suse/watchdog-advantech_ec_wdt-fix-Kconfig-dependencies.patch patches.suse/watchdog-intel-mid_wdt-add-MODULE_ALIAS-to-allow-aut.patch patches.suse/Input-i8042-add-quirk-for-TUXEDO-Gemini-17-Gen1-Clev.patch + patches.suse/Input-xpad-fix-support-for-some-third-party-controll.patch + patches.suse/Input-xpad-add-GameSir-VID-for-Xbox-One-controllers.patch + patches.suse/Input-xpad-add-GameSir-T4-Kaleid-Controller-support.patch patches.suse/Input-iqs7222-configure-power-mode-before-triggering.patch patches.suse/Input-tca6416-keypad-always-expect-proper-IRQ-number.patch patches.suse/Input-tca6416-keypad-fix-interrupt-enable-disbalance.patch @@ -12514,6 +12542,7 @@ patches.suse/smb3-do-not-start-laundromat-thread-when-dir-leases-disabled.patch patches.suse/cifs-Fix-UAF-in-cifs_demultiplex_thread.patch patches.suse/mm-page_alloc-fix-CMA-and-HIGHATOMIC-landing-on-the-wrong-buddy-list.patch + patches.suse/task_work-add-kerneldoc-annotation-for-data-argument.patch patches.suse/mm-memcontrol-fix-GFP_NOFS-recursion-in-memory.high-.patch patches.suse/gpio-tb10x-Fix-an-error-handling-path-in-tb10x_gpio_.patch patches.suse/cxl-pci-Fix-appropriate-checking-for-_OSC-while-hand.patch @@ -13004,6 +13033,7 @@ patches.suse/regmap-fix-NULL-deref-on-lookup.patch patches.suse/spi-npcm-fiu-Fix-UMA-reads-when-dummy.nbytes-0.patch patches.suse/btrfs-fix-stripe-length-calculation-for-non-zoned-da.patch + patches.suse/fs-ntfs3-Add-more-attributes-checks-in-mi_enum_attr.patch patches.suse/fs-ntfs3-Fix-NULL-pointer-dereference-on-error-in-at.patch patches.suse/perf-benchmark-fix-seccomp_unotify-benchmark-for-32-bit.patch patches.suse/bonding-Return-pointer-to-data-after-pull-on-skb.patch @@ -13177,6 +13207,7 @@ patches.suse/phy-qcom-qmp-usb-initialize-PCS_USB-registers.patch patches.suse/phy-qcom-qmp-combo-Square-out-8550-POWER_STATE_CONFI.patch patches.suse/phy-qcom-qmp-combo-initialize-PCS_USB-registers.patch + patches.suse/vdpa_sim_blk-Fix-the-potential-leak-of-mgmt_dev.patch patches.suse/virtio-mmio-fix-memory-leak-of-vm_dev.patch patches.suse/vdpa-mlx5-Fix-double-release-of-debugfs-entry.patch patches.suse/virtio_balloon-Fix-endless-deflation-and-inflation-o.patch @@ -13249,6 +13280,7 @@ patches.suse/1371-drm-i915-mcr-Hold-GT-forcewake-during-steering-opera.patch patches.suse/1372-drm-i915-pmu-Check-if-pmu-is-closed-before-stopping-.patch patches.suse/1373-drm-amd-Disable-ASPM-for-VI-w-all-Intel-systems.patch + patches.suse/powerpc-mm-Fix-boot-crash-with-FLATMEM.patch patches.suse/iommu-Avoid-unnecessary-cache-invalidations patches.suse/platform-x86-Add-s2idle-quirk-for-more-Lenovo-laptop.patch patches.suse/scsi-sd-Introduce-manage_shutdown-device-flag.patch @@ -13282,6 +13314,7 @@ 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/SUNRPC-Remove-BUG_ON-call-sites.patch patches.suse/NFSD-Rewrite-synopsis-of-nfsd_percpu_counters_init.patch patches.suse/NFSD-Fix-frame-size-warning-in-svc_export_parse.patch patches.suse/svcrdma-Drop-connection-after-an-RDMA-Read-error.patch @@ -13463,6 +13496,7 @@ patches.suse/rcutorture-Traverse-possible-cpu-to-set-maxcpu-in-rc.patch patches.suse/locktorture-Check-the-correct-variable-for-allocatio.patch patches.suse/rcu-kmemleak-Ignore-kmemleak-false-positives-when-RCU.patch + patches.suse/srcu-Fix-callbacks-acceleration-mishandling.patch patches.suse/selftests-lkdtm-Disable-CONFIG_UBSAN_TRAP-in-test-co.patch patches.suse/0003-nouveau-svm-Replace-one-element-array-with-flexible-.patch patches.suse/0004-nouveau-svm-Split-assignment-from-if-conditional.patch @@ -13481,6 +13515,7 @@ patches.suse/KEYS-trusted-tee-Refactor-register-SHM-usage.patch patches.suse/integrity-powerpc-Do-not-select-CA_MACHINE_KEYRING.patch patches.suse/keys-Remove-unused-extern-declarations.patch + patches.suse/audit-don-t-take-task_lock-in-audit_exe_compare-code-path.patch patches.suse/workqueue-Provide-one-lock-class-key-per-work_on_cpu.patch patches.suse/tcp-no-longer-release-socket-ownership-in-tcp_releas.patch patches.suse/net-sock_release_ownership-cleanup.patch @@ -13557,6 +13592,7 @@ patches.suse/bpf-make-it-easier-to-add-new-metadata-kfunc.patch patches.suse/bpf-expose-information-about-supported-xdp-metadata-.patch patches.suse/tools-ynl-extend-netdev-sample-to-dump-xdp-rx-metada.patch + patches.suse/bpf-Treat-first-argument-as-return-value-for-bpf_thr.patch patches.suse/bpf-Fix-kfunc-callback-register-type-handling.patch patches.suse/gve-Use-size_add-in-call-to-struct_size.patch patches.suse/octeon_ep-support-to-fetch-firmware-info.patch @@ -16208,6 +16244,7 @@ patches.suse/md-cluster-check-for-timeout-while-a-new-disk-adding-1bbe.patch patches.suse/md-cleanup-pers-prepare_suspend-78b7.patch patches.suse/ata-ahci-add-identifiers-for-ASM2116-series-adapters.patch + patches.suse/scsi-Remove-scsi-device-no_start_on_resume-flag.patch patches.suse/ata-libata-scsi-Cleanup-ata_scsi_start_stop_xlat.patch patches.suse/dm-shortcut-the-calls-to-linear_map-and-stripe_map-f144.patch patches.suse/dm-cache-metadata-replace-deprecated-strncpy-with-st-ac41.patch @@ -16361,6 +16398,7 @@ patches.suse/fs-dlm-Simplify-buffer-size-computation-in-dlm_create_debug_file.patch patches.suse/fs-dlm-Fix-the-size-of-a-buffer-in-dlm_create_debug_file.patch patches.suse/ext4-correct-offset-of-gdb-backup-in-non-meta_bg-gro.patch + patches.suse/jbd2-fix-potential-data-lost-in-recovering-journal-r.patch patches.suse/ext4-fix-racy-may-inline-data-check-in-dio-write.patch patches.suse/ext4-properly-sync-file-size-update-after-O_SYNC-dire.patch patches.suse/exfat-support-handle-zero-size-directory.patch @@ -16391,6 +16429,7 @@ patches.suse/PCI-dwc-Add-host_post_init-callback.patch patches.suse/PCI-qcom-Enable-ASPM-for-platforms-supporting-1.9.0-.patch patches.suse/PCI-qcom-ep-Add-dedicated-callback-for-writing-to-DB.patch + patches.suse/PCI-Add-T_PVPERL-macro.patch patches.suse/PCI-dwc-Add-dw_pcie_link_set_max_link_width.patch patches.suse/PCI-dwc-Add-missing-PCI_EXP_LNKCAP_MLW-handling.patch patches.suse/PCI-dwc-Expose-dw_pcie_ep_exit-to-module.patch @@ -16451,7 +16490,14 @@ patches.suse/ASoC-SOF-Pass-PCI-SSID-to-machine-driver.patch patches.suse/ASoC-Intel-sof_sdw-Copy-PCI-SSID-to-struct-snd_soc_c.patch patches.suse/ASoC-cs35l56-Use-PCI-SSID-as-the-firmware-UID.patch + patches.suse/ASoC-SOF-ipc4-topology-Add-deep-buffer-size-to-debug.patch + patches.suse/ASoC-SOF-ipc4-Add-new-message-type-SOF_IPC4_GLB_LOAD.patch + patches.suse/ASoC-SOF-ipc4-topology-export-sof_ipc4_copier_is_sin.patch patches.suse/ASoC-Intel-common-add-ACPI-matching-tables-for-Arrow.patch + patches.suse/ASoC-SOF-ipc4-topology-Add-definition-for-generic-sw.patch + patches.suse/ASoC-SOF-ipc4-control-Add-support-for-ALSA-switch-co.patch + patches.suse/ASoC-SOF-ipc4-control-Add-support-for-ALSA-enum-cont.patch + patches.suse/ASoC-SOF-ipc4-mtrace-move-debug-slot-related-definit.patch patches.suse/ASoC-SOF-ipc4-handle-EXCEPTION_CAUGHT-notification-f.patch patches.suse/ASoC-soc-pcm.c-Make-sure-DAI-parameters-cleared-if-t.patch patches.suse/ASoC-doc-Update-codec-to-codec-examples.patch @@ -16459,6 +16505,7 @@ patches.suse/ASoC-ti-Convert-Pandora-ASoC-to-GPIO-descriptors.patch patches.suse/ASoC-cs35l56-Remove-unused-hibernate-wake-constants.patch patches.suse/ASoC-cs35l56-Wake-transactions-need-to-be-issued-twi.patch + patches.suse/ASoC-SOF-IPC4-get-pipeline-priority-from-topology.patch patches.suse/ASoC-codecs-wsa-macro-fix-uninitialized-stack-variab.patch patches.suse/gpiolib-of-Add-quirk-for-mt2701-cs42448-ASoC-sound.patch patches.suse/ASoC-fsl-mpc5200_dma.c-Fix-warning-of-Function-param.patch @@ -16512,6 +16559,7 @@ patches.suse/scsi-ibmvfc-Open-code-reset-loop-for-target-reset.patch patches.suse/scsi-megaraid-Pass-in-NULL-scb-for-host-reset.patch patches.suse/scsi-mpi3mr-Split-off-bus_reset-function-from-host_reset.patch + patches.suse/scsi-spi-Fix-sshdr-use.patch patches.suse/scsi-megaraid_sas-Increase-register-read-retry-rount.patch patches.suse/scsi-megaraid_sas-Log-message-when-controller-reset-.patch patches.suse/scsi-megaraid_sas-Driver-version-update-to-07.727.03.patch @@ -16682,6 +16730,7 @@ patches.suse/mm-compaction-factor-out-code-to-test-if-we-should-run-compaction-for-target-order.patch patches.suse/mm-mremap-fix-unaccount-of-memory-on-vma_merge-failure.patch patches.suse/mm-fix-unaccount-of-memory-on-vma_link-failure.patch + patches.suse/0001-mm-hugetlb-fix-nodes-huge-page-allocation-when-there.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 @@ -16695,6 +16744,7 @@ patches.suse/kasan-use-unchecked-__memset-internally.patch 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/filemap-remove-use-of-wait-bookmarks.patch patches.suse/bootmem-use-kmemleak_free_part_phys-in-put_page_boot.patch patches.suse/bootmem-use-kmemleak_free_part_phys-in-free_bootmem_.patch patches.suse/mm-migrate-record-the-mlocked-page-status-to-remove-unnecessary-lru-drain.patch @@ -16935,6 +16985,7 @@ patches.suse/powerpc-qspinlock-don-t-propagate-the-not-sleepy-sta.patch patches.suse/powerpc-qspinlock-Propagate-sleepy-if-previous-waite.patch patches.suse/powerpc-qspinlock-Rename-yield_propagate_owner-tunab.patch + patches.suse/powerpc-code-patching-Perform-hwsync-in-__patch_inst.patch patches.suse/powerpc-pseries-use-kfree_sensitive-in-plpks_gen_pas.patch patches.suse/powerpc-code-patching-introduce-patch_instructions.patch patches.suse/powerpc-bpf-implement-bpf_arch_text_copy.patch @@ -16965,8 +17016,10 @@ patches.suse/1575-misc-mei-main.c-fix-kernel-doc-warnings.patch patches.suse/1576-mei-me-emit-error-only-if-reset-was-unexpected.patch patches.suse/iio-frequency-adf4350-Use-device-managed-functions-a.patch + patches.suse/iio-magnetometer-ak8975-Convert-enum-pointer-for-dat.patch patches.suse/iio-adc-stm32-adc-harden-against-NULL-pointer-deref-.patch patches.suse/staging-iio-resolver-ad2s1210-fix-use-before-initial.patch + patches.suse/iio-magnetometer-ak8975-Fix-Unexpected-device-error.patch patches.suse/tools-iio-iio_generic_buffer-ensure-alignment.patch patches.suse/iio-accel-mxc4005-allow-module-autoloading-via-OF-co.patch patches.suse/interconnect-qcom-osm-l3-Replace-custom-implementati.patch @@ -17088,6 +17141,7 @@ patches.suse/ACPI-thermal-Fix-acpi_thermal_unregister_thermal_zon.patch patches.suse/modpost-fix-tee-MODULE_DEVICE_TABLE-built-on-big-end.patch patches.suse/modpost-fix-ishtp-MODULE_DEVICE_TABLE-built-on-big-e.patch + patches.suse/kbuild-avoid-too-many-execution-of-scripts-pahole-fl.patch patches.suse/efivarfs-Add-uid-gid-mount-options.patch patches.suse/smb-client-fix-potential-deadlock-when-releasing-mids.patch patches.suse/smb-client-fix-use-after-free-bug-in-cifs_debug_data_proc_show-.patch @@ -17178,10 +17232,14 @@ patches.suse/ubifs-fix-possible-dereference-after-free.patch patches.suse/ubifs-ubifs_link-Fix-wrong-name-len-calculating-when-UBIFS-is-encrypted.patch patches.suse/i2c-i801-fix-potential-race-in-i801_block_transactio.patch + patches.suse/i2c-rcar-properly-format-a-debug-output.patch patches.suse/i2c-riic-avoid-potential-division-by-zero.patch + patches.suse/i2c-i801-add-helper-i801_restore_regs.patch patches.suse/i2c-stm32f7-Add-atomic_xfer-method-to-driver.patch patches.suse/i2c-i801-Add-support-for-Intel-Birch-Stream-SoC.patch + patches.suse/i2c-exynos5-Calculate-t_scl_l-t_scl_h-according-to-i.patch patches.suse/i2c-fix-memleak-in-i2c_new_client_device.patch + patches.suse/i2c-core-fix-lockdep-warning-for-sparsely-nested-ada.patch patches.suse/i2c-sun6i-p2wi-Prevent-potential-division-by-zero.patch patches.suse/vdpa-mlx5-Expose-descriptor-group-mkey-hw-capability.patch patches.suse/vdpa-introduce-dedicated-descriptor-group-for-virtqu.patch @@ -17222,6 +17280,7 @@ patches.suse/media-hantro-Check-whether-reset-op-is-defined-befor.patch patches.suse/media-verisilicon-Do-not-enable-G2-postproc-downscal.patch patches.suse/media-gspca-cpia1-shift-out-of-bounds-in-set_flicker.patch + patches.suse/media-videobuf2-fix-typo-vb2_dbuf-vb2_qbuf.patch patches.suse/media-i2c-max9286-Fix-some-redundant-of_node_put-cal.patch patches.suse/media-ov5640-Fix-a-memory-leak-when-ov5640_probe-fai.patch patches.suse/media-bttv-fix-use-after-free-error-due-to-btv-timeo.patch @@ -17671,6 +17730,7 @@ patches.suse/btrfs-zoned-drop-no-longer-valid-write-pointer-check.patch patches.suse/btrfs-zoned-wait-for-data-BG-to-be-finished-on-direc.patch patches.suse/zstd-Fix-array-index-out-of-bounds-UBSAN-warning.patch + patches.suse/vdpa_sim_blk-allocate-the-buffer-zeroed.patch patches.suse/vhost-vdpa-fix-use-after-free-in-vhost_vdpa_probe.patch patches.suse/xen-events-avoid-using-info_for_irq-in-xen_send_IPI_.patch patches.suse/acpi-processor-sanitize-_OSC-_PDC-capabilities-for-X.patch @@ -17708,6 +17768,7 @@ patches.suse/ice-dpll-fix-output-pin-capabilities.patch patches.suse/ice-fix-DDP-package-download-for-packages-without-si.patch patches.suse/gve-Fixes-for-napi_poll-when-budget-is-0.patch + patches.suse/mptcp-deal-with-large-GSO-size.patch patches.suse/bpf-handle-ldimm64-properly-in-check_cfg.patch patches.suse/bpf-fix-precision-backtracking-instruction-iteration.patch patches.suse/selftests-bpf-add-edge-case-backtracking-logic-test.patch @@ -17729,6 +17790,7 @@ patches.suse/net-mlx5e-Check-return-value-of-snprintf-writing-to--1b2bd0c0.patch patches.suse/macvlan-Don-t-propagate-promisc-change-to-lower-dev-.patch patches.suse/netfilter-nf_tables-fix-pointer-math-issue-in-nft_by.patch + patches.suse/audit-don-t-WARN_ON_ONCE-current-mm-in-audit_exe_compare.patch patches.suse/ALSA-hda-realtek-Add-Dell-ALC295-to-pin-fall-back-ta.patch patches.suse/ALSA-hda-realtek-Enable-Mute-LED-on-HP-255-G8.patch patches.suse/ALSA-hda-realtek-Enable-internal-speaker-of-ASUS-K65.patch @@ -17857,6 +17919,7 @@ patches.suse/tools-power-turbostat-version-2023.11.07.patch patches.suse/Revert-i2c-pxa-move-to-generic-GPIO-recovery.patch patches.suse/i2c-designware-Fix-corrupted-memory-seen-in-the-ISR.patch + patches.suse/i2c-ocores-Move-system-PM-hooks-to-the-NOIRQ-phase.patch patches.suse/dm-delay-fix-a-race-between-delay_presuspend-and-del-6fc4.patch patches.suse/dm-delay-fix-bugs-introduced-by-kthread-mode-38cf.patch patches.suse/dm-delay-avoid-duplicate-logic-ccad.patch @@ -17880,6 +17943,7 @@ patches.suse/perf-core-Fix-cpuctx-refcounting.patch patches.suse/sched-psi-fix-unprivileged-polling-against-cgroups.patch patches.suse/sched-fair-Fix-the-decision-for-load-balance.patch + patches.suse/x86-Documentation-Indent-note-directive-for-protocol.patch patches.suse/x86-shstk-delay-signal-entry-ssp-write-until-after-user-accesses.patch patches.suse/irqchip-gic-v3-its-Flush-ITS-tables-correctly-in-non.patch patches.suse/kconfig-fix-memory-leak-from-range-properties.patch @@ -18073,6 +18137,7 @@ patches.suse/wifi-cfg80211-hold-wiphy-mutex-for-send_interface.patch patches.suse/wifi-avoid-offset-calculation-on-NULL-pointer.patch patches.suse/wifi-mac80211-handle-320-MHz-in-ieee80211_ht_cap_ie_.patch + patches.suse/debugfs-fix-automount-d_fsdata-usage.patch patches.suse/wifi-cfg80211-add-locked-debugfs-wrappers.patch patches.suse/wifi-mac80211-use-wiphy-locked-debugfs-helpers-for-a.patch patches.suse/wifi-mac80211-use-wiphy-locked-debugfs-for-sdata-lin.patch @@ -18419,7 +18484,9 @@ patches.suse/fuse-share-lookup-state-between-submount-and-its-pare.patch patches.suse/fuse-dax-set-fc-dax-to-NULL-in-fuse_dax_conn_free.patch patches.suse/ext4-prevent-the-normalized-size-from-exceeding-EXT_M.patch + patches.suse/jbd2-correct-the-printing-of-write_flags-in-jbd2_wri.patch patches.suse/ext4-fix-warning-in-ext4_dio_write_end_io.patch + patches.suse/jbd2-fix-soft-lockup-in-journal_finish_inode_data_bu.patch patches.suse/HID-i2c-hid-Add-IDEA5002-to-i2c_hid_acpi_blacklist.patch patches.suse/HID-Add-quirk-for-Labtec-ODDOR-aikeec-handbrake.patch patches.suse/HID-lenovo-Restrict-detection-of-patched-firmware-on.patch @@ -18641,6 +18708,7 @@ patches.suse/tracing-synthetic-Disable-events-after-testing-in-synth_event_gen_test_init.patch patches.suse/afs-Fix-the-dynamic-root-s-d_delete-to-always-delete-unused-dentries.patch patches.suse/afs-Fix-dynamic-root-lookup-DNS-check.patch + patches.suse/keys-dns-Allow-key-types-eg.-DNS-to-be-reclaimed-immediately-on-expiry.patch patches.suse/afs-Fix-overwriting-of-result-of-DNS-query.patch patches.suse/ida-Fix-crash-in-ida_free-when-the-bitmap-is-empty.patch patches.suse/afs-Fix-use-after-free-due-to-get-remove-race-in-volume-tree.patch @@ -18874,6 +18942,7 @@ patches.suse/x86-MCE-AMD-Add-new-MA_LLC-USR_DP-and-USR_CP-bank-types.patch patches.suse/Documentation-Begin-a-RAS-section.patch patches.suse/powerpc-add-crtsavres.o-to-always-y-instead-of-extra.patch + patches.suse/powerpc-xics-Check-return-value-of-kasprintf-in-icp_.patch patches.suse/powerpc-lib-Validate-size-for-vector-operations.patch patches.suse/powerpc-Add-PVN-support-for-HeXin-C2000-processor.patch patches.suse/powerpc-pseries-memhp-Fix-access-beyond-end-of-drmem.patch @@ -19627,7 +19696,16 @@ patches.suse/Revert-wifi-ath12k-use-ATH12K_PCI_IRQ_DP_OFFSET-for-.patch patches.suse/wifi-ath11k-workaround-too-long-expansion-sparse-war.patch patches.suse/selftests-bpf-Fix-erroneous-bitmask-operation.patch + patches.suse/bpf-rearrange-bpf_func_state-fields-to-save-a-bit-of.patch + patches.suse/bpf-provide-correct-register-name-for-exception-call.patch patches.suse/bpf-enforce-precision-of-R0-on-callback-return.patch + patches.suse/bpf-enforce-exact-retval-range-on-subprog-callback-e.patch + patches.suse/selftests-bpf-add-selftest-validating-callback-resul.patch + patches.suse/bpf-enforce-precise-retval-range-on-program-exit.patch + patches.suse/bpf-unify-async-callback-and-program-retval-checks.patch + patches.suse/bpf-enforce-precision-of-R0-on-program-async-callbac.patch + patches.suse/selftests-bpf-validate-async-callback-return-value-c.patch + patches.suse/selftests-bpf-adjust-global_func15-test-to-validate-.patch patches.suse/bpf-Minor-logging-improvement.patch patches.suse/bpf-Check-rcu_read_lock_trace_held-before-calling-bp.patch patches.suse/bpf-Add-map-and-need_defer-parameters-to-.map_fd_put.patch @@ -19637,14 +19715,19 @@ patches.suse/selftests-bpf-Add-test-cases-for-inner-map.patch patches.suse/selftests-bpf-Test-outer-map-update-operations-in-sy.patch patches.suse/xsk-Add-missing-SPDX-to-AF_XDP-TX-metadata-documenta.patch + patches.suse/bpf-support-non-r10-register-spill-fill-to-from-stac.patch + patches.suse/selftests-bpf-add-stack-access-precision-test.patch patches.suse/bpf-fix-check-for-attempt-to-corrupt-spilled-pointer.patch patches.suse/bpf-Fix-verification-of-indirect-var-off-stack-acces.patch patches.suse/bpf-Guard-stack-limits-against-32bit-overflow.patch patches.suse/bpf-Add-some-comments-to-stack-representation.patch patches.suse/bpf-Fix-accesses-to-uninit-stack-slots.patch patches.suse/bpf-Minor-cleanup-around-stack-bounds.patch + patches.suse/selftests-bpf-fix-timer-test_bad_ret-subtest-on-test.patch patches.suse/bpf-Remove-unnecessary-wait-from-bpf_map_copy_value.patch patches.suse/bpf-Set-uattr-batch.count-as-zero-before-batched-upd.patch + patches.suse/bpf-handle-fake-register-spill-to-stack-with-BPF_ST_.patch + patches.suse/selftests-bpf-validate-fake-register-spill-fill-prec.patch patches.suse/net-xdp-Allow-metadata-32.patch patches.suse/selftests-bpf-Relax-time_tai-test-for-equal-timestam.patch patches.suse/selftests-bpf-fix-compiler-warnings-in-RELEASE-1-mod.patch @@ -19840,6 +19923,7 @@ patches.suse/arm64-dts-hisilicon-hikey970-pmic-fix-regulator-cells-properties.patch patches.suse/arm64-dts-imx8mp-Add-NPU-Node.patch patches.suse/arm64-dts-imx8mm-Reduce-GPU-to-nominal-speed.patch + patches.suse/arm64-dts-imx8qxp-Add-VPU-subsystem-file.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 @@ -19985,6 +20069,7 @@ patches.suse/drm-i915-Use-named-initializers-for-DPLL-info.patch patches.suse/drm-dp_mst-Fix-fractional-DSC-bpp-handling.patch patches.suse/drm-amd-display-Fix-a-debugfs-null-pointer-error.patch + patches.suse/0001-drm-amd-display-Add-disable-timeout-option.patch patches.suse/drm-amd-display-update-pixel-clock-params-after-stre.patch patches.suse/drm-amd-display-Fix-tiled-display-misalignment.patch patches.suse/drm-amd-display-Fix-conversions-between-bytes-and-KB.patch @@ -20128,14 +20213,25 @@ patches.suse/ALSA-hda-tas2781-add-TAS2563-support-for-14ARB7.patch patches.suse/ALSA-hda-tas2781-add-fixup-for-Lenovo-14ARB7.patch patches.suse/ALSA-hda-cs35l41-Support-more-HP-models-without-_DSD.patch + patches.suse/ASoC-SOF-Add-support-for-configuring-PDM-interface-f.patch patches.suse/ASoC-doc-Fix-undefined-SND_SOC_DAPM_NOPM-argument.patch + patches.suse/ASoC-SOF-ipc4-topology-Helper-to-find-an-swidget-by-.patch + patches.suse/ASoC-SOF-ipc4-Add-data-struct-for-module-notificatio.patch patches.suse/ASoC-SOF-Intel-mtl-call-dsp-dump-when-boot-retry-fai.patch patches.suse/ASoC-SOF-ipc4-check-return-value-of-snd_sof_ipc_msg_.patch + patches.suse/ASoC-SOF-ipc4-topology-Add-module-ID-print-during-mo.patch patches.suse/ASoC-cs35l33-Fix-GPIO-name-and-drop-legacy-include.patch patches.suse/ASoC-Intel-glk_rt5682_max98357a-fix-board-id-mismatc.patch patches.suse/ASoC-Intel-sof_sdw_rt_sdca_jack_common-ctx-headset_c.patch patches.suse/ASoC-SOF-topology-Use-partial-match-for-disconnectin.patch + patches.suse/ASoC-SOF-align-topology-header-file-with-sof-topolog.patch + patches.suse/ASoC-SOF-add-alignment-for-topology-header-file-stru.patch + patches.suse/ASoC-SOF-Wire-up-buffer-flags.patch + patches.suse/ASoC-SOF-IPC4-synchronize-fw_config_params-with-fw-d.patch patches.suse/ASoC-tas2781-add-support-for-FW-version-0x0503.patch + patches.suse/ASoC-SOF-Refactor-sof_i2s_tokens-reading-to-update-a.patch + patches.suse/ASoC-SOF-Add-i2s-bt-dai-configuration-support-for-AM.patch + patches.suse/ASoC-SOF-Rename-amd_bt-sof_dai_type.patch patches.suse/ASoC-amd-vangogh-Drop-conflicting-ACPI-based-probing.patch patches.suse/ASoC-amd-acp-config-Add-missing-MODULE_DESCRIPTION.patch patches.suse/ASoC-amd-acp-Add-missing-MODULE_DESCRIPTION-in-mach-.patch @@ -20256,6 +20352,7 @@ patches.suse/nvdimm-btt-fix-btt_blk_cleanup-kernel-doc-b192.patch patches.suse/nvdimm-dimm_devs-fix-kernel-doc-for-function-params-0e2b.patch patches.suse/nvdimm-namespace-fix-kernel-doc-for-function-params-fd04.patch + patches.suse/media-core-v4l2-ioctl-check-if-ioctl-is-known-to-avo.patch patches.suse/media-pvrusb2-fix-use-after-free-on-context-disconne.patch patches.suse/media-mtk-jpeg-Remove-cancel-worker-in-mtk_jpeg_remo.patch patches.suse/media-mtk-jpeg-Fix-use-after-free-bug-due-to-error-p.patch @@ -20287,11 +20384,13 @@ patches.suse/media-dvb-frontends-m88ds3103-Fix-a-memory-leak-in-a.patch patches.suse/media-ddbridge-fix-an-error-code-problem-in-ddb_prob.patch patches.suse/media-dt-bindings-ov8856-decouple-lanes-and-link-fre.patch + patches.suse/media-i2c-imx335-Enable-regulator-supplies.patch patches.suse/media-i2c-imx335-Fix-hblank-min-max-values.patch patches.suse/media-docs-uAPI-Fix-documentation-of-which-field-for.patch patches.suse/fbdev-imxfb-fix-left-margin-setting.patch patches.suse/fbdev-mmp-Fix-typo-and-wording-in-code-comment.patch patches.suse/fbdev-flush-deferred-work-in-fb_deferred_io_fsync.patch + patches.suse/HID-i2c-hid-Remove-I2C_HID_QUIRK_SET_PWR_WAKEUP_DEV-.patch patches.suse/HID-wacom-Correct-behavior-when-processing-some-conf.patch patches.suse/pwm-stm32-Use-hweight32-in-stm32_pwm_detect_channels.patch patches.suse/pwm-stm32-Fix-enable-count-for-clk-in-.probe.patch @@ -20492,6 +20591,7 @@ patches.suse/usb-cdc-acm-return-correct-error-code-on-unsupported-break.patch patches.suse/usb-typec-change-altmode-SVID-to-u16-entry.patch patches.suse/usb-core-Fix-crash-w-usb_choose_configuration-if-no-.patch + patches.suse/usb-gadget-f_uac2-Replace-snprintf-with-the-safer-sc.patch patches.suse/usb-gadget-webcam-Make-g_webcam-loadable-again.patch patches.suse/thunderbolt-Remove-duplicated-re-assignment-of-point.patch patches.suse/thunderbolt-Unwind-TMU-configuration-if-tb_switch_se.patch @@ -20561,6 +20661,7 @@ patches.suse/cxl-region-fix-x9-interleave-typo.patch patches.suse/cxl-port-Fix-decoder-initialization-when-nr_targets-.patch patches.suse/PCI-Introduce-cleanup-helpers-for-device-reference-c.patch + patches.suse/vdpa-Fix-an-error-handling-path-in-eni_vdpa_probe.patch patches.suse/virtio_pmem-support-feature-SHMEM_REGION-3596.patch patches.suse/vdpa-mlx5-Expose-resumable-vq-capability.patch patches.suse/vdpa-mlx5-Allow-modifying-multiple-vq-fields-in-one-.patch @@ -20587,7 +20688,12 @@ patches.suse/i2c-s3c24xx-fix-read-transfers-in-polling-mode.patch patches.suse/i2c-s3c24xx-fix-transferring-more-than-one-message-i.patch patches.suse/i2c-rk3x-Adjust-mask-value-offset-for-i2c2-on-rv1126.patch + patches.suse/i2c-cpm-Remove-linux-i2c-index-conversion-from-be32.patch + patches.suse/i2c-i801-Add-lis3lv02d-for-Dell-Precision-3540.patch + patches.suse/i2c-i801-Add-lis3lv02d-for-Dell-XPS-15-7590.patch + patches.suse/i2c-stm32f7-perform-most-of-irq-job-in-threaded-hand.patch patches.suse/net-qualcomm-rmnet-fix-global-oob-in-rmnet_policy.patch + patches.suse/net-dsa-fix-netdev_priv-dereference-before-check-on-.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 @@ -20637,7 +20743,9 @@ patches.suse/nvmet-re-fix-tracing-strncpy-warning.patch patches.suse/nvme-trace-avoid-memcpy-overflow-warning.patch patches.suse/nvmet-tcp-Fix-the-H2C-expected-PDU-len-calculation.patch + patches.suse/nvme-pci-set-doorbell-config-before-unquiescing.patch patches.suse/blk-mq-fix-IO-hang-from-sbitmap-wakeup-race.patch + patches.suse/block-print-symbolic-error-name-instead-of-error-code.patch patches.suse/block-bio-integrity-fix-kcalloc-arguments-order.patch patches.suse/block-Fix-iterating-over-an-empty-bio-with-bio_for_each_folio_all.patch patches.suse/nbd-always-initialize-struct-msghdr-completely.patch @@ -20772,6 +20880,7 @@ 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/Revert-KEYS-encrypted-Add-check-for-strsep.patch patches.suse/nfsd-fix-RELEASE_LOCKOWNER.patch patches.suse/cifs-Don-t-use-certain-unnecessary-folio_-functions.patch patches.suse/netfs-fscache-Prevent-Oops-in-fscache_put_cache.patch @@ -21040,6 +21149,7 @@ patches.suse/nouveau-offload-fence-uevents-work-to-workqueue.patch patches.suse/PCI-ASPM-Fix-deadlock-when-enabling-ASPM.patch patches.suse/ring-buffer-Clean-ring_buffer_poll_wait-error-return.patch + patches.suse/tracing-timerlat-Move-hrtimer_init-to-timerlat_fd-open.patch patches.suse/tools-arch-x86-Sync-the-msr-index.h-copy-with-the-kernel-sources-to-pick-IA32_MKTME_KEYID_PARTITIONING.patch patches.suse/tools-headers-x86-cpufeatures-Sync-with-the-kernel-sources-to-pick-TDX-Zen-APIC-MSR-fence-changes.patch patches.suse/perf-evlist-Fix-evlist__new_default-for-1-core-PMU.patch @@ -21182,6 +21292,7 @@ patches.suse/tracing-Fix-wasted-memory-in-saved_cmdlines-logic.patch patches.suse/work-around-gcc-bugs-with-asm-goto-with-outputs.patch patches.suse/fs-ntfs3-Add-NULL-ptr-dereference-checking-at-the-en.patch + patches.suse/fs-ntfs3-Fixed-overflow-check-in-mi_enum_attr.patch patches.suse/fs-ntfs3-Fix-an-NULL-dereference-bug.patch patches.suse/fs-ntfs3-Fix-oob-in-ntfs_listxattr.patch patches.suse/libceph-fail-sparse-read-if-the-data-length-doesn-t-m.patch @@ -21227,6 +21338,7 @@ patches.suse/dpll-fix-possible-deadlock-during-netlink-dump-opera.patch patches.suse/net-mlx5-DPLL-Fix-possible-use-after-free-after-dela.patch patches.suse/bonding-do-not-report-NETDEV_XDP_ACT_XSK_ZEROCOPY.patch + patches.suse/devlink-Fix-command-annotation-documentation.patch patches.suse/net-openvswitch-limit-the-number-of-recursions-from-.patch patches.suse/lan966x-Fix-crash-when-adding-interface-under-a-lag.patch patches.suse/net-tls-factor-out-tls_-crypt_async_wait.patch @@ -21238,6 +21350,7 @@ patches.suse/tcp-move-tp-scaling_ratio-to-tcp_sock_read_txrx-grou.patch patches.suse/tcp-move-tp-tcp_usec_ts-to-tcp_sock_read_txrx-group.patch patches.suse/net-device-move-lstats-in-net_device_read_txrx.patch + patches.suse/net-sysfs-Fix-sys-class-net-iface-path-for-statistic.patch patches.suse/i40e-Do-not-allow-untrusted-VF-to-remove-administrat.patch patches.suse/net-stmmac-xgmac-use-define-for-string-constants.patch patches.suse/ionic-minimal-work-with-0-budget.patch @@ -21307,6 +21420,7 @@ patches.suse/ASoC-SOF-IPC3-fix-message-bounds-on-ipc-ops.patch patches.suse/ALSA-hda-realtek-fix-mute-micmute-LED-For-HP-mt645.patch patches.suse/ALSA-usb-audio-More-relaxed-check-of-MIDI-jack-names.patch + patches.suse/zonefs-Improve-error-handling.patch patches.suse/arm64-signal-Don-t-assume-that-TIF_SVE-means-we-saved-SVE-state.patch patches.suse/arm64-Subscribe-Microsoft-Azure-Cobalt-100-to-ARM-Neoverse-N2-errata.patch patches.suse/arm64-sve-Lower-the-maximum-allocation-for-the-SVE-ptrace-regset.patch @@ -21387,6 +21501,7 @@ patches.suse/KVM-arm64-vgic-its-Test-for-valid-IRQ-in-MOVALL-hand.patch patches.suse/net-iucv-fix-the-allocation-size-of-iucv_path_table-array.patch patches.suse/0001-net-bridge-switchdev-Skip-MDB-replays-of-deferred-ev.patch + patches.suse/dccp-tcp-Unhash-sk-from-ehash-for-tb2-alloc-failure-after-check_estalblished.patch patches.suse/net-sched-act_mirred-use-the-backlog-for-mirred-ingr.patch patches.suse/net-sched-act_mirred-don-t-override-retval-if-we-alr.patch patches.suse/net-stmmac-Fix-incorrect-dereference-in-interrupt-ha.patch @@ -21537,6 +21652,7 @@ patches.suse/net-veth-clear-GRO-when-clearing-XDP-even-when-down.patch patches.suse/ipv6-fix-potential-struct-net-leak-in-inet6_rtm_geta.patch patches.suse/lan78xx-enable-auto-speed-configuration-for-LAN7850-.patch + patches.suse/mptcp-fix-double-free-on-socket-dismantle.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 @@ -21648,6 +21764,7 @@ patches.suse/Revert-net-mlx5e-Check-the-number-of-elements-before.patch patches.suse/net-mlx5-E-switch-Change-flow-rule-destination-check.patch patches.suse/net-mlx5-Fix-fw-reporter-diagnose-output.patch + patches.suse/net-mlx5-Check-capability-for-fw_reset.patch patches.suse/net-mlx5e-Change-the-warning-when-ignore_flow_level-.patch patches.suse/net-mlx5e-Fix-MACsec-state-loss-upon-state-update-in.patch patches.suse/net-mlx5e-Use-a-memory-barrier-to-enforce-PTP-WQ-xmi.patch @@ -21805,6 +21922,7 @@ patches.suse/md-add-a-mddev_add_trace_msg-helper-28be.patch patches.suse/nvme-fabrics-typo-in-nvmf_parse_key.patch patches.suse/nvme-clear-caller-pointer-on-identify-failure.patch + patches.suse/x86-resctrl-Remove-hard-coded-memory-bandwidth-limit.patch patches.suse/x86-resctrl-Read-supported-bandwidth-sources-from-CPUID.patch patches.suse/x86-resctrl-Remove-redundant-variable-in-mbm_config_write_.patch patches.suse/x86-sev-Harden-VC-instruction-emulation-somewhat @@ -21855,6 +21973,7 @@ 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-nmi-Drop-unused-declaration-of-proc_nmi_enabled.patch + patches.suse/x86-Increase-brk-randomness-entropy-for-64-bit-systems.patch patches.suse/x86-mm-Ensure-input-to-pfn_to_kaddr-is-treated-as-a-64-bit.patch patches.suse/x86-asm-Remove-the-__iomem-annotation-of-movdir64b-s-dst-a.patch patches.suse/x86-mmio-Disable-KVM-mitigation-when-X86_FEATURE_CLEAR_CPU.patch @@ -22531,6 +22650,7 @@ patches.suse/wifi-ath11k-constify-MHI-channel-and-controller-conf.patch patches.suse/wifi-ath12k-fix-license-in-p2p.c-and-p2p.h.patch patches.suse/mac802154-fix-llsec-key-resources-release-in-mac8021.patch + patches.suse/Bluetooth-btnxpuart-Resolve-TX-timeout-error-in-powe.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 @@ -22802,6 +22922,10 @@ patches.suse/ASoC-SOF-amd-Optimize-quirk-for-Valve-Galileo.patch patches.suse/ASoC-sh-rz-ssi-Fix-error-message-print.patch patches.suse/ASoC-Intel-common-DMI-remap-for-rebranded-Intel-NUC-.patch + patches.suse/ASoC-SOF-ipc4-topology-set-config_length-based-on-de.patch + patches.suse/ASoC-SOF-ipc4-topology-change-chain_dma-handling-in-.patch + patches.suse/ASoC-SOF-topology-dynamically-allocate-and-store-DAI.patch + patches.suse/ASoC-SOF-topology-Parse-DAI-type-token-for-dspless-m.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 @@ -22836,6 +22960,7 @@ patches.suse/perf-pmu-Fix-a-potential-memory-leak-in-perf_pmu__lookup.patch patches.suse/libperf-evlist-Avoid-out-of-bounds-access.patch patches.suse/perf-vendor-events-amd-Fix-Zen-4-cache-latency-events.patch + patches.suse/mm-mmap-no-need-to-call-khugepaged_enter_vma-for-sta.patch patches.suse/dax-bus.c-replace-driver-core-lock-usage-by-a-local--c05a.patch patches.suse/dax-bus.c-replace-several-sprintf-with-sysfs_emit-6ebe.patch patches.suse/mm-memcg-don-t-periodically-flush-stats-when-memcg-is-disabled.patch @@ -22937,6 +23062,7 @@ 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/of-Add-cleanup.h-based-auto-release-via-__free-devic.patch patches.suse/KVM-Always-flush-async-PF-workqueue-when-vCPU-is-bei.patch patches.suse/KVM-fix-kvm_mmu_memory_cache-allocation-warning.patch patches.suse/KVM-x86-Fix-broken-debugregs-ABI-for-32-bit-kernels.patch @@ -22985,6 +23111,8 @@ 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-boot-Handle-allocation-failure-in-simple_rea.patch + patches.suse/powerpc-boot-Only-free-if-realloc-succeeds.patch patches.suse/powerpc-hv-gpci-Fix-the-H_GET_PERF_COUNTER_INFO-hcall-return-value-checks.patch patches.suse/powerpc-64s-Move-dcbt-dcbtst-sequence-into-a-macro.patch patches.suse/powerpc-64s-Use-.machine-power4-around-dcbt.patch @@ -23027,6 +23155,7 @@ patches.suse/scsi-bfa-Fix-function-pointer-type-mismatch-for-hcb_qe-cbfn.patch patches.suse/scsi-lpfc-Replace-deprecated-strncpy-with-strscpy.patch patches.suse/Input-synaptics-rmi4-fail-probing-if-memory-allocati.patch + patches.suse/Input-xpad-sort-xpad_device-by-vendor-and-product-ID.patch patches.suse/input-touchscreen-imagis-Correct-the-maximum-touch-a.patch patches.suse/Input-imagis-use-FIELD_GET-where-applicable.patch patches.suse/Input-xpad-add-support-for-Snakebyte-GAMEPADs.patch @@ -23086,6 +23215,7 @@ patches.suse/thunderbolt-Fix-XDomain-rx_lanes_show-and-tx_lanes_s.patch patches.suse/thunderbolt-Fix-rollback-in-tb_port_lane_bonding_ena.patch patches.suse/thunderbolt-Reset-only-non-USB4-host-routers-in-resu.patch + patches.suse/thunderbolt-Improve-DisplayPort-tunnel-setup-process.patch patches.suse/usb-xhci-Add-error-handling-in-xhci_map_urb_for_dma.patch patches.suse/usb-typec-ucsi-Clean-up-UCSI_CABLE_PROP-macros.patch patches.suse/usb-dwc3-am62-fix-module-unload-reload-behavior.patch @@ -23135,6 +23265,8 @@ patches.suse/soc-fsl-qbman-Use-raw-spinlock-for-cgr_lock.patch patches.suse/octeontx2-af-Use-matching-wake_up-API-variant-in-CGX.patch patches.suse/net-sched-taprio-proper-TCA_TAPRIO_TC_ENTRY_INDEX-ch.patch + patches.suse/tcp-Fix-refcnt-handling-in-__inet_hash_connect.patch + patches.suse/vmxnet3-Fix-missing-reserved-tailroom.patch patches.suse/hsr-Fix-uninit-value-access-in-hsr_get_node.patch patches.suse/net-mediatek-mtk_eth_soc-clear-MAC_MCR_FORCE_LINK-on.patch patches.suse/net-ethernet-mtk_eth_soc-fix-PPE-hanging-issue.patch @@ -23147,6 +23279,7 @@ patches.suse/net-sched-Add-module-alias-for-sch_fq_pie.patch patches.suse/net-phy-fix-phy_read_poll_timeout-argument-type-in-g.patch patches.suse/net-bnx2x-Prevent-access-to-a-freed-page-in-page_poo.patch + patches.suse/net-esp-fix-bad-handling-of-pages-from-page_pool.patch patches.suse/octeontx2-Detect-the-mbox-up-or-down-message-via-reg.patch patches.suse/octeontx2-pf-Wait-till-detach_resources-msg-is-compl.patch patches.suse/octeontx2-pf-Use-default-max_active-works-instead-of.patch @@ -23390,6 +23523,7 @@ patches.suse/scsi-lpfc-Update-lpfc-version-to-14.4.0.1.patch patches.suse/scsi-lpfc-Copyright-updates-for-14.4.0.1-patches.patch patches.suse/scsi-sg-Avoid-sg-device-teardown-race.patch + patches.suse/scsi-mpi3mr-Avoid-memcpy-field-spanning-write-WARNING.patch patches.suse/scsi-core-Fix-unremoved-procfs-host-directory-regression.patch patches.suse/scsi-bnx2fc-Remove-spin_lock_bh-while-releasing-resources-after-upload.patch patches.suse/xfs-don-t-use-current-journal_info.patch @@ -23420,6 +23554,7 @@ patches.suse/i40e-fix-vf-may-be-used-uninitialized-in-this-functi.patch patches.suse/octeontx2-pf-check-negative-error-code-in-otx2_open.patch patches.suse/r8169-skip-DASH-fw-status-checks-when-DASH-is-disabl.patch + patches.suse/erspan-make-sure-erspan_base_hdr-is-present-in-skb-head.patch patches.suse/Bluetooth-add-quirk-for-broken-address-properties.patch patches.suse/Bluetooth-qca-fix-device-address-endianness.patch patches.suse/Bluetooth-hci_sync-Fix-not-checking-error-on-hci_cmd.patch @@ -23541,14 +23676,17 @@ patches.suse/nouveau-fix-devinit-paths-to-only-handle-display-on-.patch patches.suse/platform-x86-intel-vbtn-Update-tablet-mode-switch-at.patch patches.suse/platform-x86-lg-laptop-fix-s-null-argument-warning.patch + patches.suse/tools-power-turbostat-Increase-the-limit-for-fd-opened.patch patches.suse/tools-power-turbostat-Expand-probe_intel_uncore_frequency.patch patches.suse/tools-power-turbostat-Fix-uncore-frequency-file-string.patch patches.suse/media-mediatek-vcodec-Fix-oops-when-HEVC-init-fails.patch patches.suse/kprobes-Fix-possible-use-after-free-issue-on-kprobe-registration.patch patches.suse/platform-chrome-cros_ec_uart-properly-fix-race-condi.patch patches.suse/scsi-sg-Avoid-race-in-error-handling-drop-bogus-warn.patch + patches.suse/scsi-hisi_sas-Handle-the-NCQ-error-returned-by-D2H-frame.patch patches.suse/scsi-hisi_sas-Modify-the-deadline-for-ata_wait_after_reset.patch patches.suse/scsi-qla2xxx-Fix-off-by-one-in-qla_edif_app_getstats.patch + patches.suse/u64_stats-fix-u64_stats_init-for-lockdep-when-used-repeatedly-in-one-file.patch patches.suse/xsk-validate-user-input-for-XDP_-UMEM-COMPLETION-_FI.patch patches.suse/virtio_net-Do-not-send-RSS-key-if-it-is-not-supporte.patch patches.suse/octeontx2-pf-Fix-transmit-scheduler-resource-leak.patch @@ -23620,6 +23758,7 @@ patches.suse/drm-panfrost-Fix-the-error-path-in-panfrost_mmu_map_.patch patches.suse/drm-ast-Fix-soft-lockup.patch patches.suse/Revert-drm-qxl-simplify-qxl_fence_wait.patch + patches.suse/nouveau-gsp-Avoid-addressing-beyond-end-of-rpc-entri.patch patches.suse/nouveau-fix-function-cast-warning.patch patches.suse/accel-ivpu-Fix-deadlock-in-context_xa.patch patches.suse/gpu-host1x-Do-not-setup-DMA-for-virtual-devices.patch @@ -23689,6 +23828,7 @@ patches.suse/gpiolib-swnode-Remove-wrong-header-inclusion.patch patches.suse/netfilter-nf_tables-Fix-potential-data-race-in-__nft-3.patch patches.suse/netfilter-nf_tables-Fix-potential-data-race-in-__nft-2.patch + patches.suse/netfilter-nft_set_pipapo-walk-over-current-view-on-netlink-dump.patch patches.suse/netfilter-flowtable-validate-pppoe-header.patch patches.suse/netfilter-flowtable-incorrect-pppoe-tuple.patch patches.suse/af_unix-Don-t-peek-OOB-data-without-MSG_OOB.patch @@ -23700,10 +23840,15 @@ patches.suse/tun-limit-printing-rate-when-illegal-packet-received.patch patches.suse/s390-ism-Properly-fix-receive-message-buffer-allocation.patch patches.suse/net-sched-Fix-mirred-deadlock-on-device-recursion.patch + patches.suse/ice-tc-check-src_vsi-in-case-of-traffic-from-VF.patch + patches.suse/ice-tc-allow-zero-flags-in-parsing-tc-flower.patch + patches.suse/ice-Fix-checking-for-unsupported-keys-on-non-tunnel-.patch patches.suse/net-usb-qmi_wwan-support-Rolling-modules.patch + patches.suse/netfilter-nf_tables-missing-iterator-type-in-lookup-walk.patch patches.suse/netfilter-nf_tables-restore-set-elements-when-delete.patch patches.suse/netfilter-nf_tables-fix-memleak-in-map-from-abort-pa.patch patches.suse/net-usb-ax88179_178a-avoid-writing-the-mac-address-b.patch + patches.suse/scsi-core-Fix-handling-of-SCMD_FAIL_IF_RECOVERING.patch patches.suse/0001-mm-page_owner-Update-metadata-for-tail-pages.patch patches.suse/0001-mm-page_owner-Fix-refcount-imbalance.patch patches.suse/0001-mm-page_owner-Fix-accounting-of-pages-when-migrating.patch @@ -23744,6 +23889,9 @@ patches.suse/arm64-hibernate-Fix-level3-translation-fault-in-swsu.patch patches.suse/fs-9p-only-translate-RWX-permissions-for-plain-9P200.patch patches.suse/fs-9p-translate-O_TRUNC-into-OTRUNC.patch + patches.suse/fs-9p-fix-the-cache-always-being-enabled-on-files-with-qid-flags.patch + patches.suse/9p-explicitly-deny-setlease-attempts.patch + patches.suse/fs-9p-drop-inodes-immediately-on-non-.L-too.patch patches.suse/RDMA-rxe-Fix-the-problem-mutex_destroy-missing.patch patches.suse/RDMA-cm-Print-the-old-state-when-cm_destroy_id-gets-.patch patches.suse/RDMA-mlx5-Fix-port-number-for-counter-query-in-multi.patch @@ -23801,6 +23949,9 @@ patches.suse/HID-mcp-2221-cancel-delayed_work-only-when-CONFIG_II.patch patches.suse/net-usb-qmi_wwan-add-Telit-FN920C04-compositions.patch patches.suse/icmp-prevent-possible-NULL-dereferences-from-icmp_bu.patch + patches.suse/bnxt_en-refactor-reset-close-code.patch + patches.suse/bnxt_en-Fix-the-PCI-AER-routines.patch + patches.suse/bnxt_en-Fix-error-recovery-for-5760X-P7-chips.patch patches.suse/NFC-trf7970a-disable-all-regulators-on-removal.patch patches.suse/ax25-Fix-netdev-refcount-issue.patch patches.suse/net-fix-sk_memory_allocated_-add-sub-vs-softirqs.patch @@ -23814,6 +23965,7 @@ patches.suse/mlxsw-spectrum_acl_tcam-Fix-warning-during-rehash.patch patches.suse/mlxsw-spectrum_acl_tcam-Fix-incorrect-list-API-usage.patch patches.suse/mlxsw-spectrum_acl_tcam-Fix-memory-leak-when-canceli.patch + patches.suse/eth-bnxt-fix-counting-packets-discarded-due-to-OOM-a.patch patches.suse/Bluetooth-Fix-type-of-len-in-l2cap-sco-_sock_getsock.patch patches.suse/Bluetooth-btusb-Add-Realtek-RTL8852BE-support-ID-0x0.patch patches.suse/Bluetooth-btusb-Fix-triggering-coredump-implementati.patch @@ -23837,6 +23989,8 @@ patches.suse/wifi-mac80211-fix-unaligned-le16-access.patch patches.suse/wifi-iwlwifi-mvm-fix-link-ID-management.patch patches.suse/i40e-Do-not-use-WQ_MEM_RECLAIM-flag-for-workqueue.patch + patches.suse/i40e-Report-MFS-in-decimal-base-instead-of-hex.patch + patches.suse/iavf-Fix-TC-config-comparison-with-existing-adapter-.patch patches.suse/ice-fix-LAG-and-VF-lock-dependency-in-ice_reset_vf.patch patches.suse/octeontx2-af-fix-the-double-free-in-rvu_npc_freemem.patch patches.suse/dpll-fix-dpll_pin_on_pin_register-for-multiple-paren.patch @@ -23861,6 +24015,7 @@ patches.suse/gpio-tangier-Use-correct-type-for-the-IRQ-chip-data.patch patches.suse/mtd-diskonchip-work-around-ubsan-link-failure.patch patches.suse/mmc-sdhci-msm-pervent-access-to-suspended-controller.patch + patches.suse/0001-mm-hugetlb-fix-missing-hugetlb_lock-for-resv-uncharg.patch patches.suse/arm64-dts-rockchip-set-PHY-address-of-MT7531-switch-to-0x1f.patch patches.suse/arm64-dts-rockchip-enable-internal-pull-up-for-Q7_THRM-on-RK3399-Puma.patch patches.suse/arm64-dts-rockchip-fix-alphabetical-ordering-RK3399-puma.patch @@ -23888,6 +24043,7 @@ patches.suse/smb3-fix-lock-ordering-potential-deadlock-in-cifs_sync_mid_result.patch patches.suse/selftests-sud_test-return-correct-emulated-syscall-v.patch patches.suse/irqchip-gic-v3-its-Prevent-double-free-on-error.patch + patches.suse/x86-sev-Check-for-MWAITX-and-MONITORX-opcodes-in-the-VC-ha.patch patches.suse/x86-CPU-AMD-Add-models-0x10-0x1f-to-the-Zen5-range.patch patches.suse/x86-tdx-Preserve-shared-bit-on-mprotect.patch patches.suse/SUNRPC-add-a-missing-rpc_stat-for-TCP-TLS.patch @@ -23916,11 +24072,18 @@ patches.suse/bpf-skmsg-Fix-NULL-pointer-dereference-in-sk_psock_s.patch patches.suse/bpf-arm64-Fix-incorrect-runtime-stats.patch patches.suse/xdp-use-flags-field-to-disambiguate-broadcast-redire.patch + patches.suse/net-qede-sanitize-rc-in-qede_add_tc_flower_fltr.patch + patches.suse/net-qede-use-return-from-qede_parse_flow_attr-for-fl.patch + patches.suse/net-qede-use-return-from-qede_parse_flow_attr-for-fl-27b44414.patch + patches.suse/net-qede-use-return-from-qede_parse_actions.patch patches.suse/cxgb4-Properly-lock-TX-queue-for-the-selftest.patch patches.suse/e1000e-change-usleep_range-to-udelay-in-PHY-mdic-acc.patch patches.suse/mptcp-ensure-snd_nxt-is-properly-initialized-on-conn.patch patches.suse/0001-net-core-reject-skb_copy-_expand-for-fraglist-GSO-sk.patch + patches.suse/tipc-fix-UAF-in-error-path.patch + patches.suse/tipc-fix-a-possible-memleak-in-tipc_buf_append.patch patches.suse/s390-qeth-Fix-kernel-panic-after-setting-hsuid.patch + patches.suse/ipv4-Fix-uninit-value-access-in-__ip_make_skb.patch patches.suse/firewire-nosy-ensure-user_length-is-taken-into-accou.patch patches.suse/s390-mm-Fix-storage-key-clearing-for-guest-huge-pages.patch patches.suse/s390-mm-Fix-clearing-storage-keys-for-huge-pages.patch @@ -24014,6 +24177,7 @@ patches.suse/btrfs-make-sure-that-WRITTEN-is-set-on-all-metadata-.patch patches.suse/qibfs-fix-dentry-leak.patch patches.suse/ARM-9381-1-kasan-clear-stale-stack-poison.patch + patches.suse/tcp-defer-shutdown-SEND_SHUTDOWN-for-TCP_SYN_RECV-sockets.patch patches.suse/tcp-Use-refcount_inc_not_zero-in-tcp_twsk_unique.patch patches.suse/net-ks8851-Queue-RX-packets-in-IRQ-handler-instead-o.patch patches.suse/Bluetooth-Fix-use-after-free-bugs-caused-by-sco_sock.patch @@ -24026,6 +24190,7 @@ patches.suse/Bluetooth-l2cap-fix-null-ptr-deref-in-l2cap_chan_tim.patch patches.suse/Bluetooth-qca-fix-firmware-check-error-path.patch patches.suse/rtnetlink-Correct-nested-IFLA_VF_VLAN_LIST-attribute.patch + patches.suse/net-fix-out-of-bounds-access-in-ops_init.patch patches.suse/phonet-fix-rtm_phonet_notify-skb-allocation.patch patches.suse/nfc-nci-Fix-kcov-check-in-nci_rx_work.patch patches.suse/ipv6-Fix-potential-uninit-value-access-in-__ip6_make.patch @@ -24074,6 +24239,8 @@ patches.suse/arm64-dts-allwinner-h616-Fix-I2C0-pins.patch patches.suse/arm64-tegra-Correct-Tegra132-I2C-alias.patch patches.suse/arm64-dts-imx8mp-add-HDMI-power-domains.patch + patches.suse/arm64-dts-imx93-add-nvmem-property-for-fec1.patch + patches.suse/arm64-dts-imx93-add-nvmem-property-for-eqos.patch patches.suse/arm64-dts-hi3798cv200-fix-the-size-of-GICR.patch patches.suse/arm64-dts-microchip-sparx5-fix-mdio-reg.patch patches.suse/firmware-raspberrypi-Use-correct-device-for-DMA-mapp.patch @@ -24083,6 +24250,9 @@ patches.suse/soc-mediatek-cmdq-Fix-typo-of-CMDQ_JUMP_RELATIVE.patch patches.suse/soc-ti-wkup_m3_ipc-Send-NULL-dummy-message-instead-o.patch patches.suse/soc-qcom-pmic_glink-Make-client-lock-non-sleeping.patch + patches.suse/rcu-Fix-buffer-overflow-in-print_cpu_stall_info.patch + patches.suse/rcu-tasks-Fix-show_rcu_tasks_trace_gp_kthread-buffer-overflow.patch + patches.suse/keys-Fix-overwrite-of-key-expiration-on-instantiation.patch patches.suse/admin-guide-hw-vuln-core-scheduling-fix-return-type-.patch patches.suse/kernel-doc-fix-struct_group_tagged-parsing.patch patches.suse/docs-kernel_include.py-Cope-with-docutils-0.21.patch @@ -24105,6 +24275,7 @@ patches.suse/block-ioctl-prefer-different-overflow-check.patch patches.suse/bcache-fix-variable-length-array-abuse-in-btree_iter.patch patches.suse/string.h-Introduce-memtostr-and-memtostr_pad.patch + patches.suse/scsi-mpi3mr-Avoid-possible-run-time-warning-with-long-manufacturer-strings.patch patches.suse/scsi-qla2xxx-Avoid-possible-run-time-warning-with-lo.patch patches.suse/kunit-fortify-Fix-mismatched-kvalloc-vfree-usage.patch patches.suse/crypto-ecrdsa-Fix-module-auto-load-on-add_key.patch @@ -24143,6 +24314,7 @@ patches.suse/x86-tsc-Trust-initial-offset-in-architectural-TSC-ad.patch patches.suse/irqchip-alpine-msi-Fix-off-by-one-in-allocation-erro.patch patches.suse/irqchip-loongson-pch-msi-Fix-off-by-one-on-allocatio.patch + patches.suse/irqchip-gic-v3-its-Avoid-explicit-cpumask-allocation.patch patches.suse/KVM-VMX-Move-posted-interrupt-descriptor-out-of-VMX-.patch patches.suse/arm64-Add-Neoverse-V2-part.patch patches.suse/arm64-Add-the-arm64.no32bit_el0-command-line-option.patch @@ -24191,6 +24363,8 @@ patches.suse/ata-pata_legacy-make-legacy_exit-work-again.patch patches.suse/scsi-qla2xxx-Drop-driver-owner-assignment.patch patches.suse/scsi-qla2xxx-Indent-help-text.patch + patches.suse/scsi-libsas-Fix-the-failure-of-adding-phy-with-zero-address-to-port.patch + patches.suse/scsi-hpsa-Fix-allocation-size-for-Scsi_Host-private-data.patch patches.suse/scsi-qedf-Make-qedf_execute_tmf-non-preemptible.patch patches.suse/scsi-qedi-Fix-crash-while-reading-debugfs-attribute.patch patches.suse/scsi-bfa-Ensure-the-copied-buf-is-NUL-terminated.patch @@ -24205,7 +24379,11 @@ patches.suse/scsi-lpfc-Update-lpfc-version-to-14.4.0.2.patch patches.suse/scsi-lpfc-Copyright-updates-for-14.4.0.2-patches.patch patches.suse/scsi-mpi3mr-Sanitise-num_phys.patch + patches.suse/cxgb4-unnecessary-check-for-0-in-the-free_sge_txq_ul.patch patches.suse/net-Remove-conditional-threaded-NAPI-wakeup-based-on-task-state.patch + patches.suse/qed-avoid-truncating-work-queue-length.patch + patches.suse/mlx5-avoid-truncating-error-message.patch + patches.suse/mlx5-stop-warning-for-64KB-pages.patch patches.suse/bitops-add-missing-prototype-check.patch patches.suse/net-dpaa2-Avoid-explicit-cpumask-var-allocation-on-s.patch patches.suse/ssb-Fix-potential-NULL-pointer-dereference-in-ssb_de.patch @@ -24283,13 +24461,16 @@ patches.suse/net-ena-Add-validation-for-completion-descriptors-co.patch patches.suse/bpf-Fix-verifier-assumptions-about-socket-sk.patch patches.suse/bpf-Avoid-uninitialized-value-in-BPF_CORE_READ_BITFI.patch + patches.suse/kbuild-bpf-Switch-to-using-btf_features-for-pahole-v.patch patches.suse/s390-bpf-Emit-a-barrier-for-BPF_FETCH-instructions.patch patches.suse/net-mana-Enable-MANA-driver-on-ARM64-with-4K-page-si.patch patches.suse/net-stmmac-move-the-EST-lock-to-struct-stmmac_priv.patch patches.suse/Bluetooth-ath3k-Fix-multiple-issues-reported-by-chec.patch patches.suse/Bluetooth-qca-Fix-error-code-in-qca_read_fw_build_in.patch + patches.suse/Bluetooth-L2CAP-Fix-div-by-zero-in-l2cap_le_flowctl_init.patch patches.suse/eth-sungem-remove-.ndo_poll_controller-to-avoid-dead.patch patches.suse/selftests-net-move-amt-to-socat-for-better-compatibi.patch + patches.suse/ice-Fix-package-download-algorithm.patch patches.suse/af_unix-Fix-data-races-in-unix_release_sock-unix_stream_sendmsg.patch patches.suse/net-openvswitch-fix-overwriting-ct-original-tuple-fo.patch patches.suse/ipv6-sr-fix-incorrect-unregister-order.patch @@ -24498,12 +24679,15 @@ patches.suse/powerpc-xmon-Check-cpu-id-in-commands-c-dp-and-dx.patch patches.suse/powerpc-kexec-make-the-update_cpus_node-function-pub.patch patches.suse/of-module-add-buffer-overflow-check-in-of_modalias.patch + patches.suse/uprobes-encapsulate-preparation-of-uprobe-args-buffer.patch patches.suse/kprobe-ftrace-bail-out-if-ftrace-was-killed.patch patches.suse/ftrace-Fix-possible-use-after-free-issue-in-ftrace_location.patch patches.suse/net-bridge-xmit-make-sure-we-have-at-least-eth-header-len-bytes.patch patches.suse/selftests-net-bridge-increase-IGMP-MLD-exclude-timeo.patch patches.suse/0001-net-bridge-mst-fix-vlan-use-after-free.patch patches.suse/bonding-fix-oops-during-rmmod.patch + patches.suse/idpf-don-t-skip-over-ethtool-tcp-data-split-setting.patch + patches.suse/netrom-fix-possible-dead-lock-in-nr_rt_ioctl.patch patches.suse/kprobe-ftrace-fix-build-error-due-to-bad-function-definition.patch patches.suse/iommu-arm-smmu-v3-Free-MSIs-in-case-of-ENOMEM.patch patches.suse/iommu-Undo-pasid-attachment-only-for-the-devices-tha.patch @@ -24526,10 +24710,12 @@ patches.suse/RDMA-mlx5-Change-check-for-cacheable-mkeys.patch patches.suse/RDMA-mlx5-Adding-remote-atomic-access-flag-to-updata.patch patches.suse/RDMA-hns-Fix-return-value-in-hns_roce_map_mr_sg.patch + patches.suse/RDMA-hns-Use-macro-instead-of-magic-number.patch patches.suse/RDMA-hns-Add-max_ah-and-cq-moderation-capacities-in-.patch patches.suse/RDMA-hns-Fix-deadlock-on-SRQ-async-events.patch patches.suse/RDMA-hns-Fix-UAF-for-cq-async-event.patch patches.suse/RDMA-hns-Fix-GMV-table-pagesize.patch + patches.suse/RDMA-hns-Add-mutex_destroy.patch patches.suse/RDMA-hns-Use-complete-parentheses-in-macros.patch patches.suse/RDMA-hns-Modify-the-print-level-of-CQE-error.patch patches.suse/IB-core-Implement-a-limit-on-UMAD-receive-List.patch @@ -24548,10 +24734,15 @@ patches.suse/nfsd-optimise-recalculate_deny_mode-for-a-common-cas.patch patches.suse/knfsd-LOOKUP-can-return-an-illegal-error-value.patch patches.suse/SUNRPC-Fix-gss_free_in_token_pages.patch + patches.suse/NFSD-Force-all-NFSv4.2-COPY-requests-to-be-synchrono.patch patches.suse/ext4-do-not-create-EA-inode-under-buffer-lock.patch patches.suse/ext4-fix-mb_cache_entry-s-e_refcnt-leak-in-ext4_xatt.patch patches.suse/ext4-fix-uninitialized-ratelimit_state-lock-access-i.patch patches.suse/lib-test_hmm.c-handle-src_pfns-and-dst_pfns-allocati.patch + patches.suse/mm-always-initialise-folio-_deferred_list.patch + patches.suse/mm-filemap-return-early-if-failed-to-allocate-memory.patch + patches.suse/lib-xarray-introduce-a-new-helper-xas_get_order.patch + patches.suse/mm-filemap-optimize-filemap-folio-adding.patch patches.suse/virt-acrn-stop-using-follow_pfn.patch patches.suse/drivers-virt-acrn-fix-PFNMAP-PTE-checks-in-acrn_vm_ram_map.patch patches.suse/Docs-admin-guide-mm-damon-usage-fix-wrong-example-of.patch @@ -24583,9 +24774,16 @@ patches.suse/firmware-dmi-id-add-a-release-callback-function.patch patches.suse/firmware-dmi-Stop-decoding-on-broken-entry.patch patches.suse/xfs-require-XFS_SB_FEAT_INCOMPAT_LOG_XATTRS-for-attr-log-intent-item-recovery.patch + patches.suse/xfs-check-opcode-and-iovec-count-match-in-xlog_recover_attri_commit_pass2.patch + patches.suse/xfs-check-shortform-attr-entry-flags-specifically.patch + patches.suse/xfs-validate-recovered-name-buffers-when-recovering-xattr-items.patch patches.suse/xfs-match-lock-mode-in-xfs_buffered_write_iomap_begin.patch + patches.suse/xfs-make-the-seq-argument-to-xfs_bmapi_convert_delalloc-optional.patch + patches.suse/xfs-make-xfs_bmapi_convert_delalloc-to-allocate-the-target-offset.patch + patches.suse/xfs-convert-delayed-extents-to-unwritten-when-zeroing-post-eof-blocks.patch patches.suse/xfs-fix-log-recovery-buffer-allocation-for-the-legac.patch patches.suse/xfs-upgrade-the-extent-counters-in-xfs_reflink_end_cow_extent-later.patch + patches.suse/xfs-remove-a-racy-if_bytes-check-in-xfs_reflink_end_cow_extent.patch patches.suse/f2fs-multidev-fix-to-recognize-valid-zero-block-address.patch patches.suse/vfio-pci-fix-potential-memory-leak-in-vfio_intx_enab.patch patches.suse/KEYS-trusted-Fix-memory-leak-in-tpm2_key_encode.patch @@ -24665,6 +24863,8 @@ patches.suse/usb-typec-ucsi-Wait-20ms-before-reading-CCI-after-a-.patch patches.suse/usb-typec-ucsi_glink-drop-special-handling-for-CCI_B.patch patches.suse/usb-gadget-function-Remove-usage-of-the-deprecated-i.patch + patches.suse/usb-gadget-dummy_hcd-Switch-to-hrtimer-transfer-sche.patch + patches.suse/usb-gadget-dummy_hcd-Set-transfer-interval-to-1-micr.patch patches.suse/usb-dwc3-core-Skip-setting-event-buffers-for-host-on.patch patches.suse/usb-xhci-prevent-potential-failure-in-handle_tx_even.patch patches.suse/usb-gadget-u_audio-Fix-race-condition-use-of-control.patch @@ -24730,8 +24930,12 @@ patches.suse/af_unix-Update-unix_sk-sk-oob_skb-under-sk_receive_queue-lock.patch patches.suse/ipv6-sr-fix-memleak-in-seg6_hmac_init_algo.patch patches.suse/msft-hv-3015-net-mana-Fix-the-extra-HZ-in-mana_hwc_send_request.patch + patches.suse/Revert-ixgbe-Manual-AN-37-for-troublesome-link-partn.patch patches.suse/tls-fix-missing-memory-barrier-in-tls_init.patch + patches.suse/net-relax-socket-state-check-at-accept-time.patch patches.suse/nfc-nci-Fix-handling-of-zero-length-payload-packets-.patch + patches.suse/ice-Interpret-.set_channels-input-differently.patch + patches.suse/idpf-Interpret-.set_channels-input-differently.patch patches.suse/r8169-Fix-possible-ring-buffer-corruption-on-fragmen.patch patches.suse/regulator-bd71828-Don-t-overwrite-runtime-voltages.patch patches.suse/nvmet-lock-config-semaphore-when-accessing-DH-HMAC-C.patch @@ -24769,6 +24973,7 @@ patches.suse/Input-pm8xxx-vibrator-correct-VIB_MAX_LEVELS-calcula.patch patches.suse/Input-cyapa-add-missing-input-core-locking-to-suspen.patch patches.suse/Input-ff-core-prefer-struct_size-over-open-coded-ari.patch + patches.suse/Input-xpad-add-support-for-Machenike-G5-Pro-Controll.patch patches.suse/btrfs-zoned-fix-use-after-free-due-to-race-with-dev-.patch patches.suse/xen-x86-add-extra-pages-to-unpopulated-alloc-if-avai.patch patches.suse/drivers-xen-Improve-the-late-XenStore-init-protocol.patch @@ -24784,6 +24989,7 @@ patches.suse/genirq-irqdesc-Prevent-use-after-free-in-irq_find_at.patch patches.suse/mm-vmalloc-fix-vmalloc-which-may-return-null-if-called-with-__GFP_NOFAIL.patch patches.suse/kasan-fortify-properly-rename-memintrinsics.patch + patches.suse/0001-mm-huge_memory-don-t-unpoison-huge_zero_folio.patch patches.suse/selftests-mm-compaction_test-fix-incorrect-write-of-.patch patches.suse/selftests-mm-fix-build-warnings-on-ppc64.patch patches.suse/nilfs2-fix-use-after-free-of-timer-for-log-writer-th.patch @@ -24794,17 +25000,26 @@ patches.suse/net-9p-fix-uninit-value-in-p9_client_rpc.patch patches.suse/9p-add-missing-locking-around-taking-dentry-fid-list.patch patches.suse/net-phy-micrel-set-soft_reset-callback-to-genphy_sof.patch + patches.suse/net-mlx5-Lag-do-bond-only-if-slaves-agree-on-roce-st.patch patches.suse/net-mlx5-Fix-MTMP-register-capability-offset-in-MCAM.patch patches.suse/net-mlx5-Use-mlx5_ipsec_rx_status_destroy-to-correct.patch + patches.suse/net-mlx5e-Fix-IPsec-tunnel-mode-offload-feature-chec.patch + patches.suse/net-mlx5e-Use-rx_missed_errors-instead-of-rx_dropped.patch + patches.suse/net-mlx5e-Fix-UDP-GSO-for-encapsulated-packets.patch patches.suse/enic-Validate-length-of-nl-attributes-in-enic_set_vf.patch patches.suse/net-usb-smsc95xx-fix-changing-LED_SEL-bit-value-upda.patch patches.suse/bpf-Allow-delete-from-sockmap-sockhash-only-if-updat.patch patches.suse/Revert-bpf-sockmap-Prevent-lock-inversion-deadlock-i.patch patches.suse/selftests-bpf-Cover-verifier-checks-for-mutating-soc.patch + patches.suse/idpf-don-t-enable-NAPI-and-interrupts-prior-to-alloc.patch + patches.suse/ice-fix-accounting-if-a-VLAN-already-exists.patch patches.suse/docs-netdev-Fix-typo-in-Signed-off-by-tag.patch patches.suse/sock_map-avoid-race-between-sock_map_close-and-sk_ps.patch + patches.suse/net-sched-taprio-extend-minimum-interval-restriction.patch patches.suse/nfc-nci-Add-the-inconsistency-check-between-the-inpu.patch patches.suse/net-fix-__dst_negative_advice-race.patch + patches.suse/e1000e-move-force-SMBUS-near-the-end-of-enable_ulp-f.patch + patches.suse/ice-fix-200G-PHY-types-to-link-speed-mapping.patch patches.suse/net-ena-Fix-redundant-device-NUMA-node-override.patch patches.suse/netfilter-nfnetlink_queue-acquire-rcu_read_lock-in-i.patch patches.suse/netfilter-tproxy-bail-out-if-IP-has-been-disabled-on.patch @@ -24865,16 +25080,19 @@ patches.suse/cxl-test-Add-missing-vmalloc.h-for-tools-testing-cxl.patch patches.suse/cxl-region-Fix-memregion-leaks-in-devm_cxl_add_regio.patch patches.suse/KVM-SVM-WARN-on-vNMI-NMI-window-iff-NMIs-are-outrigh.patch + patches.suse/KVM-SEV-ES-Prevent-MSR-access-post-VMSA-encryption.patch patches.suse/KVM-SEV-ES-Disallow-SEV-ES-guests-when-X86_FEATURE_L.patch patches.suse/KVM-SEV-ES-Delegate-LBR-virtualization-to-the-proces.patch patches.suse/KVM-arm64-Fix-AArch32-register-narrowing-on-userspac.patch patches.suse/KVM-arm64-Allow-AArch32-PSTATE.M-to-be-restored-as-S.patch patches.suse/KVM-arm64-AArch32-Fix-spurious-trapping-of-condition.patch patches.suse/tpm_tis-Do-not-flush-uninitialized-work.patch + patches.suse/i2c-synquacer-Remove-a-clk-reference-from-struct-syn.patch patches.suse/btrfs-ensure-fast-fsync-waits-for-ordered-extents-af.patch patches.suse/tools-power-cpupower-Fix-Pstate-frequency-reporting-.patch patches.suse/ACPI-EC-Abort-address-space-access-upon-error.patch patches.suse/ACPI-EC-Avoid-returning-AE_OK-on-errors-in-address-s.patch + patches.suse/efi-libstub-zboot.lds-Discard-.discard-sections.patch patches.suse/ax25-Fix-refcount-imbalance-on-inbound-connections.patch patches.suse/net-phy-micrel-fix-KSZ9477-PHY-issues-after-suspend-.patch patches.suse/vmxnet3-disable-rx-data-ring-on-dma-allocation-failu.patch @@ -24911,17 +25129,27 @@ patches.suse/wifi-rtlwifi-Ignore-IEEE80211_CONF_CHANGE_RETRY_LIMI.patch patches.suse/net-phy-Micrel-KSZ8061-fix-errata-solution-not-takin.patch patches.suse/net-sched-sch_multiq-fix-possible-OOB-write-in-multi.patch + patches.suse/net-mlx5-Stop-waiting-for-PCI-if-pci-channel-is-offl.patch patches.suse/net-mlx5-Always-stop-health-timer-during-driver-remo.patch patches.suse/net-mlx5-Fix-tainted-pointer-delete-is-case-of-flow-.patch patches.suse/net-sched-taprio-always-validate-TCA_TAPRIO_ATTR_PRI.patch patches.suse/bpf-Fix-a-potential-use-after-free-in-bpf_link_free.patch patches.suse/bpf-Set-run-context-for-rawtp-test_run-callback.patch + patches.suse/ice-fix-iteration-of-TLVs-in-Preserved-Fields-Area.patch + patches.suse/ice-fix-reads-from-NVM-Shadow-RAM-on-E830-and-E825-C.patch + patches.suse/ice-remove-af_xdp_zc_qps-bitmap.patch + patches.suse/ice-add-flag-to-distinguish-reset-from-.ndo_bpf-in-X.patch + patches.suse/ice-map-XDP-queues-to-vectors-in-ice_vsi_map_rings_t.patch patches.suse/0001-net-wwan-iosm-Fix-tainted-pointer-delete-is-case-of-.patch patches.suse/ipv6-fix-possible-race-in-__fib6_drop_pcpu_from.patch patches.suse/net-ethtool-fix-the-error-condition-in-ethtool_get_p.patch patches.suse/scsi-mpi3mr-Use-proper-format-specifier-in-mpi3mr_sas_port_add.patch + patches.suse/scsi-core-alua-I-O-errors-for-ALUA-state-transitions.patch + patches.suse/scsi-sr-Fix-unintentional-arithmetic-wraparound.patch patches.suse/scsi-qedf-Don-t-process-stag-work-during-unload.patch patches.suse/scsi-qedf-Wait-for-stag-work-during-unload.patch + patches.suse/scsi-qedf-Set-qed_slowpath_params-to-zero-before-use.patch + patches.suse/scsi-core-Handle-devices-which-return-an-unusually-large-VPD-page-count.patch patches.suse/drm-amd-Fix-shutdown-again-on-some-SMU-v13.0.4-11-pl.patch patches.suse/drm-panel-sitronix-st7789v-Add-check-for-of_drm_get_.patch patches.suse/drm-vmwgfx-Filter-modes-which-exceed-graphics-memory.patch @@ -24940,6 +25168,7 @@ patches.suse/io_uring-check-for-non-NULL-file-pointer-in-io_file_.patch patches.suse/io_uring-io-wq-avoid-garbage-value-of-match-in-io_wq.patch patches.suse/io_uring-fix-possible-deadlock-in-io_register_iowq_m.patch + patches.suse/nvme-fabrics-use-reserved-tag-for-reg-read-write-com.patch patches.suse/nvme-fix-nvme_pr_-status-code-parsing.patch patches.suse/gpio-tqmx86-fix-typo-in-Kconfig-label.patch patches.suse/gpio-tqmx86-introduce-shadow-register-for-GPIO-outpu.patch @@ -24982,20 +25211,25 @@ patches.suse/NFS-add-barriers-when-testing-for-NFS_FSDATA_BLOCKED.patch patches.suse/net-hns3-fix-kernel-crash-problem-in-concurrent-scen.patch patches.suse/liquidio-Adjust-a-NULL-pointer-handling-path-in-lio_.patch + patches.suse/net-mlx5e-Fix-features-validation-check-for-tunneled.patch patches.suse/net-sched-initialize-noop_qdisc-owner.patch patches.suse/mptcp-ensure-snd_una-is-properly-initialized-on-conn.patch patches.suse/0001-tcp-use-signed-arithmetic-in-tcp_rtx_probe0_timed_ou.patch patches.suse/Bluetooth-L2CAP-Fix-rejecting-L2CAP_CONN_PARAM_UPDAT.patch + patches.suse/gve-ignore-nonrelevant-GSO-type-bits-when-processing.patch patches.suse/netfilter-nft_inner-validate-mandatory-meta-and-payload patches.suse/0001-net-bridge-mst-pass-vlan-group-directly-to-br_mst_vl.patch patches.suse/0001-net-bridge-mst-fix-suspicious-rcu-usage-in-br_mst_se.patch patches.suse/ionic-fix-use-after-netif_napi_del.patch patches.suse/gve-Clear-napi-skb-before-dev_kfree_skb_any.patch + patches.suse/bnxt_en-Cap-the-size-of-HWRM_PORT_PHY_QCFG-forwarded.patch patches.suse/bnxt_en-Adjust-logging-of-firmware-messages-in-case-.patch patches.suse/ACPI-EC-Evaluate-orphan-_REG-under-EC-device.patch patches.suse/ACPI-x86-Force-StorageD3Enable-on-more-products.patch patches.suse/iommu-amd-Fix-panic-accessing-amd_iommu_enable_fault.patch patches.suse/scsi-mpt3sas-Avoid-test-set_bit-operating-in-non-allocated-memory.patch + patches.suse/scsi-core-Disable-CDL-by-default.patch + patches.suse/scsi-mpi3mr-Fix-ATA-NCQ-priority-support.patch patches.suse/io_uring-rsrc-don-t-lock-while-TASK_RUNNING.patch patches.suse/block-fix-request.queuelist-usage-in-flush.patch patches.suse/nvme-avoid-double-free-special-payload.patch @@ -25011,6 +25245,7 @@ patches.suse/drm-exynos-dp-drop-driver-owner-initialization.patch patches.suse/drm-exynos-vidi-fix-memory-leak-in-.get_modes.patch patches.suse/x86-uaccess-Fix-missed-zeroing-of-ia32-u64-get_user-range-.patch + patches.suse/xfs-make-sure-sb_fdblocks-is-non-negative.patch patches.suse/RAS-AMD-ATL-Fix-MI300-bank-hash.patch patches.suse/RAS-AMD-ATL-Use-system-settings-for-MI300-DRAM-to-no.patch patches.suse/mei-demote-client-disconnect-warning-on-suspend-to-d.patch @@ -25065,6 +25300,9 @@ patches.suse/wifi-mac80211-Recalc-offload-when-monitor-stop.patch patches.suse/wifi-mac80211-Avoid-address-calculations-via-out-of-.patch patches.suse/wifi-mac80211-fix-monitor-channel-with-chanctx-emula.patch + patches.suse/ice-avoid-IRQ-collision-to-fix-init-failure-on-ACPI-.patch + patches.suse/ice-fix-200G-link-speed-message-log.patch + patches.suse/ice-implement-AQ-download-pkg-retry.patch patches.suse/netrom-Fix-a-memory-leak-in-nr_heartbeat_expiry.patch patches.suse/ipv6-prevent-possible-NULL-deref-in-fib6_nh_init.patch patches.suse/ipv6-prevent-possible-NULL-dereference-in-rt6_probe.patch @@ -25079,8 +25317,10 @@ patches.suse/net-usb-ax88179_178a-improve-reset-check.patch patches.suse/virtio_net-checksum-offloading-handling-fix patches.suse/virtio_net-fixing-XDP-for-fully-checksummed-packets-.patch + patches.suse/ice-Fix-VSI-list-rule-with-ICE_SW_LKUP_LAST-type.patch patches.suse/net-do-not-leave-a-dangling-sk-pointer-when-socket-c.patch patches.suse/seg6-fix-parameter-passing-when-calling-NF_HOOK-in-E.patch + patches.suse/bnxt_en-Restore-PTP-tx_avail-count-in-case-of-skb_pa.patch patches.suse/net-usb-rtl8150-fix-unintiatilzed-variables-in-rtl81.patch patches.suse/btrfs-zoned-allocate-dummy-checksums-for-zoned-NODAT.patch patches.suse/dmaengine-idxd-Fix-possible-Use-After-Free-in-irq_pr.patch @@ -25110,6 +25350,7 @@ patches.suse/KVM-x86-Always-sync-PIR-to-IRR-prior-to-scanning-I-O.patch patches.suse/virt-guest_memfd-fix-reference-leak-on-hwpoisoned-pa.patch patches.suse/KVM-arm64-Disassociate-vcpus-from-redistributor-regi.patch + patches.suse/KVM-SEV-ES-Fix-svm_get_msr-svm_set_msr-for-KVM_SEV_E.patch patches.suse/KVM-Fix-a-data-race-on-last_boosted_vcpu-in-kvm_vcpu.patch patches.suse/KVM-Stop-processing-all-memslots-when-null-mmu_notif.patch patches.suse/arm64-dts-imx93-11x11-evk-Remove-the-no-sdio-property.patch @@ -25170,6 +25411,7 @@ patches.suse/can-mcp251xfd-fix-infinite-loop-when-xmit-fails.patch patches.suse/batman-adv-Don-t-accept-TT-entries-for-out-of-spec-V.patch patches.suse/net-phy-micrel-add-Microchip-KSZ-9477-to-the-device-.patch + patches.suse/ice-Rebuild-TC-queues-on-VSI-queue-reconfiguration.patch patches.suse/net-usb-ax88179_178a-improve-link-status-logs.patch patches.suse/bpf-Fix-overrunning-reservations-in-ringbuf.patch patches.suse/selftests-bpf-Add-more-ring-buffer-test-coverage.patch @@ -25211,6 +25453,7 @@ patches.suse/platform-x86-lg-laptop-Use-ACPI-device-handle-when-e.patch patches.suse/i2c-testunit-don-t-erase-registers-after-STOP.patch patches.suse/i2c-testunit-discard-write-requests-while-old-comman.patch + patches.suse/xfs-fix-freeing-speculative-preallocations-for-preallocated-files.patch patches.suse/xfs-restrict-when-we-try-to-align-cow-fork-delalloc-to-cowextsz-hints.patch patches.suse/xfs-allow-unlinked-symlinks-and-dirs-with-zero-size.patch patches.suse/xfs-honor-init_xattrs-in-xfs_init_new_inode-for-ATTR.patch @@ -25255,6 +25498,7 @@ patches.suse/arm64-dts-rockchip-fix-PMIC-interrupt-pin-on-ROCK-Pi-E.patch patches.suse/arm64-dts-rockchip-Add-sound-dai-cells-for-RK3368.patch patches.suse/cxl-region-Avoid-null-pointer-dereference-in-region-.patch + patches.suse/scsi-libsas-Fix-exp-attached-device-scan-after-probe-failure-scanned-in-again-after-probe-failed.patch patches.suse/erofs-ensure-m_llen-is-reset-to-0-if-metadata-is-invalid.patch patches.suse/filelock-Remove-locks-reliably-when-fcntl-close-race.patch patches.suse/mm-Avoid-overflows-in-dirty-throttling-logic.patch @@ -25266,6 +25510,7 @@ patches.suse/wifi-mac80211-disable-softirqs-for-queued-frame-hand.patch patches.suse/net-phy-phy_device-Fix-PHY-LED-blinking-code-comment.patch patches.suse/net-mlx5-E-switch-Create-ingress-ACL-when-needed.patch + patches.suse/net-mlx5e-Add-mqprio_rl-cleanup-and-free-in-mlx5e_pr.patch patches.suse/mac802154-fix-time-calculation-in-ieee802154_configu.patch patches.suse/net-mac802154-Fix-racy-device-stats-updates-by-DEV_S.patch patches.suse/bnx2x-Fix-multiple-UBSAN-array-index-out-of-bounds.patch @@ -25281,11 +25526,14 @@ patches.suse/bluetooth-hci-disallow-setting-handle-bigger-than-HC.patch patches.suse/Bluetooth-L2CAP-Fix-deadlock.patch patches.suse/can-kvaser_usb-Explicitly-initialize-family-in-leafi.patch + patches.suse/e1000e-Fix-S0ix-residency-on-corporate-systems.patch patches.suse/net-txgbe-initialize-num_q_vectors-for-MSI-INTx-inte.patch patches.suse/net-ntb_netdev-Move-ntb_netdev_rx_handler-to-call-ne.patch patches.suse/bonding-Fix-out-of-bounds-read-in-bond_option_arp_ip.patch patches.suse/ice-Fix-improper-extts-handling.patch patches.suse/ice-Don-t-process-extts-if-PTP-is-disabled.patch + patches.suse/ice-Reject-pin-requests-with-unsupported-flags.patch + patches.suse/ice-use-proper-macro-for-testing-bit.patch patches.suse/selftests-fix-OOM-in-msg_zerocopy-selftest.patch patches.suse/selftests-make-order-checking-verbose-in-msg_zerocop.patch patches.suse/inet_diag-Initialize-pad-field-in-struct-inet_diag_r.patch @@ -25308,6 +25556,7 @@ patches.suse/drm-radeon-check-bo_va-bo-is-non-NULL-before-using-i.patch patches.suse/drm-amdgpu-atomfirmware-silence-UBSAN-warning.patch patches.suse/i2c-pnx-Fix-potential-deadlock-warning-from-del_time.patch + patches.suse/powerpc-64s-Fix-unnecessary-copy-to-0-when-kernel-is.patch patches.suse/powerpc-pseries-Whitelist-dtl-slub-object-for-copyin.patch patches.suse/powerpc-eeh-avoid-possible-crash-when-edev-pdev-chan.patch patches.suse/powerpc-pseries-Fix-scv-instruction-crash-with-kexec.patch @@ -25318,6 +25567,7 @@ patches.suse/platform-x86-toshiba_acpi-Fix-array-out-of-bounds-ac.patch patches.suse/mm-vmalloc-check-if-a-hash-index-is-in-cpu_possible_.patch patches.suse/mm-filemap-make-MAX_PAGECACHE_ORDER-acceptable-to-xa.patch + patches.suse/mm-filemap-skip-to-create-PMD-sized-page-cache-if-ne.patch patches.suse/mm-shmem-disable-PMD-sized-page-cache-if-needed.patch patches.suse/netfs-fscache-export-fscache_put_volume-and-add-fscac.patch patches.suse/cachefiles-fix-slab-use-after-free-in-fscache_withdra.patch @@ -25336,7 +25586,9 @@ patches.suse/bpf-Fix-too-early-release-of-tcx_entry.patch patches.suse/selftests-bpf-Extend-tcx-tests-to-cover-late-tcx_ent.patch patches.suse/skmsg-Skip-zero-length-skb-in-sk_msg_recvmsg.patch + patches.suse/i40e-Fix-XDP-program-unloading-while-removing-the-dr.patch patches.suse/0001-tcp-avoid-too-many-retransmit-packets.patch + patches.suse/e1000e-fix-force-smbus-during-suspend-flow.patch patches.suse/ppp-reject-claimed-as-LCP-but-actually-malformed-pac.patch patches.suse/udp-Set-SOCK_RCU_FREE-earlier-in-udp_lib_get_port.patch patches.suse/net-sched-Fix-UAF-when-resolving-a-clash.patch @@ -25386,6 +25638,10 @@ patches.suse/i2c-rcar-bring-hardware-to-known-state-when-probing.patch patches.suse/x86-bhi-Avoid-warning-in-DB-handler-due-to-BHI-mitigation patches.suse/Revert-sched-fair-Make-sure-to-try-to-detach-at-least-one-.patch + patches.suse/sched-deadline-Fix-task_struct-reference-leak.patch + patches.suse/vfs-dcache-move-hashlen_hash-from-callers-into-d_hash.patch + patches.suse/runtime-constants-add-default-dummy-infrastructure.patch + patches.suse/runtime-constants-add-x86-architecture-support.patch patches.suse/drm-meson-fix-canvas-release-in-bind-function.patch patches.suse/drm-gma500-fix-null-pointer-dereference-in-psb_intel.patch patches.suse/drm-gma500-fix-null-pointer-dereference-in-cdv_intel.patch @@ -25393,6 +25649,7 @@ patches.suse/hfs-fix-to-initialize-fields-of-hfs_inode_info-after-hfs_alloc_inode.patch patches.suse/fuse-verify-g-u-id-mount-options-correctly.patch patches.suse/io_uring-Drop-per-ctx-dummy_ubuf.patch + patches.suse/io_uring-eventfd-move-to-more-idiomatic-RCU-free-usa.patch patches.suse/io_uring-advise-support-64-bit-lengths.patch patches.suse/io_uring-Fix-probe-of-disabled-operations.patch patches.suse/md-do-not-delete-safemode_timer-in-mddev_suspend-a876.patch @@ -25425,6 +25682,7 @@ patches.suse/arm64-acpi-Harden-get_cpu_for_acpi_id-against-missing-CPU-entry.patch patches.suse/platform-chrome-cros_ec_lpc-MEC-access-can-use-an-AM.patch patches.suse/platform-chrome-cros_ec_debugfs-fix-wrong-EC-message.patch + patches.suse/hwmon-max16065-Remove-use-of-i2c_match_id.patch patches.suse/hwmon-adt7475-Fix-default-duty-on-fan-is-disabled.patch patches.suse/hwmon-adc128d818-Fix-underflows-seen-when-writing-li.patch patches.suse/hwmon-lm95234-Fix-underflows-seen-when-writing-limit.patch @@ -25438,6 +25696,11 @@ patches.suse/spi-atmel-quadspi-Add-missing-check-for-clk_prepare.patch patches.suse/spi-spi-microchip-core-Fix-the-number-of-chip-select.patch patches.suse/regmap-spi-Fix-potential-off-by-one-when-calculating.patch + patches.suse/RAS-AMD-ATL-Add-amd_atl-pr_fmt-prefix.patch + patches.suse/RAS-AMD-ATL-Read-DRAM-hole-base-early.patch + patches.suse/RAS-AMD-ATL-Expand-helpers-for-adding-and-removing-base-an.patch + patches.suse/RAS-AMD-ATL-Validate-address-map-when-information-is-gathe.patch + patches.suse/RAS-AMD-ATL-Implement-DF-4.5-NP2-denormalization.patch patches.suse/x86-kconfig-Add-as-instr64-macro-to-properly-evaluate-AS_WRUSS patches.suse/hwmon-k10temp-Check-return-value-of-amd_smn_read.patch patches.suse/soc-qcom-pmic_glink-Handle-the-return-value-of-pmic_.patch @@ -25464,6 +25727,7 @@ patches.suse/arm64-dts-rockchip-Add-missing-power-domains-for-rk356x-vop_mmu.patch patches.suse/vmlinux.lds.h-catch-.bss.L-sections-into-BSS.patch patches.suse/x86-xen-Convert-comma-to-semicolon.patch + patches.suse/ELF-fix-kernel.randomize_va_space-double-read.patch patches.suse/sysctl-always-initialize-i_uid-i_gid.patch patches.suse/thermal-drivers-broadcom-Fix-race-between-removal-an.patch patches.suse/cpufreq-amd-pstate-Fix-the-scaling_max_freq-setting-.patch @@ -25498,6 +25762,11 @@ patches.suse/perf-x86-intel-uncore-Fix-the-bits-of-the-CHA-extended-umask-for-SPR.patch patches.suse/perf-x86-intel-ds-Fix-non-0-retire-latency-on-Raptorlake.patch patches.suse/perf-x86-intel-Add-a-distinct-name-for-Granite-Rapids.patch + patches.suse/kbuild-bpf-Use-test-ge-check-for-v1.25-only-pahole.patch + patches.suse/vmxnet3-prepare-for-version-9-changes.patch + patches.suse/vmxnet3-add-latency-measurement-support-in-vmxnet3.patch + patches.suse/vmxnet3-add-command-to-allow-disabling-of-offloads.patch + patches.suse/vmxnet3-update-to-version-9.patch patches.suse/net-mlx5e-SHAMPO-Fix-incorrect-page-release.patch patches.suse/net-mlx5e-SHAMPO-Fix-invalid-WQ-linked-list-unlink.patch patches.suse/lib-objagg-Fix-spelling.patch @@ -25540,6 +25809,7 @@ patches.suse/wifi-mac80211-correcty-limit-wider-BW-TDLS-STAs.patch patches.suse/wifi-iwlwifi-fix-iwl_mvm_get_valid_rx_ant.patch patches.suse/wifi-iwlwifi-mvm-don-t-limit-VLP-AFC-to-UATS-enabled.patch + patches.suse/wifi-iwlwifi-remove-AX101-AX201-and-AX203-support-fr.patch patches.suse/wifi-iwlwifi-mvm-use-IWL_FW_CHECK-for-link-ID-check.patch patches.suse/wifi-mac80211-fix-NULL-dereference-at-band-check-in-.patch patches.suse/wifi-brcmsmac-advertise-MFP_CAPABLE-to-enable-WPA3.patch @@ -25551,6 +25821,12 @@ patches.suse/can-mcp251xfd-rx-add-workaround-for-erratum-DS800007.patch patches.suse/can-mcp251xfd-tef-prepare-to-workaround-broken-TEF-F.patch patches.suse/can-mcp251xfd-tef-update-workaround-for-erratum-DS80.patch + patches.suse/kbuild-bpf-Tell-pahole-to-DECL_TAG-kfuncs.patch + patches.suse/bpf-verifier-Correct-tail_call_reachable-for-bpf-pro.patch + patches.suse/bpf-x64-Remove-tail-call-detection.patch + patches.suse/kbuild-bpf-Add-module-specific-pahole-flags-for-dist.patch + patches.suse/bpf-Fix-tailcall-cases-in-test_bpf.patch + patches.suse/ethtool-fail-closed-if-we-can-t-get-max-channel-used.patch patches.suse/wifi-nl80211-don-t-give-key-data-to-userspace.patch patches.suse/wifi-ath11k-fix-RCU-documentation-in-ath11k_mac_op_i.patch patches.suse/wifi-ath11k-fix-wrong-handling-of-CCMP256-and-GCMP-c.patch @@ -25567,9 +25843,11 @@ patches.suse/wifi-rtw88-usb-schedule-rx-work-after-everything-is-.patch patches.suse/wifi-rtw89-Fix-array-index-mistake-in-rtw89_sta_info.patch patches.suse/bna-adjust-name-buf-size-of-bna_tcb-and-bna_ccb-stru.patch + patches.suse/bpf-Remove-tst_run-from-lwt_seg6local_prog_ops.patch patches.suse/bpf-arm64-Fix-trampoline-for-BPF_TRAMP_F_CALL_ORIG.patch patches.suse/bpf-Fix-null-pointer-dereference-in-resolve_prog_typ.patch patches.suse/selftests-bpf-Test-for-null-pointer-deref-bugfix-in-.patch + patches.suse/idpf-avoid-bloating-idpf_q_vector-with-big-NR_CPUS.patch patches.suse/virtio_net-Fix-napi_skb_cache_put-warning.patch patches.suse/Bluetooth-hci_bcm4377-Use-correct-unit-for-timeouts.patch patches.suse/Bluetooth-btnxpuart-Fix-Null-pointer-dereference-in-.patch @@ -25580,6 +25858,8 @@ patches.suse/Bluetooth-btusb-Add-RTL8852BE-device-0489-e125-to-de.patch patches.suse/Bluetooth-btusb-Add-Realtek-RTL8852BE-support-ID-0x1.patch patches.suse/Bluetooth-Fix-usage-of-__hci_cmd_sync_status.patch + patches.suse/xfrm-Fix-unregister-netdevice-hang-on-hardware-offlo.patch + patches.suse/xfrm-Export-symbol-xfrm_dev_state_delete.patch patches.suse/xdp-fix-invalid-wait-context-of-page_pool_destroy.patch patches.suse/NFSD-Support-write-delegations-in-LAYOUTGET.patch patches.suse/gss_krb5-Fix-the-error-handling-path-for-crypto_sync.patch @@ -25588,6 +25868,8 @@ patches.suse/btrfs-pass-a-btrfs_inode-to-btrfs_fdatawrite_range.patch patches.suse/btrfs-pass-a-btrfs_inode-to-btrfs_wait_ordered_range.patch patches.suse/btrfs-use-a-btrfs_inode-local-variable-at-btrfs_sync.patch + patches.suse/btrfs-don-t-BUG_ON-on-ENOMEM-from-btrfs_lookup_exten.patch + patches.suse/btrfs-clean-up-our-handling-of-refs-0-in-snapshot-de.patch patches.suse/btrfs-handle-errors-from-btrfs_dec_ref-properly.patch patches.suse/btrfs-remove-NULL-transaction-support-for-btrfs_look.patch patches.suse/btrfs-simplify-setting-the-full-backref-flag-at-upda.patch @@ -25600,8 +25882,10 @@ patches.suse/xfs-add-bounds-checking-to-xlog_recover_process_data.patch patches.suse/xfs-don-t-walk-off-the-end-of-a-directory-data-block.patch patches.suse/xfs-use-consistent-uid-gid-when-grabbing-dquots-for-inodes.patch + patches.suse/fsnotify-clear-PARENT_WATCHED-flags-lazily.patch patches.suse/udf-Fix-bogus-checksum-computation-in-udf_rename.patch patches.suse/udf-Avoid-using-corrupted-block-bitmap-buffer.patch + patches.suse/udf-Avoid-excessive-partition-lengths.patch patches.suse/ata-libata-scsi-Fix-offsets-for-the-fixed-format-sen.patch patches.suse/ata-libata-scsi-Do-not-overwrite-valid-sense-data-wh.patch patches.suse/ipmi-ssif_bmc-prevent-integer-overflow-on-32bit-syst.patch @@ -25666,11 +25950,13 @@ patches.suse/drm-amd-display-Ensure-array-index-tg_inst-won-t-be-.patch patches.suse/drm-amd-display-Check-gpio_id-before-used-as-array-i.patch patches.suse/drm-amd-display-Stop-amdgpu_dm-initialize-when-strea.patch + patches.suse/drm-amd-display-Stop-amdgpu_dm-initialize-when-link-.patch patches.suse/0001-drm-amd-display-Fix-incorrect-size-calculation-for-l.patch patches.suse/drm-amd-display-Check-index-for-aux_rd_interval-befo.patch patches.suse/drm-amd-display-Add-array-index-check-for-hdcp-ddc-a.patch patches.suse/drm-amd-display-Check-num_valid_sets-before-accessin.patch patches.suse/drm-amd-display-Check-msg_id-before-processing-trans.patch + patches.suse/drm-amd-display-Check-link_index-before-accessing-dc.patch patches.suse/drm-amd-display-Fix-Coverity-INTERGER_OVERFLOW-withi.patch patches.suse/drm-amd-display-Fix-Coverity-INTEGER_OVERFLOW-within.patch patches.suse/drm-amd-display-Spinlock-before-reading-event.patch @@ -25751,6 +26037,7 @@ patches.suse/drm-amd-display-Correct-the-defined-value-for-AMDGPU.patch patches.suse/drm-amd-display-Remove-register-from-DCN35-DMCUB-dia.patch patches.suse/drm-amd-display-use-preferred-link-settings-for-dp-s.patch + patches.suse/0001-drm-amd-display-Disable-DMCUB-timeout-for-DCN35.patch patches.suse/drm-amd-display-Avoid-overflow-from-uint32_t-to-uint.patch patches.suse/drm-amd-display-Add-null-checker-before-passing-vari.patch patches.suse/drm-amd-display-Check-BIOS-images-before-it-is-used.patch @@ -25777,6 +26064,8 @@ patches.suse/drm-mediatek-dp-Fix-spurious-kfree.patch patches.suse/drm-amd-display-Run-DC_LOG_DC-after-checking-link-li.patch patches.suse/drm-amd-display-Check-HDCP-returned-status.patch + patches.suse/drm-amd-display-Remove-a-redundant-check-in-authenti.patch + patches.suse/0001-drm-amd-display-Validate-function-returns.patch patches.suse/drm-amdgpu-add-missing-error-handling-in-function-am.patch patches.suse/drm-amdgpu-Fix-smatch-static-checker-warning.patch patches.suse/drm-amdgpu-clear-RB_OVERFLOW-bit-when-enabling-inter.patch @@ -25813,7 +26102,14 @@ patches.suse/s390-uv-Don-t-call-folio_wait_writeback-without-a-folio-reference.patch patches.suse/s390-sclp-Prevent-release-of-buffer-in-I-O.patch patches.suse/docs-crypto-async-tx-api-fix-broken-code-example.patch + patches.suse/jbd2-avoid-memleak-in-jbd2_journal_write_metadata_bu.patch patches.suse/ext4-fix-infinite-loop-when-replaying-fast_commit.patch + patches.suse/ext4-fix-possible-tid_t-sequence-overflows.patch + patches.suse/ext4-don-t-track-ranges-in-fast_commit-if-inode-has-i.patch + patches.suse/jbd2-avoid-mount-failed-when-commit-block-is-partial.patch + patches.suse/jbd2-make-jbd2_journal_get_max_txn_bufs-internal.patch + patches.suse/jbd2-precompute-number-of-transaction-descriptor-blo.patch + patches.suse/jbd2-avoid-infinite-transaction-commit-loop.patch patches.suse/ext4-sanity-check-for-NULL-pointer-after-ext4_force_.patch patches.suse/ext4-check-dot-and-dotdot-of-dx_root-before-making-d.patch patches.suse/ext4-make-sure-the-first-directory-block-is-not-a-ho.patch @@ -25825,8 +26121,10 @@ patches.suse/NFSv4.1-another-fix-for-EXCHGID4_FLAG_USE_PNFS_DS-fo.patch patches.suse/nfs-pass-explicit-offset-count-to-trace-events.patch patches.suse/SUNRPC-Fix-a-race-to-wake-a-sync-task.patch + patches.suse/SUNRPC-Fixup-gss_status-tracepoint-error-output.patch patches.suse/hwrng-amd-Convert-PCIBIOS_-return-codes-to-errnos.patch patches.suse/crypto-ecdsa-Fix-the-public-key-format-description.patch + patches.suse/crypto-stm32-cryp-call-finalize-with-bh-disabled.patch patches.suse/crypto-ccp-Fix-null-pointer-dereference-in-__sev_snp.patch patches.suse/crypto-deflate-Add-aliases-to-deflate.patch patches.suse/hwrng-core-Fix-wrong-quality-calculation-at-hw-rng-r.patch @@ -25838,6 +26136,7 @@ patches.suse/RDMA-cache-Release-GID-table-even-if-leak-is-detecte.patch patches.suse/RDMA-mlx4-Fix-truncated-output-warning-in-mad.c.patch patches.suse/RDMA-mlx4-Fix-truncated-output-warning-in-alias_GUID.patch + patches.suse/RDMA-mlx5-Use-sq-timestamp-as-QP-timestamp-when-RoCE.patch patches.suse/RDMA-rxe-Don-t-set-BTH_ACK_MASK-for-UC-or-UD-QPs.patch patches.suse/RDMA-device-Return-error-earlier-if-port-in-not-vali.patch patches.suse/RDMA-hns-Check-atomic-wr-length.patch @@ -25853,6 +26152,8 @@ patches.suse/iommu-vt-d-Fix-identity-map-bounds-in-si_domain_init.patch patches.suse/scsi-qla2xxx-Remove-unused-struct-scsi_dif_tuple.patch patches.suse/scsi-lpfc-Fix-a-possible-null-pointer-dereference.patch + patches.suse/scsi-ufs-core-Remove-SCSI-host-only-if-added.patch + patches.suse/scsi-pm80xx-Set-phy-enable_completion-only-when-we-wait-for-it.patch patches.suse/scsi-lpfc-Cancel-ELS-WQE-instead-of-issuing-abort-wh.patch patches.suse/scsi-lpfc-Allow-DEVICE_RECOVERY-mode-after-RSCN-rece.patch patches.suse/scsi-lpfc-Relax-PRLI-issue-conditions-after-GID_FT-r.patch @@ -25895,6 +26196,7 @@ patches.suse/ASoC-qcom-Adjust-issues-in-case-of-DT-error-in-asoc_.patch patches.suse/ASoC-max98088-Check-for-clk_prepare_enable-error.patch patches.suse/ASoC-topology-Properly-initialize-soc_enum-values.patch + patches.suse/ASoC-tas2781-Use-of_property_read_reg.patch patches.suse/ASoC-amd-Adjust-error-handling-in-case-of-absent-cod.patch patches.suse/ASoC-fsl-fsl_qmc_audio-Check-devm_kasprintf-returned.patch patches.suse/ASoc-TAS2781-replace-beXX_to_cpup-with-get_unaligned.patch @@ -25902,22 +26204,29 @@ patches.suse/ALSA-seq-ump-Skip-useless-ports-for-static-blocks.patch patches.suse/ALSA-hda-tas2781-Add-new-quirk-for-Lenovo-Hera2-Lapt.patch patches.suse/ALSA-hda-realtek-Fix-the-speaker-output-on-Samsung-G.patch + patches.suse/gve-Fix-XDP-TX-completion-handling-when-counters-ove.patch patches.suse/netfilter-ctnetlink-use-helper-function-to-calculate.patch patches.suse/ipvs-properly-dereference-pe-in-ip_vs_add_service.patch patches.suse/usbip-Don-t-submit-special-requests-twice.patch patches.suse/Revert-usb-musb-da8xx-Set-phy-in-OTG-mode-by-default.patch patches.suse/usb-typec-ucsi-Fix-null-pointer-dereference-in-trace.patch + patches.suse/xhci-Add-a-quirk-for-writing-ERST-in-high-low-order.patch patches.suse/usb-uas-set-host-status-byte-on-data-completion-erro.patch patches.suse/usb-gadget-aspeed_udc-validate-endpoint-index-for-as.patch + patches.suse/usb-gadget-f_uac2-fix-non-newline-terminated-functio.patch patches.suse/eeprom-digsy_mtc-Fix-93xx46-driver-probe-failure.patch patches.suse/iio-Fix-the-sorting-functionality-in-iio_gts_build_a.patch patches.suse/iio-frequency-adrf6780-rm-clk-provider-include.patch patches.suse/driver-iio-add-missing-checks-on-iio_info-s-callback.patch patches.suse/interconnect-qcom-qcm2290-Fix-mas_snoc_bimc-RPM-mast.patch patches.suse/dev-parport-fix-the-array-out-of-bounds-risk.patch + patches.suse/i2c-omap-switch-to-NOIRQ_SYSTEM_SLEEP_PM_OPS-and-RUN.patch + patches.suse/i2c-omap-wakeup-the-controller-during-suspend-callba.patch + patches.suse/i2c-xiic-improve-error-message-when-transfer-fails-t.patch patches.suse/Input-qt1050-handle-CHIP_ID-reading-error.patch patches.suse/Input-ili210x-use-kvmalloc-to-allocate-buffer-for-fi.patch patches.suse/Input-elan_i2c-do-not-leave-interrupt-disabled-on-su.patch + patches.suse/PCI-Extend-ACS-configurability.patch patches.suse/PCI-DPC-Fix-use-after-free-on-concurrent-DPC-and-hot.patch patches.suse/PCI-Add-missing-bridge-lock-to-pci_bus_lock.patch patches.suse/PCI-Fix-resource-double-counting-on-remove-rescan.patch @@ -25944,6 +26253,7 @@ patches.suse/selftests-sigaltstack-Fix-ppc64-GCC-build.patch patches.suse/powerpc-64s-radix-kfence-map-__kfence_pool-at-page-g.patch patches.suse/pci-hotplug-pnv_php-Fix-hotplug-driver-crash-on-Powe.patch + patches.suse/powerpc-xmon-Fix-disassembly-CPU-feature-checks.patch patches.suse/KVM-PPC-Book3S-HV-Fix-the-set_one_reg-for-MMCR3.patch patches.suse/kvm-s390-Reject-memory-region-operations-for-ucontrol-VMs.patch patches.suse/KVM-arm64-Fix-clobbered-ELR-in-sync-abort-SError.patch @@ -25973,6 +26283,8 @@ patches.suse/rtc-cmos-Fix-return-value-of-nvmem-callbacks.patch patches.suse/rtc-abx80x-Fix-return-value-of-nvmem-callback-on-rea.patch patches.suse/rtc-interface-Add-RTC-offset-to-alarm-after-fix-up.patch + patches.suse/Revert-mm-writeback-fix-possible-divide-by-zero-in-w.patch + patches.suse/vmalloc-modify-the-alloc_vmap_area-error-message-for.patch patches.suse/mm-mglru-fix-div-by-zero-in-vmpressure_calc_level.patch patches.suse/ocfs2-add-bounds-checking-to-ocfs2_xattr_find_entry.patch patches.suse/ocfs2-strict-bound-check-before-memcmp-in-ocfs2_xatt.patch @@ -26016,9 +26328,11 @@ patches.suse/tipc-Return-non-zero-value-from-tipc_udp_addr2str-on.patch patches.suse/net-nexthop-Initialize-all-fields-in-dumped-nexthops.patch patches.suse/ice-Add-a-per-VF-limit-on-number-of-FDIR-filters.patch + patches.suse/ice-Fix-recipe-read-procedure.patch patches.suse/bpf-events-Use-prog-to-emit-ksymbol-event-for-main-program.patch patches.suse/tools-resolve_btfids-Fix-comparison-of-distinct-poin.patch patches.suse/bpf-Fix-a-segment-issue-when-downgrading-gso_size.patch + patches.suse/gve-Fix-an-edge-case-for-TSO-skb-validity-check.patch patches.suse/mISDN-Fix-a-use-after-free-in-hfcmulti_tx.patch patches.suse/tap-add-missing-verification-for-short-frame.patch patches.suse/tun-add-missing-verification-for-short-frame.patch @@ -26046,9 +26360,11 @@ patches.suse/ASoC-sof-amd-fix-for-firmware-reload-failure-in-Vang.patch patches.suse/ASoC-Intel-use-soc_intel_is_byt_cr-only-when-IOSF_MB.patch patches.suse/ASoC-TAS2781-Fix-tasdev_load_calibrated_data.patch + patches.suse/ASoC-SOF-ipc4-topology-Only-handle-dai_config-with-H.patch patches.suse/ASoC-SOF-ipc4-topology-Preserve-the-DMA-Link-ID-for-.patch patches.suse/ASoC-amd-yc-Support-mic-on-Lenovo-Thinkpad-E16-Gen-2.patch patches.suse/auxdisplay-ht16k33-Drop-reference-after-LED-registra.patch + patches.suse/minmax-avoid-overly-complex-min-max-macro-arguments-.patch patches.suse/minmax-avoid-overly-complicated-constant-expressions.patch patches.suse/decompress_bunzip2-fix-rare-decompression-failure.patch patches.suse/nilfs2-handle-inconsistent-state-in-nilfs_btnode_cre.patch @@ -26065,6 +26381,8 @@ patches.suse/iommu-amd-Convert-comma-to-semicolon.patch patches.suse/landlock-Don-t-lose-track-of-restrictions-on-cred_tr.patch patches.suse/apparmor-Fix-null-pointer-deref-when-receiving-skb-during-sock-creation.patch + patches.suse/apparmor-use-kvfree_sensitive-to-free-data-data.patch + patches.suse/apparmor-fix-possible-NULL-pointer-dereference.patch patches.suse/apparmor-unpack-transition-table-if-dfa-is-not-prese.patch patches.suse/io_uring-tighten-task-exit-cancellations.patch patches.suse/io_uring-fix-io_match_task-must_hold.patch @@ -26073,9 +26391,15 @@ patches.suse/nvme-pci-Fix-the-instructions-for-disabling-power-ma.patch patches.suse/nvme-pci-add-missing-condition-check-for-existence-o.patch patches.suse/cxl-core-Fix-incorrect-vendor-debug-UUID-define.patch + patches.suse/ubifs-Fix-unattached-xattr-inode-if-powercut-happens-after-deleting.patch + patches.suse/Revert-ubifs-ubifs_symlink-Fix-memleak-of-inode-i_link-in-error-path.patch + patches.suse/ubifs-Fix-adding-orphan-entry-twice-for-the-same-inode.patch + patches.suse/ubifs-dbg_orphan_check-Fix-missed-key-type-checking.patch + patches.suse/ubifs-add-check-for-crypto_shash_tfm_digest.patch patches.suse/minmax-add-a-few-more-MIN_T-MAX_T-users.patch patches.suse/minmax-simplify-and-clarify-min_t-max_t-implementati.patch patches.suse/minmax-make-generic-MIN-and-MAX-macros-available-eve.patch + patches.suse/minmax-scsi-fix-mis-use-of-clamp-in-sr.c.patch patches.suse/minmax-don-t-use-max-in-situations-that-want-a-C-con.patch patches.suse/minmax-simplify-min-max-clamp-implementation.patch patches.suse/ARM-9406-1-Fix-callchain_trace-return-value.patch @@ -26096,9 +26420,18 @@ patches.suse/net-iucv-fix-use-after-free-in-iucv_sock_close.patch patches.suse/net-phy-micrel-Fix-the-KSZ9131-MDI-X-status-issue.patch patches.suse/net-drop-bad-gso-csum_start-and-offset-in-virtio_net.patch + patches.suse/ice-respect-netif-readiness-in-AF_XDP-ZC-related-ndo.patch + patches.suse/ice-don-t-busy-wait-for-Rx-queue-disable-in-ice_qp_d.patch + patches.suse/ice-replace-synchronize_rcu-with-synchronize_net.patch + patches.suse/ice-add-missing-WRITE_ONCE-when-clearing-ice_rx_ring.patch patches.suse/net-mlx5-Always-drain-health-in-shutdown-callback.patch + patches.suse/net-mlx5-Fix-error-handling-in-irq_pool_request_irq.patch + patches.suse/net-mlx5-Lag-don-t-use-the-hardcoded-value-of-the-fi.patch patches.suse/net-mlx5-Fix-missing-lock-on-sync-reset-reload.patch + patches.suse/net-mlx5e-Require-mlx5-tc-classifier-action-support-.patch patches.suse/net-mlx5e-Fix-CT-entry-update-leaks-of-modify-header.patch + patches.suse/net-mlx5e-Add-a-check-for-the-return-value-from-mlx5.patch + patches.suse/igc-Fix-double-reset-adapter-triggered-from-a-single.patch patches.suse/netfilter-iptables-Fix-null-ptr-deref-in-iptable_nat.patch patches.suse/netfilter-iptables-Fix-potential-null-ptr-deref-in-i.patch patches.suse/protect-the-fetch-of-fd-fd-in-do_dup2-from-mispredic.patch @@ -26134,9 +26467,13 @@ patches.suse/arm64-errata-Expand-speculative-SSBS-workaround-again.patch patches.suse/arm64-jump_label-Ensure-patched-jump_labels-are-visible-to-all-CPUs.patch patches.suse/xfs-convert-comma-to-semicolon.patch + patches.suse/scsi-mpi3mr-Avoid-IOMMU-page-faults-on-REPORT-ZONES.patch + patches.suse/scsi-mpt3sas-Avoid-IOMMU-page-faults-on-REPORT-ZONES.patch patches.suse/jump_label-Fix-the-fix-brown-paper-bags-galore.patch patches.suse/perf-x86-intel-cstate-Add-pkg-C2-residency-counter-for-Sierra-Forest.patch patches.suse/perf-x86-Fix-smp_processor_id-in-preemptible-warnings.patch + patches.suse/sched-smt-Introduce-sched_smt_present_inc-dec-helper.patch + patches.suse/sched-smt-Fix-unbalance-sched_smt_present-dec-inc.patch patches.suse/x86-mm-Fix-pti_clone_pgtable-alignment-assumption.patch patches.suse/x86-mm-Fix-pti_clone_entry_text-for-i386.patch patches.suse/platform-x86-intel-ifs-Initialize-union-ifs_status-t.patch @@ -26153,8 +26490,12 @@ patches.suse/net-usb-qmi_wwan-fix-memory-leak-for-not-ip-packets.patch patches.suse/net-usb-qmi_wwan-add-MeiG-Smart-SRM825L.patch patches.suse/net-dsa-bcm_sf2-Fix-a-possible-memory-leak-in-bcm_sf.patch + patches.suse/idpf-fix-memory-leaks-and-crashes-while-performing-a.patch + patches.suse/idpf-fix-memleak-in-vport-interrupt-configuration.patch + patches.suse/idpf-fix-UAFs-when-destroying-the-queues.patch patches.suse/Bluetooth-l2cap-always-unlock-channel-in-l2cap_conle.patch patches.suse/Bluetooth-hci_sync-avoid-dup-filtering-when-passive-.patch + patches.suse/ice-Fix-reset-handler.patch patches.suse/ALSA-line6-Fix-racy-access-to-midibuf.patch patches.suse/ALSA-hda-Add-HP-MP9-G4-Retail-System-AMS-to-force-co.patch patches.suse/ALSA-hda-hdmi-Yet-more-pin-fix-for-HP-EliteDesk-800-.patch @@ -26181,6 +26522,7 @@ patches.suse/drm-amd-display-Skip-Recompute-DSC-Params-if-no-Stre.patch patches.suse/drm-i915-gem-Adjust-vma-offset-for-framebuffer-mmap-.patch patches.suse/drm-i915-gem-Fix-Virtual-Memory-mapping-boundaries-c.patch + patches.suse/spi-hisi-kunpeng-Add-verification-for-the-max_freque.patch patches.suse/spi-spidev-Add-missing-spi_device_id-for-bh2228fv.patch patches.suse/spi-spi-fsl-lpspi-Fix-scldiv-calculation.patch patches.suse/dma-debug-avoid-deadlock-between-dma-debug-vs-printk.patch @@ -26200,6 +26542,7 @@ patches.suse/usb-gadget-u_serial-Set-start_delayed-during-suspend.patch patches.suse/USB-serial-debug-do-not-echo-input-by-default.patch patches.suse/x86-mtrr-Check-if-fixed-MTRRs-exist-before-saving-them.patch + patches.suse/fix-bitmap-corruption-on-close_range-with-CLOSE_RANG.patch patches.suse/exec-Fix-ToCToU-between-perm-check-and-set-uid-gid-u.patch patches.suse/bpf-Fix-updating-attached-freplace-prog-in-prog_arra.patch patches.suse/bpf-Fix-a-kernel-verifier-crash-in-stacksafe.patch @@ -26219,13 +26562,20 @@ patches.suse/usbnet-ipheth-fix-carrier-detection-in-modes-1-and-4.patch patches.suse/gtp-pull-network-headers-in-gtp_dev_xmit.patch patches.suse/net-mlx5e-Take-state-lock-during-tx-timeout-reporter.patch + patches.suse/net-mlx5e-Correctly-report-errors-for-ethtool-rx-flo.patch + patches.suse/igc-Fix-packet-still-tx-after-gate-close-by-reducing.patch + patches.suse/igc-Fix-qbv_config_change_errors-logics.patch + patches.suse/igc-Fix-reset-adapter-logics-when-tx-mode-change.patch + patches.suse/igc-Fix-qbv-tx-latency-by-setting-gtxoffset.patch patches.suse/atm-idt77252-prevent-use-after-free-in-dequeue_rx.patch patches.suse/net-phy-vitesse-repair-vsc73xx-autonegotiation.patch patches.suse/net-mana-Fix-RX-buf-alloc_size-alignment-and-atomic-.patch patches.suse/net-ethernet-mtk_wed-fix-use-after-free-panic-in-mtk.patch patches.suse/net-mana-Fix-doorbell-out-of-order-violation-and-avo.patch + patches.suse/mlxbf_gige-disable-RX-filters-until-RX-path-initiali.patch patches.suse/wifi-brcmfmac-cfg80211-Handle-SSID-based-pmksa-delet.patch patches.suse/wifi-mt76-mt7921-fix-NULL-pointer-access-in-mt7921_i.patch + patches.suse/net-hns3-fix-a-deadlock-problem-when-config-TC-durin.patch patches.suse/netfilter-flowtable-initialise-extack-before-use.patch patches.suse/drm-amd-display-fix-s2idle-entry-for-DCN3.5.patch patches.suse/drm-amd-display-fix-cursor-offset-on-rotation-180.patch @@ -26259,6 +26609,7 @@ patches.suse/i2c-Use-IS_REACHABLE-for-substituting-empty-ACPI-fun.patch patches.suse/i2c-qcom-geni-Add-missing-geni_icc_disable-in-geni_i-4e91fa1.patch patches.suse/i2c-tegra-Do-not-mark-ACPI-devices-as-irq-safe.patch + patches.suse/powerpc-mm-Fix-boot-warning-with-hugepages-and-CONFI.patch patches.suse/cpu-SMT-Enable-SMT-only-if-a-core-is-online.patch patches.suse/powerpc-topology-Check-if-a-core-is-online.patch patches.suse/0001-mm-vmalloc-fix-page-mapping-if-vm_area_alloc_pages-w.patch @@ -26291,12 +26642,17 @@ patches.suse/ip6_tunnel-Fix-broken-GRO.patch patches.suse/bonding-fix-null-pointer-deref-in-bond_ipsec_offload.patch patches.suse/bonding-fix-xfrm-real_dev-null-pointer-dereference.patch + patches.suse/cxgb4-add-forgotten-u64-ivlan-cast-before-shift.patch patches.suse/igb-cope-with-large-MAX_SKB_FRAGS.patch patches.suse/net-dsa-mv88e6xxx-Fix-out-of-bound-access.patch + patches.suse/netem-fix-return-value-if-duplicate-enqueue-fails.patch patches.suse/ipv6-prevent-UAF-in-ip6_send_skb.patch patches.suse/ipv6-fix-possible-UAF-in-ip6_finish_output2.patch patches.suse/ipv6-prevent-possible-UAF-in-ip6_xmit.patch patches.suse/bnxt_en-Fix-double-DMA-unmapping-for-XDP_REDIRECT.patch + patches.suse/ice-fix-page-reuse-when-PAGE_SIZE-is-over-8k.patch + patches.suse/ice-fix-ICE_LAST_OFFSET-formula.patch + patches.suse/ice-fix-truesize-operations-for-PAGE_SIZE-8192.patch patches.suse/ata-pata_macio-Use-WARN-instead-of-BUG.patch patches.suse/mmc-mtk-sd-receive-cmd8-data-when-hs400-tuning-fail.patch patches.suse/mmc-dw_mmc-allow-biu-and-ciu-clocks-to-defer.patch @@ -26319,7 +26675,10 @@ patches.suse/Input-i8042-add-forcenorestore-quirk-to-leave-contro.patch patches.suse/Input-i8042-use-new-forcenorestore-quirk-to-replace-.patch patches.suse/NFSv4-Add-missing-rescheduling-points-in-nfs_client_.patch + patches.suse/NFSv4-Fix-clearing-of-layout-segments-in-layoutreturn.patch + patches.suse/NFS-Avoid-unnecessary-rescanning-of-the-per-server-delegation-list.patch patches.suse/KVM-arm64-Make-ICC_-SGI-_EL1-undef-in-the-absence-of.patch + patches.suse/scsi-core-Fix-the-return-value-of-scsi_logical_block_count.patch patches.suse/ALSA-hda-realtek-Enable-mute-micmute-LEDs-on-HP-Lapt.patch patches.suse/ALSA-seq-Skip-event-type-filtering-for-UMP-events.patch patches.suse/ALSA-hda-realtek-Fixed-ALC256-headphone-no-sound.patch @@ -26340,9 +26699,14 @@ patches.suse/smb-client-avoid-dereferencing-rdata-NULL-in-smb2_ne.patch patches.suse/btrfs-fix-a-use-after-free-when-hitting-errors-insid.patch patches.suse/platform-x86-x86-android-tablets-Make-Lenovo-Yoga-Ta.patch + patches.suse/pktgen-use-cpus_read_lock-in-pg_net_init.patch patches.suse/msft-hv-3045-net-mana-Fix-race-of-mana_hwc_post_rx_wqe-and-new-hw.patch + patches.suse/Bluetooth-btnxpuart-Fix-random-crash-seen-while-remo.patch patches.suse/Bluetooth-hci_core-Fix-not-handling-hibernation-acti.patch patches.suse/ethtool-check-device-is-present-when-getting-link-se.patch + patches.suse/bonding-implement-xdo_dev_state_free-and-call-it-aft.patch + patches.suse/bonding-extract-the-use-of-real_device-into-local-va.patch + patches.suse/bonding-change-ipsec_lock-from-spin-lock-to-mutex.patch patches.suse/gtp-fix-a-potential-NULL-pointer-dereference.patch patches.suse/wifi-mwifiex-duplicate-static-structs-used-in-driver.patch patches.suse/wifi-iwlwifi-lower-message-level-for-FW-buffer-desti.patch @@ -26356,6 +26720,7 @@ patches.suse/wifi-iwlwifi-clear-trans-state-earlier-upon-error.patch patches.suse/nfc-pn533-Add-poll-mod-list-filling-check.patch patches.suse/hwmon-asus-ec-sensors-remove-VRM-temp-X570-E-GAMING.patch + patches.suse/dcache-keep-dentry_hashtable-or-d_hash_shift-even-when-not.patch patches.suse/drm-amdgpu-align-pp_power_profile_mode-with-kernel-d.patch patches.suse/drm-amdgpu-swsmu-always-force-a-state-reprogram-on-i.patch patches.suse/drm-amd-display-avoid-using-null-object-of-framebuff.patch @@ -26375,6 +26740,7 @@ patches.suse/xfs-Fix-missing-interval-for-missing_owner-in-xfs-fsmap.patch patches.suse/scsi-lpfc-fix-overflow-build-issue.patch patches.suse/scsi-aacraid-Fix-double-free-on-probe-failure.patch + patches.suse/scsi-sd-Ignore-command-SYNCHRONIZE-CACHE-error-if-format-in-progress.patch patches.suse/usb-dwc3-core-Prevent-USB-core-invalid-event-buffer-.patch patches.suse/usb-cdnsp-fix-incorrect-index-in-cdnsp_get_hw_deq-fu.patch patches.suse/cdc-acm-Add-DISABLE_ECHO-quirk-for-GE-HealthCare-UI-.patch @@ -26386,6 +26752,7 @@ patches.suse/usb-cdnsp-fix-for-Link-TRB-with-TC.patch patches.suse/USB-serial-option-add-MeiG-Smart-SRM825L.patch patches.suse/perf-x86-intel-Limit-the-period-on-Haswell.patch + patches.suse/x86-apic-Make-x2apic_disable-work-correctly.patch patches.suse/kaslr-expose-and-use-the-end-of-physical-memory.patch patches.suse/x86-tdx-Fix-data-leak-in-mmio_read.patch patches.suse/ata-libata-Fix-memory-leak-for-error-path-in-ata_hos.patch @@ -26396,16 +26763,24 @@ patches.suse/nilfs2-protect-references-to-superblock-parameters-exposed-in-sysfs.patch patches.suse/nilfs2-fix-missing-cleanup-on-rollforward-recovery-error.patch patches.suse/nilfs2-fix-state-management-in-error-path-of-log-writing-function.patch + patches.suse/kexec_file-fix-elfcorehdr-digest-exclusion-when-CONFIG_CRASH_HOTPLUG-y.patch patches.suse/fscache-delete-fscache_cookie_lru_timer-when-fscache-.patch patches.suse/btrfs-fix-race-between-direct-IO-write-and-fsync-whe.patch patches.suse/platform-x86-dell-smbios-Fix-error-path-in-dell_smbi.patch patches.suse/tracing-Avoid-possible-softlockup-in-tracing_iter_reset.patch + patches.suse/tracing-osnoise-Use-a-cpumask-to-know-what-threads-are-kthreads.patch + patches.suse/tracing-timerlat-Only-clear-timer-if-a-kthread-exists.patch + patches.suse/tracing-timerlat-Add-interface_lock-around-clearing-of-kthread-in-stop_kthread.patch patches.suse/regulator-core-Stub-devm_regulator_bulk_get_const-if.patch patches.suse/spi-rockchip-Resolve-unbalanced-runtime-PM-system-PM.patch patches.suse/spi-spidev-Add-an-entry-for-elgin-jg10309-01.patch patches.suse/spi-bcm63xx-Enable-module-autoloading.patch patches.suse/spi-spidev-Add-missing-spi_device_id-for-jg10309-01.patch + patches.suse/igb-Fix-not-clearing-TimeSync-interrupts-for-82580.patch + patches.suse/ice-Add-netif_device_attach-detach-into-PF-reset-flo.patch patches.suse/tcp_bpf-fix-return-value-of-tcp_bpf_sendmsg.patch + patches.suse/net-microchip-vcap-Fix-use-after-free-error-in-kunit.patch + patches.suse/igc-Unlock-on-error-in-igc_io_resume.patch patches.suse/can-bcm-Remove-proc-entry-when-dev-is-unregistered.patch patches.suse/can-m_can-Release-irq-on-error-in-m_can_open.patch patches.suse/can-mcp251xfd-fix-ring-configuration-when-switching-.patch @@ -26415,7 +26790,13 @@ patches.suse/Bluetooth-MGMT-Ignore-keys-being-loaded-with-invalid.patch patches.suse/net-phy-Fix-missing-of_node_put-for-leds.patch patches.suse/usbnet-modern-method-to-get-random-MAC.patch + patches.suse/sch-netem-fix-use-after-free-in-netem_dequeue.patch + patches.suse/bpf-net-Fix-a-potential-race-in-do_sock_getsockopt.patch patches.suse/msft-hv-3048-net-mana-Fix-error-handling-in-mana_create_txq-rxq-s.patch + patches.suse/ice-move-netif_queue_set_napi-to-rtnl-protected-sect.patch + patches.suse/ice-protect-XDP-configuration-with-a-mutex.patch + patches.suse/ice-do-not-bring-the-VSI-up-if-it-was-down-before-th.patch + patches.suse/sched-sch_cake-fix-bulk-flow-accounting-logic-for-host-fairness.patch patches.suse/drm-i915-Do-not-attempt-to-load-the-GSC-multiple-tim.patch patches.suse/drm-i915-fence-Mark-debug_fence_init_onstack-with-__.patch patches.suse/drm-i915-fence-Mark-debug_fence_free-with-__maybe_un.patch @@ -26473,15 +26854,31 @@ patches.suse/VMCI-Fix-use-after-free-when-removing-resource-in-vm.patch patches.suse/clocksource-drivers-imx-tpm-Fix-return-ETIME-when-de.patch patches.suse/clocksource-drivers-imx-tpm-Fix-next-event-not-takin.patch + patches.suse/msft-hv-3051-x86-hyperv-Set-X86_FEATURE_TSC_KNOWN_FREQ-when-Hyper.patch patches.suse/msft-hv-3053-Drivers-hv-vmbus-Fix-the-misplaced-function-descript.patch patches.suse/msft-hv-3054-x86-hyperv-fix-kexec-crash-due-to-VP-assist-page-cor.patch + patches.suse/msft-hv-3055-tools-hv-rm-.-.cmd-when-make-clean.patch + patches.suse/tracing-osnoise-Fix-build-when-timerlat-is-not-enabled.patch patches.suse/minmax-reduce-min-max-macro-expansion-in-atomisp-dri.patch patches.suse/arm64-dts-rockchip-fix-PMIC-interrupt-pin-in-pinctrl-for-ROCK-Pi-E.patch patches.suse/arm64-dts-rockchip-fix-eMMC-SPI-corruption-when-audio-has-been-used-on-RK3399-Puma.patch patches.suse/arm64-dts-rockchip-override-BIOS_DISABLE-signal-via-GPIO-hog-on-RK3399-Puma.patch + patches.suse/mm-avoid-leaving-partial-pfn-mappings-around-in-error-case.patch patches.suse/platform-x86-panasonic-laptop-Fix-SINF-array-out-of-.patch patches.suse/platform-x86-panasonic-laptop-Allocate-1-entry-extra.patch + patches.suse/net-mlx5-Update-the-list-of-the-PCI-supported-device.patch + patches.suse/net-mlx5e-Add-missing-link-modes-to-ptys2ethtool_map.patch + patches.suse/net-mlx5e-Add-missing-link-mode-to-ptys2ext_ethtool_.patch + patches.suse/net-mlx5-Explicitly-set-scheduling-element-and-TSAR-.patch + patches.suse/net-mlx5-Add-missing-masks-and-QoS-bit-masks-for-sch.patch + patches.suse/net-mlx5-Fix-bridge-mode-operations-when-there-are-n.patch + patches.suse/ice-Fix-lldp-packets-dropping-after-changing-the-num.patch + patches.suse/ice-fix-accounting-for-filters-shared-by-multiple-VS.patch + patches.suse/ice-fix-VSI-lists-confusion-when-adding-VLANs.patch + patches.suse/igb-Always-call-igb_xdp_ring_update_tail-under-Tx-lo.patch + patches.suse/net-dpaa-Pad-packets-to-ETH_ZLEN.patch patches.suse/net-tighten-bad-gso-csum-offset-check-in-virtio_net_.patch + patches.suse/netfilter-nft_socket-fix-sk-refcount-leaks.patch patches.suse/hwmon-pmbus-Conditionally-clear-individual-status-bi.patch patches.suse/drm-amd-display-Avoid-race-between-dcn10_set_drr-and.patch patches.suse/drm-amdgpu-atomfirmware-Silence-UBSAN-warning.patch @@ -26493,24 +26890,46 @@ patches.suse/ASoC-codecs-avoid-possible-garbage-value-in-peb2466_.patch patches.suse/ASoC-meson-axg-card-fix-use-after-free.patch patches.suse/pinctrl-meteorlake-Add-Arrow-Lake-H-U-ACPI-ID.patch + patches.suse/tipc-guard-against-string-buffer-overrun.patch patches.suse/virtio-net-synchronize-probe-with-ndo_set_features.patch + patches.suse/net-mana-Implement-get_ringparam-set_ringparam-for-m.patch + patches.suse/net-xen-netback-prevent-UAF-in-xenvif_flush_hash.patch patches.suse/can-j1939-use-correct-function-name-in-comment.patch + patches.suse/can-netlink-avoid-call-to-do_set_data_bittiming-call.patch + patches.suse/net-mana-Improve-mana_set_channels-in-low-mem-condit.patch patches.suse/wifi-brcmfmac-introducing-fwil-query-functions.patch + patches.suse/wifi-rtw88-8821cu-Remove-VID-PID-0bda-c82c.patch + patches.suse/wifi-rtw88-select-WANT_DEV_COREDUMP.patch patches.suse/wifi-rtw88-8822c-Fix-reported-RX-band-width.patch patches.suse/wifi-rtw88-always-wait-for-both-firmware-loading-att.patch + patches.suse/wifi-rtw89-avoid-to-add-interface-to-list-twice-when.patch + patches.suse/wifi-ath12k-fix-array-out-of-bound-access-in-SoC-sta.patch + patches.suse/wifi-ath11k-fix-array-out-of-bound-access-in-SoC-sta.patch + patches.suse/wifi-ath9k-fix-possible-integer-overflow-in-ath9k_ge.patch patches.suse/wifi-ath9k-Remove-error-checks-when-creating-debugfs.patch patches.suse/wifi-ath12k-fix-BSS-chan-info-request-WMI-command.patch patches.suse/wifi-ath12k-match-WMI-BSS-chan-info-structure-with-f.patch patches.suse/wifi-ath12k-fix-invalid-AMPDU-factor-calculation-in-.patch patches.suse/wifi-mac80211-don-t-use-rate-mask-for-offchannel-TX-.patch + patches.suse/wifi-iwlwifi-mvm-use-correct-key-iteration.patch + patches.suse/wifi-iwlwifi-config-label-gl-devices-as-discrete.patch + patches.suse/wifi-iwlwifi-mvm-Fix-a-race-in-scan-abort-flow.patch patches.suse/wifi-iwlwifi-mvm-increase-the-time-between-ranging-m.patch patches.suse/wifi-cfg80211-fix-bug-of-mapping-AF3x-to-incorrect-U.patch patches.suse/wifi-mac80211-fix-the-comeback-long-retry-times.patch + patches.suse/wifi-iwlwifi-mvm-drop-wrong-STA-selection-in-TX.patch + patches.suse/wifi-iwlwifi-allow-only-CN-mcc-from-WRDD.patch + patches.suse/wifi-iwlwifi-mvm-avoid-NULL-pointer-dereference.patch + patches.suse/wifi-cfg80211-Set-correct-chandef-when-starting-CAC.patch patches.suse/wifi-cfg80211-fix-UBSAN-noise-in-cfg80211_wext_siwsc.patch patches.suse/wifi-cfg80211-fix-two-more-possible-UBSAN-detected-o.patch patches.suse/wifi-mac80211-use-two-phase-skb-reclamation-in-ieee8.patch + patches.suse/wifi-mwifiex-Fix-memcpy-field-spanning-write-warning.patch patches.suse/wifi-wilc1000-fix-potential-RCU-dereference-issue-in.patch + patches.suse/wifi-rtw89-correct-base-HT-rate-mask-for-firmware.patch patches.suse/wifi-rtw88-remove-CPT-execution-branch-never-used.patch + patches.suse/wifi-rtw88-Fix-USB-SDIO-devices-not-transmitting-bea.patch + patches.suse/wifi-rtw89-avoid-reading-out-of-bounds-when-loading-.patch patches.suse/wifi-mt76-mt7915-fix-oops-on-non-dbdc-mt7986.patch patches.suse/wifi-mt76-mt7921-fix-wrong-UNII-4-freq-range-check-f.patch patches.suse/wifi-mt76-mt7996-use-hweight16-to-get-correct-tx-ant.patch @@ -26521,15 +26940,22 @@ patches.suse/wifi-mt76-mt7996-fix-NULL-pointer-dereference-in-mt7.patch patches.suse/wifi-mt76-connac-fix-checksum-offload-fields-of-conn.patch patches.suse/wifi-mt76-mt7603-fix-mixed-declarations-and-code.patch + patches.suse/wifi-mt76-mt7915-disable-tx-worker-during-tx-BA-sess.patch + patches.suse/wifi-mt76-mt7915-add-dummy-HW-offload-of-IEEE-802.11.patch + patches.suse/wifi-mt76-mt7915-hold-dev-mt76.mutex-while-disabling.patch patches.suse/wifi-mt76-mt7915-fix-rx-filter-setting-for-bfee-func.patch patches.suse/wifi-mt76-mt7996-fix-uninitialized-TLV-data.patch patches.suse/wifi-mt76-mt7915-check-devm_kasprintf-returned-value.patch patches.suse/wifi-mt76-mt7921-Check-devm_kasprintf-returned-value.patch patches.suse/wifi-mt76-mt7615-check-devm_kasprintf-returned-value.patch patches.suse/wifi-mt76-mt7925-fix-a-potential-array-index-out-of-.patch + patches.suse/wifi-ath9k_htc-Use-__skb_set_length-for-resetting-ur.patch + patches.suse/sock_map-Add-a-cond_resched-in-sock_hash_free.patch + patches.suse/Bluetooth-btusb-Add-Realtek-RTL8852C-support-ID-0x04.patch patches.suse/Bluetooth-hci_core-Fix-sending-MGMT_EV_CONNECT_FAILE.patch patches.suse/Bluetooth-hci_sync-Ignore-errors-from-HCI_OP_REMOTE_.patch patches.suse/Bluetooth-btusb-Fix-not-handling-ZPL-short-transfer.patch + patches.suse/ipv6-avoid-possible-NULL-deref-in-rt6_uncached_list_.patch patches.suse/can-bcm-Clear-bo-bcm_proc_read-after-remove_proc_ent.patch patches.suse/can-m_can-enable-NAPI-before-enabling-interrupts.patch patches.suse/can-m_can-m_can_close-stop-clocks-after-device-has-b.patch @@ -26537,30 +26963,64 @@ patches.suse/crypto-iaa-Fix-potential-use-after-free-bug.patch patches.suse/hwrng-bcm2835-Add-missing-clk_disable_unprepare-in-b.patch patches.suse/hwrng-cctrng-Add-missing-clk_disable_unprepare-in-cc.patch + patches.suse/padata-use-integer-wrap-around-to-prevent-deadlock-o.patch + patches.suse/crypto-octeontx-Fix-authenc-setkey.patch + patches.suse/crypto-octeontx2-Fix-authenc-setkey.patch patches.suse/crypto-ccp-Properly-unregister-dev-sev-on-sev-PLATFO.patch patches.suse/hwrng-mtk-Use-devm_pm_runtime_enable.patch patches.suse/crypto-ccp-do-not-request-interrupt-on-cmd-completio.patch + patches.suse/crypto-hisilicon-qm-inject-error-before-stopping-que.patch + patches.suse/crypto-octeontx-Select-CRYPTO_AUTHENC.patch + patches.suse/arm64-errata-Enable-the-AC03_CPU_38-workaround-for-ampere1a.patch patches.suse/arm64-signal-Fix-some-under-bracketed-UAPI-macros.patch + patches.suse/arm64-esr-Define-ESR_ELx_EC_-constants-as-UL.patch + patches.suse/drivers-perf-Fix-ali_drw_pmu-driver-interrupt-status.patch patches.suse/KVM-arm64-Invalidate-EL1-0-TLB-entries-for-all-VMIDs.patch patches.suse/KVM-arm64-Release-pfn-i.e.-put-page-if-copying-MTE-t.patch patches.suse/KVM-arm64-Disallow-copying-MTE-to-guest-memory-while.patch + patches.suse/ACPICA-check-null-return-of-ACPI_ALLOCATE_ZEROED-in-.patch patches.suse/ACPICA-Implement-ACPI_WARNING_ONCE-and-ACPI_ERROR_ON.patch patches.suse/ACPICA-executer-exsystem-Don-t-nag-user-about-every-.patch + patches.suse/ACPICA-Fix-memory-leak-if-acpi_ps_get_next_namepath-.patch + patches.suse/ACPICA-Fix-memory-leak-if-acpi_ps_get_next_field-fai.patch + patches.suse/ACPICA-iasl-handle-empty-connection_node.patch + patches.suse/ACPI-EC-Do-not-release-locks-during-operation-region.patch patches.suse/ACPI-sysfs-validate-return-type-of-_STR-method.patch patches.suse/ACPI-PMIC-Remove-unneeded-check-in-tps68470_pmic_opr.patch patches.suse/ACPI-CPPC-Fix-MASK_VAL-usage.patch + patches.suse/ACPI-CPPC-Add-support-for-setting-EPP-register-in-FF.patch + patches.suse/ACPI-video-Add-force_vendor-quirk-for-Panasonic-Toug.patch + patches.suse/ACPI-resource-Add-another-DMI-match-for-the-TongFang-a98cfe6.patch + patches.suse/ACPI-PAD-fix-crash-in-exit_round_robin.patch + patches.suse/cpufreq-amd-pstate-add-check-for-cpufreq_cpu_get-s-return-value.patch patches.suse/cpufreq-ti-cpufreq-Introduce-quirks-to-handle-syscon.patch + patches.suse/0001-intel_idle-add-Granite-Rapids-Xeon-support.patch patches.suse/powercap-intel_rapl-Add-support-for-AMD-family-1Ah.patch + patches.suse/powercap-intel_rapl-Fix-off-by-one-in-get_rpi.patch + patches.suse/vfs-fix-race-between-evice_inodes-and-find_inode-ipu.patch + patches.suse/fs-inode-Prevent-dump_mapping-accessing-invalid-dent.patch patches.suse/cachefiles-Fix-non-taking-of-sb_writers-around-set-re.patch + patches.suse/btrfs-merge-btrfs_orig_bbio_end_io-into-btrfs_bio_en.patch patches.suse/erofs-fix-incorrect-symlink-detection-in-fast-symlink.patch + patches.suse/io_uring-sqpoll-do-not-allow-pinning-outside-of-cpus.patch + patches.suse/io_uring-rw-treat-EOPNOTSUPP-for-IOCB_NOWAIT-like-EA.patch + patches.suse/io_uring-io-wq-do-not-allow-pinning-outside-of-cpuse.patch + patches.suse/io_uring-io-wq-inherit-cpuset-of-cgroup-in-io-worker.patch + patches.suse/blk_iocost-fix-more-out-of-bound-shifts.patch + patches.suse/nbd-fix-race-between-timeout-and-normal-completion.patch + patches.suse/block-bfq-fix-possible-UAF-for-bfqq-bic-with-merge-c.patch patches.suse/nvme-tcp-sanitize-tls-key-handling.patch patches.suse/nvme-tcp-check-for-invalidated-or-revoked-key.patch patches.suse/nvme-add-a-newline-to-the-tls_key-sysfs-attribute.patch patches.suse/nvme-split-off-tls-sysfs-attributes-into-a-separate-group.patch patches.suse/nvme-sysfs-add-tls_configured_key-sysfs-attribute.patch patches.suse/nvme-sysfs-add-tls_keyring-attribute.patch + patches.suse/block-fix-potential-invalid-pointer-dereference-in-bl.patch patches.suse/nvme-tcp-fix-link-failure-for-TCP-auth.patch + patches.suse/nvme-pci-qdepth-1-quirk.patch + patches.suse/signal-Replace-BUG_ON-s.patch patches.suse/clocksource-drivers-qcom-Add-missing-iounmap-on-erro.patch + patches.suse/printk-Add-notation-to-console_srcu-locking.patch patches.suse/regulator-wm831x-isink-Convert-comma-to-semicolon.patch patches.suse/regulator-rt5120-Convert-comma-to-semicolon.patch patches.suse/regulator-Return-actual-error-in-of_regulator_bulk_g.patch @@ -26572,8 +27032,10 @@ patches.suse/spi-ppc4xx-Avoid-returning-0-when-failed-to-parse-an.patch patches.suse/spi-bcm63xx-Fix-module-autoloading.patch patches.suse/arm64-dts-exynos-exynos7885-jackpotlte-Correct-RAM-amount-to-4GB.patch + patches.suse/arm64-tegra-Move-AGX-Orin-nodes-to-correct-location.patch patches.suse/arm64-dts-rockchip-Correct-the-Pinebook-Pro-battery-design-capacity.patch patches.suse/arm64-dts-rockchip-Raise-Pinebook-Pro-s-panel-backlight-PWM-frequency.patch + patches.suse/arm64-dts-rockchip-Add-DTS-for-FriendlyARM-NanoPi-R2S-Plus.patch patches.suse/arm64-dts-rockchip-Correct-vendor-prefix-for-Hardkernel-ODROID-M1.patch patches.suse/arm64-dts-imx8-ss-dma-Fix-adc0-closing-brace-location.patch patches.suse/arm64-dts-allwinner-h616-Add-r_i2c-pinctrl-nodes.patch @@ -26586,30 +27048,64 @@ patches.suse/bus-integrator-lm-fix-OF-node-leak-in-probe.patch patches.suse/reset-berlin-fix-OF-node-leak-in-probe-error-path.patch patches.suse/reset-k210-fix-OF-node-leak-in-probe-error-path.patch + patches.suse/x86-entry-Remove-unwanted-instrumentation-in-common_interr.patch patches.suse/module-Fix-KCOV-ignored-file-name.patch + patches.suse/x86-mm-Use-IPIs-to-synchronize-LAM-enablement.patch patches.suse/0001-x86-kexec-Add-EFI-config-table-identity-mapping-for-.patch patches.suse/0002-x86-mm-ident_map-Use-gbpages-only-where-full-GB-page.patch + patches.suse/x86-amd_nb-Add-new-PCI-IDs-for-AMD-family-1Ah-model-60h.patch + patches.suse/x86-syscall-Avoid-memcpy-for-ia32-syscall_get_arguments.patch patches.suse/Documentation-ioctl-document-0x07-ioctl-code.patch patches.suse/scripts-sphinx-pre-install-remove-unnecessary-double.patch patches.suse/selftests-lib-remove-strscpy-test.patch + patches.suse/ALSA-usb-audio-Add-input-value-sanity-checks-for-sta.patch + patches.suse/ALSA-asihpi-Fix-potential-OOB-array-access.patch + patches.suse/ALSA-hdsp-Break-infinite-MIDI-input-flush-loop.patch + patches.suse/ALSA-hda-realtek-tas2781-Fix-ROG-ALLY-X-audio.patch + patches.suse/ALSA-usb-audio-Define-macros-for-quirk-table-entries.patch + patches.suse/ALSA-usb-audio-Replace-complex-quirk-lines-with-macr.patch patches.suse/ALSA-hda-cs35l41-fix-module-autoloading.patch + patches.suse/ALSA-hda-realtek-Enable-mic-on-Vaio-VJFH52.patch + patches.suse/ALSA-hda-realtek-Refactor-and-simplify-Samsung-Galax.patch + patches.suse/ALSA-usb-audio-Add-logitech-Audio-profile-quirk.patch patches.suse/ASoC-rt5682s-Return-devm_of_clk_add_hw_provider-to-t.patch patches.suse/ASoC-cs42l42-Convert-comma-to-semicolon.patch + patches.suse/ASoC-codecs-wsa883x-Handle-reading-version-failure.patch patches.suse/ASoC-tas2781-i2c-Get-the-right-GPIO-line.patch patches.suse/ASoC-rt5682-Return-devm_of_clk_add_hw_provider-to-tr.patch patches.suse/ASoC-soc-ac97-Fix-the-incorrect-description.patch patches.suse/ASoC-meson-Remove-unused-declartion-in-header-file.patch patches.suse/power-supply-axp20x_battery-Remove-design-from-min-a.patch patches.suse/power-supply-max17042_battery-Fix-SOC-threshold-calc.patch + patches.suse/power-reset-brcmstb-Do-not-go-into-infinite-loop-if-.patch patches.suse/power-supply-Drop-use_cnt-check-from-power_supply_pr.patch patches.suse/power-supply-hwmon-Fix-missing-temp1_max_alarm-attri.patch patches.suse/mtd-slram-insert-break-after-errors-in-parsing-the-m.patch patches.suse/mtd-powernv-Add-check-devm_kasprintf-returned-value.patch patches.suse/hwmon-max16065-Fix-overflows-seen-when-writing-limit.patch + patches.suse/hwmon-max16065-Fix-alarm-attributes.patch + patches.suse/hwmon-nct6775-add-G15CF-to-ASUS-WMI-monitoring-list.patch patches.suse/hwmon-ntc_thermistor-fix-module-autoloading.patch + patches.suse/iommu-vt-d-Always-reserve-a-domain-ID-for-identity-s.patch + patches.suse/iommu-vt-d-Fix-potential-lockup-if-qi_submit_sync-ca.patch + patches.suse/iommu-amd-Allocate-the-page-table-root-using-GFP_KER.patch + patches.suse/iommu-amd-Fix-typo-of-instead-of.patch + patches.suse/iommu-amd-Do-not-set-the-D-bit-on-AMD-v2-table-entri.patch patches.suse/fbdev-hpfb-Fix-an-error-handling-path-in-hpfb_dio_pr.patch + patches.suse/fbdev-efifb-Register-sysfs-groups-through-driver-cor.patch patches.suse/bpf-Fix-use-after-free-in-bpf_uprobe_multi_link_attach.patch + patches.suse/powerpc-vdso-Fix-VDSO-data-access-when-running-in-a-.patch + patches.suse/jfs-UBSAN-shift-out-of-bounds-in-dbFindBits.patch patches.suse/jfs-fix-out-of-bounds-in-dbNextAG-and-diAlloc.patch + patches.suse/jfs-Fix-uaf-in-dbFreeBits.patch + patches.suse/jfs-check-if-leafidx-greater-than-num-leaves-per-dmap-tree.patch + patches.suse/jfs-Fix-uninit-value-access-of-new_ea-in-ea_buffer.patch + patches.suse/powerpc-code-patching-Add-generic-memory-patching.patch + patches.suse/powerpc-64-Convert-patch_instruction-to-patch_u32.patch + patches.suse/powerpc-vdso-Inconditionally-use-CFUNC-macro.patch + patches.suse/powerpc-pseries-Use-correct-data-types-from-pseries_.patch + patches.suse/KVM-PPC-Book3S-HV-remove-unused-varible.patch + patches.suse/powerpc-atomic-Use-YZ-constraints-for-DS-form-instru.patch patches.suse/xen-use-correct-end-address-of-kernel-for-conflict-c.patch patches.suse/xen-introduce-generic-helper-checking-for-memory-map.patch patches.suse/xen-move-checks-for-e820-conflicts-further-up.patch @@ -26619,30 +27115,71 @@ patches.suse/xen-tolerate-ACPI-NVS-memory-overlapping-with-Xen-al.patch patches.suse/xen-swiotlb-add-alignment-check-for-dma-buffers.patch patches.suse/xen-swiotlb-fix-allocated-size.patch + patches.suse/platform-x86-lenovo-ymc-Ignore-the-0x0-state.patch + patches.suse/platform-x86-touchscreen_dmi-add-nanote-next-quirk.patch patches.suse/ipmi-ssif-Improve-detecting-during-probing.patch patches.suse/ipmi-docs-don-t-advertise-deprecated-sysfs-entries.patch patches.suse/tpm-Clean-up-TPM-space-after-command-failure.patch + patches.suse/HID-multitouch-Add-support-for-lenovo-Y9000P-Touchpa.patch + patches.suse/HID-multitouch-Add-support-for-Thinkpad-X12-Gen-2-Kb.patch patches.suse/HID-wacom-Support-sequence-numbers-smaller-than-16-b.patch patches.suse/HID-wacom-Do-not-warn-about-dropped-packets-for-firs.patch + patches.suse/HID-Ignore-battery-for-all-ELAN-I2C-HID-devices.patch patches.suse/ata-libata-Clear-DID_TIME_OUT-for-ATA-PT-commands-wi.patch patches.suse/drm-stm-Fix-an-error-handling-path-in-stm_drm_platfo.patch patches.suse/drm-stm-ltdc-check-memory-returned-by-devm_kzalloc.patch + patches.suse/drm-i915-hdcp-Add-encoder-check-in-intel_hdcp_get_ca.patch patches.suse/drm-rockchip-vop-clear-DMA-stop-bit-on-RK3066.patch patches.suse/drm-rockchip-vop-enable-VOP_FEATURE_INTERNAL_RGB-on-.patch patches.suse/drm-rockchip-vop-Allow-4096px-width-scaling.patch patches.suse/drm-rockchip-dw_hdmi-Fix-reading-EDID-when-using-a-f.patch patches.suse/drm-bridge-lontium-lt8912b-Validate-mode-in-drm_brid.patch patches.suse/drm-vc4-hdmi-Handle-error-case-of-pm_runtime_resume_.patch + patches.suse/drm-amd-display-Revert-Check-HDCP-returned-status.patch + patches.suse/drm-amd-display-Initialize-denominators-default-to-1.patch + patches.suse/0001-drm-amd-display-Check-null-initialized-variables.patch + patches.suse/drm-amd-display-Check-phantom_stream-before-it-is-us.patch + patches.suse/drm-amd-display-Pass-non-null-to-dcn20_validate_appl.patch + patches.suse/drm-amd-display-Check-null-pointers-before-using-the.patch + patches.suse/drm-amd-display-Check-stream-before-comparing-them.patch + patches.suse/drm-amd-display-Deallocate-DML-memory-if-allocation-.patch + patches.suse/0001-drm-amd-display-Check-link_res-hpo_dp_link_enc-befor.patch + patches.suse/0001-drm-amd-display-Check-null-pointers-before-used.patch + patches.suse/0001-drm-amd-display-Check-null-pointers-before-multiple-.patch patches.suse/drm-radeon-fix-null-pointer-dereference-in-radeon_ad.patch patches.suse/drm-amdgpu-fix-a-possible-null-pointer-dereference.patch + patches.suse/drm-amdkfd-amdkfd_free_gtt_mem-clear-the-correct-poi.patch + patches.suse/0001-drm-amd-display-Check-link_res-hpo_dp_link_enc-befor-1.patch + patches.suse/drm-amd-display-Fix-index-out-of-bounds-in-DCN30-deg.patch + patches.suse/drm-amd-display-Fix-index-out-of-bounds-in-degamma-h.patch + patches.suse/drm-amd-display-Fix-index-out-of-bounds-in-DCN30-col.patch + patches.suse/0001-drm-amd-display-Add-null-check-for-head_pipe-in-dcn2.patch + patches.suse/0001-drm-amd-display-Add-null-check-for-head_pipe-in-dcn3.patch + patches.suse/0001-drm-amd-display-Add-NULL-check-for-clk_mgr-and-clk_m.patch patches.suse/drm-amd-display-Add-null-check-for-set_output_gamma-.patch patches.suse/drm-amdgpu-properly-handle-vbios-fake-edid-sizing.patch patches.suse/drm-radeon-properly-handle-vbios-fake-edid-sizing.patch + patches.suse/0001-drm-amd-display-Add-null-check-for-pipe_ctx-plane_st.patch + patches.suse/drm-amd-display-Add-null-check-for-top_pipe_to_progr.patch + patches.suse/drm-amd-display-Initialize-get_bytes_per_element-s-d.patch + patches.suse/drm-amd-display-Handle-null-stream_status-in-planes_.patch + patches.suse/drm-amd-display-Add-NULL-check-for-function-pointer-2.patch + patches.suse/drm-amd-display-Add-NULL-check-for-function-pointer-.patch + patches.suse/0001-drm-amd-display-fix-a-UBSAN-warning-in-DML2.1.patch patches.suse/drm-amd-amdgpu-Properly-tune-the-size-of-struct.patch + patches.suse/0001-drm-amd-display-Add-null-check-for-afb-in-amdgpu_dm_.patch + patches.suse/0001-drm-amd-display-Check-null-pointers-before-using-dc-.patch + patches.suse/0001-drm-amd-display-Check-null-pointer-before-try-to-acc.patch patches.suse/drm-radeon-evergreen_cs-fix-int-overflow-errors-in-c.patch + patches.suse/drm-amd-display-fix-double-free-issue-during-amdgpu-.patch + patches.suse/drm-amd-pm-ensure-the-fw_info-is-not-null-before-usi.patch patches.suse/drm-omapdrm-Add-missing-check-for-alloc_ordered_work.patch + patches.suse/drm-Use-XArray-instead-of-IDR-for-minors.patch + patches.suse/accel-Use-XArray-instead-of-IDR-for-minors.patch + patches.suse/drm-Expand-max-DRM-device-number-to-full-MINORBITS.patch patches.suse/drm-mediatek-ovl_adaptor-Add-missing-of_node_put.patch patches.suse/drm-msm-Fix-incorrect-file-name-output-in-adreno_req.patch + patches.suse/drm-msm-adreno-Assign-msm_gpu-pdev-earlier-to-avoid-.patch patches.suse/drm-msm-a5xx-disable-preemption-in-submits-by-defaul.patch patches.suse/drm-msm-a5xx-properly-clear-preemption-records-on-re.patch patches.suse/drm-msm-a5xx-fix-races-in-preemption-evaluation-stag.patch @@ -26650,6 +27187,7 @@ patches.suse/drm-msm-dsi-correct-programming-sequence-for-SM8350-.patch patches.suse/drm-msm-fix-s-null-argument-error.patch patches.suse/drivers-drm-exynos_drm_gsc-Fix-wrong-assignment-in-g.patch + patches.suse/scsi-aacraid-Rearrange-order-of-struct-aac_srb_unit.patch patches.suse/scsi-lpfc-change-diagnostic-log-flag-during-receipt-of-unknown-els.patch patches.suse/scsi-lpfc-remove-redundant-vport-assignment-when-building-an-abort.patch patches.suse/scsi-lpfc-validate-hdwq-pointers-before-dereferencing-in.patch @@ -26658,6 +27196,14 @@ patches.suse/scsi-lpfc-update-prlo-handling-in-direct-attached-topology.patch patches.suse/scsi-lpfc-update-lpfc-version-to-14.4.0.4.patch patches.suse/scsi-lpfc-copyright-updates-for-14.4.0.4-patches.patch + patches.suse/scsi-smartpqi-revert-propagate-the-multipath-failure-to-SML-quickly.patch + patches.suse/scsi-mac_scsi-Revise-printk-KERN_DEBUG-.-messages.patch + patches.suse/scsi-mac_scsi-Refactor-polling-loop.patch + patches.suse/scsi-mac_scsi-Disallow-bus-errors-during-PDMA-send.patch + patches.suse/scsi-NCR5380-Check-for-phase-match-during-PDMA-fixup.patch + patches.suse/scsi-NCR5380-Initialize-buffer-for-MSG-IN-and-STATUS-transfers.patch + patches.suse/scsi-elx-libefc-Fix-potential-use-after-free-in-efc_nport_vport_del.patch + patches.suse/scsi-smartpqi-correct-stream-detection.patch patches.suse/ocfs2-fix-null-ptr-deref-when-journal-load-failed.patch patches.suse/ocfs2-remove-unreasonable-unlock-in-ocfs2_read_blocks.patch patches.suse/ocfs2-fix-possible-null-ptr-deref-in-ocfs2_set_buffer_uptodate.patch @@ -26665,13 +27211,77 @@ patches.suse/resource-fix-region_intersects-vs-add_memory_driver_.patch patches.suse/i2c-aspeed-Update-the-stop-sw-state-when-the-bus-rec.patch patches.suse/i2c-xiic-Wait-for-TX-empty-to-avoid-missed-TX-NAKs.patch + patches.suse/i2c-xiic-Try-re-initialization-on-bus-busy-timeout.patch patches.suse/i2c-isch-Add-missed-else.patch patches.suse/i2c-qcom-geni-Use-IRQF_NO_AUTOEN-flag-in-request_irq.patch patches.suse/kthread-Fix-task-state-in-kthread-worker-if-being-frozen.patch + patches.suse/ext4-filesystems-without-casefold-feature-cannot-be-.patch + patches.suse/ext4-no-need-to-continue-when-the-number-of-entries-i.patch + patches.suse/ext4-fix-timer-use-after-free-on-failed-mount.patch + patches.suse/ext4-fix-fast-commit-inode-enqueueing-during-a-full-j.patch + patches.suse/ext4-fix-access-to-uninitialised-lock-in-fc-replay-p.patch + patches.suse/jbd2-stop-waiting-for-space-when-jbd2_cleanup_journa.patch + patches.suse/jbd2-fix-kernel-doc-for-j_transaction_overhead_buffe.patch + patches.suse/ext4-fix-incorrect-tid-assumption-in-ext4_fc_mark_ine.patch + patches.suse/jbd2-correctly-compare-tids-with-tid_geq-function-in-.patch + patches.suse/ext4-dax-fix-overflowing-extents-beyond-inode-size-w.patch + patches.suse/ext4-ext4_search_dir-should-return-a-proper-error.patch + patches.suse/ext4-return-error-on-ext4_find_inline_entry.patch + patches.suse/ext4-explicitly-exit-when-ext4_find_inline_entry-ret.patch + patches.suse/ext4-avoid-OOB-when-system.data-xattr-changes-undern.patch + patches.suse/ext4-fix-slab-use-after-free-in-ext4_split_extent_at.patch + patches.suse/ext4-update-orig_path-in-ext4_find_extent.patch + patches.suse/ext4-aovid-use-after-free-in-ext4_ext_insert_extent.patch + patches.suse/ext4-drop-ppath-from-ext4_ext_replay_update_ex-to-av.patch + patches.suse/ext4-fix-double-brelse-the-buffer-of-the-extents-path.patch + patches.suse/ext4-fix-error-message-when-rejecting-the-default-ha.patch + patches.suse/ext4-fix-i_data_sem-unlock-order-in-ext4_ind_migrate.patch + patches.suse/vduse-avoid-using-__GFP_NOFAIL.patch + patches.suse/uprobes-introduce-the-global-struct-vm_special_mapping-xol_mapping.patch + patches.suse/uprobes-turn-xol_area-pages-2-into-xol_area-page.patch + patches.suse/zram-free-secondary-algorithms-names.patch patches.suse/xz-cleanup-CRC32-edits-from-2018.patch patches.suse/nilfs2-fix-potential-null-ptr-deref-in-nilfs_btree_insert.patch patches.suse/nilfs2-determine-empty-node-blocks-as-corrupted.patch patches.suse/nilfs2-fix-potential-oob-read-in-nilfs_btree_check_delete.patch + patches.suse/s390-mm-Add-cond_resched-to-cmm_alloc-free_pages.patch + patches.suse/bpf-lsm-Add-disabled-BPF-LSM-hook-list.patch + patches.suse/bpf-lsm-Add-check-for-BPF-LSM-return-value.patch + patches.suse/bpf-Prevent-tail-call-between-progs-attached-to-diff.patch + patches.suse/bpf-Fix-compare-error-in-function-retval_range_withi.patch + patches.suse/selftests-bpf-Add-return-value-checks-for-failed-tes.patch + patches.suse/selftests-bpf-Add-test-for-lsm-tail-call.patch + patches.suse/selftests-bpf-Add-verifier-tests-for-bpf-lsm.patch + patches.suse/selftests-bpf-Workaround-strict-bpf_lsm-return-value.patch + patches.suse/bpf-Fail-verification-for-sign-extension-of-packet-d.patch + patches.suse/selftests-bpf-Add-tests-for-ldsx-of-pkt-data-data_en.patch + patches.suse/bpf-correctly-handle-malformed-BPF_CORE_TYPE_ID_LOCA.patch + patches.suse/selftests-bpf-test-for-malformed-BPF_CORE_TYPE_ID_LO.patch + patches.suse/bpf-Fix-error-message-on-kfunc-arg-type-mismatch.patch + patches.suse/bpftool-Fix-undefined-behavior-in-qsort-NULL-0.patch + patches.suse/bpf-Fix-a-sdiv-overflow-issue.patch + patches.suse/selftests-bpf-Add-tests-for-sdiv-smod-overflow-cases.patch + patches.suse/bpf-Fix-bpf_strtol-and-bpf_strtoul-helpers-for-32bit.patch + patches.suse/bpf-Remove-truncation-test-in-bpf_strtol-and-bpf_str.patch + patches.suse/bpf-Fix-helper-writes-to-read-only-maps.patch + patches.suse/bpf-Improve-check_raw_mode_ok-test-for-MEM_UNINIT-ta.patch + patches.suse/bpf-Zero-former-ARG_PTR_TO_-LONG-INT-args-in-case-of.patch + patches.suse/selftests-bpf-Fix-ARG_PTR_TO_LONG-half-uninitialized.patch + patches.suse/selftests-bpf-Rename-ARG_PTR_TO_LONG-test-descriptio.patch + patches.suse/selftests-bpf-Add-a-test-case-to-write-strtol-result.patch + patches.suse/selftests-bpf-Add-a-test-case-to-write-mtu-result-in.patch + patches.suse/x86-support-user-address-masking-instead-of-non-speculativ.patch + patches.suse/x86-do-the-user-address-masking-outside-the-user-access-ar.patch + patches.suse/x86-make-the-masked_user_access_begin-macro-use-its-argume.patch + patches.suse/btrfs-fix-race-setting-file-private-on-concurrent-ls.patch + patches.suse/nfsd-remove-unneeded-EEXIST-error-check-in-nfsd_do_file_acquire.patch + patches.suse/nfsd-fix-refcount-leak-when-file-is-unhashed-after-being-found.patch + patches.suse/NFSD-Fix-NFSv4-s-PUTPUBFH-operation.patch + patches.suse/nfsd-map-the-EBADMSG-to-nfserr_io-to-avoid-warning.patch + patches.suse/nfsd-call-cache_put-if-xdr_reserve_space-returns-NULL.patch + patches.suse/nfsd-return-EINVAL-when-namelen-is-0.patch + patches.suse/nfsd-fix-delegation_blocked-to-block-correctly-for-at-least-30-seconds.patch + patches.suse/PCI-Add-function-0-DMA-alias-quirk-for-Glenfly-Arise.patch patches.suse/PCI-Wait-for-Link-before-restoring-Downstream-Buses.patch patches.suse/PCI-dra7xx-Fix-threaded-IRQ-request-for-dra7xx-pcie-.patch patches.suse/PCI-dra7xx-Fix-error-handling-when-IRQ-request-fails.patch @@ -26681,25 +27291,52 @@ patches.suse/PCI-qcom-ep-Enable-controller-resources-like-PHY-onl.patch patches.suse/PCI-xilinx-nwl-Fix-off-by-one-in-INTx-IRQ-handler.patch patches.suse/PCI-xilinx-nwl-Clean-up-clock-on-probe-failure-remov.patch + patches.suse/PCI-Add-ACS-quirk-for-Qualcomm-SA8775P.patch + patches.suse/PCI-Mark-Creative-Labs-EMU20k2-INTx-masking-as-broke.patch + patches.suse/x86-PCI-Check-pcie_find_root_port-return-for-NULL.patch + patches.suse/ntb-intel-Fix-the-NULL-vs-IS_ERR-bug-for-debugfs_cre.patch + patches.suse/ntb-ntb_hw_switchtec-Fix-use-after-free-vulnerabilit.patch patches.suse/pinctrl-single-fix-missing-error-code-in-pcs_probe.patch patches.suse/watchdog-imx_sc_wdt-Don-t-disable-WDT-in-suspend.patch + patches.suse/soundwire-intel_bus_common-enable-interrupts-before-.patch + patches.suse/mfd-intel_soc_pmic_chtwc-Make-Lenovo-Yoga-Tab-3-X90F.patch + patches.suse/i2c-ismt-kill-transaction-in-hardware-on-timeout.patch + patches.suse/i2c-core-Setup-i2c_adapter-runtime-pm-before-calling.patch + patches.suse/i2c-i801-Use-a-different-adapter-name-for-IDF-adapte.patch + patches.suse/clk-bcm-bcm53573-fix-OF-node-leak-in-init.patch patches.suse/clk-ti-dra7-atl-Fix-leak-of-of_nodes.patch + patches.suse/clk-imx-Remove-CLK_SET_PARENT_GATE-for-DRAM-mux-for-.patch patches.suse/media-uapi-linux-cec.h-cec_msg_set_reply_to-zero-fla.patch patches.suse/drivers-media-dvb-frontends-rtl2832-fix-an-out-of-bo.patch patches.suse/drivers-media-dvb-frontends-rtl2830-fix-an-out-of-bo.patch patches.suse/Revert-media-tuners-fix-error-return-code-of-hybrid_.patch patches.suse/media-qcom-camss-Remove-use_count-guard-in-stop_stre.patch + patches.suse/media-videobuf2-core-clear-memory-related-fields-in-.patch patches.suse/media-vicodec-allow-en-decoder-cmd-w-o-CAPTURE.patch patches.suse/media-venus-fix-use-after-free-bug-in-venus_remove-d.patch + patches.suse/media-mediatek-vcodec-Fix-H264-multi-stateless-decod.patch + patches.suse/media-mediatek-vcodec-Fix-VP8-stateless-decoder-smat.patch + patches.suse/media-mediatek-vcodec-Fix-H264-stateless-decoder-sma.patch patches.suse/media-platform-rzg2l-cru-rzg2l-csi2-Add-missing-MODU.patch patches.suse/media-sun4i_csi-Implement-link-validate-for-sun4i_cs.patch patches.suse/media-ov5675-Fix-power-on-off-delay-timings.patch patches.suse/media-i2c-ar0521-Use-cansleep-version-of-gpiod_set_v.patch + patches.suse/media-imx335-Fix-reset-gpio-handling.patch + patches.suse/mm-call-the-security_mmap_file-LSM-hook-in-remap_file_pages.patch patches.suse/KEYS-prevent-NULL-pointer-dereference-in-find_asymme.patch + patches.suse/crypto-powerpc-p10-aes-gcm-Disable-CRYPTO_AES_GCM_P1.patch + patches.suse/io_uring-sqpoll-retain-test-for-whether-the-CPU-is-v.patch + patches.suse/io_uring-sqpoll-do-not-put-cpumask-on-stack.patch + patches.suse/io_uring-check-for-presence-of-task_work-rather-than.patch + patches.suse/io_uring-check-if-we-need-to-reschedule-during-overf.patch + patches.suse/RDMA-mad-Improve-handling-of-timed-out-WRs-of-mad-ag.patch patches.suse/RDMA-core-Remove-unused-declaration-rdma_resolve_ip_.patch patches.suse/RDMA-iwcm-Fix-WARNING-at_kernel-workqueue.c-check_fl.patch patches.suse/RDMA-rtrs-Reset-hb_missed_cnt-after-receiving-other-.patch patches.suse/RDMA-rtrs-clt-Reset-cid-to-con_num-1-to-stay-in-boun.patch + patches.suse/RDMA-rtrs-srv-Avoid-null-pointer-deref-during-path-e.patch + patches.suse/msft-hv-3065-RDMA-mana_ib-use-the-correct-page-table-index-based-.patch + patches.suse/msft-hv-3066-RDMA-mana_ib-use-the-correct-page-size-for-mapping-u.patch patches.suse/IB-core-Fix-ib_cache_setup_one-error-flow-cleanup.patch patches.suse/RDMA-erdma-Return-QP-state-in-erdma_query_qp.patch patches.suse/RDMA-mlx5-Drop-redundant-work-canceling-from-clean_k.patch @@ -26714,60 +27351,990 @@ patches.suse/RDMA-hns-Fix-1bit-ECC-recovery-address-in-non-4K-OS.patch patches.suse/RDMA-hns-Optimize-hem-allocation-performance.patch patches.suse/RDMA-hns-Fix-restricted-__le16-degrades-to-integer-i.patch + patches.suse/RDMA-mlx5-Enforce-umem-boundaries-for-explicit-ODP-p.patch patches.suse/RDMA-mlx5-Obtain-upper-net-device-only-when-needed.patch patches.suse/RDMA-hns-Fix-ah-error-counter-in-sw-stat-not-increas.patch patches.suse/RDMA-cxgb4-Added-NULL-check-for-lookup_atid.patch patches.suse/RDMA-irdma-fix-error-message-in-irdma_modify_qp_roce.patch + patches.suse/iommufd-Check-the-domain-owner-of-the-parent-before-.patch + patches.suse/iommufd-Protect-against-overflow-of-ALIGN-during-iov.patch patches.suse/remoteproc-imx_rproc-Correct-ddr-alias-for-i.MX8M.patch patches.suse/remoteproc-imx_rproc-Initialize-workqueue-earlier.patch patches.suse/remoteproc-k3-r5-Fix-error-handling-when-power-up-fa.patch + patches.suse/Input-i8042-add-TUXEDO-Stellaris-16-Gen5-AMD-to-i804.patch + patches.suse/Input-i8042-add-another-board-name-for-TUXEDO-Stella.patch + patches.suse/Input-i8042-add-TUXEDO-Stellaris-15-Slim-Gen6-AMD-to.patch patches.suse/Input-adp5588-keys-fix-check-on-return-code.patch patches.suse/Input-tsc2004-5-do-not-hard-code-interrupt-trigger.patch patches.suse/Input-tsc2004-5-fix-reset-handling-on-probe.patch patches.suse/Input-ilitek_ts_i2c-avoid-wrong-input-subsystem-sync.patch patches.suse/Input-ps2-gpio-use-IRQF_NO_AUTOEN-flag-in-request_ir.patch + patches.suse/i3c-master-cdns-Fix-use-after-free-vulnerability-in-.patch patches.suse/i3c-master-svc-Fix-use-after-free-vulnerability-in-s.patch patches.suse/exfat-fix-memory-leak-in-exfat_load_bitmap.patch + patches.suse/nfs-fix-memory-leak-in-error-path-of-nfs4_do_reclaim.patch + patches.suse/SUNRPC-clnt.c-Remove-misleading-comment.patch patches.suse/rtc-at91sam9-fix-OF-node-leak-in-probe-error-path.patch patches.suse/spi-atmel-quadspi-Undo-runtime-PM-changes-at-driver-.patch patches.suse/spi-spi-fsl-lpspi-Undo-runtime-PM-changes-at-driver-.patch patches.suse/spi-atmel-quadspi-Avoid-overwriting-delay-register-s.patch patches.suse/nvme-multipath-system-fails-to-create-generic-nvme-d.patch patches.suse/nvme-multipath-avoid-hang-on-inaccessible-namespaces.patch - patches.suse/usb-dwc2-Skip-clock-gating-on-Broadcom-SoCs.patch + patches.suse/nvme-null-terminate-nvme_tls_attrs.patch + patches.suse/vdpa-mlx5-Fix-invalid-mr-resource-destroy.patch + patches.suse/vhost_vdpa-assign-irq-bypass-producer-token-correctl.patch + patches.suse/virtio_pmem-Check-device-status-before-requesting-fl.patch + patches.suse/usb-chipidea-udc-enable-suspend-interrupt-after-usb-.patch + patches.suse/usb-dwc2-Adjust-the-timing-of-USB-Driver-Interrupt-R.patch + patches.suse/usb-gadget-dummy_hcd-execute-hrtimer-callback-in-sof.patch patches.suse/xhci-Set-quirky-xHC-PCI-hosts-to-D3-_after_-stopping.patch patches.suse/USB-serial-kobil_sct-restore-initial-terminal-settin.patch patches.suse/USB-serial-pl2303-add-device-id-for-Macrosilicon-MS3.patch patches.suse/USB-usbtmc-prevent-kernel-usb-infoleak.patch patches.suse/usb-cdnsp-Fix-incorrect-usb_request-status.patch patches.suse/usb-dwc2-drd-fix-clock-gating-on-USB-role-switch.patch + patches.suse/usb-xhci-fix-loss-of-data-on-Cadence-xHC.patch patches.suse/USB-class-CDC-ACM-fix-race-between-get_serial-and-se.patch + patches.suse/USB-appledisplay-close-race-between-probe-and-comple.patch + patches.suse/USB-misc-cypress_cy7c63-check-for-short-transfer.patch + patches.suse/USB-misc-yurex-fix-race-between-read-and-write.patch + patches.suse/serial-protect-uart_port_dtr_rts-in-uart_shutdown-to.patch patches.suse/tty-rp2-Fix-reset-with-non-forgiving-PCIe-host-bridg.patch patches.suse/iio-adc-ad7606-fix-oversampling-gpio-array.patch patches.suse/iio-adc-ad7606-fix-standby-gpio-state-to-match-the-d.patch patches.suse/ABI-testing-fix-admv8818-attr-description.patch patches.suse/iio-chemical-bme680-Fix-read-write-ops-to-device-by-.patch + patches.suse/iio-magnetometer-ak8975-drop-incorrect-AK09116-compa.patch patches.suse/iio-magnetometer-ak8975-Fix-reading-for-ak099xx-sens.patch + patches.suse/comedi-ni_routing-tools-Check-when-the-file-could-no.patch + patches.suse/netfilter-nf_reject_ipv6-fix-nf_reject_ip6_tcphdr_pu.patch + patches.suse/net-seeq-Fix-use-after-free-vulnerability-in-ether3-.patch + patches.suse/tcp-check-skb-is-non-NULL-in-tcp_rto_delta_us.patch + patches.suse/r8169-add-tally-counter-fields-added-with-RTL8125.patch + patches.suse/usbnet-fix-cyclical-race-on-disconnect-with-work-que.patch + patches.suse/efistub-tpm-Use-ACPI-reclaim-memory-for-event-log-to.patch patches.suse/ep93xx-clock-Fix-off-by-one-in-ep93xx_div_recalc_rat.patch patches.suse/driver-core-Fix-error-handling-in-driver-API-device_.patch + patches.suse/driver-core-bus-Return-EIO-instead-of-0-when-show-st.patch + patches.suse/driver-core-bus-Fix-double-free-in-driver-API-bus_re.patch patches.suse/driver-core-Fix-a-potential-null-ptr-deref-in-module.patch patches.suse/firmware_loader-Block-path-traversal.patch patches.suse/ata-libata-scsi-Fix-ata_msense_control-CDL-page-repo.patch + patches.suse/ocfs2-reserve-space-for-inline-xattr-before-attaching-reflink-tree.patch + patches.suse/zram-don-t-free-statically-defined-names.patch + patches.suse/ocfs2-fix-uninit-value-in-ocfs2_get_block.patch patches.suse/cxl-pci-Fix-to-record-only-non-zero-ranges.patch patches.suse/tomoyo-fallback-to-realpath-if-symlink-s-pathname-do.patch + patches.suse/0001-intel_idle-fix-ACPI-_CST-matching-for-newer-Xeon-pla.patch + patches.suse/smb-client-fix-UAF-in-async-decryption.patch patches.suse/ceph-remove-the-incorrect-Fw-reference-check-when-dir.patch + patches.suse/drm-amd-display-Round-calculated-vtotal.patch + patches.suse/drm-amd-display-Clean-up-dsc-blocks-in-accelerated-m.patch + patches.suse/drm-amd-display-Add-HDMI-DSC-native-YCbCr422-support.patch + patches.suse/drm-amd-display-Check-null-pointer-before-dereferenc.patch + patches.suse/drm-amd-display-Skip-to-enable-dsc-if-it-has-been-of.patch + patches.suse/drm-amd-display-Validate-backlight-caps-are-sane.patch patches.suse/drm-amdgpu-Fix-get-each-xcp-macro.patch patches.suse/drm-amd-display-handle-nulled-pipe-context-in-DCE110.patch + patches.suse/drm-amdgpu-vcn-enable-AV1-on-both-instances.patch + patches.suse/fbcon-Fix-a-NULL-pointer-dereference-issue-in-fbcon_.patch + patches.suse/fbdev-sisfb-Fix-strbuf-array-overflow.patch + patches.suse/module-abort-module-loading-when-sysfs-setup-suffer-errors.patch + patches.suse/KVM-s390-Fix-SORTL-and-DFLTCC-instruction-format-error-in-__insn32_query.patch + patches.suse/KVM-Use-dedicated-mutex-to-protect-kvm_usage_count-t.patch + patches.suse/KVM-Fix-coalesced_mmio_has_room-to-avoid-premature-u.patch + patches.suse/KVM-Write-the-per-page-segment-when-clearing-part-of.patch + patches.suse/KVM-SVM-Disallow-guest-from-changing-userspace-s-MSR.patch + patches.suse/KVM-x86-Enforce-x2APIC-s-must-be-zero-reserved-ICR-b.patch + patches.suse/KVM-x86-Move-x2APIC-ICR-helper-above-kvm_apic_write_.patch + patches.suse/KVM-x86-Re-split-x2APIC-ICR-into-ICR-ICR2-for-AMD-x2.patch + patches.suse/KVM-x86-Re-enter-guest-if-WRMSR-X2APIC_ICR-fastpath-.patch + patches.suse/KVM-x86-Dedup-fastpath-MSR-post-handling-logic.patch + patches.suse/KVM-x86-Exit-to-userspace-if-fastpath-triggers-one-o.patch + patches.suse/KVM-x86-mmu-Trigger-unprotect-logic-only-on-write-pr.patch + patches.suse/KVM-x86-mmu-Skip-emulation-on-page-fault-iff-1-SPs-w.patch + patches.suse/KVM-VMX-Also-clear-SGX-EDECCSSA-in-KVM-CPU-caps-when.patch + patches.suse/KVM-VMX-Set-PFERR_GUEST_-FINAL-PAGE-_MASK-if-and-onl.patch + patches.suse/static_call-Handle-module-init-failure-correctly-in-static_call_del_module.patch + patches.suse/static_call-Replace-pointless-WARN_ON-in-static_call_module_notify.patch + patches.suse/jump_label-Fix-static_key_slow_dec-yet-again.patch + patches.suse/x86-tdx-Fix-in-kernel-MMIO-check.patch patches.suse/scsi-ibmvfc-Add-max_sectors-module-parameter.patch + patches.suse/scsi-lpfc-Remove-trailing-space-after-n-newline.patch + patches.suse/scsi-pm8001-Do-not-overwrite-PCI-queue-mapping.patch patches.suse/scsi-sd-Fix-off-by-one-error-in-sd_read_block_charac.patch + patches.suse/scsi-lpfc-Add-ELS_RSP-cmd-to-the-list-of-WQEs-to-flu.patch + patches.suse/scsi-lpfc-Update-phba-link-state-conditional-before-.patch + patches.suse/scsi-lpfc-Restrict-support-for-32-byte-CDBs-to-speci.patch + patches.suse/scsi-lpfc-Fix-kref-imbalance-on-fabric-ndlps-from-de.patch + patches.suse/scsi-lpfc-Ensure-DA_ID-handling-completion-before-de.patch + patches.suse/scsi-lpfc-Revise-TRACE_EVENT-log-flag-severities-fro.patch + patches.suse/scsi-lpfc-Support-loopback-tests-with-VMID-enabled.patch + patches.suse/scsi-lpfc-Update-lpfc-version-to-14.4.0.5.patch patches.suse/i2c-designware-fix-controller-is-holding-SCL-low-whi.patch + patches.suse/i2c-synquacer-Deal-with-optional-PCLK-correctly.patch patches.suse/mailbox-rockchip-fix-a-typo-in-module-autoloading.patch patches.suse/mailbox-bcm2835-Fix-timeout-during-suspend-mode.patch patches.suse/cachefiles-fix-dentry-leak-in-cachefiles_open_file.patch + patches.suse/uprobes-fix-kernel-info-leak-via-uprobes-vma.patch + patches.suse/Input-adp5589-keys-fix-NULL-pointer-dereference.patch + patches.suse/Input-adp5589-keys-fix-adp5589_gpio_get_value.patch + patches.suse/net-avoid-potential-underflow-in-qdisc_pkt_len_init-.patch + patches.suse/ieee802154-Fix-build-error.patch + patches.suse/Bluetooth-L2CAP-Fix-uaf-in-l2cap_connect.patch + patches.suse/Bluetooth-btmrvl-Use-IRQF_NO_AUTOEN-flag-in-request_.patch + patches.suse/Bluetooth-hci_event-Align-BR-EDR-JUST_WORKS-paring-w.patch + patches.suse/net-mlx5-Fix-error-path-in-multi-packet-WQE-transmit.patch + patches.suse/net-mlx5-Added-cond_resched-to-crdump-collection.patch + patches.suse/net-mlx5e-Fix-NULL-deref-in-mlx5e_tir_builder_alloc.patch + patches.suse/net-mlx5e-Fix-crash-caused-by-calling-__xfrm_state_d.patch + patches.suse/net-test-for-not-too-small-csum_start-in-virtio_net_.patch + patches.suse/ppp-do-not-assume-bh-is-held-in-ppp_channel_bridge_i.patch + patches.suse/net-ncsi-Disable-the-ncsi-work-before-freeing-the-as.patch + patches.suse/netfilter-nf_tables-prevent-nf_skb_duplicated-corrup.patch + patches.suse/sctp-set-sk_state-back-to-CLOSED-if-autobind-fails-i.patch + patches.suse/cifs-Fix-buffer-overflow-when-parsing-NFS-reparse-points.patch + patches.suse/btrfs-send-fix-invalid-clone-operation-for-file-that.patch + patches.suse/btrfs-fix-a-NULL-pointer-dereference-when-failed-to-start-.patch + patches.suse/btrfs-wait-for-fixup-workers-before-stopping-cleaner.patch + patches.suse/ceph-fix-cap-ref-leak-via-netfs-init_request.patch + patches.suse/io_uring-net-harden-multishot-termination-case-for-r.patch + patches.suse/aoe-fix-the-potential-use-after-free-problem-in-more.patch + patches.suse/drm-vboxvideo-Replace-fake-VLA-at-end-of-vbva_mouse_.patch + patches.suse/drm-Consistently-use-struct-drm_mode_rect-for-FB_DAM.patch + patches.suse/drm-amd-display-update-DML2-policy-EnhancedPrefetchS.patch + patches.suse/drm-amd-display-Fix-system-hang-while-resume-with-TB.patch + patches.suse/drm-sched-Add-locking-to-drm_sched_entity_modify_sch.patch + patches.suse/drm-sched-Always-wake-up-correct-scheduler-in-drm_sc.patch + patches.suse/drm-i915-gem-fix-bitwise-and-logical-AND-mixup.patch + patches.suse/ALSA-hda-realtek-fix-mute-micmute-LED-for-HP-mt645-G.patch + patches.suse/ALSA-hda-tas2781-Add-new-quirk-for-Lenovo-Y990-Lapto.patch + patches.suse/ALSA-usb-audio-Add-delay-quirk-for-VIVO-USB-C-HEADSE.patch + patches.suse/ALSA-hda-realtek-Add-quirk-for-Huawei-MateBook-13-KL.patch + patches.suse/ALSA-mixer_oss-Remove-some-incorrect-kfree_const-usa.patch + patches.suse/ALSA-hda-conexant-fix-some-typos.patch + patches.suse/ALSA-hda-realtek-Fix-the-push-button-function-for-th.patch + patches.suse/ALSA-Reorganize-kerneldoc-parameter-names.patch + patches.suse/ALSA-silence-integer-wrapping-warning.patch + patches.suse/ALSA-hda-generic-Unconditionally-prefer-preferred_da.patch + patches.suse/ALSA-hda-realtek-Add-a-quirk-for-HP-Pavilion-15z-ec2.patch + patches.suse/Revert-ALSA-hda-Conditionally-use-snooping-for-AMD-H.patch + patches.suse/ASoC-amd-yc-Add-quirk-for-HP-Dragonfly-pro-one.patch + patches.suse/ASoC-atmel-mchp-pdmc-Skip-ALSA-restoration-if-substr.patch + patches.suse/ASoC-codecs-lpass-rx-macro-add-missing-CDC_RX_BCL_VB.patch + patches.suse/ASoC-fsl_sai-Enable-FIFO-continue-on-error-FCONT-bit.patch + patches.suse/ASoC-imx-card-Set-card.owner-to-avoid-a-warning-call.patch + patches.suse/ASoC-qcom-sm8250-add-qrb4210-rb2-sndcard-compatible-.patch + patches.suse/ALSA-core-add-isascii-check-to-card-ID-generator.patch + patches.suse/ALSA-usb-audio-Add-native-DSD-support-for-Luxman-D-0.patch + patches.suse/ALSA-line6-add-hw-monitor-volume-control-to-POD-HD50.patch + patches.suse/ALSA-hda-conexant-Fix-conflicting-quirk-for-System76.patch + patches.suse/gpio-davinci-fix-lazy-disable.patch + patches.suse/cpufreq-Avoid-a-bad-reference-count-on-CPU-node.patch + patches.suse/ACPI-resource-Add-Asus-Vivobook-X1704VAP-to-irq1_lev.patch + patches.suse/ACPI-resource-Add-Asus-ExpertBook-B2502CVA-to-irq1_l.patch + patches.suse/ACPI-battery-Simplify-battery-hook-locking.patch + patches.suse/ACPI-battery-Fix-possible-crash-when-unregistering-a.patch + patches.suse/tracing-timerlat-Fix-duplicated-kthread-creation-due-to-CPU-online-offline.patch + patches.suse/tracing-timerlat-Drop-interface_lock-in-stop_kthread.patch + patches.suse/tracing-timerlat-Fix-a-race-during-cpuhp-processing.patch + patches.suse/tracing-hwlat-Fix-a-race-during-cpuhp-processing.patch + patches.suse/arm64-cputype-Add-Neoverse-N3-definitions.patch + patches.suse/arm64-errata-Expand-speculative-SSBS-workaround-once-more.patch + patches.suse/arm64-fix-selection-of-HAVE_DYNAMIC_FTRACE_WITH_ARGS.patch + patches.suse/arm64-Subscribe-Microsoft-Azure-Cobalt-100-to-erratum-3194386.patch + patches.suse/spi-atmel-quadspi-Fix-wrong-register-value-written-t.patch + patches.suse/spi-s3c64xx-fix-timeout-counters-in-flush_fifo.patch + patches.suse/spi-spi-imx-Fix-pm_runtime_set_suspended-with-runtim.patch + patches.suse/i2c-stm32f7-Do-not-prepare-unprepare-clock-during-ru.patch + patches.suse/ext4-use-handle-to-mark-fc-as-ineligible-in-__track_d.patch + patches.suse/ext4-mark-fc-as-ineligible-using-an-handle-in-ext4_xa.patch + patches.suse/platform-x86-ISST-Fix-the-KASAN-report-slab-out-of-b.patch + patches.suse/platform-x86-dell-sysman-add-support-for-alienware-p.patch + patches.suse/platform-x86-x86-android-tablets-Fix-use-after-free-.patch + patches.suse/kconfig-qconf-fix-buffer-overflow-in-debug-links.patch + patches.suse/virtio_console-fix-misc-probe-bugs.patch + patches.suse/vhost-scsi-null-ptr-dereference-in-vhost_scsi_get_re.patch + patches.suse/ntfs3-Add-bounds-checking-to-mi_enum_attr.patch + patches.suse/fs-ntfs3-Add-rough-attr-alloc_size-check.patch + patches.suse/fs-ntfs3-Fix-possible-deadlock-in-mi_read.patch + patches.suse/fs-ntfs3-Sequential-field-availability-check-in-mi_e.patch + patches.suse/unicode-Don-t-special-case-ignorable-code-points.patch + patches.suse/kthread-unpark-only-parked-kthread.patch + patches.suse/device-dax-correct-pgoff-align-in-dax_set_mapping.patch + patches.suse/secretmem-disable-memfd_secret-if-arch-cannot-set-direct-map.patch + patches.suse/NFSD-Mark-filecache-down-if-init-fails.patch + patches.suse/net-phy-dp83869-fix-memory-corruption-when-enabling-.patch + patches.suse/rxrpc-Fix-a-race-between-socket-set-up-and-I-O-thread-creation.patch + patches.suse/ice-set-correct-dst-VSI-in-only-LAN-filters.patch + patches.suse/ice-Fix-improper-handling-of-refcount-in-ice_dpll_in.patch + patches.suse/ice-Fix-improper-handling-of-refcount-in-ice_sriov_s.patch + patches.suse/ice-clear-port-vlan-config-during-reset.patch + patches.suse/ice-disallow-DPLL_PIN_STATE_SELECTABLE-for-dpll-outp.patch + patches.suse/ice-fix-VLAN-replay-after-reset.patch + patches.suse/netfilter-br_netfilter-fix-panic-with-metadata_dst-s.patch + patches.suse/net-Fix-an-unsafe-loop-on-the-list.patch + patches.suse/net-phy-bcm84881-Fix-some-error-handling-paths.patch + patches.suse/net-explicitly-clear-the-sk-pointer-when-pf-create-fails.patch + patches.suse/Bluetooth-RFCOMM-FIX-possible-deadlock-in-rfcomm_sk_.patch + patches.suse/net-phy-Remove-LED-entry-from-LEDs-list-on-unregiste.patch + patches.suse/ice-Fix-netif_is_ice-in-Safe-Mode.patch + patches.suse/ice-Flush-FDB-entries-before-reset.patch + patches.suse/ice-Fix-increasing-MSI-X-on-VF.patch + patches.suse/i40e-Fix-macvlan-leak-by-synchronizing-access-to-mac.patch + patches.suse/igb-Do-not-bring-the-device-up-after-non-fatal-error.patch + patches.suse/e1000e-change-I219-19-devices-to-ADP.patch + patches.suse/ppp-fix-ppp_async_encode-illegal-access.patch + patches.suse/slip-make-slhc_remember-more-robust-against-maliciou.patch + patches.suse/drm-i915-hdcp-fix-connector-refcounting.patch + patches.suse/drm-v3d-Stop-the-active-perfmon-before-being-destroy.patch + patches.suse/drm-vc4-Stop-the-active-perfmon-before-being-destroy.patch + patches.suse/nouveau-dmem-Fix-privileged-error-in-copy-engine-cha.patch + patches.suse/nouveau-dmem-Fix-vulnerability-in-migrate_to_ram-upo.patch + patches.suse/ata-libata-avoid-superfluous-disk-spin-down-spin-up-.patch + patches.suse/thermal-core-Reference-count-the-zone-in-thermal_zon.patch + patches.suse/thermal-core-Free-tzp-copy-along-with-the-thermal-zo.patch + patches.suse/thermal-intel-int340x-processor-Fix-warning-during-m.patch + patches.suse/io_uring-rw-fix-cflags-posting-for-single-issue-mult.patch + patches.suse/SUNRPC-Fix-integer-overflow-in-decode_rc_list.patch + patches.suse/NFSv4-Prevent-NULL-pointer-dereference-in-nfs42_complete_copies.patch + patches.suse/NFS-remove-revoked-delegation-from-server-s-delegation-list.patch + patches.suse/gpio-aspeed-Add-the-flush-write-to-ensure-the-write-.patch + patches.suse/gpio-aspeed-Use-devm_clk-api-to-manage-clock-source.patch + patches.suse/hwmon-intel-m10-bmc-hwmon-relabel-Columbiaville-to-C.patch + patches.suse/hwmon-tmp513-Add-missing-dependency-on-REGMAP_I2C.patch + patches.suse/hwmon-mc34vr500-Add-missing-dependency-on-REGMAP_I2C.patch + patches.suse/hwmon-adm9240-Add-missing-dependency-on-REGMAP_I2C.patch + patches.suse/hwmon-adt7470-Add-missing-dependency-on-REGMAP_I2C.patch + patches.suse/scsi-fnic-Move-flush_work-initialization-out-of-if-b.patch + patches.suse/scsi-wd33c93-Don-t-use-stale-scsi_pointer-value.patch + patches.suse/scsi-scsi_transport_fc-Allow-setting-rport-state-to-current-state.patch + patches.suse/usb-gadget-core-force-synchronous-registration.patch + patches.suse/usb-storage-ignore-bogus-device-raised-by-JieLi-BR21.patch + patches.suse/usb-dwc3-core-Stop-processing-of-pending-events-if-c.patch + patches.suse/usb-xhci-Fix-problem-with-xhci-resume-from-suspend.patch + patches.suse/hid-intel-ish-hid-Fix-uninitialized-variable-rv-in-i.patch + patches.suse/HID-plantronics-Workaround-for-an-unexcepted-opposit.patch + patches.suse/HID-multitouch-Add-support-for-B2402FVA-track-point.patch + patches.suse/HID-multitouch-Add-quirk-for-HONOR-MagicBook-Art-14-.patch + patches.suse/HID-amd_sfh-Switch-to-device-managed-dmam_alloc_cohe.patch + patches.suse/crypto-api-Fix-liveliness-check-in-crypto_alg_tested.patch + patches.suse/btrfs-fix-uninitialized-pointer-free-in-add_inode_re.patch + patches.suse/btrfs-fix-uninitialized-pointer-free-on-read_alloc_o.patch + patches.suse/RDMA-bnxt_re-Fix-a-possible-memory-leak.patch + patches.suse/RDMA-bnxt_re-Fix-incorrect-AVID-type-in-WQE-structur.patch + patches.suse/RDMA-bnxt_re-Add-a-check-for-memory-allocation.patch + patches.suse/RDMA-core-Fix-ENODEV-error-for-iWARP-test-over-vlan.patch + patches.suse/RDMA-siw-Add-sendpage_ok-check-to-disable-MSG_SPLICE.patch + patches.suse/RDMA-cxgb4-Fix-RDMA_CM_EVENT_UNREACHABLE-error-for-i.patch + patches.suse/RDMA-irdma-Fix-misspelling-of-accept.patch + patches.suse/RDMA-srpt-Make-slab-cache-names-unique.patch + patches.suse/RDMA-bnxt_re-Fix-the-max-CQ-WQEs-for-older-adapters.patch + patches.suse/RDMA-bnxt_re-Fix-out-of-bound-check.patch + patches.suse/RDMA-bnxt_re-Fix-incorrect-dereference-of-srq-in-asy.patch + patches.suse/RDMA-bnxt_re-Return-more-meaningful-error.patch + patches.suse/RDMA-bnxt_re-Avoid-CPU-lockups-due-fifo-occupancy-ch.patch + patches.suse/RDMA-bnxt_re-Change-the-sequence-of-updating-the-CQ-.patch + patches.suse/RDMA-bnxt_re-Fix-a-bug-while-setting-up-Level-2-PBL-.patch + patches.suse/RDMA-bnxt_re-Fix-the-GID-table-length.patch + patches.suse/posix-clock-Fix-missing-timespec64-check-in-pc_clock.patch + patches.suse/net-usb-usbnet-fix-race-in-probe-failure.patch + patches.suse/net-stmmac-dwmac-tegra-Fix-link-bring-up-sequence.patch + patches.suse/macsec-don-t-increment-counters-for-an-unrelated-SA.patch + patches.suse/netdevsim-use-cond_resched-in-nsim_dev_trap_report_w.patch + patches.suse/net-systemport-fix-potential-memory-leak-in-bcm_sysp.patch + patches.suse/tcp-dccp-Don-t-use-timer_pending-in-reqsk_queue_unlink.patch + patches.suse/net-microchip-vcap-api-Fix-memory-leaks-in-vcap_api_.patch + patches.suse/vmxnet3-Fix-packet-corruption-in-vmxnet3_xdp_xmit_fr.patch + patches.suse/net-mlx5-Check-for-invalid-vector-index-on-EQ-creati.patch + patches.suse/net-mlx5-Fix-command-bitmask-initialization.patch + patches.suse/net-mlx5-Unregister-notifier-on-eswitch-init-failure.patch + patches.suse/net-mlx5e-Don-t-call-cleanup-on-profile-rollback-fai.patch + patches.suse/ALSA-hda-Sound-support-for-HP-Spectre-x360-16-inch-m.patch + patches.suse/ALSA-hda-conexant-Fix-audio-routing-for-HP-EliteOne-.patch + patches.suse/ALSA-line6-update-contact-information.patch + patches.suse/ALSA-hda-cs8409-Fix-possible-NULL-dereference.patch + patches.suse/ALSA-hda-tas2781-Add-new-quirk-for-Lenovo-ASUS-Dell-.patch + patches.suse/ALSA-hda-intel-sdw-acpi-cleanup-sdw_intel_scan_contr.patch + patches.suse/ALSA-hda-intel-sdw-acpi-fetch-fwnode-once-in-sdw_int.patch + patches.suse/ALSA-hda-intel-sdw-acpi-simplify-sdw-master-count-pr.patch + patches.suse/ALSA-hda-conexant-Use-cached-pin-control-for-Node-0x.patch + patches.suse/firmware-arm_scmi-Fix-the-double-free-in-scmi_debugf.patch + patches.suse/arm64-probes-Remove-broken-LDR-literal-uprobe-support.patch + patches.suse/arm64-probes-Fix-simulate_ldr-_literal.patch + patches.suse/arm64-probes-Fix-uprobes-for-big-endian-kernels.patch + patches.suse/fat-fix-uninitialized-variable.patch + patches.suse/mm-khugepaged-fix-the-arguments-order-in-khugepaged_collapse_file-trace-point.patch + patches.suse/maple_tree-correct-tree-corruption-on-spanning-store.patch + patches.suse/x86-cpufeatures-Define-X86_FEATURE_AMD_IBPB_RET.patch + patches.suse/x86-cpufeatures-Add-a-IBPB_NO_RET-BUG-flag.patch + patches.suse/x86-entry-Have-entry_ibpb-invalidate-return-predictions.patch + patches.suse/x86-bugs-Skip-RSB-fill-at-VMEXIT.patch + patches.suse/x86-bugs-Do-not-use-UNTRAIN_RET-with-IBPB-on-entry.patch + patches.suse/s390-pci-Handle-PCI-error-codes-other-than-0x3a.patch + patches.suse/KVM-s390-gaccess-Check-if-guest-address-is-in-memslot.patch + patches.suse/KVM-s390-Change-virtual-to-physical-address-access-in-diag-0x258-handler.patch + patches.suse/s390-sclp-Deactivate-sclp-after-all-its-users.patch + patches.suse/s390-sclp_vt220-Convert-newlines-to-CRLF-instead-of-LFCR.patch + patches.suse/powerpc-powernv-Free-name-on-error-in-opal_event_ini.patch + patches.suse/iommu-vt-d-Fix-incorrect-pci_for_each_dma_alias-for-.patch + patches.suse/drm-msm-dpu-make-sure-phys-resources-are-properly-in.patch + patches.suse/drm-msm-dpu-move-CRTC-resource-assignment-to-dpu_enc.patch + patches.suse/drm-msm-dpu-check-for-overflow-in-_dpu_crtc_setup_lm.patch + patches.suse/drm-msm-dsi-improve-fix-dsc-pclk-calculation.patch + patches.suse/drm-msm-dsi-fix-32-bit-signed-integer-extension-in-p.patch + patches.suse/drm-msm-Avoid-NULL-dereference-in-msm_disp_state_pri.patch + patches.suse/drm-msm-Allocate-memory-for-disp-snapshot-with-kvzal.patch + patches.suse/drm-msm-dpu-don-t-always-program-merge_3d-block.patch + patches.suse/drm-amd-amdgpu-Fix-double-unlock-in-amdgpu_mes_add_r.patch + patches.suse/drm-amdkfd-Accounting-pdd-vram_usage-for-svm.patch + patches.suse/drm-radeon-Fix-encoder-possible_clones.patch + patches.suse/drm-amdgpu-swsmu-Only-force-workload-setup-on-init.patch + patches.suse/drm-vmwgfx-Limit-display-layout-ioctl-array-size-to-.patch + patches.suse/drm-vmwgfx-Handle-surface-check-failure-correctly.patch + patches.suse/accel-qaic-Fix-the-for-loop-used-to-walk-SG-table.patch + patches.suse/cpufreq-amd-pstate-Fix-amd_pstate-mode-switch-on-sha.patch + patches.suse/io_uring-sqpoll-close-race-on-waiting-for-sqring-ent.patch + patches.suse/blk-mq-setup-queue-tag_set-before-initializing-hctx.patch + patches.suse/blk-rq-qos-fix-crash-on-rq_qos_wait-vs.-rq_qos_wake_.patch + patches.suse/ublk-don-t-allow-user-copy-for-unprivileged-device.patch + patches.suse/nvme-tcp-avoid-race-between-queue_lock-lock-and-dest.patch + patches.suse/nvme-disable-CC.CRIME-NVME_CC_CRIME.patch + patches.suse/nvme-multipath-defer-partition-scanning.patch + patches.suse/nvme-pci-fix-race-condition-between-reset-and-nvme_d.patch + patches.suse/nvme-loop-flush-off-pending-I-O-while-shutting-down-.patch + patches.suse/bpf-Use-raw_spinlock_t-in-ringbuf.patch + patches.suse/bpf-Fix-truncation-bug-in-coerce_reg_to_size_sx.patch + patches.suse/selftests-bpf-Add-test-for-truncation-after-sign-ext.patch + patches.suse/selftests-bpf-Add-test-for-sign-extension-in-coerce_.patch + patches.suse/bpf-sockmap-SK_DROP-on-attempted-redirects-of-unsupported-.patch + patches.suse/vsock-Update-rx_bytes-on-read_skb.patch + patches.suse/vsock-Update-msg_count-on-read_skb.patch + patches.suse/bpf-vsock-Drop-static-vsock_bpf_prot-initialization.patch + patches.suse/Input-xpad-add-support-for-8BitDo-Ultimate-2C-Wirele.patch + patches.suse/Input-xpad-add-support-for-MSI-Claw-A1M.patch + patches.suse/fgraph-Use-CPU-hotplug-mechanism-to-initialize-idle-shadow-stacks.patch + patches.suse/scsi-ufs-core-Set-SDEV_OFFLINE-when-UFS-is-shut-down.patch + patches.suse/scsi-mpi3mr-Validate-SAS-port-assignments.patch + patches.suse/scsi-target-core-Fix-null-ptr-deref-in-target_alloc_device.patch + patches.suse/irqchip-gic-v4-Don-t-allow-a-VMOVP-on-a-dying-VPE.patch + patches.suse/x86-resctrl-Avoid-overflow-in-MB-settings-in-bw_validate.patch + patches.suse/x86-resctrl-Annotate-get_mem_config-functions-as-__init.patch + patches.suse/x86-CPU-AMD-Only-apply-Zenbleed-fix-for-Zen2-during-late-m.patch + patches.suse/x86-apic-Always-explicitly-disarm-TSC-deadline-timer.patch + patches.suse/usb-typec-altmode-should-keep-reference-to-parent.patch + patches.suse/usb-dwc3-Wait-for-EndXfer-completion-before-restorin.patch + patches.suse/xhci-tegra-fix-checked-USB2-port-number.patch + patches.suse/usb-gadget-f_uac2-fix-return-value-for-UAC2_ATTRIBUT.patch + patches.suse/USB-gadget-dummy-hcd-Fix-task-hung-problem.patch + patches.suse/xhci-Fix-incorrect-stream-context-type-macro.patch + patches.suse/xhci-Mitigate-failed-set-dequeue-pointer-commands.patch + patches.suse/USB-serial-option-add-support-for-Quectel-EG916Q-GL.patch + patches.suse/USB-serial-option-add-Telit-FN920C04-MBIM-compositio.patch + patches.suse/vt-prevent-kernel-infoleak-in-con_font_get.patch + patches.suse/tty-n_gsm-Fix-use-after-free-in-gsm_cleanup_mux.patch + patches.suse/serial-imx-Update-mctrl-old_status-on-RTSD-interrupt.patch + patches.suse/iio-accel-bma400-Fix-uninitialized-variable-field_va.patch + patches.suse/iio-light-veml6030-fix-IIO-device-retrieval-from-emb.patch + patches.suse/iio-light-opt3001-add-missing-full-scale-range-value.patch + patches.suse/iio-light-veml6030-fix-ALS-sensor-resolution.patch + patches.suse/iio-accel-kx022a-add-missing-select-IIO_-TRIGGERED_-.patch + patches.suse/iio-adc-ti-ads124s08-add-missing-select-IIO_-TRIGGER.patch + patches.suse/iio-adc-ti-lmp92064-add-missing-select-REGMAP_SPI-in.patch + patches.suse/iio-dac-ad3552r-add-missing-select-IIO_-TRIGGERED_-B.patch + patches.suse/iio-dac-ad5766-add-missing-select-IIO_-TRIGGERED_-BU.patch + patches.suse/iio-proximity-mb1232-add-missing-select-IIO_-TRIGGER.patch + patches.suse/iio-frequency-adf4377-add-missing-select-REMAP_SPI-i.patch + patches.suse/iio-amplifiers-ada4250-add-missing-select-REGMAP_SPI.patch + patches.suse/iio-dac-ad5770r-add-missing-select-REGMAP_SPI-in-Kco.patch + patches.suse/iio-dac-ltc1660-add-missing-select-REGMAP_SPI-in-Kco.patch + patches.suse/iio-dac-stm32-dac-core-add-missing-select-REGMAP_MMI.patch + patches.suse/iio-hid-sensors-Fix-an-error-handling-path-in-_hid_s.patch + patches.suse/iio-adc-ti-ads8688-add-missing-select-IIO_-TRIGGERED.patch + patches.suse/iio-frequency-admv4420-fix-missing-select-REMAP_SPI-.patch + patches.suse/parport-Proper-fix-for-array-out-of-bounds-access.patch + patches.suse/pinctrl-apple-check-devm_kasprintf-returned-value.patch + patches.suse/pinctrl-ocelot-fix-system-hang-on-level-based-interr.patch + patches.suse/Bluetooth-ISO-Fix-multiple-init-when-debugfs-is-disa.patch + patches.suse/Bluetooth-Call-iso_exit-on-module-unload.patch + patches.suse/Bluetooth-Remove-debugfs-directory-on-module-init-fa.patch + patches.suse/Bluetooth-bnep-fix-wild-memory-access-in-proto_unreg.patch + patches.suse/Bluetooth-btusb-Fix-regression-with-fake-CSR-control.patch + patches.suse/nilfs2-fix-kernel-bug-due-to-missing-clearing-of-buffer-delay-flag.patch + patches.suse/fs-Fix-uninitialized-value-issue-in-from_kuid-and-from_kgid.patch + patches.suse/uprobe-avoid-out-of-bounds-memory-access-of-fetching-args.patch + patches.suse/KVM-nSVM-Ignore-nCR3-4-0-when-loading-PDPTEs-from-me.patch + patches.suse/KVM-arm64-Fix-shift-out-of-bounds-bug.patch + patches.suse/jfs-Fix-sanity-check-in-dbMount.patch + patches.suse/tracing-Consider-the-NULL-character-when-validating-the-event-length.patch + patches.suse/HID-multitouch-Add-quirk-for-Logitech-Bolt-receiver-.patch + patches.suse/HID-lenovo-Add-support-for-Thinkpad-X1-Tablet-Gen-3-.patch + patches.suse/be2net-fix-potential-memory-leak-in-be_xmit.patch + patches.suse/net-phy-dp83822-Fix-reset-pin-definitions.patch + patches.suse/octeon_ep-Implement-helper-for-iterating-packets-in-Rx-queue.patch + patches.suse/octeon_ep-Add-SKB-allocation-failures-handling-in-__octep_oq_process_rx.patch + patches.suse/fsl-fman-Save-device-references-taken-in-mac_probe.patch + patches.suse/fsl-fman-Fix-refcount-handling-of-fman-related-devic.patch + patches.suse/net-wwan-fix-global-oob-in-wwan_rtnl_policy.patch + patches.suse/netfilter-bpf-must-hold-reference-on-net-namespace.patch + patches.suse/net-usb-usbnet-fix-name-regression.patch + patches.suse/net-sched-fix-use-after-free-in-taprio_change.patch + patches.suse/posix-clock-posix-clock-Fix-unbalanced-locking-in-pc.patch + patches.suse/xfrm-fix-one-more-kernel-infoleak-in-algo-dumping.patch + patches.suse/Bluetooth-SCO-Fix-UAF-on-sco_sock_timeout.patch + patches.suse/Bluetooth-ISO-Fix-UAF-on-iso_sock_timeout.patch + patches.suse/msft-hv-3070-hv_netvsc-Fix-VF-namespace-also-in-synthetic-NIC-NET.patch + patches.suse/net-usb-qmi_wwan-add-Fibocom-FG132-0x0112-compositio.patch + patches.suse/bpf-arm64-Fix-address-emission-with-tag-based-KASAN-enabled.patch + patches.suse/bpf-perf-Fix-perf_event_detach_bpf_prog-error-handling.patch + patches.suse/x86-fix-user-address-masking-non-canonical-speculation-iss.patch + patches.suse/drm-amd-Guard-against-bad-data-for-ATIF-ACPI-method.patch + patches.suse/drm-amd-display-Disable-PSR-SU-on-Parade-08-01-TCON-.patch + patches.suse/ALSA-firewire-lib-Avoid-division-by-zero-in-apply_co.patch + patches.suse/ALSA-hda-realtek-Add-subwoofer-quirk-for-Acer-Predat.patch + patches.suse/ALSA-hda-tas2781-select-CRC32-instead-of-CRC32_SARWA.patch + patches.suse/ALSA-hda-realtek-Update-default-depop-procedure.patch + patches.suse/ASoC-qcom-Fix-NULL-Dereference-in-asoc_qcom_lpass_cp.patch + patches.suse/ASoC-amd-yc-Add-quirk-for-ASUS-Vivobook-S15-M3502RA.patch + patches.suse/ASoC-max98388-Fix-missing-increment-of-variable-slot.patch + patches.suse/ASoC-amd-yc-Fix-non-functional-mic-on-ASUS-E1404FA.patch + patches.suse/ASoC-rt722-sdca-increase-clk_stop_timeout-to-fix-clo.patch + patches.suse/ASoC-fsl_micfil-Add-sample-rate-constraint.patch + patches.suse/ata-libata-Set-DID_TIME_OUT-for-commands-that-actual.patch + patches.suse/ACPI-PRM-Find-EFI_MEMORY_RUNTIME-block-for-PRM-handl.patch + patches.suse/ACPI-PRM-Clean-up-guid-type-in-struct-prm_handler_in.patch + patches.suse/ACPI-resource-Add-LG-16T90SP-to-irq1_level_low_skip_.patch + patches.suse/ACPI-button-Add-DMI-quirk-for-Samsung-Galaxy-Book2-t.patch + patches.suse/nfsd-cancel-nfsd_shrinker_work-using-sync-mode-in-nf.patch + patches.suse/platform-x86-dell-wmi-Ignore-suspend-notifications.patch + patches.suse/fgraph-Fix-missing-unlock-in-register_ftrace_graph.patch + patches.suse/fgraph-Change-the-name-of-cpuhp-state-to-fgraph-online.patch + patches.suse/spi-mtk-snfi-fix-kerneldoc-for-mtk_snand_is_page_ops.patch + patches.suse/spi-spi-fsl-dspi-Fix-crash-when-not-using-GPIO-chip-.patch + patches.suse/x86-traps-move-kmsan-check-after-instrumentation_begin.patch + patches.suse/mm-shmem-fix-data-race-in-shmem_getattr.patch + patches.suse/ocfs2-pass-u64-to-ocfs2_truncate_inline-maybe-overflow.patch + patches.suse/nilfs2-fix-kernel-bug-due-to-missing-clearing-of-che.patch + patches.suse/mm-split-critical-region-in-remap_file_pages-and-invoke-LSMs-in-between.patch + patches.suse/ALSA-hda-realtek-Limit-internal-Mic-boost-on-Dell-pl.patch + patches.suse/ALSA-hda-realtek-Add-subwoofer-quirk-for-Infinix-ZER.patch + patches.suse/ASoC-codecs-rt5640-Always-disable-IRQs-from-rt5640_c.patch + patches.suse/ASoC-Intel-bytcr_rt5640-Add-support-for-non-ACPI-ins.patch + patches.suse/ASoC-Intel-bytcr_rt5640-Add-DMI-quirk-for-Vexia-Edu-.patch + patches.suse/ASoC-Intel-sst-Support-LPE0F28-ACPI-HID.patch + patches.suse/ASoC-cs42l51-Fix-some-error-handling-paths-in-cs42l5.patch + patches.suse/ASoC-Intel-sst-Fix-used-of-uninitialized-ctx-to-log-.patch + patches.suse/ASoC-dapm-fix-bounds-checker-error-in-dapm_widget_li.patch + patches.suse/ALSA-usb-audio-Add-quirks-for-Dell-WD19-dock.patch + patches.suse/ALSA-hda-realtek-Fix-headset-mic-on-TUXEDO-Gemini-17.patch + patches.suse/ALSA-hda-realtek-Fix-headset-mic-on-TUXEDO-Stellaris.patch + patches.suse/wifi-iwlegacy-Fix-field-spanning-write-warning-in-il.patch + patches.suse/wifi-iwlegacy-Clear-stale-interrupts-before-resuming.patch + patches.suse/mac80211-MAC80211_MESSAGE_TRACING-should-depend-on-T.patch + patches.suse/wifi-mac80211-do-not-pass-a-stopped-vif-to-the-drive.patch + patches.suse/wifi-mac80211-skip-non-uploaded-keys-in-ieee80211_it.patch + patches.suse/wifi-brcm80211-BRCM_TRACING-should-depend-on-TRACING.patch + patches.suse/wifi-ath10k-Fix-memory-leak-in-management-tx.patch + patches.suse/wifi-ath11k-Fix-invalid-ring-usage-in-full-monitor-m.patch + patches.suse/macsec-Fix-use-after-free-while-sending-the-offloadi.patch + patches.suse/net-stmmac-TSO-Fix-unbalanced-DMA-map-unmap-for-non-.patch + patches.suse/igb-Disable-threaded-IRQ-for-igb_msix_other.patch + patches.suse/ice-fix-crash-on-probe-for-DPLL-enabled-E810-LOM.patch + patches.suse/ipv4-ip_tunnel-Fix-suspicious-RCU-usage-warning-in-ip_tunnel_init_flow.patch + patches.suse/mctp-i2c-handle-NULL-header-address.patch + patches.suse/wifi-iwlwifi-mvm-don-t-leak-a-link-on-AP-removal.patch + patches.suse/wifi-iwlwifi-mvm-Fix-response-handling-in-iwl_mvm_se.patch + patches.suse/wifi-iwlwifi-mvm-don-t-add-default-link-in-fw-restar.patch + patches.suse/Revert-wifi-iwlwifi-remove-retry-loops-in-start.patch + patches.suse/wifi-cfg80211-clear-wdev-cqm_config-pointer-on-free.patch + patches.suse/wifi-iwlwifi-mvm-fix-6-GHz-scan-construction.patch + patches.suse/mlxsw-spectrum_ipip-Fix-memory-leak-when-changing-re.patch + patches.suse/Bluetooth-hci-fix-null-ptr-deref-in-hci_read_support.patch + patches.suse/netfilter-Fix-use-after-free-in-get_info.patch + patches.suse/RDMA-cxgb4-Dump-vendor-specific-QP-details.patch + patches.suse/RDMA-mlx5-Round-max_rd_atomic-max_dest_rd_atomic-up-.patch + patches.suse/RDMA-bnxt_re-Fix-the-usage-of-control-path-spin-lock.patch + patches.suse/RDMA-bnxt_re-synchronize-the-qp-handle-table-array.patch + patches.suse/btrfs-fix-error-propagation-of-split-bios.patch + patches.suse/fsdax-remove-zeroing-code-from-dax_unshare_iter.patch + patches.suse/fsdax-dax_unshare_iter-needs-to-copy-entire-blocks.patch + patches.suse/kasan-Fix-Software-Tag-Based-KASAN-with-GCC.patch + patches.suse/firmware-arm_sdei-Fix-the-input-parameter-of-cpuhp_r.patch + patches.suse/ACPI-CPPC-Make-rmw_lock-a-raw_spin_lock.patch + patches.suse/io_uring-rw-fix-missing-NOWAIT-check-for-O_DIRECT-st.patch + patches.suse/nvmet-auth-assign-dh_key-to-NULL-after-kfree_sensiti.patch + patches.suse/nvme-re-fix-error-handling-for-io_uring-nvme-passthr.patch + patches.suse/drm-amd-pm-Vangogh-Fix-kernel-memory-out-of-bounds-w.patch + patches.suse/drm-mediatek-Fix-get-efuse-issue-for-MT8188-DPTX.patch + patches.suse/drm-mediatek-Fix-potential-NULL-dereference-in-mtk_c.patch + patches.suse/PCI-Fix-pci_enable_acs-support-for-the-ACS-quirks.patch + patches.suse/xfs-fix-finding-a-last-resort-AG-in-xfs_filestream_pick_ag.patch + patches.suse/genirq-msi-Fix-off-by-one-error-in-msi_domain_alloc.patch + patches.suse/irqchip-gic-v4-Correctly-deal-with-set_affinity-on-l.patch + patches.suse/posix-cpu-timers-Clear-TICK_DEP_BIT_POSIX_TIMER-on-clone.patch + patches.suse/sumversion-Fix-a-memory-leak-in-get_src_version.patch + patches.suse/modpost-fix-acpi-MODULE_DEVICE_TABLE-built-with-mism.patch + patches.suse/modpost-fix-input-MODULE_DEVICE_TABLE-built-for-64-b.patch + patches.suse/Input-edt-ft5x06-fix-regmap-leak-when-probe-fails.patch + patches.suse/mei-use-kvmalloc-for-read-buffer.patch + patches.suse/iio-gts-helper-Fix-memory-leaks-in-iio_gts_build_ava.patch + patches.suse/iio-gts-helper-Fix-memory-leaks-for-the-error-path-o.patch + patches.suse/iio-light-veml6030-fix-microlux-value-calculation.patch + patches.suse/staging-iio-frequency-ad9832-fix-division-by-zero-in.patch + patches.suse/iio-adc-ad7124-fix-division-by-zero-in-ad7124_set_ch.patch + patches.suse/thunderbolt-Honor-TMU-requirements-in-the-domain-whe.patch + patches.suse/usbip-tools-Fix-detach_port-invalid-port-error-path.patch + patches.suse/xhci-Use-pm_runtime_get-to-prevent-RPM-on-unsupporte.patch + patches.suse/xhci-Fix-Link-TRB-DMA-in-command-ring-stopped-comple.patch + patches.suse/usb-typec-fix-unreleased-fwnode_handle-in-typec_port.patch + patches.suse/usb-phy-Fix-API-devm_usb_put_phy-can-not-release-the.patch + patches.suse/Revert-driver-core-Fix-uevent_show-vs-driver-detach-.patch + patches.suse/dmaengine-sh-rz-dmac-handle-configs-where-one-addres.patch + patches.suse/dmaengine-ti-k3-udma-Set-EOP-for-all-TRs-in-cyclic-B.patch + patches.suse/phy-qcom-qmp-usb-fix-NULL-deref-on-runtime-suspend.patch + patches.suse/phy-qcom-qmp-combo-move-driver-data-initialisation-e.patch + patches.suse/phy-ti-phy-j721e-wiz-fix-usxgmii-configuration.patch + patches.suse/phy-freescale-imx8m-pcie-Do-CMN_RST-just-before-PHY-.patch + patches.suse/phy-tegra-xusb-Add-error-pointer-check-in-xusb.c.patch + patches.suse/nilfs2-fix-potential-deadlock-with-newly-created-symlinks.patch + patches.suse/tpm-Lock-TPM-chip-in-tpm_pm_suspend-first.patch + patches.suse/arm64-dts-imx8-ss-vpu-Fix-imx8qm-VPU-IRQs.patch + patches.suse/arm64-dts-rockchip-Fix-rt5651-compatible-value-on-rk3399-eaidk-610.patch + patches.suse/arm64-dts-rockchip-Fix-rt5651-compatible-value-on-rk3399-sapphire-excavator.patch + patches.suse/arm64-dts-rockchip-Remove-hdmi-s-2nd-interrupt-on-rk3328.patch + patches.suse/arm64-dts-rockchip-Fix-wakeup-prop-names-on-PineNote-BT-node.patch + patches.suse/arm64-dts-rockchip-Fix-reset-gpios-property-on-brcm-BT-nodes.patch + patches.suse/arm64-dts-rockchip-fix-i2c2-pinctrl-names-property-on-anbernic-rg353p-v.patch + patches.suse/arm64-dts-rockchip-Fix-bluetooth-properties-on-rk3566-box-demo.patch + patches.suse/arm64-dts-rockchip-Fix-bluetooth-properties-on-Rock960-boards.patch + patches.suse/arm64-dts-rockchip-Remove-undocumented-supports-emmc-property.patch + patches.suse/arm64-dts-rockchip-Remove-cooling-cells-from-fan-on-Theobroma-lion.patch + patches.suse/arm64-dts-rockchip-Fix-LED-triggers-on-rk3308-roc-cc.patch + patches.suse/arm64-dts-rockchip-remove-num-slots-property-from-rk3328-nanopi-r2s-plus.patch + patches.suse/arm64-dts-rockchip-remove-orphaned-pinctrl-names-from-pinephone-pro.patch + patches.suse/arm64-dts-rockchip-Correct-GPIO-polarity-on-brcm-BT-nodes.patch + patches.suse/firmware-arm_scmi-Fix-slab-use-after-free-in-scmi_bu.patch + patches.suse/rpmsg-glink-Handle-rejected-intent-request-better.patch + patches.suse/HID-core-zero-initialize-the-report-buffer.patch + patches.suse/dm-cache-fix-out-of-bounds-access-to-the-dirty-bitset-when-resizing.patch + patches.suse/platform-x86-amd-pmc-Detect-when-STB-is-not-availabl.patch + patches.suse/security-keys-fix-slab-out-of-bounds-in-key_task_per.patch + patches.suse/nfs-Fix-KMSAN-warning-in-decode_getfattr_attrs.patch + patches.suse/nfs-avoid-i_lock-contention-in-nfs_clear_invalid_mapping.patch + patches.suse/pwm-imx-tpm-Use-correct-MODULO-value-for-EPWM-mode.patch + patches.suse/net-wwan-t7xx-Fix-off-by-one-error-in-t7xx_dpmaif_rx.patch + patches.suse/net-enetc-allocate-vf_state-during-PF-probes.patch + patches.suse/can-c_can-fix-rx-tx-_errors-statistics.patch + patches.suse/can-mcp251xfd-mcp251xfd_ring_alloc-fix-coalescing-co.patch + patches.suse/can-mcp251xfd-mcp251xfd_get_tef_len-fix-length-calcu.patch + patches.suse/net-hns3-fix-kernel-crash-when-uninstalling-driver.patch + patches.suse/net-phy-ti-add-PHY_RST_AFTER_CLK_EN-flag.patch + patches.suse/idpf-avoid-vport-access-in-idpf_get_link_ksettings.patch + patches.suse/i40e-fix-race-condition-by-adding-filter-s-intermedi.patch + patches.suse/e1000e-Remove-Meteor-Lake-SMBUS-workarounds.patch + patches.suse/net-vertexcom-mse102x-Fix-possible-double-free-of-TX.patch + patches.suse/virtio_net-Add-hash_key_length-check.patch + patches.suse/net-arc-fix-the-device-for-dma_map_single-dma_unmap_.patch + patches.suse/arm64-sve-Discard-stale-CPU-state-when-handling-SVE-traps.patch + patches.suse/arm64-smccc-Remove-broken-support-for-SMCCCv1.3-SVE-discard-hint.patch + patches.suse/btrfs-reinitialize-delayed-ref-list-after-deleting-i.patch + patches.suse/media-v4l2-ctrls-api-fix-error-handling-for-v4l2_g_c.patch + patches.suse/media-v4l2-tpg-prevent-the-risk-of-a-division-by-zer.patch + patches.suse/media-dvbdev-prevent-the-risk-of-out-of-memory-acces.patch + patches.suse/media-dvb_frontend-don-t-play-tricks-with-underflow-.patch + patches.suse/media-av7110-fix-a-spectre-vulnerability.patch + patches.suse/media-s5p-jpeg-prevent-buffer-overflows.patch + patches.suse/media-ar0521-don-t-overflow-when-checking-PLL-values.patch + patches.suse/media-cx24116-prevent-overflows-on-SNR-calculus.patch + patches.suse/media-adv7604-prevent-underflow-condition-when-repor.patch + patches.suse/media-stb0899_algo-initialize-cfr-before-using-it.patch + patches.suse/media-pulse8-cec-fix-data-timestamp-at-pulse8_setup.patch + patches.suse/media-dvbdev-fix-the-logic-when-DVB_DYNAMIC_MINORS-i.patch + patches.suse/Revert-ALSA-hda-conexant-Mute-speakers-at-suspend-sh.patch + patches.suse/ALSA-firewire-lib-fix-return-value-on-fail-in-amdtp_.patch + patches.suse/ALSA-usb-audio-Add-quirk-for-HP-320-FHD-Webcam.patch + patches.suse/ASoC-tas2781-Add-new-driver-version-for-tas2563-tas2.patch + patches.suse/ASoC-stm32-spdifrx-fix-dma-channel-release-in-stm32_.patch + patches.suse/ASoC-amd-yc-fix-internal-mic-on-Xiaomi-Book-Pro-14-2.patch + patches.suse/ASoC-amd-yc-Support-dmic-on-another-model-of-Lenovo-.patch + patches.suse/ASoC-stm-Prevent-potential-division-by-zero-in-stm32.patch + patches.suse/ASoC-stm-Prevent-potential-division-by-zero-in-stm32-23569c8.patch + patches.suse/ASoC-SOF-sof-client-probes-ipc4-Set-param_size-exten.patch + patches.suse/drm-amdgpu-prevent-NULL-pointer-dereference-if-ATIF-.patch + patches.suse/drm-amdgpu-Fix-DPX-valid-mode-check-on-GC-9.4.3.patch + patches.suse/drm-amdgpu-Adjust-debugfs-register-access-permission.patch + patches.suse/drm-amdgpu-Adjust-debugfs-eviction-and-IB-access-per.patch + patches.suse/drm-amdgpu-add-missing-size-check-in-amdgpu_debugfs_.patch + patches.suse/scsi-sd_zbc-Use-kvzalloc-to-allocate-REPORT-ZONES-buffer.patch + patches.suse/tools-lib-thermal-Fix-sampling-handler-context-ptr.patch + patches.suse/nvme-host-Fix-RCU-list-traversal-to-use-SRCU-primiti.patch + patches.suse/smb-client-Fix-use-after-free-of-network-namespace-.patch + patches.suse/usb-musb-sunxi-Fix-accessing-an-released-usb-phy.patch + patches.suse/usb-typec-fix-potential-out-of-bounds-in-ucsi_ccg_up.patch + patches.suse/USB-serial-option-add-Fibocom-FG132-0x0112-compositi.patch + patches.suse/USB-serial-option-add-Quectel-RG650V.patch + patches.suse/USB-serial-io_edgeport-fix-use-after-free-in-debug-p.patch + patches.suse/USB-serial-qcserial-add-support-for-Sierra-Wireless-.patch + patches.suse/mm-thp-fix-deferred-split-unqueue-naming-and-locking.patch + patches.suse/mm-avoid-unsafe-VMA-hook-invocation-when-error-arises-on-mmap-hook.patch + patches.suse/mm-unconditionally-close-VMAs-on-error.patch + patches.suse/mm-refactor-map_deny_write_exec.patch + patches.suse/mm-refactor-arch_calc_vm_flag_bits-and-arm64-MTE-handling.patch + patches.suse/mm-resolve-faulty-mmap_region-error-path-behaviour.patch + patches.suse/ucounts-fix-counter-leak-in-inc_rlimit_get_ucounts.patch + patches.suse/signal-restore-the-override_rlimit-logic.patch + patches.suse/ocfs2-remove-entry-once-instead-of-null-ptr-dereference-in-ocfs2_xa_remove.patch + patches.suse/i2c-designware-do-not-hold-SCL-low-when-I2C_DYNAMIC_.patch + patches.suse/vsock-virtio-Initialization-of-the-dangling-pointer-occurring-in-vsk-trans.patch + patches.suse/vp_vdpa-fix-id_table-array-not-null-terminated-error.patch + patches.suse/ima-fix-buffer-overrun-in-ima_eventdigest_init_commo.patch + patches.suse/ocfs2-fix-UBSAN-warning-in-ocfs2_verify_volume.patch + patches.suse/net-mlx5-fs-lock-FTE-when-checking-if-active.patch + patches.suse/net-mlx5e-kTLS-Fix-incorrect-page-refcounting.patch + patches.suse/Bluetooth-hci_core-Fix-calling-mgmt_device_connected.patch + patches.suse/Bluetooth-btintel-Direct-exception-event-to-bluetoot.patch + patches.suse/Revert-igb-Disable-threaded-IRQ-for-igb_msix_other.patch + patches.suse/ALSA-usb-audio-Fix-Yamaha-P-125-Quirk-Entry.patch + patches.suse/ALSA-hda-realtek-Fixed-Clevo-platform-headset-Mic-is.patch + patches.suse/ALSA-hda-realtek-fix-mute-micmute-LEDs-for-a-HP-Elit.patch + patches.suse/ALSA-hda-realtek-update-set-GPIO3-to-default-for-Thi.patch + patches.suse/ASoC-audio-graph-card2-Purge-absent-supplies-for-dev.patch + patches.suse/mmc-sunxi-mmc-Fix-A100-compatible-description.patch + patches.suse/Revert-mmc-dw_mmc-Fix-IDMAC-operation-with-pages-big.patch + patches.suse/Revert-RDMA-core-Fix-ENODEV-error-for-iWARP-test-ove.patch + patches.suse/drm-rockchip-vop-Fix-a-dereferenced-before-check-war.patch + patches.suse/nouveau-fw-sync-dma-after-setup-is-called.patch + patches.suse/nouveau-handle-EBUSY-and-EAGAIN-for-GSP-aux-errors.patch + patches.suse/nouveau-dp-handle-retries-for-AUX-CH-transfers-with-.patch + patches.suse/drm-bridge-tc358768-Fix-DSI-command-tx.patch + patches.suse/drm-amd-display-Adjust-VSDB-parser-for-replay-featur.patch + patches.suse/drm-amdgpu-fix-check-in-gmc_v9_0_get_vm_pte.patch + patches.suse/drm-amd-Fix-initialization-mistake-for-NBIO-7.7.0.patch + patches.suse/ocfs2-uncache-inode-which-has-failed-entering-the-group.patch + patches.suse/mm-revert-mm-shmem-fix-data-race-in-shmem_getattr.patch + patches.suse/x86-CPU-AMD-Clear-virtualized-VMLOAD-VMSAVE-on-Zen4-client + patches.suse/initramfs-avoid-filename-buffer-overrun.patch + patches.suse/nvme-pci-fix-freeing-of-the-HMB-descriptor-table.patch + patches.suse/nvme-pci-reverse-request-order-in-nvme_queue_rqs.patch + patches.suse/arm64-fix-.data.rel.ro-size-assertion-when-CONFIG_LTO_CLANG.patch + patches.suse/acpi-arm64-Adjust-error-handling-procedure-in-gtdt_p.patch + patches.suse/arm64-tls-Fix-context-switching-of-tpidrro_el0-when-kpti-is-enabled.patch + patches.suse/platform-chrome-cros_ec_typec-fix-missing-fwnode-ref.patch + patches.suse/firmware-google-Unregister-driver_info-on-failure.patch + patches.suse/crypto-caam-Fix-the-pointer-passed-to-caam_qi_shutdo.patch + patches.suse/crypto-qat-remove-check-after-debugfs_create_dir.patch + patches.suse/crypto-powerpc-p10-aes-gcm-Re-write-AES-GCM-stitched.patch + patches.suse/crypto-powerpc-p10-aes-gcm-Register-modules-as-SIMD.patch + patches.suse/crypto-powerpc-p10-aes-gcm-Add-dependency-on-CRYPTO_.patch + patches.suse/crypto-qat-qat_4xxx-fix-off-by-one-in-uof_get_name.patch + patches.suse/crypto-qat-remove-faulty-arbiter-config-reset.patch + patches.suse/crypto-pcrypt-Call-crypto-layer-directly-when-padata.patch + patches.suse/crypto-x86-aegis128-access-32-bit-arguments-as-32-bi.patch + patches.suse/crypto-cavium-Fix-the-if-condition-to-exit-loop-afte.patch + patches.suse/crypto-inside-secure-Fix-the-return-value-of-safexce.patch + patches.suse/crypto-caam-add-error-check-to-caam_rsa_set_priv_key.patch + patches.suse/crypto-bcm-add-error-check-in-the-ahash_hmac_init-fu.patch + patches.suse/crypto-aes-gcm-p10-Use-the-correct-bit-to-test-for-P.patch + patches.suse/crypto-cavium-Fix-an-error-handling-path-in-cpt_ucod.patch + patches.suse/amd-pstate-Set-min_perf-to-nominal_perf-for-active-m.patch + patches.suse/thermal-core-Initialize-thermal-zones-before-registe.patch + patches.suse/ACPI-CPPC-Fix-_CPC-register-setting-issue.patch + patches.suse/hwmon-nct6775-core-Fix-overflows-seen-when-writing-l.patch + patches.suse/doc-rcu-update-printed-dynticks-counter-bits.patch + patches.suse/x86-microcode-intel-Remove-unnecessary-cache-writeback-and.patch + patches.suse/Documentation-kgdb-Correct-parameter-error.patch + patches.suse/Revert-cgroup-Fix-memory-leak-caused-by-missing-cgroup_bpf_offline.patch + patches.suse/cgroup-bpf-only-cgroup-v2-can-be-attached-by-bpf-programs.patch + patches.suse/regmap-irq-Set-lockdep-class-for-hierarchical-IRQ-do.patch + patches.suse/spi-tegra210-quad-Avoid-shift-out-of-bounds.patch + patches.suse/spi-zynqmp-gqspi-Undo-runtime-PM-changes-at-driver-e.patch + patches.suse/mmc-mmc_spi-drop-buggy-snprintf.patch + patches.suse/HID-wacom-Interpret-tilt-data-from-Intuos-Pro-BT-as-.patch + patches.suse/media-uvcvideo-Require-entities-to-have-a-non-zero-u.patch + patches.suse/media-mtk-jpeg-Fix-null-ptr-deref-during-unload-modu.patch + patches.suse/media-imx-jpeg-Set-video-drvdata-before-register-vid.patch + patches.suse/media-amphion-Set-video-drvdata-before-register-vide.patch + patches.suse/media-imx-jpeg-Ensure-power-suppliers-be-suspended-b.patch + patches.suse/media-wl128x-Fix-atomicity-violation-in-fmc_send_cmd.patch + patches.suse/media-i2c-tc358743-Fix-crash-in-the-probe-error-path.patch + patches.suse/media-platform-allegro-dvt-Fix-possible-memory-leak-.patch + patches.suse/media-ts2020-fix-null-ptr-deref-in-ts2020_probe.patch + patches.suse/media-uvcvideo-Stop-stream-during-unregister.patch + patches.suse/media-vb2-Fix-comment.patch + patches.suse/media-mantis-remove-orphan-mantis_core.h.patch + patches.suse/media-i2c-dw9768-Fix-pm_runtime_set_suspended-with-r.patch + patches.suse/media-amphion-Fix-pm_runtime_set_suspended-with-runt.patch + patches.suse/media-venus-Fix-pm_runtime_set_suspended-with-runtim.patch + patches.suse/media-gspca-ov534-ov772x-Fix-off-by-one-error-in-set.patch + patches.suse/media-atomisp-Add-check-for-rgby_data-memory-allocat.patch + patches.suse/media-platform-exynos4-is-Fix-an-OF-node-reference-l.patch + patches.suse/media-uvcvideo-Skip-parsing-frames-of-type-UVC_VS_UN.patch + patches.suse/platform-x86-panasonic-laptop-Return-errno-correctly.patch + patches.suse/efi-libstub-fix-efi_parse_options-ignoring-the-defau.patch + patches.suse/tpm-fix-signed-unsigned-bug-when-checking-event-logs.patch + patches.suse/efi-libstub-Free-correct-pointer-on-failure.patch + patches.suse/efi-memattr-Ignore-table-if-the-size-is-clearly-bogu.patch + patches.suse/arm64-dts-freescale-imx8mm-verdin-Fix-SD-regulator-startup-delay.patch + patches.suse/arm64-dts-freescale-imx8mp-verdin-Fix-SD-regulator-startup-delay.patch + patches.suse/arm64-dts-allwinner-pinephone-Add-mount-matrix-to-accelerometer.patch + patches.suse/drivers-soc-xilinx-add-the-missing-kfree-in-xlnx_add.patch + patches.suse/soc-qcom-geni-se-fix-array-underflow-in-geni_se_clk_.patch + patches.suse/soc-ti-smartreflex-Use-IRQF_NO_AUTOEN-flag-in-reques.patch + patches.suse/firmware-arm_scpi-Check-the-DVFS-OPP-count-returned-.patch + patches.suse/soc-fsl-rcpm-fix-missing-of_node_put-in-copy_ippdexp.patch + patches.suse/bpf-arm64-Remove-garbage-frame-for-struct_ops-trampoline.patch + patches.suse/netdevsim-copy-addresses-for-both-in-and-out-paths.patch + patches.suse/wifi-p54-Use-IRQF_NO_AUTOEN-flag-in-request_irq.patch + patches.suse/wifi-mwifiex-Use-IRQF_NO_AUTOEN-flag-in-request_irq.patch + patches.suse/wifi-mwifiex-Fix-memcpy-field-spanning-write-warning-d241a13.patch + patches.suse/msft-hv-3081-hv_sock-Initializing-vsk-trans-to-NULL-to-prevent-a-.patch + patches.suse/wifi-ath9k-add-range-check-for-conn_rsp_epid-in-htc_.patch + patches.suse/wifi-ath10k-fix-invalid-VHT-parameters-in-supported_.patch + patches.suse/wifi-ath10k-fix-invalid-VHT-parameters-in-supported_-52db16e.patch + patches.suse/wifi-ath12k-Skip-Rx-TID-cleanup-for-self-peer.patch + patches.suse/wifi-ath11k-Fix-CE-offset-address-calculation-for-WC.patch + patches.suse/wifi-ath12k-remove-msdu_end-structure-for-WCN7850.patch + patches.suse/wifi-ath12k-fix-crash-when-unbinding.patch + patches.suse/wifi-ath12k-fix-warning-when-unbinding.patch + patches.suse/wifi-wfx-Fix-error-handling-in-wfx_core_init.patch + patches.suse/wifi-cw1200-Fix-potential-NULL-dereference.patch + patches.suse/wifi-brcmfmac-release-root-node-in-all-execution-pat.patch + patches.suse/Bluetooth-fix-use-after-free-in-device_for_each_chil.patch + patches.suse/ALSA-ice1712-Remove-redundant-code-in-stac9460_dac_v.patch + patches.suse/ALSA-usb-audio-Use-snprintf-instead-of-sprintf-in-bu.patch + patches.suse/ALSA-usb-audio-Add-Pioneer-DJ-AlphaTheta-DJM-A9-Mixe.patch + patches.suse/ALSA-usb-audio-Make-mic-volume-workarounds-globally-.patch + patches.suse/ALSA-usx2y-Use-snd_card_free_when_closed-at-disconne.patch + patches.suse/ALSA-us122l-Use-snd_card_free_when_closed-at-disconn.patch + patches.suse/ALSA-caiaq-Use-snd_card_free_when_closed-at-disconne.patch + patches.suse/ALSA-6fire-Release-resources-at-card-release.patch + patches.suse/ASoC-fsl_micfil-fix-regmap_write_bits-usage.patch + patches.suse/ASoC-rt722-sdca-Remove-logically-deadcode-in-rt722-s.patch + patches.suse/ASoC-codecs-Fix-atomicity-violation-in-snd_soc_compo.patch + patches.suse/ALSA-hda-Poll-jack-events-for-LS7A-HD-Audio.patch + patches.suse/drm-mm-Mark-drm_mm_interval_tree-functions-with-__ma.patch + patches.suse/drm-vc4-hvs-Don-t-write-gamma-luts-on-2711.patch + patches.suse/drm-vc4-hdmi-Avoid-hang-with-debug-registers-when-su.patch + patches.suse/drm-vc4-hvs-Fix-dlist-debug-not-resetting-the-next-e.patch + patches.suse/drm-vc4-hvs-Remove-incorrect-limit-from-hvs_dlist-de.patch + patches.suse/drm-vc4-hvs-Correct-logic-on-stopping-an-HVS-channel.patch + patches.suse/drm-omap-Fix-possible-NULL-dereference.patch + patches.suse/drm-omap-Fix-locking-in-omap_gem_new_dmabuf.patch + patches.suse/drm-imx-dcss-Use-IRQF_NO_AUTOEN-flag-in-request_irq.patch + patches.suse/drm-imx-dcss-Use-IRQF_NO_AUTOEN-flag-in-request_irq-4380f86.patch + patches.suse/drm-imx-ipuv3-Use-IRQF_NO_AUTOEN-flag-in-request_irq.patch + patches.suse/drm-sti-avoid-potential-dereference-of-error-pointer.patch + patches.suse/drm-sti-avoid-potential-dereference-of-error-pointer-e965e77.patch + patches.suse/drm-sti-avoid-potential-dereference-of-error-pointer-831214f.patch + patches.suse/drm-v3d-Address-race-condition-in-MMU-flush.patch + patches.suse/drm-bridge-anx7625-Drop-EDID-cache-on-bridge-power-o.patch + patches.suse/drm-bridge-it6505-Drop-EDID-cache-on-bridge-power-of.patch + patches.suse/drm-vc4-Match-drm_dev_enter-and-exit-calls-in-vc4_hv-cf1c87d.patch + patches.suse/drm-vc4-Match-drm_dev_enter-and-exit-calls-in-vc4_hv.patch + patches.suse/drm-bridge-tc358767-Fix-link-properties-discovery.patch + patches.suse/drm-amdgpu-Fix-JPEG-v4.0.3-register-write.patch + patches.suse/drm-panfrost-Remove-unused-id_mask-from-struct-panfr.patch + patches.suse/drm-nouveau-gr-gf100-Fix-missing-unlock-in-gf100_gr_.patch + patches.suse/drm-zynqmp_kms-Unplug-DRM-device-before-removal.patch + patches.suse/drm-xlnx-zynqmp_dpsub-fix-hotplug-detection.patch + patches.suse/drm-msm-dpu-on-SDM845-move-DSPP_3-to-LM_5-block.patch + patches.suse/drm-msm-dpu-drop-LM_3-LM_4-on-SDM845.patch + patches.suse/drm-msm-dpu-drop-LM_3-LM_4-on-MSM8998.patch + patches.suse/drm-msm-Fix-some-typos-in-comment.patch + patches.suse/drm-msm-adreno-Use-IRQF_NO_AUTOEN-flag-in-request_ir.patch + patches.suse/drm-msm-gpu-Check-the-status-of-registration-to-PM-Q.patch + patches.suse/drm-mediatek-Fix-child-node-refcount-handling-in-ear.patch + patches.suse/drm-msm-dpu-cast-crtc_clk-calculation-to-u64-in-_dpu.patch + patches.suse/drm-amd-display-Fix-brightness-level-not-retained-ov.patch + patches.suse/drm-etnaviv-Request-pages-from-DMA32-zone-on-address.patch + patches.suse/drm-etnaviv-hold-GPU-lock-across-perfmon-sampling.patch + patches.suse/drm-vkms-Drop-unnecessary-call-to-drm_crtc_cleanup.patch + patches.suse/drm-use-ATOMIC64_INIT-for-atomic64_t.patch + patches.suse/drm-panfrost-Add-missing-OPP-table-refcnt-decrementa.patch + patches.suse/drm-amdkfd-Fix-wrong-usage-of-INIT_WORK.patch + patches.suse/x86-tdx-Introduce-wrappers-to-read-and-write-TD-metadata.patch + patches.suse/x86-tdx-Rename-tdx_parse_tdinfo-to-tdx_setup.patch + patches.suse/x86-tdx-Dynamically-disable-SEPT-violations-from-causing-V.patch + patches.suse/x86-tdx-Enable-CPU-topology-enumeration.patch + patches.suse/mfd-tps65010-Use-IRQF_NO_AUTOEN-flag-in-request_irq-.patch + patches.suse/mfd-rt5033-Fix-missing-regmap_del_irq_chip.patch + patches.suse/leds-lp55xx-Remove-redundant-test-for-invalid-channe.patch + patches.suse/clk-clk-apple-nco-Add-NULL-check-in-applnco_probe.patch + patches.suse/clk-renesas-rzg2l-Fix-FOUTPOSTDIV-clk.patch + patches.suse/clk-imx-lpcg-scu-SW-workaround-for-errata-e10858.patch + patches.suse/clk-imx-fracn-gppll-correct-PLL-initialization-flow.patch + patches.suse/clk-imx-fracn-gppll-fix-pll-power-up.patch + patches.suse/clk-imx-clk-scu-fix-clk-enable-state-save-and-restor.patch + patches.suse/clk-sunxi-ng-d1-Fix-PLL_AUDIO0-preset.patch + patches.suse/clk-clk-axi-clkgen-make-sure-to-enable-the-AXI-bus-c.patch + patches.suse/clk-qcom-gcc-qcs404-fix-initial-rate-of-GPLL3.patch + patches.suse/clk-qcom-clk-alpha-pll-drop-lucid-evo-pll-enabled-wa.patch + patches.suse/clk-qcom-clk-alpha-pll-fix-lucid-5lpe-pll-enabled-ch.patch + patches.suse/mtd-spi-nor-core-replace-dummy-buswidth-from-addr-to.patch + patches.suse/mtd-rawnand-atmel-Fix-possible-memory-leak.patch + patches.suse/cpufreq-loongson2-Unregister-platform_driver-on-fail.patch + patches.suse/Revert-cpufreq-brcmstb-avs-cpufreq-Fix-initial-comma.patch + patches.suse/cpufreq-CPPC-Fix-possible-null-ptr-deref-for-cpufreq.patch + patches.suse/cpufreq-CPPC-Fix-possible-null-ptr-deref-for-cppc_ge.patch + patches.suse/cpufreq-CPPC-Fix-wrong-return-value-in-cppc_get_cpu_.patch + patches.suse/cpufreq-CPPC-Fix-wrong-return-value-in-cppc_get_cpu_-b51eb08.patch + patches.suse/cpufreq-mediatek-hw-Fix-wrong-return-value-in-mtk_cp.patch + patches.suse/RDMA-hns-Disassociate-mmap-pages-for-all-uctx-when-H.patch + patches.suse/RDMA-hns-Fix-an-AEQE-overflow-error-caused-by-untime.patch + patches.suse/RDMA-hns-Fix-flush-cqe-error-when-racing-with-destro.patch + patches.suse/RDMA-hns-Use-dev_-printings-in-hem-code-instead-of-i.patch + patches.suse/RDMA-hns-Fix-cpu-stuck-caused-by-printings-during-re.patch + patches.suse/RDMA-rxe-Fix-the-qp-flush-warnings-in-req.patch + patches.suse/RDMA-bnxt_re-Check-cqe-flags-to-know-imm_data-vs-inv.patch + patches.suse/RDMA-rxe-Set-queue-pair-cur_qp_state-when-being-quer.patch + patches.suse/RDMA-hns-Fix-out-of-order-issue-of-requester-when-se.patch + patches.suse/RDMA-hns-Fix-NULL-pointer-derefernce-in-hns_roce_map.patch + patches.suse/RDMA-hns-Fix-different-dgids-mapping-to-the-same-dip.patch + patches.suse/RDMA-mlx5-Move-events-notifier-registration-to-be-af.patch + patches.suse/unicode-Fix-utf8_load-error-path.patch + patches.suse/maple_tree-fix-alloc-node-fail-issue.patch + patches.suse/kasan-move-checks-to-do_strncpy_from_user.patch + patches.suse/maple_tree-refine-mas_store_root-on-storing-NULL.patch + patches.suse/powerpc-fadump-Refactor-and-prepare-fadump_cma_init-.patch + patches.suse/powerpc-fadump-Move-fadump_cma_init-to-setup_arch-af.patch + patches.suse/powerpc-mm-fault-Fix-kfence-page-fault-reporting.patch + patches.suse/powerpc-pseries-Fix-dtl_access_lock-to-be-a-rw_semap.patch + patches.suse/powerpc-pseries-Fix-KVM-guest-detection-for-disablin.patch + patches.suse/powerpc-kexec-Fix-return-of-uninitialized-variable.patch + patches.suse/Revert-KVM-PPC-Book3S-HV-Nested-Stop-forwarding-all-.patch + patches.suse/KVM-PPC-Book3S-HV-Stop-using-vc-dpdes-for-nested-KVM.patch + patches.suse/KVM-PPC-Book3S-HV-Avoid-returning-to-nested-hypervis.patch + patches.suse/Input-hideep-add-missing-dependency-on-REGMAP_I2C.patch + patches.suse/Input-hycon-hy46xx-add-missing-dependency-on-REGMAP_.patch + patches.suse/fbdev-sh7760fb-Fix-a-possible-memory-leak-in-sh7760f.patch + patches.suse/x86-fix-off-by-one-in-access_ok.patch + patches.suse/lib-string_helpers-silence-snprintf-output-truncatio.patch + patches.suse/pinctrl-zynqmp-drop-excess-struct-member-description.patch + patches.suse/pinctrl-qcom-spmi-fix-debugfs-drive-strength.patch + patches.suse/pinctrl-k210-Undef-K210_PC_DEFAULT.patch + patches.suse/mailbox-arm_mhuv2-clean-up-loop-in-get_irq_chan_comb.patch + patches.suse/scsi-lpfc-Modify-CGN-warning-signal-calculation-base.patch + patches.suse/scsi-lpfc-Check-devloss-callbk-done-flag-for-potenti.patch + patches.suse/scsi-lpfc-Call-lpfc_sli4_queue_unset-in-restart-and-.patch + patches.suse/scsi-lpfc-Update-lpfc_els_flush_cmd-to-check-for-SLI.patch + patches.suse/scsi-lpfc-Check-SLI_ACTIVE-flag-in-FDMI-cmpl-before-.patch + patches.suse/scsi-lpfc-Add-cleanup-of-nvmels_wq-after-HBA-reset.patch + patches.suse/scsi-lpfc-Prevent-NDLP-reference-count-underflow-in-.patch + patches.suse/scsi-lpfc-Remove-NLP_RELEASE_RPI-flag-from-nodelist-.patch + patches.suse/scsi-lpfc-Change-lpfc_nodelist-nlp_flag-member-into-.patch + patches.suse/scsi-lpfc-Update-lpfc-version-to-14.4.0.6.patch + patches.suse/scsi-lpfc-Copyright-updates-for-14.4.0.6-patches.patch + patches.suse/PCI-endpoint-Clear-secondary-not-primary-EPC-in-pci_.patch + patches.suse/PCI-j721e-Deassert-PERST-after-a-delay-of-PCIE_T_PVP.patch + patches.suse/PCI-keystone-Set-mode-as-Root-Complex-for-ti-keyston.patch + patches.suse/PCI-keystone-Add-link-up-check-to-ks_pcie_other_map_.patch + patches.suse/PCI-rockchip-ep-Fix-address-translation-unit-program.patch + patches.suse/PCI-Fix-reset_method_store-memory-leak.patch + patches.suse/i3c-master-Fix-miss-free-init_dyn_addr-at-i3c_master.patch + patches.suse/i3c-master-svc-Fix-pm_runtime_set_suspended-with-run.patch + patches.suse/hwmon-tps23861-Fix-reporting-of-negative-temperature.patch + patches.suse/gpio-zevio-Add-missed-label-initialisation.patch + patches.suse/gpio-exar-set-value-when-external-pull-up-or-pull-do.patch + patches.suse/thermal-int3400-Fix-reading-of-current_uuid-for-acti.patch + patches.suse/power-supply-core-Remove-might_sleep-from-power_supp.patch + patches.suse/power-supply-bq27xxx-Fix-registers-of-bq27426.patch + patches.suse/power-supply-rt9471-Fix-wrong-WDT-function-regfield-.patch + patches.suse/power-supply-rt9471-Use-IC-status-regfield-to-report.patch + patches.suse/spi-atmel-quadspi-Fix-register-name-in-verbose-loggi.patch + patches.suse/spi-Fix-acpi-deferred-irq-probe.patch + patches.suse/net-usb-lan78xx-Fix-double-free-issue-with-interrupt.patch + patches.suse/net-usb-lan78xx-Fix-memory-leak-on-device-unplug-by-.patch + patches.suse/net-usb-lan78xx-Fix-refcounting-and-autosuspend-on-i.patch + patches.suse/net-mdio-ipq4019-add-missing-error-check.patch + patches.suse/Bluetooth-MGMT-Fix-slab-use-after-free-Read-in-set_p.patch + patches.suse/tcp-Fix-use-after-free-of-nreq-in-reqsk_timer_handler.patch + patches.suse/apparmor-test-Fix-memory-leak-for-aa_unpack_strdup.patch + patches.suse/apparmor-fix-Do-simple-duplicate-message-elimination.patch + patches.suse/usb-using-mutex-lock-and-supporting-O_NONBLOCK-flag-.patch + patches.suse/usb-yurex-make-waiting-on-yurex_write-interruptible.patch + patches.suse/USB-chaoskey-fail-open-after-removal.patch + patches.suse/USB-chaoskey-Fix-possible-deadlock-chaoskey_list_loc.patch + patches.suse/usb-xhci-Fix-TD-invalidation-under-pending-Set-TR-De.patch + patches.suse/usb-musb-Fix-hardware-lockup-on-first-Rx-endpoint-re.patch + patches.suse/usb-dwc3-gadget-Add-missing-check-for-single-port-RA.patch + patches.suse/USB-serial-ftdi_sio-Fix-atomicity-violation-in-get_s.patch + patches.suse/usb-ehci-spear-fix-call-balance-of-sehci-clk-handlin.patch + patches.suse/Revert-usb-gadget-composite-fix-OS-descriptors-w_val.patch + patches.suse/usb-dwc3-gadget-Fix-checking-for-number-of-TRBs-left.patch + patches.suse/usb-dwc3-gadget-Fix-looping-of-queued-SG-entries.patch + patches.suse/firmware_loader-Fix-possible-resource-leak-in-fw_log.patch + patches.suse/misc-apds990x-Fix-missing-pm_runtime_disable.patch + patches.suse/iio-light-al3010-Fix-an-error-handling-path-in-al301.patch + patches.suse/iio-adc-ad7606-Fix-typo-in-the-driver-name.patch + patches.suse/goldfish-Fix-unused-const-variable-goldfish_pipe_acp.patch + patches.suse/comedi-Flush-partial-mappings-in-error-case.patch + patches.suse/iio-adc-ad7923-Fix-buffer-overflow-for-tx_buf-and-ri.patch + patches.suse/ad7780-fix-division-by-zero-in-ad7780_write_raw.patch + patches.suse/iio-gts-Fix-uninitialized-symbol-ret.patch + patches.suse/iio-gts-fix-infinite-loop-for-gain_to_scaletables.patch + patches.suse/iio-accel-kx022a-Fix-raw-read-format.patch + patches.suse/iio-Fix-fwnode_handle-in-__fwnode_iio_channel_get_by.patch + patches.suse/iio-accel-kxcjk-1013-Remove-redundant-I-C-ID.patch + patches.suse/ALSA-ac97-bus-Fix-the-mistake-in-the-comment.patch + patches.suse/ALSA-hda-realtek-Update-ALC256-depop-procedure.patch + patches.suse/ALSA-usb-audio-Fix-potential-out-of-bound-accesses-f.patch + patches.suse/ALSA-pcm-Add-sanity-NULL-check-for-the-default-mmap-.patch + patches.suse/ALSA-usb-audio-Fix-out-of-bounds-reads-when-finding-.patch + patches.suse/ALSA-hda-realtek-Update-ALC225-depop-procedure.patch + patches.suse/ALSA-hda-realtek-Set-PCBeep-to-default-value-for-ALC.patch + patches.suse/ALSA-hda-Show-the-codec-quirk-info-at-probing.patch + patches.suse/ALSA-ump-Fix-evaluation-of-MIDI-1.0-FB-info.patch + patches.suse/ASoC-amd-yc-Fix-for-enabling-DMIC-on-acp6x-via-_DSD-.patch + patches.suse/ASoC-SOF-ipc3-topology-Convert-the-topology-pin-inde.patch + patches.suse/drm-amd-Add-some-missing-straps-from-NBIO-7.11.0.patch + patches.suse/drm-amd-display-Fix-null-check-for-pipe_ctx-plane_st.patch + patches.suse/drm-amd-display-Fix-null-check-for-pipe_ctx-plane_st-2bc96c9.patch + patches.suse/serial-8250-omap-Move-pm_runtime_get_sync.patch + patches.suse/tty-ldsic-fix-tty_ldisc_autoload-sysctl-s-proc_handl.patch + patches.suse/rtc-st-lpc-Use-IRQF_NO_AUTOEN-flag-in-request_irq.patch + patches.suse/rtc-bbnsm-add-remove-hook.patch + patches.suse/rtc-abx80x-Fix-WDT-bit-position-of-the-status-regist.patch + patches.suse/rtc-check-if-__rtc_read_time-was-successful-in-rtc_t.patch + patches.suse/rtc-rzn1-fix-BCD-to-rtc_time-conversion-errors.patch + patches.suse/rtc-ab-eoz9-don-t-fail-temperature-reads-on-undervol.patch + patches.suse/modpost-remove-incorrect-code-in-do_eisa_entry.patch + patches.suse/nvme-fabrics-fix-kernel-crash-while-shutting-down-co.patch + patches.suse/tools-power-turbostat-Fix-trailing-n-parsing.patch + patches.suse/iTCO_wdt-mask-NMI_NOW-bit-for-update_no_reboot_bit-c.patch + patches.suse/watchdog-apple-Actually-flush-writes-after-requestin.patch + patches.suse/watchdog-mediatek-Make-sure-system-reset-gets-assert.patch + patches.suse/watchdog-rti-of-honor-timeout-sec-property.patch + patches.suse/HID-wacom-fix-when-get-product-name-maybe-null-point.patch + patches.suse/can-dev-can_set_termination-allow-sleeping-GPIOs.patch + patches.suse/can-c_can-c_can_handle_bus_err-update-statistics-if-.patch + patches.suse/can-sun4i_can-sun4i_can_err-call-can_change_state-ev.patch + patches.suse/can-hi311x-hi3110_can_ist-fix-potential-use-after-fr.patch + patches.suse/can-m_can-m_can_handle_lec_err-fix-rx-tx-_errors-sta.patch + patches.suse/can-ifi_canfd-ifi_canfd_handle_lec_err-fix-rx-tx-_er.patch + patches.suse/can-hi311x-hi3110_can_ist-fix-rx-tx-_errors-statisti.patch + patches.suse/can-sja1000-sja1000_err-fix-rx-tx-_errors-statistics.patch + patches.suse/can-sun4i_can-sun4i_can_err-fix-rx-tx-_errors-statis.patch + patches.suse/can-ems_usb-ems_usb_rx_err-fix-rx-tx-_errors-statist.patch + patches.suse/can-mcp251xfd-mcp251xfd_get_tef_len-work-around-erra.patch + patches.suse/can-j1939-j1939_session_new-fix-skb-reference-counti.patch + patches.suse/mmc-core-Further-prevent-card-detect-during-shutdown.patch + patches.suse/spi-mpc52xx-Add-cancel_work_sync-before-module-remov.patch + patches.suse/regmap-detach-regmap-from-dev-on-regmap_exit.patch + patches.suse/ALSA-hda-conexant-fix-Z60MR100-startup-pop-issue.patch + patches.suse/ALSA-usb-audio-add-mixer-mapping-for-Corsair-HS80.patch + patches.suse/ALSA-hda-realtek-Enable-mute-and-micmute-LED-on-HP-P.patch + patches.suse/ALSA-hda-realtek-Add-support-for-Samsung-Galaxy-Book.patch + patches.suse/ALSA-usb-audio-Fix-a-DMA-to-stack-memory-bug.patch + patches.suse/ASoC-Intel-avs-da7219-Remove-suspend_pre-and-resume_.patch + patches.suse/ASoC-SOF-ipc3-topology-fix-resource-leaks-in-sof_ipc.patch + patches.suse/ASoC-mediatek-mt8188-mt6359-Remove-hardcoded-dmic-co.patch + patches.suse/dma-fence-Fix-reference-leak-on-fence-merge-failure-.patch + patches.suse/dma-fence-Use-kernel-s-sort-for-merging-fences.patch + patches.suse/drm-sti-Add-__iomem-for-mixer_dbg_mxn-s-parameter.patch + patches.suse/drm-v3d-Enable-Performance-Counters-before-clearing-.patch # ras/ras edac-for-next patches.suse/RAS-AMD-FMPM-Fix-build-when-debugfs-is-not-enabled.patch - ######################################################## # end of sorted patches ######################################################## @@ -26795,12 +28362,18 @@ patches.suse/kdump-wait-for-dma-to-time-out-when-using-cma.patch patches.suse/drm-nouveau-disp-Fix-missing-backlight-control-on-Ma.patch patches.suse/net-dcb-check-for-detached-device-before-executing-c.patch + patches.suse/block-sed-opal-add-ioctl-ioc_opal_set_sid_pw.patch + patches.suse/NFSv3-only-use-NFS-timeout-for-MOUNT-when-protocols-.patch + patches.suse/ALSA-hda-realtek-Fix-Internal-Speaker-and-Mic-boost-.patch + patches.suse/ALSA-hda-realtek-Enable-speaker-pins-for-Medion-E154.patch + patches.suse/ALSA-hda-realtek-Apply-quirk-for-Medion-E15433.patch ######################################################## # kbuild/module infrastructure fixes ######################################################## # SUSE specific build tweaks + patches.suse/btf-pahole-j1-option.patch patches.suse/rpm-kernel-config patches.suse/add-suse-supported-flag.patch patches.suse/powerpc-security-mitigation-patching.sh-Support-X-ta.patch @@ -27258,6 +28831,23 @@ patches.kabi/KVM-s390-fix-LPSWEY-handling.patch patches.kabi/soc-qcom-pmic_glink-kabi-workaround.patch patches.kabi/kcm-Serialise-kcm_sendmsg-for-the-same-socket.patch + patches.kabi/KVM-x86-Re-split-x2APIC-ICR-into-ICR-ICR2-for-AMD-x2.patch + patches.kabi/bpf-struct-bpf_insn_access_aux-workaround.patch + patches.kabi/bpf-enum-bpf_type_flag_arg_type-workaround.patch + patches.kabi/kabi-fix-for-NFSv4-Prevent-NULL-pointer-dereference-in.patch + patches.kabi/kabi-lam-disable.patch + patches.kabi/bpf-struct-bpf_map-workaround.patch + patches.kabi/bpf-struct-bpf_func_state-workaround.patch + patches.kabi/irqchip-gic-v4-Don-t-allow-a-VMOVP-on-a-dying-VPE.patch + patches.kabi/sof-kabi-workaround.patch + patches.kabi/kABI-fix-for-Bluetooth-L2CAP-Fix-div-by-zero-in-l2ca.patch + patches.kabi/scsi-kabi-restore-no_start_on_resume-to-scsi_device.patch + patches.kabi/scsi-libata-kabi-fix-cdrom_dev_ops-change.patch + patches.kabi/mm-refactor-arch_calc_vm_flag_bits-and-arm64-MTE-handling-kabi.patch + patches.kabi/kABI-fix-for-netfilter-nft_set_pipapo-walk-over-curr.patch + patches.kabi/net-xfrm-preserve-kabi-for-xfrm_state.patch + patches.kabi/jbd2-move-j_transaction_overhead_buffers-into-hole.patch + patches.kabi/kABI-Restore-exported-__arm_smccc_sve_check.patch ######################################################## # SLE15-SP3 OOT performance patches evaluated but left @@ -27291,7 +28881,6 @@ patches.suse/sched-core-Provide-a-method-to-check-if-a-task-is-PI-boosted.patch # v6.10-rc3-rt5 patches.suse/softirq-Add-function-to-preempt-serving-softirqs.patch # v6.10-rc3-rt5 patches.suse/time-Allow-to-preempt-after-a-callback.patch # v6.10-rc3-rt5 - patches.suse/printk-Add-notation-to-console_srcu-locking.patch # v6.10-rc3-rt5 patches.suse/printk-Properly-deal-with-nbcon-consoles-on-seq-init.patch # v6.10-rc3-rt5 patches.suse/printk-nbcon-Remove-return-value-for-write_atomic.patch # v6.10-rc3-rt5 patches.suse/printk-Check-printk_deferred_enter-_exit-usage.patch # v6.10-rc3-rt5 diff --git a/source-timestamp b/source-timestamp index d498045..6b6e20a 100644 --- a/source-timestamp +++ b/source-timestamp @@ -1,3 +1,3 @@ -2024-10-15 14:03:13 +0000 -GIT Revision: b49e7e52bdc1b46f45fadb1bc0aa310f52f5ac80 +2024-12-10 07:41:44 +0000 +GIT Revision: 76e28cef5375feb1d7dcea0d112f8b50524eb429 GIT Branch: SUSE-2024-RT diff --git a/supported.conf b/supported.conf index 4640aa2..5c8af98 100644 --- a/supported.conf +++ b/supported.conf @@ -261,7 +261,7 @@ crypto/michael_mic # Michael MIC - crypto/morus1280 - crypto/morus640 -- crypto/nhpoly1305 + crypto/nhpoly1305 # required by adiantum, bsc#1231035 crypto/ofb # required by tcrypt, bsc#1153192 crypto/pcbc crypto/pcrypt @@ -4294,7 +4294,7 @@ drivers/s390/char/tape_34xx drivers/s390/char/tape_3590 drivers/s390/char/tape_class -- drivers/s390/char/uvdevice # SP6-NEED-REVIEW + drivers/s390/char/uvdevice # bsc#1232090 neeeded for secure execution attestations drivers/s390/char/vmlogrdr drivers/s390/char/vmur drivers/s390/cio/ccwgroup