linux-kernel.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, Jiaran Zhang <zhangjiaran@huawei.com>,
	Weihang Li <liweihang@huawei.com>,
	Jason Gunthorpe <jgg@nvidia.com>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.9 465/757] RDMA/hns: Add check for the validity of sl configuration
Date: Tue, 27 Oct 2020 14:51:55 +0100	[thread overview]
Message-ID: <20201027135512.328587438@linuxfoundation.org> (raw)
In-Reply-To: <20201027135450.497324313@linuxfoundation.org>

From: Jiaran Zhang <zhangjiaran@huawei.com>

[ Upstream commit 172505cfa3a8ee98acaa569fd3be97697b333958 ]

According to the RoCE v1 specification, the sl (service level) 0-7 are
mapped directly to priorities 0-7 respectively, sl 8-15 are reserved. The
driver should verify whether the the value of sl is larger than 7, if so,
an exception should be returned.

Fixes: 926a01dc000d ("RDMA/hns: Add QP operations support for hip08 SoC")
Link: https://lore.kernel.org/r/1600509802-44382-5-git-send-email-liweihang@huawei.com
Signed-off-by: Jiaran Zhang <zhangjiaran@huawei.com>
Signed-off-by: Weihang Li <liweihang@huawei.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/infiniband/hw/hns/hns_roce_hw_v2.c | 12 ++++++++++--
 drivers/infiniband/hw/hns/hns_roce_hw_v2.h |  2 ++
 2 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
index 4cda95ed1fbe2..59087d5811ba3 100644
--- a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
+++ b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
@@ -4259,11 +4259,19 @@ static int hns_roce_v2_set_path(struct ib_qp *ibqp,
 		       V2_QPC_BYTE_28_FL_S, 0);
 	memcpy(context->dgid, grh->dgid.raw, sizeof(grh->dgid.raw));
 	memset(qpc_mask->dgid, 0, sizeof(grh->dgid.raw));
+
+	hr_qp->sl = rdma_ah_get_sl(&attr->ah_attr);
+	if (unlikely(hr_qp->sl > MAX_SERVICE_LEVEL)) {
+		ibdev_err(ibdev,
+			  "failed to fill QPC, sl (%d) shouldn't be larger than %d.\n",
+			  hr_qp->sl, MAX_SERVICE_LEVEL);
+		return -EINVAL;
+	}
+
 	roce_set_field(context->byte_28_at_fl, V2_QPC_BYTE_28_SL_M,
-		       V2_QPC_BYTE_28_SL_S, rdma_ah_get_sl(&attr->ah_attr));
+		       V2_QPC_BYTE_28_SL_S, hr_qp->sl);
 	roce_set_field(qpc_mask->byte_28_at_fl, V2_QPC_BYTE_28_SL_M,
 		       V2_QPC_BYTE_28_SL_S, 0);
-	hr_qp->sl = rdma_ah_get_sl(&attr->ah_attr);
 
 	return 0;
 }
diff --git a/drivers/infiniband/hw/hns/hns_roce_hw_v2.h b/drivers/infiniband/hw/hns/hns_roce_hw_v2.h
index ac29be43b6bd5..17f35f91f4ad2 100644
--- a/drivers/infiniband/hw/hns/hns_roce_hw_v2.h
+++ b/drivers/infiniband/hw/hns/hns_roce_hw_v2.h
@@ -1941,6 +1941,8 @@ struct hns_roce_eq_context {
 #define HNS_ROCE_V2_AEQE_EVENT_QUEUE_NUM_S 0
 #define HNS_ROCE_V2_AEQE_EVENT_QUEUE_NUM_M GENMASK(23, 0)
 
+#define MAX_SERVICE_LEVEL 0x7
+
 struct hns_roce_wqe_atomic_seg {
 	__le64          fetchadd_swap_data;
 	__le64          cmp_data;
-- 
2.25.1




  parent reply	other threads:[~2020-10-27 16:01 UTC|newest]

Thread overview: 770+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-27 13:44 [PATCH 5.9 000/757] 5.9.2-rc1 review Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 001/757] ibmveth: Switch order of ibmveth_helper calls Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 002/757] ibmveth: Identify ingress large send packets Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 003/757] cxgb4: handle 4-tuple PEDIT to NAT mode translation Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 004/757] ipv4: Restore flowi4_oif update before call to xfrm_lookup_route Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 005/757] mlx4: handle non-napi callers to napi_poll Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 006/757] mptcp: fix fallback for MP_JOIN subflows Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 007/757] mptcp: subflows garbage collection Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 008/757] net: dsa: microchip: fix race condition Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 009/757] net: fec: Fix phy_device lookup for phy_reset_after_clk_enable() Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 010/757] net: fec: Fix PHY init after phy_reset_after_clk_enable() Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 011/757] net: fix pos incrementment in ipv6_route_seq_next Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 012/757] net: ipa: skip suspend/resume activities if not set up Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 013/757] net: mptcp: make DACK4/DACK8 usage consistent among all subflows Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 014/757] net: sched: Fix suspicious RCU usage while accessing tcf_tunnel_info Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 015/757] net/smc: fix use-after-free of delayed events Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 016/757] net/smc: fix valid DMBE buffer sizes Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 017/757] net/tls: sendfile fails with ktls offload Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 018/757] tipc: fix NULL pointer dereference in tipc_named_rcv Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 019/757] tipc: fix the skb_unshare() in tipc_buf_append() Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 020/757] socket: fix option SO_TIMESTAMPING_NEW Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 021/757] socket: dont clear SOCK_TSTAMP_NEW when SO_TIMESTAMPNS is disabled Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 022/757] can: m_can_platform: dont call m_can_class_suspend in runtime suspend Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 023/757] can: j1935: j1939_tp_tx_dat_new(): fix missing initialization of skbcnt Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 024/757] net: j1939: j1939_session_fresh_new(): " Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 025/757] binder: fix UAF when releasing todo list Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 026/757] ALSA: bebob: potential info leak in hwdep_read() Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 027/757] ALSA: hda: fix jack detection with Realtek codecs when in D3 Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 028/757] ALSA: hda/hdmi: fix incorrect locking in hdmi_pcm_close Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 029/757] tipc: re-configure queue limit for broadcast link Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 030/757] tipc: fix incorrect setting window for bcast link Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 031/757] chelsio/chtls: fix socket lock Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 032/757] chelsio/chtls: correct netdevice for vlan interface Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 033/757] chelsio/chtls: fix panic when server is on ipv6 Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 034/757] chelsio/chtls: Fix panic when listen on multiadapter Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 035/757] chelsio/chtls: correct function return and return type Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 036/757] chelsio/chtls: fix writing freed memory Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 037/757] ibmvnic: save changed mac address to adapter->mac_addr Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 038/757] icmp: randomize the global rate limiter Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 039/757] mptcp: initialize mptcp_options_receiveds ahmac Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 040/757] net: ftgmac100: Fix Aspeed ast2600 TX hang issue Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 041/757] net: hdlc: In hdlc_rcv, check to make sure dev is an HDLC device Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 042/757] net: hdlc_raw_eth: Clear the IFF_TX_SKB_SHARING flag after calling ether_setup Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 043/757] net: Properly typecast int values to set sk_max_pacing_rate Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 044/757] net/sched: act_ct: Fix adding udp port mangle operation Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 045/757] net/sched: act_tunnel_key: fix OOB write in case of IPv6 ERSPAN tunnels Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 046/757] netsec: ignore phy-mode device property on ACPI systems Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 047/757] nexthop: Fix performance regression in nexthop deletion Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 048/757] nfc: Ensure presence of NFC_ATTR_FIRMWARE_NAME attribute in nfc_genl_fw_download() Greg Kroah-Hartman
2020-10-27 13:44 ` [PATCH 5.9 049/757] r8169: fix operation under forced interrupt threading Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 050/757] selftests: forwarding: Add missing rp_filter configuration Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 051/757] selftests: rtnetlink: load fou module for kci_test_encap_fou() test Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 052/757] tcp: fix to update snd_wl1 in bulk receiver fast path Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 053/757] net: ethernet: mtk-star-emac: select REGMAP_MMIO Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 054/757] net/sched: act_gate: Unlock ->tcfa_lock in tc_setup_flow_action() Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 055/757] ixgbe: fix probing of multi-port devices with one MDIO Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 056/757] mptcp: MPTCP_KUNIT_TESTS should depend on MPTCP instead of selecting it Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 057/757] net: openvswitch: fix to make sure flow_lookup() is not preempted Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 058/757] sfc: move initialisation of efx->filter_sem to efx_init_struct() Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 059/757] ALSA: hda - Dont register a cb func if it is registered already Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 060/757] ALSA: hda - Fix the return value if cb func is already registered Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 061/757] ALSA: usb-audio: Line6 Pod Go interface requires static clock rate quirk Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 062/757] ALSA: hda/realtek - The front Mic on a HP machine doesnt work Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 063/757] ALSA: hda/realtek - set mic to auto detect on a HP AIO machine Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 064/757] ALSA: hda/realtek - Add mute Led support for HP Elitebook 845 G7 Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 065/757] ALSA: hda/realtek: Enable audio jacks of ASUS D700SA with ALC887 Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 066/757] cifs: remove bogus debug code Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 067/757] cifs: Return the error from crypt_message when enc/dec key not found Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 068/757] SMB3: Resolve data corruption of TCP server info fields Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 069/757] SMB3.1.1: Fix ids returned in POSIX query dir Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 070/757] smb3: do not try to cache root directory if dir leases not supported Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 071/757] smb3: fix stat when special device file and mounted with modefromsid Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 072/757] arm64: Make use of ARCH_WORKAROUND_1 even when KVM is not enabled Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 073/757] KVM: nVMX: Morph notification vector IRQ on nested VM-Enter to pending PI Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 074/757] KVM: nVMX: Reset the segment cache when stuffing guest segs Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 075/757] KVM: nVMX: Reload vmcs01 if getting vmcs12s pages fails Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 076/757] KVM: x86/mmu: Commit zap of remaining invalid pages when recovering lpages Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 077/757] KVM: x86: Intercept LA57 to inject #GP fault when its reserved Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 078/757] KVM: SVM: Initialize prev_ga_tag before use Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 079/757] ima: Dont ignore errors from crypto_shash_update() Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 080/757] crypto: caam - add xts check for block length equal to zero Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 081/757] crypto: algif_aead - Do not set MAY_BACKLOG on the async path Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 082/757] crypto: caam/qi - add fallback for XTS with more than 8B IV Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 083/757] crypto: caam/qi - add support for more XTS key lengths Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 084/757] crypto: caam/jr - add fallback for XTS with more than 8B IV Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 085/757] crypto: caam/jr - add support for more XTS key lengths Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 086/757] crypto: caam/qi2 - add fallback for XTS with more than 8B IV Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 087/757] crypto: caam/qi2 - add support for more XTS key lengths Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 088/757] RAS/CEC: Fix cec_init() prototype Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 089/757] sched/fair: Fix wrong negative conversion in find_energy_efficient_cpu() Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 090/757] microblaze: fix kbuild redundant file warning Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 091/757] EDAC/i5100: Fix error handling order in i5100_init_one() Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 092/757] EDAC/aspeed: Fix handling of platform_get_irq() error Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 093/757] EDAC/ti: " Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 094/757] perf/x86/intel/ds: Fix x86_pmu_stop warning for large PEBS Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 095/757] x86/fpu: Allow multiple bits in clearcpuid= parameter Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 096/757] irqchip/ti-sci-inta: Fix unsigned comparison to zero Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 097/757] irqchip/ti-sci-intr: " Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 098/757] arm64: kprobe: add checks for ARMv8.3-PAuth combined instructions Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 099/757] seqlock: Unbreak lockdep Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 100/757] drivers/perf: xgene_pmu: Fix uninitialized resource struct Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 101/757] drivers/perf: thunderx2_pmu: Fix memory resource error handling Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 102/757] sched/fair: Fix wrong cpu selecting from isolated domain Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 103/757] sched/fair: Use dst group while checking imbalance for NUMA balancer Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 104/757] arm64: perf: Add missing ISB in armv8pmu_enable_counter() Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 105/757] perf/x86/intel/uncore: Update Ice Lake uncore units Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 106/757] perf/x86/intel/uncore: Reduce the number of CBOX counters Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 107/757] perf/x86/intel/uncore: Fix for iio mapping on Skylake Server Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 108/757] perf/x86/intel/uncore: Fix the scale of the IMC free-running events Greg Kroah-Hartman
2020-10-27 13:45 ` [PATCH 5.9 109/757] x86/nmi: Fix nmi_handle() duration miscalculation Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 110/757] x86/events/amd/iommu: Fix sizeof mismatch Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 111/757] pinctrl: qcom: Set IRQCHIP_SET_TYPE_MASKED and IRQCHIP_MASK_ON_SUSPEND flags Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 112/757] pinctrl: qcom: Use return value from irq_set_wake() call Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 113/757] perf/x86: Fix n_pair for cancelled txn Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 114/757] lockdep: Fix usage_traceoverflow Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 115/757] lockdep: Fix lockdep recursion Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 116/757] lockdep: Revert "lockdep: Use raw_cpu_*() for per-cpu variables" Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 117/757] perf/core: Fix race in the perf_mmap_close() function Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 118/757] regulator: set of_node for qcom vbus regulator Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 119/757] crypto: algif_skcipher - EBUSY on aio should be an error Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 120/757] crypto: mediatek - Fix wrong return value in mtk_desc_ring_alloc() Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 121/757] crypto: ixp4xx - Fix the size used in a dma_free_coherent() call Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 122/757] crypto: picoxcell - Fix potential race condition bug Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 123/757] media: vivid: Fix global-out-of-bounds read in precalculate_color() Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 124/757] media: tuner-simple: fix regression in simple_set_radio_freq Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 125/757] crypto: ccree - fix runtime PM imbalance on error Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 126/757] media: Revert "media: exynos4-is: Add missed check for pinctrl_lookup_state()" Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 127/757] media: hantro: h264: Get the correct fallback reference buffer Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 128/757] media: hantro: postproc: Fix motion vector space allocation Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 129/757] media: ov5640: Correct Bit Div register in clock tree diagram Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 130/757] media: i2c: fix error check on max9286_read call Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 131/757] media: m5mols: Check function pointer in m5mols_sensor_power Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 132/757] fscrypt: restrict IV_INO_LBLK_32 to ino_bits <= 32 Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 133/757] media: uvcvideo: Set media controller entity functions Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 134/757] media: uvcvideo: Silence shift-out-of-bounds warning Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 135/757] media: staging/intel-ipu3: css: Correctly reset some memory Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 136/757] media: omap3isp: Fix memleak in isp_probe Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 137/757] media: i2c: ov5640: Remain in power down for DVP mode unless streaming Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 138/757] media: i2c: ov5640: Separate out mipi configuration from s_power Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 139/757] media: i2c: ov5640: Enable data pins on poweron for DVP mode Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 140/757] media: rcar_drif: Fix fwnode reference leak when parsing DT Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 141/757] media: rcar_drif: Allocate v4l2_async_subdev dynamically Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 142/757] media: rcar-csi2: " Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 143/757] media: i2c: max9286: " Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 144/757] crypto: sa2ul - fix compiler warning produced by clang Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 145/757] spi: fsi: Handle 9 to 15 byte transfers lengths Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 146/757] spi: fsi: Fix use of the bneq+ sequencer instruction Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 147/757] spi: fsi: Implement restricted size for certain controllers Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 148/757] spi: dw-pci: free previously allocated IRQs if desc->setup() fails Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 149/757] crypto: sa2ul - Select CRYPTO_AUTHENC Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 150/757] crypto: omap-sham - fix digcnt register handling with export/import Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 151/757] crypto: sa2ul - Fix pm_runtime_get_sync() error checking Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 152/757] selftests/seccomp: Use __NR_mknodat instead of __NR_mknod Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 153/757] selftests/seccomp: Refactor arch register macros to avoid xtensa special case Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 154/757] selftests/seccomp: powerpc: Fix seccomp return value testing Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 155/757] regmap: debugfs: Fix more error path regressions Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 156/757] hwmon: (pmbus/max34440) Fix status register reads for MAX344{51,60,61} Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 157/757] hwmon: (w83627ehf) Fix a resource leak in probe Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 158/757] cypto: mediatek - fix leaks in mtk_desc_ring_alloc Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 159/757] crypto: stm32/crc32 - Avoid lock if hardware is already used Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 160/757] crypto: sun8i-ce - handle endianness of t_common_ctl Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 161/757] media: mx2_emmaprp: Fix memleak in emmaprp_probe Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 162/757] media: mtk-mdp: Fix Null pointer dereference when calling list_add Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 163/757] media: tc358743: initialize variable Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 164/757] media: tc358743: cleanup tc358743_cec_isr Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 165/757] nvme: fix error handling in nvme_ns_report_zones Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 166/757] media: rcar-vin: Fix a reference count leak Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 167/757] media: rockchip/rga: " Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 168/757] media: platform: fcp: " Greg Kroah-Hartman
2020-10-27 13:46 ` [PATCH 5.9 169/757] media: camss: " Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 170/757] media: s5p-mfc: " Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 171/757] media: stm32-dcmi: " Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 172/757] media: ti-vpe: Fix a missing check and " Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 173/757] regulator: resolve supply after creating regulator Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 174/757] pinctrl: bcm: fix kconfig dependency warning when !GPIOLIB Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 175/757] spi: spi-s3c64xx: swap s3c64xx_spi_set_cs() and s3c64xx_enable_datapath() Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 176/757] spi: spi-s3c64xx: Check return values Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 177/757] hwmon: (bt1-pvt) Test sensor power supply on probe Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 178/757] hwmon: (bt1-pvt) Cache current update timeout Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 179/757] hwmon: (bt1-pvt) Wait for the completion with timeout Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 180/757] spi: imx: Fix freeing of DMA channels if spi_bitbang_start() fails Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 181/757] btrfs: add owner and fs_info to alloc_state io_tree Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 182/757] blk-mq: move cancel of hctx->run_work to the front of blk_exit_queue Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 183/757] ath10k: provide survey info as accumulated data Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 184/757] drm/vkms: fix xrgb on compute crc Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 185/757] Bluetooth: hci_uart: Cancel init work before unregistering Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 186/757] drm/amd/display: Fix wrong return value in dm_update_plane_state() Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 187/757] drm/vgem: add missing platform_device_unregister() in vgem_init() Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 188/757] drm/vkms: add missing platform_device_unregister() in vkms_init() Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 189/757] drm: panel: Fix bus format for OrtusTech COM43H4M85ULC panel Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 190/757] ath6kl: prevent potential array overflow in ath6kl_add_new_sta() Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 191/757] ath9k: Fix potential out of bounds in ath9k_htc_txcompletion_cb() Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 192/757] ath10k: Fix the size used in a dma_free_coherent() call in an error handling path Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 193/757] wcn36xx: Fix reported 802.11n rx_highest rate wcn3660/wcn3680 Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 194/757] ASoC: qcom: lpass-platform: fix memory leak Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 195/757] ASoC: qcom: lpass-cpu: fix concurrency issue Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 196/757] ath11k: Fix possible memleak in ath11k_qmi_init_service Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 197/757] brcmfmac: check ndev pointer Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 198/757] mwifiex: Do not use GFP_KERNEL in atomic context Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 199/757] drm/malidp: Use struct drm_gem_object_funcs.get_sg_table internally Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 200/757] staging: rtl8192u: Do not use GFP_KERNEL in atomic context Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 201/757] drm/amd/display: fix potential integer overflow when shifting 32 bit variable bl_pwm Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 202/757] selftests/bpf: Fix test_vmlinux test to use bpf_probe_read_user() Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 203/757] drm/gma500: fix error check Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 204/757] scsi: qla4xxx: Fix an error handling path in qla4xxx_get_host_stats() Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 205/757] scsi: qla2xxx: Fix the size used in a dma_free_coherent() call Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 206/757] scsi: qla2xxx: Fix wrong return value in qlt_chk_unresolv_exchg() Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 207/757] scsi: qla2xxx: Fix wrong return value in qla_nvme_register_hba() Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 208/757] scsi: csiostor: Fix wrong return value in csio_hw_prep_fw() Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 209/757] libbpf: Fix unintentional success return code in bpf_object__load Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 210/757] wilc1000: Fix memleak in wilc_sdio_probe Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 211/757] wilc1000: Fix memleak in wilc_bus_probe Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 212/757] rtw88: dont treat NULL pointer as an array Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 213/757] selftests/livepatch: Do not check order when using "comm" for dmesg checking Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 214/757] backlight: sky81452-backlight: Fix refcount imbalance on error Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 215/757] staging: wfx: fix frame reordering Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 216/757] staging: emxx_udc: Fix passing of NULL to dma_alloc_coherent() Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 217/757] VMCI: check return value of get_user_pages_fast() for errors Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 218/757] mm/error_inject: Fix allow_error_inject function signatures Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 219/757] drm: panel: Fix bpc for OrtusTech COM43H4M85ULC panel Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 220/757] samples/bpf: Fix to xdpsock to avoid recycling frames Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 221/757] ima: Pre-parse the list of keyrings in a KEY_CHECK rule Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 222/757] ima: Fail rule parsing when asymmetric key measurement isnt supportable Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 223/757] drm/crc-debugfs: Fix memleak in crc_control_write Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 224/757] Bluetooth: Clear suspend tasks on unregister Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 225/757] selftests: vm: add fragment CONFIG_GUP_BENCHMARK Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 226/757] scsi: ufs: Make ufshcd_print_trs() consider UFSHCD_QUIRK_PRDT_BYTE_GRAN Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 227/757] binder: Remove bogus warning on failed same-process transaction Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 228/757] drm/amdgpu: fix max_entries calculation v4 Greg Kroah-Hartman
2020-10-27 13:47 ` [PATCH 5.9 229/757] soundwire: stream: fix NULL/IS_ERR confusion Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 230/757] soundwire: intel: fix NULL/ERR_PTR confusion Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 231/757] tty: serial: earlycon dependency Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 232/757] tty: hvcs: Dont NULL tty->driver_data until hvcs_cleanup() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 233/757] pty: do tty_flip_buffer_push without port->lock in pty_write Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 234/757] pwm: lpss: Fix off by one error in base_unit math in pwm_lpss_prepare() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 235/757] pwm: lpss: Add range limit check for the base_unit register value Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 236/757] drivers/virt/fsl_hypervisor: Fix error handling path Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 237/757] sfc: dont double-down() filters in ef100_reset() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 238/757] ath11k: fix a double free and a memory leak Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 239/757] video: fbdev: vga16fb: fix setting of pixclock because a pass-by-value error Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 240/757] video: fbdev: sis: fix null ptr dereference Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 241/757] video: fbdev: radeon: Fix memleak in radeonfb_pci_register Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 242/757] ASoC: fsl: imx-es8328: add missing put_device() call in imx_es8328_probe() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 243/757] scsi: ufs: ufs-mediatek: Eliminate error message for unbound mphy Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 244/757] scsi: ufs: ufs-mediatek: Fix HOST_PA_TACTIVATE quirk Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 245/757] HID: roccat: add bounds checking in kone_sysfs_write_settings() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 246/757] ath11k: fix uninitialized return in ath11k_spectral_process_data() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 247/757] drm/msm: Avoid div-by-zero in dpu_crtc_atomic_check() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 248/757] drm/panfrost: Ensure GPU quirks are always initialised Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 249/757] iomap: Clear page error before beginning a write Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 250/757] iomap: Mark read blocks uptodate in write_begin Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 251/757] selftests/lkdtm: Use "comm" instead of "diff" for dmesg Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 252/757] Bluetooth: Fix memory leak in read_adv_mon_features() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 253/757] Bluetooth: Re-order clearing suspend tasks Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 254/757] pinctrl: mcp23s08: Fix mcp23x17_regmap initialiser Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 255/757] pinctrl: mcp23s08: Fix mcp23x17 precious range Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 256/757] pinctrl: devicetree: Keep deferring even on timeout Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 257/757] drm/msm/adreno: fix probe without iommu Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 258/757] s390/bpf: Fix multiple tail calls Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 259/757] net/mlx5: Fix uninitialized variable warning Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 260/757] net/mlx5: Dont call timecounter cyc2time directly from 1PPS flow Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 261/757] scsi: mpt3sas: Fix sync irqs Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 262/757] net: stmmac: Fix incorrect location to set real_num_rx|tx_queues Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 263/757] net: stmmac: use netif_tx_start|stop_all_queues() function Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 264/757] xfs: force the log after remapping a synchronous-writes file Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 265/757] cpufreq: armada-37xx: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 266/757] drm: mxsfb: check framebuffer pitch Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 267/757] cpufreq: qcom: Dont add frequencies without an OPP Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 268/757] ima: Fix NULL pointer dereference in ima_file_hash Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 269/757] ASoC: topology: disable size checks for bytes_ext controls if needed Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 270/757] ASoC: tlv320adcx140: Fix digital gain range Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 271/757] coresight: etm4x: Fix etm4_count race by moving cpuhp callbacks to init Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 272/757] coresight: fix offset by one error in counting ports Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 273/757] coresight: cti: disclaim device only when its claimed Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 274/757] coresight: cti: remove pm_runtime_get_sync() from CPU hotplug Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 275/757] coresight: etm4x: Ensure default perf settings filter user/kernel Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 276/757] coresight: etm4x: Fix issues within reset interface of sysfs Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 277/757] coresight: cti: Write regsiters directly in cti_enable_hw() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 278/757] coresight: etm4x: Handle unreachable sink in perf mode Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 279/757] coresight: etm4x: Fix issues on trcseqevr access Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 280/757] nvmem: core: fix missing of_node_put() in of_nvmem_device_get() Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 281/757] selftests: mptcp: interpret \n as a new line Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 282/757] dmaengine: ti: k3-udma-glue: fix channel enable functions Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 283/757] selftests/bpf: Fix endianness issue in sk_assign Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 284/757] selftests/bpf: Fix endianness issue in test_sockopt_sk Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 285/757] Bluetooth: Fix auto-creation of hci_conn at Conn Complete event Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 286/757] xhci: dont create endpoint debugfs entry before ring buffer is set Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 287/757] drm/msm: Fix the a650 hw_apriv check Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 288/757] net: dsa: rtl8366: Check validity of passed VLANs Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.9 289/757] net: dsa: rtl8366: Refactor VLAN/PVID init Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 290/757] net: dsa: rtl8366: Skip PVID setting if not requested Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 291/757] net: wilc1000: clean up resource in error path of init mon interface Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 292/757] ASoC: tas2770: Fix calling reset in probe Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 293/757] ASoC: tas2770: Add missing bias level power states Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 294/757] ASoC: tas2770: Fix required DT properties in the code Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 295/757] ASoC: tas2770: Fix error handling with update_bits Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 296/757] ASoC: tlv320aic32x4: Fix bdiv clock rate derivation Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 297/757] net: dsa: rtl8366rb: Support all 4096 VLANs Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 298/757] ASoC: SOF: control: add size checks for ext_bytes control .put() Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 299/757] ASoC: tas2770: Fix unbalanced calls to pm_runtime Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 300/757] spi: omap2-mcspi: Improve performance waiting for CHSTAT Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 301/757] ath11k: Add checked value for ath11k_ahb_remove Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 302/757] ath6kl: wmi: prevent a shift wrapping bug in ath6kl_wmi_delete_pstream_cmd() Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 303/757] drm: rcar-du: Put reference to VSP device Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 304/757] phy: rockchip-dphy-rx0: Include linux/delay.h Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 305/757] dmaengine: dmatest: Check list for emptiness before access its last entry Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 306/757] ASoC: cros_ec_codec: fix kconfig dependency warning for SND_SOC_CROS_EC_CODEC Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 307/757] misc: mic: scif: Fix error handling path Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 308/757] ALSA: seq: oss: Avoid mutex lock for a long-time ioctl Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 309/757] net/mlx5e: IPsec: Use kvfree() for memory allocated with kvzalloc() Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 310/757] usb: dwc2: Fix parameter type in function pointer prototype Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 311/757] usb: dwc3: core: Properly default unspecified speed Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 312/757] usb: dwc2: Add missing cleanups when usb_add_gadget_udc() fails Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 313/757] rtw88: Fix probe error handling race with firmware loading Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 314/757] rtw88: Fix potential probe error handling race with wow " Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 315/757] mt76: mt7615: hold mt76 lock queueing wd in mt7615_queue_key_update Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 316/757] mt76: mt7615: release mutex in mt7615_reset_test_set Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 317/757] mt76: mt7663s: fix resume failure Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 318/757] mt76: mt7615: fix possible memory leak in mt7615_tm_set_tx_power Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 319/757] mt76: mt7615: fix a possible NULL pointer dereference in mt7615_pm_wake_work Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 320/757] mt76: fix a possible NULL pointer dereference in mt76_testmode_dump Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 321/757] mt76: mt7663u: fix dma header initialization Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 322/757] mt76: mt7615: move drv_own/fw_own in mt7615_mcu_ops Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 323/757] mt76: mt7622: fix fw hang on mt7622 Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 324/757] mt76: mt7915: fix possible memory leak in mt7915_mcu_add_beacon Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 325/757] quota: clear padding in v2r1_mem2diskdqb() Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 326/757] slimbus: core: check get_addr before removing laddr ida Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 327/757] slimbus: core: do not enter to clock pause mode in core Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 328/757] slimbus: qcom-ngd-ctrl: disable ngd in qmi server down callback Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 329/757] drm/vc4: crtc: Rework a bit the CRTC state code Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 330/757] ASoC: fsl_sai: Instantiate snd_soc_dai_driver Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 331/757] HID: hid-input: fix stylus battery reporting Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 332/757] tty: hvc: fix link error with CONFIG_SERIAL_CORE_CONSOLE=n Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 333/757] tty: serial: imx: " Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 334/757] nvmem: core: fix possibly memleak when use nvmem_cell_info_to_nvmem_cell() Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 335/757] hv: clocksource: Add notrace attribute to read_hv_sched_clock_*() functions Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 336/757] nl80211: fix OBSS PD min and max offset validation Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 337/757] iomap: Use kzalloc to allocate iomap_page Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 338/757] coresight: etm: perf: Fix warning caused by etm_setup_aux failure Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 339/757] coresight: cti: Fix remove sysfs link error Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 340/757] coresight: cti: Fix bug clearing sysfs links on callback Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 341/757] coresight: etm4x: Fix save and restore of TRCVMIDCCTLR1 register Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 342/757] ibmvnic: set up 200GBPS speed Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 343/757] bpf: disallow attaching modify_return tracing functions to other BPF programs Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 344/757] selftests: Remove fmod_ret from test_overhead Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 345/757] qtnfmac: fix resource leaks on unsupported iftype error return path Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 346/757] pinctrl: aspeed: Use the right pinconf mask Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 347/757] iommu/qcom: add missing put_device() call in qcom_iommu_of_xlate() Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 348/757] iio: adc: stm32-adc: fix runtime autosuspend delay when slow polling Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.9 349/757] net: enic: Cure the enic api locking trainwreck Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 350/757] selftests/bpf: Fix endianness issues in sk_lookup/ctx_narrow_access Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 351/757] pinctrl: tigerlake: Fix register offsets for TGL-H variant Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 352/757] serial: 8250: Discard RTS/DTS setting from clock update method Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 353/757] serial: 8250: Skip uninitialized TTY port baud rate update Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 354/757] serial: 8250_dw: Fix clk-notifier/port suspend deadlock Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 355/757] mfd: syscon: Dont free allocated name for regmap_config Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 356/757] mfd: sm501: Fix leaks in probe() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 357/757] dm: fix missing imposition of queue_limits from dm_wq_work() thread Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 358/757] pinctrl: single: fix pinctrl_spec.args_count bounds check Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 359/757] pinctrl: single: fix debug output when #pinctrl-cells = 2 Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 360/757] staging: rtl8712: Fix enqueue_reorder_recvframe() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 361/757] ASoC: wm_adsp: Pass full name to snd_ctl_notify Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 362/757] iwlwifi: mvm: split a print to avoid a WARNING in ROC Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 363/757] iwlwifi: dbg: remove no filter condition Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 364/757] iwlwifi: dbg: run init_cfg function once per driver load Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 365/757] usb: gadget: f_ncm: fix ncm_bitrate for SuperSpeed and above Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 366/757] usb: gadget: u_serial: clear suspended flag when disconnecting Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 367/757] usb: gadget: u_ether: enable qmult on SuperSpeed Plus as well Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 368/757] bus: mhi: core: Fix the building of MHI module Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 369/757] ocxl: fix kconfig dependency warning for OCXL Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 370/757] nl80211: fix non-split wiphy information Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 371/757] usb: dwc2: Fix INTR OUT transfers in DDMA mode Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 372/757] scsi: target: tcmu: Fix warning: page may be used uninitialized Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 373/757] scsi: be2iscsi: Fix a theoretical leak in beiscsi_create_eqs() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 374/757] dmaengine: ioat: Allocate correct size for descriptor chunk Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 375/757] staging: qlge: fix build breakage with dumping enabled Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 376/757] ipmi_si: Fix wrong return value in try_smi_init() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 377/757] tracing: Fix parse_synth_field() error handling Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 378/757] ASoC: mediatek: mt8183-da7219: fix wrong ops for I2S3 Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 379/757] staging: wfx: fix BA sessions for older firmwares Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 380/757] platform/x86: mlx-platform: Remove PSU EEPROM configuration Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 381/757] dm: fix request-based DM to not bounce through indirect dm_submit_bio Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 382/757] mwifiex: fix double free Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 383/757] drm/panfrost: increase readl_relaxed_poll_timeout values Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 384/757] drm/amdgpu: Fix invalid number of character { in amdgpu_acpi_init Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 385/757] ipvs: clear skb->tstamp in forwarding path Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 386/757] bpf, sockmap: Remove skb_orphan and let normal skb_kfree do cleanup Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 387/757] net: korina: fix kfree of rx/tx descriptor array Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 388/757] netfilter: nf_log: missing vlan offload tag and proto Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 389/757] mm/swapfile.c: fix potential memory leak in sys_swapon Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 390/757] mm: memcg/slab: fix racy access to page->mem_cgroup in mem_cgroup_from_obj() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 391/757] mm/memcg: fix device private memcg accounting Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 392/757] mm/mmap.c: replace do_brk with do_brk_flags in comment of insert_vm_struct() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 393/757] mm/page_alloc.c: fix freeing non-compound pages Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 394/757] mm, oom_adj: dont loop through tasks in __set_oom_adj when not necessary Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 395/757] fs: fix NULL dereference due to data race in prepend_path() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 396/757] selftests/ftrace: Change synthetic event name for inter-event-combined test Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 397/757] tracing: Handle synthetic event array field type checking correctly Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 398/757] i3c: master add i3c_master_attach_boardinfo to preserve boardinfo Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 399/757] IB/mlx4: Fix starvation in paravirt mux/demux Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 400/757] IB/mlx4: Adjust delayed work when a dup is observed Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 401/757] powerpc/pseries: Fix missing of_node_put() in rng_init() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 402/757] powerpc/icp-hv: Fix missing of_node_put() in success path Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 403/757] rcu/tree: Force quiescent state on callback overload Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 404/757] rcutorture: Properly set rcu_fwds for OOM handling Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 405/757] refperf: Avoid null pointer dereference when buf fails to allocate Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 406/757] RDMA/ucma: Fix locking for ctx->events_reported Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 407/757] RDMA/ucma: Add missing locking around rdma_leave_multicast() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 408/757] mtd: lpddr: fix excessive stack usage with clang Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.9 409/757] RDMA/hns: Add a check for current state before modifying QP Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 410/757] RDMA/umem: Fix signature of stub ib_umem_find_best_pgsz() Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 411/757] powerpc/pseries: explicitly reschedule during drmem_lmb list traversal Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 412/757] pseries/drmem: dont cache node id in drmem_lmb struct Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 413/757] RDMA/mlx5: Fix potential race between destroy and CQE poll Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 414/757] mtd: mtdoops: Dont write panic data twice Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 415/757] selftests/powerpc: Fix prefixes in alignment_handler signal handler Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 416/757] perf tools: Make GTK2 support opt-in Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 417/757] tools feature: Add missing -lzstd to the fast path feature detection Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 418/757] ARM: 9007/1: l2c: fix prefetch bits init in L2X0_AUX_CTRL using DT values Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 419/757] xfs: fix finobt btree block recovery ordering Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 420/757] m68knommu: include SDHC support only when hardware has it Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 421/757] arc: plat-hsdk: fix kconfig dependency warning when !RESET_CONTROLLER Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 422/757] ida: Free allocated bitmap in error path Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 423/757] xfs: limit entries returned when counting fsmap records Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 424/757] xfs: fix deadlock and streamline xfs_getfsmap performance Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 425/757] nfs: add missing "posix" local_lock constant table definition Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 426/757] xfs: fix high key handling in the rt allocators query_range function Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 427/757] RDMA/rtrs-srv: Incorporate ib_register_client into rtrs server init Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 428/757] RDMA/core: Delete function indirection for alloc/free kernel CQ Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 429/757] RDMA: Allow fail of destroy CQ Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 430/757] RDMA: Change XRCD destroy return value Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 431/757] RDMA: Restore ability to return error for destroy WQ Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 432/757] RDMA/umem: Fix ib_umem_find_best_pgsz() for mappings that cross a page boundary Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 433/757] RDMA/umem: Prevent small pages from being returned by ib_umem_find_best_pgsz() Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 434/757] RDMA/qedr: Fix qp structure memory leak Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 435/757] RDMA/qedr: Fix doorbell setting Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 436/757] RDMA/qedr: Fix use of uninitialized field Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 437/757] RDMA/qedr: Fix return code if accept is called on a destroyed qp Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 438/757] RDMA/qedr: Fix inline size returned for iWARP Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 439/757] powerpc/pseries/svm: Allocate SWIOTLB buffer anywhere in memory Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 440/757] powerpc/watchpoint: Fix quadword instruction handling on p10 predecessors Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 441/757] powerpc/watchpoint: Fix handling of vector instructions Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 442/757] powerpc/watchpoint: Add hw_len wherever missing Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 443/757] powerpc/book3s64/hash/4k: Support large linear mapping range with 4K Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 444/757] powerpc/tau: Use appropriate temperature sample interval Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 445/757] powerpc/tau: Convert from timer to workqueue Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 446/757] powerpc/tau: Remove duplicated set_thresholds() call Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 447/757] powerpc/tau: Check processor type before enabling TAU interrupt Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 448/757] powerpc/tau: Disable TAU between measurements Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 449/757] powerpc/kasan: Fix CONFIG_KASAN_VMALLOC for 8xx Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 450/757] powerpc/64s/radix: Fix mm_cpumask trimming race vs kthread_use_mm Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 451/757] powerpc/papr_scm: Fix warning triggered by perf_stats_show() Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 452/757] RDMA/cma: Combine cma_ndev_work with cma_work Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 453/757] RDMA/cma: Remove dead code for kernel rdmacm multicast Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 454/757] RDMA/cma: Consolidate the destruction of a cma_multicast in one place Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 455/757] RDMA/cma: Fix use after free race in roce multicast join Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 456/757] perf intel-pt: Fix "context_switch event has no tid" error Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 457/757] perf metricgroup: Fix uncore metric expressions Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 458/757] RDMA/qedr: Fix resource leak in qedr_create_qp Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 459/757] RDMA/hns: Set the unsupported wr opcode Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 460/757] RDMA/mlx5: Use set_mkc_access_pd_addr_fields() in reg_create() Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 461/757] RDMA/mlx5: Make mkeys always owned by the kernels PD when not enabled Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 462/757] RDMA/mlx5: Disable IB_DEVICE_MEM_MGT_EXTENSIONS if IB_WR_REG_MR cant work Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 463/757] i40iw: Add support to make destroy QP synchronous Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 464/757] perf stat: Skip duration_time in setup_system_wide Greg Kroah-Hartman
2020-10-27 13:51 ` Greg Kroah-Hartman [this message]
2020-10-27 13:51 ` [PATCH 5.9 466/757] RDMA/hns: Solve the overflow of the calc_pg_sz() Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 467/757] RDMA/hns: Fix the wrong value of rnr_retry when querying qp Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 468/757] RDMA/hns: Fix configuration of ack_req_freq in QPC Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.9 469/757] RDMA/hns: Fix missing sq_sig_type when querying QP Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 470/757] RDMA/mlx5: Fix type warning of sizeof in __mlx5_ib_alloc_counters() Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 471/757] mtd: hyperbus: hbmc-am654: Fix direct mapping setup flash access Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 472/757] mtd: rawnand: stm32_fmc2: fix a buffer overflow Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 473/757] mtd: rawnand: vf610: disable clk on error handling path in probe Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 474/757] mtd: spinand: gigadevice: Only one dummy byte in QUADIO Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 475/757] mtd: spinand: gigadevice: Add QE Bit Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 476/757] mtd: rawnand: ams-delta: Fix non-OF build warning Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 477/757] kdb: Fix pager search for multi-line strings Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 478/757] overflow: Include header file with SIZE_MAX declaration Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 479/757] mtd: parsers: bcm63xx: Do not make it modular Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 480/757] RDMA/ipoib: Set rtnl_link_ops for ipoib interfaces Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 481/757] powerpc/64: fix irq replay missing preempt Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 482/757] powerpc/64: fix irq replay pt_regs->softe value Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 483/757] powerpc: PPC_SECURE_BOOT should not require PowerNV Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 484/757] powerpc/perf: Exclude pmc5/6 from the irrelevant PMU group constraints Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 485/757] powerpc/perf/hv-gpci: Fix starting index value Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 486/757] perf stat: Fix out of bounds CPU map access when handling armv8_pmu events Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 487/757] i3c: master: Fix error return in cdns_i3c_master_probe() Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 488/757] powerpc/security: Fix link stack flush instruction Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 489/757] powerpc/book3s64/radix: Make radix_mem_block_size 64bit Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 490/757] powerpc/papr_scm: Add PAPR command family to pass-through command-set Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 491/757] cpufreq: powernv: Fix frame-size-overflow in powernv_cpufreq_reboot_notifier Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 492/757] IB/rdmavt: Fix sizeof mismatch Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 493/757] RDMA/rxe: Fix skb lifetime in rxe_rcv_mcast_pkt() Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 494/757] f2fs: reject CASEFOLD inode flag without casefold feature Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 495/757] um: vector: Use GFP_ATOMIC under spin lock Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 496/757] um: time-travel: Fix IRQ handling in time_travel_handle_message() Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 497/757] thermal: core: Adding missing nlmsg_free() in thermal_genl_sampling_temp() Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 498/757] maiblox: mediatek: Fix handling of platform_get_irq() error Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 499/757] perf trace: Fix off by ones in memset() after realloc() in arches using libaudit Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 500/757] selftests/powerpc: Fix eeh-basic.sh exit codes Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 501/757] f2fs: wait for sysfs kobject removal before freeing f2fs_sb_info Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 502/757] afs: Fix rapid cell addition/removal by not using RCU on cells tree Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 503/757] afs: Fix cell refcounting by splitting the usage counter Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 504/757] afs: Fix cell purging with aliases Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 505/757] afs: Fix cell removal Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 506/757] RDMA/rxe: Handle skb_clone() failure in rxe_recv.c Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 507/757] mm/page_owner: change split_page_owner to take a count Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 508/757] mm/huge_memory: fix split assumption of page size Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 509/757] mm: fix a race during THP splitting Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 510/757] lib/crc32.c: fix trivial typo in preprocessor condition Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 511/757] ramfs: fix nommu mmap with gaps in the page cache Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 512/757] rapidio: fix error handling path Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 513/757] rapidio: fix the missed put_device() for rio_mport_add_riodev Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 514/757] mailbox: avoid timer start from callback Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 515/757] clk: meson: axg-audio: separate axg and g12a regmap tables Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 516/757] rtc: ds1307: Clear OSF flag on DS1388 when setting time Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 517/757] i2c: rcar: Auto select RESET_CONTROLLER Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 518/757] clk: meson: g12a: mark fclk_div2 as critical Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 519/757] PCI: designware-ep: Fix the Header Type check Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 520/757] PCI: aardvark: Fix compilation on s390 Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 521/757] PCI: aardvark: Check for errors from pci_bridge_emul_init() call Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 522/757] PCI: iproc: Set affinity mask on MSI interrupts Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 523/757] rpmsg: smd: Fix a kobj leak in in qcom_smd_parse_edge() Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 524/757] rpmsg: Avoid double-free in mtk_rpmsg_register_device Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 525/757] remoteproc: stm32: Fix pointer assignement Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 526/757] PCI/IOV: Mark VFs as not implementing PCI_COMMAND_MEMORY Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 527/757] vfio: add a singleton check for vfio_group_pin_pages Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 528/757] s390/pci: Mark all VFs as not implementing PCI_COMMAND_MEMORY Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.9 529/757] vfio/pci: Decouple PCI_COMMAND_MEMORY bit checks from is_virtfn Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 530/757] vfio: fix a missed vfio group put in vfio_pin_pages Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 531/757] vfio/type1: fix dirty bitmap calculation in vfio_dma_rw Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 532/757] clk: qcom: gcc-sdm660: Fix wrong parent_map Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 533/757] clk: keystone: sci-clk: fix parsing assigned-clock data during probe Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 534/757] pwm: rockchip: Keep enabled PWMs running while probing Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 535/757] pwm: img: Fix null pointer access in probe Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 536/757] nfsd: Cache R, RW, and W opens separately Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 537/757] remoteproc/mediatek: fix null pointer dereference on null scp pointer Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 538/757] PCI: hv: Fix hibernation in case interrupts are not re-created Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 539/757] clk: rockchip: Initialize hw to error to avoid undefined behavior Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 540/757] clk: mediatek: add UART0 clock support Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 541/757] module: statically initialize init section freeing data Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 542/757] clk: at91: clk-main: update key before writing AT91_CKGR_MOR Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 543/757] clk: bcm2835: add missing release if devm_clk_hw_register fails Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 544/757] kbuild: deb-pkg: do not build linux-headers package if CONFIG_MODULES=n Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 545/757] watchdog: Fix memleak in watchdog_cdev_register Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 546/757] watchdog: Use put_device on error Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 547/757] watchdog: sp5100: Fix definition of EFCH_PM_DECODEEN3 Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 548/757] clk: at91: sam9x60: support only two programmable clocks Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 549/757] svcrdma: fix bounce buffers for unaligned offsets and multiple pages Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 550/757] ext4: fix dead loop in ext4_mb_new_blocks Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 551/757] ext4: discard preallocations before releasing group lock Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 552/757] ext4: disallow modifying DAX inode flag if inline_data has been set Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 553/757] ext4: limit entries returned when counting fsmap records Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 554/757] vfio/pci: Clear token on bypass registration failure Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 555/757] vfio iommu type1: Fix memory leak in vfio_iommu_type1_pin_pages Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 556/757] clk: qcom: gdsc: Keep RETAIN_FF bit set if gdsc is already on Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 557/757] clk: imx8mq: Fix usdhc parents order Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 558/757] SUNRPC: fix copying of multiple pages in gss_read_proxy_verf() Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 559/757] NFSv4.2: Fix NFS4ERR_STALE error when doing inter server copy Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 560/757] platform/chrome: cros_ec_typec: Send enum values to usb_role_switch_set_role() Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 561/757] platform/chrome: cros_ec_lightbar: Reduce ligthbar get version command Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 562/757] Input: elants_i2c - fix typo for an attribute to show calibration count Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 563/757] Input: imx6ul_tsc - clean up some errors in imx6ul_tsc_resume() Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 564/757] Input: stmfts - fix a & vs && typo Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 565/757] Input: ep93xx_keypad - fix handling of platform_get_irq() error Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 566/757] Input: omap4-keypad " Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 567/757] Input: twl4030_keypad " Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 568/757] Input: sun4i-ps2 " Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 569/757] KVM: x86: emulating RDPID failure shall return #UD rather than #GP Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 570/757] KVM: nSVM: CR3 MBZ bits are only 63:52 Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 571/757] scsi: bfa: Fix error return in bfad_pci_init() Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 572/757] arm64: mm: use single quantity to represent the PA to VA translation Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 573/757] bpf: Enforce id generation for all may-be-null register type Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 574/757] net: dsa: seville: the packet buffer is 2 megabits, not megabytes Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 575/757] netfilter: conntrack: connection timeout after re-register Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 576/757] netfilter: ebtables: Fixes dropping of small packets in bridge nat Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 577/757] vdpa/mlx5: Make use of a specific 16 bit endianness API Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 578/757] vdpa/mlx5: Fix failure to bring link up Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 579/757] vdpa/mlx5: Setup driver only if VIRTIO_CONFIG_S_DRIVER_OK Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 580/757] selftests: mptcp: depends on built-in IPv6 Greg Kroah-Hartman
2020-10-27 15:59   ` Matthieu Baerts
2020-10-28 22:09     ` Sasha Levin
2020-10-27 13:53 ` [PATCH 5.9 581/757] netfilter: nf_fwd_netdev: clear timestamp in forwarding path Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 582/757] soc: xilinx: Fix error code in zynqmp_pm_probe() Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 583/757] arm64: dts: meson: vim3: correct led polarity Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 584/757] ARM: dts: imx6sl: fix rng node Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 585/757] ARM: at91: pm: of_node_put() after its usage Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 586/757] ARM: s3c24xx: fix mmc gpio lookup tables Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 587/757] memory: brcmstb_dpfe: fix array index out of bounds Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 588/757] ARM: dts: sun8i: r40: bananapi-m2-ultra: Fix dcdc1 regulator Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.9 589/757] arm64: dts: allwinner: h5: remove Mali GPU PMU module Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 590/757] memory: omap-gpmc: Fix a couple off by ones Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 591/757] memory: omap-gpmc: Fix build error without CONFIG_OF Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 592/757] arm64: dts: qcom: msm8992: Fix UART interrupt property Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 593/757] arm64: dts: qcom: sdm845-db845c: Fix hdmi nodes Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 594/757] arm64: dts: qcom: sm8150: fix up primary USB nodes Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 595/757] arm64: dts: qcom: sc7180: Fix the LLCC base register size Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 596/757] memory: fsl-corenet-cf: Fix handling of platform_get_irq() error Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 597/757] firmware: arm_scmi: Fix NULL pointer dereference in mailbox_chan_free Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 598/757] arm64: dts: mt8173-elm: fix supported values for regulator-allowed-modes of da9211 Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 599/757] arm64: dts: qcom: sm8250: Rename UART2 node to UART12 Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 600/757] dmaengine: ti: k3-udma-glue: Fix parameters for rx ring pair request Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 601/757] arm64: dts: imx8mq: Add missing interrupts to GPC Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 602/757] arm64: dts: qcom: sc7180: Drop flags on mdss irqs Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 603/757] arm64: dts: sdm845: Fixup OPP table for all qup devices Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 604/757] soc: qcom: pdr: Fixup array type of get_domain_list_resp message Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 605/757] arm64: dts: qcom: msm8916: Remove one more thermal trip point unit name Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 606/757] arm64: dts: qcom: pm8916: Remove invalid reg size from wcd_codec Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 607/757] arm64: dts: qcom: msm8916: Fix MDP/DSI interrupts Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 608/757] soc: qcom: apr: Fixup the error displayed on lookup failure Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 609/757] dt-bindings: crypto: Specify that allwinner, sun8i-a33-crypto needs reset Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 610/757] arm64: dts: renesas: r8a77990: Fix MSIOF1 DMA channels Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 611/757] arm64: dts: renesas: r8a774c0: " Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 612/757] arm64: dts: mt8173: elm: Fix nor_flash node property Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 613/757] arm64: dts: ti: k3-j721e: Rename mux header and update macro names Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 614/757] arm64: dts: actions: limit address range for pinctrl node Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 615/757] ARM: dts: owl-s500: Fix incorrect PPI interrupt specifiers Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 616/757] soc: fsl: qbman: Fix return value on success Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 617/757] ARM: OMAP2+: Restore MPU power domain if cpu_cluster_pm_enter() fails Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 618/757] ARM: dts: stm32: Fix sdmmc2 pins on AV96 Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 619/757] ARM: dts: stm32: lxa-mc1: Fix kernel warning about PHY delays Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 620/757] ARM: dts: stm32: Move ethernet PHY into DH SoM DT Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 621/757] ARM: dts: stm32: Swap PHY reset GPIO and TSC2004 IRQ on DHCOM SOM Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 622/757] ARM: dts: stm32: Fix DH PDK2 display PWM channel Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 623/757] ARM: dts: iwg20d-q7-common: Fix touch controller probe failure Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 624/757] soc: mediatek: cmdq: add clear option in cmdq_pkt_wfe api Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 625/757] drm/mediatek: reduce clear event Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 626/757] arm64: dts: zynqmp: Remove additional compatible string for i2c IPs Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 627/757] ARM: dts: meson8: remove two invalid interrupt lines from the GPU node Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 628/757] lightnvm: fix out-of-bounds write to array devices->info[] Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 629/757] powerpc/powernv/dump: Fix race while processing OPAL dump Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 630/757] powerpc/64s: Remove TM from Power10 features Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 631/757] powerpc/pseries: Avoid using addr_to_pfn in real mode Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 632/757] nvmet: fix uninitialized work for zero kato Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 633/757] nvmet: limit passthru MTDS by BIO_MAX_PAGES Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 634/757] KVM: ioapic: break infinite recursion on lazy EOI Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 635/757] NTB: hw: amd: fix an issue about leak system resources Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 636/757] ntb: intel: Fix memleak in intel_ntb_pci_probe Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 637/757] sched/features: Fix !CONFIG_JUMP_LABEL case Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 638/757] perf: correct SNOOPX field offset Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 639/757] random32: make prandom_u32() output unpredictable Greg Kroah-Hartman
2020-10-27 17:11   ` Willy Tarreau
     [not found]   ` <CANEQ_++-8QMfvLCQtFLOy8dF1LP_+UUOkRTG2y8Jn5bteS3B8Q@mail.gmail.com>
2020-11-09  6:20     ` Greg Kroah-Hartman
     [not found]       ` <CANEQ_+JcddE9SxzppH07A1ewvyjXHnsKUYpoYx=9Zk7gPe-Fxg@mail.gmail.com>
2020-11-09  7:54         ` Willy Tarreau
2020-11-09 10:23         ` Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 640/757] i2c: core: Restore acpi_walk_dep_device_list() getting called after registering the ACPI i2c devs Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 641/757] md/bitmap: fix memory leak of temporary bitmap Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 642/757] block: ratelimit handle_bad_sector() message Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 643/757] x86/dumpstack: Fix misleading instruction pointer error message Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 644/757] crypto: ccp - fix error handling Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 645/757] x86/asm: Replace __force_order with a memory clobber Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 646/757] x86/mce: Add Skylake quirk for patrol scrub reported errors Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 647/757] media: firewire: fix memory leak Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 648/757] media: ati_remote: sanity check for both endpoints Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.9 649/757] media: st-delta: Fix reference count leak in delta_run_work Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 650/757] media: sti: Fix reference count leaks Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 651/757] media: exynos4-is: Fix several reference count leaks due to pm_runtime_get_sync Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 652/757] media: exynos4-is: Fix a reference count leak " Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 653/757] media: exynos4-is: Fix a reference count leak Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 654/757] media: vsp1: Fix runtime PM imbalance on error Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 655/757] media: platform: s3c-camif: " Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 656/757] media: platform: sti: hva: " Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 657/757] media: bdisp: " Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 658/757] media: media/pci: prevent memory leak in bttv_probe Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 659/757] x86/mce: Annotate mce_rd/wrmsrl() with noinstr Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 660/757] crypto: hisilicon - fixed memory allocation error Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 661/757] spi: fsi: Fix clock running too fast Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 662/757] blk-mq: always allow reserved allocation in hctx_may_queue Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 663/757] x86/mce: Make mce_rdmsrl() panic on an inaccessible MSR Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 664/757] media: uvcvideo: Ensure all probed info is returned to v4l2 Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 665/757] mmc: sdio: Check for CISTPL_VERS_1 buffer size Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 666/757] media: saa7134: avoid a shift overflow Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 667/757] media: atomisp: fix memleak in ia_css_stream_create Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 668/757] media: venus: fixes for list corruption Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 669/757] notifier: Fix broken error handling pattern Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 670/757] fs: dlm: fix configfs memory leak Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 671/757] media: venus: core: Fix error handling in probe Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 672/757] media: venus: core: Fix runtime PM imbalance in venus_probe Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 673/757] ntfs: add check for mft record size in superblock Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 674/757] ip_gre: set dev->hard_header_len and dev->needed_headroom properly Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 675/757] mac80211: handle lack of sband->bitrates in rates Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 676/757] staging: wfx: fix handling of MMIC error Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 677/757] libbpf: Close map fd if init map slots failed Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 678/757] bpf: Use raw_spin_trylock() for pcpu_freelist_push/pop in NMI Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 679/757] PM: hibernate: remove the bogus call to get_gendisk() in software_resume() Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 680/757] scsi: mvumi: Fix error return in mvumi_io_attach() Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 681/757] scsi: target: core: Add CONTROL field for trace events Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 682/757] mic: vop: copy data to kernel space then write to io memory Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 683/757] misc: vop: add round_up(x,4) for vring_size to avoid kernel panic Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 684/757] usb: dwc3: Add splitdisable quirk for Hisilicon Kirin Soc Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 685/757] usb: gadget: function: printer: fix use-after-free in __lock_acquire Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 686/757] rtw88: pci: Power cycle device during shutdown Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 687/757] udf: Limit sparing table size Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 688/757] udf: Avoid accessing uninitialized data on failed inode read Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 689/757] rtw88: increse the size of rx buffer size Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 690/757] selftests/bpf: Fix overflow tests to reflect iter size increase Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 691/757] USB: cdc-acm: handle broken union descriptors Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 692/757] mt76: mt7915: do not do any work in napi poll after calling napi_complete_done() Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 693/757] usb: dwc3: simple: add support for Hikey 970 Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 694/757] habanalabs: cast to u64 before shift > 31 bits Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 695/757] can: flexcan: flexcan_chip_stop(): add error handling and propagate error value Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 696/757] HID: multitouch: Lenovo X1 Tablet Gen3 trackpoint and buttons Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 697/757] ath9k: hif_usb: fix race condition between usb_get_urb() and usb_kill_anchored_urbs() Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 698/757] drm/panfrost: add Amlogic GPU integration quirks Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 699/757] drm/panfrost: add amlogic reset quirk callback Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 700/757] drm/panfrost: add support for vendor quirk Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 701/757] bpf: Limit callers stack depth 256 for subprogs with tailcalls Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 702/757] dma-direct: Fix potential NULL pointer dereference Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 703/757] misc: rtsx: Fix memory leak in rtsx_pci_probe Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 704/757] reiserfs: only call unlock_new_inode() if I_NEW Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 705/757] opp: Prevent memory leak in dev_pm_opp_attach_genpd() Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 706/757] xfs: make sure the rt allocator doesnt run off the end Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 707/757] usb: ohci: Default to per-port over-current protection Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 708/757] drm: fix double free for gbo in drm_gem_vram_init and drm_gem_vram_create Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.9 709/757] Bluetooth: Only mark socket zapped after unlocking Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 710/757] drm/msm/a6xx: fix a potential overflow issue Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 711/757] drm/xlnx: Use devm_drm_dev_alloc Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 712/757] iomap: fix WARN_ON_ONCE() from unprivileged users Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 713/757] scsi: ibmvfc: Fix error return in ibmvfc_probe() Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 714/757] scsi: qla2xxx: Warn if done() or free() are called on an already freed srb Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 715/757] selftests/bpf: Fix test_sysctl_loop{1, 2} failure due to clang change Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 716/757] soundwire: cadence: fix race condition between suspend and Slave device alerts Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 717/757] brcmsmac: fix memory leak in wlc_phy_attach_lcnphy Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 718/757] rtl8xxxu: prevent potential memory leak Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 719/757] Fix use after free in get_capset_info callback Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 720/757] HID: ite: Add USB id match for Acer One S1003 keyboard dock Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 721/757] scsi: qedf: Return SUCCESS if stale rport is encountered Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 722/757] scsi: qedi: Mark all connections for recovery on link down event Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 723/757] scsi: qedi: Protect active command list to avoid list corruption Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 724/757] scsi: qedi: Fix list_del corruption while removing active I/O Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 725/757] fbmem: add margin check to fb_check_caps() Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 726/757] tty: ipwireless: fix error handling Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 727/757] Bluetooth: btusb: Fix memleak in btusb_mtk_submit_wmt_recv_urb Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 728/757] ipvs: Fix uninit-value in do_ip_vs_set_ctl() Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 729/757] reiserfs: Fix memory leak in reiserfs_parse_options() Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 730/757] s390/qeth: strictly order bridge address events Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 731/757] mwifiex: dont call del_timer_sync() on uninitialized timer Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 732/757] ALSA: hda/ca0132 - Add AE-7 microphone selection commands Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 733/757] ALSA: hda/ca0132 - Add new quirk ID for SoundBlaster AE-7 Greg Kroah-Hartman
2020-10-30  8:32   ` Takashi Iwai
2020-10-27 13:56 ` [PATCH 5.9 734/757] ASoC: SOF: Add topology filename override based on dmi data match Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 735/757] ASoC: Intel: sof_rt5682: override quirk data for tgl_max98373_rt5682 Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 736/757] scsi: smartpqi: Avoid crashing kernel for controller issues Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 737/757] brcm80211: fix possible memleak in brcmf_proto_msgbuf_attach Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 738/757] usb: core: Solve race condition in anchor cleanup functions Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 739/757] soundwire: intel: reinitialize IP+DSP in .prepare(), but only when resuming Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 740/757] scsi: ufs: ufs-qcom: Fix race conditions caused by ufs_qcom_testbus_config() Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 741/757] drm/amd/display: Screen corruption on dual displays (DP+USB-C) Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 742/757] dmaengine: dw: Add DMA-channels mask cell support Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 743/757] dmaengine: dw: Activate FIFO-mode for memory peripherals only Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 744/757] drm/hisilicon: Code refactoring for hibmc_drv_de Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 745/757] drm/amd/display: Disconnect pipe separetely when disable pipe split Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 746/757] drm/panfrost: perfcnt: fix ref count leak in panfrost_perfcnt_enable_locked Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 747/757] ath10k: check idx validity in __ath10k_htt_rx_ring_fill_n() Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 748/757] net: korina: cast KSEG0 address to pointer in kfree Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 749/757] s390/qeth: dont let HW override the configured port role Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 750/757] tty: serial: lpuart: fix lpuart32_write usage Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 751/757] tty: serial: fsl_lpuart: fix lpuart32_poll_get_char Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 752/757] usb: gadget: bcm63xx_udc: fix up the error of undeclared usb_debug_root Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 753/757] usb: cdc-acm: add quirk to blacklist ETAS ES58X devices Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 754/757] USB: cdc-wdm: Make wdm_flush() interruptible and add wdm_fsync() Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 755/757] usb: cdns3: gadget: free interrupt after gadget has deleted Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 756/757] eeprom: at25: set minimum read/write access stride to 1 Greg Kroah-Hartman
2020-10-27 13:56 ` [PATCH 5.9 757/757] usb: gadget: f_ncm: allow using NCM in SuperSpeed Plus gadgets Greg Kroah-Hartman
2020-10-27 17:41 ` [PATCH 5.9 000/757] 5.9.2-rc1 review Jeffrin Jose T
2020-10-27 20:29 ` Naresh Kamboju
     [not found] ` <20201028171208.GG118534@roeck-us.net>
2020-10-28 19:56   ` Guenter Roeck
2020-10-29  9:13 ` Jon Hunter
2020-10-29 10:43   ` Greg Kroah-Hartman

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=20201027135512.328587438@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=jgg@nvidia.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=liweihang@huawei.com \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=zhangjiaran@huawei.com \
    /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).