From: Matthew Wilcox <willy@infradead.org>
To: linux-mm@kvack.org
Cc: Matthew Wilcox <mawilcox@microsoft.com>,
"Kirill A . Shutemov" <kirill.shutemov@linux.intel.com>,
Pavel Tatashin <pasha.tatashin@oracle.com>
Subject: [PATCH 4/8] mm: Improve page flag policy documentation
Date: Fri, 13 Apr 2018 21:31:41 -0700 [thread overview]
Message-ID: <20180414043145.3953-5-willy@infradead.org> (raw)
In-Reply-To: <20180414043145.3953-1-willy@infradead.org>
From: Matthew Wilcox <mawilcox@microsoft.com>
Rewrite this documentation to be more clear about the expectations
for users.
Signed-off-by: Matthew Wilcox <mawilcox@microsoft.com>
---
include/linux/page-flags.h | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/include/linux/page-flags.h b/include/linux/page-flags.h
index 393bb93b6b89..a6931046cc5c 100644
--- a/include/linux/page-flags.h
+++ b/include/linux/page-flags.h
@@ -164,24 +164,26 @@ static __always_inline struct page *CheckPageInit(struct page *page)
}
/*
- * Page flags policies wrt compound pages
+ * Page flag policies describe how each page flag is used for compound pages.
*
* PF_ANY:
- * the page flag is relevant for small, head and tail pages.
+ * This page flag is relevant for single, head and tail pages.
*
* PF_HEAD:
- * for compound page all operations related to the page flag applied to
- * head page.
+ * The head page contains the flag for the entire compound page.
+ * Callers may pass any subpage of the compound page, and the operation
+ * will be carried out on the head page.
*
* PF_ONLY_HEAD:
- * for compound page, callers only ever operate on the head page.
+ * Callers only ever operate on the head page (or single pages).
*
* PF_TAIL_READ:
- * modifications of the page flag must be done on small or head pages,
- * checks can be done on tail pages too.
+ * The head page contains the flag for the entire compound page.
+ * If the flag is being modified, the caller must pass in the head page.
+ * For testing the flas, callers may use any subpage of the compound page.
*
* PF_NO_COMPOUND:
- * the page flag is not relevant for compound pages.
+ * The page flag is not used for compound pages.
*/
#define PF_ANY(page, modify) CheckPageInit(page)
#define PF_HEAD(page, modify) CheckPageInit(compound_head(page))
--
2.16.3
next prev parent reply other threads:[~2018-04-14 4:31 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-14 4:31 [PATCH 0/8] Various PageFlags cleanups Matthew Wilcox
2018-04-14 4:31 ` [PATCH 1/8] mm: Rename PF argument to modify Matthew Wilcox
2018-04-14 4:31 ` [PATCH 2/8] mm: Rename PF_NO_TAIL to PF_TAIL_READ Matthew Wilcox
2018-04-14 4:31 ` [PATCH 3/8] mm: Turn PF_POISONED_CHECK into CheckPageInit Matthew Wilcox
2018-04-14 4:31 ` Matthew Wilcox [this message]
2018-04-14 4:31 ` [PATCH 5/8] mm: Fix bug in page flags checking Matthew Wilcox
2018-04-14 4:31 ` [PATCH 6/8] mm: Turn page policies into functions Matthew Wilcox
2018-04-16 12:46 ` Kirill A. Shutemov
2018-04-14 4:31 ` [PATCH 7/8] mm: Always check PagePolicyNoCompound Matthew Wilcox
2018-04-16 12:51 ` Kirill A. Shutemov
2018-04-17 1:05 ` [lkp-robot] [mm] 7df45c2b6a: kernel_BUG_at_include/linux/page-flags.h kernel test robot
2018-04-14 4:31 ` [PATCH 8/8] mm: Optimise PagePolicyTailRead Matthew Wilcox
2018-04-16 12:54 ` [PATCH 0/8] Various PageFlags cleanups Kirill A. Shutemov
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=20180414043145.3953-5-willy@infradead.org \
--to=willy@infradead.org \
--cc=kirill.shutemov@linux.intel.com \
--cc=linux-mm@kvack.org \
--cc=mawilcox@microsoft.com \
--cc=pasha.tatashin@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