All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andrew Morton <akpm@linux-foundation.org>
To: mm-commits@vger.kernel.org,richard120310@gmail.com,jserv@ccns.ncku.edu.tw,akpm@linux-foundation.org,akpm@linux-foundation.org
Subject: [folded-merged] lib-plistc-add-shortcut-for-plist_requeue-fix.patch removed from -mm tree
Date: Sun, 16 Mar 2025 22:24:28 -0700	[thread overview]
Message-ID: <20250317052429.37AE1C4CEEC@smtp.kernel.org> (raw)


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


                 reply	other threads:[~2025-03-17  5:24 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20250317052429.37AE1C4CEEC@smtp.kernel.org \
    --to=akpm@linux-foundation.org \
    --cc=jserv@ccns.ncku.edu.tw \
    --cc=mm-commits@vger.kernel.org \
    --cc=richard120310@gmail.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 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.