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, Joel Stanley <joel@jms.id.au>,
	Samuel Mendoza-Jonas <sam@mendozajonas.com>,
	Jakub Kicinski <kuba@kernel.org>
Subject: [PATCH 5.9 029/252] net/ncsi: Fix netlink registration
Date: Mon, 23 Nov 2020 13:19:39 +0100	[thread overview]
Message-ID: <20201123121836.995530313@linuxfoundation.org> (raw)
In-Reply-To: <20201123121835.580259631@linuxfoundation.org>

From: Joel Stanley <joel@jms.id.au>

[ Upstream commit 1922a46b8c18cb09d33e06a6cc2e43844ac1b9d0 ]

If a user unbinds and re-binds a NC-SI aware driver the kernel will
attempt to register the netlink interface at runtime. The structure is
marked __ro_after_init so registration fails spectacularly at this point.

 # echo 1e660000.ethernet > /sys/bus/platform/drivers/ftgmac100/unbind
 # echo 1e660000.ethernet > /sys/bus/platform/drivers/ftgmac100/bind
  ftgmac100 1e660000.ethernet: Read MAC address 52:54:00:12:34:56 from chip
  ftgmac100 1e660000.ethernet: Using NCSI interface
  8<--- cut here ---
  Unable to handle kernel paging request at virtual address 80a8f858
  pgd = 8c768dd6
  [80a8f858] *pgd=80a0841e(bad)
  Internal error: Oops: 80d [#1] SMP ARM
  CPU: 0 PID: 116 Comm: sh Not tainted 5.10.0-rc3-next-20201111-00003-gdd25b227ec1e #51
  Hardware name: Generic DT based system
  PC is at genl_register_family+0x1f8/0x6d4
  LR is at 0xff26ffff
  pc : [<8073f930>]    lr : [<ff26ffff>]    psr: 20000153
  sp : 8553bc80  ip : 81406244  fp : 8553bd04
  r10: 8085d12c  r9 : 80a8f73c  r8 : 85739000
  r7 : 00000017  r6 : 80a8f860  r5 : 80c8ab98  r4 : 80a8f858
  r3 : 00000000  r2 : 00000000  r1 : 81406130  r0 : 00000017
  Flags: nzCv  IRQs on  FIQs off  Mode SVC_32  ISA ARM  Segment none
  Control: 00c5387d  Table: 85524008  DAC: 00000051
  Process sh (pid: 116, stack limit = 0x1f1988d6)
 ...
  Backtrace:
  [<8073f738>] (genl_register_family) from [<80860ac0>] (ncsi_init_netlink+0x20/0x48)
   r10:8085d12c r9:80c8fb0c r8:85739000 r7:00000000 r6:81218000 r5:85739000
   r4:8121c000
  [<80860aa0>] (ncsi_init_netlink) from [<8085d740>] (ncsi_register_dev+0x1b0/0x210)
   r5:8121c400 r4:8121c000
  [<8085d590>] (ncsi_register_dev) from [<805a8060>] (ftgmac100_probe+0x6e0/0x778)
   r10:00000004 r9:80950228 r8:8115bc10 r7:8115ab00 r6:9eae2c24 r5:813b6f88
   r4:85739000
  [<805a7980>] (ftgmac100_probe) from [<805355ec>] (platform_drv_probe+0x58/0xa8)
   r9:80c76bb0 r8:00000000 r7:80cd4974 r6:80c76bb0 r5:8115bc10 r4:00000000
  [<80535594>] (platform_drv_probe) from [<80532d58>] (really_probe+0x204/0x514)
   r7:80cd4974 r6:00000000 r5:80cd4868 r4:8115bc10

Jakub pointed out that ncsi_register_dev is obviously broken, because
there is only one family so it would never work if there was more than
one ncsi netdev.

Fix the crash by registering the netlink family once on boot, and drop
the code to unregister it.

Fixes: 955dc68cb9b2 ("net/ncsi: Add generic netlink family")
Signed-off-by: Joel Stanley <joel@jms.id.au>
Reviewed-by: Samuel Mendoza-Jonas <sam@mendozajonas.com>
Link: https://lore.kernel.org/r/20201112061210.914621-1-joel@jms.id.au
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 net/ncsi/ncsi-manage.c  |    5 -----
 net/ncsi/ncsi-netlink.c |   22 +++-------------------
 net/ncsi/ncsi-netlink.h |    3 ---
 3 files changed, 3 insertions(+), 27 deletions(-)

--- a/net/ncsi/ncsi-manage.c
+++ b/net/ncsi/ncsi-manage.c
@@ -1726,9 +1726,6 @@ struct ncsi_dev *ncsi_register_dev(struc
 	ndp->ptype.dev = dev;
 	dev_add_pack(&ndp->ptype);
 
-	/* Set up generic netlink interface */
-	ncsi_init_netlink(dev);
-
 	pdev = to_platform_device(dev->dev.parent);
 	if (pdev) {
 		np = pdev->dev.of_node;
@@ -1892,8 +1889,6 @@ void ncsi_unregister_dev(struct ncsi_dev
 	list_del_rcu(&ndp->node);
 	spin_unlock_irqrestore(&ncsi_dev_lock, flags);
 
-	ncsi_unregister_netlink(nd->dev);
-
 	kfree(ndp);
 }
 EXPORT_SYMBOL_GPL(ncsi_unregister_dev);
--- a/net/ncsi/ncsi-netlink.c
+++ b/net/ncsi/ncsi-netlink.c
@@ -766,24 +766,8 @@ static struct genl_family ncsi_genl_fami
 	.n_ops = ARRAY_SIZE(ncsi_ops),
 };
 
-int ncsi_init_netlink(struct net_device *dev)
+static int __init ncsi_init_netlink(void)
 {
-	int rc;
-
-	rc = genl_register_family(&ncsi_genl_family);
-	if (rc)
-		netdev_err(dev, "ncsi: failed to register netlink family\n");
-
-	return rc;
-}
-
-int ncsi_unregister_netlink(struct net_device *dev)
-{
-	int rc;
-
-	rc = genl_unregister_family(&ncsi_genl_family);
-	if (rc)
-		netdev_err(dev, "ncsi: failed to unregister netlink family\n");
-
-	return rc;
+	return genl_register_family(&ncsi_genl_family);
 }
+subsys_initcall(ncsi_init_netlink);
--- a/net/ncsi/ncsi-netlink.h
+++ b/net/ncsi/ncsi-netlink.h
@@ -22,7 +22,4 @@ int ncsi_send_netlink_err(struct net_dev
 			  struct nlmsghdr *nlhdr,
 			  int err);
 
-int ncsi_init_netlink(struct net_device *dev);
-int ncsi_unregister_netlink(struct net_device *dev);
-
 #endif /* __NCSI_NETLINK_H__ */



  parent reply	other threads:[~2020-11-23 12:43 UTC|newest]

Thread overview: 259+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-23 12:19 [PATCH 5.9 000/252] 5.9.11-rc1 review Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 001/252] ah6: fix error return code in ah6_input() Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 002/252] atm: nicstar: Unmap DMA on send error Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 003/252] bnxt_en: read EEPROM A2h address using page 0 Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 004/252] devlink: Add missing genlmsg_cancel() in devlink_nl_sb_port_pool_fill() Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 005/252] enetc: Workaround for MDIO register access issue Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 006/252] Exempt multicast addresses from five-second neighbor lifetime Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 007/252] inet_diag: Fix error path to cancel the meseage in inet_req_diag_fill() Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 008/252] ipv6: Fix error path to cancel the meseage Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 009/252] lan743x: fix issue causing intermittent kernel log warnings Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 010/252] lan743x: prevent entire kernel HANG on open, for some platforms Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 011/252] mlxsw: core: Use variable timeout for EMAD retries Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 012/252] net: b44: fix error return code in b44_init_one() Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 013/252] net: bridge: add missing counters to ndo_get_stats64 callback Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 014/252] netdevsim: set .owner to THIS_MODULE Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 015/252] net: dsa: mv88e6xxx: Avoid VTU corruption on 6097 Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 016/252] net: ethernet: mtk-star-emac: fix error return code in mtk_star_enable() Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 017/252] net: ethernet: mtk-star-emac: return ok when xmit drops Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 018/252] net: ethernet: ti: am65-cpts: update ret when ptp_clock is ERROR Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 019/252] net: ethernet: ti: cpsw: fix cpts irq after suspend Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 020/252] net: ethernet: ti: cpsw: fix error return code in cpsw_probe() Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 021/252] net: ftgmac100: Fix crash when removing driver Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 022/252] net: Have netpoll bring-up DSA management interface Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 023/252] net: ipa: lock when freeing transaction Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 024/252] netlabel: fix our progress tracking in netlbl_unlabel_staticlist() Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 025/252] netlabel: fix an uninitialized warning " Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 026/252] net: lantiq: Wait for the GPHY firmware to be ready Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 027/252] net/mlx4_core: Fix init_hca fields offset Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 028/252] net/mlx5e: Fix refcount leak on kTLS RX resync Greg Kroah-Hartman
2020-11-23 12:19 ` Greg Kroah-Hartman [this message]
2020-11-23 12:19 ` [PATCH 5.9 030/252] net: phy: mscc: remove non-MACSec compatible phy Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 031/252] net: qualcomm: rmnet: Fix incorrect receive packet handling during cleanup Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 032/252] net/smc: fix direct access to ib_gid_addr->ndev in smc_ib_determine_gid() Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 033/252] net: stmmac: Use rtnl_lock/unlock on netif_set_real_num_rx_queues() call Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 034/252] net/tls: fix corrupted data in recvmsg Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 035/252] net: x25: Increase refcnt of "struct x25_neigh" in x25_rx_call_request Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 036/252] page_frag: Recover from memory pressure Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 037/252] qed: fix error return code in qed_iwarp_ll2_start() Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 038/252] qed: fix ILT configuration of SRC block Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 039/252] qlcnic: fix error return code in qlcnic_83xx_restart_hw() Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 040/252] sctp: change to hold/put transport for proto_unreach_timer Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 041/252] tcp: only postpone PROBE_RTT if RTT is < current min_rtt estimate Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 042/252] vsock: forward all packets to the host when no H2G is registered Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 043/252] net/mlx5e: Fix check if netdev is bond slave Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 044/252] net/mlx5: Add handling of port type in rule deletion Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 045/252] net/mlx5: Clear bw_share upon VF disable Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 046/252] net/mlx5: Disable QoS when min_rates on all VFs are zero Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 047/252] PM: runtime: Add pm_runtime_resume_and_get to deal with usage counter Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 048/252] net: fec: Fix reference count leak in fec series ops Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 049/252] bnxt_en: Fix counter overflow logic Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 050/252] bnxt_en: Free port stats during firmware reset Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 051/252] net: mvneta: fix possible memory leak in mvneta_swbm_add_rx_fragment Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 052/252] net/tls: Fix wrong record sn in async mode of device resync Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 053/252] net: usb: qmi_wwan: Set DTR quirk for MR400 Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 054/252] Revert "Revert "gpio: omap: Fix lost edge wake-up interrupts"" Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 055/252] tools, bpftool: Avoid array index warnings Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 056/252] habanalabs/gaudi: mask WDT error in QMAN Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 057/252] pinctrl: rockchip: enable gpio pclk for rockchip_gpio_to_irq Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 058/252] scsi: ufs: Fix unbalanced scsi_block_reqs_cnt caused by ufshcd_hold() Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 059/252] scsi: ufs: Try to save power mode change and UIC cmd completion timeout Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 060/252] pinctrl: mcp23s08: Print error message when regmap init fails Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 061/252] selftests: kvm: Fix the segment descriptor layout to match the actual layout Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 062/252] ACPI: button: Add DMI quirk for Medion Akoya E2228T Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 063/252] arm64: errata: Fix handling of 1418040 with late CPU onlining Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 064/252] arm64: psci: Avoid printing in cpu_psci_cpu_die() Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 065/252] arm64: smp: Tell RCU about CPUs that fail to come online Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 066/252] um: Call pgtable_pmd_page_dtor() in __pmd_free_tlb() Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 067/252] vfs: remove lockdep bogosity in __sb_start_write Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 068/252] gfs2: fix possible reference leak in gfs2_check_blk_type Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 069/252] hwmon: (pwm-fan) Fix RPM calculation Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 070/252] gfs2: Fix case in which ail writes are done to jdata holes Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 071/252] arm64: Add MIDR value for KRYO2XX gold/silver CPU cores Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 072/252] arm64: kpti: Add KRYO2XX gold/silver CPU cores to kpti safelist Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 073/252] arm64: cpu_errata: Apply Erratum 845719 to KRYO2XX Silver Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 074/252] usb: dwc2: Avoid leaving the error_debugfs label unused Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 075/252] arm64: dts: allwinner: beelink-gs1: Enable both RGMII RX/TX delay Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 076/252] arm64: dts: allwinner: Pine H64: " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 077/252] arm64: dts: allwinner: a64: OrangePi Win: Fix ethernet node Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 078/252] arm64: dts: allwinner: a64: Pine64 Plus: " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 079/252] arm64: dts: allwinner: h5: OrangePi PC2: " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 080/252] ARM: dts: sun8i: r40: bananapi-m2-ultra: " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 081/252] Revert "arm: sun8i: orangepi-pc-plus: Set EMAC activity LEDs to active high" Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 082/252] ARM: dts: sun6i: a31-hummingbird: Enable RGMII RX/TX delay on Ethernet PHY Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 083/252] ARM: dts: sun7i: cubietruck: " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 084/252] ARM: dts: sun7i: bananapi-m1-plus: " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 085/252] ARM: dts: sun8i: h3: orangepi-plus2e: " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 086/252] ARM: dts: sun8i: a83t: Enable both " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 087/252] ARM: dts: sun9i: " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 088/252] ARM: dts: sunxi: bananapi-m2-plus: Enable " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 089/252] arm64: dts: allwinner: h5: libretech-all-h5-cc: Enable RGMII RX/TX delay on PHY Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 090/252] arm64: dts: allwinner: a64: bananapi-m64: " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 091/252] Input: adxl34x - clean up a data type in adxl34x_probe() Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 092/252] MIPS: export has_transparent_hugepage() for modules Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 093/252] dmaengine: idxd: fix wq config registers offset programming Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 094/252] arm64: dts: allwinner: h5: OrangePi Prime: Fix ethernet node Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 095/252] arm64: dts: fsl: fix endianness issue of rcpm Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 096/252] arm64: dts: imx8mm-beacon-som: Fix Choppy BT audio Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 097/252] arm64: dts imx8mn: Remove non-existent USB OTG2 Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 098/252] arm: dts: imx6qdl-udoo: fix rgmii phy-mode for ksz9031 phy Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 099/252] ARM: dts: vf610-zii-dev-rev-b: Fix MDIO over clocking Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 100/252] ARM: dts: imx6q-prti6q: fix PHY address Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 101/252] swiotlb: using SIZE_MAX needs limits.h included Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 102/252] tee: amdtee: fix memory leak due to reset of global shm list Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 103/252] tee: amdtee: synchronize access to " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 104/252] dmaengine: xilinx_dma: Fix usage of xilinx_aximcdma_tx_segment Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 105/252] dmaengine: xilinx_dma: Fix SG capability check for MCDMA Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 106/252] ARM: dts: stm32: Fix TA3-GPIO-C key on STM32MP1 DHCOM PDK2 Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 107/252] ARM: dts: stm32: Fix LED5 " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 108/252] ARM: dts: stm32: Define VIO regulator supply on DHCOM Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 109/252] ARM: dts: stm32: Enable thermal sensor support on stm32mp15xx-dhcor Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 110/252] ARM: dts: stm32: Keep VDDA LDO1 always on on DHCOM Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 111/252] arm64: dts: imx8mm: fix voltage for 1.6GHz CPU operating point Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 112/252] ARM: dts: imx50-evk: Fix the chip select 1 IOMUX Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 113/252] dmaengine: ti: omap-dma: Block PM if SDMA is busy to fix audio Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 114/252] kunit: tool: unmark test_data as binary blobs Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 115/252] rcu: Dont invoke try_invoke_on_locked_down_task() with irqs disabled Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 116/252] spi: fix client driver breakages when using GPIO descriptors Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 117/252] Input: resistive-adc-touch - fix kconfig dependency on IIO_BUFFER Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 118/252] Input: elan_i2c - fix firmware update on newer ICs Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 119/252] rfkill: Fix use-after-free in rfkill_resume() Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 120/252] RDMA/pvrdma: Fix missing kfree() in pvrdma_register_device() Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 121/252] RMDA/sw: Dont allow drivers using dma_virt_ops on highmem configs Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 122/252] perf lock: Correct field name "flags" Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 123/252] perf lock: Dont free "lock_seq_stat" if read_count isnt zero Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 124/252] SUNRPC: Fix oops in the rpc_xdr_buf event class Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 125/252] drm: bridge: dw-hdmi: Avoid resetting force in the detect function Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 126/252] tools, bpftool: Add missing close before bpftool net attach exit Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 127/252] IB/hfi1: Fix error return code in hfi1_init_dd() Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 128/252] ip_tunnels: Set tunnel option flag when tunnel metadata is present Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 129/252] can: af_can: prevent potential access of uninitialized member in can_rcv() Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 130/252] can: af_can: prevent potential access of uninitialized member in canfd_rcv() Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 131/252] can: dev: can_restart(): post buffer from the right context Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 132/252] can: ti_hecc: Fix memleak in ti_hecc_probe Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 133/252] can: mcba_usb: mcba_usb_start_xmit(): first fill skb, then pass to can_put_echo_skb() Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 134/252] can: peak_usb: fix potential integer overflow on shift of a int Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 135/252] can: flexcan: fix failure handling of pm_runtime_get_sync() Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 136/252] can: tcan4x5x: replace depends on REGMAP_SPI with depends on SPI Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 137/252] can: tcan4x5x: tcan4x5x_can_probe(): add missing error checking for devm_regmap_init() Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 138/252] can: tcan4x5x: tcan4x5x_can_remove(): fix order of deregistration Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 139/252] can: m_can: m_can_handle_state_change(): fix state change Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 140/252] can: m_can: m_can_class_free_dev(): introduce new function Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 141/252] can: m_can: Fix freeing of can device from peripherials Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 142/252] can: m_can: m_can_stop(): set device to software init mode before closing Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 143/252] dmaengine: idxd: fix mapping of portal size Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 144/252] ASoC: Intel: KMB: Fix S24_LE configuration Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 145/252] ASoC: qcom: lpass-platform: Fix memory leak Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 146/252] spi: cadence-quadspi: Fix error return code in cqspi_probe Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 147/252] selftests/bpf: Fix error return code in run_getsockopt_test() Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 148/252] MIPS: Alchemy: Fix memleak in alchemy_clk_setup_cpu Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 149/252] drm/sun4i: dw-hdmi: fix error return code in sun8i_dw_hdmi_bind() Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 150/252] net/mlx5: E-Switch, Fail mlx5_esw_modify_vport_rate if qos disabled Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 151/252] bpf, sockmap: Fix partial copy_page_to_iter so progress can still be made Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 152/252] bpf, sockmap: Ensure SO_RCVBUF memory is observed on ingress redirect Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 153/252] can: kvaser_pciefd: Fix KCAN bittiming limits Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 154/252] can: kvaser_usb: kvaser_usb_hydra: " Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 155/252] dmaengine: fix error codes in channel_register() Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 156/252] iommu/vt-d: Move intel_iommu_gfx_mapped to Intel IOMMU header Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 157/252] iommu/vt-d: Avoid panic if iommu init fails in tboot system Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 158/252] can: flexcan: flexcan_chip_start(): fix erroneous flexcan_transceiver_enable() during bus-off recovery Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 159/252] can: m_can: process interrupt only when not runtime suspended Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 160/252] xfs: fix the minrecs logic when dealing with inode root child blocks Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 161/252] xfs: strengthen rmap record flags checking Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 162/252] xfs: directory scrub should check the null bestfree entries too Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 163/252] xfs: ensure inobt record walks always make forward progress Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 164/252] xfs: return corresponding errcode if xfs_initialize_perag() fail Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 165/252] ASOC: Intel: kbl_rt5663_rt5514_max98927: Do not try to disable disabled clock Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 166/252] regulator: ti-abb: Fix array out of bound read access on the first transition Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 167/252] libbpf: Fix VERSIONED_SYM_COUNT number parsing Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 168/252] lib/strncpy_from_user.c: Mask out bytes after NUL terminator Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 169/252] fail_function: Remove a redundant mutex unlock Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 170/252] xfs: revert "xfs: fix rmap key and record comparison functions" Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 171/252] selftests/seccomp: powerpc: Fix typo in macro variable name Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 172/252] selftests/seccomp: sh: Fix register names Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 173/252] bpf, sockmap: Skb verdict SK_PASS to self already checked rmem limits Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 174/252] bpf, sockmap: On receive programs try to fast track SK_PASS ingress Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 175/252] bpf, sockmap: Use truesize with sk_rmem_schedule() Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 176/252] bpf, sockmap: Avoid returning unneeded EAGAIN when redirecting to self Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 177/252] efi/arm: set HSCTLR Thumb2 bit correctly for HVC calls from HYP Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 178/252] counter/ti-eqep: Fix regmap max_register Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 179/252] efi/x86: Free efi_pgd with free_pages() Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 180/252] sched/fair: Fix overutilized update in enqueue_task_fair() Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 181/252] sched: Fix data-race in wakeup Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 182/252] sched: Fix rq->nr_iowait ordering Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 183/252] libfs: fix error cast of negative value in simple_attr_write() Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 184/252] afs: Fix speculative status fetch going out of order wrt to modifications Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 185/252] HID: logitech-hidpp: Add PID for MX Anywhere 2 Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 186/252] HID: mcp2221: Fix GPIO output handling Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 187/252] HID: logitech-dj: Handle quad/bluetooth keyboards with a builtin trackpad Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 188/252] HID: logitech-dj: Fix Dinovo Mini when paired with a MX5x00 receiver Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 189/252] speakup: Do not let the line discipline be used several times Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 190/252] ALSA: firewire: Clean up a locking issue in copy_resp_to_buf() Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 191/252] ALSA: usb-audio: Add delay quirk for all Logitech USB devices Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 192/252] ALSA: ctl: fix error path at adding user-defined element set Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 193/252] ALSA: mixart: Fix mutex deadlock Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 194/252] ALSA: hda/realtek - Add supported for Lenovo ThinkPad Headset Button Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 195/252] ALSA: hda/realtek - Add supported mute Led for HP Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 196/252] ALSA: hda/realtek: Add some Clove SSID in the ALC293(ALC1220) Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 197/252] ALSA: hda/realtek - HP Headset Mic cant detect after boot Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 198/252] tty: serial: imx: fix potential deadlock Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 199/252] tty: serial: imx: keep console clocks always on Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 200/252] HID: logitech-dj: Fix an error in mse_bluetooth_descriptor Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 201/252] efivarfs: fix memory leak in efivarfs_create() Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 202/252] staging: rtl8723bs: Add 024c:0627 to the list of SDIO device-ids Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 203/252] staging: mt7621-pci: avoid to request pci bus resources Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 204/252] iio: light: fix kconfig dependency bug for VCNL4035 Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 205/252] ext4: fix bogus warning in ext4_update_dx_flag() Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 206/252] xfs: fix forkoff miscalculation related to XFS_LITINO(mp) Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 207/252] ACPI: fan: Initialize performance state sysfs attribute Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 208/252] iio: accel: kxcjk1013: Replace is_smo8500_device with an acpi_type enum Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 209/252] iio: accel: kxcjk1013: Add support for KIOX010A ACPI DSM for setting tablet-mode Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 210/252] iio: adc: mediatek: fix unset field Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 211/252] iio: cros_ec: Use default frequencies when EC returns invalid information Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 212/252] iio: imu: st_lsm6dsx: set 10ms as min shub slave timeout Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 213/252] iio/adc: ingenic: Fix AUX/VBAT readings when touchscreen is used Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 214/252] iio/adc: ingenic: Fix battery VREF for JZ4770 SoC Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 215/252] iio: adc: stm32-adc: fix a regression when using dma and irq Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 216/252] serial: ar933x_uart: disable clk on error handling path in probe Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 217/252] arm64: dts: agilex/stratix10: Fix qspi node compatible Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 218/252] spi: lpspi: Fix use-after-free on unbind Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 219/252] spi: Introduce device-managed SPI controller allocation Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 220/252] spi: npcm-fiu: Dont leak SPI master in probe error path Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 221/252] spi: bcm2835aux: Fix use-after-free on unbind Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 222/252] regulator: pfuze100: limit pfuze-support-disable-sw to pfuze{100,200} Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 223/252] regulator: fix memory leak with repeated set_machine_constraints() Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 224/252] regulator: avoid resolve_supply() infinite recursion Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 225/252] regulator: workaround self-referent regulators Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 226/252] gfs2: Fix regression in freeze_go_sync Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 227/252] xtensa: fix TLBTEMP area placement Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 228/252] xtensa: disable preemption around cache alias management calls Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 229/252] mac80211: minstrel: remove deferred sampling code Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 230/252] mac80211: minstrel: fix tx status processing corner case Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 231/252] mac80211: free sta in sta_info_insert_finish() on errors Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 232/252] s390: fix system call exit path Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 233/252] s390/cpum_sf.c: fix file permission for cpum_sfb_size Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 234/252] s390/dasd: fix null pointer dereference for ERP requests Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 235/252] Drivers: hv: vmbus: Allow cleanup of VMBUS_CONNECT_CPU if disconnected Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 236/252] drm/amd/display: Add missing pflip irq for dcn2.0 Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 237/252] drm/i915: Handle max_bpc==16 Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 238/252] drm/i915/tgl: Fix Media power gate sequence Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 239/252] io_uring: dont double complete failed reissue request Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 240/252] mmc: sdhci-pci: Prefer SDR25 timing for High Speed mode for BYT-based Intel controllers Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 241/252] mmc: sdhci-of-arasan: Allow configuring zero tap values Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 242/252] mmc: sdhci-of-arasan: Use Mask writes for Tap delays Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 243/252] mmc: sdhci-of-arasan: Issue DLL reset explicitly Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 244/252] blk-cgroup: fix a hd_struct leak in blkcg_fill_root_iostats Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 245/252] ptrace: Set PF_SUPERPRIV when checking capability Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 246/252] seccomp: " Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 247/252] fanotify: fix logic of reporting name info with watched parent Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 248/252] x86/microcode/intel: Check patch signature before saving microcode for early loading Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 249/252] mm: never attempt async page lock if weve transferred data already Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 250/252] mm: fix readahead_page_batch for retry entries Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 251/252] mm: memcg/slab: fix root memcg vmstats Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 252/252] mm/userfaultfd: do not access vma->vm_mm after calling handle_userfault() Greg Kroah-Hartman
2020-11-23 22:36 ` [PATCH 5.9 000/252] 5.9.11-rc1 review Guenter Roeck
2020-11-24 20:28   ` Greg Kroah-Hartman
2020-11-24  0:31 ` Shuah Khan
2020-11-24 20:28   ` Greg Kroah-Hartman
2020-11-24  6:11 ` Naresh Kamboju
2020-11-24 20:28   ` 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=20201123121836.995530313@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=joel@jms.id.au \
    --cc=kuba@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sam@mendozajonas.com \
    --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).