stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Alistair Francis <alistair@alistair23.me>,
	Benjamin Tissoires <benjamin.tissoires@redhat.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.10 362/563] HID: quirks: Allow inverting the absolute X/Y values
Date: Mon, 24 Jan 2022 19:42:07 +0100	[thread overview]
Message-ID: <20220124184036.931107513@linuxfoundation.org> (raw)
In-Reply-To: <20220124184024.407936072@linuxfoundation.org>

From: Alistair Francis <alistair@alistair23.me>

[ Upstream commit fd8d135b2c5e88662f2729e034913f183455a667 ]

Add a HID_QUIRK_X_INVERT/HID_QUIRK_Y_INVERT quirk that can be used
to invert the X/Y values.

Signed-off-by: Alistair Francis <alistair@alistair23.me>
[bentiss: silence checkpatch warning]
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Link: https://lore.kernel.org/r/20211208124045.61815-2-alistair@alistair23.me
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/hid/hid-input.c | 6 ++++++
 include/linux/hid.h     | 2 ++
 2 files changed, 8 insertions(+)

diff --git a/drivers/hid/hid-input.c b/drivers/hid/hid-input.c
index 580d378342c41..eb53855898c8d 100644
--- a/drivers/hid/hid-input.c
+++ b/drivers/hid/hid-input.c
@@ -1288,6 +1288,12 @@ void hidinput_hid_event(struct hid_device *hid, struct hid_field *field, struct
 
 	input = field->hidinput->input;
 
+	if (usage->type == EV_ABS &&
+	    (((*quirks & HID_QUIRK_X_INVERT) && usage->code == ABS_X) ||
+	     ((*quirks & HID_QUIRK_Y_INVERT) && usage->code == ABS_Y))) {
+		value = field->logical_maximum - value;
+	}
+
 	if (usage->hat_min < usage->hat_max || usage->hat_dir) {
 		int hat_dir = usage->hat_dir;
 		if (!hat_dir)
diff --git a/include/linux/hid.h b/include/linux/hid.h
index fc56d53cc68bf..2ba33d708942c 100644
--- a/include/linux/hid.h
+++ b/include/linux/hid.h
@@ -345,6 +345,8 @@ struct hid_item {
 /* BIT(9) reserved for backward compatibility, was NO_INIT_INPUT_REPORTS */
 #define HID_QUIRK_ALWAYS_POLL			BIT(10)
 #define HID_QUIRK_INPUT_PER_APP			BIT(11)
+#define HID_QUIRK_X_INVERT			BIT(12)
+#define HID_QUIRK_Y_INVERT			BIT(13)
 #define HID_QUIRK_SKIP_OUTPUT_REPORTS		BIT(16)
 #define HID_QUIRK_SKIP_OUTPUT_REPORT_ID		BIT(17)
 #define HID_QUIRK_NO_OUTPUT_REPORTS_ON_INTR_EP	BIT(18)
-- 
2.34.1




  parent reply	other threads:[~2022-01-24 21:04 UTC|newest]

Thread overview: 580+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-24 18:36 [PATCH 5.10 000/563] 5.10.94-rc1 review Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 001/563] KVM: VMX: switch blocked_vcpu_on_cpu_lock to raw spinlock Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 002/563] HID: uhid: Fix worker destroying device without any protection Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 003/563] HID: wacom: Reset expected and received contact counts at the same time Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 004/563] HID: wacom: Ignore the confidence flag when a touch is removed Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 005/563] HID: wacom: Avoid using stale array indicies to read contact count Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 006/563] f2fs: fix to do sanity check in is_alive() Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 007/563] nfc: llcp: fix NULL error pointer dereference on sendmsg() after failed bind() Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 008/563] mtd: rawnand: gpmi: Add ERR007117 protection for nfc_apply_timings Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 009/563] mtd: rawnand: gpmi: Remove explicit default gpmi clock setting for i.MX6 Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 010/563] mtd: Fixed breaking list in __mtd_del_partition Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 011/563] mtd: rawnand: davinci: Dont calculate ECC when reading page Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 012/563] mtd: rawnand: davinci: Avoid duplicated page read Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 013/563] mtd: rawnand: davinci: Rewrite function description Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 014/563] x86/gpu: Reserve stolen memory for first integrated Intel GPU Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 015/563] tools/nolibc: x86-64: Fix startup code bug Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 016/563] tools/nolibc: i386: fix initial stack alignment Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 017/563] tools/nolibc: fix incorrect truncation of exit code Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 018/563] rtc: cmos: take rtc_lock while reading from CMOS Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 019/563] media: v4l2-ioctl.c: readbuffers depends on V4L2_CAP_READWRITE Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 020/563] media: flexcop-usb: fix control-message timeouts Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 021/563] media: mceusb: " Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 022/563] media: em28xx: " Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 023/563] media: cpia2: " Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 024/563] media: s2255: " Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 025/563] media: dib0700: fix undefined behavior in tuner shutdown Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 026/563] media: redrat3: fix control-message timeouts Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 027/563] media: pvrusb2: " Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 028/563] media: stk1160: " Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 029/563] media: cec-pin: fix interrupt en/disable handling Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 030/563] can: softing_cs: softingcs_probe(): fix memleak on registration failure Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 031/563] iio: adc: ti-adc081c: Partial revert of removal of ACPI IDs Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 032/563] lkdtm: Fix content of section containing lkdtm_rodata_do_nothing() Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 033/563] iommu/io-pgtable-arm-v7s: Add error handle for page table allocation failure Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 034/563] gpu: host1x: Add back arm_iommu_detach_device() Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 035/563] dma_fence_array: Fix PENDING_ERROR leak in dma_fence_array_signaled() Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 036/563] PCI: Add function 1 DMA alias quirk for Marvell 88SE9125 SATA controller Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 037/563] mm_zone: add function to check if managed dma zone exists Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 038/563] dma/pool: create dma atomic pool only if dma zone has managed pages Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 039/563] mm/page_alloc.c: do not warn allocation failure on zone DMA if no " Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 040/563] shmem: fix a race between shmem_unused_huge_shrink and shmem_evict_inode Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 041/563] drm/ttm: Put BO in its memory managers lru list Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 042/563] Bluetooth: L2CAP: Fix not initializing sk_peer_pid Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 043/563] drm/bridge: display-connector: fix an uninitialized pointer in probe() Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 044/563] drm: fix null-ptr-deref in drm_dev_init_release() Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 045/563] drm/panel: kingdisplay-kd097d04: Delete panel on attach() failure Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 046/563] drm/panel: innolux-p079zca: " Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 047/563] drm/rockchip: dsi: Fix unbalanced clock on probe error Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 048/563] drm/rockchip: dsi: Hold pm-runtime across bind/unbind Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 049/563] drm/rockchip: dsi: Disable PLL clock on bind error Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 050/563] drm/rockchip: dsi: Reconfigure hardware on resume() Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 051/563] Bluetooth: cmtp: fix possible panic when cmtp_init_sockets() fails Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 052/563] clk: bcm-2835: Pick the closest clock rate Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 053/563] clk: bcm-2835: Remove rounding up the dividers Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.10 054/563] drm/vc4: hdmi: Set a default HSM rate Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 055/563] wcn36xx: ensure pairing of init_scan/finish_scan and start_scan/end_scan Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 056/563] wcn36xx: Indicate beacon not connection loss on MISSED_BEACON_IND Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 057/563] wcn36xx: Fix DMA channel enable/disable cycle Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 058/563] wcn36xx: Release DMA channel descriptor allocations Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 059/563] wcn36xx: Put DXE block into reset before freeing memory Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 060/563] wcn36xx: populate band before determining rate on RX Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 061/563] wcn36xx: fix RX BD rate mapping for 5GHz legacy rates Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 062/563] ath11k: Send PPDU_STATS_CFG with proper pdev mask to firmware Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 063/563] mtd: hyperbus: rpc-if: Check return value of rpcif_sw_init() Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 064/563] media: videobuf2: Fix the size printk format Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 065/563] media: atomisp: add missing media_device_cleanup() in atomisp_unregister_entities() Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 066/563] media: atomisp: fix punit_ddr_dvfs_enable() argument for mrfld_power up case Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 067/563] media: atomisp: fix inverted logic in buffers_needed() Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 068/563] media: atomisp: do not use err var when checking port validity for ISP2400 Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 069/563] media: atomisp: fix inverted error check for ia_css_mipi_is_source_port_valid() Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 070/563] media: atomisp: fix ifdefs in sh_css.c Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 071/563] media: staging: media: atomisp: pci: Balance braces around conditional statements in file atomisp_cmd.c Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 072/563] media: atomisp: add NULL check for asd obtained from atomisp_video_pipe Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 073/563] media: atomisp: fix enum formats logic Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 074/563] media: atomisp: fix uninitialized bug in gmin_get_pmic_id_and_addr() Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 075/563] media: aspeed: fix mode-detect always time out at 2nd run Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 076/563] media: em28xx: fix memory leak in em28xx_init_dev Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 077/563] media: aspeed: Update signal status immediately to ensure sane hw state Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 078/563] arm64: dts: amlogic: meson-g12: Fix GPU operating point table node name Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 079/563] arm64: dts: amlogic: Fix SPI NOR flash node name for ODROID N2/N2+ Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 080/563] arm64: dts: meson-gxbb-wetek: fix HDMI in early boot Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 081/563] arm64: dts: meson-gxbb-wetek: fix missing GPIO binding Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 082/563] fs: dlm: use sk->sk_socket instead of con->sock Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 083/563] fs: dlm: dont call kernel_getpeername() in error_report() Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 084/563] memory: renesas-rpc-if: Return error in case devm_ioremap_resource() fails Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 085/563] Bluetooth: stop proccessing malicious adv data Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 086/563] ath11k: Fix ETSI regd with weather radar overlap Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 087/563] ath11k: clear the keys properly via DISABLE_KEY Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 088/563] ath11k: reset RSN/WPA present state for open BSS Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 089/563] tee: fix put order in teedev_close_context() Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 090/563] fs: dlm: fix build with CONFIG_IPV6 disabled Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 091/563] drm/vboxvideo: fix a NULL vs IS_ERR() check Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 092/563] arm64: dts: renesas: cat875: Add rx/tx delays Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 093/563] media: dmxdev: fix UAF when dvb_register_device() fails Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 094/563] crypto: qce - fix uaf on qce_ahash_register_one Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 095/563] crypto: qce - fix uaf on qce_skcipher_register_one Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 096/563] mtd: hyperbus: rpc-if: fix bug in rpcif_hb_remove Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 097/563] ARM: dts: stm32: fix dtbs_check warning on ili9341 dts binding on stm32f429 disco Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 098/563] crypto: qat - fix spelling mistake: "messge" -> "message" Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 099/563] crypto: qat - remove unnecessary collision prevention step in PFVF Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 100/563] crypto: qat - make pfvf send message direction agnostic Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 101/563] crypto: qat - fix undetected PFVF timeout in ACK loop Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 102/563] ath11k: Use host CE parameters for CE interrupts configuration Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 103/563] arm64: dts: ti: k3-j721e: correct cache-sets info Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 104/563] tty: serial: atmel: Check return code of dmaengine_submit() Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 105/563] tty: serial: atmel: Call dma_async_issue_pending() Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 106/563] mfd: atmel-flexcom: Remove #ifdef CONFIG_PM_SLEEP Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 107/563] mfd: atmel-flexcom: Use .resume_noirq Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 108/563] media: rcar-csi2: Correct the selection of hsfreqrange Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 109/563] media: imx-pxp: Initialize the spinlock prior to using it Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 110/563] media: si470x-i2c: fix possible memory leak in si470x_i2c_probe() Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 111/563] media: mtk-vcodec: call v4l2_m2m_ctx_release first when file is released Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 112/563] media: coda: fix CODA960 JPEG encoder buffer overflow Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 113/563] media: venus: pm_helpers: Control core power domain manually Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.10 114/563] media: venus: core, venc, vdec: Fix probe dependency error Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 115/563] media: venus: core: Fix a potential NULL pointer dereference in an error handling path Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 116/563] media: venus: core: Fix a resource leak in the error handling path of venus_probe() Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 117/563] thermal/drivers/imx: Implement runtime PM support Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 118/563] netfilter: bridge: add support for pppoe filtering Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 119/563] arm64: dts: qcom: msm8916: fix MMC controller aliases Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 120/563] cgroup: Trace event cgroup id fields should be u64 Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 121/563] ACPI: EC: Rework flushing of EC work while suspended to idle Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 122/563] thermal/drivers/imx8mm: Enable ADC when enabling monitor Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 123/563] drm/amdgpu: Fix a NULL pointer dereference in amdgpu_connector_lcd_native_mode() Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 124/563] drm/radeon/radeon_kms: Fix a NULL pointer dereference in radeon_driver_open_kms() Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 125/563] arm64: dts: ti: k3-j7200: Fix the L2 cache sets Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 126/563] arm64: dts: ti: k3-j721e: " Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 127/563] arm64: dts: ti: k3-j7200: Correct the d-cache-sets info Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 128/563] tty: serial: uartlite: allow 64 bit address Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 129/563] serial: amba-pl011: do not request memory region twice Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 130/563] floppy: Fix hang in watchdog when disk is ejected Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 131/563] staging: rtl8192e: return error code from rtllib_softmac_init() Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 132/563] staging: rtl8192e: rtllib_module: fix error handle case in alloc_rtllib() Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 133/563] Bluetooth: btmtksdio: fix resume failure Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 134/563] sched/fair: Fix detection of per-CPU kthreads waking a task Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 135/563] sched/fair: Fix per-CPU kthread and wakee stacking for asym CPU capacity Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 136/563] bpf: Adjust BTF log size limit Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 137/563] bpf: Disallow BPF_LOG_KERNEL log level for bpf(BPF_BTF_LOAD) Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 138/563] bpf: Remove config check to enable bpf support for branch records Greg Kroah-Hartman
2022-01-25 19:27   ` Pavel Machek
2022-01-24 18:38 ` [PATCH 5.10 139/563] arm64: lib: Annotate {clear, copy}_page() as position-independent Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 140/563] arm64: clear_page() shouldnt use DC ZVA when DCZID_EL0.DZP == 1 Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 141/563] media: dib8000: Fix a memleak in dib8000_init() Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 142/563] media: saa7146: mxb: Fix a NULL pointer dereference in mxb_attach() Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 143/563] media: si2157: Fix "warm" tuner state detection Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 144/563] wireless: iwlwifi: Fix a double free in iwl_txq_dyn_alloc_dma Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 145/563] sched/rt: Try to restart rt period timer when rt runtime exceeded Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 146/563] drm/msm/dp: displayPort driver need algorithm rational Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 147/563] rcu/exp: Mark current CPU as exp-QS in IPI loop second pass Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 148/563] mwifiex: Fix possible ABBA deadlock Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 149/563] xfrm: fix a small bug in xfrm_sa_len() Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 150/563] x86/uaccess: Move variable into switch case statement Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 151/563] selftests: clone3: clone3: add case CLONE3_ARGS_NO_TEST Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 152/563] selftests: harness: avoid false negatives if test has no ASSERTs Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 153/563] crypto: stm32 - Fix last sparse warning in stm32_cryp_check_ctr_counter Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 154/563] crypto: stm32/cryp - fix CTR counter carry Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 155/563] crypto: stm32/cryp - fix xts and race condition in crypto_engine requests Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 156/563] crypto: stm32/cryp - check early input data Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 157/563] crypto: stm32/cryp - fix double pm exit Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 158/563] crypto: stm32/cryp - fix lrw chaining mode Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 159/563] crypto: stm32/cryp - fix bugs and crash in tests Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 160/563] crypto: stm32 - Revert broken pm_runtime_resume_and_get changes Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 161/563] ath11k: Fix deleting uninitialized kernel timer during fragment cache flush Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 162/563] ARM: dts: gemini: NAS4220-B: fis-index-block with 128 KiB sectors Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 163/563] media: dw2102: Fix use after free Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 164/563] media: msi001: fix possible null-ptr-deref in msi001_probe() Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 165/563] media: coda/imx-vdoa: Handle dma_set_coherent_mask error codes Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 166/563] ath11k: Fix a NULL pointer dereference in ath11k_mac_op_hw_scan() Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 167/563] arm64: dts: qcom: c630: Fix soundcard setup Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 168/563] arm64: dts: qcom: ipq6018: Fix gpio-ranges property Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 169/563] drm/msm/dpu: fix safe status debugfs file Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 170/563] drm/bridge: ti-sn65dsi86: Set max register for regmap Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 171/563] drm/tegra: vic: Fix DMA API misuse Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 172/563] media: hantro: Fix probe func error path Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.10 173/563] xfrm: interface with if_id 0 should return error Greg Kroah-Hartman
2022-01-26 21:59   ` Pavel Machek
2022-01-27  6:33     ` Steffen Klassert
2022-02-01  6:51     ` [PATCH] xfrm: fix the if_id check in changelink Antony Antony
2022-02-01  9:18       ` Greg Kroah-Hartman
2022-02-09  7:59       ` Steffen Klassert
2022-01-24 18:38 ` [PATCH 5.10 174/563] xfrm: state and policy should fail if XFRMA_IF_ID 0 Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 175/563] ARM: 9159/1: decompressor: Avoid UNPREDICTABLE NOP encoding Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 176/563] usb: ftdi-elan: fix memory leak on device disconnect Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 177/563] arm64: dts: marvell: cn9130: add GPIO and SPI aliases Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 178/563] arm64: dts: marvell: cn9130: enable CP0 GPIO controllers Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 179/563] ARM: dts: armada-38x: Add generic compatible to UART nodes Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 180/563] iwlwifi: mvm: fix 32-bit build in FTM Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 181/563] iwlwifi: mvm: test roc running status bits before removing the sta Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 182/563] mmc: meson-mx-sdhc: add IRQ check Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 183/563] mmc: meson-mx-sdio: " Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 184/563] selinux: fix potential memleak in selinux_add_opt() Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 185/563] um: fix ndelay/udelay defines Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 186/563] um: virtio_uml: Fix time-travel external time propagation Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 187/563] Bluetooth: L2CAP: Fix using wrong mode Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 188/563] bpftool: Enable line buffering for stdout Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 189/563] backlight: qcom-wled: Validate enabled string indices in DT Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 190/563] backlight: qcom-wled: Pass number of elements to read to read_u32_array Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 191/563] backlight: qcom-wled: Fix off-by-one maximum with default num_strings Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 192/563] backlight: qcom-wled: Override default length with qcom,enabled-strings Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 193/563] backlight: qcom-wled: Use cpu_to_le16 macro to perform conversion Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 194/563] backlight: qcom-wled: Respect enabled-strings in set_brightness Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 195/563] software node: fix wrong node passed to find nargs_prop Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 196/563] Bluetooth: hci_qca: Stop IBS timer during BT OFF Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 197/563] x86/boot/compressed: Move CLANG_FLAGS to beginning of KBUILD_CFLAGS Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 198/563] hwmon: (mr75203) fix wrong power-up delay value Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 199/563] x86/mce/inject: Avoid out-of-bounds write when setting flags Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 200/563] ACPI: scan: Create platform device for BCM4752 and LNV4752 ACPI nodes Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 201/563] pcmcia: rsrc_nonstatic: Fix a NULL pointer dereference in __nonstatic_find_io_region() Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 202/563] pcmcia: rsrc_nonstatic: Fix a NULL pointer dereference in nonstatic_find_mem_region() Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 203/563] power: reset: mt6397: Check for null res pointer Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 204/563] netfilter: ipt_CLUSTERIP: fix refcount leak in clusterip_tg_check() Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 205/563] bpf: Dont promote bogus looking registers after null check Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 206/563] bpf: Fix SO_RCVBUF/SO_SNDBUF handling in _bpf_setsockopt() Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 207/563] netfilter: nft_set_pipapo: allocate pcpu scratch maps on clone Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 208/563] ppp: ensure minimum packet size in ppp_write() Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 209/563] rocker: fix a sleeping in atomic bug Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 210/563] staging: greybus: audio: Check null pointer Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 211/563] fsl/fman: Check for null pointer after calling devm_ioremap Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 212/563] Bluetooth: hci_bcm: Check for error irq Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 213/563] Bluetooth: hci_qca: Fix NULL vs IS_ERR_OR_NULL check in qca_serdev_probe Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 214/563] usb: dwc3: qcom: Fix NULL vs IS_ERR checking in dwc3_qcom_probe Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 215/563] HID: hid-uclogic-params: Invalid parameter check in uclogic_params_init Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 216/563] HID: hid-uclogic-params: Invalid parameter check in uclogic_params_get_str_desc Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 217/563] HID: hid-uclogic-params: Invalid parameter check in uclogic_params_huion_init Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 218/563] HID: hid-uclogic-params: Invalid parameter check in uclogic_params_frame_init_v1_buttonpad Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 219/563] debugfs: lockdown: Allow reading debugfs files that are not world readable Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 220/563] net/mlx5e: Fix page DMA map/unmap attributes Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 221/563] net/mlx5e: Dont block routes with nexthop objects in SW Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 222/563] Revert "net/mlx5e: Block offload of outer header csum for UDP tunnels" Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 223/563] net/mlx5: Set command entry semaphore up once got index free Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 224/563] lib/mpi: Add the return value check of kcalloc() Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 225/563] Bluetooth: L2CAP: uninitialized variables in l2cap_sock_setsockopt() Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 226/563] spi: spi-meson-spifc: Add missing pm_runtime_disable() in meson_spifc_probe Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 227/563] ax25: uninitialized variable in ax25_setsockopt() Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 228/563] netrom: fix api breakage in nr_setsockopt() Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 229/563] regmap: Call regmap_debugfs_exit() prior to _init() Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 230/563] can: mcp251xfd: add missing newline to printed strings Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 231/563] tpm: add request_locality before write TPM_INT_ENABLE Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 232/563] tpm_tis: Fix an error handling path in tpm_tis_core_init() Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 233/563] can: softing: softing_startstop(): fix set but not used variable warning Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.10 234/563] can: xilinx_can: xcan_probe(): check for error irq Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 235/563] pcmcia: fix setting of kthread task states Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 236/563] iwlwifi: mvm: Use div_s64 instead of do_div in iwl_mvm_ftm_rtt_smoothing() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 237/563] net: mcs7830: handle usb read errors properly Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 238/563] ext4: avoid trim error on fs with small groups Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 239/563] ALSA: jack: Add missing rwsem around snd_ctl_remove() calls Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 240/563] ALSA: PCM: " Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 241/563] ALSA: hda: " Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 242/563] RDMA/bnxt_re: Scan the whole bitmap when checking if "disabling RCFW with pending cmd-bit" Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 243/563] RDMA/hns: Validate the pkey index Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 244/563] scsi: pm80xx: Update WARN_ON check in pm8001_mpi_build_cmd() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 245/563] clk: imx8mn: Fix imx8mn_clko1_sels Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 246/563] powerpc/prom_init: Fix improper check of prom_getprop() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 247/563] ASoC: uniphier: drop selecting non-existing SND_SOC_UNIPHIER_AIO_DMA Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 248/563] dt-bindings: thermal: Fix definition of cooling-maps contribution property Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 249/563] powerpc/64s: Convert some cpu_setup() and cpu_restore() functions to C Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 250/563] powerpc/perf: MMCR0 control for PMU registers under PMCC=00 Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 251/563] powerpc/perf: move perf irq/nmi handling details into traps.c Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 252/563] powerpc/irq: Add helper to set regs->softe Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 253/563] powerpc/perf: Fix PMU callbacks to clear pending PMI before resetting an overflown PMC Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 254/563] powerpc/32s: Fix shift-out-of-bounds in KASAN init Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 255/563] clocksource: Reduce clocksource-skew threshold Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 256/563] clocksource: Avoid accidental unstable marking of clocksources Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 257/563] ALSA: oss: fix compile error when OSS_DEBUG is enabled Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 258/563] ALSA: usb-audio: Drop superfluous 0 in Presonus Studio 1810cs ID Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 259/563] char/mwave: Adjust io port register size Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 260/563] binder: fix handling of error during copy Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 261/563] openrisc: Add clone3 ABI wrapper Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 262/563] uio: uio_dmem_genirq: Catch the Exception Greg Kroah-Hartman
2022-01-25 10:47   ` Pavel Machek
2022-01-25 10:57     ` Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 263/563] iommu/io-pgtable-arm: Fix table descriptor paddr formatting Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 264/563] scsi: ufs: Fix race conditions related to driver data Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 265/563] RDMA/qedr: Fix reporting max_{send/recv}_wr attrs Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 266/563] PCI/MSI: Fix pci_irq_vector()/pci_irq_get_affinity() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 267/563] powerpc/powermac: Add additional missing lockdep_register_key() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 268/563] RDMA/core: Let ib_find_gid() continue search even after empty entry Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 269/563] RDMA/cma: Let cma_resolve_ib_dev() " Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 270/563] ASoC: rt5663: Handle device_property_read_u32_array error codes Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 271/563] of: unittest: fix warning on PowerPC frame size warning Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 272/563] of: unittest: 64 bit dma address test requires arch support Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 273/563] clk: stm32: Fix ltdcs clock turn off by clk_disable_unused() after system enter shell Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 274/563] mips: add SYS_HAS_CPU_MIPS64_R5 config for MIPS Release 5 support Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 275/563] mips: fix Kconfig reference to PHYS_ADDR_T_64BIT Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 276/563] dmaengine: pxa/mmp: stop referencing config->slave_id Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 277/563] iommu/amd: Remove iommu_init_ga() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 278/563] iommu/amd: Restore GA log/tail pointer on host resume Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 279/563] ASoC: Intel: catpt: Test dmaengine_submit() result before moving on Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 280/563] iommu/iova: Fix race between FQ timeout and teardown Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 281/563] scsi: block: pm: Always set request queue runtime active in blk_post_runtime_resume() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 282/563] phy: uniphier-usb3ss: fix unintended writing zeros to PHY register Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 283/563] ASoC: mediatek: Check for error clk pointer Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 284/563] ASoC: samsung: idma: Check of ioremap return value Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 285/563] misc: lattice-ecp3-config: Fix task hung when firmware load failed Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 286/563] counter: stm32-lptimer-cnt: remove iio counter abi Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 287/563] arm64: tegra: Fix Tegra194 HDA {clock,reset}-names ordering Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 288/563] arm64: tegra: Remove non existent Tegra194 reset Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 289/563] mips: lantiq: add support for clk_set_parent() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 290/563] mips: bcm63xx: " Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 291/563] powerpc/xive: Add missing null check after calling kmalloc Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 292/563] ASoC: fsl_mqs: fix MODULE_ALIAS Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 293/563] RDMA/cxgb4: Set queue pair state when being queried Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.10 294/563] ASoC: fsl_asrc: refine the check of available clock divider Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 295/563] clk: bm1880: remove kfrees on static allocations Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 296/563] of: base: Fix phandle argument length mismatch error message Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 297/563] ARM: dts: omap3-n900: Fix lp5523 for multi color Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 298/563] Bluetooth: Fix debugfs entry leak in hci_register_dev() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 299/563] fs: dlm: filter user dlm messages for kernel locks Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 300/563] libbpf: Validate that .BTF and .BTF.ext sections contain data Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 301/563] drm/lima: fix warning when CONFIG_DEBUG_SG=y & CONFIG_DMA_API_DEBUG=y Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 302/563] selftests/bpf: Fix bpf_object leak in skb_ctx selftest Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 303/563] ar5523: Fix null-ptr-deref with unexpected WDCMSG_TARGET_START reply Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 304/563] drm/bridge: dw-hdmi: handle ELD when DRM_BRIDGE_ATTACH_NO_CONNECTOR Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 305/563] drm/nouveau/pmu/gm200-: avoid touching PMU outside of DEVINIT/PREOS/ACR Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 306/563] media: atomisp: fix try_fmt logic Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 307/563] media: atomisp: set per-devices default mode Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 308/563] media: atomisp-ov2680: Fix ov2680_set_fmt() clobbering the exposure Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 309/563] ARM: shmobile: rcar-gen2: Add missing of_node_put() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 310/563] batman-adv: allow netlink usage in unprivileged containers Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 311/563] media: atomisp: handle errors at sh_css_create_isp_params() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 312/563] ath11k: Fix crash caused by uninitialized TX ring Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 313/563] usb: gadget: f_fs: Use stream_open() for endpoint files Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 314/563] drm: panel-orientation-quirks: Add quirk for the Lenovo Yoga Book X91F/L Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 315/563] HID: apple: Do not reset quirks when the Fn key is not found Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 316/563] media: b2c2: Add missing check in flexcop_pci_isr: Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 317/563] EDAC/synopsys: Use the quirk for version instead of ddr version Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 318/563] ARM: imx: rename DEBUG_IMX21_IMX27_UART to DEBUG_IMX27_UART Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 319/563] drm/amd/display: check top_pipe_to_program pointer Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 320/563] drm/amdgpu/display: set vblank_disable_immediate for DC Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 321/563] soc: ti: pruss: fix referenced node in error message Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 322/563] mlxsw: pci: Add shutdown method in PCI driver Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 323/563] drm/bridge: megachips: Ensure both bridges are probed before registration Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 324/563] tty: serial: imx: disable UCR4_OREN in .stop_rx() instead of .shutdown() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 325/563] gpiolib: acpi: Do not set the IRQ type if the IRQ is already in use Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 326/563] HSI: core: Fix return freed object in hsi_new_client Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 327/563] crypto: jitter - consider 32 LSB for APT Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 328/563] mwifiex: Fix skb_over_panic in mwifiex_usb_recv() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 329/563] rsi: Fix use-after-free in rsi_rx_done_handler() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 330/563] rsi: Fix out-of-bounds read in rsi_read_pkt() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 331/563] ath11k: Avoid NULL ptr access during mgmt tx cleanup Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 332/563] media: venus: avoid calling core_clk_setrate() concurrently during concurrent video sessions Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 333/563] ACPI / x86: Drop PWM2 device on Lenovo Yoga Book from always present table Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 334/563] ACPI: Change acpi_device_always_present() into acpi_device_override_status() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 335/563] ACPI / x86: Allow specifying acpi_device_override_status() quirks by path Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 336/563] ACPI / x86: Add not-present quirk for the PCI0.SDHB.BRC1 device on the GPD win Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 337/563] arm64: dts: ti: j7200-main: Fix dtbs_check serdes_ln_ctrl node Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 338/563] usb: uhci: add aspeed ast2600 uhci support Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 339/563] floppy: Add max size check for user space request Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 340/563] x86/mm: Flush global TLB when switching to trampoline page-table Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 341/563] drm: rcar-du: Fix CRTC timings when CMM is used Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 342/563] media: uvcvideo: Increase UVC_CTRL_CONTROL_TIMEOUT to 5 seconds Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 343/563] media: rcar-vin: Update format alignment constraints Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 344/563] media: saa7146: hexium_orion: Fix a NULL pointer dereference in hexium_attach() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 345/563] media: m920x: dont use stack on USB reads Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 346/563] thunderbolt: Runtime PM activate both ends of the device link Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 347/563] iwlwifi: mvm: synchronize with FW after multicast commands Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 348/563] iwlwifi: mvm: avoid clearing a just saved session protection id Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 349/563] ath11k: avoid deadlock by change ieee80211_queue_work for regd_update_work Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 350/563] ath10k: Fix tx hanging Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 351/563] net-sysfs: update the queue counts in the unregistration path Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 352/563] net: phy: prefer 1000baseT over 1000baseKX Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 353/563] gpio: aspeed: Convert aspeed_gpio.lock to raw_spinlock Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.10 354/563] selftests/ftrace: make kprobe profile testcase description unique Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 355/563] ath11k: Avoid false DEADLOCK warning reported by lockdep Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 356/563] x86/mce: Allow instrumentation during task work queueing Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 357/563] x86/mce: Mark mce_panic() noinstr Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 358/563] x86/mce: Mark mce_end() noinstr Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 359/563] x86/mce: Mark mce_read_aux() noinstr Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 360/563] net: bonding: debug: avoid printing debug logs when bond is not notifying peers Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 361/563] bpf: Do not WARN in bpf_warn_invalid_xdp_action() Greg Kroah-Hartman
2022-01-24 18:42 ` Greg Kroah-Hartman [this message]
2022-01-24 18:42 ` [PATCH 5.10 363/563] media: igorplugusb: receiver overflow should be reported Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 364/563] media: saa7146: hexium_gemini: Fix a NULL pointer dereference in hexium_attach() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 365/563] mmc: core: Fixup storing of OCR for MMC_QUIRK_NONSTD_SDIO Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 366/563] audit: ensure userspace is penalized the same as the kernel when under pressure Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 367/563] arm64: dts: ls1028a-qds: move rtc node to the correct i2c bus Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 368/563] arm64: tegra: Adjust length of CCPLEX cluster MMIO region Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 369/563] PM: runtime: Add safety net to supplier device release Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 370/563] cpufreq: Fix initialization of min and max frequency QoS requests Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 371/563] usb: hub: Add delay for SuperSpeed hub resume to let links transit to U0 Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 372/563] ath9k: Fix out-of-bound memcpy in ath9k_hif_usb_rx_stream Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 373/563] rtw88: 8822c: update rx settings to prevent potential hw deadlock Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 374/563] PM: AVS: qcom-cpr: Use div64_ul instead of do_div Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 375/563] iwlwifi: fix leaks/bad data after failed firmware load Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 376/563] iwlwifi: remove module loading failure message Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 377/563] iwlwifi: mvm: Fix calculation of frame length Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 378/563] iwlwifi: pcie: make sure prph_info is set when treating wakeup IRQ Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 379/563] um: registers: Rename function names to avoid conflicts and build problems Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 380/563] ath11k: Fix napi related hang Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 381/563] Bluetooth: vhci: Set HCI_QUIRK_VALID_LE_STATES Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 382/563] xfrm: rate limit SA mapping change message to user space Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 383/563] drm/etnaviv: consider completed fence seqno in hang check Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 384/563] jffs2: GC deadlock reading a page that is used in jffs2_write_begin() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 385/563] ACPICA: actypes.h: Expand the ACPI_ACCESS_ definitions Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 386/563] ACPICA: Utilities: Avoid deleting the same object twice in a row Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 387/563] ACPICA: Executer: Fix the REFCLASS_REFOF case in acpi_ex_opcode_1A_0T_1R() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 388/563] ACPICA: Fix wrong interpretation of PCC address Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 389/563] ACPICA: Hardware: Do not flush CPU cache when entering S4 and S5 Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 390/563] drm/amdgpu: fixup bad vram size on gmc v8 Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 391/563] amdgpu/pm: Make sysfs pm attributes as read-only for VFs Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 392/563] ACPI: battery: Add the ThinkPad "Not Charging" quirk Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 393/563] btrfs: remove BUG_ON() in find_parent_nodes() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 394/563] btrfs: remove BUG_ON(!eie) in find_parent_nodes Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 395/563] net: mdio: Demote probed message to debug print Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 396/563] mac80211: allow non-standard VHT MCS-10/11 Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 397/563] dm btree: add a defensive bounds check to insert_at() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 398/563] dm space map common: add bounds check to sm_ll_lookup_bitmap() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 399/563] mlxsw: pci: Avoid flow control for EMAD packets Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 400/563] net: phy: marvell: configure RGMII delays for 88E1118 Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 401/563] net: gemini: allow any RGMII interface mode Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 402/563] regulator: qcom_smd: Align probe function with rpmh-regulator Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 403/563] serial: pl010: Drop CR register reset on set_termios Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 404/563] serial: core: Keep mctrl register state and cached copy in sync Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 405/563] random: do not throw away excess input to crng_fast_load Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 406/563] parisc: Avoid calling faulthandler_disabled() twice Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 407/563] scripts: sphinx-pre-install: Fix ctex support on Debian Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 408/563] x86/kbuild: Enable CONFIG_KALLSYMS_ALL=y in the defconfigs Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 409/563] powerpc/6xx: add missing of_node_put Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 410/563] powerpc/powernv: " Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 411/563] powerpc/cell: " Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 412/563] powerpc/btext: " Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 413/563] powerpc/watchdog: Fix missed watchdog reset due to memory ordering race Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.10 414/563] i2c: i801: Dont silently correct invalid transfer size Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 415/563] powerpc/smp: Move setup_profiling_timer() under CONFIG_PROFILING Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 416/563] i2c: mpc: Correct I2C reset procedure Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 417/563] clk: meson: gxbb: Fix the SDM_EN bit for MPLL0 on GXBB Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 418/563] powerpc/powermac: Add missing lockdep_register_key() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 419/563] KVM: PPC: Book3S: Suppress warnings when allocating too big memory slots Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 420/563] KVM: PPC: Book3S: Suppress failed alloc warning in H_COPY_TOFROM_GUEST Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 421/563] w1: Misuse of get_user()/put_user() reported by sparse Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 422/563] nvmem: core: set size for sysfs bin file Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 423/563] dm: fix alloc_dax error handling in alloc_dev Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 424/563] scsi: lpfc: Trigger SLI4 firmware dump before doing driver cleanup Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 425/563] ALSA: seq: Set upper limit of processed events Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 426/563] MIPS: Loongson64: Use three arguments for slti Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 427/563] powerpc/40x: Map 32Mbytes of memory at startup Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 428/563] selftests/powerpc/spectre_v2: Return skip code when miss_percent is high Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 429/563] powerpc: handle kdump appropriately with crash_kexec_post_notifiers option Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 430/563] powerpc/fadump: Fix inaccurate CPU state info in vmcore generated with panic Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 431/563] udf: Fix error handling in udf_new_inode() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 432/563] MIPS: OCTEON: add put_device() after of_find_device_by_node() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 433/563] irqchip/gic-v4: Disable redistributors view of the VPE table at boot time Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 434/563] i2c: designware-pci: Fix to change data types of hcnt and lcnt parameters Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 435/563] MIPS: Octeon: Fix build errors using clang Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 436/563] scsi: sr: Dont use GFP_DMA Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 437/563] ASoC: mediatek: mt8173: fix device_node leak Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 438/563] ASoC: mediatek: mt8183: " Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 439/563] phy: mediatek: Fix missing check in mtk_mipi_tx_probe Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 440/563] rpmsg: core: Clean up resources on announce_create failure Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 441/563] crypto: omap-aes - Fix broken pm_runtime_and_get() usage Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 442/563] crypto: stm32/crc32 - Fix kernel BUG triggered in probe() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 443/563] crypto: caam - replace this_cpu_ptr with raw_cpu_ptr Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 444/563] ubifs: Error path in ubifs_remount_rw() seems to wrongly free write buffers Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 445/563] tpm: fix NPE on probe for missing device Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 446/563] spi: uniphier: Fix a bug that doesnt point to private data correctly Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 447/563] xen/gntdev: fix unmap notification order Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 448/563] fuse: Pass correct lend value to filemap_write_and_wait_range() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 449/563] serial: Fix incorrect rs485 polarity on uart open Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 450/563] cputime, cpuacct: Include guest time in user time in cpuacct.stat Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 451/563] tracing/kprobes: nmissed not showed correctly for kretprobe Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 452/563] iwlwifi: mvm: Increase the scan timeout guard to 30 seconds Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 453/563] s390/mm: fix 2KB pgtable release race Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 454/563] device property: Fix fwnode_graph_devcon_match() fwnode leak Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 455/563] drm/etnaviv: limit submit sizes Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 456/563] drm/nouveau/kms/nv04: use vzalloc for nv04_display Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 457/563] drm/bridge: analogix_dp: Make PSR-exit block less Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 458/563] parisc: Fix lpa and lpa_user defines Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 459/563] powerpc/64s/radix: Fix huge vmap false positive Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 460/563] PCI: xgene: Fix IB window setup Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 461/563] PCI: pciehp: Use down_read/write_nested(reset_lock) to fix lockdep errors Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 462/563] PCI: pciehp: Fix infinite loop in IRQ handler upon power fault Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 463/563] PCI: pci-bridge-emul: Make expansion ROM Base Address register read-only Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 464/563] PCI: pci-bridge-emul: Properly mark reserved PCIe bits in PCI config space Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 465/563] PCI: pci-bridge-emul: Fix definitions of reserved bits Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 466/563] PCI: pci-bridge-emul: Correctly set PCIe capabilities Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 467/563] PCI: pci-bridge-emul: Set PCI_STATUS_CAP_LIST for PCIe device Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 468/563] xfrm: fix policy lookup for ipv6 gre packets Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 469/563] btrfs: fix deadlock between quota enable and other quota operations Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 470/563] btrfs: check the root node for uptodate before returning it Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 471/563] btrfs: respect the max size in the header when activating swap file Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 472/563] ext4: make sure to reset inode lockdep class when quota enabling fails Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 473/563] ext4: make sure quota gets properly shutdown on error Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.10 474/563] ext4: fix a possible ABBA deadlock due to busy PA Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 475/563] ext4: initialize err_blk before calling __ext4_get_inode_loc Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 476/563] ext4: fix fast commit may miss tracking range for FALLOC_FL_ZERO_RANGE Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 477/563] ext4: set csum seed in tmp inode while migrating to extents Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 478/563] ext4: Fix BUG_ON in ext4_bread when write quota data Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 479/563] ext4: use ext4_ext_remove_space() for fast commit replay delete range Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 480/563] ext4: fast commit may miss tracking unwritten range during ftruncate Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 481/563] ext4: destroy ext4_fc_dentry_cachep kmemcache on module removal Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 482/563] ext4: fix null-ptr-deref in __ext4_journal_ensure_credits Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 483/563] ext4: dont use the orphan list when migrating an inode Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 484/563] drm/radeon: fix error handling in radeon_driver_open_kms Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 485/563] of: base: Improve argument length mismatch error Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 486/563] firmware: Update Kconfig help text for Google firmware Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 487/563] can: mcp251xfd: mcp251xfd_tef_obj_read(): fix typo in error message Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 488/563] media: rcar-csi2: Optimize the selection PHTW register Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 489/563] drm/vc4: hdmi: Make sure the device is powered with CEC Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 490/563] media: correct MEDIA_TEST_SUPPORT help text Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 491/563] Documentation: dmaengine: Correctly describe dmatest with channel unset Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 492/563] Documentation: ACPI: Fix data node reference documentation Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 493/563] Documentation: refer to config RANDOMIZE_BASE for kernel address-space randomization Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 494/563] Documentation: fix firewire.rst ABI file path error Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 495/563] Bluetooth: hci_sync: Fix not setting adv set duration Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 496/563] scsi: core: Show SCMD_LAST in text form Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 497/563] dmaengine: uniphier-xdmac: Fix type of address variables Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 498/563] RDMA/hns: Modify the mapping attribute of doorbell to device Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 499/563] RDMA/rxe: Fix a typo in opcode name Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 500/563] dmaengine: stm32-mdma: fix STM32_MDMA_CTBR_TSEL_MASK Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 501/563] Revert "net/mlx5: Add retry mechanism to the command entry index allocation" Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 502/563] powerpc/cell: Fix clang -Wimplicit-fallthrough warning Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 503/563] powerpc/fsl/dts: Enable WA for erratum A-009885 on fman3l MDIO buses Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 504/563] block: Fix fsync always failed if once failed Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 505/563] arm64/bpf: Remove 128MB limit for BPF JIT programs Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 506/563] bpftool: Remove inclusion of utilities.mak from Makefiles Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 507/563] xdp: check prog type before updating BPF link Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 508/563] perf evsel: Override attr->sample_period for non-libpfm4 events Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 509/563] ipv4: update fib_info_cnt under spinlock protection Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 510/563] ipv4: avoid quadratic behavior in netns dismantle Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 511/563] net/fsl: xgmac_mdio: Add workaround for erratum A-009885 Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 512/563] net/fsl: xgmac_mdio: Fix incorrect iounmap when removing module Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 513/563] parisc: pdc_stable: Fix memory leak in pdcs_register_pathentries Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 514/563] f2fs: compress: fix potential deadlock of compress file Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 515/563] f2fs: fix to reserve space for IO align feature Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 516/563] af_unix: annote lockless accesses to unix_tot_inflight & gc_in_progress Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 517/563] clk: Emit a stern warning with writable debugfs enabled Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 518/563] clk: si5341: Fix clock HW provider cleanup Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 519/563] net/smc: Fix hung_task when removing SMC-R devices Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 520/563] net: axienet: increase reset timeout Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 521/563] net: axienet: Wait for PhyRstCmplt after core reset Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 522/563] net: axienet: reset core on initialization prior to MDIO access Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 523/563] net: axienet: add missing memory barriers Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 524/563] net: axienet: limit minimum TX ring size Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 525/563] net: axienet: Fix TX ring slot available check Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 526/563] net: axienet: fix number of TX ring slots for " Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 527/563] net: axienet: fix for TX busy handling Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 528/563] net: axienet: increase default TX ring size to 128 Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 529/563] HID: vivaldi: fix handling devices not using numbered reports Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 530/563] rtc: pxa: fix null pointer dereference Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 531/563] vdpa/mlx5: Fix wrong configuration of virtio_version_1_0 Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 532/563] virtio_ring: mark ring unused on error Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 533/563] taskstats: Cleanup the use of task->exit_code Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.10 534/563] inet: frags: annotate races around fqdir->dead and fqdir->high_thresh Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 535/563] netns: add schedule point in ops_exit_list() Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 536/563] xfrm: Dont accidentally set RTO_ONLINK in decode_session4() Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 537/563] gre: Dont accidentally set RTO_ONLINK in gre_fill_metadata_dst() Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 538/563] libcxgb: Dont accidentally set RTO_ONLINK in cxgb_find_route() Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 539/563] perf script: Fix hex dump character output Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 540/563] dmaengine: at_xdmac: Dont start transactions at tx_submit level Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 541/563] dmaengine: at_xdmac: Start transfer for cyclic channels in issue_pending Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 542/563] dmaengine: at_xdmac: Print debug message after realeasing the lock Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 543/563] dmaengine: at_xdmac: Fix concurrency over xfers_list Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 544/563] dmaengine: at_xdmac: Fix lld view setting Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 545/563] dmaengine: at_xdmac: Fix at_xdmac_lld struct definition Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 546/563] perf probe: Fix ppc64 perf probe add events failed case Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 547/563] devlink: Remove misleading internal_flags from health reporter dump Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 548/563] arm64: dts: qcom: msm8996: drop not documented adreno properties Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 549/563] net: bonding: fix bond_xmit_broadcast return value error bug Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 550/563] net_sched: restore "mpu xxx" handling Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 551/563] bcmgenet: add WOL IRQ check Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 552/563] net: ethernet: mtk_eth_soc: fix error checking in mtk_mac_config() Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 553/563] net: sfp: fix high power modules without diagnostic monitoring Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 554/563] net: mscc: ocelot: fix using match before it is set Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 555/563] dt-bindings: display: meson-dw-hdmi: add missing sound-name-prefix property Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 556/563] dt-bindings: display: meson-vpu: Add missing amlogic,canvas property Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 557/563] dt-bindings: watchdog: Require samsung,syscon-phandle for Exynos7 Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 558/563] scripts/dtc: dtx_diff: remove broken example from help text Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 559/563] lib82596: Fix IRQ check in sni_82596_probe Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 560/563] mm/hmm.c: allow VM_MIXEDMAP to work with hmm_range_fault Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 561/563] lib/test_meminit: destroy cache in kmem_cache_alloc_bulk() test Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 562/563] mtd: nand: bbt: Fix corner case in bad block table handling Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.10 563/563] ath10k: Fix the MTU size on QCA9377 SDIO Greg Kroah-Hartman
2022-01-24 20:22 ` [PATCH 5.10 000/563] 5.10.94-rc1 review Pavel Machek
2022-01-25 11:05   ` Greg Kroah-Hartman
2022-01-24 23:00 ` Daniel Díaz
2022-01-25  3:54   ` Florian Fainelli
2022-01-25 11:04     ` Greg Kroah-Hartman
2022-01-25  6:54   ` Naresh Kamboju
2022-01-25  1:48 ` Shuah Khan
2022-01-25  3:08 ` Samuel Zou

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=20220124184036.931107513@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=alistair@alistair23.me \
    --cc=benjamin.tissoires@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sashal@kernel.org \
    --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).