linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: <gregkh@linuxfoundation.org>
To: akpm@linux-foundation.org,apw@shadowen.org,aruna.ramakrishna@oracle.com,clameter@sgi.com,gregkh@linuxfoundation.org,khalid.aziz@oracle.com,linux-mm@kvack.org,mel@csn.ul.ie,stephen.s.brennan@oracle.com
Cc: <stable-commits@vger.kernel.org>
Subject: Patch "mm, vmstat: drop zone->lock in /proc/pagetypeinfo" has been added to the 4.9-stable tree
Date: Thu, 27 May 2021 11:23:27 +0200	[thread overview]
Message-ID: <162210740717370@kroah.com> (raw)
In-Reply-To: <20210526174613.339990-1-stephen.s.brennan@oracle.com>


This is a note to let you know that I've just added the patch titled

    mm, vmstat: drop zone->lock in /proc/pagetypeinfo

to the 4.9-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     mm-vmstat-drop-zone-lock-in-proc-pagetypeinfo.patch
and it can be found in the queue-4.9 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.


From foo@baz Thu May 27 11:14:38 AM CEST 2021
From: Stephen Brennan <stephen.s.brennan@oracle.com>
Date: Wed, 26 May 2021 10:46:13 -0700
Subject: mm, vmstat: drop zone->lock in /proc/pagetypeinfo
To: stable@vger.kernel.org
Cc: Stephen Brennan <stephen.s.brennan@oracle.com>, Andrew Morton <akpm@linux-foundation.org>, linux-mm@kvack.org, linux-kernel@vger.kernel.org, Christoph Lameter <clameter@sgi.com>, Mel Gorman <mel@csn.ul.ie>, Andy Whitcroft <apw@shadowen.org>, Aruna Ramakrishna <aruna.ramakrishna@oracle.com>, Khalid Aziz <khalid.aziz@oracle.com>
Message-ID: <20210526174613.339990-1-stephen.s.brennan@oracle.com>

From: Stephen Brennan <stephen.s.brennan@oracle.com>

Commit 93b3a674485f6a4b8ffff85d1682d5e8b7c51560 upstream

Commit 93b3a674485f ("mm,vmstat: reduce zone->lock holding time by
/proc/pagetypeinfo") upstream caps the number of iterations over each
free_list at 100,000, and also drops the zone->lock in between each
migrate type. Capping the iteration count alters the file contents in
some cases, which means this approach may not be suitable for stable
backports.

However, dropping zone->lock in between migrate types (and, as a result,
page orders) will not change the /proc/pagetypeinfo file contents. It
can significantly reduce the length of time spent with IRQs disabled,
which can prevent missed interrupts or soft lockups which we have
observed on systems with particularly large memory.

Thus, this commit is a modified version of the upstream one which only
drops the lock in between migrate types.

Fixes: 467c996c1e19 ("Print out statistics in relation to fragmentation avoidance to /proc/pagetypeinfo")
Signed-off-by: Stephen Brennan <stephen.s.brennan@oracle.com>
Reviewed-by: Aruna Ramakrishna <aruna.ramakrishna@oracle.com>
Reviewed-by: Khalid Aziz <khalid.aziz@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 mm/vmstat.c |    3 +++
 1 file changed, 3 insertions(+)

--- a/mm/vmstat.c
+++ b/mm/vmstat.c
@@ -1178,6 +1178,9 @@ static void pagetypeinfo_showfree_print(
 			list_for_each(curr, &area->free_list[mtype])
 				freecount++;
 			seq_printf(m, "%6lu ", freecount);
+			spin_unlock_irq(&zone->lock);
+			cond_resched();
+			spin_lock_irq(&zone->lock);
 		}
 		seq_putc(m, '\n');
 	}


Patches currently in stable-queue which might be from stephen.s.brennan@oracle.com are

queue-4.9/mm-vmstat-drop-zone-lock-in-proc-pagetypeinfo.patch


  parent reply	other threads:[~2021-05-27  9:23 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-26 17:46 [PATCH STABLE 4.4-5.3] mm, vmstat: drop zone->lock in /proc/pagetypeinfo Stephen Brennan
2021-05-27  9:15 ` Greg KH
2021-05-27  9:22 ` Patch "mm, vmstat: drop zone->lock in /proc/pagetypeinfo" has been added to the 4.4-stable tree gregkh
2021-05-27  9:23 ` gregkh [this message]
2021-05-27  9:23 ` Patch "mm, vmstat: drop zone->lock in /proc/pagetypeinfo" has been added to the 4.14-stable tree gregkh
2021-05-27  9:24 ` Patch "mm, vmstat: drop zone->lock in /proc/pagetypeinfo" has been added to the 4.19-stable tree gregkh

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=162210740717370@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=akpm@linux-foundation.org \
    --cc=apw@shadowen.org \
    --cc=aruna.ramakrishna@oracle.com \
    --cc=clameter@sgi.com \
    --cc=khalid.aziz@oracle.com \
    --cc=linux-mm@kvack.org \
    --cc=mel@csn.ul.ie \
    --cc=stable-commits@vger.kernel.org \
    --cc=stephen.s.brennan@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).