stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev,
	"Liam R. Howlett" <Liam.Howlett@oracle.com>,
	Snild Dolkow <snild@sony.com>,
	Peng Zhang <zhangpeng.00@bytedance.com>,
	Andrew Morton <akpm@linux-foundation.org>
Subject: [PATCH 6.2 208/240] maple_tree: fix mas_skip_node() end slot detection
Date: Tue, 28 Mar 2023 16:42:51 +0200	[thread overview]
Message-ID: <20230328142628.357681120@linuxfoundation.org> (raw)
In-Reply-To: <20230328142619.643313678@linuxfoundation.org>

From: Liam R. Howlett <Liam.Howlett@oracle.com>

commit 0fa99fdfe1b38da396d0b2d1496a823bcd0ebea0 upstream.

Patch series "Fix mas_skip_node() for mas_empty_area()", v2.

mas_empty_area() was incorrectly returning an error when there was room.
The issue was tracked down to mas_skip_node() using the incorrect
end-of-slot count.  Instead of using the nodes hard limit, the limit of
data should be used.

mas_skip_node() was also setting the min and max to that of the child
node, which was unnecessary.  Within these limits being set, there was
also a bug that corrupted the maple state's max if the offset was set to
the maximum node pivot.  The bug was without consequence unless there was
a sufficient gap in the next child node which would cause an error to be
returned.

This patch set fixes these errors by removing the limit setting from
mas_skip_node() and uses the mas_data_end() for slot limits, and adds
tests for all failures discovered.


This patch (of 2):

mas_skip_node() is used to move the maple state to the node with a higher
limit.  It does this by walking up the tree and increasing the slot count.
Since slot count may not be able to be increased, it may need to walk up
multiple times to find room to walk right to a higher limit node.  The
limit of slots that was being used was the node limit and not the last
location of data in the node.  This would cause the maple state to be
shifted outside actual data and enter an error state, thus returning
-EBUSY.

The result of the incorrect error state means that mas_awalk() would
return an error instead of finding the allocation space.

The fix is to use mas_data_end() in mas_skip_node() to detect the nodes
data end point and continue walking the tree up until it is safe to move
to a node with a higher limit.

The walk up the tree also sets the maple state limits so remove the buggy
code from mas_skip_node().  Setting the limits had the unfortunate side
effect of triggering another bug if the parent node was full and the there
was no suitable gap in the second last child, but room in the next child.

mas_skip_node() may also be passed a maple state in an error state from
mas_anode_descend() when no allocations are available.  Return on such an
error state immediately.

Link: https://lkml.kernel.org/r/20230307180247.2220303-1-Liam.Howlett@oracle.com
Link: https://lkml.kernel.org/r/20230307180247.2220303-2-Liam.Howlett@oracle.com
Fixes: 54a611b60590 ("Maple Tree: add new data structure")
Signed-off-by: Liam R. Howlett <Liam.Howlett@oracle.com>
Reported-by: Snild Dolkow <snild@sony.com>
  Link: https://lore.kernel.org/linux-mm/cb8dc31a-fef2-1d09-f133-e9f7b9f9e77a@sony.com/
Tested-by: Snild Dolkow <snild@sony.com>
Cc: Peng Zhang <zhangpeng.00@bytedance.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 lib/maple_tree.c |   24 +++++-------------------
 1 file changed, 5 insertions(+), 19 deletions(-)

--- a/lib/maple_tree.c
+++ b/lib/maple_tree.c
@@ -5093,35 +5093,21 @@ static inline bool mas_rewind_node(struc
  */
 static inline bool mas_skip_node(struct ma_state *mas)
 {
-	unsigned char slot, slot_count;
-	unsigned long *pivots;
-	enum maple_type mt;
+	if (mas_is_err(mas))
+		return false;
 
-	mt = mte_node_type(mas->node);
-	slot_count = mt_slots[mt] - 1;
 	do {
 		if (mte_is_root(mas->node)) {
-			slot = mas->offset;
-			if (slot > slot_count) {
+			if (mas->offset >= mas_data_end(mas)) {
 				mas_set_err(mas, -EBUSY);
 				return false;
 			}
 		} else {
 			mas_ascend(mas);
-			slot = mas->offset;
-			mt = mte_node_type(mas->node);
-			slot_count = mt_slots[mt] - 1;
 		}
-	} while (slot > slot_count);
-
-	mas->offset = ++slot;
-	pivots = ma_pivots(mas_mn(mas), mt);
-	if (slot > 0)
-		mas->min = pivots[slot - 1] + 1;
-
-	if (slot <= slot_count)
-		mas->max = pivots[slot];
+	} while (mas->offset >= mas_data_end(mas));
 
+	mas->offset++;
 	return true;
 }
 



  parent reply	other threads:[~2023-03-28 14:53 UTC|newest]

Thread overview: 252+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-28 14:39 [PATCH 6.2 000/240] 6.2.9-rc1 review Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 001/240] interconnect: qcom: osm-l3: fix icc_onecell_data allocation Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 002/240] interconnect: qcom: sm8450: switch to qcom_icc_rpmh_* function Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 003/240] interconnect: qcom: qcm2290: Fix MASTER_SNOC_BIMC_NRT Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 004/240] perf/core: Fix perf_output_begin parameter is incorrectly invoked in perf_event_bpf_output Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 005/240] perf: fix perf_event_context->time Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 006/240] tracing/hwlat: Replace sched_setaffinity with set_cpus_allowed_ptr Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 007/240] drm/amd/display: fix k1 k2 divider programming for phantom streams Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 008/240] drm/amd/display: Remove OTG DIV register write for Virtual signals Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 009/240] drm/amd/display: Fix DP MST sinks removal issue Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 010/240] arm64: dts: freescale: imx8-ss-lsio: Fix flexspi clock order Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 011/240] arm64: dts: qcom: sc8280xp: Add label property to vadc channel nodes Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 012/240] arm64: dts: qcom: sm6375: Add missing power-domain-named to CDSP Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 013/240] arm64: dts: qcom: sm8450: correct WSA2 assigned clocks Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 014/240] arm64: dts: qcom: sm8450: Mark UFS controller as cache coherent Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 015/240] power: supply: bq24190: Fix use after free bug in bq24190_remove due to race condition Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 016/240] power: supply: da9150: Fix use after free bug in da9150_charger_remove " Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 017/240] wifi: mt76: do not run mt76_unregister_device() on unregistered hw Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 018/240] wifi: mt76: connac: do not check WED status for non-mmio devices Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 019/240] efi: earlycon: Reprobe after parsing config tables Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 020/240] arm64: dts: imx8dxl-evk: Disable hibernation mode of AR8031 for EQOS Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 021/240] arm64: dts: imx8dxl-evk: Fix eqos phy reset gpio Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 022/240] ARM: dts: imx6sll: e70k02: fix usbotg1 pinctrl Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 023/240] ARM: dts: imx6sll: e60k02: " Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 024/240] ARM: dts: imx6sl: tolino-shine2hd: " Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 025/240] arm64: dts: imx8mn: specify #sound-dai-cells for SAI nodes Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 026/240] arm64: dts: imx93: add missing #address-cells and #size-cells to i2c nodes Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 027/240] NFS: Fix /proc/PID/io read_bytes for buffered reads Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 028/240] NFS: Correct timing for assigning access cache timestamp Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 029/240] xsk: Add missing overflow check in xdp_umem_reg Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 030/240] iavf: fix inverted Rx hash condition leading to disabled hash Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 031/240] iavf: fix non-tunneled IPv6 UDP packet type and hashing Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 032/240] iavf: do not track VLAN 0 filters Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 033/240] intel/igbvf: free irq on the error path in igbvf_request_msix() Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 034/240] igbvf: Regard vf reset nack as success Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 035/240] igc: fix the validation logic for taprios gate list Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 036/240] i2c: imx-lpi2c: check only for enabled interrupt flags Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 037/240] i2c: mxs: ensure that DMA buffers are safe for DMA Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 038/240] i2c: hisi: Only use the completion interrupt to finish the transfer Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 039/240] scsi: scsi_dh_alua: Fix memleak for qdata in alua_activate() Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 040/240] nfsd: dont replace page in rq_pages if its a continuation of last page Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 041/240] net: dsa: b53: mmap: fix device tree support Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 042/240] net: usb: smsc95xx: Limit packet length to skb->len Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 043/240] efi/libstub: smbios: Use length member instead of record struct size Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 044/240] arm64: efi: Use SMBIOS processor version to key off Ampere quirk Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 045/240] qed/qed_sriov: guard against NULL derefs from qed_iov_get_vf_info Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 046/240] xirc2ps_cs: Fix use after free bug in xirc2ps_detach Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 047/240] net: phy: Ensure state transitions are processed from phy_stop() Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 048/240] net: mdio: fix owner field for mdio buses registered using device-tree Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 049/240] net: mdio: fix owner field for mdio buses registered using ACPI Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 050/240] net: stmmac: Fix for mismatched host/device DMA address width Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 051/240] thermal/drivers/mellanox: Use generic thermal_zone_get_trip() function Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 052/240] mlxsw: core_thermal: Fix fan speed in maximum cooling state Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 053/240] drm/i915/fbdev: lock the fbdev obj before vma pin Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 054/240] drm/i915/mtl: Disable MC6 for MTL A step Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 055/240] drm/i915/guc: Rename GuC register state capture node to be more obvious Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 056/240] drm/i915/guc: Fix missing ecodes Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 057/240] drm/i915/gt: perform uc late init after probe error injection Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 058/240] drm/i915: Fix format for perf_limit_reasons Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 059/240] drm/i915: Update vblank timestamping stuff on seamless M/N change Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 060/240] net: dsa: report rx_bytes unadjusted for ETH_HLEN Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 061/240] net: qcom/emac: Fix use after free bug in emac_remove due to race condition Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 062/240] net: usb: lan78xx: Limit packet length to skb->len Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 063/240] net/ps3_gelic_net: Fix RX sk_buff length Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 064/240] net/ps3_gelic_net: Use dma_mapping_error Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 065/240] octeontx2-vf: Add missing free for alloc_percpu Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 066/240] bootconfig: Fix testcase to increase max node Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 067/240] keys: Do not cache key in task struct if key is requested from kernel thread Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 068/240] ice: check if VF exists before mode check Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 069/240] iavf: fix hang on reboot with ice Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 070/240] i40e: fix flow director packet filter programming Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 071/240] bpf: Adjust insufficient default bpf_jit_limit Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 072/240] net/mlx5e: Set uplink rep as NETNS_LOCAL Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 073/240] net/mlx5e: Block entering switchdev mode with ns inconsistency Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 074/240] net/mlx5: Fix steering rules cleanup Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 075/240] net/mlx5e: Overcome slow response for first macsec ASO WQE Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 076/240] net/mlx5: Read the TC mapping of all priorities on ETS query Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 077/240] net/mlx5: E-Switch, Fix an Oops in error handling code Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 078/240] net: dsa: tag_brcm: legacy: fix daisy-chained switches Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 079/240] atm: idt77252: fix kmemleak when rmmod idt77252 Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 080/240] erspan: do not use skb_mac_header() in ndo_start_xmit() Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 081/240] net: mscc: ocelot: fix stats region batching Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 082/240] net/sonic: use dma_mapping_error() for error check Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 083/240] nvme-tcp: fix nvme_tcp_term_pdu to match spec Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 084/240] mlxsw: spectrum_fid: Fix incorrect local port type Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 085/240] hvc/xen: prevent concurrent accesses to the shared ring Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 086/240] ksmbd: add low bound validation to FSCTL_SET_ZERO_DATA Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 087/240] ksmbd: add low bound validation to FSCTL_QUERY_ALLOCATED_RANGES Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 088/240] ksmbd: fix possible refcount leak in smb2_open() Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 089/240] Bluetooth: hci_sync: Resume adv with no RPA when active scan Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 090/240] Bluetooth: hci_core: Detect if an ACL packet is in fact an ISO packet Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 091/240] Bluetooth: btusb: Remove detection of ISO packets over bulk Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 092/240] Bluetooth: ISO: fix timestamped HCI ISO data packet parsing Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 093/240] Bluetooth: Remove "Power-on" check from Mesh feature Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 094/240] gve: Cache link_speed value from device Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 095/240] net: asix: fix modprobe "sysfs: cannot create duplicate filename" Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 096/240] net: dsa: mt7530: move enabling disabling core clock to mt7530_pll_setup() Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 097/240] net: dsa: mt7530: move lowering TRGMII driving to mt7530_setup() Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 098/240] net: dsa: mt7530: move setting ssc_delta to PHY_INTERFACE_MODE_TRGMII case Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 099/240] net: mdio: thunder: Add missing fwnode_handle_put() Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 100/240] efi/libstub: Use relocated version of kernels struct screen_info Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 101/240] drm/amd/display: Set dcn32 caps.seamless_odm Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 102/240] Bluetooth: btqcomsmd: Fix command timeout after setting BD address Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 103/240] Bluetooth: L2CAP: Fix responding with wrong PDU type Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 104/240] Bluetooth: btsdio: fix use after free bug in btsdio_remove due to unfinished work Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 105/240] Bluetooth: mgmt: Fix MGMT add advmon with RSSI command Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 106/240] Bluetooth: HCI: Fix global-out-of-bounds Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 107/240] platform/chrome: cros_ec_chardev: fix kernel data leak from ioctl Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 108/240] entry: Fix noinstr warning in __enter_from_user_mode() Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 109/240] perf/x86/amd/core: Always clear status for idx Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 110/240] entry/rcu: Check TIF_RESCHED _after_ delayed RCU wake-up Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 111/240] hwmon: fix potential sensor registration fail if of_node is missing Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 112/240] hwmon (it87): Fix voltage scaling for chips with 10.9mV ADCs Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 113/240] scsi: qla2xxx: Synchronize the IOCB count to be in order Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 114/240] scsi: qla2xxx: Perform lockless command completion in abort path Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 115/240] smb3: lower default deferred close timeout to address perf regression Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 116/240] smb3: fix unusable share after force unmount failure Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 117/240] uas: Add US_FL_NO_REPORT_OPCODES for JMicron JMS583Gen 2 Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 118/240] thunderbolt: Use scale field when allocating USB3 bandwidth Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 119/240] thunderbolt: Call tb_check_quirks() after initializing adapters Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 120/240] thunderbolt: Add quirk to disable CLx Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 121/240] thunderbolt: Fix memory leak in margining Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 122/240] thunderbolt: Disable interrupt auto clear for rings Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 123/240] thunderbolt: Add missing UNSET_INBOUND_SBTX for retimer access Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 124/240] thunderbolt: Use const qualifier for `ring_interrupt_index` Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 125/240] thunderbolt: Rename shadowed variables bit to interrupt_bit and auto_clear_bit Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 126/240] ASoC: amd: yp: Add OMEN by HP Gaming Laptop 16z-n000 to quirks Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 127/240] ASoC: Intel: sof_rt5682: Add quirk for Rex board with mx98360a amplifier Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 128/240] scsi: ufs: core: Initialize devfreq synchronously Greg Kroah-Hartman
2023-03-29 17:48   ` Adrien Thierry
2023-03-28 14:41 ` [PATCH 6.2 129/240] ASoC: amd: yc: Add DMI entries to support HP OMEN 16-n0xxx (8A43) Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 130/240] ACPI: x86: Drop quirk for HP Elitebook Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 131/240] ACPI: x86: utils: Add Cezanne to the list for forcing StorageD3Enable Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 132/240] riscv: Bump COMMAND_LINE_SIZE value to 1024 Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 133/240] drm/cirrus: NULL-check pipe->plane.state->fb in cirrus_pipe_update() Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 134/240] HID: cp2112: Fix driver not registering GPIO IRQ chip as threaded Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 135/240] ca8210: fix mac_len negative array access Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 136/240] HID: logitech-hidpp: Add support for Logitech MX Master 3S mouse Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 137/240] HID: intel-ish-hid: ipc: Fix potential use-after-free in work function Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 138/240] m68k: mm: Fix systems with memory at end of 32-bit address space Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 139/240] m68k: Only force 030 bus error if PC not in exception table Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 140/240] selftests/bpf: check that modifier resolves after pointer Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 141/240] cpumask: fix incorrect cpumask scanning result checks Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 142/240] scsi: target: iscsi: Fix an error message in iscsi_check_key() Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 143/240] scsi: qla2xxx: Add option to disable FC2 Target support Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 144/240] scsi: hisi_sas: Check devm_add_action() return value Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 145/240] scsi: ufs: core: Add soft dependency on governor_simpleondemand Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 146/240] scsi: lpfc: Check kzalloc() in lpfc_sli4_cgn_params_read() Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 147/240] scsi: lpfc: Avoid usage of list iterator variable after loop Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 148/240] scsi: mpi3mr: Driver unload crashes host when enhanced logging is enabled Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 149/240] scsi: mpi3mr: Wait for diagnostic save during controller init Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 150/240] scsi: mpi3mr: NVMe command size greater than 8K fails Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 151/240] scsi: mpi3mr: Bad drive in topology results kernel crash Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 152/240] scsi: storvsc: Handle BlockSize change in Hyper-V VHD/VHDX file Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 153/240] platform/x86: int3472: Add GPIOs to Surface Go 3 Board data Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 154/240] net: usb: cdc_mbim: avoid altsetting toggling for Telit FE990 Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 155/240] net: usb: qmi_wwan: add Telit 0x1080 composition Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 156/240] drm/amd/display: Update clock table to include highest clock setting Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 157/240] sh: sanitize the flags on sigreturn Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 158/240] drm/amdgpu: Fix call trace warning and hang when removing amdgpu device Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 159/240] drm/amd: Fix initialization mistake for NBIO 7.3.0 Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 160/240] net/sched: act_mirred: better wording on protection against excessive stack growth Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 161/240] act_mirred: use the backlog for nested calls to mirred ingress Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 162/240] cifs: lock chan_lock outside match_session Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 163/240] cifs: append path to open_enter trace event Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 164/240] cifs: do not poll server interfaces too regularly Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 165/240] cifs: empty interface list when server doesnt support query interfaces Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 166/240] cifs: dump pending mids for all channels in DebugData Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 167/240] cifs: print session id while listing open files Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 168/240] cifs: fix dentry lookups in directory handle cache Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 169/240] x86/mm: Do not shuffle CPU entry areas without KASLR Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 170/240] x86/fpu/xstate: Prevent false-positive warning in __copy_xstate_uabi_buf() Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 171/240] selftests/x86/amx: Add a ptrace test Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 172/240] scsi: core: Add BLIST_SKIP_VPD_PAGES for SKhynix H28U74301AMR Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 173/240] usb: misc: onboard-hub: add support for Microchip USB2517 USB 2.0 hub Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 174/240] usb: dwc2: fix a race, dont power off/on phy for dual-role mode Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 175/240] usb: dwc2: drd: fix inconsistent mode if role-switch-default-mode="host" Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 176/240] usb: dwc2: fix a devres leak in hw_enable upon suspend resume Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 177/240] block/io_uring: pass in issue_flags for uring_cmd task_work handling Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 178/240] usb: gadget: u_audio: dont let userspace block driver unbind Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 179/240] btrfs: zoned: fix btrfs_can_activate_zone() to support DUP profile Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 180/240] Bluetooth: Fix race condition in hci_cmd_sync_clear Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 181/240] efi: sysfb_efi: Fix DMI quirks not working for simpledrm Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 182/240] mm/slab: Fix undefined init_cache_node_node() for NUMA and !SMP Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 183/240] efi/libstub: zboot: Mark zboot EFI application as NX compatible Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 184/240] arm64: efi: Set NX compat flag in PE/COFF header Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 185/240] fscrypt: destroy keyring after security_sb_delete() Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 186/240] fsverity: Remove WQ_UNBOUND from fsverity read workqueue Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 187/240] lockd: set file_lock start and end when decoding nlm4 testargs Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 188/240] arm64: dts: imx8mm-nitrogen-r2: fix WM8960 clock name Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 189/240] igb: revert rtnl_lock() that causes deadlock Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 190/240] dm thin: fix deadlock when swapping to thin device Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 191/240] usb: typec: tcpm: fix create duplicate source-capabilities file Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 192/240] usb: typec: tcpm: fix warning when handle discover_identity message Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 193/240] usb: cdns3: Fix issue with using incorrect PCI device function Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 194/240] usb: cdnsp: Fixes issue with redundant Status Stage Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 195/240] usb: cdnsp: changes PCI Device ID to fix conflict with CNDS3 driver Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 196/240] usb: chipdea: core: fix return -EINVAL if request role is the same with current role Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 197/240] usb: chipidea: core: fix possible concurrent when switch role Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 198/240] usb: dwc3: gadget: Add 1ms delay after end transfer command without IOC Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 199/240] usb: ucsi: Fix NULL pointer deref in ucsi_connector_change() Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 200/240] usb: ucsi_acpi: Increase the command completion timeout Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 201/240] mm: kfence: fix using kfence_metadata without initialization in show_object() Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 202/240] kfence: avoid passing -g for test Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 203/240] io_uring/net: avoid sending -ECONNABORTED on repeated connection requests Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 204/240] io_uring/rsrc: fix null-ptr-deref in io_file_bitmap_get() Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 205/240] Revert "kasan: drop skip_kasan_poison variable in free_pages_prepare" Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 206/240] kcsan: avoid passing -g for test Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 207/240] test_maple_tree: add more testing for mas_empty_area() Greg Kroah-Hartman
2023-03-28 14:42 ` Greg Kroah-Hartman [this message]
2023-03-28 14:42 ` [PATCH 6.2 209/240] ksmbd: fix wrong signingkey creation when encryption is AES256 Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 210/240] ksmbd: set FILE_NAMED_STREAMS attribute in FS_ATTRIBUTE_INFORMATION Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 211/240] ksmbd: dont terminate inactive sessions after a few seconds Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 212/240] ksmbd: return STATUS_NOT_SUPPORTED on unsupported smb2.0 dialect Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 213/240] ksmbd: return unsupported error on smb1 mount Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 214/240] wifi: mac80211: fix qos on mesh interfaces Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 215/240] wifi: mac80211: Serialize ieee80211_handle_wake_tx_queue() Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 216/240] nilfs2: fix kernel-infoleak in nilfs_ioctl_wrap_copy() Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 217/240] drm/bridge: lt8912b: return EPROBE_DEFER if bridge is not found Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 218/240] drm/amd/display: fix wrong index used in dccg32_set_dpstreamclk Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 219/240] drm/meson: fix missing component unbind on bind errors Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 220/240] drm/amdgpu/nv: Apply ASPM quirk on Intel ADL + AMD Navi Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 221/240] drm/i915/active: Fix missing debug object activation Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 222/240] drm/i915: Preserve crtc_state->inherited during state clearing Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 223/240] drm/amdgpu: skip ASIC reset for APUs when go to S4 Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 224/240] drm/amdgpu: reposition the gpu reset checking for reuse Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 225/240] riscv: mm: Fix incorrect ASID argument when flushing TLB Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 226/240] riscv: Handle zicsr/zifencei issues between clang and binutils Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 227/240] tee: amdtee: fix race condition in amdtee_open_session Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 228/240] firmware: arm_scmi: Fix device node validation for mailbox transport Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 229/240] arm64: dts: qcom: sc8280xp-x13s: mark s11b regulator as always-on Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 230/240] arm64: dts: qcom: sc7280: Mark PCIe controller as cache coherent Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 231/240] arm64: dts: qcom: sm8150: Fix the iommu mask used for PCIe controllers Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 232/240] soc: qcom: llcc: Fix slice configuration values for SC8280XP Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 233/240] mm/ksm: fix race with VMA iteration and mm_struct teardown Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 234/240] bus: imx-weim: fix branch condition evaluates to a garbage value Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 235/240] i2c: xgene-slimpro: Fix out-of-bounds bug in xgene_slimpro_i2c_xfer() Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 236/240] dm stats: check for and propagate alloc_percpu failure Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 237/240] dm crypt: add cond_resched() to dmcrypt_write() Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 238/240] dm crypt: avoid accessing uninitialized tasklet Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 239/240] sched/fair: sanitize vruntime of entity being placed Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 240/240] sched/fair: Sanitize vruntime of entity being migrated Greg Kroah-Hartman
2023-03-28 17:02 ` [PATCH 6.2 000/240] 6.2.9-rc1 review Markus Reichelt
2023-03-28 20:47 ` Justin Forbes
2023-03-28 21:03 ` Shuah Khan
2023-03-29  4:11 ` Bagas Sanjaya
2023-03-29  7:56 ` Ron Economos
2023-03-29  8:33 ` Chris Paterson
2023-03-29 11:43 ` Naresh Kamboju
2023-03-29 12:45 ` Conor Dooley
2023-03-29 17:55 ` Florian Fainelli
2023-03-29 21:47 ` Guenter Roeck

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230328142628.357681120@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=Liam.Howlett@oracle.com \
    --cc=akpm@linux-foundation.org \
    --cc=patches@lists.linux.dev \
    --cc=snild@sony.com \
    --cc=stable@vger.kernel.org \
    --cc=zhangpeng.00@bytedance.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).