stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: "Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev,
	"Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>,
	"Lee Jones" <lee@kernel.org>
Subject: [PATCH 5.10 147/352] leds: ss4200: Convert PCIBIOS_* return codes to errnos
Date: Thu, 15 Aug 2024 15:23:33 +0200	[thread overview]
Message-ID: <20240815131924.943238423@linuxfoundation.org> (raw)
In-Reply-To: <20240815131919.196120297@linuxfoundation.org>

5.10-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>

commit ce068e83976140badb19c7f1307926b4b562fac4 upstream.

ich7_lpc_probe() uses pci_read_config_dword() that returns PCIBIOS_*
codes. The error handling code assumes incorrectly it's a normal errno
and checks for < 0. The return code is returned from the probe function
as is but probe functions should return normal errnos.

Remove < 0 from the check and convert PCIBIOS_* returns code using
pcibios_err_to_errno() into normal errno before returning it.

Fixes: a328e95b82c1 ("leds: LED driver for Intel NAS SS4200 series (v5)")
Cc:  <stable@vger.kernel.org>
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Link: https://lore.kernel.org/r/20240527132700.14260-1-ilpo.jarvinen@linux.intel.com
Signed-off-by: Lee Jones <lee@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/leds/leds-ss4200.c |    7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

--- a/drivers/leds/leds-ss4200.c
+++ b/drivers/leds/leds-ss4200.c
@@ -356,8 +356,10 @@ static int ich7_lpc_probe(struct pci_dev
 
 	nas_gpio_pci_dev = dev;
 	status = pci_read_config_dword(dev, PMBASE, &g_pm_io_base);
-	if (status)
+	if (status) {
+		status = pcibios_err_to_errno(status);
 		goto out;
+	}
 	g_pm_io_base &= 0x00000ff80;
 
 	status = pci_read_config_dword(dev, GPIO_CTRL, &gc);
@@ -369,8 +371,9 @@ static int ich7_lpc_probe(struct pci_dev
 	}
 
 	status = pci_read_config_dword(dev, GPIO_BASE, &nas_gpio_io_base);
-	if (0 > status) {
+	if (status) {
 		dev_info(&dev->dev, "Unable to read GPIOBASE.\n");
+		status = pcibios_err_to_errno(status);
 		goto out;
 	}
 	dev_dbg(&dev->dev, ": GPIOBASE = 0x%08x\n", nas_gpio_io_base);



  parent reply	other threads:[~2024-08-15 14:34 UTC|newest]

Thread overview: 359+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-15 13:21 [PATCH 5.10 000/352] 5.10.224-rc1 review Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 001/352] EDAC/skx_common: Add new ADXL components for 2-level memory Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 002/352] EDAC, i10nm: make skx_common.o a separate module Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 003/352] platform/chrome: cros_ec_debugfs: fix wrong EC message version Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 004/352] hfsplus: fix to avoid false alarm of circular locking Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 005/352] x86/of: Return consistent error type from x86_of_pci_irq_enable() Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 006/352] x86/pci/intel_mid_pci: Fix PCIBIOS_* return code handling Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 007/352] x86/pci/xen: " Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 008/352] x86/platform/iosf_mbi: Convert PCIBIOS_* return codes to errnos Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 009/352] hwmon: (adt7475) Fix default duty on fan is disabled Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 010/352] pwm: stm32: Always do lazy disabling Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 011/352] hwmon: (max6697) Fix underflow when writing limit attributes Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 012/352] hwmon: (max6697) Fix swapped temp{1,8} critical alarms Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 013/352] arm64: dts: qcom: sdm845: add power-domain to UFS PHY Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 014/352] soc: qcom: rpmh-rsc: Ensure irqs arent disabled by rpmh_rsc_send_data() callers Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 015/352] arm64: dts: qcom: msm8996: specify UFS core_clk frequencies Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 016/352] memory: fsl_ifc: Make FSL_IFC config visible and selectable Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 017/352] soc: qcom: pdr: protect locator_addr with the main mutex Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 018/352] soc: qcom: pdr: fix parsing of domains lists Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 019/352] arm64: dts: rockchip: Increase VOP clk rate on RK3328 Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 020/352] ARM: dts: imx6qdl-kontron-samx6i: move phy reset into phy-node Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 021/352] ARM: dts: imx6qdl-kontron-samx6i: fix PHY reset Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 022/352] ARM: dts: imx6qdl-kontron-samx6i: fix board reset Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 023/352] ARM: dts: imx6qdl-kontron-samx6i: fix SPI0 chip selects Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 024/352] ARM: dts: imx6qdl-kontron-samx6i: fix PCIe reset polarity Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 025/352] arm64: dts: mediatek: mt8183-kukui: Drop bogus output-enable property Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 026/352] arm64: dts: mediatek: mt7622: fix "emmc" pinctrl mux Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 027/352] arm64: dts: amlogic: gx: correct hdmi clocks Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 028/352] m68k: atari: Fix TT bootup freeze / unexpected (SCU) interrupt messages Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 029/352] x86/xen: Convert comma to semicolon Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 030/352] m68k: cmpxchg: Fix return value for default case in __arch_xchg() Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 031/352] ARM: pxa: spitz: use gpio descriptors for audio Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 032/352] ARM: spitz: fix GPIO assignment for backlight Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 033/352] firmware: turris-mox-rwtm: Fix checking return value of wait_for_completion_timeout() Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 034/352] firmware: turris-mox-rwtm: Initialize completion before mailbox Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 035/352] wifi: brcmsmac: LCN PHY code is used for BCM4313 2G-only device Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 036/352] selftests/bpf: Fix prog numbers in test_sockmap Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 037/352] net: esp: cleanup esp_output_tail_tcp() in case of unsupported ESPINTCP Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 038/352] net/smc: Allow SMC-D 1MB DMB allocations Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 039/352] net/smc: set rmbs SG_MAX_SINGLE_ALLOC limitation only when CONFIG_ARCH_NO_SG_CHAIN is defined Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 040/352] selftests/bpf: Check length of recv in test_sockmap Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 041/352] lib: objagg: Fix general protection fault Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 042/352] mlxsw: spectrum_acl_erp: Fix object nesting warning Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 043/352] mlxsw: spectrum_acl_bloom_filter: Make mlxsw_sp_acl_bf_key_encode() more flexible Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 044/352] mlxsw: spectrum_acl: Fix ACL scale regression and firmware errors Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 045/352] ath11k: dp: stop rx pktlog before suspend Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 046/352] wifi: ath11k: fix wrong handling of CCMP256 and GCMP ciphers Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 047/352] wifi: cfg80211: fix typo in cfg80211_calculate_bitrate_he() Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 048/352] wifi: cfg80211: handle 2x996 RU allocation " Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 049/352] net: fec: Refactor: #define magic constants Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 050/352] net: fec: Fix FEC_ECR_EN1588 being cleared on link-down Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 051/352] ipvs: Avoid unnecessary calls to skb_is_gso_sctp Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 052/352] netfilter: nf_tables: rise cap on SELinux secmark context Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.10 053/352] perf/x86/intel/pt: Fix pt_topa_entry_for_page() address calculation Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 054/352] perf: Fix perf_aux_size() for greater-than 32-bit size Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 055/352] perf: Prevent passing zero nr_pages to rb_alloc_aux() Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 056/352] qed: Improve the stack space of filter_config() Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 057/352] wifi: virt_wifi: avoid reporting connection success with wrong SSID Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 058/352] gss_krb5: Fix the error handling path for crypto_sync_skcipher_setkey Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 059/352] wifi: virt_wifi: dont use strlen() in const context Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 060/352] selftests/bpf: Close fd in error path in drop_on_reuseport Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 061/352] bpf: annotate BTF show functions with __printf Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 062/352] bna: adjust name buf size of bna_tcb and bna_ccb structures Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 063/352] bpf: Eliminate remaining "make W=1" warnings in kernel/bpf/btf.o Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 064/352] selftests: forwarding: devlink_lib: Wait for udev events after reloading Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 065/352] xdp: fix invalid wait context of page_pool_destroy() Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 066/352] drm/panel: boe-tv101wum-nl6: If prepare fails, disable GPIO before regulators Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 067/352] drm/panel: boe-tv101wum-nl6: Check for errors on the NOP in prepare() Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 068/352] media: dvb-usb: Fix unexpected infinite loop in dvb_usb_read_remote_control() Greg Kroah-Hartman
2024-08-15 14:34   ` Sean Young
2024-08-15 13:22 ` [PATCH 5.10 069/352] media: imon: Fix race getting ictx->lock Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 070/352] KVM: s390: pv: avoid stalls when making pages secure Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 071/352] KVM: s390: pv: properly handle page flags for protected guests Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 072/352] KVM: s390: pv: add export before import Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 073/352] KVM: s390: fix race in gmap_make_secure() Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 074/352] s390/mm: Convert make_page_secure to use a folio Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 075/352] s390/mm: Convert gmap_make_secure " Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 076/352] s390/uv: Dont call folio_wait_writeback() without a folio reference Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 077/352] saa7134: Unchecked i2c_transfer function result fixed Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 078/352] media: uvcvideo: Allow entity-defined get_info and get_cur Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 079/352] media: uvcvideo: Override default flags Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 080/352] media: renesas: vsp1: Fix _irqsave and _irq mix Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 081/352] media: renesas: vsp1: Store RPF partition configuration per RPF instance Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 082/352] leds: trigger: Unregister sysfs attributes before calling deactivate() Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 083/352] perf report: Fix condition in sort__sym_cmp() Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 084/352] drm/etnaviv: fix DMA direction handling for cached RW buffers Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 085/352] drm/qxl: Add check for drm_cvt_mode Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 086/352] Revert "leds: led-core: Fix refcount leak in of_led_get()" Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 087/352] ext4: fix infinite loop when replaying fast_commit Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 088/352] media: venus: flush all buffers in output plane streamoff Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 089/352] mfd: omap-usb-tll: Use struct_size to allocate tll Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 090/352] xprtrdma: Rename frwr_release_mr() Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 091/352] xprtrdma: Fix rpcrdma_reqs_reset() Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 092/352] SUNRPC: avoid soft lockup when transmitting UDP to reachable server Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 093/352] ext4: avoid writing unitialized memory to disk in EA inodes Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 094/352] sparc64: Fix incorrect function signature and add prototype for prom_cif_init Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 095/352] SUNRPC: Fixup gss_status tracepoint error output Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 096/352] PCI: Fix resource double counting on remove & rescan Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 097/352] coresight: Fix ref leak when of_coresight_parse_endpoint() fails Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 098/352] Input: qt1050 - handle CHIP_ID reading error Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 099/352] RDMA/mlx4: Fix truncated output warning in mad.c Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 100/352] RDMA/mlx4: Fix truncated output warning in alias_GUID.c Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 101/352] RDMA/rxe: Dont set BTH_ACK_MASK for UC or UD QPs Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 102/352] ASoC: max98088: Check for clk_prepare_enable() error Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 103/352] mtd: make mtd_test.c a separate module Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 104/352] RDMA/device: Return error earlier if port in not valid Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 105/352] Input: elan_i2c - do not leave interrupt disabled on suspend failure Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 106/352] MIPS: Octeron: remove source file executable bit Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 107/352] powerpc/xmon: Fix disassembly CPU feature checks Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 108/352] macintosh/therm_windtunnel: fix module unload Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 109/352] RDMA/hns: Fix missing pagesize and alignment check in FRMR Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 110/352] bnxt_re: Fix imm_data endianness Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 111/352] netfilter: ctnetlink: use helper function to calculate expect ID Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 112/352] net: dsa: mv88e6xxx: Limit chip-wide frame size config to CPU ports Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.10 113/352] net: dsa: b53: Limit chip-wide jumbo frame " Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 114/352] pinctrl: rockchip: update rk3308 iomux routes Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 115/352] pinctrl: core: fix possible memory leak when pinctrl_enable() fails Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 116/352] pinctrl: single: " Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 117/352] pinctrl: ti: ti-iodelay: Drop if block with always false condition Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 118/352] pinctrl: ti: ti-iodelay: fix possible memory leak when pinctrl_enable() fails Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 119/352] pinctrl: freescale: mxs: Fix refcount of child Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 120/352] fs/proc/task_mmu: indicate PM_FILE for PMD-mapped file THP Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 121/352] fs/nilfs2: remove some unused macros to tame gcc Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 122/352] nilfs2: avoid undefined behavior in nilfs_cnt32_ge macro Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 123/352] rtc: interface: Add RTC offset to alarm after fix-up Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 124/352] dt-bindings: thermal: correct thermal zone node name limit Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 125/352] tick/broadcast: Make takeover of broadcast hrtimer reliable Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 126/352] net: netconsole: Disable target before netpoll cleanup Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 127/352] af_packet: Handle outgoing VLAN packets without hardware offloading Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 128/352] ipv6: take care of scope when choosing the src addr Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 129/352] sched/fair: set_load_weight() must also call reweight_task() for SCHED_IDLE tasks Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 130/352] char: tpm: Fix possible memory leak in tpm_bios_measurements_open() Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 131/352] media: venus: fix use after free in vdec_close Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 132/352] hfs: fix to initialize fields of hfs_inode_info after hfs_alloc_inode() Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 133/352] ext2: Verify bitmap and itable block numbers before using them Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 134/352] drm/gma500: fix null pointer dereference in cdv_intel_lvds_get_modes Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 135/352] drm/gma500: fix null pointer dereference in psb_intel_lvds_get_modes Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 136/352] scsi: qla2xxx: Fix optrom version displayed in FDMI Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 137/352] drm/amd/display: Check for NULL pointer Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 138/352] sched/fair: Use all little CPUs for CPU-bound workloads Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 139/352] apparmor: use kvfree_sensitive to free data->data Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 140/352] task_work: s/task_work_cancel()/task_work_cancel_func()/ Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 141/352] task_work: Introduce task_work_cancel() again Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 142/352] udf: Avoid using corrupted block bitmap buffer Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 143/352] m68k: amiga: Turn off Warp1260 interrupts during boot Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 144/352] ext4: check dot and dotdot of dx_root before making dir indexed Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 145/352] ext4: make sure the first directory block is not a hole Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 146/352] wifi: mwifiex: Fix interface type change Greg Kroah-Hartman
2024-08-15 13:23 ` Greg Kroah-Hartman [this message]
2024-08-15 13:23 ` [PATCH 5.10 148/352] jbd2: make jbd2_journal_get_max_txn_bufs() internal Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 149/352] KVM: VMX: Split out the non-virtualization part of vmx_interrupt_blocked() Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 150/352] tools/memory-model: Fix bug in lock.cat Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 151/352] hwrng: amd - Convert PCIBIOS_* return codes to errnos Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 152/352] PCI: hv: Return zero, not garbage, when reading PCI_INTERRUPT_PIN Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 153/352] PCI: rockchip: Use GPIOD_OUT_LOW flag while requesting ep_gpio Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 154/352] binder: fix hang of unregistered readers Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 155/352] dev/parport: fix the array out-of-bounds risk Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 156/352] scsi: qla2xxx: Return ENOBUFS if sg_cnt is more than one for ELS cmds Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 157/352] f2fs: fix to dont dirty inode for readonly filesystem Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 158/352] clk: davinci: da8xx-cfgchip: Initialize clk_init_data before use Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 159/352] ubi: eba: properly rollback inside self_check_eba Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 160/352] decompress_bunzip2: fix rare decompression failure Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 161/352] kbuild: Fix -S -c in x86 stack protector scripts Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 162/352] kobject_uevent: Fix OOB access within zap_modalias_env() Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 163/352] devres: Fix devm_krealloc() wasting memory Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 164/352] rtc: cmos: Fix return value of nvmem callbacks Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 165/352] scsi: qla2xxx: During vport delete send async logout explicitly Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 166/352] scsi: qla2xxx: Fix for possible memory corruption Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 167/352] scsi: qla2xxx: Fix flash read failure Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 168/352] scsi: qla2xxx: Complete command early within lock Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 169/352] scsi: qla2xxx: validate nvme_local_port correctly Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 170/352] perf/x86/intel/pt: Fix topa_entry base length Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 171/352] perf/x86/intel/pt: Fix a topa_entry base address calculation Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 172/352] rtc: isl1208: Fix return value of nvmem callbacks Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.10 173/352] watchdog/perf: properly initialize the turbo mode timestamp and rearm counter Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 174/352] platform: mips: cpu_hwmon: Disable driver on unsupported hardware Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 175/352] RDMA/iwcm: Fix a use-after-free related to destroying CM IDs Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 176/352] selftests/sigaltstack: Fix ppc64 GCC build Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 177/352] rbd: dont assume rbd_is_lock_owner() for exclusive mappings Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 178/352] MIPS: ip30: ip30-console: Add missing include Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 179/352] MIPS: Loongson64: env: Hook up Loongsson-2K Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 180/352] drm/panfrost: Mark simple_ondemand governor as softdep Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 181/352] rbd: rename RBD_LOCK_STATE_RELEASING and releasing_wait Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 182/352] rbd: dont assume RBD_LOCK_STATE_LOCKED for exclusive mappings Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 183/352] Bluetooth: btusb: Add RTL8852BE device 0489:e125 to device tables Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 184/352] Bluetooth: btusb: Add Realtek RTL8852BE support ID 0x13d3:0x3591 Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 185/352] nilfs2: handle inconsistent state in nilfs_btnode_create_block() Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 186/352] io_uring/io-wq: limit retrying worker initialisation Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 187/352] kernel: rerun task_work while freezing in get_signal() Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 188/352] kdb: address -Wformat-security warnings Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 189/352] kdb: Use the passed prompt in kdb_position_cursor() Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 190/352] jfs: Fix array-index-out-of-bounds in diFree Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 191/352] um: time-travel: fix time-travel-start option Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 192/352] f2fs: fix start segno of large section Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 193/352] libbpf: Fix no-args func prototype BTF dumping syntax Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 194/352] dma: fix call order in dmam_free_coherent Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 195/352] MIPS: SMP-CPS: Fix address for GCR_ACCESS register for CM3 and later Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 196/352] ipv4: Fix incorrect source address in Record Route option Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 197/352] net: bonding: correctly annotate RCU in bond_should_notify_peers() Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 198/352] netfilter: nft_set_pipapo_avx2: disable softinterrupts Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 199/352] tipc: Return non-zero value from tipc_udp_addr2str() on error Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 200/352] net: stmmac: Correct byte order of perfect_match Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 201/352] net: nexthop: Initialize all fields in dumped nexthops Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 202/352] bpf: Fix a segment issue when downgrading gso_size Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 203/352] mISDN: Fix a use after free in hfcmulti_tx() Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 204/352] apparmor: Fix null pointer deref when receiving skb during sock creation Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 205/352] powerpc: fix a file leak in kvm_vcpu_ioctl_enable_cap() Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 206/352] lirc: rc_dev_get_from_fd(): fix file leak Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 207/352] ASoC: Intel: use soc_intel_is_byt_cr() only when IOSF_MBI is reachable Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 208/352] ceph: fix incorrect kmalloc size of pagevec mempool Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 209/352] s390/pci: Do not mask MSI[-X] entries on teardown Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 210/352] s390/pci: Rework MSI descriptor walk Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 211/352] s390/pci: Refactor arch_setup_msi_irqs() Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 212/352] s390/pci: Allow allocation of more than 1 MSI interrupt Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 213/352] nvme: split command copy into a helper Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 214/352] nvme-pci: add missing condition check for existence of mapped data Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 215/352] fs: dont allow non-init s_user_ns for filesystems without FS_USERNS_MOUNT Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 216/352] powerpc/configs: Update defconfig with now user-visible CONFIG_FSL_IFC Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 217/352] fuse: name fs_context consistently Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 218/352] fuse: verify {g,u}id mount options correctly Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 219/352] sysctl: always initialize i_uid/i_gid Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 220/352] ext4: factor out a common helper to query extent map Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 221/352] ext4: check the extent status again before inserting delalloc block Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 222/352] soc: xilinx: move PM_INIT_FINALIZE to zynqmp_pm_domains driver Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 223/352] drivers: soc: xilinx: check return status of get_api_version() Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 224/352] driver core: Cast to (void *) with __force for __percpu pointer Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 225/352] devres: Fix memory leakage caused by driver API devm_free_percpu() Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 226/352] genirq: Allow the PM device to originate from irq domain Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 227/352] irqchip/imx-irqsteer: Constify irq_chip struct Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 228/352] irqchip/imx-irqsteer: Add runtime PM support Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 229/352] irqchip/imx-irqsteer: Handle runtime power management correctly Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 230/352] remoteproc: imx_rproc: ignore mapping vdev regions Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 231/352] remoteproc: imx_rproc: Fix ignoring " Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 232/352] remoteproc: imx_rproc: Skip over memory region when node value is NULL Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.10 233/352] drm/nouveau: prime: fix refcount underflow Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 234/352] drm/vmwgfx: Fix overlay when using Screen Targets Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 235/352] sched: act_ct: take care of padding in struct zones_ht_key Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 236/352] net/iucv: fix use after free in iucv_sock_close() Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 237/352] net/mlx5e: Add a check for the return value from mlx5_port_set_eth_ptys Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 238/352] ipv6: fix ndisc_is_useropt() handling for PIO Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 239/352] riscv/mm: Add handling for VM_FAULT_SIGSEGV in mm_fault_error() Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 240/352] platform/chrome: cros_ec_proto: Lock device when updating MKBP version Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 241/352] HID: wacom: Modify pen IDs Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 242/352] protect the fetch of ->fd[fd] in do_dup2() from mispredictions Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 243/352] ALSA: usb-audio: Correct surround channels in UAC1 channel map Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 244/352] ALSA: hda/realtek: Add quirk for Acer Aspire E5-574G Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 245/352] net: usb: sr9700: fix uninitialized variable use in sr_mdio_read Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 246/352] r8169: dont increment tx_dropped in case of NETDEV_TX_BUSY Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 247/352] mptcp: fix duplicate data handling Greg Kroah-Hartman
2024-09-28 17:55   ` Nathan Chancellor
2024-09-30 16:26     ` Matthieu Baerts
2024-08-15 13:25 ` [PATCH 5.10 248/352] netfilter: ipset: Add list flush to cancel_gc Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 249/352] genirq: Allow irq_chip registration functions to take a const irq_chip Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 250/352] irqchip/mbigen: Fix mbigen node address layout Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 251/352] x86/mm: Fix pti_clone_pgtable() alignment assumption Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 252/352] x86/mm: Fix pti_clone_entry_text() for i386 Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 253/352] sctp: move hlist_node and hashent out of sctp_ep_common Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 254/352] sctp: Fix null-ptr-deref in reuseport_add_sock() Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 255/352] net: usb: qmi_wwan: fix memory leak for not ip packets Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 256/352] net: linkwatch: use system_unbound_wq Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 257/352] Bluetooth: l2cap: always unlock channel in l2cap_conless_channel() Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 258/352] net: dsa: bcm_sf2: Fix a possible memory leak in bcm_sf2_mdio_register() Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 259/352] l2tp: fix lockdep splat Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 260/352] net: fec: Stop PPS on driver remove Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 261/352] rcutorture: Fix rcu_torture_fwd_cb_cr() data race Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 262/352] md: do not delete safemode_timer in mddev_suspend Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 263/352] md/raid5: avoid BUG_ON() while continue reshape after reassembling Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 264/352] clocksource/drivers/sh_cmt: Address race condition for clock events Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 265/352] ACPI: battery: create alarm sysfs attribute atomically Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 266/352] ACPI: SBS: manage alarm sysfs attribute through psy core Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 267/352] selftests/bpf: Fix send_signal test with nested CONFIG_PARAVIRT Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 268/352] PCI: Add Edimax Vendor ID to pci_ids.h Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 269/352] udf: prevent integer overflow in udf_bitmap_free_blocks() Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 270/352] wifi: nl80211: dont give key data to userspace Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 271/352] btrfs: fix bitmap leak when loading free space cache on duplicate entry Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 272/352] drm/amdgpu: Fix the null pointer dereference to ras_manager Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 273/352] drm/amdgpu/pm: Fix the null pointer dereference in apply_state_adjust_rules Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 274/352] media: uvcvideo: Ignore empty TS packets Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 275/352] media: uvcvideo: Fix the bandwdith quirk on USB 3.x Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 276/352] jbd2: avoid memleak in jbd2_journal_write_metadata_buffer Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 277/352] s390/sclp: Prevent release of buffer in I/O Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 278/352] SUNRPC: Fix a race to wake a sync task Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 279/352] sched/cputime: Fix mul_u64_u64_div_u64() precision for cputime Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 280/352] ext4: fix wrong unit use in ext4_mb_find_by_goal Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 281/352] arm64: cpufeature: Force HWCAP to be based on the sysreg visible to user-space Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 282/352] arm64: Add Neoverse-V2 part Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 283/352] arm64: cputype: Add Cortex-X4 definitions Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 284/352] arm64: cputype: Add Neoverse-V3 definitions Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 285/352] arm64: errata: Add workaround for Arm errata 3194386 and 3312417 Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 286/352] arm64: cputype: Add Cortex-X3 definitions Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 287/352] arm64: cputype: Add Cortex-A720 definitions Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 288/352] arm64: cputype: Add Cortex-X925 definitions Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 289/352] arm64: errata: Unify speculative SSBS errata logic Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 290/352] arm64: errata: Expand speculative SSBS workaround Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 291/352] arm64: cputype: Add Cortex-X1C definitions Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 292/352] arm64: cputype: Add Cortex-A725 definitions Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.10 293/352] arm64: errata: Expand speculative SSBS workaround (again) Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 294/352] i2c: smbus: Improve handling of stuck alerts Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 295/352] ASoC: codecs: wsa881x: Correct Soundwire ports mask Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 296/352] i2c: smbus: Send alert notifications to all devices if source not found Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 297/352] bpf: kprobe: remove unused declaring of bpf_kprobe_override Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 298/352] kprobes: Fix to check symbol prefixes correctly Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 299/352] spi: spi-fsl-lpspi: Fix scldiv calculation Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 300/352] ALSA: usb-audio: Re-add ScratchAmp quirk entries Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 301/352] drm/client: fix null pointer dereference in drm_client_modeset_probe Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 302/352] ALSA: line6: Fix racy access to midibuf Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 303/352] ALSA: hda: Add HP MP9 G4 Retail System AMS to force connect list Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 304/352] ALSA: hda/hdmi: Yet more pin fix for HP EliteDesk 800 G4 Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 305/352] usb: vhci-hcd: Do not drop references before new references are gained Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 306/352] USB: serial: debug: do not echo input by default Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 307/352] usb: gadget: core: Check for unset descriptor Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 308/352] usb: gadget: u_serial: Set start_delayed during suspend Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 309/352] scsi: ufs: core: Fix hba->last_dme_cmd_tstamp timestamp updating logic Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 310/352] tick/broadcast: Move per CPU pointer access into the atomic section Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 311/352] ntp: Clamp maxerror and esterror to operating range Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 312/352] driver core: Fix uevent_show() vs driver detach race Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 313/352] ntp: Safeguard against time_constant overflow Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 314/352] scsi: mpt3sas: Remove scsi_dma_map() error messages Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 315/352] scsi: mpt3sas: Avoid IOMMU page faults on REPORT ZONES Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 316/352] irqchip/meson-gpio: support more than 8 channels gpio irq Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 317/352] irqchip/meson-gpio: Convert meson_gpio_irq_controller::lock to raw_spinlock_t Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 318/352] serial: core: check uartclk for zero to avoid divide by zero Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 319/352] irqchip/xilinx: Fix shift out of bounds Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 320/352] genirq/irqdesc: Honor caller provided affinity in alloc_desc() Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 321/352] power: supply: axp288_charger: Fix constant_charge_voltage writes Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 322/352] power: supply: axp288_charger: Round constant_charge_voltage writes down Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 323/352] tracing: Fix overflow in get_free_elt() Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 324/352] padata: Fix possible divide-by-0 panic in padata_mt_helper() Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 325/352] x86/mtrr: Check if fixed MTRRs exist before saving them Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 326/352] drm/bridge: analogix_dp: properly handle zero sized AUX transactions Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 327/352] drm/mgag200: Set DDC timeout in milliseconds Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 328/352] mptcp: sched: check both directions for backup Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 329/352] mptcp: distinguish rcv vs sent backup flag in requests Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 330/352] mptcp: fix NL PM announced address accounting Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 331/352] mptcp: mib: count MPJ with backup flag Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 332/352] mptcp: export local_address Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 333/352] mptcp: pm: fix backup support in signal endpoints Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 334/352] samples: Add fs error monitoring example Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 335/352] samples: Make fs-monitor depend on libc and headers Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 336/352] Add gitignore file for samples/fanotify/ subdirectory Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 337/352] Fix gcc 4.9 build issue in 5.10.y Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 338/352] PCI/DPC: Fix use-after-free on concurrent DPC and hot-removal Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 339/352] netfilter: nf_tables: set element extended ACK reporting support Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 340/352] netfilter: nf_tables: use timestamp to check for set element timeout Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 341/352] netfilter: nf_tables: allow clone callbacks to sleep Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 342/352] netfilter: nf_tables: prefer nft_chain_validate Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 343/352] drm/i915/gem: Fix Virtual Memory mapping boundaries calculation Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 344/352] powerpc: Avoid nmi_enter/nmi_exit in real mode interrupt Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 345/352] arm64: cpufeature: Fix the visibility of compat hwcaps Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 346/352] media: uvcvideo: Use entity get_cur in uvc_ctrl_set Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 347/352] exec: Fix ToCToU between perm check and set-uid/gid usage Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 348/352] nvme/pci: Add APST quirk for Lenovo N60z laptop Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 349/352] vdpa: Make use of PFN_PHYS/PFN_UP/PFN_DOWN helper macro Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 350/352] vhost-vdpa: switch to use vmf_insert_pfn() in the fault handler Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 351/352] wifi: cfg80211: restrict NL80211_ATTR_TXQ_QUANTUM values Greg Kroah-Hartman
2024-08-15 13:26 ` [PATCH 5.10 352/352] ARM: dts: imx6qdl-kontron-samx6i: fix phy-mode Greg Kroah-Hartman
2024-08-15 18:54 ` [PATCH 5.10 000/352] 5.10.224-rc1 review Pavel Machek
2024-08-15 20:40 ` Florian Fainelli
2024-08-16  8:55 ` Anders Roxell

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=20240815131924.943238423@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=ilpo.jarvinen@linux.intel.com \
    --cc=lee@kernel.org \
    --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;
as well as URLs for NNTP newsgroup(s).