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, Taniya Das <tdas@codeaurora.org>,
	Bjorn Andersson <bjorn.andersson@linaro.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.15 612/913] clk: qcom: clk-rcg2: Update logic to calculate D value for RCG
Date: Tue,  5 Apr 2022 09:27:54 +0200	[thread overview]
Message-ID: <20220405070358.186115662@linuxfoundation.org> (raw)
In-Reply-To: <20220405070339.801210740@linuxfoundation.org>

From: Taniya Das <tdas@codeaurora.org>

[ Upstream commit 58922910add18583d5273c2edcdb9fd7bf4eca02 ]

The display pixel clock has a requirement on certain newer platforms to
support M/N as (2/3) and the final D value calculated results in
underflow errors.
As the current implementation does not check for D value is within
the accepted range for a given M & N value. Update the logic to
calculate the final D value based on the range.

Fixes: 99cbd064b059f ("clk: qcom: Support display RCG clocks")
Signed-off-by: Taniya Das <tdas@codeaurora.org>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Link: https://lore.kernel.org/r/20220227175536.3131-1-tdas@codeaurora.org
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/clk/qcom/clk-rcg2.c | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/drivers/clk/qcom/clk-rcg2.c b/drivers/clk/qcom/clk-rcg2.c
index e1b1b426fae4..b831975a9606 100644
--- a/drivers/clk/qcom/clk-rcg2.c
+++ b/drivers/clk/qcom/clk-rcg2.c
@@ -264,7 +264,7 @@ static int clk_rcg2_determine_floor_rate(struct clk_hw *hw,
 
 static int __clk_rcg2_configure(struct clk_rcg2 *rcg, const struct freq_tbl *f)
 {
-	u32 cfg, mask;
+	u32 cfg, mask, d_val, not2d_val, n_minus_m;
 	struct clk_hw *hw = &rcg->clkr.hw;
 	int ret, index = qcom_find_src_index(hw, rcg->parent_map, f->src);
 
@@ -283,8 +283,17 @@ static int __clk_rcg2_configure(struct clk_rcg2 *rcg, const struct freq_tbl *f)
 		if (ret)
 			return ret;
 
+		/* Calculate 2d value */
+		d_val = f->n;
+
+		n_minus_m = f->n - f->m;
+		n_minus_m *= 2;
+
+		d_val = clamp_t(u32, d_val, f->m, n_minus_m);
+		not2d_val = ~d_val & mask;
+
 		ret = regmap_update_bits(rcg->clkr.regmap,
-				RCG_D_OFFSET(rcg), mask, ~f->n);
+				RCG_D_OFFSET(rcg), mask, not2d_val);
 		if (ret)
 			return ret;
 	}
-- 
2.34.1




  parent reply	other threads:[~2022-04-05 11:24 UTC|newest]

Thread overview: 934+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-05  7:17 [PATCH 5.15 000/913] 5.15.33-rc1 review Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.15 001/913] Revert "swiotlb: rework "fix info leak with DMA_FROM_DEVICE"" Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.15 002/913] USB: serial: pl2303: add IBM device IDs Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.15 003/913] dt-bindings: usb: hcd: correct usb-device path Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.15 004/913] USB: serial: pl2303: fix GS type detection Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.15 005/913] USB: serial: simple: add Nokia phone driver Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.15 006/913] mm: kfence: fix missing objcg housekeeping for SLAB Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.15 007/913] hv: utils: add PTP_1588_CLOCK to Kconfig to fix build Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.15 008/913] HID: logitech-dj: add new lightspeed receiver id Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.15 009/913] HID: Add support for open wheel and no attachment to T300 Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.15 010/913] xfrm: fix tunnel model fragmentation behavior Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.15 011/913] ARM: mstar: Select HAVE_ARM_ARCH_TIMER Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.15 012/913] virtio_console: break out of buf poll on remove Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.15 013/913] vdpa/mlx5: should verify CTRL_VQ feature exists for MQ Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.15 014/913] tools/virtio: fix virtio_test execution Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.15 015/913] ethernet: sun: Free the coherent when failing in probing Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.15 016/913] gpio: Revert regression in sysfs-gpio (gpiolib.c) Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.15 017/913] spi: Fix invalid sgs value Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 018/913] net:mcf8390: Use platform_get_irq() to get the interrupt Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 019/913] Revert "gpio: Revert regression in sysfs-gpio (gpiolib.c)" Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 020/913] spi: Fix erroneous sgs value with min_t() Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 021/913] Input: zinitix - do not report shadow fingers Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 022/913] af_key: add __GFP_ZERO flag for compose_sadb_supported in function pfkey_register Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 023/913] net: dsa: microchip: add spi_device_id tables Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 024/913] selftests: vm: fix clang build error multiple output files Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 025/913] locking/lockdep: Avoid potential access of invalid memory in lock_class Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 026/913] drm/amdgpu: move PX checking into amdgpu_device_ip_early_init Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 027/913] drm/amdgpu: only check for _PR3 on dGPUs Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 028/913] iommu/iova: Improve 32-bit free space estimate Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 029/913] virtio-blk: Use blk_validate_block_size() to validate block size Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 030/913] tpm: fix reference counting for struct tpm_chip Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 031/913] usb: typec: tipd: Forward plug orientation to typec subsystem Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 032/913] USB: usb-storage: Fix use of bitfields for hardware data in ene_ub6250.c Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 033/913] xhci: fix garbage USBSTS being logged in some cases Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 034/913] xhci: fix runtime PM imbalance in USB2 resume Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 035/913] xhci: make xhci_handshake timeout for xhci_reset() adjustable Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 036/913] xhci: fix uninitialized string returned by xhci_decode_ctrl_ctx() Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 037/913] mei: me: disable driver on the ign firmware Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 038/913] mei: me: add Alder Lake N device id Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 039/913] mei: avoid iterator usage outside of list_for_each_entry Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 040/913] bus: mhi: pci_generic: Add mru_default for Quectel EM1xx series Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 041/913] bus: mhi: Fix MHI DMA structure endianness Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 042/913] docs: sphinx/requirements: Limit jinja2<3.1 Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 043/913] coresight: Fix TRCCONFIGR.QE sysfs interface Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 044/913] coresight: syscfg: Fix memleak on registration failure in cscfg_create_device Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 045/913] iio: afe: rescale: use s64 for temporary scale calculations Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 046/913] iio: inkern: apply consumer scale on IIO_VAL_INT cases Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 047/913] iio: inkern: apply consumer scale when no channel scale is available Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 048/913] iio: inkern: make a best effort on offset calculation Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 049/913] greybus: svc: fix an error handling bug in gb_svc_hello() Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 050/913] clk: rockchip: re-add rational best approximation algorithm to the fractional divider Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 051/913] clk: uniphier: Fix fixed-rate initialization Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 052/913] ptrace: Check PTRACE_O_SUSPEND_SECCOMP permission on PTRACE_SEIZE Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 053/913] cifs: fix handlecache and multiuser Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 054/913] cifs: we do not need a spinlock around the tree access during umount Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 055/913] KEYS: fix length validation in keyctl_pkey_params_get_2() Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 056/913] KEYS: asymmetric: enforce that sig algo matches key algo Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 057/913] KEYS: asymmetric: properly validate hash_algo and encoding Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 058/913] Documentation: add link to stable release candidate tree Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 059/913] Documentation: update stable tree link Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 060/913] firmware: stratix10-svc: add missing callback parameter on RSU Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 061/913] firmware: sysfb: fix platform-device leak in error path Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 062/913] HID: intel-ish-hid: Use dma_alloc_coherent for firmware update Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 063/913] SUNRPC: avoid race between mod_timer() and del_timer_sync() Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 064/913] NFS: NFSv2/v3 clients should never be setting NFS_CAP_XATTR Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 065/913] NFSD: prevent underflow in nfssvc_decode_writeargs() Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 066/913] NFSD: prevent integer overflow on 32 bit systems Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 067/913] f2fs: fix to unlock page correctly in error path of is_alive() Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 068/913] f2fs: quota: fix loop condition at f2fs_quota_sync() Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 069/913] f2fs: fix to do sanity check on .cp_pack_total_block_count Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 070/913] remoteproc: Fix count check in rproc_coredump_write() Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 071/913] mm/mlock: fix two bugs in user_shm_lock() Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 072/913] pinctrl: ingenic: Fix regmap on X series SoCs Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 073/913] pinctrl: samsung: drop pin banks references on error paths Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 074/913] net: bnxt_ptp: fix compilation error Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 075/913] spi: mxic: Fix the transmit path Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 076/913] mtd: rawnand: protect access to rawnand devices while in suspend Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.15 077/913] can: ems_usb: ems_usb_start_xmit(): fix double dev_kfree_skb() in error path Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 078/913] can: m_can: m_can_tx_handler(): fix use after free of skb Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 079/913] can: usb_8dev: usb_8dev_start_xmit(): fix double dev_kfree_skb() in error path Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 080/913] jffs2: fix use-after-free in jffs2_clear_xattr_subsystem Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 081/913] jffs2: fix memory leak in jffs2_do_mount_fs Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 082/913] jffs2: fix memory leak in jffs2_scan_medium Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 083/913] mm: fs: fix lru_cache_disabled race in bh_lru Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 084/913] mm/pages_alloc.c: dont create ZONE_MOVABLE beyond the end of a node Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 085/913] mm: invalidate hwpoison page cache page in fault path Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 086/913] mempolicy: mbind_range() set_policy() after vma_merge() Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 087/913] scsi: core: sd: Add silence_suspend flag to suppress some PM messages Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 088/913] scsi: ufs: Fix runtime PM messages never-ending cycle Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 089/913] scsi: scsi_transport_fc: Fix FPIN Link Integrity statistics counters Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 090/913] scsi: libsas: Fix sas_ata_qc_issue() handling of NCQ NON DATA commands Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 091/913] qed: display VF trust config Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 092/913] qed: validate and restrict untrusted VFs vlan promisc mode Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 093/913] riscv: dts: canaan: Fix SPI3 bus width Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 094/913] riscv: Fix fill_callchain return value Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 095/913] riscv: Increase stack size under KASAN Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 096/913] Revert "Input: clear BTN_RIGHT/MIDDLE on buttonpads" Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 097/913] cifs: prevent bad output lengths in smb2_ioctl_query_info() Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 098/913] cifs: fix NULL ptr dereference " Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 099/913] ALSA: cs4236: fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 100/913] ALSA: hda: Avoid unsol event during RPM suspending Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 101/913] ALSA: pcm: Fix potential AB/BA lock with buffer_mutex and mmap_lock Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 102/913] ALSA: hda/realtek: Fix audio regression on Mi Notebook Pro 2020 Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 103/913] rtc: mc146818-lib: fix locking in mc146818_set_time Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 104/913] rtc: pl031: fix rtc features null pointer dereference Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 105/913] ocfs2: fix crash when mount with quota enabled Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 106/913] drm/simpledrm: Add "panel orientation" property on non-upright mounted LCD panels Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 107/913] mm: madvise: skip unmapped vma holes passed to process_madvise Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 108/913] mm: madvise: return correct bytes advised with process_madvise Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 109/913] Revert "mm: madvise: skip unmapped vma holes passed to process_madvise" Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 110/913] mm,hwpoison: unmap poisoned page before invalidation Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 111/913] mm/kmemleak: reset tag when compare object pointer Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 112/913] dm stats: fix too short end duration_ns when using precise_timestamps Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 113/913] dm: fix use-after-free in dm_cleanup_zoned_dev() Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 114/913] dm: interlock pending dm_io and dm_wait_for_bios_completion Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 115/913] dm: fix double accounting of flush with data Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 116/913] dm integrity: set journal entry unused when shrinking device Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 117/913] tracing: Have trace event string test handle zero length strings Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 118/913] drbd: fix potential silent data corruption Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 119/913] powerpc/kvm: Fix kvm_use_magic_page Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 120/913] PCI: fu740: Force 2.5GT/s for initial device probe Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 121/913] arm64: signal: nofpsimd: Do not allocate fp/simd context when not available Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 122/913] arm64: Do not defer reserve_crashkernel() for platforms with no DMA memory zones Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 123/913] arm64: dts: qcom: sm8250: Fix MSI IRQ for PCIe1 and PCIe2 Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 124/913] arm64: dts: ti: k3-am65: Fix gic-v3 compatible regs Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 125/913] arm64: dts: ti: k3-j721e: " Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 126/913] arm64: dts: ti: k3-j7200: " Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 127/913] arm64: dts: ti: k3-am64: " Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 128/913] ASoC: SOF: Intel: Fix NULL ptr dereference when ENOMEM Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 129/913] Revert "ACPI: Pass the same capabilities to the _OSC regardless of the query flag" Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 130/913] ACPI: properties: Consistently return -ENOENT if there are no more references Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 131/913] coredump: Also dump first pages of non-executable ELF libraries Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 132/913] ext4: fix ext4_fc_stats trace point Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 133/913] ext4: fix fs corruption when tring to remove a non-empty directory with IO error Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 134/913] ext4: make mb_optimize_scan performance mount option work with extents Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 135/913] drivers: hamradio: 6pack: fix UAF bug caused by mod_timer() Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 136/913] samples/landlock: Fix path_list memory leak Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.15 137/913] landlock: Use square brackets around "landlock-ruleset" Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 138/913] mailbox: tegra-hsp: Flush whole channel Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 139/913] block: limit request dispatch loop duration Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 140/913] block: dont merge across cgroup boundaries if blkcg is enabled Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 141/913] drm/edid: check basic audio support on CEA extension block Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 142/913] fbdev: Hot-unplug firmware fb devices on forced removal Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 143/913] video: fbdev: sm712fb: Fix crash in smtcfb_read() Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 144/913] video: fbdev: atari: Atari 2 bpp (STe) palette bugfix Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 145/913] rfkill: make new event layout opt-in Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 146/913] ARM: dts: at91: sama7g5: Remove unused properties in i2c nodes Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 147/913] ARM: dts: at91: sama5d2: Fix PMERRLOC resource size Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 148/913] ARM: dts: exynos: fix UART3 pins configuration in Exynos5250 Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 149/913] ARM: dts: exynos: add missing HDMI supplies on SMDK5250 Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 150/913] ARM: dts: exynos: add missing HDMI supplies on SMDK5420 Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 151/913] mgag200 fix memmapsl configuration in GCTL6 register Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 152/913] carl9170: fix missing bit-wise or operator for tx_params Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 153/913] pstore: Dont use semaphores in always-atomic-context code Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 154/913] thermal: int340x: Increase bitmap size Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 155/913] lib/raid6/test: fix multiple definition linking error Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 156/913] exec: Force single empty string when argv is empty Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 157/913] crypto: rsa-pkcs1pad - only allow with rsa Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 158/913] crypto: rsa-pkcs1pad - correctly get hash from source scatterlist Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 159/913] crypto: rsa-pkcs1pad - restore signature length check Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 160/913] crypto: rsa-pkcs1pad - fix buffer overread in pkcs1pad_verify_complete() Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 161/913] bcache: fixup multiple threads crash Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 162/913] PM: domains: Fix sleep-in-atomic bug caused by genpd_debug_remove() Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 163/913] DEC: Limit PMAX memory probing to R3k systems Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 164/913] media: gpio-ir-tx: fix transmit with long spaces on Orange Pi PC Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 165/913] media: venus: hfi_cmds: List HDR10 property as unsupported for v1 and v3 Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 166/913] media: venus: venc: Fix h264 8x8 transform control Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 167/913] media: davinci: vpif: fix unbalanced runtime PM get Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 168/913] media: davinci: vpif: fix unbalanced runtime PM enable Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 169/913] btrfs: zoned: mark relocation as writing Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 170/913] btrfs: extend locking to all space_info members accesses Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 171/913] btrfs: verify the tranisd of the to-be-written dirty extent buffer Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 172/913] xtensa: define update_mmu_tlb function Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 173/913] xtensa: fix stop_machine_cpuslocked call in patch_text Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 174/913] xtensa: fix xtensa_wsr always writing 0 Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 175/913] drm/syncobj: flatten dma_fence_chains on transfer Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 176/913] drm/nouveau/backlight: Fix LVDS backlight detection on some laptops Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 177/913] drm/nouveau/backlight: Just set all backlight types as RAW Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 178/913] drm/fb-helper: Mark screen buffers in system memory with FBINFO_VIRTFB Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 179/913] brcmfmac: firmware: Allocate space for default boardrev in nvram Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 180/913] brcmfmac: pcie: Release firmwares in the brcmf_pcie_setup error path Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 181/913] brcmfmac: pcie: Declare missing firmware files in pcie.c Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 182/913] brcmfmac: pcie: Replace brcmf_pcie_copy_mem_todev with memcpy_toio Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 183/913] brcmfmac: pcie: Fix crashes due to early IRQs Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 184/913] drm/i915/opregion: check port number bounds for SWSCI display power state Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 185/913] drm/i915/gem: add missing boundary check in vm_access Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 186/913] PCI: imx6: Allow to probe when dw_pcie_wait_for_link() fails Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 187/913] PCI: pciehp: Clear cmd_busy bit in polling mode Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 188/913] PCI: xgene: Revert "PCI: xgene: Fix IB window setup" Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 189/913] regulator: qcom_smd: fix for_each_child.cocci warnings Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 190/913] selinux: access superblock_security_struct in LSM blob way Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 191/913] selinux: check return value of sel_make_avc_files Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 192/913] crypto: ccp - Ensure psp_ret is always initd in __sev_platform_init_locked() Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 193/913] hwrng: cavium - Check health status while reading random data Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 194/913] hwrng: cavium - HW_RANDOM_CAVIUM should depend on ARCH_THUNDER Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 195/913] crypto: sun8i-ss - really disable hash on A80 Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 196/913] crypto: authenc - Fix sleep in atomic context in decrypt_tail Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.15 197/913] crypto: mxs-dcp - Fix scatterlist processing Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 198/913] selinux: Fix selinux_sb_mnt_opts_compat() Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 199/913] thermal: int340x: Check for NULL after calling kmemdup() Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 200/913] crypto: octeontx2 - remove CONFIG_DM_CRYPT check Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 201/913] spi: tegra114: Add missing IRQ check in tegra_spi_probe Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 202/913] spi: tegra210-quad: Fix missin IRQ check in tegra_qspi_probe Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 203/913] stack: Constrain and fix stack offset randomization with Clang builds Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 204/913] arm64/mm: avoid fixmap race condition when create pud mapping Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 205/913] blk-cgroup: set blkg iostat after percpu stat aggregation Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 206/913] selftests/x86: Add validity check and allow field splitting Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 207/913] selftests/sgx: Treat CC as one argument Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 208/913] crypto: rockchip - ECB does not need IV Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 209/913] audit: log AUDIT_TIME_* records only from rules Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 210/913] EVM: fix the evm= __setup handler return value Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 211/913] crypto: ccree - dont attempt 0 len DMA mappings Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 212/913] crypto: hisilicon/sec - fix the aead software fallback for engine Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 213/913] spi: pxa2xx-pci: Balance reference count for PCI DMA device Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 214/913] hwmon: (pmbus) Add mutex to regulator ops Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 215/913] hwmon: (sch56xx-common) Replace WDOG_ACTIVE with WDOG_HW_RUNNING Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 216/913] nvme: cleanup __nvme_check_ids Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 217/913] nvme: fix the check for duplicate unique identifiers Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 218/913] block: dont delete queue kobject before its children Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 219/913] PM: hibernate: fix __setup handler error handling Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 220/913] PM: suspend: fix return value of __setup handler Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 221/913] spi: spi-zynqmp-gqspi: Handle error for dma_set_mask Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 222/913] hwrng: atmel - disable trng on failure path Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 223/913] crypto: sun8i-ss - call finalize with bh disabled Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 224/913] crypto: sun8i-ce " Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 225/913] crypto: amlogic " Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 226/913] crypto: gemini " Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 227/913] crypto: vmx - add missing dependencies Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 228/913] clocksource/drivers/timer-ti-dm: Fix regression from errata i940 fix Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 229/913] clocksource/drivers/exynos_mct: Refactor resources allocation Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 230/913] clocksource/drivers/exynos_mct: Handle DTS with higher number of interrupts Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 231/913] clocksource/drivers/timer-microchip-pit64b: Use notrace Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 232/913] clocksource/drivers/timer-of: Check return value of of_iomap in timer_of_base_init() Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 233/913] arm64: prevent instrumentation of bp hardening callbacks Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 234/913] KEYS: trusted: Fix trusted key backends when building as module Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 235/913] KEYS: trusted: Avoid calling null function trusted_key_exit Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 236/913] ACPI: APEI: fix return value of __setup handlers Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 237/913] crypto: ccp - ccp_dmaengine_unregister release dma channels Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 238/913] crypto: ccree - Fix use after free in cc_cipher_exit() Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 239/913] hwrng: nomadik - Change clk_disable to clk_disable_unprepare Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 240/913] hwmon: (pmbus) Add Vin unit off handling Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 241/913] clocksource: acpi_pm: fix return value of __setup handler Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 242/913] io_uring: dont check unrelated req->open.how in accept request Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 243/913] io_uring: terminate manual loop iterator loop correctly for non-vecs Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 244/913] watch_queue: Fix NULL dereference in error cleanup Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 245/913] watch_queue: Actually free the watch Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 246/913] f2fs: fix to enable ATGC correctly via gc_idle sysfs interface Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 247/913] sched/debug: Remove mpol_get/put and task_lock/unlock from sched_show_numa Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 248/913] sched/core: Export pelt_thermal_tp Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 249/913] sched/uclamp: Fix iowait boost escaping uclamp restriction Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 250/913] rseq: Remove broken uapi field layout on 32-bit little endian Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 251/913] perf/core: Fix address filter parser for multiple filters Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 252/913] perf/x86/intel/pt: Fix address filter config for 32-bit kernel Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 253/913] sched/fair: Improve consistency of allowed NUMA balance calculations Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 254/913] f2fs: fix missing free nid in f2fs_handle_failed_inode Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 255/913] nfsd: more robust allocation failure handling in nfsd_file_cache_init Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 256/913] sched/cpuacct: Fix charge percpu cpuusage Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.15 257/913] sched/rt: Plug rt_mutex_setprio() vs push_rt_task() race Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 258/913] f2fs: fix to avoid potential deadlock Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 259/913] btrfs: fix unexpected error path when reflinking an inline extent Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 260/913] f2fs: fix compressed file start atomic write may cause data corruption Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 261/913] selftests, x86: fix how check_cc.sh is being invoked Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 262/913] drivers/base/memory: add memory block to memory group after registration succeeded Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 263/913] kunit: make kunit_test_timeout compatible with comment Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 264/913] pinctrl: samsung: Remove EINT handler for Exynos850 ALIVE and CMGP gpios Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 265/913] media: staging: media: zoran: fix usage of vb2_dma_contig_set_max_seg_size Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 266/913] media: camss: csid-170: fix non-10bit formats Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 267/913] media: camss: csid-170: dont enable unused irqs Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 268/913] media: camss: csid-170: set the right HALT_CMD when disabled Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 269/913] media: camss: vfe-170: fix "VFE halt timeout" error Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 270/913] media: staging: media: imx: imx7-mipi-csis: Make subdev name unique Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 271/913] media: v4l2-mem2mem: Apply DST_QUEUE_OFF_BASE on MMAP buffers across ioctls Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 272/913] media: mtk-vcodec: potential dereference of null pointer Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 273/913] media: imx: imx8mq-mipi-csi2: remove wrong irq config write operation Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 274/913] media: imx: imx8mq-mipi_csi2: fix system resume Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 275/913] media: bttv: fix WARNING regression on tunerless devices Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 276/913] media: atmel: atmel-sama7g5-isc: fix ispck leftover Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 277/913] ASoC: sh: rz-ssi: Drop calling rz_ssi_pio_recv() recursively Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 278/913] ASoC: codecs: Check for error pointer after calling devm_regmap_init_mmio Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 279/913] ASoC: xilinx: xlnx_formatter_pcm: Handle sysclk setting Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 280/913] ASoC: simple-card-utils: Set sysclk on all components Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 281/913] media: coda: Fix missing put_device() call in coda_get_vdoa_data Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 282/913] media: meson: vdec: potential dereference of null pointer Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 283/913] media: hantro: Fix overfill bottom register field name Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 284/913] media: ov6650: Fix set format try processing path Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 285/913] media: v4l: Avoid unaligned access warnings when printing 4cc modifiers Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 286/913] media: ov5648: Dont pack controls struct Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 287/913] media: aspeed: Correct value for h-total-pixels Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 288/913] video: fbdev: matroxfb: set maxvram of vbG200eW to the same as vbG200 to avoid black screen Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 289/913] video: fbdev: controlfb: Fix COMPILE_TEST build Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 290/913] video: fbdev: smscufx: Fix null-ptr-deref in ufx_usb_probe() Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 291/913] video: fbdev: atmel_lcdfb: fix an error code in atmel_lcdfb_probe() Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 292/913] video: fbdev: fbcvt.c: fix printing in fb_cvt_print_name() Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 293/913] ARM: dts: Fix OpenBMC flash layout label addresses Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 294/913] firmware: qcom: scm: Remove reassignment to desc following initializer Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 295/913] ARM: dts: qcom: ipq4019: fix sleep clock Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 296/913] soc: qcom: rpmpd: Check for null return of devm_kcalloc Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 297/913] soc: qcom: ocmem: Fix missing put_device() call in of_get_ocmem Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 298/913] soc: qcom: aoss: remove spurious IRQF_ONESHOT flags Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 299/913] arm64: dts: qcom: sdm845: fix microphone bias properties and values Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 300/913] arm64: dts: qcom: sm8250: fix PCIe bindings to follow schema Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 301/913] arm64: dts: broadcom: bcm4908: use proper TWD binding Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 302/913] arm64: dts: qcom: sm8150: Correct TCS configuration for apps rsc Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 303/913] arm64: dts: qcom: sm8350: " Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 304/913] firmware: ti_sci: Fix compilation failure when CONFIG_TI_SCI_PROTOCOL is not defined Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 305/913] soc: ti: wkup_m3_ipc: Fix IRQ check in wkup_m3_ipc_probe Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 306/913] ARM: dts: sun8i: v3s: Move the csi1 block to follow address order Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 307/913] ARM: ftrace: ensure that ADR takes the Thumb bit into account Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 308/913] vsprintf: Fix potential unaligned access Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 309/913] ARM: dts: imx: Add missing LVDS decoder on M53Menlo Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 310/913] media: mexon-ge2d: fixup frames size in registers Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 311/913] media: video/hdmi: handle short reads of hdmi info frame Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 312/913] media: ti-vpe: cal: Fix a NULL pointer dereference in cal_ctx_v4l2_init_formats() Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 313/913] media: em28xx: initialize refcount before kref_get Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 314/913] media: usb: go7007: s2250-board: fix leak in probe() Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 315/913] media: cedrus: H265: Fix neighbour info buffer size Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 316/913] media: cedrus: h264: " Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.15 317/913] ASoC: codecs: rx-macro: fix accessing compander for aux Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 318/913] ASoC: codecs: rx-macro: fix accessing array out of bounds for enum type Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 319/913] ASoC: codecs: va-macro: " Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 320/913] ASoC: codecs: wc938x: " Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 321/913] ASoC: codecs: wcd938x: fix kcontrol max values Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 322/913] ASoC: codecs: wcd934x: " Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 323/913] ASoC: codecs: wcd934x: fix return value of wcd934x_rx_hph_mode_put Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 324/913] media: v4l2-core: Initialize h264 scaling matrix Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 325/913] media: ov5640: Fix set format, v4l2_mbus_pixelcode not updated Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 326/913] selftests/lkdtm: Add UBSAN config Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 327/913] lib: uninline simple_strntoull() as well Greg Kroah-Hartman
2022-04-06 12:34   ` Alexey Dobriyan
2022-04-06 13:04     ` Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 328/913] vsprintf: Fix %pK with kptr_restrict == 0 Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 329/913] uaccess: fix nios2 and microblaze get_user_8() Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 330/913] ASoC: rt5663: check the return value of devm_kzalloc() in rt5663_parse_dp() Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 331/913] soc: mediatek: pm-domains: Add wakeup capacity support in power domain Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 332/913] mmc: sdhci_am654: Fix the driver data of AM64 SoC Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 333/913] ASoC: ti: davinci-i2s: Add check for clk_enable() Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 334/913] ALSA: spi: " Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 335/913] arm64: dts: ns2: Fix spi-cpol and spi-cpha property Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 336/913] arm64: dts: broadcom: Fix sata nodename Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 337/913] printk: fix return value of printk.devkmsg __setup handler Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 338/913] ASoC: mxs-saif: Handle errors for clk_enable Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 339/913] ASoC: atmel_ssc_dai: " Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 340/913] ASoC: dwc-i2s: " Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 341/913] ASoC: soc-compress: prevent the potentially use of null pointer Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 342/913] memory: emif: Add check for setup_interrupts Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 343/913] memory: emif: check the pointer temp in get_device_details() Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 344/913] ALSA: firewire-lib: fix uninitialized flag for AV/C deferred transaction Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 345/913] arm64: dts: rockchip: Fix SDIO regulator supply properties on rk3399-firefly Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 346/913] m68k: coldfire/device.c: only build for MCF_EDMA when h/w macros are defined Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 347/913] media: stk1160: If start stream fails, return buffers with VB2_BUF_STATE_QUEUED Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 348/913] media: vidtv: Check for null return of vzalloc Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 349/913] ASoC: atmel: Add missing of_node_put() in at91sam9g20ek_audio_probe Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 350/913] ASoC: wm8350: Handle error for wm8350_register_irq Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 351/913] ASoC: fsi: Add check for clk_enable Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 352/913] video: fbdev: omapfb: Add missing of_node_put() in dvic_probe_of Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 353/913] media: saa7134: fix incorrect use to determine if list is empty Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 354/913] ivtv: fix incorrect device_caps for ivtvfb Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 355/913] ASoC: atmel: Fix error handling in snd_proto_probe Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 356/913] ASoC: rockchip: i2s: Fix missing clk_disable_unprepare() in rockchip_i2s_probe Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 357/913] ASoC: SOF: Add missing of_node_put() in imx8m_probe Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 358/913] ASoC: mediatek: use of_device_get_match_data() Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 359/913] ASoC: mediatek: mt8192-mt6359: Fix error handling in mt8192_mt6359_dev_probe Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 360/913] ASoC: rk817: Fix missing clk_disable_unprepare() in rk817_platform_probe Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 361/913] ASoC: dmaengine: do not use a NULL prepare_slave_config() callback Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 362/913] ASoC: mxs: Fix error handling in mxs_sgtl5000_probe Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 363/913] ASoC: fsl_spdif: Disable TX clock when stop Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 364/913] ASoC: imx-es8328: Fix error return code in imx_es8328_probe() Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 365/913] ASoC: SOF: Intel: enable DMI L1 for playback streams Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 366/913] ASoC: msm8916-wcd-digital: Fix missing clk_disable_unprepare() in msm8916_wcd_digital_probe Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 367/913] mmc: davinci_mmc: Handle error for clk_enable Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 368/913] ASoC: atmel: Fix error handling in sam9x5_wm8731_driver_probe Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 369/913] ASoC: msm8916-wcd-analog: Fix error handling in pm8916_wcd_analog_spmi_probe Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 370/913] ASoC: codecs: wcd934x: Add missing of_node_put() in wcd934x_codec_parse_data Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 371/913] ASoC: amd: Fix reference to PCM buffer address Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 372/913] ARM: configs: multi_v5_defconfig: re-enable CONFIG_V4L_PLATFORM_DRIVERS Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 373/913] ARM: configs: multi_v5_defconfig: re-enable DRM_PANEL and FB_xxx Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 374/913] drm/meson: osd_afbcd: Add an exit callback to struct meson_afbcd_ops Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 375/913] drm/meson: Make use of the helper function devm_platform_ioremap_resourcexxx() Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 376/913] drm/meson: split out encoder from meson_dw_hdmi Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.15 377/913] drm/meson: Fix error handling when afbcd.ops->init fails Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 378/913] drm/bridge: Fix free wrong object in sii8620_init_rcp_input_dev Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 379/913] drm/bridge: Add missing pm_runtime_disable() in __dw_mipi_dsi_probe Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 380/913] drm/bridge: nwl-dsi: Fix PM disable depth imbalance in nwl_dsi_probe Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 381/913] drm: bridge: adv7511: Fix ADV7535 HPD enablement Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 382/913] ath10k: fix memory overwrite of the WoWLAN wakeup packet pattern Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 383/913] drm/v3d/v3d_drv: Check for error num after setting mask Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 384/913] drm/panfrost: " Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 385/913] libbpf: Fix possible NULL pointer dereference when destroying skeleton Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 386/913] bpftool: Only set obj->skeleton on complete success Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 387/913] udmabuf: validate ubuf->pagecount Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 388/913] bpf: Fix UAF due to race between btf_try_get_module and load_module Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 389/913] drm/selftests/test-drm_dp_mst_helper: Fix memory leak in sideband_msg_req_encode_decode Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 390/913] selftests: bpf: Fix bind on used port Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 391/913] Bluetooth: btintel: Fix WBS setting for Intel legacy ROM products Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 392/913] Bluetooth: hci_serdev: call init_rwsem() before p->open() Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 393/913] mtd: onenand: Check for error irq Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 394/913] mtd: rawnand: gpmi: fix controller timings setting Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 395/913] drm/edid: Dont clear formats if using deep color Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 396/913] drm/edid: Split deep color modes between RGB and YUV444 Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 397/913] ionic: fix type complaint in ionic_dev_cmd_clean() Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 398/913] ionic: start watchdog after all is setup Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 399/913] ionic: Dont send reset commands if FW isnt running Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 400/913] drm/nouveau/acr: Fix undefined behavior in nvkm_acr_hsfw_load_bl() Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 401/913] drm/amd/display: Fix a NULL pointer dereference in amdgpu_dm_connector_add_common_modes() Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 402/913] drm/amd/pm: return -ENOTSUPP if there is no get_dpm_ultimate_freq function Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 403/913] net: phy: at803x: move page selection fix to config_init Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 404/913] selftests/bpf: Normalize XDP section names in selftests Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 405/913] selftests/bpf/test_xdp_redirect_multi: use temp netns for testing Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 406/913] ath9k_htc: fix uninit value bugs Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 407/913] RDMA/core: Set MR type in ib_reg_user_mr Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 408/913] KVM: PPC: Fix vmx/vsx mixup in mmio emulation Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 409/913] selftests/net: timestamping: Fix bind_phc check Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 410/913] i40e: dont reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 411/913] i40e: respect metadata " Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 412/913] igc: dont reserve excessive XDP_PACKET_HEADROOM " Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 413/913] ixgbe: pass bi->xdp to ixgbe_construct_skb_zc() directly Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 414/913] ixgbe: dont reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 415/913] ixgbe: respect metadata " Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 416/913] power: reset: gemini-poweroff: Fix IRQ check in gemini_poweroff_probe Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 417/913] ray_cs: Check ioremap return value Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 418/913] powerpc: dts: t1040rdb: fix ports names for Seville Ethernet switch Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 419/913] KVM: PPC: Book3S HV: Check return value of kvmppc_radix_init Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 420/913] powerpc/perf: Dont use perf_hw_context for trace IMC PMU Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 421/913] mt76: connac: fix sta_rec_wtbl tag len Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 422/913] mt76: mt7915: use proper aid value in mt7915_mcu_wtbl_generic_tlv in sta mode Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 423/913] mt76: mt7915: use proper aid value in mt7915_mcu_sta_basic_tlv Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 424/913] mt76: mt7921: fix a leftover race in runtime-pm Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 425/913] mt76: mt7615: " Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 426/913] mt76: mt7603: check sta_rates pointer in mt7603_sta_rate_tbl_update Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 427/913] mt76: mt7615: check sta_rates pointer in mt7615_sta_rate_tbl_update Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 428/913] ptp: unregister virtual clocks when unregistering physical clock Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 429/913] net: dsa: mv88e6xxx: Enable port policy support on 6097 Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 430/913] mac80211: Remove a couple of obsolete TODO Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 431/913] mac80211: limit bandwidth in HE capabilities Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 432/913] scripts/dtc: Call pkg-config POSIXly correct Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 433/913] livepatch: Fix build failure on 32 bits processors Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 434/913] net: asix: add proper error handling of usb read errors Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 435/913] i2c: bcm2835: Use platform_get_irq() to get the interrupt Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 436/913] i2c: bcm2835: Fix the error handling in bcm2835_i2c_probe() Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.15 437/913] mtd: mchp23k256: Add SPI ID table Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 438/913] mtd: mchp48l640: " Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 439/913] igc: avoid kernel warning when changing RX ring parameters Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 440/913] igb: refactor XDP registration Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 441/913] PCI: aardvark: Fix reading MSI interrupt number Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 442/913] PCI: aardvark: Fix reading PCI_EXP_RTSTA_PME bit on emulated bridge Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 443/913] RDMA/rxe: Check the last packet by RXE_END_MASK Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 444/913] libbpf: Fix signedness bug in btf_dump_array_data() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 445/913] cxl/core: Fix cxl_probe_component_regs() error message Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 446/913] cxl/regs: Fix size of CXL Capability Header Register Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 447/913] net:enetc: allocate CBD ring data memory using DMA coherent methods Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 448/913] libbpf: Fix compilation warning due to mismatched printf format Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 449/913] drm/bridge: dw-hdmi: use safe format when first in bridge chain Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 450/913] libbpf: Use dynamically allocated buffer when receiving netlink messages Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 451/913] power: supply: ab8500: Fix memory leak in ab8500_fg_sysfs_init Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 452/913] HID: i2c-hid: fix GET/SET_REPORT for unnumbered reports Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 453/913] iommu/ipmmu-vmsa: Check for error num after setting mask Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 454/913] drm/bridge: anx7625: Fix overflow issue on reading EDID Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 455/913] bpftool: Fix the error when lookup in no-btf maps Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 456/913] drm/amd/pm: enable pm sysfs write for one VF mode Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 457/913] drm/amd/display: Add affected crtcs to atomic state for dsc mst unplug Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 458/913] libbpf: Fix memleak in libbpf_netlink_recv() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 459/913] IB/cma: Allow XRC INI QPs to set their local ACK timeout Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 460/913] dax: make sure inodes are flushed before destroy cache Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 461/913] selftests: mptcp: add csum mib check for mptcp_connect Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 462/913] iwlwifi: mvm: Dont call iwl_mvm_sta_from_mac80211() with NULL sta Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 463/913] iwlwifi: mvm: dont iterate unadded vifs when handling FW SMPS req Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 464/913] iwlwifi: mvm: align locking in D3 test debugfs Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 465/913] iwlwifi: yoyo: remove DBGI_SRAM address reset writing Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 466/913] iwlwifi: Fix -EIO error code that is never returned Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 467/913] iwlwifi: mvm: Fix an error code in iwl_mvm_up() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 468/913] mtd: rawnand: pl353: Set the nand chip node as the flash node Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 469/913] drm/msm/dp: populate connector of struct dp_panel Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 470/913] drm/msm/dp: stop link training after link training 2 failed Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 471/913] drm/msm/dp: always add fail-safe mode into connector mode list Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 472/913] drm/msm/dsi: Use "ref" fw clock instead of global name for VCO parent Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 473/913] drm/msm/dsi/phy: fix 7nm v4.0 settings for C-PHY mode Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 474/913] drm/msm/dpu: add DSPP blocks teardown Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 475/913] drm/msm/dpu: fix dp audio condition Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 476/913] dm crypt: fix get_key_size compiler warning if !CONFIG_KEYS Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 477/913] vfio/pci: fix memory leak during D3hot to D0 transition Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 478/913] vfio/pci: wake-up devices around reset functions Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 479/913] scsi: fnic: Fix a tracing statement Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 480/913] scsi: pm8001: Fix command initialization in pm80XX_send_read_log() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 481/913] scsi: pm8001: Fix command initialization in pm8001_chip_ssp_tm_req() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 482/913] scsi: pm8001: Fix payload initialization in pm80xx_set_thermal_config() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 483/913] scsi: pm8001: Fix le32 values handling in pm80xx_set_sas_protocol_timer_config() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 484/913] scsi: pm8001: Fix payload initialization in pm80xx_encrypt_update() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 485/913] scsi: pm8001: Fix le32 values handling in pm80xx_chip_ssp_io_req() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 486/913] scsi: pm8001: Fix le32 values handling in pm80xx_chip_sata_req() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 487/913] scsi: pm8001: Fix NCQ NON DATA command task initialization Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 488/913] scsi: pm8001: Fix NCQ NON DATA command completion handling Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 489/913] scsi: pm8001: Fix abort all task initialization Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 490/913] RDMA/mlx5: Fix the flow of a miss in the allocation of a cache ODP MR Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 491/913] drm/amd/display: Remove vupdate_int_entry definition Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 492/913] TOMOYO: fix __setup handlers return values Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 493/913] power: supply: sbs-charger: Dont cancel work that is not initialized Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 494/913] ext2: correct max file size computing Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 495/913] drm/tegra: Fix reference leak in tegra_dsi_ganged_probe Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 496/913] power: supply: bq24190_charger: Fix bq24190_vbus_is_enabled() wrong false return Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.15 497/913] scsi: hisi_sas: Change permission of parameter prot_mask Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 498/913] drm/bridge: cdns-dsi: Make sure to to create proper aliases for dt Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 499/913] bpf, arm64: Call build_prologue() first in first JIT pass Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 500/913] bpf, arm64: Feed byte-offset into bpf line info Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 501/913] xsk: Fix race at socket teardown Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 502/913] RDMA/irdma: Fix netdev notifications for vlans Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 503/913] RDMA/irdma: Fix Passthrough mode in VM Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 504/913] RDMA/irdma: Remove incorrect masking of PD Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 505/913] gpu: host1x: Fix a memory leak in host1x_remove() Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 506/913] libbpf: Skip forward declaration when counting duplicated type names Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 507/913] powerpc/mm/numa: skip NUMA_NO_NODE onlining in parse_numa_properties() Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 508/913] powerpc/Makefile: Dont pass -mcpu=powerpc64 when building 32-bit Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 509/913] KVM: x86: Fix emulation in writing cr8 Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 510/913] KVM: x86/emulator: Defer not-present segment check in __load_segment_descriptor() Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 511/913] hv_balloon: rate-limit "Unhandled message" warning Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 512/913] i2c: xiic: Make bus names unique Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 513/913] power: supply: wm8350-power: Handle error for wm8350_register_irq Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 514/913] power: supply: wm8350-power: Add missing free in free_charger_irq Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 515/913] IB/hfi1: Allow larger MTU without AIP Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 516/913] RDMA/core: Fix ib_qp_usecnt_dec() called when error Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 517/913] PCI: Reduce warnings on possible RW1C corruption Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 518/913] net: axienet: fix RX ring refill allocation failure handling Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 519/913] drm/msm/a6xx: Fix missing ARRAY_SIZE() check Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 520/913] mips: DEC: honor CONFIG_MIPS_FP_SUPPORT=n Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 521/913] MIPS: Sanitise Cavium switch cases in TLB handler synthesizers Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 522/913] powerpc/sysdev: fix incorrect use to determine if list is empty Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 523/913] powerpc/64s: Dont use DSISR for SLB faults Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 524/913] mfd: mc13xxx: Add check for mc13xxx_irq_request Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 525/913] libbpf: Unmap rings when umem deleted Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 526/913] selftests/bpf: Make test_lwt_ip_encap more stable and faster Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 527/913] platform/x86: huawei-wmi: check the return value of device_create_file() Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 528/913] scsi: mpt3sas: Fix incorrect 4GB boundary check Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 529/913] powerpc: 8xx: fix a return value error in mpc8xx_pic_init Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 530/913] vxcan: enable local echo for sent CAN frames Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 531/913] ath10k: Fix error handling in ath10k_setup_msa_resources Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 532/913] mips: cdmm: Fix refcount leak in mips_cdmm_phys_base Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 533/913] MIPS: RB532: fix return value of __setup handler Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 534/913] MIPS: pgalloc: fix memory leak caused by pgd_free() Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 535/913] mtd: rawnand: atmel: fix refcount issue in atmel_nand_controller_init Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 536/913] power: ab8500_chargalg: Use CLOCK_MONOTONIC Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 537/913] RDMA/irdma: Prevent some integer underflows Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 538/913] Revert "RDMA/core: Fix ib_qp_usecnt_dec() called when error" Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 539/913] RDMA/mlx5: Fix memory leak in error flow for subscribe event routine Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 540/913] bpf, sockmap: Fix memleak in sk_psock_queue_msg Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 541/913] bpf, sockmap: Fix memleak in tcp_bpf_sendmsg while sk msg is full Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 542/913] bpf, sockmap: Fix more uncharged while msg has more_data Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 543/913] bpf, sockmap: Fix double uncharge the mem of sk_msg Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 544/913] samples/bpf, xdpsock: Fix race when running for fix duration of time Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 545/913] USB: storage: ums-realtek: fix error code in rts51x_read_mem() Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 546/913] drm/i915/display: Fix HPD short pulse handling for eDP Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 547/913] netfilter: flowtable: Fix QinQ and pppoe support for inet table Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 548/913] mt76: mt7921: fix mt7921_queues_acq implementation Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 549/913] can: isotp: sanitize CAN ID checks in isotp_bind() Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 550/913] can: isotp: return -EADDRNOTAVAIL when reading from unbound socket Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 551/913] can: isotp: support MSG_TRUNC flag when reading from socket Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 552/913] bareudp: use ipv6_mod_enabled to check if IPv6 enabled Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 553/913] ibmvnic: fix race between xmit and reset Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 554/913] af_unix: Fix some data-races around unix_sk(sk)->oob_skb Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 555/913] selftests/bpf: Fix error reporting from sock_fields programs Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 556/913] Bluetooth: hci_uart: add missing NULL check in h5_enqueue Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.15 557/913] Bluetooth: call hci_le_conn_failed with hdev lock in hci_le_conn_failed Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 558/913] Bluetooth: btmtksdio: Fix kernel oops in btmtksdio_interrupt Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 559/913] ipv4: Fix route lookups when handling ICMP redirects and PMTU updates Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 560/913] af_netlink: Fix shift out of bounds in group mask calculation Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 561/913] i2c: meson: Fix wrong speed use from probe Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 562/913] netfilter: conntrack: Add and use nf_ct_set_auto_assign_helper_warned() Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 563/913] i2c: mux: demux-pinctrl: do not deactivate a master that is not active Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 564/913] powerpc/pseries: Fix use after free in remove_phb_dynamic() Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 565/913] selftests/bpf/test_lirc_mode2.sh: Exit with proper code Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 566/913] PCI: Avoid broken MSI on SB600 USB devices Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 567/913] net: bcmgenet: Use stronger register read/writes to assure ordering Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 568/913] tcp: ensure PMTU updates are processed during fastopen Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 569/913] openvswitch: always update flow key after nat Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 570/913] net: dsa: fix panic on shutdown if multi-chip tree failed to probe Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 571/913] tipc: fix the timer expires after interval 100ms Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 572/913] mfd: asic3: Add missing iounmap() on error asic3_mfd_probe Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 573/913] ice: fix scheduling while atomic on aux critical err interrupt Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 574/913] ice: dont allow to run ice_send_event_to_aux() in atomic ctx Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 575/913] drivers: ethernet: cpsw: fix panic when interrupt coaleceing is set via ethtool Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 576/913] kernel/resource: fix kfree() of bootmem memory again Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 577/913] staging: r8188eu: convert DBG_88E_LEVEL call in hal/rtl8188e_hal_init.c Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 578/913] staging: r8188eu: release_firmware is not called if allocation fails Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 579/913] mxser: fix xmit_buf leak in activate when LSR == 0xff Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 580/913] fsi: scom: Fix error handling Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 581/913] fsi: scom: Remove retries in indirect scoms Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 582/913] pwm: lpc18xx-sct: Initialize driver data and hardware before pwmchip_add() Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 583/913] pps: clients: gpio: Propagate return value from pps_gpio_probe Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 584/913] fsi: Aspeed: Fix a potential double free Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 585/913] misc: alcor_pci: Fix an error handling path Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 586/913] cpufreq: qcom-cpufreq-nvmem: fix reading of PVS Valid fuse Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 587/913] soundwire: intel: fix wrong register name in intel_shim_wake Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 588/913] clk: qcom: ipq8074: fix PCI-E clock oops Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 589/913] dmaengine: idxd: check GENCAP config support for gencfg register Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 590/913] dmaengine: idxd: change bandwidth token to read buffers Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 591/913] dmaengine: idxd: restore traffic class defaults after wq reset Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 592/913] iio: mma8452: Fix probe failing when an i2c_device_id is used Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 593/913] serial: 8250_aspeed_vuart: add PORT_ASPEED_VUART port type Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 594/913] staging:iio:adc:ad7280a: Fix handing of device address bit reversing Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 595/913] pinctrl: renesas: r8a77470: Reduce size for narrow VIN1 channel Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 596/913] pinctrl: renesas: checker: Fix miscalculation of number of states Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 597/913] clk: qcom: ipq8074: Use floor ops for SDCC1 clock Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 598/913] phy: dphy: Correct lpx parameter and its derivatives(ta_{get,go,sure}) Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 599/913] phy: phy-brcm-usb: fixup BCM4908 support Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 600/913] serial: 8250_mid: Balance reference count for PCI DMA device Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 601/913] serial: 8250_lpss: " Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 602/913] NFS: Use of mapping_set_error() results in spurious errors Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 603/913] serial: 8250: Fix race condition in RTS-after-send handling Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 604/913] iio: adc: Add check for devm_request_threaded_irq Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 605/913] habanalabs: Add check for pci_enable_device Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 606/913] NFS: Return valid errors from nfs2/3_decode_dirent() Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 607/913] staging: r8188eu: fix endless loop in recv_func Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 608/913] dma-debug: fix return value of __setup handlers Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 609/913] clk: imx7d: Remove audio_mclk_root_clk Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 610/913] clk: imx: off by one in imx_lpcg_parse_clks_from_dt() Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 611/913] clk: at91: sama7g5: fix parents of PDMCs GCLK Greg Kroah-Hartman
2022-04-05  7:27 ` Greg Kroah-Hartman [this message]
2022-04-05  7:27 ` [PATCH 5.15 613/913] clk: qcom: clk-rcg2: Update the frac table for pixel clock Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 614/913] dmaengine: hisi_dma: fix MSI allocate fail when reload hisi_dma Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 615/913] remoteproc: qcom: Fix missing of_node_put in adsp_alloc_memory_region Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 616/913] remoteproc: qcom_wcnss: Add missing of_node_put() in wcnss_alloc_memory_region Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.15 617/913] remoteproc: qcom_q6v5_mss: Fix some leaks in q6v5_alloc_memory_region Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 618/913] nvdimm/region: Fix default alignment for small regions Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 619/913] clk: actions: Terminate clk_div_table with sentinel element Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 620/913] clk: loongson1: " Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 621/913] clk: hisilicon: " Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 622/913] clk: clps711x: " Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 623/913] clk: Fix clk_hw_get_clk() when dev is NULL Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 624/913] clk: tegra: tegra124-emc: Fix missing put_device() call in emc_ensure_emc_driver Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 625/913] mailbox: imx: fix crash in resume on i.mx8ulp Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 626/913] NFS: remove unneeded check in decode_devicenotify_args() Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 627/913] staging: mt7621-dts: fix LEDs and pinctrl on GB-PC1 devicetree Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 628/913] staging: mt7621-dts: fix formatting Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 629/913] staging: mt7621-dts: fix pinctrl properties for ethernet Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 630/913] staging: mt7621-dts: fix GB-PC2 devicetree Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 631/913] pinctrl: mediatek: Fix missing of_node_put() in mtk_pctrl_init Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 632/913] pinctrl: mediatek: paris: Fix PIN_CONFIG_BIAS_* readback Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 633/913] pinctrl: mediatek: paris: Fix "argument" argument type for mtk_pinconf_get() Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 634/913] pinctrl: mediatek: paris: Fix pingroup pin config state readback Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 635/913] pinctrl: mediatek: paris: Skip custom extra pin config dump for virtual GPIOs Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 636/913] pinctrl: microchip sgpio: use reset driver Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 637/913] pinctrl: microchip-sgpio: lock RMW access Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 638/913] pinctrl: nomadik: Add missing of_node_put() in nmk_pinctrl_probe Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 639/913] pinctrl/rockchip: Add missing of_node_put() in rockchip_pinctrl_probe Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 640/913] tty: hvc: fix return value of __setup handler Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 641/913] kgdboc: " Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 642/913] serial: 8250: fix XOFF/XON sending when DMA is used Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 643/913] virt: acrn: obtain pa from VMA with PFNMAP flag Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 644/913] virt: acrn: fix a memory leak in acrn_dev_ioctl() Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 645/913] kgdbts: fix return value of __setup handler Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 646/913] firmware: google: Properly state IOMEM dependency Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 647/913] driver core: dd: fix return value of __setup handler Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 648/913] jfs: fix divide error in dbNextAG Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 649/913] netfilter: nf_conntrack_tcp: preserve liberal flag in tcp options Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 650/913] SUNRPC dont resend a task on an offlined transport Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 651/913] NFSv4.1: dont retry BIND_CONN_TO_SESSION on session error Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 652/913] kdb: Fix the putarea helper function Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 653/913] perf stat: Fix forked applications enablement of counters Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 654/913] clk: qcom: gcc-msm8994: Fix gpll4 width Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 655/913] vsock/virtio: initialize vdev->priv before using VQs Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 656/913] vsock/virtio: read the negotiated features " Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 657/913] vsock/virtio: enable VQs early on probe Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 658/913] clk: Initialize orphan req_rate Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 659/913] xen: fix is_xen_pmu() Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 660/913] net: enetc: report software timestamping via SO_TIMESTAMPING Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 661/913] net: hns3: fix bug when PF set the duplicate MAC address for VFs Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 662/913] net: hns3: fix port base vlan add fail when concurrent with reset Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 663/913] net: hns3: add vlan list lock to protect vlan list Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 664/913] net: hns3: format the output of the MAC address Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 665/913] net: hns3: refine the process when PF set VF VLAN Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 666/913] net: phy: broadcom: Fix brcm_fet_config_init() Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 667/913] selftests: test_vxlan_under_vrf: Fix broken test case Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 668/913] NFS: Dont loop forever in nfs_do_recoalesce() Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 669/913] net: hns3: clean residual vf config after disable sriov Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 670/913] net: sparx5: depends on PTP_1588_CLOCK_OPTIONAL Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 671/913] qlcnic: dcb: default to returning -EOPNOTSUPP Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 672/913] net/x25: Fix null-ptr-deref caused by x25_disconnect Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 673/913] net: sparx5: switchdev: fix possible NULL pointer dereference Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 674/913] octeontx2-af: initialize action variable Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 675/913] net: prefer nf_ct_put instead of nf_conntrack_put Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 676/913] net/sched: act_ct: fix ref leak when switching zones Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.15 677/913] NFSv4/pNFS: Fix another issue with a list iterator pointing to the head Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 678/913] net: dsa: bcm_sf2_cfp: fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 679/913] fs: fd tables have to be multiples of BITS_PER_LONG Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 680/913] lib/test: use after free in register_test_dev_kmod() Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 681/913] fs: fix fd table size alignment properly Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 682/913] LSM: general protection fault in legacy_parse_param Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 683/913] regulator: rpi-panel: Handle I2C errors/timing to the Atmel Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 684/913] crypto: hisilicon/qm - cleanup warning in qm_vf_read_qos Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 685/913] gcc-plugins/stackleak: Exactly match strings instead of prefixes Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 686/913] pinctrl: npcm: Fix broken references to chip->parent_device Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 687/913] rcu: Mark writes to the rcu_segcblist structures ->flags field Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 688/913] block/bfq_wf2q: correct weight to ioprio Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 689/913] crypto: xts - Add softdep on ecb Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 690/913] crypto: hisilicon/sec - not need to enable sm4 extra mode at HW V3 Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 691/913] block, bfq: dont move oom_bfqq Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 692/913] selinux: use correct type for context length Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 693/913] arm64: module: remove (NOLOAD) from linker script Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 694/913] selinux: allow FIOCLEX and FIONCLEX with policy capability Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 695/913] loop: use sysfs_emit() in the sysfs xxx show() Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 696/913] Fix incorrect type in assignment of ipv6 port for audit Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 697/913] irqchip/qcom-pdc: Fix broken locking Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 698/913] irqchip/nvic: Release nvic_base upon failure Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 699/913] fs/binfmt_elf: Fix AT_PHDR for unusual ELF files Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 700/913] bfq: fix use-after-free in bfq_dispatch_request Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 701/913] ACPICA: Avoid walking the ACPI Namespace if it is not there Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 702/913] lib/raid6/test/Makefile: Use $(pound) instead of \# for Make 4.3 Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 703/913] Revert "Revert "block, bfq: honor already-setup queue merges"" Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 704/913] ACPI/APEI: Limit printable size of BERT table data Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 705/913] PM: core: keep irq flags in device_pm_check_callbacks() Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 706/913] parisc: Fix handling off probe non-access faults Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 707/913] nvme-tcp: lockdep: annotate in-kernel sockets Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 708/913] spi: tegra20: Use of_device_get_match_data() Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 709/913] atomics: Fix atomic64_{read_acquire,set_release} fallbacks Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 710/913] locking/lockdep: Iterate lock_classes directly when reading lockdep files Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 711/913] ext4: correct cluster len and clusters changed accounting in ext4_mb_mark_bb Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 712/913] ext4: fix ext4_mb_mark_bb() with flex_bg with fast_commit Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 713/913] sched/tracing: Dont re-read p->state when emitting sched_switch event Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 714/913] sched/tracing: Report TASK_RTLOCK_WAIT tasks as TASK_UNINTERRUPTIBLE Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 715/913] ext4: dont BUG if someone dirty pages without asking ext4 first Greg Kroah-Hartman
2022-04-05  9:51   ` syzbot
2022-04-05  7:29 ` [PATCH 5.15 716/913] f2fs: fix to do sanity check on curseg->alloc_type Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 717/913] NFSD: Fix nfsd_breaker_owns_lease() return values Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 718/913] f2fs: dont get FREEZE lock in f2fs_evict_inode in frozen fs Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 719/913] btrfs: harden identification of a stale device Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 720/913] btrfs: make search_csum_tree return 0 if we get -EFBIG Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 721/913] f2fs: use spin_lock to avoid hang Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 722/913] f2fs: compress: fix to print raw data size in error path of lz4 decompression Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 723/913] Adjust cifssb maximum read size Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 724/913] ntfs: add sanity check on allocation size Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 725/913] media: staging: media: zoran: move videodev alloc Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 726/913] media: staging: media: zoran: calculate the right buffer number for zoran_reap_stat_com Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 727/913] media: staging: media: zoran: fix various V4L2 compliance errors Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 728/913] media: atmel: atmel-isc-base: report frame sizes as full supported range Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 729/913] media: ir_toy: free before error exiting Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 730/913] ASoC: sh: rz-ssi: Make the data structures available before registering the handlers Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 731/913] ASoC: SOF: Intel: match sdw version on link_slaves_found Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 732/913] media: imx-jpeg: Prevent decoding NV12M jpegs into single-planar buffers Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 733/913] ASoC: SOF: Intel: hda: Remove link assignment limitation Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 734/913] media: iommu/mediatek-v1: Free the existed fwspec if the master dev already has Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 735/913] media: iommu/mediatek: Return ENODEV if the device is NULL Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 736/913] media: iommu/mediatek: Add device_link between the consumer and the larb devices Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.15 737/913] video: fbdev: nvidiafb: Use strscpy() to prevent buffer overflow Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 738/913] video: fbdev: w100fb: Reset global state Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 739/913] video: fbdev: cirrusfb: check pixclock to avoid divide by zero Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 740/913] video: fbdev: omapfb: acx565akm: replace snprintf with sysfs_emit Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 741/913] ARM: dts: qcom: fix gic_irq_domain_translate warnings for msm8960 Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 742/913] ARM: dts: bcm2837: Add the missing L1/L2 cache information Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 743/913] ASoC: madera: Add dependencies on MFD Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 744/913] media: atomisp_gmin_platform: Add DMI quirk to not turn AXP ELDO2 regulator off on some boards Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 745/913] media: atomisp: fix dummy_ptr check to avoid duplicate active_bo Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 746/913] ARM: ftrace: avoid redundant loads or clobbering IP Greg Kroah-Hartman
2022-04-05 10:01   ` Ard Biesheuvel
2022-04-05 16:52     ` Greg Kroah-Hartman
2022-04-05 17:17       ` Ard Biesheuvel
2022-04-06 11:23     ` Sasha Levin
2022-04-06 11:43       ` Ard Biesheuvel
2022-04-05  7:30 ` [PATCH 5.15 747/913] ARM: dts: imx7: Use audio_mclk_post_div instead audio_mclk_root_clk Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 748/913] arm64: defconfig: build imx-sdma as a module Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 749/913] video: fbdev: omapfb: panel-dsi-cm: Use sysfs_emit() instead of snprintf() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 750/913] video: fbdev: omapfb: panel-tpo-td043mtea1: " Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 751/913] video: fbdev: udlfb: replace snprintf in show functions with sysfs_emit Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 752/913] ARM: dts: bcm2711: Add the missing L1/L2 cache information Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 753/913] ASoC: soc-core: skip zero num_dai component in searching dai name Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 754/913] media: imx-jpeg: fix a bug of accessing array out of bounds Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 755/913] media: cx88-mpeg: clear interrupt status register before streaming video Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 756/913] uaccess: fix type mismatch warnings from access_ok() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 757/913] lib/test_lockup: fix kernel pointer check for separate address spaces Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 758/913] ARM: tegra: tamonten: Fix I2C3 pad setting Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 759/913] ARM: mmp: Fix failure to remove sram device Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 760/913] ASoC: amd: vg: fix for pm resume callback sequence Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 761/913] video: fbdev: sm712fb: Fix crash in smtcfb_write() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 762/913] media: i2c: ov5648: Fix lockdep error Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 763/913] media: Revert "media: em28xx: add missing em28xx_close_extension" Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 764/913] media: hdpvr: initialize dev->worker at hdpvr_register_videodev Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 765/913] ASoC: Intel: sof_sdw: fix quirks for 2022 HP Spectre x360 13" Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 766/913] tracing: Have TRACE_DEFINE_ENUM affect trace event types as well Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 767/913] mmc: host: Return an error when ->enable_sdio_irq() ops is missing Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 768/913] media: atomisp: fix bad usage at error handling logic Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 769/913] ALSA: hda/realtek: Add alc256-samsung-headphone fixup Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 770/913] KVM: x86: Reinitialize context if host userspace toggles EFER.LME Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 771/913] KVM: x86/mmu: Move "invalid" check out of kvm_tdp_mmu_get_root() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 772/913] KVM: x86/mmu: Zap _all_ roots when unmapping gfn range in TDP MMU Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 773/913] KVM: x86/mmu: Check for present SPTE when clearing dirty bit " Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 774/913] KVM: x86: hyper-v: Drop redundant ex parameter from kvm_hv_send_ipi() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 775/913] KVM: x86: hyper-v: Drop redundant ex parameter from kvm_hv_flush_tlb() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 776/913] KVM: x86: hyper-v: Fix the maximum number of sparse banks for XMM fast TLB flush hypercalls Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 777/913] KVM: x86: hyper-v: HVCALL_SEND_IPI_EX is an XMM fast hypercall Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 778/913] powerpc/kasan: Fix early region not updated correctly Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 779/913] powerpc/lib/sstep: Fix sthcx instruction Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 780/913] powerpc/lib/sstep: Fix build errors with newer binutils Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 781/913] powerpc: Add set_memory_{p/np}() and remove set_memory_attr() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 782/913] powerpc: Fix build errors with newer binutils Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 783/913] drm/dp: Fix off-by-one in register cache size Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 784/913] drm/i915: Treat SAGV block time 0 as SAGV disabled Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 785/913] drm/i915: Fix PSF GV point mask when SAGV is not possible Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 786/913] drm/i915: Reject unsupported TMDS rates on ICL+ Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 787/913] scsi: qla2xxx: Refactor asynchronous command initialization Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 788/913] scsi: qla2xxx: Implement ref count for SRB Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 789/913] scsi: qla2xxx: Fix stuck session in gpdb Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 790/913] scsi: qla2xxx: Fix warning message due to adisc being flushed Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 791/913] scsi: qla2xxx: Fix scheduling while atomic Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 792/913] scsi: qla2xxx: Fix premature hw access after PCI error Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 793/913] scsi: qla2xxx: Fix wrong FDMI data for 64G adapter Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 794/913] scsi: qla2xxx: Fix warning for missing error code Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 795/913] scsi: qla2xxx: Fix device reconnect in loop topology Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 796/913] scsi: qla2xxx: edif: Fix clang warning Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.15 797/913] scsi: qla2xxx: Fix T10 PI tag escape and IP guard options for 28XX adapters Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 798/913] scsi: qla2xxx: Add devids and conditionals for 28xx Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 799/913] scsi: qla2xxx: Check for firmware dump already collected Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 800/913] scsi: qla2xxx: Suppress a kernel complaint in qla_create_qpair() Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 801/913] scsi: qla2xxx: Fix disk failure to rediscover Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 802/913] scsi: qla2xxx: Fix incorrect reporting of task management failure Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 803/913] scsi: qla2xxx: Fix hang due to session stuck Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 804/913] scsi: qla2xxx: Fix missed DMA unmap for NVMe ls requests Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 805/913] scsi: qla2xxx: Fix N2N inconsistent PLOGI Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 806/913] scsi: qla2xxx: Fix stuck session of PRLI reject Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 807/913] scsi: qla2xxx: Reduce false trigger to login Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 808/913] scsi: qla2xxx: Use correct feature type field during RFF_ID processing Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 809/913] platform: chrome: Split trace include file Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 810/913] KVM: x86: Check lapic_in_kernel() before attempting to set a SynIC irq Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 811/913] KVM: x86: Avoid theoretical NULL pointer dereference in kvm_irq_delivery_to_apic_fast() Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 812/913] KVM: x86: Forbid VMM to set SYNIC/STIMER MSRs when SynIC wasnt activated Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 813/913] KVM: Prevent module exit until all VMs are freed Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 814/913] KVM: x86: fix sending PV IPI Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 815/913] KVM: SVM: fix panic on out-of-bounds guest IRQ Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 816/913] ubifs: rename_whiteout: Fix double free for whiteout_ui->data Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 817/913] ubifs: Fix deadlock in concurrent rename whiteout and inode writeback Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 818/913] ubifs: Add missing iput if do_tmpfile() failed in rename whiteout Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 819/913] ubifs: Rename whiteout atomically Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 820/913] ubifs: Fix ui->dirty race between do_tmpfile() and writeback work Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 821/913] ubifs: Rectify space amount budget for mkdir/tmpfile operations Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 822/913] ubifs: setflags: Make dirtied_ino_d 8 bytes aligned Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 823/913] ubifs: Fix read out-of-bounds in ubifs_wbuf_write_nolock() Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 824/913] ubifs: Fix to add refcount once page is set private Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 825/913] ubifs: rename_whiteout: correct old_dir size computing Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 826/913] nvme: allow duplicate NSIDs for private namespaces Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 827/913] nvme: fix the read-only state for zoned namespaces with unsupposed features Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 828/913] wireguard: queueing: use CFI-safe ptr_ring cleanup function Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 829/913] wireguard: socket: free skb in send6 when ipv6 is disabled Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 830/913] wireguard: socket: ignore v6 endpoints " Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 831/913] XArray: Fix xas_create_range() when multi-order entry present Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 832/913] can: mcba_usb: mcba_usb_start_xmit(): fix double dev_kfree_skb in error path Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 833/913] can: mcba_usb: properly check endpoint type Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 834/913] can: mcp251xfd: mcp251xfd_register_get_dev_id(): fix return of error value Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 835/913] XArray: Update the LRU list in xas_split() Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 836/913] modpost: restore the warning message for missing symbol versions Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 837/913] rtc: check if __rtc_read_time was successful Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 838/913] gfs2: gfs2_setattr_size error path fix Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 839/913] gfs2: Make sure FITRIM minlen is rounded up to fs block size Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 840/913] net: hns3: fix the concurrency between functions reading debugfs Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 841/913] net: hns3: fix software vlan talbe of vlan 0 inconsistent with hardware Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 842/913] rxrpc: fix some null-ptr-deref bugs in server_key.c Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 843/913] rxrpc: Fix call timer start racing with call destruction Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 844/913] mailbox: imx: fix wakeup failure from freeze mode Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 845/913] crypto: arm/aes-neonbs-cbc - Select generic cbc and aes Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 846/913] watch_queue: Free the page array when watch_queue is dismantled Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 847/913] pinctrl: pinconf-generic: Print arguments for bias-pull-* Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 848/913] watchdog: rti-wdt: Add missing pm_runtime_disable() in probe function Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 849/913] net: sparx5: uses, depends on BRIDGE or !BRIDGE Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 850/913] pinctrl: nuvoton: npcm7xx: Rename DS() macro to DSTR() Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 851/913] pinctrl: nuvoton: npcm7xx: Use %zu printk format for ARRAY_SIZE() Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 852/913] ASoC: mediatek: mt6358: add missing EXPORT_SYMBOLs Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 853/913] ubi: Fix race condition between ctrl_cdev_ioctl and ubi_cdev_ioctl Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 854/913] ARM: iop32x: offset IRQ numbers by 1 Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 855/913] block: Fix the maximum minor value is blk_alloc_ext_minor() Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 856/913] io_uring: fix memory leak of uid in files registration Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.15 857/913] riscv module: remove (NOLOAD) Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 858/913] ACPI: CPPC: Avoid out of bounds access when parsing _CPC data Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 859/913] vhost: handle error while adding split ranges to iotlb Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 860/913] spi: Fix Tegra QSPI example Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 861/913] platform/chrome: cros_ec_typec: Check for EC device Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 862/913] can: isotp: restore accidentally removed MSG_PEEK feature Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 863/913] proc: bootconfig: Add null pointer check Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 864/913] drm/connector: Fix typo in documentation Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 865/913] scsi: qla2xxx: Add qla2x00_async_done() for async routines Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 866/913] staging: mt7621-dts: fix pinctrl-0 items to be size-1 items on ethernet Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 867/913] arm64: mm: Drop const from conditional arm64_dma_phys_limit definition Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 868/913] ASoC: soc-compress: Change the check for codec_dai Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 869/913] Reinstate some of "swiotlb: rework "fix info leak with DMA_FROM_DEVICE"" Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 870/913] tracing: Have type enum modifications copy the strings Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 871/913] net: add skb_set_end_offset() helper Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 872/913] net: preserve skb_end_offset() in skb_unclone_keeptruesize() Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 873/913] mm/mmap: return 1 from stack_guard_gap __setup() handler Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 874/913] ARM: 9187/1: JIVE: fix return value of __setup handler Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 875/913] mm/memcontrol: return 1 from cgroup.memory __setup() handler Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 876/913] mm/usercopy: return 1 from hardened_usercopy " Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 877/913] af_unix: Support POLLPRI for OOB Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 878/913] bpf: Adjust BPF stack helper functions to accommodate skip > 0 Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 879/913] bpf: Fix comment for helper bpf_current_task_under_cgroup() Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 880/913] mmc: rtsx: Use pm_runtime_{get,put}() to handle runtime PM Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 881/913] dt-bindings: mtd: nand-controller: Fix the reg property description Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 882/913] dt-bindings: mtd: nand-controller: Fix a comment in the examples Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 883/913] dt-bindings: spi: mxic: The interrupt property is not mandatory Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 884/913] dt-bindings: memory: mtk-smi: No need mediatek,larb-id for mt8167 Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 885/913] dt-bindings: pinctrl: pinctrl-microchip-sgpio: Fix example Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 886/913] ubi: fastmap: Return error code if memory allocation fails in add_aeb() Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 887/913] ASoC: SOF: Intel: Fix build error without SND_SOC_SOF_PCI_DEV Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 888/913] ASoC: topology: Allow TLV control to be either read or write Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 889/913] perf vendor events: Update metrics for SkyLake Server Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 890/913] media: ov6650: Add try support to selection API operations Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 891/913] media: ov6650: Fix crop rectangle affected by set format Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 892/913] spi: mediatek: support tick_delay without enhance_timing Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 893/913] ARM: dts: spear1340: Update serial node properties Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 894/913] ARM: dts: spear13xx: Update SPI dma properties Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 897/913] um: Fix uml_mconsole stop/go Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 898/913] docs: sysctl/kernel: add missing bit to panic_print Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 899/913] openvswitch: Fixed nd target mask field in the flow dump Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 900/913] torture: Make torture.sh help message match reality Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 901/913] n64cart: convert bi_disk to bi_bdev->bd_disk fix build Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 902/913] mmc: rtsx: Let MMC core handle runtime PM Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 903/913] mmc: rtsx: Fix build errors/warnings for unused variable Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 904/913] KVM: x86/mmu: do compare-and-exchange of gPTE via the user address Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 905/913] iommu/dma: Skip extra sync during unmap w/swiotlb Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 906/913] iommu/dma: Fold _swiotlb helpers into callers Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 907/913] iommu/dma: Check CONFIG_SWIOTLB more broadly Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 908/913] swiotlb: Support aligned swiotlb buffers Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 909/913] iommu/dma: Account for min_align_mask w/swiotlb Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 910/913] coredump: Snapshot the vmas in do_coredump Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 911/913] coredump: Remove the WARN_ON in dump_vma_snapshot Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 912/913] coredump/elf: Pass coredump_params into fill_note_info Greg Kroah-Hartman
2022-04-05  7:32 ` [PATCH 5.15 913/913] coredump: Use the vma snapshot in fill_files_note Greg Kroah-Hartman
2022-04-05 11:58 ` [PATCH 5.15 000/913] 5.15.33-rc1 review Holger Hoffstätte
2022-04-06 13:01   ` Greg Kroah-Hartman
2022-04-05 15:20 ` Florian Fainelli
2022-04-05 17:37 ` Slade Watkins
2022-04-05 23:06 ` Shuah Khan
2022-04-06  9:52   ` Anders Roxell
2022-04-06 12:23     ` Greg Kroah-Hartman
2022-04-06  1:08 ` Guenter Roeck
2022-04-06  8:26 ` Jon Hunter
2022-04-06 10:10 ` Sudip Mukherjee
2022-04-06 10:15 ` Naresh Kamboju
2022-04-06 12:24 ` Bagas Sanjaya
2022-04-06 13:44 ` Fox Chen
2022-04-06 15:36 ` Ron Economos

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=20220405070358.186115662@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=bjorn.andersson@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=tdas@codeaurora.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).