stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Brett Creeley <brett.creeley@intel.com>,
	Gurucharan G <gurucharanx.g@intel.com>,
	Tony Nguyen <anthony.l.nguyen@intel.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.10 202/236] ice: Only lock to update netdev dev_addr
Date: Mon, 13 Sep 2021 15:15:07 +0200	[thread overview]
Message-ID: <20210913131107.255415049@linuxfoundation.org> (raw)
In-Reply-To: <20210913131100.316353015@linuxfoundation.org>

From: Brett Creeley <brett.creeley@intel.com>

[ Upstream commit b357d9717be7f95fde2c6c4650b186a995b71e59 ]

commit 3ba7f53f8bf1 ("ice: don't remove netdev->dev_addr from uc sync
list") introduced calls to netif_addr_lock_bh() and
netif_addr_unlock_bh() in the driver's ndo_set_mac() callback. This is
fine since the driver is updated the netdev's dev_addr, but since this
is a spinlock, the driver cannot sleep when the lock is held.
Unfortunately the functions to add/delete MAC filters depend on a mutex.
This was causing a trace with the lock debug kernel config options
enabled when changing the mac address via iproute.

[  203.273059] BUG: sleeping function called from invalid context at kernel/locking/mutex.c:281
[  203.273065] in_atomic(): 1, irqs_disabled(): 0, non_block: 0, pid: 6698, name: ip
[  203.273068] Preemption disabled at:
[  203.273068] [<ffffffffc04aaeab>] ice_set_mac_address+0x8b/0x1c0 [ice]
[  203.273097] CPU: 31 PID: 6698 Comm: ip Tainted: G S      W I       5.14.0-rc4 #2
[  203.273100] Hardware name: Intel Corporation S2600WFT/S2600WFT, BIOS SE5C620.86B.02.01.0010.010620200716 01/06/2020
[  203.273102] Call Trace:
[  203.273107]  dump_stack_lvl+0x33/0x42
[  203.273113]  ? ice_set_mac_address+0x8b/0x1c0 [ice]
[  203.273124]  ___might_sleep.cold.150+0xda/0xea
[  203.273131]  mutex_lock+0x1c/0x40
[  203.273136]  ice_remove_mac+0xe3/0x180 [ice]
[  203.273155]  ? ice_fltr_add_mac_list+0x20/0x20 [ice]
[  203.273175]  ice_fltr_prepare_mac+0x43/0xa0 [ice]
[  203.273194]  ice_set_mac_address+0xab/0x1c0 [ice]
[  203.273206]  dev_set_mac_address+0xb8/0x120
[  203.273210]  dev_set_mac_address_user+0x2c/0x50
[  203.273212]  do_setlink+0x1dd/0x10e0
[  203.273217]  ? __nla_validate_parse+0x12d/0x1a0
[  203.273221]  __rtnl_newlink+0x530/0x910
[  203.273224]  ? __kmalloc_node_track_caller+0x17f/0x380
[  203.273230]  ? preempt_count_add+0x68/0xa0
[  203.273236]  ? _raw_spin_lock_irqsave+0x1f/0x30
[  203.273241]  ? kmem_cache_alloc_trace+0x4d/0x440
[  203.273244]  rtnl_newlink+0x43/0x60
[  203.273245]  rtnetlink_rcv_msg+0x13a/0x380
[  203.273248]  ? rtnl_calcit.isra.40+0x130/0x130
[  203.273250]  netlink_rcv_skb+0x4e/0x100
[  203.273256]  netlink_unicast+0x1a2/0x280
[  203.273258]  netlink_sendmsg+0x242/0x490
[  203.273260]  sock_sendmsg+0x58/0x60
[  203.273263]  ____sys_sendmsg+0x1ef/0x260
[  203.273265]  ? copy_msghdr_from_user+0x5c/0x90
[  203.273268]  ? ____sys_recvmsg+0xe6/0x170
[  203.273270]  ___sys_sendmsg+0x7c/0xc0
[  203.273272]  ? copy_msghdr_from_user+0x5c/0x90
[  203.273274]  ? ___sys_recvmsg+0x89/0xc0
[  203.273276]  ? __netlink_sendskb+0x50/0x50
[  203.273278]  ? mod_objcg_state+0xee/0x310
[  203.273282]  ? __dentry_kill+0x114/0x170
[  203.273286]  ? get_max_files+0x10/0x10
[  203.273288]  __sys_sendmsg+0x57/0xa0
[  203.273290]  do_syscall_64+0x37/0x80
[  203.273295]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[  203.273296] RIP: 0033:0x7f8edf96e278
[  203.273298] Code: 89 02 48 c7 c0 ff ff ff ff eb b5 0f 1f 80 00 00 00 00 f3 0f 1e fa 48 8d 05 25 63 2c 00 8b 00 85 c0 75 17 b8 2e 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 58 c3 0f 1f 80 00 00 00 00 41 54 41 89 d4 55
[  203.273300] RSP: 002b:00007ffcb8bdac08 EFLAGS: 00000246 ORIG_RAX: 000000000000002e
[  203.273303] RAX: ffffffffffffffda RBX: 000000006115e0ae RCX: 00007f8edf96e278
[  203.273304] RDX: 0000000000000000 RSI: 00007ffcb8bdac70 RDI: 0000000000000003
[  203.273305] RBP: 0000000000000000 R08: 0000000000000001 R09: 00007ffcb8bda5b0
[  203.273306] R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000001
[  203.273306] R13: 0000555e10092020 R14: 0000000000000000 R15: 0000000000000005

Fix this by only locking when changing the netdev->dev_addr. Also, make
sure to restore the old netdev->dev_addr on any failures.

Fixes: 3ba7f53f8bf1 ("ice: don't remove netdev->dev_addr from uc sync list")
Signed-off-by: Brett Creeley <brett.creeley@intel.com>
Tested-by: Gurucharan G <gurucharanx.g@intel.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/net/ethernet/intel/ice/ice_main.c | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/drivers/net/ethernet/intel/ice/ice_main.c b/drivers/net/ethernet/intel/ice/ice_main.c
index a46780570cd9..5d0dc1f811e0 100644
--- a/drivers/net/ethernet/intel/ice/ice_main.c
+++ b/drivers/net/ethernet/intel/ice/ice_main.c
@@ -4879,6 +4879,7 @@ static int ice_set_mac_address(struct net_device *netdev, void *pi)
 	struct ice_hw *hw = &pf->hw;
 	struct sockaddr *addr = pi;
 	enum ice_status status;
+	u8 old_mac[ETH_ALEN];
 	u8 flags = 0;
 	int err = 0;
 	u8 *mac;
@@ -4901,8 +4902,13 @@ static int ice_set_mac_address(struct net_device *netdev, void *pi)
 	}
 
 	netif_addr_lock_bh(netdev);
+	ether_addr_copy(old_mac, netdev->dev_addr);
+	/* change the netdev's MAC address */
+	memcpy(netdev->dev_addr, mac, netdev->addr_len);
+	netif_addr_unlock_bh(netdev);
+
 	/* Clean up old MAC filter. Not an error if old filter doesn't exist */
-	status = ice_fltr_remove_mac(vsi, netdev->dev_addr, ICE_FWD_TO_VSI);
+	status = ice_fltr_remove_mac(vsi, old_mac, ICE_FWD_TO_VSI);
 	if (status && status != ICE_ERR_DOES_NOT_EXIST) {
 		err = -EADDRNOTAVAIL;
 		goto err_update_filters;
@@ -4925,13 +4931,12 @@ err_update_filters:
 	if (err) {
 		netdev_err(netdev, "can't set MAC %pM. filter update failed\n",
 			   mac);
+		netif_addr_lock_bh(netdev);
+		ether_addr_copy(netdev->dev_addr, old_mac);
 		netif_addr_unlock_bh(netdev);
 		return err;
 	}
 
-	/* change the netdev's MAC address */
-	memcpy(netdev->dev_addr, mac, netdev->addr_len);
-	netif_addr_unlock_bh(netdev);
 	netdev_dbg(vsi->netdev, "updated MAC address to %pM\n",
 		   netdev->dev_addr);
 
-- 
2.30.2




  parent reply	other threads:[~2021-09-13 13:46 UTC|newest]

Thread overview: 250+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-13 13:11 [PATCH 5.10 000/236] 5.10.65-rc1 review Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 001/236] locking/mutex: Fix HANDOFF condition Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 002/236] regmap: fix the offset of register error log Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 003/236] regulator: tps65910: Silence deferred probe error Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 004/236] crypto: mxs-dcp - Check for DMA mapping errors Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 005/236] sched/deadline: Fix reset_on_fork reporting of DL tasks Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 006/236] power: supply: axp288_fuel_gauge: Report register-address on readb / writeb errors Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 007/236] crypto: omap-sham - clear dma flags only after omap_sham_update_dma_stop() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 008/236] sched/deadline: Fix missing clock update in migrate_task_rq_dl() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 009/236] rcu/tree: Handle VM stoppage in stall detection Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 010/236] EDAC/mce_amd: Do not load edac_mce_amd module on guests Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 011/236] posix-cpu-timers: Force next expiration recalc after itimer reset Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 012/236] hrtimer: Avoid double reprogramming in __hrtimer_start_range_ns() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 013/236] hrtimer: Ensure timerfd notification for HIGHRES=n Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 014/236] udf: Check LVID earlier Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 015/236] udf: Fix iocharset=utf8 mount option Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 016/236] isofs: joliet: " Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 017/236] bcache: add proper error unwinding in bcache_device_init Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 018/236] blk-throtl: optimize IOPS throttle for large IO scenarios Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 019/236] nvme-tcp: dont update queue count when failing to set io queues Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 020/236] nvme-rdma: " Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 021/236] nvmet: pass back cntlid on successful completion Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 022/236] power: supply: smb347-charger: Add missing pin control activation Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 023/236] power: supply: max17042_battery: fix typo in MAx17042_TOFF Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 024/236] s390/cio: add dev_busid sysfs entry for each subchannel Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 025/236] s390/zcrypt: fix wrong offset index for APKA master key valid state Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 026/236] libata: fix ata_host_start() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 027/236] crypto: omap - Fix inconsistent locking of device lists Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 028/236] crypto: qat - do not ignore errors from enable_vf2pf_comms() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 029/236] crypto: qat - handle both source of interrupt in VF ISR Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 030/236] crypto: qat - fix reuse of completion variable Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 031/236] crypto: qat - fix naming for init/shutdown VF to PF notifications Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 032/236] crypto: qat - do not export adf_iov_putmsg() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 033/236] fcntl: fix potential deadlock for &fasync_struct.fa_lock Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 034/236] udf_get_extendedattr() had no boundary checks Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 035/236] s390/kasan: fix large PMD pages address alignment check Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 036/236] s390/pci: fix misleading rc in clp_set_pci_fn() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 037/236] s390/debug: keep debug data on resize Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 038/236] s390/debug: fix debug area life cycle Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 039/236] s390/ap: fix state machine hang after failure to enable irq Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 040/236] power: supply: cw2015: use dev_err_probe to allow deferred probe Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 041/236] m68k: emu: Fix invalid free in nfeth_cleanup() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 042/236] sched/numa: Fix is_core_idle() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 043/236] sched: Fix UCLAMP_FLAG_IDLE setting Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 044/236] rcu: Fix to include first blocked task in stall warning Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 045/236] rcu: Add lockdep_assert_irqs_disabled() to rcu_sched_clock_irq() and callees Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 046/236] rcu: Fix stall-warning deadlock due to non-release of rcu_node ->lock Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 047/236] m68k: Fix invalid RMW_INSNS on CPUs that lack CAS Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 048/236] block: return ELEVATOR_DISCARD_MERGE if possible Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 049/236] spi: spi-fsl-dspi: Fix issue with uninitialized dma_slave_config Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 050/236] spi: spi-pic32: " Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 051/236] genirq/timings: Fix error return code in irq_timings_test_irqs() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 052/236] irqchip/loongson-pch-pic: Improve edge triggered interrupt support Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 053/236] lib/mpi: use kcalloc in mpi_resize Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 054/236] clocksource/drivers/sh_cmt: Fix wrong setting if dont request IRQ for clock source channel Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 055/236] block: nbd: add sanity check for first_minor Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 056/236] spi: coldfire-qspi: Use clk_disable_unprepare in the remove function Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 057/236] irqchip/gic-v3: Fix priority comparison when non-secure priorities are used Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 058/236] crypto: qat - use proper type for vf_mask Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 059/236] certs: Trigger creation of RSA module signing key if its not an RSA key Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 060/236] tpm: ibmvtpm: Avoid error message when process gets signal while waiting Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 061/236] x86/mce: Defer processing of early errors Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 062/236] spi: davinci: invoke chipselect callback Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 063/236] blk-crypto: fix check for too-large dun_bytes Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 064/236] regulator: vctrl: Use locked regulator_get_voltage in probe path Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 065/236] regulator: vctrl: Avoid lockdep warning in enable/disable ops Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 066/236] spi: sprd: Fix the wrong WDG_LOAD_VAL Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 067/236] spi: spi-zynq-qspi: use wait_for_completion_timeout to make zynq_qspi_exec_mem_op not interruptible Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 068/236] EDAC/i10nm: Fix NVDIMM detection Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 069/236] drm/panfrost: Fix missing clk_disable_unprepare() on error in panfrost_clk_init() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 070/236] drm/gma500: Fix end of loop tests for list_for_each_entry Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 071/236] ASoC: mediatek: mt8183: Fix Unbalanced pm_runtime_enable in mt8183_afe_pcm_dev_probe Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 072/236] media: TDA1997x: enable EDID support Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 073/236] leds: is31fl32xx: Fix missing error code in is31fl32xx_parse_dt() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 074/236] soc: rockchip: ROCKCHIP_GRF should not default to y, unconditionally Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 075/236] media: cxd2880-spi: Fix an error handling path Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 076/236] drm/of: free the right object Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 077/236] bpf: Fix a typo of reuseport map in bpf.h Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 078/236] bpf: Fix potential memleak and UAF in the verifier Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 079/236] drm/of: free the iterator object on failure Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 080/236] gve: fix the wrong AdminQ buffer overflow check Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 081/236] libbpf: Fix the possible memory leak on error Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 082/236] ARM: dts: aspeed-g6: Fix HVI3C function-group in pinctrl dtsi Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 083/236] arm64: dts: renesas: r8a77995: draak: Remove bogus adv7511w properties Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 084/236] i40e: improve locking of mac_filter_hash Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 085/236] soc: qcom: rpmhpd: Use corner in power_off Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 086/236] libbpf: Fix removal of inner map in bpf_object__create_map Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 087/236] gfs2: Fix memory leak of object lsi on error return path Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 088/236] firmware: fix theoretical UAF race with firmware cache and resume Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 089/236] driver core: Fix error return code in really_probe() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 090/236] ionic: cleanly release devlink instance Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 091/236] media: dvb-usb: fix uninit-value in dvb_usb_adapter_dvb_init Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 092/236] media: dvb-usb: fix uninit-value in vp702x_read_mac_addr Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 093/236] media: dvb-usb: Fix error handling in dvb_usb_i2c_init Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 094/236] media: go7007: fix memory leak in go7007_usb_probe Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 095/236] media: go7007: remove redundant initialization Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 096/236] media: rockchip/rga: use pm_runtime_resume_and_get() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 097/236] media: rockchip/rga: fix error handling in probe Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 098/236] media: coda: fix frame_mem_ctrl for YUV420 and YVU420 formats Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 099/236] media: atomisp: fix the uninitialized use and rename "retvalue" Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 100/236] Bluetooth: sco: prevent information leak in sco_conn_defer_accept() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 101/236] 6lowpan: iphc: Fix an off-by-one check of array index Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 102/236] drm/amdgpu/acp: Make PM domain really work Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 103/236] tcp: seq_file: Avoid skipping sk during tcp_seek_last_pos Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 104/236] ARM: dts: meson8: Use a higher default GPU clock frequency Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 105/236] ARM: dts: meson8b: odroidc1: Fix the pwm regulator supply properties Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 106/236] ARM: dts: meson8b: mxq: " Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 107/236] ARM: dts: meson8b: ec100: " Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 108/236] net/mlx5e: Prohibit inner indir TIRs in IPoIB Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 109/236] net/mlx5e: Block LRO if firmware asks for tunneled LRO Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 110/236] cgroup/cpuset: Fix a partition bug with hotplug Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 111/236] drm: mxsfb: Enable recovery on underflow Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 112/236] drm: mxsfb: Increase number of outstanding requests on V4 and newer HW Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 113/236] drm: mxsfb: Clear FIFO_CLEAR bit Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 114/236] net: cipso: fix warnings in netlbl_cipsov4_add_std Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 115/236] Bluetooth: mgmt: Fix wrong opcode in the response for add_adv cmd Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 116/236] arm64: dts: renesas: rzg2: Convert EtherAVB to explicit delay handling Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 117/236] arm64: dts: renesas: hihope-rzg2-ex: Add EtherAVB internal rx delay Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 118/236] devlink: Break parameter notification sequence to be before/after unload/load driver Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 119/236] net/mlx5: Fix missing return value in mlx5_devlink_eswitch_inline_mode_set() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 120/236] i2c: highlander: add IRQ check Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 121/236] leds: lt3593: Put fwnode in any case during ->probe() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 122/236] leds: trigger: audio: Add an activate callback to ensure the initial brightness is set Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 123/236] media: em28xx-input: fix refcount bug in em28xx_usb_disconnect Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 124/236] media: venus: venc: Fix potential null pointer dereference on pointer fmt Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 125/236] PCI: PM: Avoid forcing PCI_D0 for wakeup reasons inconsistently Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 126/236] PCI: PM: Enable PME if it can be signaled from D3cold Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 127/236] bpf, samples: Add missing mprog-disable to xdp_redirect_cpus optstring Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 128/236] soc: qcom: smsm: Fix missed interrupts if state changes while masked Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 129/236] debugfs: Return error during {full/open}_proxy_open() on rmmod Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 130/236] Bluetooth: increase BTNAMSIZ to 21 chars to fix potential buffer overflow Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 131/236] PM: EM: Increase energy calculation precision Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 132/236] selftests/bpf: Fix bpf-iter-tcp4 test to print correctly the dest IP Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 133/236] drm/msm/mdp4: refactor HW revision detection into read_mdp_hw_revision Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 134/236] drm/msm/mdp4: move HW revision detection to earlier phase Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 135/236] drm/msm/dpu: make dpu_hw_ctl_clear_all_blendstages clear necessary LMs Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 136/236] arm64: dts: exynos: correct GIC CPU interfaces address range on Exynos7 Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 137/236] counter: 104-quad-8: Return error when invalid mode during ceiling_write Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 138/236] cgroup/cpuset: Miscellaneous code cleanup Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 139/236] cgroup/cpuset: Fix violation of cpuset locking rule Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 140/236] ASoC: Intel: Fix platform ID matching Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 141/236] Bluetooth: fix repeated calls to sco_sock_kill Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 142/236] drm/msm/dsi: Fix some reference counted resource leaks Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 143/236] net/mlx5: Register to devlink ingress VLAN filter trap Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 144/236] net/mlx5: Fix unpublish devlink parameters Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 145/236] ASoC: rt5682: Implement remove callback Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 146/236] ASoC: rt5682: Properly turn off regulators if wrong device ID Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 147/236] usb: dwc3: meson-g12a: add IRQ check Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 148/236] usb: dwc3: qcom: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 149/236] usb: gadget: udc: at91: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 150/236] usb: gadget: udc: s3c2410: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 151/236] usb: phy: fsl-usb: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 152/236] usb: phy: twl6030: add IRQ checks Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 153/236] usb: gadget: udc: renesas_usb3: Fix soc_device_match() abuse Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 154/236] selftests/bpf: Fix test_core_autosize on big-endian machines Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 155/236] devlink: Clear whole devlink_flash_notify struct Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 156/236] samples: pktgen: add missing IPv6 option to pktgen scripts Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 157/236] Bluetooth: Move shutdown callback before flushing tx and rx queue Greg Kroah-Hartman
2021-09-15 11:18   ` Pavel Machek
2021-09-15 14:32     ` Guenter Roeck
2021-09-16  0:56       ` Sasha Levin
2021-09-16  8:48         ` Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 158/236] PM: cpu: Make notifier chain use a raw_spinlock_t Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 159/236] usb: host: ohci-tmio: add IRQ check Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 160/236] usb: phy: tahvo: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 161/236] libbpf: Re-build libbpf.so when libbpf.map changes Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 162/236] mac80211: Fix insufficient headroom issue for AMSDU Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 163/236] locking/lockdep: Mark local_lock_t Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 164/236] locking/local_lock: Add missing owner initialization Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 165/236] lockd: Fix invalid lockowner cast after vfs_test_lock Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 166/236] nfsd4: Fix forced-expiry locking Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 167/236] arm64: dts: marvell: armada-37xx: Extend PCIe MEM space Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 168/236] clk: staging: correct reference to config IOMEM to config HAS_IOMEM Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 169/236] i2c: synquacer: fix deferred probing Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 170/236] firmware: raspberrypi: Keep count of all consumers Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 171/236] firmware: raspberrypi: Fix a leak in rpi_firmware_get() Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 172/236] usb: gadget: mv_u3d: request_irq() after initializing UDC Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 173/236] mm/swap: consider max pages in iomap_swapfile_add_extent Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 174/236] lkdtm: replace SCSI_DISPATCH_CMD with SCSI_QUEUE_RQ Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 175/236] Bluetooth: add timeout sanity check to hci_inquiry Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 176/236] i2c: iop3xx: fix deferred probing Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 177/236] i2c: s3c2410: fix IRQ check Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 178/236] i2c: fix platform_get_irq.cocci warnings Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 179/236] i2c: hix5hd2: fix IRQ check Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 180/236] gfs2: init system threads before freeze lock Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 181/236] rsi: fix error code in rsi_load_9116_firmware() Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 182/236] rsi: fix an error code in rsi_probe() Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 183/236] ASoC: Intel: kbl_da7219_max98927: Fix format selection for max98373 Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 184/236] ASoC: Intel: Skylake: Leave data as is when invoking TLV IPCs Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 185/236] ASoC: Intel: Skylake: Fix module resource and format selection Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 186/236] mmc: sdhci: Fix issue with uninitialized dma_slave_config Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 187/236] mmc: dw_mmc: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 188/236] mmc: moxart: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 189/236] bpf: Fix possible out of bound write in narrow load handling Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 190/236] CIFS: Fix a potencially linear read overflow Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 191/236] i2c: mt65xx: fix IRQ check Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 192/236] i2c: xlp9xx: fix main " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 193/236] usb: ehci-orion: Handle errors of clk_prepare_enable() in probe Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 194/236] usb: bdc: Fix an error handling path in bdc_probe() when no suitable DMA config is available Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 195/236] usb: bdc: Fix a resource leak in the error handling path of bdc_probe() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 196/236] tty: serial: fsl_lpuart: fix the wrong mapbase value Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 197/236] ASoC: wcd9335: Fix a double irq free in the remove function Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 198/236] ASoC: wcd9335: Fix a memory leak in the error handling path of the probe function Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 199/236] ASoC: wcd9335: Disable irq on slave ports in the remove function Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 200/236] iwlwifi: follow the new inclusive terminology Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 201/236] iwlwifi: skip first element in the WTAS ACPI table Greg Kroah-Hartman
2021-09-13 13:15 ` Greg Kroah-Hartman [this message]
2021-09-13 13:15 ` [PATCH 5.10 203/236] ath6kl: wmi: fix an error code in ath6kl_wmi_sync_point() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 204/236] atlantic: Fix driver resume flow Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 205/236] bcma: Fix memory leak for internally-handled cores Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 206/236] brcmfmac: pcie: fix oops on failure to resume and reprobe Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 207/236] ipv6: make exception cache less predictible Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 208/236] ipv4: " Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 209/236] net: sched: Fix qdisc_rate_table refcount leak when get tcf_block failed Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 210/236] net: qualcomm: fix QCA7000 checksum handling Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 211/236] octeontx2-af: Fix loop in free and unmap counter Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 212/236] octeontx2-af: Fix static code analyzer reported issues Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 213/236] octeontx2-af: Set proper errorcode for IPv4 checksum errors Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 214/236] ipv4: fix endianness issue in inet_rtm_getroute_build_skb() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 215/236] ASoC: rt5682: Remove unused variable in rt5682_i2c_remove() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 216/236] iwlwifi Add support for ax201 in Samsung Galaxy Book Flex2 Alpha Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 217/236] f2fs: guarantee to write dirty data when enabling checkpoint back Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 218/236] time: Handle negative seconds correctly in timespec64_to_ns() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 219/236] io_uring: IORING_OP_WRITE needs hash_reg_file set Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 220/236] bio: fix page leak bio_add_hw_page failure Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 221/236] tty: Fix data race between tiocsti() and flush_to_ldisc() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 222/236] perf/x86/amd/ibs: Extend PERF_PMU_CAP_NO_EXCLUDE to IBS Op Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 223/236] x86/resctrl: Fix a maybe-uninitialized build warning treated as error Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 224/236] Revert "KVM: x86: mmu: Add guest physical address check in translate_gpa()" Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 225/236] KVM: s390: index kvm->arch.idle_mask by vcpu_idx Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 226/236] KVM: x86: Update vCPUs hv_clock before back to guest when tsc_offset is adjusted Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 227/236] KVM: VMX: avoid running vmx_handle_exit_irqoff in case of emulation Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 228/236] KVM: nVMX: Unconditionally clear nested.pi_pending on nested VM-Enter Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 229/236] ARM: dts: at91: add pinctrl-{names, 0} for all gpios Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 230/236] fuse: truncate pagecache on atomic_o_trunc Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 231/236] fuse: flush extending writes Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 232/236] IMA: remove -Wmissing-prototypes warning Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 233/236] IMA: remove the dependency on CRYPTO_MD5 Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 234/236] fbmem: dont allow too huge resolutions Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 235/236] backlight: pwm_bl: Improve bootloader/kernel device handover Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 236/236] clk: kirkwood: Fix a clocking boot regression Greg Kroah-Hartman
2021-09-13 17:07 ` [PATCH 5.10 000/236] 5.10.65-rc1 review Fox Chen
2021-09-13 17:32 ` Florian Fainelli
2021-09-13 20:07 ` Shuah Khan
2021-09-14  6:25 ` Naresh Kamboju
2021-09-14  7:10 ` Pavel Machek
2021-09-14  7:48 ` Jon Hunter
2021-09-14 11:09 ` Samuel Zou
2021-09-14 15:56 ` Guenter Roeck
2021-09-14 18:56 ` Sudip Mukherjee

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=20210913131107.255415049@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=anthony.l.nguyen@intel.com \
    --cc=brett.creeley@intel.com \
    --cc=gurucharanx.g@intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).