From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Jason Gerecke <jason.gerecke@wacom.com>,
Jiri Kosina <jkosina@suse.com>
Subject: [PATCH 5.15 339/565] HID: wacom: Interpret tilt data from Intuos Pro BT as signed values
Date: Thu, 12 Dec 2024 15:58:54 +0100 [thread overview]
Message-ID: <20241212144324.995477673@linuxfoundation.org> (raw)
In-Reply-To: <20241212144311.432886635@linuxfoundation.org>
5.15-stable review patch. If anyone has any objections, please let me know.
------------------
From: Jason Gerecke <jason.gerecke@wacom.com>
commit 49a397ad24ee5e2c53a59dada2780d7e71bd3f77 upstream.
The tilt data contained in the Bluetooth packets of an Intuos Pro are
supposed to be interpreted as signed values. Simply casting the values
to type `char` is not guaranteed to work since it is implementation-
defined whether it is signed or unsigned. At least one user has noticed
the data being reported incorrectly on their system. To ensure that the
data is interpreted properly, we specifically cast to `signed char`
instead.
Link: https://github.com/linuxwacom/input-wacom/issues/445
Fixes: 4922cd26f03c ("HID: wacom: Support 2nd-gen Intuos Pro's Bluetooth classic interface")
CC: stable@vger.kernel.org # 4.11+
Signed-off-by: Jason Gerecke <jason.gerecke@wacom.com>
Signed-off-by: Jiri Kosina <jkosina@suse.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/hid/wacom_wac.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- a/drivers/hid/wacom_wac.c
+++ b/drivers/hid/wacom_wac.c
@@ -1401,9 +1401,9 @@ static void wacom_intuos_pro2_bt_pen(str
rotation -= 1800;
input_report_abs(pen_input, ABS_TILT_X,
- (char)frame[7]);
+ (signed char)frame[7]);
input_report_abs(pen_input, ABS_TILT_Y,
- (char)frame[8]);
+ (signed char)frame[8]);
input_report_abs(pen_input, ABS_Z, rotation);
input_report_abs(pen_input, ABS_WHEEL,
get_unaligned_le16(&frame[11]));
next prev parent reply other threads:[~2024-12-12 17:00 UTC|newest]
Thread overview: 577+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-12 14:53 [PATCH 5.15 000/565] 5.15.174-rc1 review Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 001/565] arm64: dts: allwinner: pinephone: Add mount matrix to accelerometer Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 002/565] media: imx-jpeg: Set video drvdata before register video device Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 003/565] media: i2c: tc358743: Fix crash in the probe error path when using polling Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 004/565] media: imx-jpeg: Ensure power suppliers be suspended before detach them Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 005/565] media: ts2020: fix null-ptr-deref in ts2020_probe() Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 006/565] media: venus: Fix pm_runtime_set_suspended() with runtime pm enabled Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 007/565] media: gspca: ov534-ov772x: Fix off-by-one error in set_frame_rate() Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 008/565] media: platform: allegro-dvt: Fix possible memory leak in allocate_buffers_internal() Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 009/565] media: uvcvideo: Stop stream during unregister Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 010/565] media: uvcvideo: Require entities to have a non-zero unique ID Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 011/565] ovl: Filter invalid inodes with missing lookup function Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 012/565] ftrace: Fix regression with module command in stack_trace_filter Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 013/565] vmstat: call fold_vm_zone_numa_events() before show per zone NUMA event Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 014/565] iommu/io-pgtable-arm: Fix stage-2 map/unmap for concatenated tables Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 015/565] leds: lp55xx: Remove redundant test for invalid channel number Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 016/565] clk: qcom: gcc-qcs404: fix initial rate of GPLL3 Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 017/565] netlink: terminate outstanding dump on socket close Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 018/565] drm/rockchip: vop: Fix a dereferenced before check warning Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 019/565] net/mlx5: fs, lock FTE when checking if active Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 020/565] net/mlx5e: kTLS, Fix incorrect page refcounting Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 021/565] net/mlx5e: CT: Fix null-ptr-deref in add rule err flow Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 022/565] samples: pktgen: correct dev to DEV Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 023/565] ARM: 9419/1: mm: Fix kernel memory mapping for xip kernels Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 024/565] x86/mm: Fix a kdump kernel failure on SME system when CONFIG_IMA_KEXEC=y Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 025/565] mm: fix NULL pointer dereference in alloc_pages_bulk_noprof Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 026/565] ocfs2: uncache inode which has failed entering the group Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 027/565] vdpa/mlx5: Fix PA offset with unaligned starting iotlb map Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 028/565] KVM: nVMX: Treat vpid01 as current if L2 is active, but with VPID disabled Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 029/565] KVM: VMX: Bury Intel PT virtualization (guest/host mode) behind CONFIG_BROKEN Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 030/565] nilfs2: fix null-ptr-deref in block_touch_buffer tracepoint Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 031/565] ocfs2: fix UBSAN warning in ocfs2_verify_volume() Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 032/565] nilfs2: fix null-ptr-deref in block_dirty_buffer tracepoint Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 033/565] Revert "mmc: dw_mmc: Fix IDMAC operation with pages bigger than 4K" Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 034/565] drm/bridge: tc358768: Fix DSI command tx Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 035/565] mmc: sunxi-mmc: Add D1 MMC variant Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 036/565] mmc: sunxi-mmc: Fix A100 compatible description Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 037/565] lib/buildid: Fix build ID parsing logic Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 038/565] media: dvbdev: fix the logic when DVB_DYNAMIC_MINORS is not set Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 039/565] NFSD: initialize copy->cp_clp early in nfsd4_copy for use by trace point Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 040/565] NFSD: Async COPY result needs to return a write verifier Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 041/565] NFSD: Limit the number of concurrent async COPY operations Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 042/565] NFSD: Initialize struct nfsd4_copy earlier Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 043/565] NFSD: Never decrement pending_async_copies on error Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 5.15 044/565] mptcp: cope racing subflow creation in mptcp_rcv_space_adjust Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 045/565] mm: revert "mm: shmem: fix data-race in shmem_getattr()" Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 046/565] mm: avoid unsafe VMA hook invocation when error arises on mmap hook Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 047/565] mm: unconditionally close VMAs on error Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 048/565] mm: refactor arch_calc_vm_flag_bits() and arm64 MTE handling Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 049/565] mm: resolve faulty mmap_region() error path behaviour Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 050/565] NFS: nfs_async_write_reschedule_io must not recurse into the writeback code Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 051/565] ASoC: Intel: bytcr_rt5640: Add support for non ACPI instantiated codec Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 052/565] ASoC: Intel: bytcr_rt5640: Add DMI quirk for Vexia Edu Atla 10 tablet Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 053/565] ASoC: Intel: sst: Support LPE0F28 ACPI HID Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 054/565] wifi: iwlwifi: mvm: Use the sync timepoint API in suspend Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 055/565] mac80211: fix user-power when emulating chanctx Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 056/565] usb: add support for new USB device ID 0x17EF:0x3098 for the r8152 driver Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 057/565] selftests/watchdog-test: Fix system accidentally reset after watchdog-test Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 058/565] ALSA: hda/realtek: Add subwoofer quirk for Infinix ZERO BOOK 13 Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 059/565] x86/amd_nb: Fix compile-testing without CONFIG_AMD_NB Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 060/565] net: usb: qmi_wwan: add Quectel RG650V Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 061/565] soc: qcom: Add check devm_kasprintf() returned value Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 062/565] regulator: rk808: Add apply_bit for BUCK3 on RK809 Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 063/565] platform/x86: dell-smbios-base: Extends support to Alienware products Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 064/565] platform/x86: dell-wmi-base: Handle META key Lock/Unlock events Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 065/565] can: j1939: fix error in J1939 documentation Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 066/565] ASoC: stm: Prevent potential division by zero in stm32_sai_mclk_round_rate() Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 067/565] ASoC: stm: Prevent potential division by zero in stm32_sai_get_clk_div() Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 068/565] proc/softirqs: replace seq_printf with seq_put_decimal_ull_width Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 069/565] ALSA: usb-audio: Fix Yamaha P-125 Quirk Entry Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 070/565] ARM: 9420/1: smp: Fix SMP for xip kernels Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 071/565] ipmr: Fix access to mfc_cache_list without lock held Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 072/565] rcu-tasks: Idle tasks on offline CPUs are in quiescent states Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 073/565] x86/stackprotector: Work around strict Clang TLS symbol requirements Greg Kroah-Hartman
2024-12-12 16:44 ` Ard Biesheuvel
2024-12-12 14:54 ` [PATCH 5.15 074/565] cifs: Fix buffer overflow when parsing NFS reparse points Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 075/565] nvme: fix metadata handling in nvme-passthrough Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 076/565] x86/barrier: Do not serialize MSR accesses on AMD Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 077/565] kselftest/arm64: mte: fix printf type warnings about longs Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 078/565] s390/cio: Do not unregister the subchannel based on DNV Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 079/565] brd: remove brd_devices_mutex mutex Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 080/565] brd: defer automatic disk creation until module initialization succeeds Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 081/565] mips: asm: fix warning when disabling MIPS_FP_SUPPORT Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 082/565] initramfs: avoid filename buffer overrun Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 083/565] nvme-pci: fix freeing of the HMB descriptor table Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 084/565] m68k: mvme147: Fix SCSI controller IRQ numbers Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 085/565] m68k: mvme16x: Add and use "mvme16x.h" Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 086/565] m68k: mvme147: Reinstate early console Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 087/565] arm64: fix .data.rel.ro size assertion when CONFIG_LTO_CLANG Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 088/565] acpi/arm64: Adjust error handling procedure in gtdt_parse_timer_block() Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 089/565] s390/syscalls: Avoid creation of arch/arch/ directory Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 090/565] hfsplus: dont query the device logical block size multiple times Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 091/565] crypto: caam - Fix the pointer passed to caam_qi_shutdown() Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 092/565] firmware: google: Unregister driver_info on failure Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 093/565] EDAC/bluefield: Fix potential integer overflow Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 094/565] crypto: qat - remove faulty arbiter config reset Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 095/565] thermal: core: Initialize thermal zones before registering them Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 096/565] EDAC/fsl_ddr: Fix bad bit shift operations Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 097/565] crypto: pcrypt - Call crypto layer directly when padata_do_parallel() return -EBUSY Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 098/565] crypto: cavium - Fix the if condition to exit loop after timeout Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 099/565] EDAC/igen6: Avoid segmentation fault on module unload Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 100/565] ACPI: CPPC: Fix _CPC register setting issue Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 101/565] crypto: caam - add error check to caam_rsa_set_priv_key_form Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 102/565] crypto: bcm - add error check in the ahash_hmac_init function Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 103/565] crypto: cavium - Fix an error handling path in cpt_ucode_load_fw() Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 5.15 104/565] time: Fix references to _msecs_to_jiffies() handling of values Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 105/565] timekeeping: Consolidate fast timekeeper Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 106/565] seqlock/latch: Provide raw_read_seqcount_latch_retry() Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 107/565] kcsan, seqlock: Support seqcount_latch_t Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 108/565] kcsan, seqlock: Fix incorrect assumption in read_seqbegin() Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 109/565] clocksource/drivers:sp804: Make user selectable Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 110/565] spi: spi-fsl-lpspi: downgrade log level for pio mode Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 111/565] spi: spi-fsl-lpspi: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 112/565] soc: ti: smartreflex: " Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 113/565] soc: qcom: geni-se: fix array underflow in geni_se_clk_tbl_get() Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 114/565] mmc: mmc_spi: drop buggy snprintf() Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 115/565] tpm: fix signed/unsigned bug when checking event logs Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 116/565] arm64: dts: mt8183: krane: Fix the address of eeprom at i2c4 Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 117/565] arm64: dts: mt8183: kukui: " Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 118/565] arm64: dts: mediatek: mt8173-elm-hana: Add vdd-supply to second source trackpad Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 119/565] Revert "cgroup: Fix memory leak caused by missing cgroup_bpf_offline" Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 120/565] cgroup/bpf: only cgroup v2 can be attached by bpf programs Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 121/565] arm64: dts: mt8183: fennel: add i2c2s i2c-scl-internal-delay-ns Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 122/565] arm64: dts: mt8183: burnet: " Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 123/565] arm64: dts: mt8183: Damu: " Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 124/565] pwm: imx27: Workaround of the pwm output bug when decrease the duty cycle Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 125/565] ARM: dts: cubieboard4: Fix DCDC5 regulator constraints Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 126/565] pmdomain: ti-sci: Add missing of_node_put() for args.np Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 127/565] spi: tegra210-quad: Avoid shift-out-of-bounds Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 128/565] spi: zynqmp-gqspi: Undo runtime PM changes at driver exit time Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 129/565] regmap: irq: Set lockdep class for hierarchical IRQ domains Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 130/565] arm64: dts: mt8183: jacuzzi: remove unused ddc-i2c-bus Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 131/565] arm64: dts: mt8183: jacuzzi: Move panel under aux-bus Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 132/565] arm64: dts: mediatek: mt8183-kukui-jacuzzi: Fix DP bridge supply names Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 133/565] arm64: dts: mediatek: mt8183-kukui-jacuzzi: Add supplies for fixed regulators Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 134/565] selftests/resctrl: Protect against array overrun during iMC config parsing Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 135/565] firmware: arm_scpi: Check the DVFS OPP count returned by the firmware Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 136/565] media: venus: venc: Use pmruntime autosuspend Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 137/565] media: venus: vdec: decoded picture buffer handling during reconfig sequence Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 138/565] media: venus : Addition of EOS Event support for Encoder Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 139/565] media: venus : Addition of support for VIDIOC_TRY_ENCODER_CMD Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 140/565] venus: venc: add handling for VIDIOC_ENCODER_CMD Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 141/565] media: venus: provide ctx queue lock for ioctl synchronization Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 142/565] media: atomisp: remove #ifdef HAS_NO_HMEM Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 143/565] media: atomisp: Add check for rgby_data memory allocation failure Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 144/565] platform/x86: panasonic-laptop: Replace snprintf in show functions with sysfs_emit Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 145/565] platform/x86: panasonic-laptop: Return errno correctly in show callback Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 146/565] drm/mm: Mark drm_mm_interval_tree*() functions with __maybe_unused Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 147/565] wifi: ath9k: add range check for conn_rsp_epid in htc_connect_service() Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 148/565] drm/omap: Fix possible NULL dereference Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 149/565] drm/omap: Fix locking in omap_gem_new_dmabuf() Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 150/565] wifi: p54: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 151/565] wifi: mwifiex: " Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 152/565] drm/imx/dcss: " Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 153/565] drm/imx/ipuv3: " Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 154/565] drm/v3d: Address race-condition in MMU flush Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 155/565] wifi: ath10k: fix invalid VHT parameters in supported_vht_mcs_rate_nss1 Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 156/565] wifi: ath10k: fix invalid VHT parameters in supported_vht_mcs_rate_nss2 Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 157/565] dt-bindings: vendor-prefixes: Add NeoFidelity, Inc Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 158/565] ASoC: fsl_micfil: Drop unnecessary register read Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 159/565] ASoC: fsl_micfil: do not define SHIFT/MASK for single bits Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 160/565] ASoC: fsl_micfil: use GENMASK to define register bit fields Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 161/565] ASoC: fsl_micfil: fix regmap_write_bits usage Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 162/565] ASoC: dt-bindings: mt6359: Update generic node name and dmic-mode Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 163/565] drm/bridge: anx7625: Drop EDID cache on bridge power off Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 5.15 164/565] libbpf: Fix output .symtab byte-order during linking Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 165/565] bpf: Fix the xdp_adjust_tail sample prog issue Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 166/565] libbpf: fix sym_is_subprog() logic for weak global subprogs Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 167/565] xfrm: rename xfrm_state_offload struct to allow reuse Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 168/565] xfrm: store and rely on direction to construct offload flags Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 169/565] netdevsim: rely on XFRM state direction instead of flags Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 170/565] netdevsim: copy addresses for both in and out paths Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 171/565] drm/bridge: tc358767: Fix link properties discovery Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 172/565] selftests/bpf: Fix msg_verify_data in test_sockmap Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 173/565] selftests/bpf: Fix txmsg_redir of test_txmsg_pull " Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 174/565] wifi: mwifiex: Fix memcpy() field-spanning write warning in mwifiex_config_scan() Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 175/565] drm: fsl-dcu: enable PIXCLK on LS1021A Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 176/565] octeontx2-pf: handle otx2_mbox_get_rsp errors in otx2_common.c Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 177/565] octeontx2-pf: handle otx2_mbox_get_rsp errors in otx2_ethtool.c Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 178/565] octeontx2-pf: handle otx2_mbox_get_rsp errors in cn10k.c Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 179/565] drm/panfrost: Remove unused id_mask from struct panfrost_model Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 180/565] drm/msm/adreno: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 181/565] drm/etnaviv: Request pages from DMA32 zone on addressing_limited Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 182/565] drm/etnaviv: fix power register offset on GC300 Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 183/565] drm/etnaviv: hold GPU lock across perfmon sampling Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 184/565] wifi: wfx: Fix error handling in wfx_core_init() Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 185/565] drm/msm/dpu: cast crtc_clk calculation to u64 in _dpu_core_perf_calc_clk() Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 186/565] netfilter: nf_tables: skip transaction if update object is not implemented Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 187/565] netfilter: nf_tables: must hold rcu read lock while iterating object type list Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 188/565] netlink: typographical error in nlmsg_type constants definition Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 189/565] selftests/bpf: Add txmsg_pass to pull/push/pop in test_sockmap Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 190/565] selftests/bpf: Fix SENDPAGE data logic " Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 191/565] selftests, bpf: Add one test for sockmap with strparser Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 192/565] selftests/bpf: Fix total_bytes in msg_loop_rx in test_sockmap Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 193/565] selftests/bpf: Add push/pop checking for msg_verify_data " Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 194/565] bpf, sockmap: Several fixes to bpf_msg_push_data Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 195/565] bpf, sockmap: Several fixes to bpf_msg_pop_data Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 196/565] bpf, sockmap: Fix sk_msg_reset_curr Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 197/565] selftests: net: really check for bg process completion Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 198/565] drm/amdkfd: Fix wrong usage of INIT_WORK() Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 199/565] net: rfkill: gpio: Add check for clk_enable() Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 200/565] ALSA: usx2y: Use snd_card_free_when_closed() at disconnection Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 201/565] ALSA: us122l: " Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 202/565] ALSA: caiaq: " Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 203/565] ALSA: 6fire: Release resources at card release Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 204/565] driver core: Introduce device_find_any_child() helper Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 205/565] Bluetooth: fix use-after-free in device_for_each_child() Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 206/565] netpoll: Use rcu_access_pointer() in netpoll_poll_lock Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 207/565] wireguard: selftests: load nf_conntrack if not present Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 208/565] bpf: fix recursive lock when verdict program return SK_PASS Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 209/565] trace/trace_event_perf: remove duplicate samples on the first tracepoint event Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 210/565] pinctrl: zynqmp: drop excess struct member description Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 211/565] powerpc/vdso: Flag VDSO64 entry points as functions Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 212/565] mfd: tps65010: Use IRQF_NO_AUTOEN flag in request_irq() to fix race Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 213/565] mfd: da9052-spi: Change read-mask to write-mask Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 214/565] mfd: intel_soc_pmic_bxtwc: Use dev_err_probe() Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 215/565] mfd: intel_soc_pmic_bxtwc: Use IRQ domain for USB Type-C device Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 216/565] mfd: intel_soc_pmic_bxtwc: Use IRQ domain for TMU device Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 217/565] mfd: intel_soc_pmic_bxtwc: Use IRQ domain for PMIC devices Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 218/565] cpufreq: loongson2: Unregister platform_driver on failure Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 219/565] mtd: rawnand: atmel: Fix possible memory leak Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 220/565] powerpc/mm/fault: Fix kfence page fault reporting Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 221/565] powerpc/pseries: Fix dtl_access_lock to be a rw_semaphore Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 222/565] RDMA/bnxt_re: Check cqe flags to know imm_data vs inv_irkey Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 223/565] clk: imx: lpcg-scu: SW workaround for errata (e10858) Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 5.15 224/565] clk: imx: clk-scu: fix clk enable state save and restore Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 225/565] mfd: rt5033: Fix missing regmap_del_irq_chip() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 226/565] scsi: bfa: Fix use-after-free in bfad_im_module_exit() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 227/565] scsi: fusion: Remove unused variable rc Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 228/565] scsi: qedf: Fix a possible memory leak in qedf_alloc_and_init_sb() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 229/565] scsi: qedi: Fix a possible memory leak in qedi_alloc_and_init_sb() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 230/565] RDMA/hns: Fix out-of-order issue of requester when setting FENCE Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 231/565] RDMA/hns: Fix NULL pointer derefernce in hns_roce_map_mr_sg() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 232/565] ocfs2: fix uninitialized value in ocfs2_file_read_iter() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 233/565] powerpc/sstep: make emulate_vsx_load and emulate_vsx_store static Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 234/565] powerpc/kexec: Fix return of uninitialized variable Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 235/565] fbdev/sh7760fb: Alloc DMA memory from hardware device Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 236/565] fbdev: sh7760fb: Fix a possible memory leak in sh7760fb_alloc_mem() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 237/565] dt-bindings: clock: axi-clkgen: include AXI clk Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 238/565] clk: clk-axi-clkgen: make sure to enable the AXI bus clock Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 239/565] pinctrl: k210: Undef K210_PC_DEFAULT Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 240/565] mailbox: arm_mhuv2: clean up loop in get_irq_chan_comb() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 241/565] perf cs-etm: Dont flush when packet_queue fills up Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 242/565] PCI: Fix reset_method_store() memory leak Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 243/565] perf probe: Fix libdw " Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 244/565] perf probe: Correct demangled symbols in C++ program Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 245/565] PCI: cpqphp: Use PCI_POSSIBLE_ERROR() to check config reads Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 246/565] PCI: cpqphp: Fix PCIBIOS_* return value confusion Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 247/565] f2fs: fix the wrong f2fs_bug_on condition in f2fs_do_replace_block Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 248/565] f2fs: remove struct segment_allocation default_salloc_ops Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 249/565] f2fs: open code allocate_segment_by_default Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 250/565] f2fs: remove the unused flush argument to change_curseg Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 251/565] f2fs: check curseg->inited before write_sum_page in change_curseg Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 252/565] perf trace: avoid garbage when not printing a trace events arguments Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 253/565] m68k: mcfgpio: Fix incorrect register offset for CONFIG_M5441x Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 254/565] m68k: coldfire/device.c: only build FEC when HW macros are defined Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 255/565] svcrdma: Address an integer overflow Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 256/565] perf trace: Do not lose last events in a race Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 257/565] perf trace: Avoid garbage when not printing a syscalls arguments Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 258/565] rpmsg: glink: Add TX_DATA_CONT command while sending Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 259/565] rpmsg: glink: Send READ_NOTIFY command in FIFO full case Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 260/565] rpmsg: glink: Fix GLINK command prefix Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 261/565] rpmsg: glink: use only lower 16-bits of param2 for CMD_OPEN name length Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 262/565] remoteproc: qcom_q6v5_mss: Re-order writes to the IMEM region Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 263/565] NFSD: Prevent NULL dereference in nfsd4_process_cb_update() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 264/565] NFSD: Cap the number of bytes copied by nfs4_reset_recoverydir() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 265/565] sunrpc: simplify two-level sysctl registration for svcrdma_parm_table Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 266/565] svcrdma: fix miss destroy percpu_counter in svc_rdma_proc_init() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 267/565] NFSD: Fix nfsd4_shutdown_copy() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 268/565] hwmon: (tps23861) Fix reporting of negative temperatures Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 269/565] vdpa/mlx5: Fix suboptimal range on iotlb iteration Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 270/565] selftests/mount_setattr: Fix failures on 64K PAGE_SIZE kernels Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 271/565] vfio/pci: Properly hide first-in-list PCIe extended capability Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 272/565] fs_parser: update mount_api doc to match function signature Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 273/565] power: supply: core: Remove might_sleep() from power_supply_put() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 274/565] power: supply: bq27xxx: Fix registers of bq27426 Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 275/565] net: usb: lan78xx: Fix memory leak on device unplug by freeing PHY device Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 276/565] tg3: Set coherent DMA mask bits to 31 for BCM57766 chipsets Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 277/565] net: usb: lan78xx: Fix refcounting and autosuspend on invalid WoL configuration Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 278/565] net: mdio-ipq4019: add missing error check Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 279/565] marvell: pxa168_eth: fix call balance of pep->clk handling routines Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 280/565] net: stmmac: dwmac-socfpga: Set RX watchdog interrupt as broken Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 281/565] octeontx2-af: RPM: Fix mismatch in lmac type Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 282/565] spi: atmel-quadspi: Fix register name in verbose logging function Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 283/565] net: hsr: fix hsr_init_sk() vs network/transport headers Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 5.15 284/565] bnxt_en: Reserve rings after PCIe AER recovery if NIC interface is down Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 285/565] tcp: Fix use-after-free of nreq in reqsk_timer_handler() Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 286/565] iio: light: al3010: Fix an error handling path in al3010_probe() Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 287/565] usb: using mutex lock and supporting O_NONBLOCK flag in iowarrior_read() Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 288/565] usb: yurex: make waiting on yurex_write interruptible Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 289/565] USB: chaoskey: fail open after removal Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 290/565] USB: chaoskey: Fix possible deadlock chaoskey_list_lock Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 291/565] misc: apds990x: Fix missing pm_runtime_disable() Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 292/565] counter: stm32-timer-cnt: Add check for clk_enable() Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 293/565] ALSA: hda/realtek: Update ALC256 depop procedure Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 294/565] apparmor: fix Do simple duplicate message elimination Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 295/565] parisc: fix a possible DMA corruption Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 296/565] ksmbd: fix slab-use-after-free in smb3_preauth_hash_rsp Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 297/565] xen: Fix the issue of resource not being properly released in xenbus_dev_probe() Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 298/565] ALSA: usb-audio: Fix out of bounds reads when finding clock sources Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 299/565] usb: ehci-spear: fix call balance of sehci clk handling routines Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 300/565] Revert "drivers: clk: zynqmp: update divider round rate logic" Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 301/565] ASoC: Intel: sst: Fix used of uninitialized ctx to log an error Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 302/565] soc: qcom: socinfo: fix revision check in qcom_socinfo_probe() Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 303/565] ALSA: usb-audio: Fix potential out-of-bound accesses for Extigy and Mbox devices Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 304/565] ext4: supress data-race warnings in ext4_free_inodes_{count,set}() Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 305/565] ext4: fix FS_IOC_GETFSMAP handling Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 306/565] jfs: xattr: check invalid xattr size more strictly Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 307/565] ASoC: codecs: Fix atomicity violation in snd_soc_component_get_drvdata() Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 308/565] perf/x86/intel/pt: Fix buffer full but size is 0 case Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 309/565] crypto: x86/aegis128 - access 32-bit arguments as 32-bit Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 310/565] powerpc/pseries: Fix KVM guest detection for disabling hardlockup detector Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 311/565] KVM: arm64: Ignore PMCNTENSET_EL0 while checking for overflow status Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 312/565] PCI: Fix use-after-free of slot->bus on hot remove Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 313/565] fsnotify: fix sending inotify event with unexpected filename Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 314/565] comedi: Flush partial mappings in error case Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 315/565] apparmor: test: Fix memory leak for aa_unpack_strdup() Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 316/565] tty: ldsic: fix tty_ldisc_autoload sysctls proc_handler Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 317/565] locking/lockdep: Avoid creating new name string literals in lockdep_set_subclass() Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 318/565] exfat: fix uninit-value in __exfat_get_dentry_set Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 319/565] Bluetooth: Fix type of len in rfcomm_sock_getsockopt{,_old}() Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 320/565] usb: xhci: Fix TD invalidation under pending Set TR Dequeue Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 321/565] driver core: bus: Fix double free in driver API bus_register() Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 322/565] Revert "usb: gadget: composite: fix OS descriptors w_value logic" Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 323/565] serial: sh-sci: Clean sci_ports[0] after at earlycon exit Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 324/565] Revert "serial: sh-sci: Clean sci_ports[0] after at earlycon exit" Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 325/565] gpio: exar: set value when external pull-up or pull-down is present Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 326/565] netfilter: ipset: add missing range check in bitmap_ip_uadt Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 327/565] spi: Fix acpi deferred irq probe Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 328/565] mtd: spi-nor: core: replace dummy buswidth from addr to data Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 329/565] cpufreq: mediatek-hw: Fix wrong return value in mtk_cpufreq_get_cpu_power() Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 330/565] platform/chrome: cros_ec_typec: fix missing fwnode reference decrement Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 331/565] ubi: wl: Put source PEB into correct list if trying locking LEB failed Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 332/565] um: ubd: Do not use drvdata in release Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 333/565] um: net: " Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 334/565] serial: 8250: omap: Move pm_runtime_get_sync Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 335/565] um: vector: Do not use drvdata in release Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 336/565] sh: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 337/565] arm64: tls: Fix context-switching of tpidrro_el0 when kpti is enabled Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 338/565] block: fix ordering between checking BLK_MQ_S_STOPPED request adding Greg Kroah-Hartman
2024-12-12 14:58 ` Greg Kroah-Hartman [this message]
2024-12-12 14:58 ` [PATCH 5.15 340/565] media: wl128x: Fix atomicity violation in fmc_send_cmd() Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 341/565] soc: fsl: rcpm: fix missing of_node_put() in copy_ippdexpcr1_setting() Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 342/565] media: v4l2-core: v4l2-dv-timings: check cvt/gtf result Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 343/565] ALSA: pcm: Add sanity NULL check for the default mmap fault handler Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.15 344/565] ALSA: hda/realtek: Update ALC225 depop procedure Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 345/565] ALSA: hda/realtek: Set PCBeep to default value for ALC274 Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 346/565] ALSA: hda/realtek: Fix Internal Speaker and Mic boost of Infinix Y4 Max Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 347/565] ALSA: hda/realtek: Apply quirk for Medion E15433 Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 348/565] usb: dwc3: gadget: Fix checking for number of TRBs left Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 349/565] usb: dwc3: gadget: Fix looping of queued SG entries Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 350/565] lib: string_helpers: silence snprintf() output truncation warning Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 351/565] NFSD: Prevent a potential integer overflow Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 352/565] SUNRPC: make sure cache entry active before cache_show Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 353/565] rpmsg: glink: Propagate TX failures in intentless mode as well Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 354/565] um: Fix potential integer overflow during physmem setup Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 355/565] um: Fix the return value of elf_core_copy_task_fpregs Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 356/565] um: Always dump trace for specified task in show_stack Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 357/565] NFSv4.0: Fix a use-after-free problem in the asynchronous open() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 358/565] rtc: st-lpc: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 359/565] rtc: abx80x: Fix WDT bit position of the status register Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 360/565] rtc: check if __rtc_read_time was successful in rtc_timer_do_work() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 361/565] ubifs: Correct the total block count by deducting journal reservation Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 362/565] ubi: fastmap: Fix duplicate slab cache names while attaching Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 363/565] ubifs: authentication: Fix use-after-free in ubifs_tnc_end_commit Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 364/565] jffs2: fix use of uninitialized variable Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 365/565] block: return unsigned int from bdev_io_min Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 366/565] 9p/xen: fix init sequence Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 367/565] 9p/xen: fix release of IRQ Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 368/565] rtc: ab-eoz9: dont fail temperature reads on undervoltage notification Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 369/565] modpost: remove incorrect code in do_eisa_entry() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 370/565] nfs: ignore SB_RDONLY when mounting nfs Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 371/565] sunrpc: remove unnecessary test in rpc_task_set_client() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 372/565] SUNRPC: Replace internal use of SOCKWQ_ASYNC_NOSPACE Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 373/565] sunrpc: clear XPRT_SOCK_UPD_TIMEOUT when reset transport Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 374/565] sh: intc: Fix use-after-free bug in register_intc_controller() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 375/565] ASoC: fsl_micfil: fix the naming style for mask definition Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 376/565] xfs: fix log recovery when unknown rocompat bits are set Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 377/565] xfs: remove unknown compat feature check in superblock write validation Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 378/565] quota: flush quota_release_work upon quota writeback Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 379/565] btrfs: add might_sleep() annotations Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 380/565] btrfs: add a sanity check for btrfs root in btrfs_search_slot() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 381/565] btrfs: ref-verify: fix use-after-free after invalid ref action Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 382/565] ad7780: fix division by zero in ad7780_write_raw() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 383/565] s390/entry: Mark IRQ entries to fix stack depot warnings Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 384/565] util_macros.h: fix/rework find_closest() macros Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 385/565] scsi: ufs: exynos: Fix hibern8 notify callbacks Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 386/565] i3c: master: Fix miss free init_dyn_addr at i3c_master_put_i3c_addrs() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 387/565] PCI: keystone: Add link up check to ks_pcie_other_map_bus() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 388/565] ovl: properly handle large files in ovl_security_fileattr Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 389/565] dm thin: Add missing destroy_work_on_stack() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 390/565] PCI: rockchip-ep: Fix address translation unit programming Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 391/565] nfsd: make sure exp active before svc_export_show Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 392/565] nfsd: fix nfs4_openowner leak when concurrent nfsd4_open occur Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 393/565] btrfs: dont BUG_ON on ENOMEM from btrfs_lookup_extent_info() in walk_down_proc() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 394/565] drm/sti: avoid potential dereference of error pointers in sti_hqvdp_atomic_check Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 395/565] drm/sti: avoid potential dereference of error pointers in sti_gdp_atomic_check Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 396/565] drm/sti: avoid potential dereference of error pointers Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 397/565] drm/etnaviv: flush shader L1 cache after user commandstream Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 398/565] iTCO_wdt: mask NMI_NOW bit for update_no_reboot_bit() call Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 399/565] watchdog: mediatek: Make sure system reset gets asserted in mtk_wdt_restart() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 400/565] can: peak_usb: CANFD: store 64-bits hw timestamps Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 401/565] can: do not increase rx statistics when generating a CAN rx error message frame Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 402/565] can: c_can: c_can_handle_bus_err(): update statistics if skb allocation fails Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 403/565] can: sun4i_can: sun4i_can_err(): call can_change_state() even if cf is NULL Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.15 404/565] can: m_can: m_can_handle_lec_err(): fix {rx,tx}_errors statistics Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 405/565] can: ifi_canfd: ifi_canfd_handle_lec_err(): " Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 406/565] can: sun4i_can: sun4i_can_err(): " Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 407/565] can: ems_usb: ems_usb_rx_err(): " Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 408/565] ipvs: fix UB due to uninitialized stack access in ip_vs_protocol_init() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 409/565] netfilter: x_tables: fix LED ID check in led_tg_check() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 410/565] ptp: Add error handling for adjfine callback in ptp_clock_adjtime Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 411/565] net/sched: tbf: correct backlog statistic for GSO packets Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 412/565] net: hsr: avoid potential out-of-bound access in fill_frame_info() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 413/565] can: j1939: j1939_session_new(): fix skb reference counting Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 414/565] net/ipv6: release expired exception dst cached in socket Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 415/565] dccp: Fix memory leak in dccp_feat_change_recv Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 416/565] tipc: Fix use-after-free of kernel socket in cleanup_bearer() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 417/565] net/smc: Limit backlog connections Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 418/565] net/smc: fix LGR and link use-after-free issue Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 419/565] net/qed: allow old cards not supporting "num_images" to work Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 420/565] igb: Fix potential invalid memory access in igb_init_module() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 421/565] net: sched: fix erspan_opt settings in cls_flower Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 422/565] netfilter: ipset: Hold module reference while requesting a module Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 423/565] netfilter: nft_set_hash: skip duplicated elements pending gc run Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 424/565] ethtool: Fix wrong mod state in case of verbose and no_mask bitset Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 425/565] geneve: do not assume mac header is set in geneve_xmit_skb() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 426/565] gpio: grgpio: use a helper variable to store the address of ofdev->dev Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 427/565] gpio: grgpio: Add NULL check in grgpio_probe Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 428/565] dt_bindings: rs485: Correct delay values Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 429/565] dt-bindings: serial: rs485: Fix rs485-rts-delay property Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 430/565] serial: amba-pl011: Use port lock wrappers Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 431/565] serial: amba-pl011: Fix RX stall when DMA is used Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 432/565] bpftool: Remove asserts from JIT disassembler Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 433/565] bpftool: fix potential NULL pointer dereferencing in prog_dump() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 434/565] drm/sti: Add __iomem for mixer_dbg_mxns parameter Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 435/565] tcp_bpf: Fix the sk_mem_uncharge logic in tcp_bpf_sendmsg Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 436/565] ALSA: pcm: Add more disconnection checks at file ops Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 437/565] ALSA: pcm: Avoid reference to status->state Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 438/565] ALSA: usb-audio: Notify xrun for low-latency mode Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 439/565] tools: Override makefile ARCH variable if defined, but empty Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 440/565] spi: mpc52xx: Add cancel_work_sync before module remove Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 441/565] drm/v3d: Enable Performance Counters before clearing them Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 442/565] ocfs2: free inode when ocfs2_get_init_inode() fails Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 443/565] bpf: Handle BPF_EXIST and BPF_NOEXIST for LPM trie Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 444/565] bpf: Fix exact match conditions in trie_get_next_key() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 445/565] HID: wacom: fix when get product name maybe null pointer Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 446/565] watchdog: rti: of: honor timeout-sec property Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 447/565] can: dev: can_set_termination(): allow sleeping GPIOs Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 448/565] tracing: Fix cmp_entries_dup() to respect sort() comparison rules Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 449/565] arm64: ptrace: fix partial SETREGSET for NT_ARM_TAGGED_ADDR_CTRL Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 450/565] ALSA: usb-audio: add mixer mapping for Corsair HS80 Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 451/565] ALSA: hda/realtek: Enable mute and micmute LED on HP ProBook 430 G8 Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 452/565] ALSA: hda/realtek: Add support for Samsung Galaxy Book3 360 (NP730QFG) Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 453/565] scsi: qla2xxx: Fix abort in bsg timeout Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 454/565] scsi: qla2xxx: Fix NVMe and NPIV connect issue Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 455/565] scsi: qla2xxx: Supported speed displayed incorrectly for VPorts Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 456/565] scsi: qla2xxx: Fix use after free on unload Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 457/565] scsi: qla2xxx: Remove check req_sg_cnt should be equal to rsp_sg_cnt Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 458/565] scsi: ufs: core: sysfs: Prevent div by zero Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 459/565] nilfs2: fix potential out-of-bounds memory access in nilfs_find_entry() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 460/565] bcache: revert replacing IS_ERR_OR_NULL with IS_ERR again Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 461/565] bpf: fix OOB devmap writes when deleting elements Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 462/565] dma-buf: fix dma_fence_array_signaled v4 Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 463/565] xsk: fix OOB map writes when deleting elements Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.15 464/565] regmap: detach regmap from dev on regmap_exit Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 465/565] mmc: sdhci-pci: Add DMI quirk for missing CD GPIO on Vexia Edu Atla 10 tablet Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 466/565] mmc: core: Further prevent card detect during shutdown Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 467/565] ocfs2: update seq_file index in ocfs2_dlm_seq_next Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 468/565] iommu/arm-smmu: Defer probe of clients after smmu device bound Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 469/565] epoll: annotate racy check Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 470/565] s390/cpum_sf: Handle CPU hotplug remove during sampling Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 471/565] btrfs: avoid unnecessary device path update for the same device Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 472/565] kselftest/arm64: Dont leak pipe fds in pac.exec_sign_all() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 473/565] kcsan: Turn report_filterlist_lock into a raw_spinlock Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 474/565] media: uvcvideo: Add a quirk for the Kaiweets KTI-W02 infrared camera Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 475/565] media: cx231xx: Add support for Dexatek USB Video Grabber 1d19:6108 Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 476/565] soc: imx8m: Probe the SoC driver as platform driver Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 477/565] drm/vc4: hvs: Set AXI panic modes for the HVS Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 478/565] drm: panel-orientation-quirks: Add quirk for AYA NEO 2 model Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 479/565] drm/mcde: Enable module autoloading Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 480/565] drm/radeon/r600_cs: Fix possible int overflow in r600_packet3_check() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 481/565] r8169: dont apply UDP padding quirk on RTL8126A Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 482/565] samples/bpf: Fix a resource leak Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 483/565] net: fec_mpc52xx_phy: Use %pa to format resource_size_t Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 484/565] net: ethernet: fs_enet: " Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 485/565] net/sched: cbs: Fix integer overflow in cbs_set_port_rate() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 486/565] af_packet: avoid erroring out after sock_init_data() in packet_create() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 487/565] Bluetooth: L2CAP: do not leave dangling sk pointer on error in l2cap_sock_create() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 488/565] net: af_can: do not leave a dangling sk pointer in can_create() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 489/565] net: ieee802154: do not leave a dangling sk pointer in ieee802154_create() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 490/565] net: inet: do not leave a dangling sk pointer in inet_create() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 491/565] net: inet6: do not leave a dangling sk pointer in inet6_create() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 492/565] wifi: ath5k: add PCI ID for SX76X Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 493/565] wifi: ath5k: add PCI ID for Arcadyan devices Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 494/565] drm/panel: simple: Add Microchip AC69T88A LVDS Display panel Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 495/565] drm/amdgpu: clear RB_OVERFLOW bit when enabling interrupts for vega20_ih Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 496/565] drm/amdgpu: Dereference the ATCS ACPI buffer Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 497/565] drm/amdgpu: refine error handling in amdgpu_ttm_tt_pin_userptr Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 498/565] dma-debug: fix a possible deadlock on radix_lock Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 499/565] jfs: array-index-out-of-bounds fix in dtReadFirst Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 500/565] jfs: fix shift-out-of-bounds in dbSplit Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 501/565] jfs: fix array-index-out-of-bounds in jfs_readdir Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 502/565] jfs: add a check to prevent array-index-out-of-bounds in dbAdjTree Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 503/565] drm/amdgpu: skip amdgpu_device_cache_pci_state under sriov Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 504/565] drm/amdgpu: set the right AMDGPU sg segment limitation Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 505/565] wifi: ipw2x00: libipw_rx_any(): fix bad alignment Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 506/565] wifi: brcmfmac: Fix oops due to NULL pointer dereference in brcmf_sdiod_sglist_rw() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 507/565] Bluetooth: hci_core: Fix not checking skb length on hci_acldata_packet Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 508/565] ASoC: hdmi-codec: reorder channel allocation list Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 509/565] rocker: fix link status detection in rocker_carrier_init() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 510/565] net/neighbor: clear error in case strict check is not set Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 511/565] netpoll: Use rcu_access_pointer() in __netpoll_setup Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 512/565] pinctrl: freescale: fix COMPILE_TEST error with PINCTRL_IMX_SCU Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 513/565] tracing: Use atomic64_inc_return() in trace_clock_counter() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 514/565] scsi: hisi_sas: Add cond_resched() for no forced preemption model Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 515/565] leds: class: Protect brightness_show() with led_cdev->led_access mutex Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 516/565] scsi: st: Dont modify unknown block number in MTIOCGET Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 517/565] scsi: st: Add MTIOCGET and MTLOAD to ioctls allowed after device reset Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 518/565] pinctrl: qcom-pmic-gpio: add support for PM8937 Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 519/565] nvdimm: rectify the illogical code within nd_dax_probe() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 520/565] f2fs: fix f2fs_bug_on when uninstalling filesystem call f2fs_evict_inode Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 521/565] i3c: mipi-i3c-hci: Mask ring interrupts before ring stop request Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 522/565] PCI: Detect and trust built-in Thunderbolt chips Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 523/565] PCI: Add reset_subordinate to reset hierarchy below bridge Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.15 524/565] PCI: Add ACS quirk for Wangxun FF5xxx NICs Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 525/565] i3c: Use i3cdev->desc->info instead of calling i3c_device_get_info() to avoid deadlock Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 526/565] usb: chipidea: udc: handle USB Error Interrupt if IOC not set Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 527/565] MIPS: Loongson64: DTS: Really fix PCIe port nodes for ls7a Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 528/565] powerpc/prom_init: Fixup missing powermac #size-cells Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 529/565] misc: eeprom: eeprom_93cx6: Add quirk for extra read clock cycle Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 530/565] modpost: Include .text.* in TEXT_SECTIONS Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 531/565] modpost: Add .irqentry.text to OTHER_SECTIONS Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 532/565] sched/core: Remove the unnecessary need_resched() check in nohz_csd_func() Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 533/565] sched/fair: Add NOHZ balancer flag for nohz.next_balance updates Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 534/565] sched/fair: Check idle_cpu() before need_resched() to detect ilb CPU turning busy Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 535/565] sched/core: Prevent wakeup of ksoftirqd during idle load balance Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 536/565] btrfs: fix missing snapshot drew unlock when root is dead during swap activation Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 537/565] tracing/eprobe: Fix to release eprobe when failed to add dyn_event Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 538/565] Revert "unicode: Dont special case ignorable code points" Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 539/565] KVM: arm64: vgic-its: Add a data length check in vgic_its_save_* Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 540/565] KVM: arm64: vgic-its: Clear DTE when MAPD unmaps a device Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 541/565] KVM: arm64: vgic-its: Clear ITE when DISCARD frees an ITE Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 542/565] jffs2: Prevent rtime decompress memory corruption Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 543/565] jffs2: Fix rtime decompressor Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 544/565] mm/damon/vaddr-test: split a test function having >1024 bytes frame size Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 545/565] mm/damon/vaddr: fix issue in damon_va_evenly_split_region() Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 546/565] xhci: dbc: Fix STALL transfer event handling Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 547/565] mmc: mtk-sd: Fix error handle of probe function Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 548/565] drm/amd/display: Check BIOS images before it is used Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 549/565] ocfs2: Revert "ocfs2: fix the la space leak when unmounting an ocfs2 volume" Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 550/565] crypto: hisilicon/qm - inject error before stopping queue Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 551/565] ima: Fix use-after-free on a dentrys dname.name Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 552/565] fou: remove warn in gue_gro_receive on unsupported protocol Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 553/565] Revert "drm/amdgpu: add missing size check in amdgpu_debugfs_gprwave_read()" Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 554/565] scsi: core: Fix scsi_mode_select() buffer length handling Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 555/565] gve: Fixes for napi_poll when budget is 0 Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 556/565] arm64/sve: Discard stale CPU state when handling SVE traps Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 557/565] arm64: smccc: Remove broken support for SMCCCv1.3 SVE discard hint Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 558/565] Bluetooth: L2CAP: Fix uaf in l2cap_connect Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 559/565] net: dsa: microchip: correct KSZ8795 static MAC table access Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 560/565] drm/amd/display: Correct the defined value for AMDGPU_DMUB_NOTIFICATION_MAX Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 561/565] drm/amdgpu: rework resume handling for display (v2) Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 562/565] serial: amba-pl011: fix build regression Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 563/565] media: venus: vdec: fixed possible memory leak issue Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 564/565] net/smc: Fix af_ops of child socket pointing to released memory Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.15 565/565] Bluetooth: hci_core: Fix calling mgmt_device_connected Greg Kroah-Hartman
2024-12-12 20:24 ` [PATCH 5.15 000/565] 5.15.174-rc1 review Florian Fainelli
2024-12-13 10:03 ` Jon Hunter
2024-12-13 13:16 ` Mark Brown
2024-12-13 14:27 ` Naresh Kamboju
2024-12-13 17:14 ` Shuah Khan
2024-12-13 18:34 ` SeongJae Park
2024-12-13 23:35 ` Ron Economos
2024-12-14 12:46 ` Harshit Mogalapalli
2024-12-15 15:24 ` Guenter Roeck
2024-12-17 9:07 ` Greg Kroah-Hartman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241212144324.995477673@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=jason.gerecke@wacom.com \
--cc=jkosina@suse.com \
--cc=patches@lists.linux.dev \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox