From: Boris Ostrovsky <boris.ostrovsky@oracle.com>
To: xen-devel@lists.xen.org
Cc: sstabellini@kernel.org, wei.liu2@citrix.com,
George.Dunlap@eu.citrix.com, andrew.cooper3@citrix.com,
ian.jackson@eu.citrix.com, jbeulich@suse.com, tim@xen.orgc,
Boris Ostrovsky <boris.ostrovsky@oracle.com>
Subject: [PATCH RFC 5/8] mm: Do not discard already-scrubbed pages softirqs are pending
Date: Sun, 26 Feb 2017 19:22:37 -0500 [thread overview]
Message-ID: <1488154960-2826-6-git-send-email-boris.ostrovsky@oracle.com> (raw)
In-Reply-To: <1488154960-2826-1-git-send-email-boris.ostrovsky@oracle.com>
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
---
xen/common/page_alloc.c | 65 +++++++++++++++++++++++++++++++++++++++++-----
1 files changed, 58 insertions(+), 7 deletions(-)
diff --git a/xen/common/page_alloc.c b/xen/common/page_alloc.c
index ac15406..3469185 100644
--- a/xen/common/page_alloc.c
+++ b/xen/common/page_alloc.c
@@ -1032,11 +1032,14 @@ static void merge_chunks(struct page_info *pg, unsigned int node,
page_list_add(pg, &heap(node, zone, order));
}
+#define SCRUB_CHUNK_ORDER 8
bool_t scrub_free_pages(unsigned int node)
{
struct page_info *pg;
unsigned int i, zone, cpu;
int order;
+ unsigned int num_scrubbed, scrub_order, start, end;
+ bool_t preempt;
static unsigned node_scrubbing;
if ( !node_need_scrub[node] )
@@ -1046,6 +1049,7 @@ bool_t scrub_free_pages(unsigned int node)
return 0;
cpu = smp_processor_id();
+ preempt = 0;
spin_lock(&heap_lock);
@@ -1060,16 +1064,63 @@ bool_t scrub_free_pages(unsigned int node)
if ( !test_bit(_PGC_need_scrub, &pg[0].count_info) )
break;
- for ( i = 0; i < (1 << order); i++)
+ page_list_del(pg, &heap(node, zone, order));
+
+ scrub_order = (order > SCRUB_CHUNK_ORDER) ? SCRUB_CHUNK_ORDER : order;
+ num_scrubbed = 0;
+ while ( num_scrubbed < (1 << order) )
{
- scrub_one_page(&pg[i]);
+ for ( i = 0; i < (1 << scrub_order); i++ )
+ scrub_one_page(&pg[num_scrubbed + i]);
+
+ num_scrubbed += (1 << scrub_order);
if ( softirq_pending(cpu) )
- goto out;
+ {
+ preempt = 1;
+ break;
+ }
+ }
+
+ start = 0;
+ end = num_scrubbed;
+
+ /* Merge clean pages */
+ while ( start < end )
+ {
+ /*
+ * Largest power-of-two chunk starting @start,
+ * not greater than @end
+ */
+ unsigned chunk_order = flsl(end - start) - 1;
+ struct page_info *ppg = &pg[start];
+
+ for ( i = 0; i < (1 << chunk_order); i++ )
+ ppg[i].count_info &= ~PGC_need_scrub;
+
+ node_need_scrub[node] -= (1 << chunk_order);
+
+ PFN_ORDER(ppg) = chunk_order;
+ merge_chunks(ppg, node, zone, chunk_order, 0);
+ start += (1 << chunk_order);
+ }
+
+ /* Merge unscrubbed pages */
+ while ( end < (1 << order) )
+ {
+ /*
+ * Largest power-of-two chunk starting @end, not crossing
+ * next power-of-two boundary
+ */
+ unsigned chunk_order = ffsl(end) - 1;
+ struct page_info *ppg = &pg[end];
+
+ PFN_ORDER(ppg) = chunk_order;
+ merge_chunks(ppg, node, zone, chunk_order, 1);
+ end += (1 << chunk_order);
}
-
- node_need_scrub[node] -= (1 << order);
- for ( i = 0; i < (1 << order); i++)
- pg[i].count_info &= ~PGC_need_scrub;
+
+ if ( preempt )
+ goto out;
}
}
}
--
1.7.1
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
next prev parent reply other threads:[~2017-02-27 0:22 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-27 0:22 [PATCH RFC 0/8] Memory scrubbing from idle loop Boris Ostrovsky
2017-02-27 0:22 ` [PATCH RFC 1/8] mm: Separate free page chunk merging into its own routine Boris Ostrovsky
2017-02-27 0:22 ` [PATCH RFC 2/8] mm: Place unscrubbed pages at the end of pagelist Boris Ostrovsky
2017-02-27 0:22 ` [PATCH RFC 3/8] mm: Scrub pages in alloc_heap_pages() if needed Boris Ostrovsky
2017-02-27 0:22 ` [PATCH RFC 4/8] mm: Scrub memory from idle loop Boris Ostrovsky
2017-02-27 0:22 ` Boris Ostrovsky [this message]
2017-02-27 0:22 ` [PATCH RFC 6/8] spinlock: Introduce _spin_lock_cond() Boris Ostrovsky
2017-02-27 0:22 ` [PATCH RFC 7/8] mm: Keep pages available for allocation while scrubbing Boris Ostrovsky
2017-02-27 0:22 ` [PATCH RFC 8/8] mm: Print number of unscrubbed pages in 'H' debug handler Boris Ostrovsky
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=1488154960-2826-6-git-send-email-boris.ostrovsky@oracle.com \
--to=boris.ostrovsky@oracle.com \
--cc=George.Dunlap@eu.citrix.com \
--cc=andrew.cooper3@citrix.com \
--cc=ian.jackson@eu.citrix.com \
--cc=jbeulich@suse.com \
--cc=sstabellini@kernel.org \
--cc=tim@xen.orgc \
--cc=wei.liu2@citrix.com \
--cc=xen-devel@lists.xen.org \
/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).