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, Simon Ser <contact@emersion.fr>,
	Hans de Goede <hdegoede@redhat.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.10 164/575] drm: panel-orientation-quirks: Update the Lenovo Ideapad D330 quirk (v2)
Date: Mon, 15 Nov 2021 17:58:09 +0100	[thread overview]
Message-ID: <20211115165349.385942704@linuxfoundation.org> (raw)
In-Reply-To: <20211115165343.579890274@linuxfoundation.org>

From: Hans de Goede <hdegoede@redhat.com>

[ Upstream commit 820a2ab23d5eab4ccfb82581eda8ad4acf18458f ]

2 improvements to the Lenovo Ideapad D330 panel-orientation quirks:

1. Some versions of the Lenovo Ideapad D330 have a DMI_PRODUCT_NAME of
"81H3" and others have "81MD". Testing has shown that the "81MD" also has
a 90 degree mounted panel. Drop the DMI_PRODUCT_NAME from the existing
quirk so that the existing quirk matches both variants.

2. Some of the Lenovo Ideapad D330 models have a HD (800x1280) screen
instead of a FHD (1200x1920) screen (both are mounted right-side-up) add
a second Lenovo Ideapad D330 quirk for the HD version.

Changes in v2:
- Add a new quirk for Lenovo Ideapad D330 models with a HD screen instead
  of a FHD screen

Link: https://github.com/systemd/systemd/pull/18884
Acked-by: Simon Ser <contact@emersion.fr>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210530110428.12994-2-hdegoede@redhat.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/gpu/drm/drm_panel_orientation_quirks.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/drm_panel_orientation_quirks.c b/drivers/gpu/drm/drm_panel_orientation_quirks.c
index e1b2ce4921ae7..5d0942e3985b2 100644
--- a/drivers/gpu/drm/drm_panel_orientation_quirks.c
+++ b/drivers/gpu/drm/drm_panel_orientation_quirks.c
@@ -223,10 +223,15 @@ static const struct dmi_system_id orientation_data[] = {
 		  DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "Lenovo MIIX 320-10ICR"),
 		},
 		.driver_data = (void *)&lcd800x1280_rightside_up,
-	}, {	/* Lenovo Ideapad D330 */
+	}, {	/* Lenovo Ideapad D330-10IGM (HD) */
+		.matches = {
+		  DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"),
+		  DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "Lenovo ideapad D330-10IGM"),
+		},
+		.driver_data = (void *)&lcd800x1280_rightside_up,
+	}, {	/* Lenovo Ideapad D330-10IGM (FHD) */
 		.matches = {
 		  DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"),
-		  DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "81H3"),
 		  DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "Lenovo ideapad D330-10IGM"),
 		},
 		.driver_data = (void *)&lcd1200x1920_rightside_up,
-- 
2.33.0




  parent reply	other threads:[~2021-11-15 17:49 UTC|newest]

Thread overview: 596+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-15 16:55 [PATCH 5.10 000/575] 5.10.80-rc1 review Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 001/575] xhci: Fix USB 3.1 enumeration issues by increasing roothub power-on-good delay Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 002/575] usb: xhci: Enable runtime-pm by default on AMD Yellow Carp platform Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 003/575] binder: use euid from cred instead of using task Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 004/575] binder: use cred instead of task for selinux checks Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 005/575] binder: use cred instead of task for getsecid Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 006/575] Input: iforce - fix control-message timeout Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 007/575] Input: elantench - fix misreporting trackpoint coordinates Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 008/575] Input: i8042 - Add quirk for Fujitsu Lifebook T725 Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 009/575] libata: fix read log timeout value Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 010/575] ocfs2: fix data corruption on truncate Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 011/575] scsi: core: Remove command size deduction from scsi_setup_scsi_cmnd() Greg Kroah-Hartman
2021-11-15 17:58   ` Bart Van Assche
2021-11-15 18:11     ` Greg Kroah-Hartman
2021-11-15 18:32     ` Tadeusz Struk
2021-11-15 16:55 ` [PATCH 5.10 012/575] scsi: qla2xxx: Fix kernel crash when accessing port_speed sysfs file Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 013/575] scsi: qla2xxx: Fix use after free in eh_abort path Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 014/575] mmc: mtk-sd: Add wait dma stop done flow Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 015/575] mmc: dw_mmc: Dont wait for DRTO on Write RSP error Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 016/575] exfat: fix incorrect loading of i_blocks for large files Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 017/575] parisc: Fix set_fixmap() on PA1.x CPUs Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 018/575] parisc: Fix ptrace check on syscall return Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 019/575] tpm: Check for integer overflow in tpm2_map_response_body() Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 020/575] firmware/psci: fix application of sizeof to pointer Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 021/575] crypto: s5p-sss - Add error handling in s5p_aes_probe() Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 022/575] media: rkvdec: Do not override sizeimage for output format Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 023/575] media: ite-cir: IR receiver stop working after receive overflow Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 024/575] media: rkvdec: Support dynamic resolution changes Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 025/575] media: ir-kbd-i2c: improve responsiveness of hauppauge zilog receivers Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 026/575] media: v4l2-ioctl: Fix check_ext_ctrls Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 027/575] ALSA: hda/realtek: Fix mic mute LED for the HP Spectre x360 14 Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 028/575] ALSA: hda/realtek: Add a quirk for HP OMEN 15 mute LED Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 029/575] ALSA: hda/realtek: Add quirk for Clevo PC70HS Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 030/575] ALSA: hda/realtek: Headset fixup for Clevo NH77HJQ Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 031/575] ALSA: hda/realtek: Add a quirk for Acer Spin SP513-54N Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 032/575] ALSA: hda/realtek: Add quirk for ASUS UX550VE Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 033/575] ALSA: hda/realtek: Add quirk for HP EliteBook 840 G7 mute LED Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.10 034/575] ALSA: ua101: fix division by zero at probe Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 035/575] ALSA: 6fire: fix control and bulk message timeouts Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 036/575] ALSA: line6: fix control and interrupt " Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 037/575] ALSA: usb-audio: Line6 HX-Stomp XL USB_ID for 48k-fixed quirk Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 038/575] ALSA: usb-audio: Add registration quirk for JBL Quantum 400 Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 039/575] ALSA: hda: Free card instance properly at probe errors Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 040/575] ALSA: synth: missing check for possible NULL after the call to kstrdup Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 041/575] ALSA: timer: Fix use-after-free problem Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 042/575] ALSA: timer: Unconditionally unlink slave instances, too Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 043/575] ext4: fix lazy initialization next schedule time computation in more granular unit Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 044/575] ext4: ensure enough credits in ext4_ext_shift_path_extents Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 045/575] ext4: refresh the ext4_ext_path struct after dropping i_data_sem Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 046/575] fuse: fix page stealing Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 047/575] x86/sme: Use #define USE_EARLY_PGTABLE_L5 in mem_encrypt_identity.c Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 048/575] x86/cpu: Fix migration safety with X86_BUG_NULL_SEL Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 049/575] x86/irq: Ensure PI wakeup handler is unregistered before module unload Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 050/575] ASoC: soc-core: fix null-ptr-deref in snd_soc_del_component_unlocked() Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 051/575] ALSA: hda/realtek: Fixes HP Spectre x360 15-eb1xxx speakers Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 052/575] cavium: Return negative value when pci_alloc_irq_vectors() fails Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 053/575] scsi: qla2xxx: Return -ENOMEM if kzalloc() fails Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 054/575] scsi: qla2xxx: Fix unmap of already freed sgl Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 055/575] mISDN: Fix return values of the probe function Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 056/575] cavium: " Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 057/575] sfc: Export fibre-specific supported link modes Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 058/575] sfc: Dont use netif_info before net_device setup Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 059/575] hyperv/vmbus: include linux/bitops.h Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 060/575] ARM: dts: sun7i: A20-olinuxino-lime2: Fix ethernet phy-mode Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 061/575] reset: tegra-bpmp: Handle errors in BPMP response Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 062/575] reset: socfpga: add empty driver allowing consumers to probe Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 063/575] mmc: winbond: dont build on M68K Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 064/575] drm: panel-orientation-quirks: Add quirk for Aya Neo 2021 Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 065/575] fcnal-test: kill hanging ping/nettest binaries on cleanup Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 066/575] bpf: Define bpf_jit_alloc_exec_limit for arm64 JIT Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 067/575] bpf: Prevent increasing bpf_jit_limit above max Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 068/575] gpio: mlxbf2.c: Add check for bgpio_init failure Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 069/575] xen/netfront: stop tx queues during live migration Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 070/575] nvmet-tcp: fix a memory leak when releasing a queue Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 071/575] spi: spl022: fix Microwire full duplex mode Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 072/575] net: multicast: calculate csum of looped-back and forwarded packets Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 073/575] watchdog: Fix OMAP watchdog early handling Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 074/575] drm: panel-orientation-quirks: Add quirk for GPD Win3 Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 075/575] block: schedule queue restart after BLK_STS_ZONE_RESOURCE Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 076/575] nvmet-tcp: fix header digest verification Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 077/575] r8169: Add device 10ec:8162 to driver r8169 Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 078/575] vmxnet3: do not stop tx queues after netif_device_detach() Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 079/575] nfp: bpf: relax prog rejection for mtu check through max_pkt_offset Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 080/575] net/smc: Fix smc_link->llc_testlink_time overflow Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 081/575] net/smc: Correct spelling mistake to TCPF_SYN_RECV Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 082/575] rds: stop using dmapool Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 083/575] btrfs: clear MISSING device status bit in btrfs_close_one_device Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 084/575] btrfs: fix lost error handling when replaying directory deletes Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 085/575] btrfs: call btrfs_check_rw_degradable only if there is a missing device Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 086/575] KVM: VMX: Unregister posted interrupt wakeup handler on hardware unsetup Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 087/575] powerpc/kvm: Fix kvm_use_magic_page Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 088/575] ia64: kprobes: Fix to pass correct trampoline address to the handler Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 089/575] selinux: fix race condition when computing ocontext SIDs Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 090/575] hwmon: (pmbus/lm25066) Add offset coefficients Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 091/575] regulator: s5m8767: do not use reset value as DVS voltage if GPIO DVS is disabled Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 092/575] regulator: dt-bindings: samsung,s5m8767: correct s5m8767,pmic-buck-default-dvs-idx property Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 093/575] EDAC/sb_edac: Fix top-of-high-memory value for Broadwell/Haswell Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.10 094/575] mwifiex: fix division by zero in fw download path Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 095/575] ath6kl: fix division by zero in send path Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 096/575] ath6kl: fix control-message timeout Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 097/575] ath10k: " Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 098/575] ath10k: fix division by zero in send path Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 099/575] PCI: Mark Atheros QCA6174 to avoid bus reset Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 100/575] rtl8187: fix control-message timeouts Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 101/575] evm: mark evm_fixmode as __ro_after_init Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 102/575] ifb: Depend on netfilter alternatively to tc Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 103/575] wcn36xx: Fix HT40 capability for 2Ghz band Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 104/575] wcn36xx: Fix tx_status mechanism Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 105/575] wcn36xx: Fix (QoS) null data frame bitrate/modulation Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 106/575] PM: sleep: Do not let "syscore" devices runtime-suspend during system transitions Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 107/575] mwifiex: Read a PCI register after writing the TX ring write pointer Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 108/575] mwifiex: Try waking the firmware until we get an interrupt Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 109/575] libata: fix checking of DMA state Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 110/575] wcn36xx: handle connection loss indication Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 111/575] rsi: fix occasional initialisation failure with BT coex Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 112/575] rsi: fix key enabled check causing unwanted encryption for vap_id > 0 Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 113/575] rsi: fix rate mask set leading to P2P failure Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 114/575] rsi: Fix module dev_oper_mode parameter description Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 115/575] perf/x86/intel/uncore: Support extra IMC channel on Ice Lake server Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 116/575] perf/x86/intel/uncore: Fix Intel ICX IIO event constraints Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 117/575] RDMA/qedr: Fix NULL deref for query_qp on the GSI QP Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 118/575] signal: Remove the bogus sigkill_pending in ptrace_stop Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 119/575] memory: renesas-rpc-if: Correct QSPI data transfer in Manual mode Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 120/575] signal/mips: Update (_save|_restore)_fp_context to fail with -EFAULT Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 121/575] soc: fsl: dpio: replace smp_processor_id with raw_smp_processor_id Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 122/575] soc: fsl: dpio: use the combined functions to protect critical zone Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 123/575] mtd: rawnand: socrates: Keep the driver compatible with on-die ECC engines Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 124/575] power: supply: max17042_battery: Prevent int underflow in set_soc_threshold Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 125/575] power: supply: max17042_battery: use VFSOC for capacity when no rsns Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 126/575] KVM: arm64: Extract ESR_ELx.EC only Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 127/575] KVM: nVMX: Query current VMCS when determining if MSR bitmaps are in use Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 128/575] can: j1939: j1939_tp_cmd_recv(): ignore abort message in the BAM transport Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 129/575] can: j1939: j1939_can_recv(): ignore messages with invalid source address Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 130/575] powerpc/85xx: Fix oops when mpc85xx_smp_guts_ids node cannot be found Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 131/575] ring-buffer: Protect ring_buffer_reset() from reentrancy Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 132/575] serial: core: Fix initializing and restoring termios speed Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 133/575] ifb: fix building without CONFIG_NET_CLS_ACT Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 134/575] ALSA: mixer: oss: Fix racy access to slots Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 135/575] ALSA: mixer: fix deadlock in snd_mixer_oss_set_volume Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 136/575] xen/balloon: add late_initcall_sync() for initial ballooning done Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 137/575] ovl: fix use after free in struct ovl_aio_req Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 138/575] PCI: pci-bridge-emul: Fix emulation of W1C bits Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 139/575] PCI: cadence: Add cdns_plat_pcie_probe() missing return Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 140/575] PCI: aardvark: Do not clear status bits of masked interrupts Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 141/575] PCI: aardvark: Fix checking for link up via LTSSM state Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 142/575] PCI: aardvark: Do not unmask unused interrupts Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 143/575] PCI: aardvark: Fix reporting Data Link Layer Link Active Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 144/575] PCI: aardvark: Fix configuring Reference clock Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 145/575] PCI: aardvark: Fix return value of MSI domain .alloc() method Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 146/575] PCI: aardvark: Read all 16-bits from PCIE_MSI_PAYLOAD_REG Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 147/575] PCI: aardvark: Fix support for bus mastering and PCI_COMMAND on emulated bridge Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 148/575] PCI: aardvark: Fix support for PCI_BRIDGE_CTL_BUS_RESET " Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 149/575] PCI: aardvark: Set PCI Bridge Class Code to PCI Bridge Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 150/575] PCI: aardvark: Fix support for PCI_ROM_ADDRESS1 on emulated bridge Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 151/575] quota: check block number when reading the block in quota file Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 152/575] quota: correct error number in free_dqentry() Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 153/575] pinctrl: core: fix possible memory leak in pinctrl_enable() Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.10 154/575] coresight: cti: Correct the parameter for pm_runtime_put Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 155/575] iio: dac: ad5446: Fix ad5622_write() return value Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 156/575] iio: ad5770r: make devicetree property reading consistent Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 157/575] USB: serial: keyspan: fix memleak on probe errors Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 158/575] serial: 8250: fix racy uartclk update Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 159/575] most: fix control-message timeouts Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 160/575] USB: iowarrior: " Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 161/575] USB: chipidea: fix interrupt deadlock Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 162/575] power: supply: max17042_battery: Clear status bits in interrupt handler Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 163/575] dma-buf: WARN on dmabuf release with pending attachments Greg Kroah-Hartman
2021-11-15 16:58 ` Greg Kroah-Hartman [this message]
2021-11-15 16:58 ` [PATCH 5.10 165/575] drm: panel-orientation-quirks: Add quirk for KD Kurio Smart C15200 2-in-1 Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 166/575] drm: panel-orientation-quirks: Add quirk for the Samsung Galaxy Book 10.6 Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 167/575] Bluetooth: sco: Fix lock_sock() blockage by memcpy_from_msg() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 168/575] Bluetooth: fix use-after-free error in lock_sock_nested() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 169/575] drm/panel-orientation-quirks: add Valve Steam Deck Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 170/575] rcutorture: Avoid problematic critical section nesting on PREEMPT_RT Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 171/575] platform/x86: wmi: do not fail if disabling fails Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 172/575] MIPS: lantiq: dma: add small delay after reset Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 173/575] MIPS: lantiq: dma: reset correct number of channel Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 174/575] locking/lockdep: Avoid RCU-induced noinstr fail Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 175/575] net: sched: update default qdisc visibility after Tx queue cnt changes Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 176/575] rcu-tasks: Move RTGS_WAIT_CBS to beginning of rcu_tasks_kthread() loop Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 177/575] smackfs: Fix use-after-free in netlbl_catmap_walk() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 178/575] ath11k: Align bss_chan_info structure with firmware Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 179/575] x86: Increase exception stack sizes Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 180/575] mwifiex: Run SET_BSS_MODE when changing from P2P to STATION vif-type Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 181/575] mwifiex: Properly initialize private structure on interface type changes Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 182/575] fscrypt: allow 256-bit master keys with AES-256-XTS Greg Kroah-Hartman
2021-11-16 11:57   ` Pavel Machek
2021-11-15 16:58 ` [PATCH 5.10 183/575] drm/amdgpu: Fix MMIO access page fault Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 184/575] ath11k: Avoid reg rules update during firmware recovery Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 185/575] ath11k: add handler for scan event WMI_SCAN_EVENT_DEQUEUED Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 186/575] ath11k: Change DMA_FROM_DEVICE to DMA_TO_DEVICE when map reinjected packets Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 187/575] ath10k: high latency fixes for beacon buffer Greg Kroah-Hartman
2021-11-16 11:59   ` Pavel Machek
2021-11-24 10:50     ` Fabio Estevam
2021-11-15 16:58 ` [PATCH 5.10 188/575] media: mt9p031: Fix corrupted frame after restarting stream Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 189/575] media: netup_unidvb: handle interrupt properly according to the firmware Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 190/575] media: atomisp: Fix error handling in probe Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 191/575] media: stm32: Potential NULL pointer dereference in dcmi_irq_thread() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 192/575] media: uvcvideo: Set capability in s_param Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 193/575] media: uvcvideo: Return -EIO for control errors Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 194/575] media: uvcvideo: Set unique vdev name based in type Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 195/575] media: s5p-mfc: fix possible null-pointer dereference in s5p_mfc_probe() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 196/575] media: s5p-mfc: Add checking to s5p_mfc_probe() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 197/575] media: imx: set a media_device bus_info string Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 198/575] media: mceusb: return without resubmitting URB in case of -EPROTO error Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 199/575] ia64: dont do IA64_CMPXCHG_DEBUG without CONFIG_PRINTK Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 200/575] rtw88: fix RX clock gate setting while fifo dump Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 201/575] brcmfmac: Add DMI nvram filename quirk for Cyberbook T116 tablet Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 202/575] media: rcar-csi2: Add checking to rcsi2_start_receiver() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 203/575] ipmi: Disable some operations during a panic Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 204/575] fs/proc/uptime.c: Fix idle time reporting in /proc/uptime Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 205/575] ACPICA: Avoid evaluating methods too early during system resume Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 206/575] media: ipu3-imgu: imgu_fmt: Handle properly try Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 207/575] media: ipu3-imgu: VIDIOC_QUERYCAP: Fix bus_info Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 208/575] media: usb: dvd-usb: fix uninit-value bug in dibusb_read_eeprom_byte() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 209/575] net-sysfs: try not to restart the syscall if it will fail eventually Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 210/575] tracefs: Have tracefs directories not set OTH permission bits by default Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 211/575] ath: dfs_pattern_detector: Fix possible null-pointer dereference in channel_detector_create() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 212/575] mmc: moxart: Fix reference count leaks in moxart_probe Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 213/575] iov_iter: Fix iov_iter_get_pages{,_alloc} page fault return value Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.10 214/575] ACPI: battery: Accept charges over the design capacity as full Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 215/575] drm/amdkfd: fix resume error when iommu disabled in Picasso Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 216/575] net: phy: micrel: make *-skew-ps check more lenient Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 217/575] leaking_addresses: Always print a trailing newline Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 218/575] drm/msm: prevent NULL dereference in msm_gpu_crashstate_capture() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 219/575] block: bump max plugged deferred size from 16 to 32 Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 220/575] md: update superblock after changing rdev flags in state_store Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 221/575] memstick: r592: Fix a UAF bug when removing the driver Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 222/575] lib/xz: Avoid overlapping memcpy() with invalid input with in-place decompression Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 223/575] lib/xz: Validate the value before assigning it to an enum variable Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 224/575] workqueue: make sysfs of unbound kworker cpumask more clever Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 225/575] tracing/cfi: Fix cmp_entries_* functions signature mismatch Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 226/575] mt76: mt7915: fix an off-by-one bound check Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 227/575] mwl8k: Fix use-after-free in mwl8k_fw_state_machine() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 228/575] block: remove inaccurate requeue check Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 229/575] media: allegro: ignore interrupt if mailbox is not initialized Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 230/575] nvmet: fix use-after-free when a port is removed Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 231/575] nvmet-rdma: " Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 232/575] nvmet-tcp: " Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 233/575] nvme: drop scan_lock and always kick requeue list when removing namespaces Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 234/575] PM: hibernate: Get block device exclusively in swsusp_check() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 235/575] selftests: kvm: fix mismatched fclose() after popen() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 236/575] selftests/bpf: Fix perf_buffer test on system with offline cpus Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 237/575] iwlwifi: mvm: disable RX-diversity in powersave Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 238/575] smackfs: use __GFP_NOFAIL for smk_cipso_doi() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 239/575] ARM: clang: Do not rely on lr register for stacktrace Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 240/575] gre/sit: Dont generate link-local addr if addr_gen_mode is IN6_ADDR_GEN_MODE_NONE Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 241/575] net: dsa: lantiq_gswip: serialize access to the PCE table Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 242/575] gfs2: Cancel remote delete work asynchronously Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 243/575] gfs2: Fix glock_hash_walk bugs Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 244/575] ARM: 9136/1: ARMv7-M uses BE-8, not BE-32 Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 245/575] vrf: run conntrack only in context of lower/physdev for locally generated packets Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 246/575] net: annotate data-race in neigh_output() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 247/575] ACPI: AC: Quirk GK45 to skip reading _PSR Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 248/575] btrfs: reflink: initialize return value to 0 in btrfs_extent_same() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 249/575] btrfs: do not take the uuid_mutex in btrfs_rm_device Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 250/575] spi: bcm-qspi: Fix missing clk_disable_unprepare() on error in bcm_qspi_probe() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 251/575] wcn36xx: Correct band/freq reporting on RX Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 252/575] x86/hyperv: Protect set_hv_tscchange_cb() against getting preempted Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 253/575] drm/amd/display: dcn20_resource_construct reduce scope of FPU enabled Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 254/575] selftests/core: fix conflicting types compile error for close_range() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 255/575] parisc: fix warning in flush_tlb_all Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 256/575] task_stack: Fix end_of_stack() for architectures with upwards-growing stack Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 257/575] erofs: dont trigger WARN() when decompression fails Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 258/575] parisc/unwind: fix unwinder when CONFIG_64BIT is enabled Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 259/575] parisc/kgdb: add kgdb_roundup() to make kgdb work with idle polling Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 260/575] netfilter: conntrack: set on IPS_ASSURED if flows enters internal stream state Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 261/575] selftests/bpf: Fix strobemeta selftest regression Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 262/575] Bluetooth: fix init and cleanup of sco_conn.timeout_work Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 263/575] rcu: Fix existing exp request check in sync_sched_exp_online_cleanup() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 264/575] MIPS: lantiq: dma: fix burst length for DEU Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 265/575] objtool: Add xen_start_kernel() to noreturn list Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 266/575] x86/xen: Mark cpu_bringup_and_idle() as dead_end_function Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 267/575] objtool: Fix static_call list generation Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 268/575] drm/v3d: fix wait for TMU write combiner flush Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 269/575] virtio-gpu: fix possible memory allocation failure Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 270/575] lockdep: Let lock_is_held_type() detect recursive read as read Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 271/575] net: net_namespace: Fix undefined member in key_remove_domain() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 272/575] cgroup: Make rebind_subsystems() disable v2 controllers all at once Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 273/575] wcn36xx: Fix Antenna Diversity Switching Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.10 274/575] wilc1000: fix possible memory leak in cfg_scan_result() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 275/575] Bluetooth: btmtkuart: fix a memleak in mtk_hci_wmt_sync Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 276/575] crypto: caam - disable pkc for non-E SoCs Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 277/575] rxrpc: Fix _usecs_to_jiffies() by using usecs_to_jiffies() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 278/575] net: dsa: rtl8366rb: Fix off-by-one bug Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 279/575] ath11k: fix some sleeping in atomic bugs Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 280/575] ath11k: Avoid race during regd updates Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 281/575] ath11k: fix packet drops due to incorrect 6 GHz freq value in rx status Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 282/575] ath11k: Fix memory leak in ath11k_qmi_driver_event_work Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 283/575] ath10k: Fix missing frame timestamp for beacon/probe-resp Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 284/575] ath10k: sdio: Add missing BH locking around napi_schdule() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 285/575] drm/ttm: stop calling tt_swapin in vm_access Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 286/575] arm64: mm: update max_pfn after memory hotplug Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 287/575] drm/amdgpu: fix warning for overflow check Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 288/575] media: em28xx: add missing em28xx_close_extension Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 289/575] media: cxd2880-spi: Fix a null pointer dereference on error handling path Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 290/575] media: dvb-usb: fix ununit-value in az6027_rc_query Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 291/575] media: v4l2-ioctl: S_CTRL output the right value Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 292/575] media: TDA1997x: handle short reads of hdmi info frame Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 293/575] media: mtk-vpu: Fix a resource leak in the error handling path of mtk_vpu_probe() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 294/575] media: i2c: ths8200 needs V4L2_ASYNC Greg Kroah-Hartman
2021-11-16 12:00   ` Pavel Machek
2021-11-16 14:05     ` Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 295/575] media: radio-wl1273: Avoid card name truncation Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 296/575] media: si470x: " Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 297/575] media: tm6000: " Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 298/575] media: cx23885: Fix snd_card_free call on null card pointer Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 299/575] kprobes: Do not use local variable when creating debugfs file Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 300/575] crypto: ecc - fix CRYPTO_DEFAULT_RNG dependency Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 301/575] cpuidle: Fix kobject memory leaks in error paths Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 302/575] media: em28xx: Dont use ops->suspend if it is NULL Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 303/575] ath9k: Fix potential interrupt storm on queue reset Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 304/575] PM: EM: Fix inefficient states detection Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 305/575] EDAC/amd64: Handle three rank interleaving mode Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 306/575] rcu: Always inline rcu_dynticks_task*_{enter,exit}() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 307/575] netfilter: nft_dynset: relax superfluous check on set updates Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 308/575] media: dvb-frontends: mn88443x: Handle errors of clk_prepare_enable() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 309/575] crypto: qat - detect PFVF collision after ACK Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 310/575] crypto: qat - disregard spurious PFVF interrupts Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 311/575] hwrng: mtk - Force runtime pm ops for sleep ops Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 312/575] b43legacy: fix a lower bounds test Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 313/575] b43: " Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 314/575] gve: Recover from queue stall due to missed IRQ Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 315/575] mmc: sdhci-omap: Fix NULL pointer exception if regulator is not configured Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 316/575] mmc: sdhci-omap: Fix context restore Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 317/575] memstick: avoid out-of-range warning Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 318/575] memstick: jmb38x_ms: use appropriate free function in jmb38x_ms_alloc_host() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 319/575] net, neigh: Fix NTF_EXT_LEARNED in combination with NTF_USE Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 320/575] hwmon: Fix possible memleak in __hwmon_device_register() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 321/575] hwmon: (pmbus/lm25066) Let compiler determine outer dimension of lm25066_coeff Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 322/575] ath10k: fix max antenna gain unit Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 323/575] kernel/sched: Fix sched_fork() access an invalid sched_task_group Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 324/575] tcp: switch orphan_count to bare per-cpu counters Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 325/575] drm/msm: potential error pointer dereference in init() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 326/575] drm/msm: uninitialized variable in msm_gem_import() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 327/575] net: stream: dont purge sk_error_queue in sk_stream_kill_queues() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 328/575] media: ir_toy: assignment to be16 should be of correct type Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 329/575] mmc: mxs-mmc: disable regulator on error and in the remove function Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 330/575] block: ataflop: fix breakage introduced at blk-mq refactoring Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 331/575] platform/x86: thinkpad_acpi: Fix bitwise vs. logical warning Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 332/575] mt76: mt7615: fix endianness warning in mt7615_mac_write_txwi Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 333/575] mt76: mt76x02: fix endianness warnings in mt76x02_mac.c Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.10 334/575] mt76: mt7915: fix possible infinite loop release semaphore Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 335/575] mt76: mt7915: fix sta_rec_wtbl tag len Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 336/575] mt76: mt7915: fix muar_idx in mt7915_mcu_alloc_sta_req() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 337/575] rsi: stop thread firstly in rsi_91x_init() error handling Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 338/575] mwifiex: Send DELBA requests according to spec Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 339/575] net: enetc: unmap DMA in enetc_send_cmd() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 340/575] phy: micrel: ksz8041nl: do not use power down mode Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 341/575] nvme-rdma: fix error code in nvme_rdma_setup_ctrl Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 342/575] PM: hibernate: fix sparse warnings Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 343/575] clocksource/drivers/timer-ti-dm: Select TIMER_OF Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 344/575] x86/sev: Fix stack type check in vc_switch_off_ist() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 345/575] drm/msm: Fix potential NULL dereference in DPU SSPP Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 346/575] smackfs: use netlbl_cfg_cipsov4_del() for deleting cipso_v4_doi Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 347/575] KVM: selftests: Add operand to vmsave/vmload/vmrun in svm.c Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 348/575] KVM: selftests: Fix nested SVM tests when built with clang Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 349/575] bpftool: Avoid leaking the JSON writer prepared for program metadata Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 350/575] libbpf: Fix BTF data layout checks and allow empty BTF Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 351/575] libbpf: Allow loading empty BTFs Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 352/575] libbpf: Fix overflow in BTF sanity checks Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 353/575] libbpf: Fix BTF header parsing checks Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 354/575] s390/gmap: dont unconditionally call pte_unmap_unlock() in __gmap_zap() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 355/575] KVM: s390: pv: avoid double free of sida page Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 356/575] KVM: s390: pv: avoid stalls for kvm_s390_pv_init_vm Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 357/575] irq: mips: avoid nested irq_enter() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 358/575] ataflop: use a separate gendisk for each media format Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 359/575] ataflop: potential out of bounds in do_format() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 360/575] block: ataflop: more blk-mq refactoring fixes Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 361/575] tpm: fix Atmel TPM crash caused by too frequent queries Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 362/575] tpm_tis_spi: Add missing SPI ID Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 363/575] libbpf: Fix endianness detection in BPF_CORE_READ_BITFIELD_PROBED() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 364/575] tcp: dont free a FIN sk_buff in tcp_remove_empty_skb() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 365/575] spi: spi-rpc-if: Check return value of rpcif_sw_init() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 366/575] samples/kretprobes: Fix return value if register_kretprobe() failed Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 367/575] KVM: s390: Fix handle_sske page fault handling Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 368/575] libertas_tf: Fix possible memory leak in probe and disconnect Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 369/575] libertas: " Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 370/575] wcn36xx: add proper DMA memory barriers in rx path Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 371/575] wcn36xx: Fix discarded frames due to wrong sequence number Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 372/575] drm/amdgpu/gmc6: fix DMA mask from 44 to 40 bits Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 373/575] selftests: bpf: Convert sk_lookup ctx access tests to PROG_TEST_RUN Greg Kroah-Hartman
2022-07-25  2:53   ` Tianchen Ding
2022-07-27 10:10     ` Greg KH
2022-07-28  3:03       ` Tianchen Ding
2022-07-28  3:09         ` Tianchen Ding
2022-07-31 10:51           ` Greg KH
2021-11-15 17:01 ` [PATCH 5.10 374/575] selftests/bpf: Fix fd cleanup in sk_lookup test Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 375/575] net: amd-xgbe: Toggle PLL settings during rate change Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 376/575] net: phylink: avoid mvneta warning when setting pause parameters Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 377/575] crypto: pcrypt - Delay write to padata->info Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 378/575] selftests/bpf: Fix fclose/pclose mismatch in test_progs Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 379/575] udp6: allow SO_MARK ctrl msg to affect routing Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 380/575] ibmvnic: dont stop queue in xmit Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 381/575] ibmvnic: Process crqs after enabling interrupts Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 382/575] cgroup: Fix rootcg cpu.stat guest double counting Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 383/575] bpf: Fix propagation of bounds from 64-bit min/max into 32-bit and var_off Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 384/575] bpf: Fix propagation of signed bounds from 64-bit min/max into 32-bit Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 385/575] of: unittest: fix EXPECT text for gpio hog errors Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 386/575] iio: st_sensors: Call st_sensors_power_enable() from bus drivers Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 387/575] iio: st_sensors: disable regulators after device unregistration Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 388/575] RDMA/rxe: Fix wrong port_cap_flags Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 389/575] ARM: dts: BCM5301X: Fix memory nodes names Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 390/575] clk: mvebu: ap-cpu-clk: Fix a memory leak in error handling paths Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 391/575] ARM: s3c: irq-s3c24xx: Fix return value check for s3c24xx_init_intc() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 392/575] arm64: dts: rockchip: Fix GPU register width for RK3328 Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 393/575] ARM: dts: qcom: msm8974: Add xo_board reference clock to DSI0 PHY Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.10 394/575] RDMA/bnxt_re: Fix query SRQ failure Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 395/575] arm64: dts: ti: k3-j721e-main: Fix "max-virtual-functions" in PCIe EP nodes Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 396/575] arm64: dts: ti: k3-j721e-main: Fix "bus-range" upto 256 bus number for PCIe Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 397/575] arm64: dts: meson-g12a: Fix the pwm regulator supply properties Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 398/575] arm64: dts: meson-g12b: " Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 399/575] bus: ti-sysc: Fix timekeeping_suspended warning on resume Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 400/575] ARM: dts: at91: tse850: the emac<->phy interface is rmii Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 401/575] scsi: dc395: Fix error case unwinding Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 402/575] MIPS: loongson64: make CPU_LOONGSON64 depends on MIPS_FP_SUPPORT Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 403/575] JFS: fix memleak in jfs_mount Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 404/575] arm64: dts: qcom: msm8916: Fix Secondary MI2S bit clock Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 405/575] arm64: dts: renesas: beacon: Fix Ethernet PHY mode Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 406/575] arm64: dts: qcom: pm8916: Remove wrong reg-names for rtc@6000 Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 407/575] ALSA: hda: Reduce udelay() at SKL+ position reporting Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 408/575] ALSA: hda: Release controller display power during shutdown/reboot Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 409/575] ALSA: hda: Fix hang during shutdown due to link reset Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 410/575] ALSA: hda: Use position buffer for SKL+ again Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 411/575] soundwire: debugfs: use controller id and link_id for debugfs Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 412/575] scsi: pm80xx: Fix misleading log statement in pm8001_mpi_get_nvmd_resp() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 413/575] driver core: Fix possible memory leak in device_link_add() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 414/575] arm: dts: omap3-gta04a4: accelerometer irq fix Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 415/575] ASoC: SOF: topology: do not power down primary core during topology removal Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 416/575] soc/tegra: Fix an error handling path in tegra_powergate_power_up() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 417/575] memory: fsl_ifc: fix leak of irq and nand_irq in fsl_ifc_ctrl_probe Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 418/575] clk: at91: check pmc node status before registering syscore ops Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 419/575] video: fbdev: chipsfb: use memset_io() instead of memset() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 420/575] powerpc: Refactor is_kvm_guest() declaration to new header Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 421/575] powerpc: Rename is_kvm_guest() to check_kvm_guest() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 422/575] powerpc: Reintroduce is_kvm_guest() as a fast-path check Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 423/575] powerpc: Fix is_kvm_guest() / kvm_para_available() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 424/575] powerpc: fix unbalanced node refcount in check_kvm_guest() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 425/575] serial: 8250_dw: Drop wrong use of ACPI_PTR() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 426/575] usb: gadget: hid: fix error code in do_config() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 427/575] =?UTF-8?q?power:=20supply:=20rt5033=5Fbattery:=20Change=20voltage?= =?UTF-8?q?=20values=20to=20=C2=B5V?= Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 428/575] power: supply: max17040: fix null-ptr-deref in max17040_probe() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 429/575] scsi: csiostor: Uninitialized data in csio_ln_vnp_read_cbfn() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 430/575] RDMA/mlx4: Return missed an error if device doesnt support steering Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 431/575] usb: musb: select GENERIC_PHY instead of depending on it Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 432/575] staging: most: dim2: do not double-register the same device Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 433/575] staging: ks7010: select CRYPTO_HASH/CRYPTO_MICHAEL_MIC Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 434/575] pinctrl: renesas: checker: Fix off-by-one bug in drive register check Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 435/575] ARM: dts: stm32: Reduce DHCOR SPI NOR frequency to 50 MHz Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 436/575] ARM: dts: stm32: fix SAI sub nodes register range Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 437/575] ARM: dts: stm32: fix AV96 board SAI2 pin muxing on stm32mp15 Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 438/575] ASoC: cs42l42: Correct some register default values Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 439/575] ASoC: cs42l42: Defer probe if request_threaded_irq() returns EPROBE_DEFER Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 440/575] soc: qcom: rpmhpd: Provide some missing struct member descriptions Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 441/575] soc: qcom: rpmhpd: Make power_on actually enable the domain Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 442/575] usb: typec: STUSB160X should select REGMAP_I2C Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 443/575] iio: adis: do not disabe IRQs in adis_init() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 444/575] scsi: ufs: Refactor ufshcd_setup_clocks() to remove skip_ref_clk Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 445/575] scsi: ufs: ufshcd-pltfrm: Fix memory leak due to probe defer Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 446/575] serial: imx: fix detach/attach of serial console Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 447/575] usb: dwc2: drd: fix dwc2_force_mode call in dwc2_ovr_init Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 448/575] usb: dwc2: drd: fix dwc2_drd_role_sw_set when clock could be disabled Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 449/575] usb: dwc2: drd: reset current session before setting the new one Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 450/575] firmware: qcom_scm: Fix error retval in __qcom_scm_is_call_available() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 451/575] soc: qcom: apr: Add of_node_put() before return Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 452/575] pinctrl: equilibrium: Fix function addition in multiple groups Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 453/575] phy: qcom-qusb2: Fix a memory leak on probe Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.10 454/575] phy: ti: gmii-sel: check of_get_address() for failure Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 455/575] phy: qcom-snps: Correct the FSEL_MASK Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 456/575] serial: xilinx_uartps: Fix race condition causing stuck TX Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 457/575] clk: at91: sam9x60-pll: use DIV_ROUND_CLOSEST_ULL Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 458/575] HID: u2fzero: clarify error check and length calculations Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 459/575] HID: u2fzero: properly handle timeouts in usb_submit_urb Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 460/575] powerpc/44x/fsp2: add missing of_node_put Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 461/575] ASoC: cs42l42: Disable regulators if probe fails Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 462/575] ASoC: cs42l42: Use device_property API instead of of_property Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 463/575] ASoC: cs42l42: Correct configuring of switch inversion from ts-inv Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 464/575] virtio_ring: check desc == NULL when using indirect with packed Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 465/575] mips: cm: Convert to bitfield API to fix out-of-bounds access Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 466/575] power: supply: bq27xxx: Fix kernel crash on IRQ handler register error Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 467/575] apparmor: fix error check Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 468/575] rpmsg: Fix rpmsg_create_ept return when RPMSG config is not defined Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 469/575] nfsd: dont alloc under spinlock in rpc_parse_scope_id Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 470/575] i2c: mediatek: fixing the incorrect register offset Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 471/575] NFS: Fix dentry verifier races Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 472/575] pnfs/flexfiles: Fix misplaced barrier in nfs4_ff_layout_prepare_ds Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 473/575] drm/plane-helper: fix uninitialized variable reference Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 474/575] PCI: aardvark: Dont spam about PIO Response Status Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 475/575] PCI: aardvark: Fix preserving PCI_EXP_RTCTL_CRSSVE flag on emulated bridge Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 476/575] opp: Fix return in _opp_add_static_v2() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 477/575] NFS: Fix deadlocks in nfs_scan_commit_list() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 478/575] fs: orangefs: fix error return code of orangefs_revalidate_lookup() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 479/575] mtd: spi-nor: hisi-sfc: Remove excessive clk_disable_unprepare() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 480/575] PCI: uniphier: Serialize INTx masking/unmasking and fix the bit operation Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 481/575] mtd: core: dont remove debugfs directory if device is in use Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 482/575] remoteproc: Fix a memory leak in an error handling path in rproc_handle_vdev() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 483/575] rtc: rv3032: fix error handling in rv3032_clkout_set_rate() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 484/575] dmaengine: at_xdmac: fix AT_XDMAC_CC_PERID() macro Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 485/575] NFS: Fix up commit deadlocks Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 486/575] NFS: Fix an Oops in pnfs_mark_request_commit() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 487/575] Fix user namespace leak Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 488/575] auxdisplay: img-ascii-lcd: Fix lock-up when displaying empty string Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 489/575] auxdisplay: ht16k33: Connect backlight to fbdev Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 490/575] auxdisplay: ht16k33: Fix frame buffer device blanking Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 491/575] soc: fsl: dpaa2-console: free buffer before returning from dpaa2_console_read Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 492/575] netfilter: nfnetlink_queue: fix OOB when mac header was cleared Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 493/575] dmaengine: dmaengine_desc_callback_valid(): Check for `callback_result` Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 494/575] signal/sh: Use force_sig(SIGKILL) instead of do_group_exit(SIGKILL) Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 495/575] m68k: set a default value for MEMORY_RESERVE Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 496/575] watchdog: f71808e_wdt: fix inaccurate report in WDIOC_GETTIMEOUT Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 497/575] ar7: fix kernel builds for compiler test Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 498/575] scsi: qla2xxx: Changes to support FCP2 Target Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 499/575] scsi: qla2xxx: Relogin during fabric disturbance Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 500/575] scsi: qla2xxx: Fix gnl list corruption Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 501/575] scsi: qla2xxx: Turn off target reset during issue_lip Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 502/575] NFSv4: Fix a regression in nfs_set_open_stateid_locked() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 503/575] i2c: xlr: Fix a resource leak in the error handling path of xlr_i2c_probe() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 504/575] xen-pciback: Fix return in pm_ctrl_init() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 505/575] net: davinci_emac: Fix interrupt pacing disable Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 506/575] ethtool: fix ethtool msg len calculation for pause stats Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 507/575] openrisc: fix SMP tlb flush NULL pointer dereference Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 508/575] net: vlan: fix a UAF in vlan_dev_real_dev() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 509/575] ice: Fix replacing VF hardware MAC to existing MAC filter Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 510/575] ice: Fix not stopping Tx queues for VFs Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 511/575] ACPI: PMIC: Fix intel_pmic_regs_handler() read accesses Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 512/575] drm/nouveau/svm: Fix refcount leak bug and missing check against null bug Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 513/575] block/ataflop: use the blk_cleanup_disk() helper Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.10 514/575] block/ataflop: add registration bool before calling del_gendisk() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 515/575] block/ataflop: provide a helper for cleanup up an atari disk Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 516/575] ataflop: remove ataflop_probe_lock mutex Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 517/575] net: phy: fix duplex out of sync problem while changing settings Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 518/575] bonding: Fix a use-after-free problem when bond_sysfs_slave_add() failed Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 519/575] mfd: core: Add missing of_node_put for loop iteration Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 520/575] can: mcp251xfd: mcp251xfd_chip_start(): fix error handling for mcp251xfd_chip_rx_int_enable() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 521/575] mm/zsmalloc.c: close race window between zs_pool_dec_isolated() and zs_unregister_migration() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 522/575] zram: off by one in read_block_state() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 523/575] perf bpf: Add missing free to bpf_event__print_bpf_prog_info() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 524/575] llc: fix out-of-bound array index in llc_sk_dev_hash() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 525/575] nfc: pn533: Fix double free when pn533_fill_fragment_skbs() fails Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 526/575] arm64: pgtable: make __pte_to_phys/__phys_to_pte_val inline functions Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 527/575] bpf, sockmap: Remove unhash handler for BPF sockmap usage Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 528/575] bpf: sockmap, strparser, and tls are reusing qdisc_skb_cb and colliding Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 529/575] gve: Fix off by one in gve_tx_timeout() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 530/575] seq_file: fix passing wrong private data Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 531/575] net/sched: sch_taprio: fix undefined behavior in ktime_mono_to_any Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 532/575] net: hns3: fix kernel crash when unload VF while it is being reset Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 533/575] net: hns3: allow configure ETS bandwidth of all TCs Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 534/575] net: stmmac: allow a tc-taprio base-time of zero Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 535/575] vsock: prevent unnecessary refcnt inc for nonblocking connect Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 536/575] net/smc: fix sk_refcnt underflow on linkdown and fallback Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 537/575] cxgb4: fix eeprom len when diagnostics not implemented Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 538/575] selftests/net: udpgso_bench_rx: fix port argument Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 539/575] ARM: 9155/1: fix early early_iounmap() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 540/575] ARM: 9156/1: drop cc-option fallbacks for architecture selection Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 541/575] parisc: Fix backtrace to always include init funtion names Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 542/575] MIPS: Fix assembly error from MIPSr2 code used within MIPS_ISA_ARCH_LEVEL Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 543/575] x86/mce: Add errata workaround for Skylake SKX37 Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 544/575] posix-cpu-timers: Clear task::posix_cputimers_work in copy_process() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 545/575] irqchip/sifive-plic: Fixup EOI failed when masked Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 546/575] f2fs: should use GFP_NOFS for directory inodes Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 547/575] net, neigh: Enable state migration between NUD_PERMANENT and NTF_USE Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 548/575] 9p/net: fix missing error check in p9_check_errors Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 549/575] memcg: prohibit unconditional exceeding the limit of dying tasks Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 550/575] powerpc/lib: Add helper to check if offset is within conditional branch range Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 551/575] powerpc/bpf: Validate branch ranges Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 552/575] powerpc/security: Add a helper to query stf_barrier type Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 553/575] powerpc/bpf: Emit stf barrier instruction sequences for BPF_NOSPEC Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 554/575] mm, oom: pagefault_out_of_memory: dont force global OOM for dying tasks Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 555/575] mm, oom: do not trigger out_of_memory from the #PF Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 556/575] mfd: dln2: Add cell for initializing DLN2 ADC Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 557/575] video: backlight: Drop maximum brightness override for brightness zero Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 558/575] s390/cio: check the subchannel validity for dev_busid Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 559/575] s390/tape: fix timer initialization in tape_std_assign() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 560/575] s390/ap: Fix hanging ioctl caused by orphaned replies Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 561/575] s390/cio: make ccw_device_dma_* more robust Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 562/575] mtd: rawnand: ams-delta: Keep the driver compatible with on-die ECC engines Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 563/575] mtd: rawnand: xway: " Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 564/575] mtd: rawnand: mpc5121: " Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 565/575] mtd: rawnand: gpio: " Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 566/575] mtd: rawnand: pasemi: " Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 567/575] mtd: rawnand: orion: " Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 568/575] mtd: rawnand: plat_nand: " Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 569/575] mtd: rawnand: au1550nd: " Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 570/575] powerpc/powernv/prd: Unregister OPAL_MSG_PRD2 notifier during module unload Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 571/575] powerpc/85xx: fix timebase sync issue when CONFIG_HOTPLUG_CPU=n Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 572/575] drm/sun4i: Fix macros in sun8i_csc.h Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 573/575] PCI: Add PCI_EXP_DEVCTL_PAYLOAD_* macros Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.10 574/575] PCI: aardvark: Fix PCIe Max Payload Size setting Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.10 575/575] SUNRPC: Partial revert of commit 6f9f17287e78 Greg Kroah-Hartman
2021-11-15 20:47 ` [PATCH 5.10 000/575] 5.10.80-rc1 review Fox Chen
2021-11-15 22:17 ` Pavel Machek
2021-11-16  0:52 ` Shuah Khan
2021-11-16  1:14 ` Samuel Zou
2021-11-16  9:21 ` Jon Hunter
2021-11-16 11:14 ` Naresh Kamboju
2021-11-16 16:52 ` Sudip Mukherjee

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=20211115165349.385942704@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=contact@emersion.fr \
    --cc=hdegoede@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).