From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
stable@vger.kernel.org,
Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
Rajmohan Mani <rajmohan.mani@intel.com>,
Bingbu Cao <bingbu.cao@intel.com>,
Sakari Ailus <sakari.ailus@linux.intel.com>,
Mauro Carvalho Chehab <mchehab+huawei@kernel.org>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.4 059/261] media: staging/intel-ipu3: Implement lock for stream on/off operations
Date: Fri, 19 Jun 2020 16:31:10 +0200 [thread overview]
Message-ID: <20200619141652.747583591@linuxfoundation.org> (raw)
In-Reply-To: <20200619141649.878808811@linuxfoundation.org>
From: Bingbu Cao <bingbu.cao@intel.com>
[ Upstream commit 33e3c349b2bf1235be458df09fb8d237141486c4 ]
Currently concurrent stream off operations on ImgU nodes are not
synchronized, leading to use-after-free bugs (as reported by KASAN).
[ 250.090724] BUG: KASAN: use-after-free in
ipu3_dmamap_free+0xc5/0x116 [ipu3_imgu]
[ 250.090726] Read of size 8 at addr ffff888127b29bc0 by task
yavta/18836
[ 250.090731] Hardware name: HP Soraka/Soraka, BIOS
Google_Soraka.10431.17.0 03/22/2018
[ 250.090732] Call Trace:
[ 250.090735] dump_stack+0x6a/0xb1
[ 250.090739] print_address_description+0x8e/0x279
[ 250.090743] ? ipu3_dmamap_free+0xc5/0x116 [ipu3_imgu]
[ 250.090746] kasan_report+0x260/0x28a
[ 250.090750] ipu3_dmamap_free+0xc5/0x116 [ipu3_imgu]
[ 250.090754] ipu3_css_pool_cleanup+0x24/0x37 [ipu3_imgu]
[ 250.090759] ipu3_css_pipeline_cleanup+0x61/0xb9 [ipu3_imgu]
[ 250.090763] ipu3_css_stop_streaming+0x1f2/0x321 [ipu3_imgu]
[ 250.090768] imgu_s_stream+0x94/0x443 [ipu3_imgu]
[ 250.090772] ? ipu3_vb2_buf_queue+0x280/0x280 [ipu3_imgu]
[ 250.090775] ? vb2_dma_sg_unmap_dmabuf+0x16/0x6f [videobuf2_dma_sg]
[ 250.090778] ? vb2_buffer_in_use+0x36/0x58 [videobuf2_common]
[ 250.090782] ipu3_vb2_stop_streaming+0xf9/0x135 [ipu3_imgu]
Implemented a lock to synchronize imgu stream on / off operations and
the modification of streaming flag (in struct imgu_device), to prevent
these issues.
Reported-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Suggested-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Rajmohan Mani <rajmohan.mani@intel.com>
Signed-off-by: Bingbu Cao <bingbu.cao@intel.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/staging/media/ipu3/ipu3-v4l2.c | 10 ++++++++++
drivers/staging/media/ipu3/ipu3.c | 3 +++
drivers/staging/media/ipu3/ipu3.h | 4 ++++
3 files changed, 17 insertions(+)
diff --git a/drivers/staging/media/ipu3/ipu3-v4l2.c b/drivers/staging/media/ipu3/ipu3-v4l2.c
index 3c7ad1eed434..c764cb55dc8d 100644
--- a/drivers/staging/media/ipu3/ipu3-v4l2.c
+++ b/drivers/staging/media/ipu3/ipu3-v4l2.c
@@ -367,8 +367,10 @@ static void imgu_vb2_buf_queue(struct vb2_buffer *vb)
vb2_set_plane_payload(vb, 0, need_bytes);
+ mutex_lock(&imgu->streaming_lock);
if (imgu->streaming)
imgu_queue_buffers(imgu, false, node->pipe);
+ mutex_unlock(&imgu->streaming_lock);
dev_dbg(&imgu->pci_dev->dev, "%s for pipe %u node %u", __func__,
node->pipe, node->id);
@@ -468,10 +470,13 @@ static int imgu_vb2_start_streaming(struct vb2_queue *vq, unsigned int count)
dev_dbg(dev, "%s node name %s pipe %u id %u", __func__,
node->name, node->pipe, node->id);
+ mutex_lock(&imgu->streaming_lock);
if (imgu->streaming) {
r = -EBUSY;
+ mutex_unlock(&imgu->streaming_lock);
goto fail_return_bufs;
}
+ mutex_unlock(&imgu->streaming_lock);
if (!node->enabled) {
dev_err(dev, "IMGU node is not enabled");
@@ -498,9 +503,11 @@ static int imgu_vb2_start_streaming(struct vb2_queue *vq, unsigned int count)
/* Start streaming of the whole pipeline now */
dev_dbg(dev, "IMGU streaming is ready to start");
+ mutex_lock(&imgu->streaming_lock);
r = imgu_s_stream(imgu, true);
if (!r)
imgu->streaming = true;
+ mutex_unlock(&imgu->streaming_lock);
return 0;
@@ -532,6 +539,7 @@ static void imgu_vb2_stop_streaming(struct vb2_queue *vq)
dev_err(&imgu->pci_dev->dev,
"failed to stop subdev streaming\n");
+ mutex_lock(&imgu->streaming_lock);
/* Was this the first node with streaming disabled? */
if (imgu->streaming && imgu_all_nodes_streaming(imgu, node)) {
/* Yes, really stop streaming now */
@@ -542,6 +550,8 @@ static void imgu_vb2_stop_streaming(struct vb2_queue *vq)
}
imgu_return_all_buffers(imgu, node, VB2_BUF_STATE_ERROR);
+ mutex_unlock(&imgu->streaming_lock);
+
media_pipeline_stop(&node->vdev.entity);
}
diff --git a/drivers/staging/media/ipu3/ipu3.c b/drivers/staging/media/ipu3/ipu3.c
index eb16394acf96..08eb6791918b 100644
--- a/drivers/staging/media/ipu3/ipu3.c
+++ b/drivers/staging/media/ipu3/ipu3.c
@@ -663,6 +663,7 @@ static int imgu_pci_probe(struct pci_dev *pci_dev,
return r;
mutex_init(&imgu->lock);
+ mutex_init(&imgu->streaming_lock);
atomic_set(&imgu->qbuf_barrier, 0);
init_waitqueue_head(&imgu->buf_drain_wq);
@@ -726,6 +727,7 @@ out_mmu_exit:
out_css_powerdown:
imgu_css_set_powerdown(&pci_dev->dev, imgu->base);
out_mutex_destroy:
+ mutex_destroy(&imgu->streaming_lock);
mutex_destroy(&imgu->lock);
return r;
@@ -743,6 +745,7 @@ static void imgu_pci_remove(struct pci_dev *pci_dev)
imgu_css_set_powerdown(&pci_dev->dev, imgu->base);
imgu_dmamap_exit(imgu);
imgu_mmu_exit(imgu->mmu);
+ mutex_destroy(&imgu->streaming_lock);
mutex_destroy(&imgu->lock);
}
diff --git a/drivers/staging/media/ipu3/ipu3.h b/drivers/staging/media/ipu3/ipu3.h
index 73b123b2b8a2..8cd6a0077d99 100644
--- a/drivers/staging/media/ipu3/ipu3.h
+++ b/drivers/staging/media/ipu3/ipu3.h
@@ -146,6 +146,10 @@ struct imgu_device {
* vid_buf.list and css->queue
*/
struct mutex lock;
+
+ /* Lock to protect writes to streaming flag in this struct */
+ struct mutex streaming_lock;
+
/* Forbid streaming and buffer queuing during system suspend. */
atomic_t qbuf_barrier;
/* Indicate if system suspend take place while imgu is streaming. */
--
2.25.1
next prev parent reply other threads:[~2020-06-19 16:07 UTC|newest]
Thread overview: 267+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-19 14:30 [PATCH 5.4 000/261] 5.4.48-rc1 review Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 001/261] ACPI: GED: use correct trigger type field in _Exx / _Lxx handling Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 002/261] drm/amdgpu: fix and cleanup amdgpu_gem_object_close v4 Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 003/261] ath10k: Fix the race condition in firmware dump work queue Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 004/261] drm: bridge: adv7511: Extend list of audio sample rates Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 005/261] media: staging: imgu: do not hold spinlock during freeing mmu page table Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 006/261] media: imx: imx7-mipi-csis: Cleanup and fix subdev pad format handling Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 007/261] crypto: ccp -- dont "select" CONFIG_DMADEVICES Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 008/261] media: vicodec: Fix error codes in probe function Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 009/261] media: si2157: Better check for running tuner in init Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 010/261] objtool: Ignore empty alternatives Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 011/261] spi: spi-mem: Fix Dual/Quad modes on Octal-capable devices Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 012/261] drm/amdgpu: Init data to avoid oops while reading pp_num_states Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 013/261] arm64/kernel: Fix range on invalidating dcache for boot page tables Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 014/261] libbpf: Fix memory leak and possible double-free in hashmap__clear Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 015/261] spi: pxa2xx: Apply CS clk quirk to BXT Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 016/261] x86,smap: Fix smap_{save,restore}() alternatives Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 017/261] sched/fair: Refill bandwidth before scaling Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 018/261] net: atlantic: make hw_get_regs optional Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 019/261] net: ena: fix error returning in ena_com_get_hash_function() Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 020/261] efi/libstub/x86: Work around LLVM ELF quirk build regression Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 021/261] ath10k: remove the max_sched_scan_reqs value Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 022/261] arm64: cacheflush: Fix KGDB trap detection Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 023/261] media: staging: ipu3: Fix stale list entries on parameter queue failure Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 024/261] rtw88: fix an issue about leak system resources Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 025/261] spi: dw: Zero DMA Tx and Rx configurations on stack Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 026/261] ACPICA: Dispatcher: add status checks Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 027/261] block: alloc map and request for new hardware queue Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 028/261] arm64: insn: Fix two bugs in encoding 32-bit logical immediates Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 029/261] block: reset mapping if failed to update hardware queue count Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 030/261] drm: rcar-du: Set primary plane zpos immutably at initializing Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 031/261] lockdown: Allow unprivileged users to see lockdown status Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 032/261] ixgbe: Fix XDP redirect on archs with PAGE_SIZE above 4K Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 033/261] platform/x86: dell-laptop: dont register micmute LED if there is no token Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 034/261] MIPS: Loongson: Build ATI Radeon GPU driver as module Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 035/261] Bluetooth: Add SCO fallback for invalid LMP parameters error Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 036/261] kgdb: Disable WARN_CONSOLE_UNLOCKED for all kgdb Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 037/261] kgdb: Prevent infinite recursive entries to the debugger Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 038/261] pmu/smmuv3: Clear IRQ affinity hint on device removal Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 039/261] ACPI/IORT: Fix PMCG node single ID mapping handling Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 040/261] mips: Fix cpu_has_mips64r1/2 activation for MIPS32 CPUs Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 041/261] spi: dw: Enable interrupts in accordance with DMA xfer mode Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 042/261] clocksource: dw_apb_timer: Make CPU-affiliation being optional Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 043/261] clocksource: dw_apb_timer_of: Fix missing clockevent timers Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 044/261] media: dvbdev: Fix tuner->demod media controller link Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 045/261] btrfs: account for trans_block_rsv in may_commit_transaction Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 046/261] btrfs: do not ignore error from btrfs_next_leaf() when inserting checksums Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 047/261] ARM: 8978/1: mm: make act_mm() respect THREAD_SIZE Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 048/261] batman-adv: Revert "disable ethtool link speed detection when auto negotiation off" Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 049/261] ice: Fix memory leak Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 050/261] ice: Fix for memory leaks and modify ICE_FREE_CQ_BUFS Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 051/261] mmc: meson-mx-sdio: trigger a soft reset after a timeout or CRC error Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 052/261] Bluetooth: btmtkuart: Improve exception handling in btmtuart_probe() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 053/261] spi: dw: Fix Rx-only DMA transfers Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 054/261] x86/kvm/hyper-v: Explicitly align hcall param for kvm_hyperv_exit Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 055/261] net: vmxnet3: fix possible buffer overflow caused by bad DMA value in vmxnet3_get_rss() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 056/261] x86: fix vmap arguments in map_irq_stack Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 057/261] staging: android: ion: use vmap instead of vm_map_ram Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 058/261] ath10k: fix kernel null pointer dereference Greg Kroah-Hartman
2020-06-19 14:31 ` Greg Kroah-Hartman [this message]
2020-06-19 14:31 ` [PATCH 5.4 060/261] spi: Respect DataBitLength field of SpiSerialBusV2() ACPI resource Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 061/261] brcmfmac: fix wrong location to get firmware feature Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 062/261] regulator: qcom-rpmh: Fix typos in pm8150 and pm8150l Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 063/261] tools api fs: Make xxx__mountpoint() more scalable Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 064/261] e1000: Distribute switch variables for initialization Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 065/261] dt-bindings: display: mediatek: control dpi pins mode to avoid leakage Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 066/261] drm/mediatek: set dpi pin mode to gpio low to avoid leakage current Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 067/261] audit: fix a net reference leak in audit_send_reply() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 068/261] media: dvb: return -EREMOTEIO on i2c transfer failure Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 069/261] media: platform: fcp: Set appropriate DMA parameters Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 070/261] MIPS: Make sparse_init() using top-down allocation Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 071/261] ath10k: add flush tx packets for SDIO chip Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 072/261] Bluetooth: btbcm: Add 2 missing models to subver tables Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 073/261] audit: fix a net reference leak in audit_list_rules_send() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 074/261] Drivers: hv: vmbus: Always handle the VMBus messages on CPU0 Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 075/261] dpaa2-eth: fix return codes used in ndo_setup_tc Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 076/261] netfilter: nft_nat: return EOPNOTSUPP if type or flags are not supported Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 077/261] selftests/bpf: Fix memory leak in extract_build_id() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 078/261] net: bcmgenet: set Rx mode before starting netif Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 079/261] net: bcmgenet: Fix WoL with password after deep sleep Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 080/261] lib/mpi: Fix 64-bit MIPS build with Clang Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 081/261] exit: Move preemption fixup up, move blocking operations down Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 082/261] sched/core: Fix illegal RCU from offline CPUs Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 083/261] drivers/perf: hisi: Fix typo in events attribute array Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 084/261] iocost_monitor: drop string wrap around numbers when outputting json Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 085/261] net: lpc-enet: fix error return code in lpc_mii_init() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 086/261] selinux: fix error return code in policydb_read() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 087/261] drivers: net: davinci_mdio: fix potential NULL dereference in davinci_mdio_probe() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 088/261] media: cec: silence shift wrapping warning in __cec_s_log_addrs() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 089/261] net: allwinner: Fix use correct return type for ndo_start_xmit() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 090/261] powerpc/spufs: fix copy_to_user while atomic Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 091/261] libertas_tf: avoid a null dereference in pointer priv Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 092/261] xfs: clean up the error handling in xfs_swap_extents Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 093/261] Crypto/chcr: fix for ccm(aes) failed test Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 094/261] MIPS: Truncate link address into 32bit for 32bit kernel Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 095/261] mips: cm: Fix an invalid error code of INTVN_*_ERR Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 096/261] kgdb: Fix spurious true from in_dbg_master() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 097/261] xfs: reset buffer write failure state on successful completion Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 098/261] xfs: fix duplicate verification from xfs_qm_dqflush() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 099/261] platform/x86: intel-vbtn: Use acpi_evaluate_integer() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 100/261] platform/x86: intel-vbtn: Split keymap into buttons and switches parts Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 101/261] platform/x86: intel-vbtn: Do not advertise switches to userspace if they are not there Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 102/261] platform/x86: intel-vbtn: Also handle tablet-mode switch on "Detachable" and "Portable" chassis-types Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 103/261] iwlwifi: avoid debug max amsdu config overwriting itself Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 104/261] nvme: refine the Qemu Identify CNS quirk Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 105/261] nvme-pci: align io queue count with allocted nvme_queue in nvme_probe Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 106/261] nvme-tcp: use bh_lock in data_ready Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 107/261] ath10k: Remove msdu from idr when management pkt send fails Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 108/261] wcn36xx: Fix error handling path in wcn36xx_probe() Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 109/261] net: qed*: Reduce RX and TX default ring count when running inside kdump kernel Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 110/261] drm/mcde: dsi: Fix return value check in mcde_dsi_bind() Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 111/261] mt76: avoid rx reorder buffer overflow Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 112/261] md: dont flush workqueue unconditionally in md_open Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 113/261] raid5: remove gfp flags from scribble_alloc() Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 114/261] iocost: dont let vrate run wild while theres no saturation signal Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 115/261] veth: Adjust hard_start offset on redirect XDP frames Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 116/261] net/mlx5e: IPoIB, Drop multicast packets that this interface sent Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 117/261] rtlwifi: Fix a double free in _rtl_usb_tx_urb_setup() Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 118/261] mwifiex: Fix memory corruption in dump_station Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 119/261] kgdboc: Use a platform device to handle tty drivers showing up late Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 120/261] x86/boot: Correct relocation destination on old linkers Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 121/261] sched: Defend cfs and rt bandwidth quota against overflow Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 122/261] mips: MAAR: Use more precise address mask Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 123/261] mips: Add udelay lpj numbers adjustment Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 124/261] crypto: stm32/crc32 - fix ext4 chksum BUG_ON() Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 125/261] crypto: stm32/crc32 - fix run-time self test issue Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 126/261] crypto: stm32/crc32 - fix multi-instance Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 127/261] drm/amd/powerpay: Disable gfxoff when setting manual mode on picasso and raven Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 128/261] drm/amdgpu: Sync with VM root BO when switching VM to CPU update mode Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 129/261] selftests/bpf: CONFIG_IPV6_SEG6_BPF required for test_seg6_loop.o Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 130/261] x86/mm: Stop printing BRK addresses Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 131/261] MIPS: tools: Fix resource leak in elf-entry.c Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 132/261] m68k: mac: Dont call via_flush_cache() on Mac IIfx Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 133/261] btrfs: improve global reserve stealing logic Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 134/261] btrfs: qgroup: mark qgroup inconsistent if were inherting snapshot to a new qgroup Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 135/261] net: ethernet: fec: move GPR register offset and bit into DT Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 136/261] macvlan: Skip loopback packets in RX handler Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 137/261] PCI: Dont disable decoding when mmio_always_on is set Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 138/261] MIPS: Fix IRQ tracing when call handle_fpe() and handle_msa_fpe() Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 139/261] bcache: fix refcount underflow in bcache_device_free() Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 140/261] mmc: sdhci-msm: Set SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12 quirk Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 141/261] staging: greybus: sdio: Respect the cmd->busy_timeout from the mmc core Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 142/261] mmc: via-sdmmc: " Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 143/261] ice: fix potential double free in probe unrolling Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 144/261] ixgbe: fix signed-integer-overflow warning Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 145/261] iwlwifi: mvm: fix aux station leak Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 146/261] mmc: sdhci-esdhc-imx: fix the mask for tuning start point Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 147/261] spi: dw: Return any value retrieved from the dma_transfer callback Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 148/261] cpuidle: Fix three reference count leaks Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 149/261] platform/x86: hp-wmi: Convert simple_strtoul() to kstrtou32() Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 150/261] platform/x86: intel-hid: Add a quirk to support HP Spectre X2 (2015) Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 151/261] platform/x86: intel-vbtn: Only blacklist SW_TABLET_MODE on the 9 / "Laptop" chasis-type Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 152/261] platform/x86: asus_wmi: Reserve more space for struct bias_args Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 153/261] libbpf: Fix perf_buffer__free() API for sparse allocs Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 154/261] bpf: Fix map permissions check Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 155/261] bpf: Refactor sockmap redirect code so its easy to reuse Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 156/261] bpf: Fix running sk_skb program types with ktls Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 157/261] selftests/bpf, flow_dissector: Close TAP device FD after the test Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 158/261] kasan: stop tests being eliminated as dead code with FORTIFY_SOURCE Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 159/261] string.h: fix incompatibility between FORTIFY_SOURCE and KASAN Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 160/261] btrfs: free alien device after device add Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 161/261] btrfs: include non-missing as a qualifier for the latest_bdev Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 162/261] btrfs: send: emit file capabilities after chown Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 163/261] btrfs: force chunk allocation if our global rsv is larger than metadata Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 164/261] btrfs: fix error handling when submitting direct I/O bio Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 165/261] btrfs: fix wrong file range cleanup after an error filling dealloc range Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 166/261] btrfs: fix space_info bytes_may_use underflow after nocow buffered write Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 167/261] btrfs: fix space_info bytes_may_use underflow during space cache writeout Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 168/261] powerpc/mm: Fix conditions to perform MMU specific management by blocks on PPC32 Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 169/261] mm: thp: make the THP mapcount atomic against __split_huge_pmd_locked() Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 170/261] mm: initialize deferred pages with interrupts enabled Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 171/261] MIPS: CPU_LOONGSON2EF need software to maintain cache consistency Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 172/261] mm/pagealloc.c: call touch_nmi_watchdog() on max order boundaries in deferred init Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 173/261] mm: call cond_resched() from deferred_init_memmap() Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 174/261] ima: Fix ima digest hash table key calculation Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 175/261] ima: Switch to ima_hash_algo for boot aggregate Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 176/261] ima: Evaluate error in init_ima() Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 177/261] ima: Directly assign the ima_default_policy pointer to ima_rules Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 178/261] ima: Call ima_calc_boot_aggregate() in ima_eventdigest_init() Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 179/261] ima: Remove __init annotation from ima_pcrread() Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 180/261] evm: Fix possible memory leak in evm_calc_hmac_or_hash() Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 181/261] ext4: fix EXT_MAX_EXTENT/INDEX to check for zeroed eh_max Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 182/261] ext4: fix error pointer dereference Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 183/261] ext4: fix race between ext4_sync_parent() and rename() Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 184/261] PCI: Avoid Pericom USB controller OHCI/EHCI PME# defect Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 185/261] PCI: Avoid FLR for AMD Matisse HD Audio & USB 3.0 Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 186/261] PCI: Avoid FLR for AMD Starship " Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 187/261] PCI: Add ACS quirk for Intel Root Complex Integrated Endpoints Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 188/261] PCI: vmd: Add device id for VMD device 8086:9A0B Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 189/261] x86/amd_nb: Add Family 19h PCI IDs Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 190/261] PCI: Add Loongson vendor ID Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 191/261] serial: 8250_pci: Move Pericom IDs to pci_ids.h Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 192/261] x86/amd_nb: Add AMD family 17h model 60h PCI IDs Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 193/261] ima: Remove redundant policy rule set in add_rules() Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 194/261] ima: Set again build_ima_appraise variable Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 195/261] PCI: Program MPS for RCiEP devices Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 196/261] e1000e: Disable TSO for buffer overrun workaround Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 197/261] e1000e: Relax condition to trigger reset for ME workaround Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 198/261] carl9170: remove P2P_GO support Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 199/261] media: go7007: fix a miss of snd_card_free Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 200/261] media: cedrus: Program output format during each run Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 201/261] serial: 8250: Avoid error message on reprobe Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 202/261] Bluetooth: hci_bcm: fix freeing not-requested IRQ Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 203/261] b43legacy: Fix case where channel status is corrupted Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 204/261] b43: Fix connection problem with WPA3 Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 205/261] b43_legacy: " Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 206/261] media: ov5640: fix use of destroyed mutex Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 207/261] clk: mediatek: assign the initial value to clk_init_data of mtk_mux Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 208/261] igb: Report speed and duplex as unknown when device is runtime suspended Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 209/261] hwmon: (k10temp) Add AMD family 17h model 60h PCI match Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 210/261] EDAC/amd64: Add AMD family 17h model 60h PCI IDs Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 211/261] power: vexpress: add suppress_bind_attrs to true Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 212/261] power: supply: core: fix HWMON temperature labels Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 213/261] power: supply: core: fix memory leak in HWMON error path Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 214/261] pinctrl: samsung: Correct setting of eint wakeup mask on s5pv210 Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 215/261] pinctrl: samsung: Save/restore eint_mask over suspend for EINT_TYPE GPIOs Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 216/261] gnss: sirf: fix error return code in sirf_probe() Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 217/261] sparc32: fix register window handling in genregs32_[gs]et() Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 218/261] sparc64: fix misuses of access_process_vm() in genregs32_[sg]et() Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 219/261] dm crypt: avoid truncating the logical block size Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 220/261] alpha: fix memory barriers so that they conform to the specification Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 221/261] powerpc/fadump: use static allocation for reserved memory ranges Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 222/261] powerpc/fadump: consider reserved ranges while reserving memory Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 223/261] powerpc/fadump: Account for memory_limit " Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 224/261] kernel/cpu_pm: Fix uninitted local in cpu_pm Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 225/261] ARM: tegra: Correct PL310 Auxiliary Control Register initialization Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 226/261] soc/tegra: pmc: Select GENERIC_PINCONF Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 227/261] ARM: dts: exynos: Fix GPIO polarity for thr GalaxyS3 CM36651 sensors bus Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 228/261] ARM: dts: at91: sama5d2_ptc_ek: fix vbus pin Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 229/261] ARM: dts: s5pv210: Set keep-power-in-suspend for SDHCI1 on Aries Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 230/261] drivers/macintosh: Fix memleak in windfarm_pm112 driver Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 231/261] powerpc/32s: Fix another build failure with CONFIG_PPC_KUAP_DEBUG Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 232/261] powerpc/kasan: Fix issues by lowering KASAN_SHADOW_END Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 233/261] powerpc/kasan: Fix shadow pages allocation failure Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 234/261] powerpc/32: Disable KASAN with pages bigger than 16k Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 235/261] powerpc/64s: Dont let DT CPU features set FSCR_DSCR Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 236/261] powerpc/64s: Save FSCR to init_task.thread.fscr after feature init Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 237/261] kbuild: force to build vmlinux if CONFIG_MODVERSION=y Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 238/261] sunrpc: svcauth_gss_register_pseudoflavor must reject duplicate registrations Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 239/261] sunrpc: clean up properly in gss_mech_unregister() Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 240/261] mtd: rawnand: Fix nand_gpio_waitrdy() Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 241/261] mtd: rawnand: onfi: Fix redundancy detection check Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 242/261] mtd: rawnand: brcmnand: fix hamming oob layout Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 243/261] mtd: rawnand: diskonchip: Fix the probe error path Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 244/261] mtd: rawnand: sharpsl: " Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 245/261] mtd: rawnand: ingenic: " Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 246/261] mtd: rawnand: xway: " Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 247/261] mtd: rawnand: orion: " Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 248/261] mtd: rawnand: socrates: " Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 249/261] mtd: rawnand: oxnas: " Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 250/261] mtd: rawnand: sunxi: " Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 251/261] mtd: rawnand: plat_nand: " Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 252/261] mtd: rawnand: pasemi: " Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 253/261] mtd: rawnand: mtk: " Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 254/261] mtd: rawnand: tmio: " Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 255/261] w1: omap-hdq: cleanup to add missing newline for some dev_dbg Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 256/261] f2fs: fix checkpoint=disable:%u%% Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 257/261] perf probe: Do not show the skipped events Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 258/261] perf probe: Fix to check blacklist address correctly Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 259/261] perf probe: Check address correctness by map instead of _etext Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 260/261] perf symbols: Fix debuginfo search for Ubuntu Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 261/261] perf symbols: Fix kernel maps for kcore and eBPF Greg Kroah-Hartman
2020-06-19 16:01 ` [PATCH 5.4 000/261] 5.4.48-rc1 review Guenter Roeck
2020-06-20 8:00 ` Greg Kroah-Hartman
2020-06-20 8:27 ` Greg Kroah-Hartman
2020-06-19 21:54 ` Daniel Díaz
2020-06-19 23:49 ` Guenter Roeck
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=20200619141652.747583591@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=bingbu.cao@intel.com \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mchehab+huawei@kernel.org \
--cc=rajmohan.mani@intel.com \
--cc=sakari.ailus@linux.intel.com \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).