* [folded-merged] lib-plistc-add-shortcut-for-plist_requeue-fix.patch removed from -mm tree
@ 2025-03-17 5:24 Andrew Morton
0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2025-03-17 5:24 UTC (permalink / raw)
To: mm-commits, richard120310, jserv, akpm, akpm
The quilt patch titled
Subject: lib-plistc-add-shortcut-for-plist_requeue-fix
has been removed from the -mm tree. Its filename was
lib-plistc-add-shortcut-for-plist_requeue-fix.patch
This patch was dropped because it was folded into lib-plistc-add-shortcut-for-plist_requeue.patch
------------------------------------------------------
From: Andrew Morton <akpm@linux-foundation.org>
Subject: lib-plistc-add-shortcut-for-plist_requeue-fix
Date: Tue Jan 28 07:27:41 PM PST 2025
tweak comment and code layout
Cc: Ching-Chun (Jim) Huang <jserv@ccns.ncku.edu.tw>
Cc: I Hsin Cheng <richard120310@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
lib/plist.c | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
--- a/lib/plist.c~lib-plistc-add-shortcut-for-plist_requeue-fix
+++ a/lib/plist.c
@@ -171,12 +171,13 @@ void plist_requeue(struct plist_node *no
plist_del(node, head);
- /* After plist_del(), iter is the replacement of node
- * , if node was on prio_list, then take shortcut to
- * find node_next instead of looping.
+ /*
+ * After plist_del(), iter is the replacement of the node. If the node
+ * was on prio_list, take shortcut to find node_next instead of looping.
*/
if (!list_empty(&iter->prio_list)) {
- iter = list_entry(iter->prio_list.next, struct plist_node, prio_list);
+ iter = list_entry(iter->prio_list.next, struct plist_node,
+ prio_list);
node_next = &iter->node_list;
goto queue;
}
_
Patches currently in -mm which might be from akpm@linux-foundation.org are
mm-pgtable-convert-some-architectures-to-use-tlb_remove_ptdesc-v2-fix.patch
lib-plistc-add-shortcut-for-plist_requeue.patch
scsi-lpfc-convert-timeouts-to-secs_to_jiffies-fix.patch
signal-avoid-clearing-tif_sigpending-in-recalc_sigpending-if-unset-fix.patch
hung_task-show-the-blocker-task-if-the-task-is-hung-on-mutex-fix.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2025-03-17 5:24 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-17 5:24 [folded-merged] lib-plistc-add-shortcut-for-plist_requeue-fix.patch removed from -mm tree Andrew Morton
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.