lkml.org 
[lkml]   [2018]   [Apr]   [4]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[RFC PATCH 79/79] mm/ksm: set page->mapping to page_ronly struct instead of stable_node.
Date
From: Jérôme Glisse <jglisse@redhat.com>

Set page->mapping to the page_ronly struct instead of stable_node
struct. There is no functional change as page_ronly is just a field
of stable_node.

Signed-off-by: Jérôme Glisse <jglisse@redhat.com>
Cc: Andrea Arcangeli <aarcange@redhat.com>
---
mm/ksm.c | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/mm/ksm.c b/mm/ksm.c
index 6085068fb8b3..52b0ae291d23 100644
--- a/mm/ksm.c
+++ b/mm/ksm.c
@@ -39,6 +39,7 @@
#include <linux/freezer.h>
#include <linux/oom.h>
#include <linux/numa.h>
+#include <linux/page_ronly.h>

#include <asm/tlbflush.h>
#include "internal.h"
@@ -126,6 +127,7 @@ struct ksm_scan {

/**
* struct stable_node - node of the stable rbtree
+ * @ronly: Page read only struct wrapper (see include/linux/page_ronly.h).
* @node: rb node of this ksm page in the stable tree
* @head: (overlaying parent) &migrate_nodes indicates temporarily on that list
* @hlist_dup: linked into the stable_node->hlist with a stable_node chain
@@ -137,6 +139,7 @@ struct ksm_scan {
* @nid: NUMA node id of stable tree in which linked (may not match kpfn)
*/
struct stable_node {
+ struct page_ronly ronly;
union {
struct rb_node node; /* when node of stable tree */
struct { /* when listed for migration */
@@ -318,13 +321,15 @@ static void __init ksm_slab_free(void)

static inline struct stable_node *page_stable_node(struct page *page)
{
- return PageReadOnly(page) ? page_rmapping(page) : NULL;
+ struct page_ronly *ronly = page_ronly(page);
+
+ return ronly ? container_of(ronly, struct stable_node, ronly) : NULL;
}

static inline void set_page_stable_node(struct page *page,
struct stable_node *stable_node)
{
- page->mapping = (void *)((unsigned long)stable_node | PAGE_MAPPING_RONLY);
+ page_ronly_set(page, stable_node ? &stable_node->ronly : NULL);
}

static __always_inline bool is_stable_node_chain(struct stable_node *chain)
--
2.14.3
\
 
 \ /
  Last update: 2018-04-04 21:22    [W:0.168 / U:0.068 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site