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, Fabio Estevam <festevam@denx.de>,
	Andrew Lunn <andrew@lunn.ch>, Jakub Kicinski <kuba@kernel.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.17 158/772] net: phy: micrel: Allow probing without .driver_data
Date: Tue,  7 Jun 2022 18:55:50 +0200	[thread overview]
Message-ID: <20220607164953.698865402@linuxfoundation.org> (raw)
In-Reply-To: <20220607164948.980838585@linuxfoundation.org>

From: Fabio Estevam <festevam@denx.de>

[ Upstream commit f2ef6f7539c68c6bd6c32323d8845ee102b7c450 ]

Currently, if the .probe element is present in the phy_driver structure
and the .driver_data is not, a NULL pointer dereference happens.

Allow passing .probe without .driver_data by inserting NULL checks
for priv->type.

Signed-off-by: Fabio Estevam <festevam@denx.de>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Link: https://lore.kernel.org/r/20220513114613.762810-1-festevam@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/net/phy/micrel.c | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/drivers/net/phy/micrel.c b/drivers/net/phy/micrel.c
index cfb5378bbb39..f20d8c3e91bf 100644
--- a/drivers/net/phy/micrel.c
+++ b/drivers/net/phy/micrel.c
@@ -348,7 +348,7 @@ static int kszphy_config_reset(struct phy_device *phydev)
 		}
 	}
 
-	if (priv->led_mode >= 0)
+	if (priv->type && priv->led_mode >= 0)
 		kszphy_setup_led(phydev, priv->type->led_mode_reg, priv->led_mode);
 
 	return 0;
@@ -364,10 +364,10 @@ static int kszphy_config_init(struct phy_device *phydev)
 
 	type = priv->type;
 
-	if (type->has_broadcast_disable)
+	if (type && type->has_broadcast_disable)
 		kszphy_broadcast_disable(phydev);
 
-	if (type->has_nand_tree_disable)
+	if (type && type->has_nand_tree_disable)
 		kszphy_nand_tree_disable(phydev);
 
 	return kszphy_config_reset(phydev);
@@ -1365,7 +1365,7 @@ static int kszphy_probe(struct phy_device *phydev)
 
 	priv->type = type;
 
-	if (type->led_mode_reg) {
+	if (type && type->led_mode_reg) {
 		ret = of_property_read_u32(np, "micrel,led-mode",
 				&priv->led_mode);
 		if (ret)
@@ -1386,7 +1386,8 @@ static int kszphy_probe(struct phy_device *phydev)
 		unsigned long rate = clk_get_rate(clk);
 		bool rmii_ref_clk_sel_25_mhz;
 
-		priv->rmii_ref_clk_sel = type->has_rmii_ref_clk_sel;
+		if (type)
+			priv->rmii_ref_clk_sel = type->has_rmii_ref_clk_sel;
 		rmii_ref_clk_sel_25_mhz = of_property_read_bool(np,
 				"micrel,rmii-reference-clock-select-25-mhz");
 
-- 
2.35.1




  parent reply	other threads:[~2022-06-07 19:44 UTC|newest]

Thread overview: 793+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-07 16:53 [PATCH 5.17 000/772] 5.17.14-rc1 review Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 001/772] arm64: Initialize jump labels before setup_machine_fdt() Greg Kroah-Hartman
2022-06-08  9:13   ` Catalin Marinas
2022-06-07 16:53 ` [PATCH 5.17 002/772] binfmt_flat: do not stop relocating GOT entries prematurely on riscv Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 003/772] parisc/stifb: Implement fb_is_primary_device() Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 004/772] parisc/stifb: Keep track of hardware path of graphics card Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 005/772] RISC-V: Mark IORESOURCE_EXCLUSIVE for reserved mem instead of IORESOURCE_BUSY Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 006/772] riscv: Initialize thread pointer before calling C functions Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 007/772] riscv: Fix irq_work when SMP is disabled Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 008/772] riscv: Wire up memfd_secret in UAPI header Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 009/772] riscv: Move alternative length validation into subsection Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 010/772] ALSA: hda/realtek - Add new type for ALC245 Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 011/772] ALSA: hda/realtek: Enable 4-speaker output for Dell XPS 15 9520 laptop Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 012/772] ALSA: hda/realtek - Fix microphone noise on ASUS TUF B550M-PLUS Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 013/772] ALSA: usb-audio: Cancel pending work at closing a MIDI substream Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 014/772] USB: serial: pl2303: fix type detection for odd device Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 015/772] USB: serial: option: add Quectel BG95 modem Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 016/772] USB: new quirk for Dell Gen 2 devices Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 017/772] usb: isp1760: Fix out-of-bounds array access Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 018/772] usb: dwc3: gadget: Move null pinter check to proper place Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 019/772] usb: core: hcd: Add support for deferring roothub registration Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 020/772] fs/ntfs3: Update valid size if -EIOCBQUEUED Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 021/772] fs/ntfs3: Fix fiemap + fix shrink file size (to remove preallocated space) Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 022/772] fs/ntfs3: Keep preallocated only if option prealloc enabled Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 023/772] fs/ntfs3: Check new size for limits Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 024/772] fs/ntfs3: In function ntfs_set_acl_ex do not change inode->i_mode if called from function ntfs_init_acl Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 025/772] fs/ntfs3: Fix some memory leaks in an error handling path of log_replay() Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 026/772] fs/ntfs3: Update i_ctime when xattr is added Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 027/772] fs/ntfs3: Restore ntfs_xattr_get_acl and ntfs_xattr_set_acl functions Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 028/772] cifs: dont call cifs_dfs_query_info_nonascii_quirk() if nodfs was set Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 029/772] cifs: fix ntlmssp on old servers Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 030/772] cifs: fix potential double free during failed mount Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 031/772] cifs: when extending a file with falloc we should make files not-sparse Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 032/772] xhci: Allow host runtime PM as default for Intel Alder Lake N xHCI Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 033/772] platform/x86: intel-hid: fix _DSM function index handling Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 034/772] x86/MCE/AMD: Fix memory leak when threshold_create_bank() fails Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 035/772] perf/x86/intel: Fix event constraints for ICL Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 036/772] x86/kexec: fix memory leak of elf header buffer Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 037/772] x86/sgx: Set active memcg prior to shmem allocation Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 038/772] kthread: Dont allocate kthread_struct for init and umh Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 039/772] ptrace/um: Replace PT_DTRACE with TIF_SINGLESTEP Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 040/772] ptrace/xtensa: Replace PT_SINGLESTEP " Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 041/772] ptrace: Reimplement PTRACE_KILL by always sending SIGKILL Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 042/772] btrfs: add "0x" prefix for unsupported optional features Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 043/772] btrfs: return correct error number for __extent_writepage_io() Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 044/772] btrfs: repair super block num_devices automatically Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 045/772] btrfs: fix the error handling for submit_extent_page() for btrfs_do_readpage() Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 046/772] btrfs: zoned: properly finish block group on metadata write Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.17 047/772] btrfs: zoned: zone finish unused block group Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 048/772] btrfs: zoned: finish block group when there are no more allocatable bytes left Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 049/772] btrfs: zoned: fix comparison of alloc_offset vs meta_write_pointer Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 050/772] iommu/vt-d: Add RPLS to quirk list to skip TE disabling Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 051/772] drm/vmwgfx: validate the screen formats Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 052/772] ath11k: fix the warning of dev_wake in mhi_pm_disable_transition() Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 053/772] drm/virtio: fix NULL pointer dereference in virtio_gpu_conn_get_modes Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 054/772] selftests/bpf: Fix vfs_link kprobe definition Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 055/772] selftests/bpf: Fix parsing of prog types in UAPI hdr for bpftool sync Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 056/772] ath11k: Change max no of active probe SSID and BSSID to fw capability Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 057/772] mwifiex: add mutex lock for call in mwifiex_dfs_chan_sw_work_queue Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 058/772] b43legacy: Fix assigning negative value to unsigned variable Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 059/772] b43: " Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 060/772] ipw2x00: Fix potential NULL dereference in libipw_xmit() Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 061/772] ipv6: fix locking issues with loops over idev->addr_list Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 062/772] fbcon: Consistently protect deferred_takeover with console_lock() Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 063/772] x86/platform/uv: Update TSC sync state for UV5 Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 064/772] ACPICA: Avoid cache flush inside virtual machines Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 065/772] libbpf: Fix a bug with checking bpf_probe_read_kernel() support in old kernels Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 066/772] mac80211: minstrel_ht: fix where rate stats are stored (fixes debugfs output) Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 067/772] drm/komeda: return early if drm_universal_plane_init() fails Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 068/772] drm/amd/display: Disabling Z10 on DCN31 Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 069/772] rcu-tasks: Fix race in schedule and flush work Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 070/772] rcu-tasks: Handle sparse cpu_possible_mask in rcu_tasks_invoke_cbs() Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 071/772] rcu: Make TASKS_RUDE_RCU select IRQ_WORK Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 072/772] sfc: ef10: Fix assigning negative value to unsigned variable Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 073/772] ALSA: jack: Access input_dev under mutex Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 074/772] rtw88: fix incorrect frequency reported Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 075/772] rtw88: 8821c: fix debugfs rssi value Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 076/772] spi: spi-rspi: Remove setting {src,dst}_{addr,addr_width} based on DMA direction Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 077/772] tools/power turbostat: fix ICX DRAM power numbers Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 078/772] tcp: consume incoming skb leading to a reset Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 079/772] scsi: lpfc: Move cfg_log_verbose check before calling lpfc_dmp_dbg() Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 080/772] scsi: lpfc: Fix SCSI I/O completion and abort handler deadlock Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 081/772] scsi: lpfc: Fix call trace observed during I/O with CMF enabled Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 082/772] cpuidle: PSCI: Improve support for suspend-to-RAM for PSCI OSI mode Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 083/772] drm/amd/pm: fix double free in si_parse_power_table() Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 084/772] ASoC: rsnd: care default case on rsnd_ssiu_busif_err_status_clear() Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 085/772] ASoC: rsnd: care return value from rsnd_node_fixed_index() Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 086/772] ath9k: fix QCA9561 PA bias level Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 087/772] media: Revert "media: dw9768: activate runtime PM and turn off device" Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 088/772] media: venus: hfi: avoid null dereference in deinit Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 089/772] media: venus: do not queue internal buffers from previous sequence Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 090/772] media: pci: cx23885: Fix the error handling in cx23885_initdev() Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 091/772] media: cx25821: Fix the warning when removing the module Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 092/772] md/bitmap: dont set sb values if cant pass sanity check Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 093/772] mmc: jz4740: Apply DMA engine limits to maximum segment size Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 094/772] drivers: mmc: sdhci_am654: Add the quirk to set TESTCD bit Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 095/772] scsi: megaraid: Fix error check return value of register_chrdev() Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 096/772] drm/amdgpu/sdma: Fix incorrect calculations of the wptr of the doorbells Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 097/772] scsi: ufs: Use pm_runtime_resume_and_get() instead of pm_runtime_get_sync() Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 098/772] scsi: lpfc: Fix resource leak in lpfc_sli4_send_seq_to_ulp() Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 099/772] ath11k: disable spectral scan during spectral deinit Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 100/772] ASoC: Intel: bytcr_rt5640: Add quirk for the HP Pro Tablet 408 Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 101/772] drm/plane: Move range check for format_count earlier Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 102/772] drm/amd/pm: fix the compile warning Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 103/772] ath10k: skip ath10k_halt during suspend for driver state RESTARTING Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 104/772] arm64: compat: Do not treat syscall number as ESR_ELx for a bad syscall Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 105/772] drm: msm: fix error check return value of irq_of_parse_and_map() Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 106/772] drm/msm/dpu: Clean up CRC debug logs Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.17 107/772] xtensa: move trace_hardirqs_off call back to entry.S Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 108/772] ath11k: fix warning of not found station for bssid in message Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 109/772] scsi: target: tcmu: Fix possible data corruption Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 110/772] ipv6: Dont send rs packets to the interface of ARPHRD_TUNNEL Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 111/772] net/mlx5: fs, delete the FTE when there are no rules attached to it Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 112/772] ASoC: dapm: Dont fold register value changes into notifications Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 113/772] mlxsw: spectrum_dcb: Do not warn about priority changes Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 114/772] mlxsw: Treat LLDP packets as control Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 115/772] drm/amdgpu/psp: move PSP memory alloc from hw_init to sw_init Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 116/772] drm/amdgpu/ucode: Remove firmware load type check in amdgpu_ucode_free_bo Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 117/772] regulator: mt6315: Enforce regulator-compatible, not name Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 118/772] HID: bigben: fix slab-out-of-bounds Write in bigben_probe Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 119/772] drm/tegra: gem: Do not try to dereference ERR_PTR() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 120/772] of: Support more than one crash kernel regions for kexec -s Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 121/772] ASoC: tscs454: Add endianness flag in snd_soc_component_driver Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 122/772] net/mlx5: Increase FW pre-init timeout for health recovery Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 123/772] scsi: hisi_sas: Undo RPM resume for failed notify phy event for v3 HW Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 124/772] scsi: lpfc: Alter FPIN stat accounting logic Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 125/772] net: remove two BUG() from skb_checksum_help() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 126/772] s390/preempt: disable __preempt_count_add() optimization for PROFILE_ALL_BRANCHES Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 127/772] perf/amd/ibs: Cascade pmu init functions return value Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 128/772] sched/core: Avoid obvious double update_rq_clock warning Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 129/772] spi: stm32-qspi: Fix wait_cmd timeout in APM mode Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 130/772] dma-debug: change allocation mode from GFP_NOWAIT to GFP_ATIOMIC Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 131/772] ASoC: SOF: amd: add missing platform_device_unregister in acp_pci_rn_probe Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 132/772] ACPI: PM: Block ASUS B1400CEAE from suspend to idle by default Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 133/772] ipmi:ssif: Check for NULL msg when handling events and messages Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 134/772] ipmi: Add an intializer for ipmi_smi_msg struct Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 135/772] ipmi: Fix pr_fmt to avoid compilation issues Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 136/772] kunit: bail out of test filtering logic quicker if OOM Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 137/772] rtlwifi: Use pr_warn instead of WARN_ONCE Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 138/772] mt76: mt7921: accept rx frames with non-standard VHT MCS10-11 Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 139/772] mt76: fix encap offload ethernet type check Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 140/772] media: rga: fix possible memory leak in rga_probe Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 141/772] media: coda: limit frame interval enumeration to supported encoder frame sizes Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 142/772] media: hantro: HEVC: unconditionnaly set pps_{cb/cr}_qp_offset values Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 143/772] media: ccs-core.c: fix failure to call clk_disable_unprepare Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 144/772] media: imon: reorganize serialization Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 145/772] media: cec-adap.c: fix is_configuring state Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 146/772] usbnet: Run unregister_netdev() before unbind() again Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 147/772] Bluetooth: HCI: Add HCI_QUIRK_BROKEN_ENHANCED_SETUP_SYNC_CONN quirk Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 148/772] Bluetooth: btusb: Set HCI_QUIRK_BROKEN_ENHANCED_SETUP_SYNC_CONN for QCA Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 149/772] Bluetooth: btusb: Set HCI_QUIRK_BROKEN_ERR_DATA_REPORTING " Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 150/772] openrisc: start CPU timer early in boot Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 151/772] nvme-pci: fix a NULL pointer dereference in nvme_alloc_admin_tags Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 152/772] ASoC: rt5645: Fix errorenous cleanup order Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 153/772] nbd: Fix hung on disconnect request if socket is closed before Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 154/772] drm/amd/pm: update smartshift powerboost calc for smu12 Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 155/772] drm/amd/pm: update smartshift powerboost calc for smu13 Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 156/772] btrfs: fix anon_dev leak in create_subvol() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 157/772] kunit: tool: make parser stop overwriting status of suites w/ no_tests Greg Kroah-Hartman
2022-06-07 16:55 ` Greg Kroah-Hartman [this message]
2022-06-07 16:55 ` [PATCH 5.17 159/772] media: exynos4-is: Fix compile warning Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 160/772] media: hantro: Stop using H.264 parameter pic_num Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 161/772] rtw89: cfo: check mac_id to avoid out-of-bounds Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 162/772] of/fdt: Ignore disabled memory nodes Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 163/772] blk-throttle: Set BIO_THROTTLED when bio has been throttled Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 164/772] ASoC: max98357a: remove dependency on GPIOLIB Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 165/772] ASoC: rt1015p: " Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 166/772] ACPI: CPPC: Assume no transition latency if no PCCT Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.17 167/772] nvme: set non-mdts limits in nvme_scan_work Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 168/772] can: mcp251xfd: silence clangs -Wunaligned-access warning Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 169/772] x86/microcode: Add explicit CPU vendor dependency Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 170/772] net: ipa: ignore endianness if there is no header Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 171/772] selftests/bpf: Add missing trampoline program type to trampoline_count test Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 172/772] m68k: atari: Make Atari ROM port I/O write macros return void Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 173/772] rxrpc: Return an error to sendmsg if call failed Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 174/772] rxrpc, afs: Fix selection of abort codes Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 175/772] afs: Adjust ACK interpretation to try and cope with NAT Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 176/772] eth: tg3: silence the GCC 12 array-bounds warning Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 177/772] char: tpm: cr50_i2c: Suppress duplicated error message in .remove() Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 178/772] selftests/bpf: fix btf_dump/btf_dump due to recent clang change Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 179/772] gfs2: use i_lock spin_lock for inode qadata Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 180/772] scsi: target: tcmu: Avoid holding XArray lock when calling lock_page Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 181/772] kunit: fix executor OOM error handling logic on non-UML Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 182/772] IB/rdmavt: add missing locks in rvt_ruc_loopback Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 183/772] PCI/ASPM: Make Intel DG2 L1 acceptable latency unlimited Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 184/772] ARM: dts: ox820: align interrupt controller node name with dtschema Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 185/772] ARM: dts: socfpga: " Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 186/772] ARM: dts: s5pv210: align DMA channels " Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 187/772] ASoC: amd: Add driver data to acp6x machine driver Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 188/772] arm64: dts: qcom: msm8994: Fix the cont_splash_mem address Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 189/772] arm64: dts: qcom: msm8994: Fix BLSP[12]_DMA channels count Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 190/772] PM / devfreq: rk3399_dmc: Disable edev on remove() Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 191/772] crypto: ccree - use fine grained DMA mapping dir Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 192/772] crypto: qat - fix off-by-one error in PFVF debug print Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 193/772] soc: ti: ti_sci_pm_domains: Check for null return of devm_kcalloc Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 194/772] fs: jfs: fix possible NULL pointer dereference in dbFree() Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 195/772] arm64: dts: qcom: sdm845-xiaomi-beryllium: fix typo in panels vddio-supply property Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 196/772] ALSA: usb-audio: Add quirk bits for enabling/disabling generic implicit fb Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 197/772] ALSA: usb-audio: Move generic implicit fb quirk entries into quirks.c Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 198/772] ARM: OMAP1: clock: Fix UART rate reporting algorithm Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 199/772] powerpc/fadump: Fix fadump to work with a different endian capture kernel Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 200/772] fat: add ratelimit to fat*_ent_bread() Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 201/772] pinctrl: renesas: rzn1: Fix possible null-ptr-deref in sh_pfc_map_resources() Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 202/772] ARM: versatile: Add missing of_node_put in dcscb_init Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 203/772] ARM: dts: exynos: add atmel,24c128 fallback to Samsung EEPROM Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 204/772] arm64: dts: qcom: sc7280-idp: Configure CTS pin to bias-bus-hold for bluetooth Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 205/772] ARM: hisi: Add missing of_node_put after of_find_compatible_node Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 206/772] cpufreq: Avoid unnecessary frequency updates due to mismatch Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 207/772] PCI: microchip: Add missing chained_irq_enter()/exit() calls Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 208/772] powerpc/rtas: Keep MSR[RI] set when calling RTAS Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 209/772] PCI: Avoid pci_dev_lock() AB/BA deadlock with sriov_numvfs_store() Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 210/772] PCI: cadence: Clear FLR in device capabilities register Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 211/772] KVM: PPC: Book3S HV Nested: L2 LPCR should inherit L1 LPES setting Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 212/772] alpha: fix alloc_zeroed_user_highpage_movable() Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 213/772] tracing: incorrect isolate_mote_t cast in mm_vmscan_lru_isolate Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 214/772] cifs: return ENOENT for DFS lookup_cache_entry() Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 215/772] powerpc/powernv/vas: Assign real address to rx_fifo in vas_rx_win_attr Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 216/772] powerpc/xics: fix refcount leak in icp_opal_init() Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 217/772] powerpc/powernv: fix missing of_node_put in uv_init() Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 218/772] macintosh/via-pmu: Fix build failure when CONFIG_INPUT is disabled Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 219/772] powerpc/iommu: Add missing of_node_put in iommu_init_early_dart Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 220/772] fanotify: fix incorrect fmode_t casts Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 221/772] smb3: check for null tcon Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 222/772] RDMA/hfi1: Prevent panic when SDMA is disabled Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 223/772] cifs: do not use tcpStatus after negotiate completes Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 224/772] Input: gpio-keys - cancel delayed work only in case of GPIO Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 225/772] drm: fix EDID struct for old ARM OABI format Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 226/772] drm/bridge_connector: enable HPD by default if supported Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.17 227/772] drm/omap: fix NULL but dereferenced coccicheck error Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 228/772] dt-bindings: display: sitronix, st7735r: Fix backlight in example Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 229/772] drm/vmwgfx: Fix an invalid read Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 230/772] ath11k: acquire ab->base_lock in unassign when finding the peer by addr Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 231/772] drm: bridge: it66121: Fix the register page length Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 232/772] ath9k: fix ar9003_get_eepmisc Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 233/772] drm/edid: fix invalid EDID extension block filtering Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 234/772] drm/bridge: adv7511: clean up CEC adapter when probe fails Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 235/772] drm: bridge: icn6211: Fix register layout Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 236/772] drm: bridge: icn6211: Fix HFP_HSW_HBP_HI and HFP_MIN handling Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 237/772] mtd: spinand: gigadevice: fix Quad IO for GD5F1GQ5UExxG Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 238/772] spi: qcom-qspi: Add minItems to interconnect-names Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 239/772] ASoC: cs35l41: Fix an out-of-bounds access in otp_packed_element_t Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 240/772] ASoC: mediatek: Fix error handling in mt8173_max98090_dev_probe Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 241/772] ASoC: mediatek: Fix missing of_node_put in mt2701_wm8960_machine_probe Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 242/772] x86/delay: Fix the wrong asm constraint in delay_loop() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 243/772] drm/mediatek: Add vblank register/unregister callback functions Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 244/772] drm/mediatek: Fix DPI component detection for MT8192 Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 245/772] drm/vc4: kms: Take old state core clock rate into account Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 246/772] drm/vc4: hvs: Fix frame count register readout Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 247/772] drm/mediatek: Fix mtk_cec_mask() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 248/772] drm/vc4: hvs: Reset muxes at probe time Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 249/772] drm/vc4: txp: Dont set TXP_VSTART_AT_EOF Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 250/772] drm/vc4: txp: Force alpha to be 0xff if its disabled Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 251/772] libbpf: Dont error out on CO-RE relos for overriden weak subprogs Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 252/772] x86/PCI: Fix ALi M1487 (IBC) PIRQ router link value interpretation Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 253/772] mptcp: optimize release_cb for the common case Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 254/772] mptcp: reset the packet scheduler on incoming MP_PRIO Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 255/772] mptcp: reset the packet scheduler on PRIO change Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 256/772] nl80211: show SSID for P2P_GO interfaces Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 257/772] drm/komeda: Fix an undefined behavior bug in komeda_plane_add() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 258/772] drm: mali-dp: potential dereference of null pointer Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 259/772] spi: spi-ti-qspi: Fix return value handling of wait_for_completion_timeout Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 260/772] scftorture: Fix distribution of short handler delays Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 261/772] net: dsa: mt7530: 1G can also support 1000BASE-X link mode Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 262/772] ixp4xx_eth: fix error check return value of platform_get_irq() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 263/772] NFC: NULL out the dev->rfkill to prevent UAF Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 264/772] efi: Allow to enable EFI runtime services by default on RT Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 265/772] efi: Add missing prototype for efi_capsule_setup_info Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 266/772] device property: Allow error pointer to be passed to fwnode APIs Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 267/772] target: remove an incorrect unmap zeroes data deduction Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 268/772] drbd: fix duplicate array initializer Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 269/772] EDAC/dmc520: Dont print an error for each unconfigured interrupt line Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 270/772] drm/bridge: anx7625: Use uint8 for lane-swing arrays Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 271/772] mtd: rawnand: denali: Use managed device resources Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 272/772] HID: hid-led: fix maximum brightness for Dream Cheeky Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 273/772] HID: elan: Fix potential double free in elan_input_configured Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 274/772] drm/bridge: Fix error handling in analogix_dp_probe Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 275/772] regulator: da9121: Fix uninit-value in da9121_assign_chip_model() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 276/772] drm/mediatek: dpi: Use mt8183 output formats for mt8192 Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 277/772] signal: Deliver SIGTRAP on perf event asynchronously if blocked Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 278/772] sched/fair: Fix cfs_rq_clock_pelt() for throttled cfs_rq Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 279/772] sched/psi: report zeroes for CPU full at the system level Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 280/772] spi: img-spfi: Fix pm_runtime_get_sync() error checking Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 281/772] cpufreq: Fix possible race in cpufreq online error path Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 282/772] printk: use atomic updates for klogd work Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 283/772] printk: add missing memory barrier to wake_up_klogd() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 284/772] printk: wake waiters for safe and NMI contexts Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 285/772] ath9k_htc: fix potential out of bounds access with invalid rxstatus->rs_keyix Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 286/772] media: i2c: max9286: Use "maxim,gpio-poc" property Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.17 287/772] media: i2c: max9286: fix kernel oops when removing module Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 288/772] media: hantro: Empty encoder capture buffers by default Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 289/772] drm/panel: simple: Add missing bus flags for Innolux G070Y2-L01 Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 290/772] ALSA: pcm: Check for null pointer of pointer substream before dereferencing it Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 291/772] mtdblock: warn if opened on NAND Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 292/772] inotify: show inotify mask flags in proc fdinfo Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 293/772] fsnotify: fix wrong lockdep annotations Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 294/772] spi: rockchip: Stop spi slave dma receiver when cs inactive Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 295/772] spi: rockchip: Preset cs-high and clk polarity in setup progress Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 296/772] spi: rockchip: fix missing error on unsupported SPI_CS_HIGH Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 297/772] of: overlay: do not break notify on NOTIFY_{OK|STOP} Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 298/772] selftests/damon: add damon to selftests root Makefile Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 299/772] drm/msm: properly add and remove internal bridges Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 300/772] drm/msm/dpu: adjust display_v_end for eDP and DP Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 301/772] scsi: iscsi: Fix harmless double shift bug Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 302/772] scsi: ufs: qcom: Fix ufs_qcom_resume() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 303/772] scsi: ufs: core: Exclude UECxx from SFR dump list Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 304/772] drm/v3d: Fix null pointer dereference of pointer perfmon Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 305/772] selftests/resctrl: Fix null pointer dereference on open failed Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 306/772] libbpf: Fix logic for finding matching program for CO-RE relocation Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 307/772] mtd: spi-nor: core: Check written SR value in spi_nor_write_16bit_sr_and_check() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 308/772] x86/pm: Fix false positive kmemleak report in msr_build_context() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 309/772] mtd: rawnand: cadence: fix possible null-ptr-deref in cadence_nand_dt_probe() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 310/772] mtd: rawnand: intel: fix possible null-ptr-deref in ebu_nand_probe() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 311/772] x86/speculation: Add missing prototype for unpriv_ebpf_notify() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 312/772] ASoC: rk3328: fix disabling mclk on pclk probe failure Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 313/772] perf tools: Add missing headers needed by util/data.h Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 314/772] drm/msm/disp/dpu1: set vbif hw config to NULL to avoid use after memory free during pm runtime resume Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 315/772] drm/msm/dp: stop event kernel thread when DP unbind Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 316/772] drm/msm/dp: fix error check return value of irq_of_parse_and_map() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 317/772] drm/msm/dp: reset DP controller before transmit phy test pattern Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 318/772] drm/msm/dp: do not stop transmitting phy test pattern during DP phy compliance test Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 319/772] drm/msm/dsi: fix error checks and return values for DSI xmit functions Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 320/772] drm/msm/hdmi: check return value after calling platform_get_resource_byname() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 321/772] drm/msm/hdmi: fix error check return value of irq_of_parse_and_map() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 322/772] drm/msm: add missing include to msm_drv.c Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 323/772] drm/panel: panel-simple: Fix proper bpc for AM-1280800N3TZQW-T00H Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 324/772] kunit: fix debugfs code to use enum kunit_status, not bool Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 325/772] drm/rockchip: vop: fix possible null-ptr-deref in vop_bind() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 326/772] spi: cadence-quadspi: fix Direct Access Mode disable for SoCFPGA Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 327/772] perf tools: Use Python devtools for version autodetection rather than runtime Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 328/772] virtio_blk: fix the discard_granularity and discard_alignment queue limits Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 329/772] nl80211: dont hold RTNL in color change request Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 330/772] x86: Fix return value of __setup handlers Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 331/772] irqchip/exiu: Fix acknowledgment of edge triggered interrupts Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 332/772] irqchip/aspeed-i2c-ic: Fix irq_of_parse_and_map() return value Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 333/772] irqchip/aspeed-scu-ic: " Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 334/772] x86/mm: Cleanup the control_va_addr_alignment() __setup handler Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 335/772] arm64: fix types in copy_highpage() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 336/772] regulator: core: Fix enable_count imbalance with EXCLUSIVE_GET Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 337/772] drm/msm/disp/dpu1: avoid clearing hw interrupts if hw_intr is null during drm uninit Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 338/772] drm/msm/dsi: fix address for second DSI PHY on SDM660 Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 339/772] drm/msm/dp: fix event thread stuck in wait_event after kthread_stop() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 340/772] drm/msm/mdp5: Return error code in mdp5_pipe_release when deadlock is detected Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 341/772] drm/msm/mdp5: Return error code in mdp5_mixer_release " Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 342/772] drm/msm: return an error pointer in msm_gem_prime_get_sg_table() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 343/772] media: uvcvideo: Fix missing check to determine if element is found in list Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 344/772] arm64: stackleak: fix current_top_of_stack() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 345/772] iomap: iomap_write_failed fix Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 346/772] spi: spi-fsl-qspi: check return value after calling platform_get_resource_byname() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.17 347/772] selftests/bpf: Prevent skeleton generation race Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 348/772] Revert "cpufreq: Fix possible race in cpufreq online error path" Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 349/772] regulator: qcom_smd: Fix up PM8950 regulator configuration Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 350/772] samples: bpf: Dont fail for a missing VMLINUX_BTF when VMLINUX_H is provided Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 351/772] perf/amd/ibs: Use interrupt regs ip for stack unwinding Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 352/772] ath11k: Dont check arvif->is_started before sending management frames Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 353/772] wilc1000: fix crash observed in AP mode with cfg80211_register_netdevice() Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 354/772] HID: amd_sfh: Modify the bus name Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 355/772] HID: amd_sfh: Modify the hid name Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 356/772] ASoC: fsl: Fix refcount leak in imx_sgtl5000_probe Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 357/772] ASoC: imx-hdmi: Fix refcount leak in imx_hdmi_probe Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 358/772] ASoC: mxs-saif: Fix refcount leak in mxs_saif_probe Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 359/772] regulator: pfuze100: Fix refcount leak in pfuze_parse_regulators_dt Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 360/772] PM: EM: Decrement policy counter Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 361/772] dma-direct: dont fail on highmem CMA pages in dma_direct_alloc_pages Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 362/772] ASoC: samsung: Fix refcount leak in aries_audio_probe Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 363/772] block: Fix the bio.bi_opf comment Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 364/772] kselftest/cgroup: fix test_stress.sh to use OUTPUT dir Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 365/772] scripts/faddr2line: Fix overlapping text section failures Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 366/772] media: aspeed: Fix an error handling path in aspeed_video_probe() Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 367/772] media: exynos4-is: Fix PM disable depth imbalance in fimc_is_probe Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 368/772] mt76: mt7921: Fix the error handling path of mt7921_pci_probe() Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 369/772] mt76: mt7915: do not pass data pointer to mt7915_mcu_muru_debug_set Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 370/772] mt76: fix antenna config missing in 6G cap Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 371/772] mt76: mt7921: fix kernel crash at mt7921_pci_remove Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 372/772] mt76: do not attempt to reorder received 802.3 packets without agg session Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 373/772] mt76: fix tx status related use-after-free race on station removal Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 374/772] mt76: mt7915: fix twt table_mask to u16 in mt7915_dev Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 375/772] media: st-delta: Fix PM disable depth imbalance in delta_probe Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 376/772] media: atmel: atmel-isc: Fix PM disable depth imbalance in atmel_isc_probe Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 377/772] media: i2c: rdacm2x: properly set subdev entity function Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 378/772] media: exynos4-is: Change clk_disable to clk_disable_unprepare Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 379/772] media: pvrusb2: fix array-index-out-of-bounds in pvr2_i2c_core_init Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 380/772] media: vsp1: Fix offset calculation for plane cropping Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 381/772] media: atmel: atmel-sama5d2-isc: fix wrong mask in YUYV format check Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 382/772] media: hantro: HEVC: Fix tile info buffer value computation Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 383/772] Bluetooth: fix dangling sco_conn and use-after-free in sco_sock_timeout Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 384/772] Bluetooth: use hdev lock in activate_scan for hci_is_adv_monitoring Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 385/772] Bluetooth: use hdev lock for accept_list and reject_list in conn req Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 386/772] Bluetooth: protect le accept and resolv lists with hdev->lock Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 387/772] Bluetooth: btmtksdio: fix use-after-free at btmtksdio_recv_event Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 388/772] media: mediatek: vcodec: Fix v4l2 compliance decoder cmd test fail Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 389/772] io_uring: avoid io-wq -EAGAIN looping for !IOPOLL Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 390/772] io_uring: cache poll/double-poll state with a request flag Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 391/772] io_uring: fix assuming triggered poll waitqueue is the single poll Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 392/772] io_uring: only wake when the correct events are set Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 393/772] irqchip/gic-v3: Ensure pseudo-NMIs have an ISB between ack and handling Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 394/772] irqchip/gic-v3: Refactor ISB + EOIR at ack time Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 395/772] irqchip/gic-v3: Fix priority mask handling Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 396/772] nvme: set dma alignment to dword Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 397/772] m68k: math-emu: Fix dependencies of math emulation support Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 398/772] sctp: read sk->sk_bound_dev_if once in sctp_rcv() Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 399/772] net: hinic: add missing destroy_workqueue in hinic_pf_to_mgmt_init Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 400/772] ASoC: ti: j721e-evm: Fix refcount leak in j721e_soc_probe_* Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 401/772] kselftest/arm64: bti: force static linking Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 402/772] media: ov7670: remove ov7670_power_off from ov7670_remove Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 403/772] media: i2c: ov5648: fix wrong pointer passed to IS_ERR() and PTR_ERR() Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 404/772] media: rkvdec: Stop overclocking the decoder Greg Kroah-Hartman
2022-06-07 21:20   ` Brian Norris
2022-06-08 11:40     ` Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 405/772] media: rkvdec: h264: Fix dpb_valid implementation Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 406/772] media: rkvdec: h264: Fix bit depth wrap in pps packet Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.17 407/772] regulator: scmi: Fix refcount leak in scmi_regulator_probe Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 408/772] erofs: fix buffer copy overflow of ztailpacking feature Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 409/772] net/mlx5e: Correct the calculation of max channels for rep Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 410/772] ext4: reject the commit option on ext2 filesystems Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 411/772] drm/msm/a6xx: Fix refcount leak in a6xx_gpu_init Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 412/772] drm: msm: fix possible memory leak in mdp5_crtc_cursor_set() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 413/772] x86/sev: Annotate stack change in the #VC handler Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 414/772] drm/msm: dont free the IRQ if it was not requested Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 415/772] selftests/bpf: Add missed ima_setup.sh in Makefile Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 416/772] drm/msm/dpu: handle pm_runtime_get_sync() errors in bind path Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 417/772] drm/i915: Fix CFI violation with show_dynamic_id() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 418/772] thermal/drivers/bcm2711: Dont clamp temperature at zero Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 419/772] thermal/drivers/broadcom: Fix potential NULL dereference in sr_thermal_probe Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 420/772] thermal/core: Fix memory leak in __thermal_cooling_device_register() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 421/772] thermal/drivers/imx_sc_thermal: Fix refcount leak in imx_sc_thermal_probe Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 422/772] bfq: Relax waker detection for shared queues Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 423/772] bfq: Allow current waker to defend against a tentative one Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 424/772] ASoC: wm2000: fix missing clk_disable_unprepare() on error in wm2000_anc_transition() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 425/772] PM: domains: Fix initialization of genpds next_wakeup Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 426/772] net: macb: Fix PTP one step sync support Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 427/772] scsi: hisi_sas: Fix rescan after deleting a disk Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 428/772] NFC: hci: fix sleep in atomic context bugs in nfc_hci_hcp_message_tx Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 429/772] bonding: fix missed rcu protection Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 430/772] ASoC: max98090: Move check for invalid values before casting in max98090_put_enab_tlv() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 431/772] perf parse-events: Support different format of the topdown event name Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 432/772] net: stmmac: fix out-of-bounds access in a selftest Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 433/772] amt: fix gateway mode stuck Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 434/772] amt: fix memory leak for advertisement message Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 435/772] hv_netvsc: Fix potential dereference of NULL pointer Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 436/772] hwmon: (pmbus) Check PEC support before reading other registers Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 437/772] rxrpc: Fix locking issue Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 438/772] rxrpc: Fix listen() setting the bar too high for the prealloc rings Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 439/772] rxrpc: Dont try to resend the request if were receiving the reply Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 440/772] rxrpc: Fix overlapping ACK accounting Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 441/772] rxrpc: Dont let ack.previousPacket regress Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 442/772] rxrpc: Fix decision on when to generate an IDLE ACK Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 443/772] hinic: Avoid some over memory allocation Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 444/772] net: dsa: restrict SMSC_LAN9303_I2C kconfig Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 445/772] net/smc: postpone sk_refcnt increment in connect() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 446/772] net/smc: fix listen processing for SMC-Rv2 Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 447/772] dma-direct: dont over-decrypt memory Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 448/772] Bluetooth: hci_sync: Cleanup hci_conn if it cannot be aborted Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 449/772] Bluetooth: hci_conn: Fix hci_connect_le_sync Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 450/772] Revert "net/smc: fix listen processing for SMC-Rv2" Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 451/772] arm64: dts: rockchip: Move drive-impedance-ohm to emmc phy on rk3399 Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 452/772] arm64: dts: mt8192: Fix nor_flash status disable typo Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 453/772] PCI/ACPI: Allow D3 only if Root Port can signal and wake from D3 Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 454/772] memory: samsung: exynos5422-dmc: Avoid some over memory allocation Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 455/772] ARM: dts: BCM5301X: Update pin controller node name Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 456/772] ARM: dts: suniv: F1C100: fix watchdog compatible Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 457/772] soc: qcom: smp2p: Fix missing of_node_put() in smp2p_parse_ipc Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 458/772] soc: qcom: smsm: Fix missing of_node_put() in smsm_parse_ipc Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 459/772] PCI: cadence: Fix find_first_zero_bit() limit Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 460/772] PCI: rockchip: " Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 461/772] PCI: mediatek: Fix refcount leak in mtk_pcie_subsys_powerup() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 462/772] PCI: dwc: Fix setting error return on MSI DMA mapping failure Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 463/772] ARM: dts: ci4x10: Adapt to changes in imx6qdl.dtsi regarding fec clocks Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 464/772] soc: qcom: llcc: Add MODULE_DEVICE_TABLE() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 465/772] KVM: nVMX: Leave most VM-Exit info fields unmodified on failed VM-Entry Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 466/772] KVM: nVMX: Clear IDT vectoring on nested VM-Exit for double/triple fault Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.17 467/772] crypto: qat - set CIPHER capability for DH895XCC Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 468/772] crypto: qat - set COMPRESSION " Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 469/772] platform/chrome: cros_ec: fix error handling in cros_ec_register() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 470/772] ARM: dts: imx6dl-colibri: Fix I2C pinmuxing Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 471/772] platform/chrome: Re-introduce cros_ec_cmd_xfer and use it for ioctls Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 472/772] can: xilinx_can: mark bit timing constants as const Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 473/772] ARM: dts: stm32: Fix PHY post-reset delay on Avenger96 Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 474/772] dt-bindings: soc: qcom: smd-rpm: Fix missing MSM8936 compatible Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 475/772] ARM: dts: qcom: sdx55: remove wrong unit address from RPMH RSC clocks Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 476/772] ARM: dts: bcm2835-rpi-zero-w: Fix GPIO line name for Wifi/BT Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 477/772] ARM: dts: bcm2837-rpi-cm3-io3: Fix GPIO line names for SMPS I2C Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 478/772] ARM: dts: bcm2837-rpi-3-b-plus: Fix GPIO line name of power LED Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 479/772] ARM: dts: bcm2835-rpi-b: Fix GPIO line names Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 480/772] misc: ocxl: fix possible double free in ocxl_file_register_afu Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 481/772] hwrng: cn10k - Optimize cn10k_rng_read() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 482/772] hwrng: cn10k - Make check_rng_health() return an error code Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 483/772] crypto: marvell/cesa - ECB does not IV Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 484/772] gpiolib: of: Introduce hook for missing gpio-ranges Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 485/772] pinctrl: bcm2835: implement " Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 486/772] drm/msm: simplify gpu_busy callback Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 487/772] drm/msm: return the average load over the polling period Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 488/772] arm: mediatek: select arch timer for mt7629 Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 489/772] pinctrl/rockchip: support deferring other gpio params Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 490/772] pinctrl: mediatek: mt8195: enable driver on mtk platforms Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 491/772] arm64: dts: qcom: qrb5165-rb5: Fix can-clock node name Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 492/772] Drivers: hv: vmbus: Fix handling of messages with transaction ID of zero Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 493/772] powerpc/fadump: fix PT_LOAD segment for boot memory area Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 494/772] mfd: ipaq-micro: Fix error check return value of platform_get_irq() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 495/772] scsi: fcoe: Fix Wstringop-overflow warnings in fcoe_wwn_from_mac() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 496/772] soc: bcm: Check for NULL return of devm_kzalloc() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 497/772] arm64: dts: ti: k3-am64-mcu: remove incorrect UART base clock rates Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 498/772] ASoC: sh: rz-ssi: Propagate error codes returned from platform_get_irq_byname() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 499/772] ASoC: sh: rz-ssi: Release the DMA channels in rz_ssi_probe() error path Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 500/772] firmware: arm_scmi: Fix list protocols enumeration in the base protocol Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 501/772] nvdimm: Fix firmware activation deadlock scenarios Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 502/772] nvdimm: Allow overwrite in the presence of disabled dimms Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 503/772] pinctrl: mvebu: Fix irq_of_parse_and_map() return value Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 504/772] crypto: ccp - Fix the INIT_EX data file open failure Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 505/772] drivers/base/node.c: fix compaction sysfs file leak Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 506/772] dax: fix cache flush on PMD-mapped pages Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 507/772] drivers/base/memory: fix an unlikely reference counting issue in __add_memory_block() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 508/772] firmware: arm_ffa: Fix uuid parameter to ffa_partition_probe Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 509/772] firmware: arm_ffa: Remove incorrect assignment of driver_data Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 510/772] ocfs2: fix mounting crash if journal is not alloced Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 511/772] list: fix a data-race around ep->rdllist Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 512/772] drm/msm/dpu: fix error check return value of irq_of_parse_and_map() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 513/772] powerpc/8xx: export cpm_setbrg for modules Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 514/772] pinctrl: renesas: r8a779a0: Fix GPIO function on I2C-capable pins Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 515/772] pinctrl: renesas: core: Fix possible null-ptr-deref in sh_pfc_map_resources() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 516/772] powerpc/idle: Fix return value of __setup() handler Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 517/772] powerpc/4xx/cpm: " Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 518/772] RDMA/hns: Add the detection for CMDQ status in the device initialization process Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 519/772] arm64: dts: marvell: espressobin-ultra: fix SPI-NOR config Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 520/772] arm64: dts: marvell: espressobin-ultra: enable front USB3 port Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 521/772] ASoC: atmel-pdmic: Remove endianness flag on pdmic component Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 522/772] ASoC: atmel-classd: Remove endianness flag on class d component Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 523/772] proc: fix dentry/inode overinstantiating under /proc/${pid}/net Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 524/772] ipc/mqueue: use get_tree_nodev() in mqueue_get_tree() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 525/772] PCI: imx6: Fix PERST# start-up sequence Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 526/772] PCI: mediatek-gen3: Assert resets to ensure expected init state Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.17 527/772] module.h: simplify MODULE_IMPORT_NS Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 528/772] module: fix [e_shstrndx].sh_size=0 OOB access Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 529/772] tty: fix deadlock caused by calling printk() under tty_port->lock Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 530/772] crypto: sun8i-ss - rework handling of IV Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 531/772] crypto: sun8i-ss - handle zero sized sg Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 532/772] crypto: cryptd - Protect per-CPU resource by disabling BH Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 533/772] ARM: dts: at91: sama7g5: remove interrupt-parent from gic node Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 534/772] hugetlbfs: fix hugetlbfs_statfs() locking Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 535/772] x86/mce: relocate set{clear}_mce_nospec() functions Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 536/772] mce: fix set_mce_nospec to always unmap the whole page Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 537/772] Input: sparcspkr - fix refcount leak in bbc_beep_probe Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 538/772] PCI/AER: Clear MULTI_ERR_COR/UNCOR_RCV bits Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 539/772] KVM: PPC: Book3S HV: Fix vcore_blocked tracepoint Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 540/772] PCI: microchip: Fix potential race in interrupt handling Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 541/772] hwrng: omap3-rom - fix using wrong clk_disable() in omap_rom_rng_runtime_resume() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 542/772] perf evlist: Keep topdown counters in weak group Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 543/772] perf stat: Always keep perf metrics topdown events in a group Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 544/772] mailbox: pcc: Fix an invalid-load caught by the address sanitizer Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 545/772] powerpc/64: Only WARN if __pa()/__va() called with bad addresses Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 546/772] powerpc/powernv: Get L1D flush requirements from device-tree Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 547/772] powerpc/powernv: Get STF barrier " Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 548/772] powerpc/perf: Fix the threshold compare group constraint for power10 Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 549/772] powerpc/perf: Fix the threshold compare group constraint for power9 Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 550/772] macintosh: via-pmu and via-cuda need RTC_LIB Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 551/772] powerpc/xive: Add some error handling code to xive_spapr_init() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 552/772] powerpc/xive: Fix refcount leak in xive_spapr_init Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 553/772] powerpc/fsl_rio: Fix refcount leak in fsl_rio_setup Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 554/772] powerpc/fsl_book3e: Dont set rodata RO too early Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 555/772] gpio: sim: Use correct order for the parameters of devm_kcalloc() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 556/772] mfd: davinci_voicecodec: Fix possible null-ptr-deref davinci_vc_probe() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 557/772] nfsd: destroy percpu stats counters after reply cache shutdown Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 558/772] mailbox: forward the hrtimer if not queued and under a lock Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 559/772] RDMA/hfi1: Prevent use of lock before it is initialized Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 560/772] pinctrl: apple: Use a raw spinlock for the regmap Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 561/772] KVM: LAPIC: Drop pending LAPIC timer injection when canceling the timer Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 562/772] Input: stmfts - do not leave device disabled in stmfts_input_open Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 563/772] OPP: call of_node_put() on error path in _bandwidth_supported() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 564/772] f2fs: fix to do sanity check on inline_dots inode Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 565/772] f2fs: fix dereference of stale list iterator after loop body Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 566/772] riscv: Fixup difference with defconfig Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 567/772] iommu/amd: Enable swiotlb in all cases Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 568/772] iommu/mediatek: Fix 2 HW sharing pgtable issue Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 569/772] iommu/mediatek: Add list_del in mtk_iommu_remove Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 570/772] iommu/mediatek: Remove clk_disable " Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 571/772] iommu/mediatek: Add mutex for m4u_group and m4u_dom in data Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 572/772] i2c: at91: use dma safe buffers Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 573/772] cpufreq: mediatek: Use module_init and add module_exit Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 574/772] cpufreq: mediatek: Unregister platform device on exit Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 575/772] iommu/arm-smmu-v3-sva: Fix mm use-after-free Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 576/772] MIPS: Loongson: Use hwmon_device_register_with_groups() to register hwmon Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 577/772] iommu/mediatek: Fix NULL pointer dereference when printing dev_name Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 578/772] i2c: at91: Initialize dma_buf in at91_twi_xfer() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 579/772] dmaengine: idxd: Fix the error handling path in idxd_cdev_register() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 580/772] NFS: Do not report EINTR/ERESTARTSYS as mapping errors Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 581/772] NFS: fsync() should report filesystem errors over EINTR/ERESTARTSYS Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 582/772] NFS: Dont report ENOSPC write errors twice Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 583/772] NFS: Do not report flush errors in nfs_write_end() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 584/772] NFS: Dont report errors from nfs_pageio_complete() more than once Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 585/772] NFSv4/pNFS: Do not fail I/O when we fail to allocate the pNFS layout Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 586/772] NFS: Further fixes to the writeback error handling Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.17 587/772] video: fbdev: clcdfb: Fix refcount leak in clcdfb_of_vram_setup Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 588/772] dmaengine: stm32-mdma: remove GISR1 register Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 589/772] dmaengine: stm32-mdma: fix chan initialization in stm32_mdma_irq_handler() Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 590/772] iommu/amd: Increase timeout waiting for GA log enablement Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 591/772] i2c: npcm: Fix timeout calculation Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 592/772] i2c: npcm: Correct register access width Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 593/772] i2c: npcm: Handle spurious interrupts Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 594/772] i2c: rcar: fix PM ref counts in probe error paths Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 595/772] tracing: Reset the function filter after completing trampoline/graph selftest Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 596/772] RISC-V: Fix the XIP build Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 597/772] MIPS: RALINK: Define pci_remap_iospace under CONFIG_PCI_DRIVERS_GENERIC Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 598/772] perf build: Fix btf__load_from_kernel_by_id() feature check Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 599/772] perf c2c: Use stdio interface if slang is not supported Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 600/772] rtla: Dont overwrite existing directory mode Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 601/772] rtla: Minor grammar fix for rtla README Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 602/772] rtla: Fix __set_sched_attr error message Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 603/772] tracing/timerlat: Notify IRQ new max latency only if stop tracing is set Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 604/772] perf jevents: Fix event syntax error caused by ExtSel Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 605/772] video: fbdev: vesafb: Fix a use-after-free due early fb_info cleanup Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 606/772] NFSv4: Fix free of uninitialized nfs4_label on referral lookup Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 607/772] NFS: Convert GFP_NOFS to GFP_KERNEL Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 608/772] NFSv4.1 mark qualified async operations as MOVEABLE tasks Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 609/772] f2fs: fix to avoid f2fs_bug_on() in dec_valid_node_count() Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 610/772] f2fs: fix to do sanity check on block address in f2fs_do_zero_range() Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 611/772] f2fs: fix to clear dirty inode in f2fs_evict_inode() Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 612/772] f2fs: fix deadloop in foreground GC Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 613/772] f2fs: dont need inode lock for system hidden quota Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 614/772] f2fs: fix to do sanity check on total_data_blocks Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 615/772] f2fs: dont use casefolded comparison for "." and ".." Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 616/772] f2fs: fix fallocate to use file_modified to update permissions consistently Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 617/772] f2fs: fix to do sanity check for inline inode Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 618/772] objtool: Fix objtool regression on x32 systems Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 619/772] objtool: Fix symbol creation Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 620/772] wifi: mac80211: fix use-after-free in chanctx code Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 621/772] iwlwifi: fw: init SAR GEO table only if data is present Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 622/772] iwlwifi: mvm: fix assert 1F04 upon reconfig Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 623/772] iwlwifi: mei: clear the sap data header before sending Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 624/772] iwlwifi: mei: fix potential NULL-ptr deref Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 625/772] fs-writeback: writeback_sb_inodes:Recalculate wrote according skipped pages Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 626/772] efi: Do not import certificates from UEFI Secure Boot for T2 Macs Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 627/772] bfq: Avoid false marking of bic as stably merged Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 628/772] bfq: Avoid merging queues with different parents Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 629/772] bfq: Split shared queues on move between cgroups Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 630/772] bfq: Update cgroup information before merging bio Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 631/772] bfq: Drop pointless unlock-lock pair Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 632/772] bfq: Remove pointless bfq_init_rq() calls Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 633/772] bfq: Track whether bfq_group is still online Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 634/772] bfq: Get rid of __bio_blkcg() usage Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 635/772] bfq: Make sure bfqg for which we are queueing requests is online Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 636/772] ext4: mark group as trimmed only if it was fully scanned Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 637/772] ext4: fix use-after-free in ext4_rename_dir_prepare Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 638/772] ext4: fix journal_ioprio mount option handling Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 639/772] ext4: fix race condition between ext4_write and ext4_convert_inline_data Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 640/772] ext4: fix warning in ext4_handle_inode_extension Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 641/772] ext4: fix memory leak in parse_apply_sb_mount_options() Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 642/772] ext4: fix bug_on in ext4_writepages Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 643/772] ext4: filter out EXT4_FC_REPLAY from on-disk superblock field s_state Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 644/772] ext4: fix bug_on in __es_tree_search Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 645/772] ext4: verify dir block before splitting it Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 646/772] ext4: avoid cycles in directory h-tree Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.17 647/772] ACPI: property: Release subnode properties with data nodes Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 648/772] tty: goldfish: Introduce gf_ioread32()/gf_iowrite32() Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 649/772] tracing: Fix potential double free in create_var_ref() Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 650/772] tracing: Fix return value of trace_pid_write() Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 651/772] tracing: Initialize integer variable to prevent garbage return value Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 652/772] drm/amdgpu: add beige goby PCI ID Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 653/772] PCI/PM: Fix bridge_d3_blacklist[] Elo i2 overwrite of Gigabyte X299 Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 654/772] PCI: qcom: Fix runtime PM imbalance on probe errors Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 655/772] PCI: qcom: Fix unbalanced PHY init " Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 656/772] staging: r8188eu: prevent ->Ssid overflow in rtw_wx_set_scan() Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 657/772] block: Fix potential deadlock in blk_ia_range_sysfs_show() Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 658/772] mm, compaction: fast_find_migrateblock() should return pfn in the target zone Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 659/772] s390/perf: obtain sie_block from the right address Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 660/772] s390/stp: clock_delta should be signed Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 661/772] dlm: fix plock invalid read Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 662/772] dlm: uninitialized variable on error in dlm_listen_for_all() Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 663/772] dlm: fix wake_up() calls for pending remove Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 664/772] dlm: fix missing lkb refcount handling Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 665/772] ocfs2: dlmfs: fix error handling of user_dlm_destroy_lock Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 666/772] scsi: dc395x: Fix a missing check on list iterator Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 667/772] scsi: ufs: qcom: Add a readl() to make sure ref_clk gets enabled Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 668/772] landlock: Add clang-format exceptions Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 669/772] landlock: Format with clang-format Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 670/772] selftests/landlock: Add clang-format exceptions Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 671/772] selftests/landlock: Normalize array assignment Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 672/772] selftests/landlock: Format with clang-format Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 673/772] samples/landlock: Add clang-format exceptions Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 674/772] samples/landlock: Format with clang-format Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 675/772] landlock: Fix landlock_add_rule(2) documentation Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 676/772] selftests/landlock: Make tests build with old libc Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 677/772] selftests/landlock: Extend tests for minimal valid attribute size Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 678/772] selftests/landlock: Add tests for unknown access rights Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 679/772] selftests/landlock: Extend access right tests to directories Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 680/772] selftests/landlock: Fully test file rename with "remove" access Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 681/772] selftests/landlock: Add tests for O_PATH Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 682/772] landlock: Change landlock_add_rule(2) argument check ordering Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 683/772] landlock: Change landlock_restrict_self(2) " Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 684/772] selftests/landlock: Test landlock_create_ruleset(2) argument " Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 685/772] landlock: Define access_mask_t to enforce a consistent access mask size Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 686/772] landlock: Reduce the maximum number of layers to 16 Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 687/772] landlock: Create find_rule() from unmask_layers() Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 688/772] landlock: Fix same-layer rule unions Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 689/772] drm/amdgpu/cs: make commands with 0 chunks illegal behaviour Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 690/772] drm/nouveau/subdev/bus: Ratelimit logging for fault errors Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 691/772] drm/etnaviv: check for reaped mapping in etnaviv_iommu_unmap_gem Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 692/772] drm/nouveau/clk: Fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 693/772] drm/nouveau/kms/nv50-: atom: fix " Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 694/772] drm/bridge: analogix_dp: Grab runtime PM reference for DP-AUX Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 695/772] drm/i915/dsi: fix VBT send packet port selection for ICL+ Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 696/772] md: fix an incorrect NULL check in does_sb_need_changing Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 697/772] md: fix an incorrect NULL check in md_reload_sb Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 698/772] mtd: cfi_cmdset_0002: Move and rename chip_check/chip_ready/chip_good_for_write Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 699/772] mtd: cfi_cmdset_0002: Use chip_ready() for write on S29GL064N Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 700/772] media: coda: Fix reported H264 profile Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 701/772] media: coda: Add more H264 levels for CODA960 Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 702/772] ima: remove the IMA_TEMPLATE Kconfig option Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 703/772] Kconfig: Add option for asm goto w/ tied outputs to workaround clang-13 bug Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 704/772] lib/string_helpers: fix not adding strarray to devices resource list Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 705/772] RDMA/hfi1: Fix potential integer multiplication overflow errors Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 706/772] mmc: core: Allows to override the timeout value for ioctl() path Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.17 707/772] csky: patch_text: Fixup last cpu should be master Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 708/772] irqchip/armada-370-xp: Do not touch Performance Counter Overflow on A375, A38x, A39x Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 709/772] irqchip: irq-xtensa-mx: fix initial IRQ affinity Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 710/772] thermal: devfreq_cooling: use local ops instead of global ops Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 711/772] mt76: fix use-after-free by removing a non-RCU wcid pointer Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 712/772] cfg80211: declare MODULE_FIRMWARE for regulatory.db Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 713/772] mac80211: upgrade passive scan to active scan on DFS channels after beacon rx Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 714/772] um: virtio_uml: Fix broken device handling in time-travel Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 715/772] um: Use asm-generic/dma-mapping.h Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 716/772] um: chan_user: Fix winch_tramp() return value Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 717/772] um: Fix out-of-bounds read in LDT setup Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 718/772] kexec_file: drop weak attribute from arch_kexec_apply_relocations[_add] Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 719/772] ftrace: Clean up hash direct_functions on register failures Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 720/772] ksmbd: fix outstanding credits related bugs Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 721/772] iommu/msm: Fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 722/772] iommu/dma: Fix iova map result check bug Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 723/772] Revert "mm/cma.c: remove redundant cma_mutex lock" Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 724/772] mm/page_alloc: always attempt to allocate at least one page during bulk allocation Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 725/772] nodemask.h: fix compilation error with GCC12 Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 726/772] hugetlb: fix huge_pmd_unshare address update Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 727/772] mm/memremap: fix missing call to untrack_pfn() in pagemap_range() Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 728/772] xtensa/simdisk: fix proc_read_simdisk() Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 729/772] rtl818x: Prevent using not initialized queues Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 730/772] ASoC: rt5514: Fix event generation for "DSP Voice Wake Up" control Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 731/772] carl9170: tx: fix an incorrect use of list iterator Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 732/772] stm: ltdc: fix two incorrect NULL checks on " Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 733/772] bcache: improve multithreaded bch_btree_check() Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 734/772] bcache: improve multithreaded bch_sectors_dirty_init() Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 735/772] bcache: remove incremental dirty sector counting for bch_sectors_dirty_init() Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 736/772] bcache: avoid journal no-space deadlock by reserving 1 journal bucket Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 737/772] serial: pch: dont overwrite xmit->buf[0] by x_char Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 738/772] tilcdc: tilcdc_external: fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 739/772] gma500: " Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 740/772] arm64: dts: qcom: ipq8074: fix the sleep clock frequency Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 741/772] arm64: tegra: Add missing DFLL reset on Tegra210 Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 742/772] clk: tegra: Add missing reset deassertion Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 743/772] phy: qcom-qmp: fix struct clk leak on probe errors Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 744/772] ARM: dts: s5pv210: Remove spi-cs-high on panel in Aries Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 745/772] ARM: pxa: maybe fix gpio lookup tables Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 746/772] ceph: fix decoding of client session messages flags Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 747/772] SMB3: EBADF/EIO errors in rename/open caused by race condition in smb2_compound_op Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 748/772] docs/conf.py: Cope with removal of language=None in Sphinx 5.0.0 Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 749/772] dt-bindings: gpio: altera: correct interrupt-cells Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 750/772] vdpasim: allow to enable a vq repeatedly Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 751/772] blk-iolatency: Fix inflight count imbalances and IO hangs on offline Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 752/772] coresight: core: Fix coresight device probe failure issue Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 753/772] phy: qcom-qmp: fix reset-controller leak on probe errors Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 754/772] net: ipa: fix page free in ipa_endpoint_trans_release() Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 755/772] net: ipa: fix page free in ipa_endpoint_replenish_one() Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 756/772] kseltest/cgroup: Make test_stress.sh work if run interactively Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 757/772] perf evlist: Extend arch_evsel__must_be_in_group to support hybrid systems Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 758/772] list: test: Add a test for list_is_head() Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 759/772] Revert "random: use static branch for crng_ready()" Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 760/772] staging: r8188eu: delete rtw_wx_read/write32() Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 761/772] RDMA/hns: Remove the num_cqc_timer variable Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 762/772] RDMA/rxe: Generate a completion for unsupported/invalid opcode Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 763/772] MIPS: IP27: Remove incorrect `cpu_has_fpu override Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 764/772] MIPS: IP30: " Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 765/772] ext4: only allow test_dummy_encryption when supported Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 766/772] fs: add two trivial lookup helpers Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.17 767/772] exportfs: support idmapped mounts Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.17 768/772] fs/ntfs3: Fix invalid free in log_replay Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.17 769/772] md: Dont set mddev private to NULL in raid0 pers->free Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.17 770/772] md: fix double free of io_acct_set bioset Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.17 771/772] md: bcache: check the return value of kzalloc() in detached_dev_do_request() Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.17 772/772] tty: n_gsm: Fix packet data hex dump output Greg Kroah-Hartman
2022-06-08  1:28 ` [PATCH 5.17 000/772] 5.17.14-rc1 review Shuah Khan
2022-06-08 10:08 ` Sudip Mukherjee
2022-06-08 13:54 ` Naresh Kamboju
2022-06-09 12:51   ` Naresh Kamboju
2022-06-09 13:38     ` Guenter Roeck
2022-06-18 10:49     ` Pavel Machek
2022-06-18 11:04       ` Coly Li
2022-06-18 11:37         ` Pavel Machek
2022-06-18 11:57           ` Coly Li
2022-06-20 10:10             ` Greg Kroah-Hartman
2022-06-20 15:05               ` Coly Li
2022-06-08 20:23 ` Justin Forbes
2022-06-08 21:41 ` Fox Chen
2022-06-08 23:23 ` Ron Economos
2022-06-09  8:08   ` Greg Kroah-Hartman
2022-06-08 23:54 ` Guenter Roeck
2022-06-09 13:10   ` Naresh Kamboju

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=20220607164953.698865402@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=andrew@lunn.ch \
    --cc=festevam@denx.de \
    --cc=kuba@kernel.org \
    --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).