patches.lists.linux.dev 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, Wengang Wang <wen.gang.wang@oracle.com>,
	Srikanth C S <srikanth.c.s@oracle.com>,
	"Darrick J. Wong" <djwong@kernel.org>,
	Dave Chinner <dchinner@redhat.com>,
	Leah Rumancik <leah.rumancik@gmail.com>
Subject: [PATCH 6.1 086/198] xfs: reserve less log space when recovering log intent items
Date: Tue, 25 Mar 2025 08:20:48 -0400	[thread overview]
Message-ID: <20250325122158.901418724@linuxfoundation.org> (raw)
In-Reply-To: <20250325122156.633329074@linuxfoundation.org>

6.1-stable review patch.  If anyone has any objections, please let me know.

------------------

From: "Darrick J. Wong" <djwong@kernel.org>

[ Upstream commit 3c919b0910906cc69d76dea214776f0eac73358b ]

Wengang Wang reports that a customer's system was running a number of
truncate operations on a filesystem with a very small log.  Contention
on the reserve heads lead to other threads stalling on smaller updates
(e.g.  mtime updates) long enough to result in the node being rebooted
on account of the lack of responsivenes.  The node failed to recover
because log recovery of an EFI became stuck waiting for a grant of
reserve space.  From Wengang's report:

"For the file deletion, log bytes are reserved basing on
xfs_mount->tr_itruncate which is:

    tr_logres = 175488,
    tr_logcount = 2,
    tr_logflags = XFS_TRANS_PERM_LOG_RES,

"You see it's a permanent log reservation with two log operations (two
transactions in rolling mode).  After calculation (xlog_calc_unit_res()
adds space for various log headers), the final log space needed per
transaction changes from  175488 to 180208 bytes.  So the total log
space needed is 360416 bytes (180208 * 2).  [That quantity] of log space
(360416 bytes) needs to be reserved for both run time inode removing
(xfs_inactive_truncate()) and EFI recover (xfs_efi_item_recover())."

In other words, runtime pre-reserves 360K of space in anticipation of
running a chain of two transactions in which each transaction gets a
180K reservation.

Now that we've allocated the transaction, we delete the bmap mapping,
log an EFI to free the space, and roll the transaction as part of
finishing the deferops chain.  Rolling creates a new xfs_trans which
shares its ticket with the old transaction.  Next, xfs_trans_roll calls
__xfs_trans_commit with regrant == true, which calls xlog_cil_commit
with the same regrant parameter.

xlog_cil_commit calls xfs_log_ticket_regrant, which decrements t_cnt and
subtracts t_curr_res from the reservation and write heads.

If the filesystem is fresh and the first transaction only used (say)
20K, then t_curr_res will be 160K, and we give that much reservation
back to the reservation head.  Or if the file is really fragmented and
the first transaction actually uses 170K, then t_curr_res will be 10K,
and that's what we give back to the reservation.

Having done that, we're now headed into the second transaction with an
EFI and 180K of reservation.  Other threads apparently consumed all the
reservation for smaller transactions, such as timestamp updates.

Now let's say the first transaction gets written to disk and we crash
without ever completing the second transaction.  Now we remount the fs,
log recovery finds the unfinished EFI, and calls xfs_efi_recover to
finish the EFI.  However, xfs_efi_recover starts a new tr_itruncate
tranasction, which asks for 360K log reservation.  This is a lot more
than the 180K that we had reserved at the time of the crash.  If the
first EFI to be recovered is also pinning the tail of the log, we will
be unable to free any space in the log, and recovery livelocks.

Wengang confirmed this:

"Now we have the second transaction which has 180208 log bytes reserved
too. The second transaction is supposed to process intents including
extent freeing.  With my hacking patch, I blocked the extent freeing 5
hours. So in that 5 hours, 180208 (NOT 360416) log bytes are reserved.

"With my test case, other transactions (update timestamps) then happen.
As my hacking patch pins the journal tail, those timestamp-updating
transactions finally use up (almost) all the left available log space
(in memory in on disk).  And finally the on disk (and in memory)
available log space goes down near to 180208 bytes.  Those 180208 bytes
are reserved by [the] second (extent-free) transaction [in the chain]."

Wengang and I noticed that EFI recovery starts a transaction, completes
one step of the chain, and commits the transaction without completing
any other steps of the chain.  Those subsequent steps are completed by
xlog_finish_defer_ops, which allocates yet another transaction to
finish the rest of the chain.  That transaction gets the same tr_logres
as the head transaction, but with tr_logcount = 1 to force regranting
with every roll to avoid livelocks.

In other words, we already figured this out in commit 929b92f64048d
("xfs: xfs_defer_capture should absorb remaining transaction
reservation"), but should have applied that logic to each intent item's
recovery function.  For Wengang's case, the xfs_trans_alloc call in the
EFI recovery function should only be asking for a single transaction's
worth of log reservation -- 180K, not 360K.

Quoting Wengang again:

"With log recovery, during EFI recovery, we use tr_itruncate again to
reserve two transactions that needs 360416 log bytes.  Reserving 360416
bytes fails [stalls] because we now only have about 180208 available.

"Actually during the EFI recover, we only need one transaction to free
the extents just like the 2nd transaction at RUNTIME.  So it only needs
to reserve 180208 rather than 360416 bytes.  We have (a bit) more than
180208 available log bytes on disk, so [if we decrease the reservation
to 180K] the reservation goes and the recovery [finishes].  That is to
say: we can fix the log recover part to fix the issue. We can introduce
a new xfs_trans_res xfs_mount->tr_ext_free

{
  tr_logres = 175488,
  tr_logcount = 0,
  tr_logflags = 0,
}

"and use tr_ext_free instead of tr_itruncate in EFI recover."

However, I don't think it quite makes sense to create an entirely new
transaction reservation type to handle single-stepping during log
recovery.  Instead, we should copy the transaction reservation
information in the xfs_mount, change tr_logcount to 1, and pass that
into xfs_trans_alloc.  We know this won't risk changing the min log size
computation since we always ask for a fraction of the reservation for
all known transaction types.

This looks like it's been lurking in the codebase since commit
3d3c8b5222b92, which changed the xfs_trans_reserve call in
xlog_recover_process_efi to use the tr_logcount in tr_itruncate.
That changed the EFI recovery transaction from making a
non-XFS_TRANS_PERM_LOG_RES request for one transaction's worth of log
space to a XFS_TRANS_PERM_LOG_RES request for two transactions worth.

Fixes: 3d3c8b5222b92 ("xfs: refactor xfs_trans_reserve() interface")
Complements: 929b92f64048d ("xfs: xfs_defer_capture should absorb remaining transaction reservation")
Suggested-by: Wengang Wang <wen.gang.wang@oracle.com>
Cc: Srikanth C S <srikanth.c.s@oracle.com>
[djwong: apply the same transformation to all log intent recovery]
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Leah Rumancik <leah.rumancik@gmail.com>
Acked-by: "Darrick J. Wong" <djwong@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 fs/xfs/libxfs/xfs_log_recover.h |   22 ++++++++++++++++++++++
 fs/xfs/xfs_attr_item.c          |    7 ++++---
 fs/xfs/xfs_bmap_item.c          |    4 +++-
 fs/xfs/xfs_extfree_item.c       |    4 +++-
 fs/xfs/xfs_refcount_item.c      |    6 ++++--
 fs/xfs/xfs_rmap_item.c          |    6 ++++--
 6 files changed, 40 insertions(+), 9 deletions(-)

--- a/fs/xfs/libxfs/xfs_log_recover.h
+++ b/fs/xfs/libxfs/xfs_log_recover.h
@@ -131,4 +131,26 @@ void xlog_check_buf_cancel_table(struct
 #define xlog_check_buf_cancel_table(log) do { } while (0)
 #endif
 
+/*
+ * Transform a regular reservation into one suitable for recovery of a log
+ * intent item.
+ *
+ * Intent recovery only runs a single step of the transaction chain and defers
+ * the rest to a separate transaction.  Therefore, we reduce logcount to 1 here
+ * to avoid livelocks if the log grant space is nearly exhausted due to the
+ * recovered intent pinning the tail.  Keep the same logflags to avoid tripping
+ * asserts elsewhere.  Struct copies abound below.
+ */
+static inline struct xfs_trans_res
+xlog_recover_resv(const struct xfs_trans_res *r)
+{
+	struct xfs_trans_res ret = {
+		.tr_logres	= r->tr_logres,
+		.tr_logcount	= 1,
+		.tr_logflags	= r->tr_logflags,
+	};
+
+	return ret;
+}
+
 #endif	/* __XFS_LOG_RECOVER_H__ */
--- a/fs/xfs/xfs_attr_item.c
+++ b/fs/xfs/xfs_attr_item.c
@@ -547,7 +547,7 @@ xfs_attri_item_recover(
 	struct xfs_inode		*ip;
 	struct xfs_da_args		*args;
 	struct xfs_trans		*tp;
-	struct xfs_trans_res		tres;
+	struct xfs_trans_res		resv;
 	struct xfs_attri_log_format	*attrp;
 	struct xfs_attri_log_nameval	*nv = attrip->attri_nameval;
 	int				error;
@@ -618,8 +618,9 @@ xfs_attri_item_recover(
 		goto out;
 	}
 
-	xfs_init_attr_trans(args, &tres, &total);
-	error = xfs_trans_alloc(mp, &tres, total, 0, XFS_TRANS_RESERVE, &tp);
+	xfs_init_attr_trans(args, &resv, &total);
+	resv = xlog_recover_resv(&resv);
+	error = xfs_trans_alloc(mp, &resv, total, 0, XFS_TRANS_RESERVE, &tp);
 	if (error)
 		goto out;
 
--- a/fs/xfs/xfs_bmap_item.c
+++ b/fs/xfs/xfs_bmap_item.c
@@ -457,6 +457,7 @@ xfs_bui_item_recover(
 	struct list_head		*capture_list)
 {
 	struct xfs_bmap_intent		fake = { };
+	struct xfs_trans_res		resv;
 	struct xfs_bui_log_item		*buip = BUI_ITEM(lip);
 	struct xfs_trans		*tp;
 	struct xfs_inode		*ip = NULL;
@@ -482,7 +483,8 @@ xfs_bui_item_recover(
 		return error;
 
 	/* Allocate transaction and do the work. */
-	error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate,
+	resv = xlog_recover_resv(&M_RES(mp)->tr_itruncate);
+	error = xfs_trans_alloc(mp, &resv,
 			XFS_EXTENTADD_SPACE_RES(mp, XFS_DATA_FORK), 0, 0, &tp);
 	if (error)
 		goto err_rele;
--- a/fs/xfs/xfs_extfree_item.c
+++ b/fs/xfs/xfs_extfree_item.c
@@ -598,6 +598,7 @@ xfs_efi_item_recover(
 	struct xfs_log_item		*lip,
 	struct list_head		*capture_list)
 {
+	struct xfs_trans_res		resv;
 	struct xfs_efi_log_item		*efip = EFI_ITEM(lip);
 	struct xfs_mount		*mp = lip->li_log->l_mp;
 	struct xfs_efd_log_item		*efdp;
@@ -620,7 +621,8 @@ xfs_efi_item_recover(
 		}
 	}
 
-	error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate, 0, 0, 0, &tp);
+	resv = xlog_recover_resv(&M_RES(mp)->tr_itruncate);
+	error = xfs_trans_alloc(mp, &resv, 0, 0, 0, &tp);
 	if (error)
 		return error;
 	efdp = xfs_trans_get_efd(tp, efip, efip->efi_format.efi_nextents);
--- a/fs/xfs/xfs_refcount_item.c
+++ b/fs/xfs/xfs_refcount_item.c
@@ -453,6 +453,7 @@ xfs_cui_item_recover(
 	struct xfs_log_item		*lip,
 	struct list_head		*capture_list)
 {
+	struct xfs_trans_res		resv;
 	struct xfs_cui_log_item		*cuip = CUI_ITEM(lip);
 	struct xfs_cud_log_item		*cudp;
 	struct xfs_trans		*tp;
@@ -490,8 +491,9 @@ xfs_cui_item_recover(
 	 * doesn't fit.  We need to reserve enough blocks to handle a
 	 * full btree split on either end of the refcount range.
 	 */
-	error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate,
-			mp->m_refc_maxlevels * 2, 0, XFS_TRANS_RESERVE, &tp);
+	resv = xlog_recover_resv(&M_RES(mp)->tr_itruncate);
+	error = xfs_trans_alloc(mp, &resv, mp->m_refc_maxlevels * 2, 0,
+			XFS_TRANS_RESERVE, &tp);
 	if (error)
 		return error;
 
--- a/fs/xfs/xfs_rmap_item.c
+++ b/fs/xfs/xfs_rmap_item.c
@@ -492,6 +492,7 @@ xfs_rui_item_recover(
 	struct xfs_log_item		*lip,
 	struct list_head		*capture_list)
 {
+	struct xfs_trans_res		resv;
 	struct xfs_rui_log_item		*ruip = RUI_ITEM(lip);
 	struct xfs_map_extent		*rmap;
 	struct xfs_rud_log_item		*rudp;
@@ -519,8 +520,9 @@ xfs_rui_item_recover(
 		}
 	}
 
-	error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate,
-			mp->m_rmap_maxlevels, 0, XFS_TRANS_RESERVE, &tp);
+	resv = xlog_recover_resv(&M_RES(mp)->tr_itruncate);
+	error = xfs_trans_alloc(mp, &resv, mp->m_rmap_maxlevels, 0,
+			XFS_TRANS_RESERVE, &tp);
 	if (error)
 		return error;
 	rudp = xfs_trans_get_rud(tp, ruip);



  parent reply	other threads:[~2025-03-25 12:27 UTC|newest]

Thread overview: 214+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-25 12:19 [PATCH 6.1 000/198] 6.1.132-rc1 review Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 001/198] clockevents/drivers/i8253: Fix stop sequence for timer 0 Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 002/198] sched/isolation: Prevent boot crash when the boot CPU is nohz_full Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 003/198] hrtimer: Use and report correct timerslack values for realtime tasks Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 004/198] fs/ntfs3: Fix shift-out-of-bounds in ntfs_fill_super Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 005/198] fbdev: hyperv_fb: iounmap() the correct memory when removing a device Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 006/198] pinctrl: bcm281xx: Fix incorrect regmap max_registers value Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 007/198] netfilter: nft_ct: Use __refcount_inc() for per-CPU nft_ct_pcpu_template Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 008/198] ice: fix memory leak in aRFS after reset Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 009/198] netfilter: nf_conncount: garbage collection is not skipped when jiffies wrap around Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 010/198] sched: address a potential NULL pointer dereference in the GRED scheduler Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 011/198] wifi: cfg80211: cancel wiphy_work before freeing wiphy Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 012/198] Bluetooth: hci_event: Fix enabling passive scanning Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 013/198] Revert "Bluetooth: hci_core: Fix sleeping function called from invalid context" Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 014/198] net: dsa: mv88e6xxx: Verify after ATU Load ops Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 015/198] net: mctp i2c: Copy headers if cloned Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 016/198] netpoll: hold rcu read lock in __netpoll_send_skb() Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 017/198] drm/hyperv: Fix address space leak when Hyper-V DRM device is removed Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 018/198] Drivers: hv: vmbus: Dont release fb_mmio resource in vmbus_free_mmio() Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 019/198] net/mlx5: handle errors in mlx5_chains_create_table() Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 020/198] eth: bnxt: do not update checksum in bnxt_xdp_build_skb() Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 021/198] net: switchdev: Convert blocking notification chain to a raw one Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 022/198] bonding: fix incorrect MAC address setting to receive NS messages Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 023/198] netfilter: nf_conncount: Fully initialize struct nf_conncount_tuple in insert_tree() Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 024/198] ipvs: prevent integer overflow in do_ip_vs_get_ctl() Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 025/198] net_sched: Prevent creation of classes with TC_H_ROOT Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 026/198] netfilter: nft_exthdr: fix offset with ipv4_find_option() Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 027/198] gre: Fix IPv6 link-local address generation Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 028/198] net: openvswitch: remove misbehaving actions length check Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 029/198] net/mlx5: Bridge, fix the crash caused by LAG state check Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 030/198] net/mlx5e: Prevent bridge link show failure for non-eswitch-allowed devices Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 031/198] nvme-fc: go straight to connecting state when initializing Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 032/198] hrtimers: Mark is_migration_base() with __always_inline Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 033/198] powercap: call put_device() on an error path in powercap_register_control_type() Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 034/198] iscsi_ibft: Fix UBSAN shift-out-of-bounds warning in ibft_attr_show_nic() Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 035/198] scsi: core: Use GFP_NOIO to avoid circular locking dependency Greg Kroah-Hartman
2025-09-11 14:35   ` Jun Eeo
2025-09-11 14:42     ` Greg KH
2025-09-11 14:54       ` Jun Eeo
2025-09-21 17:24         ` Greg KH
2025-03-25 12:19 ` [PATCH 6.1 036/198] scsi: qla1280: Fix kernel oops when debug level > 2 Greg Kroah-Hartman
2025-03-25 12:19 ` [PATCH 6.1 037/198] ACPI: resource: IRQ override for Eluktronics MECH-17 Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 038/198] smb: client: fix noisy when tree connecting to DFS interlink targets Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 039/198] alpha/elf: Fix misc/setarch test of util-linux by removing 32bit support Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 040/198] vboxsf: fix building with GCC 15 Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 041/198] HID: intel-ish-hid: fix the length of MNG_SYNC_FW_CLOCK in doorbell Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 042/198] HID: intel-ish-hid: Send clock sync message immediately after reset Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 043/198] HID: ignore non-functional sensor in HP 5MP Camera Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 044/198] HID: hid-apple: Apple Magic Keyboard a3203 USB-C support Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 045/198] HID: apple: fix up the F6 key on the Omoton KB066 keyboard Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 046/198] sched: Clarify wake_up_q()s write to task->wake_q.next Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 047/198] platform/x86: thinkpad_acpi: Fix invalid fan speed on ThinkPad X120e Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 048/198] platform/x86: thinkpad_acpi: Support for V9 DYTC platform profiles Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 049/198] s390/cio: Fix CHPID "configure" attribute caching Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 050/198] thermal/cpufreq_cooling: Remove structure member documentation Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 051/198] Xen/swiotlb: mark xen_swiotlb_fixup() __init Greg Kroah-Hartman
2025-04-07 18:12   ` Nathan Chancellor
2025-04-14 19:02     ` Salvatore Bonaccorso
2025-04-15  6:38     ` Jürgen Groß
2025-04-22  8:44       ` Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 052/198] ALSA: hda/realtek: Limit mic boost on Positivo ARN50 Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 053/198] ASoC: rsnd: dont indicate warning on rsnd_kctrl_accept_runtime() Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 054/198] ASoC: rsnd: adjust convert rate limitation Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 055/198] ASoC: arizona/madera: use fsleep() in up/down DAPM event delays Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 056/198] ASoC: SOF: Intel: hda: add softdep pre to snd-hda-codec-hdmi module Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 057/198] net: wwan: mhi_wwan_mbim: Silence sequence number glitch errors Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 058/198] nvme-pci: quirk Acer FA100 for non-uniqueue identifiers Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 059/198] nvme-tcp: add basic support for the C2HTermReq PDU Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 060/198] nvmet-rdma: recheck queue state is LIVE in state lock in recv done Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 061/198] sctp: Fix undefined behavior in left shift operation Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 062/198] nvme: only allow entering LIVE from CONNECTING state Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 063/198] ASoC: tas2770: Fix volume scale Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 064/198] ASoC: tas2764: Fix power control mask Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 065/198] ASoC: tas2764: Set the SDOUT polarity correctly Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 066/198] fuse: dont truncate cached, mutated symlink Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 067/198] perf/x86/intel: Use better start period for frequency mode Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 068/198] x86/irq: Define trace events conditionally Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 069/198] mptcp: safety check before fallback Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 070/198] drm/nouveau: Do not override forced connector status Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 071/198] block: fix kmem_cache of name bio-108 already exists Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 072/198] io_uring: return error pointer from io_mem_alloc() Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 073/198] io_uring: add ring freeing helper Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 074/198] mm: add nommu variant of vm_insert_pages() Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 075/198] io_uring: get rid of remap_pfn_range() for mapping rings/sqes Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 076/198] io_uring: dont attempt to mmap larger than what the user asks for Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 077/198] io_uring: fix corner case forgetting to vunmap Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 078/198] xfs: pass refcount intent directly through the log intent code Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 079/198] xfs: pass xfs_extent_free_item " Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 080/198] xfs: fix confusing xfs_extent_item variable names Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 081/198] xfs: pass the xfs_bmbt_irec directly through the log intent code Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 082/198] xfs: pass per-ag references to xfs_free_extent Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 083/198] xfs: validate block number being freed before adding to xefi Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 084/198] xfs: fix bounds check in xfs_defer_agfl_block() Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 085/198] xfs: use deferred frees for btree block freeing Greg Kroah-Hartman
2025-03-25 12:20 ` Greg Kroah-Hartman [this message]
2025-03-25 12:20 ` [PATCH 6.1 087/198] xfs: move the xfs_rtbitmap.c declarations to xfs_rtbitmap.h Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 088/198] xfs: convert rt bitmap extent lengths to xfs_rtbxlen_t Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 089/198] xfs: consider minlen sized extents in xfs_rtallocate_extent_block Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 090/198] xfs: dont leak recovered attri intent items Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 091/198] xfs: make rextslog computation consistent with mkfs Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 092/198] xfs: fix 32-bit truncation in xfs_compute_rextslog Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 093/198] xfs: dont allow overly small or large realtime volumes Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 094/198] xfs: remove unused fields from struct xbtree_ifakeroot Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 095/198] xfs: recompute growfsrtfree transaction reservation while growing rt volume Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 096/198] xfs: force all buffers to be written during btree bulk load Greg Kroah-Hartman
2025-03-25 12:20 ` [PATCH 6.1 097/198] xfs: initialise di_crc in xfs_log_dinode Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 098/198] xfs: add lock protection when remove perag from radix tree Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 099/198] xfs: fix perag leak when growfs fails Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 100/198] xfs: ensure logflagsp is initialized in xfs_bmap_del_extent_real Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 101/198] xfs: update dir3 leaf block metadata after swap Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 102/198] xfs: reset XFS_ATTR_INCOMPLETE filter on node removal Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 103/198] xfs: remove conditional building of rt geometry validator functions Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 104/198] Input: i8042 - swap old quirk combination with new quirk for NHxxRZQ Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 105/198] Input: i8042 - add required quirks for missing old boardnames Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 106/198] Input: i8042 - swap old quirk combination with new quirk for several devices Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 107/198] Input: i8042 - swap old quirk combination with new quirk for more devices Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 108/198] USB: serial: ftdi_sio: add support for Altera USB Blaster 3 Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 109/198] USB: serial: option: add Telit Cinterion FE990B compositions Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 110/198] USB: serial: option: fix Telit Cinterion FE990A name Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 111/198] USB: serial: option: match on interface class for Telit FN990B Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 112/198] x86/microcode/AMD: Fix out-of-bounds on systems with CPU-less NUMA nodes Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 113/198] drm/atomic: Filter out redundant DPMS calls Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 114/198] drm/dp_mst: Fix locking when skipping CSN before topology probing Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 115/198] drm/amd/display: Restore correct backlight brightness after a GPU reset Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 116/198] drm/amd/display: Assign normalized_pix_clk when color depth = 14 Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 117/198] drm/amd/display: Fix slab-use-after-free on hdcp_work Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 118/198] clk: samsung: update PLL locktime for PLL142XX used on FSD platform Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 119/198] ASoC: amd: yc: Support mic on another Lenovo ThinkPad E16 Gen 2 model Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 120/198] qlcnic: fix memory leak issues in qlcnic_sriov_common.c Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 121/198] rust: Disallow BTF generation with Rust + LTO Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 122/198] lib/buildid: Handle memfd_secret() files in build_id_parse() Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 123/198] tcp: fix races in tcp_abort() Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 124/198] tcp: fix forever orphan socket caused by tcp_abort Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 125/198] leds: mlxreg: Use devm_mutex_init() for mutex initialization Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 126/198] ASoC: ops: Consistently treat platform_max as control value Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 127/198] drm/gma500: Add NULL check for pci_gfx_root in mid_get_vbt_data() Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 128/198] ASoC: codecs: wm0010: Fix error handling path in wm0010_spi_probe() Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 129/198] scripts: generate_rust_analyzer: Handle sub-modules with no Makefile Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 130/198] scripts: `make rust-analyzer` for out-of-tree modules Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 131/198] scripts: generate_rust_analyzer: provide `cfg`s for `core` and `alloc` Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 132/198] scripts: generate_rust_analyzer: add missing macros deps Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 133/198] cifs: Fix integer overflow while processing acregmax mount option Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 134/198] cifs: Fix integer overflow while processing acdirmax " Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 135/198] cifs: Fix integer overflow while processing actimeo " Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 136/198] cifs: Fix integer overflow while processing closetimeo " Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 137/198] i2c: ali1535: Fix an error handling path in ali1535_probe() Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 138/198] i2c: ali15x3: Fix an error handling path in ali15x3_probe() Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 139/198] i2c: sis630: Fix an error handling path in sis630_probe() Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 140/198] arm64: mm: Populate vmemmap at the page level if not section aligned Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 141/198] smb3: add support for IAKerb Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 142/198] smb: client: Fix match_session bug preventing session reuse Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 143/198] HID: apple: disable Fn key handling on the Omoton KB066 Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 144/198] nvme-tcp: Fix a C2HTermReq error message Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 145/198] smb: client: fix potential UAF in cifs_dump_full_key() Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 146/198] firmware: imx-scu: fix OF node leak in .probe() Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 147/198] arm64: dts: freescale: tqma8mpql: Fix vqmmc-supply Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 148/198] xfrm_output: Force software GSO only in tunnel mode Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 149/198] soc: imx8m: Remove global soc_uid Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 150/198] soc: imx8m: Use devm_* to simplify probe failure handling Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 151/198] soc: imx8m: Unregister cpufreq and soc dev in cleanup path Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 152/198] ARM: dts: bcm2711: PL011 UARTs are actually r1p5 Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 153/198] RDMA/bnxt_re: Add missing paranthesis in map_qp_id_to_tbl_indx Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 154/198] ARM: OMAP1: select CONFIG_GENERIC_IRQ_CHIP Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 155/198] ARM: dts: bcm2711: Dont mark timer regs unconfigured Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 156/198] RDMA/bnxt_re: Avoid clearing VLAN_ID mask in modify qp path Greg Kroah-Hartman
2025-03-25 12:21 ` [PATCH 6.1 157/198] RDMA/hns: Fix soft lockup during bt pages loop Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 158/198] RDMA/hns: Fix unmatched condition in error path of alloc_user_qp_db() Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 159/198] RDMA/hns: Fix a missing rollback in error path of hns_roce_create_qp_common() Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 160/198] RDMA/hns: Fix wrong value of max_sge_rd Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 161/198] Bluetooth: Fix error code in chan_alloc_skb_cb() Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 162/198] ipv6: Fix memleak of nhc_pcpu_rth_output in fib_check_nh_v6_gw() Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 163/198] ipv6: Set errno after ip_fib_metrics_init() in ip6_route_info_create() Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 164/198] net: atm: fix use after free in lec_send() Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 165/198] net: lwtunnel: fix recursion loops Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 166/198] net/neighbor: add missing policy for NDTPA_QUEUE_LENBYTES Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 167/198] Revert "gre: Fix IPv6 link-local address generation." Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 168/198] i2c: omap: fix IRQ storms Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 169/198] can: rcar_canfd: Fix page entries in the AFL list Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 170/198] can: flexcan: only change CAN state when link up in system PM Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 171/198] can: flexcan: disable transceiver during " Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 172/198] drm/v3d: Dont run jobs that have errors flagged in its fence Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 173/198] regulator: check that dummy regulator has been probed before using it Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 174/198] arm64: dts: freescale: imx8mm-verdin-dahlia: add Microphone Jack to sound card Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 175/198] arm64: dts: rockchip: Add missing PCIe supplies to RockPro64 board dtsi Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 176/198] mmc: sdhci-brcmstb: add cqhci suspend/resume to PM ops Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 177/198] mmc: atmel-mci: Add missing clk_disable_unprepare() Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 178/198] proc: fix UAF in proc_get_inode() Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 179/198] memcg: drain obj stock on cpu hotplug teardown Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 180/198] ARM: shmobile: smp: Enforce shmobile_smp_* alignment Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 181/198] efi/libstub: Avoid physical address 0x0 when doing random allocation Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 182/198] xsk: fix an integer overflow in xp_create_and_assign_umem() Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 183/198] batman-adv: Ignore own maximum aggregation size during RX Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 184/198] soc: qcom: pdr: Fix the potential deadlock Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 185/198] drm/radeon: fix uninitialized size issue in radeon_vce_cs_parse() Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 186/198] drm/amdgpu: Fix JPEG video caps max size for navi1x and raven Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 187/198] ksmbd: fix incorrect validation for num_aces field of smb_acl Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 188/198] drm/amd/display: Use HW lock mgr for PSR1 when only one eDP Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 189/198] mptcp: Fix data stream corruption in the address announcement Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 190/198] netfilter: nft_counter: Use u64_stats_t for statistic Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 191/198] drm/mediatek: Fix coverity issue with unintentional integer overflow Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 192/198] media: mediatek: vcodec: Fix VP8 stateless decoder smatch warning Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 193/198] arm64: dts: rockchip: fix u2phy1_host status for NanoPi R4S Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 194/198] drm/amdgpu: fix use-after-free bug Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 195/198] fs/ntfs3: Change new sparse cluster processing Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 196/198] wifi: iwlwifi: mvm: ensure offloading TID queue exists Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 197/198] mm/migrate: fix shmem xarray update during migration Greg Kroah-Hartman
2025-03-25 12:22 ` [PATCH 6.1 198/198] block, bfq: fix re-introduced UAF in bic_set_bfqq() Greg Kroah-Hartman
2025-03-25 15:22 ` [PATCH 6.1 000/198] 6.1.132-rc1 review Naresh Kamboju
2025-03-25 16:07   ` Dragan Simic
2025-03-26 15:31   ` Jon Hunter
2025-03-25 16:52 ` Florian Fainelli
2025-03-25 18:21 ` Miguel Ojeda
2025-03-25 20:02 ` Pavel Machek
2025-03-25 20:05 ` Pavel Machek

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=20250325122158.901418724@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=dchinner@redhat.com \
    --cc=djwong@kernel.org \
    --cc=leah.rumancik@gmail.com \
    --cc=patches@lists.linux.dev \
    --cc=srikanth.c.s@oracle.com \
    --cc=stable@vger.kernel.org \
    --cc=wen.gang.wang@oracle.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).