From: David Hildenbrand <david@redhat•com>
To: linux-mm@kvack•org
Cc: Mark Rutland <mark.rutland@arm•com>,
Michal Hocko <mhocko@suse•com>,
CHANDAN VN <chandan.vn@samsung•com>,
David Hildenbrand <david@redhat•com>,
David Airlie <airlied@linux•ie>,
Bhupesh Sharma <bhsharma@redhat•com>,
Palmer Dabbelt <palmer@sifive•com>,
Heiko Carstens <heiko.carstens@de•ibm.com>,
Stefan Agner <stefan@agner•ch>, Michal Hocko <mhocko@kernel•org>,
David Howells <dhowells@redhat•com>,
Paul Mackerras <paulus@samba•org>,
linux-riscv@lists•infradead.org,
Alexander Duyck <alexander.h.duyck@linux•intel.com>,
linux-s390@vger•kernel.org,
Florian Fainelli <f.fainelli@gmail•com>,
Vasily Gorbik <gor@linux•ibm.com>,
Logan Gunthorpe <logang@deltatee•com>,
Pavel Tatashin <pasha.tatashin@oracle•com>,
Matthew Wilcox <willy@infradead•org>,
AKASHI Takahiro <takahiro.akashi@linaro•org>,
Geert Uytterhoeven <geert@linux-m68k•org>,
Catalin Marinas <catalin.marinas@arm•com>,
Anthony Yznaga <anthony.yznaga@oracle•com>,
Tobias Klauser <tklauser@distanz•ch>,
Laura Abbott <labbott@redhat•com>,
Fenghua Yu <fenghua.yu@intel•com>,
Albert Ou <aou@eecs•berkeley.edu>,
Kees Cook <keescook@chromium•org>, Arnd Bergmann <arnd@arndb•de>,
Stephen Rothwell <sfr@canb•auug.org.au>,
Marc Zyngier <marc.zyngier@arm•com>,
Will Deacon <will.deacon@arm•com>,
Kristina Martsenko <kristina.martsenko@arm•com>,
linux-m68k@lists•linux-m68k.org,
Dave Kleikamp <dave.kleikamp@oracle•com>,
linux-mediatek@lists•infradead.org,
Oleg Nesterov <oleg@redhat•com>,
Dan Williams <dan.j.williams@intel•com>,
linux-arm-kernel@lists•infradead.org,
Tony Luck <tony.luck@intel•com>,
Greg Kroah-Hartman <gregkh@linuxfoundation•org>,
linux-kernel@vger•kernel.org,
Miles Chen <miles.chen@mediatek•com>,
Mike Rapoport <rppt@linux•vnet.ibm.com>,
James Morse <james.morse@arm•com>,
Souptick Joarder <jrdr.linux@gmail•com>,
Johannes Weiner <hannes@cmpxchg•org>,
Martin Schwidefsky <schwidefsky@de•ibm.com>,
Andrew Morton <akpm@linux-foundation•org>,
linuxppc-dev@lists•ozlabs.org,
Greg Hackmann <ghackmann@android•com>
Subject: [PATCH v1 0/9] mm: PG_reserved cleanups and documentation
Date: Fri, 14 Dec 2018 12:10:05 +0100 [thread overview]
Message-ID: <20181214111014.15672-1-david@redhat.com> (raw)
I was recently going over all users of PG_reserved. Short story: it is
difficult and sometimes not really clear if setting/checking for
PG_reserved is only a relict from the past. Easy to break things. I
guess I know have a pretty good idea wh things are like that
nowadays and how they evolved.
I had way more cleanups in this series inititally,
but some architectures take PG_reserved as a way to apply a different
caching strategy (for MMIO pages). So I decided to only include the most
obvious changes (that are less likely to break something). So the big
chunk of manual SetPageReserved users are MMIO/DMA related things on
device buffers.
Most notably, for device memory we will hopefully soon stop setting
PG_reserved. The the documentation has to be updated.
RFC -> V1:
- Add more details to "mm: better document PG_reserved"
- Add "arm64: kdump: No need to mark crashkernel pages manually
PG_reserved"
- Add "ia64: perfmon: Don't mark buffer pages as PG_reserved"
- Added ACKs
David Hildenbrand (9):
agp: efficeon: no need to set PG_reserved on GATT tables
s390/vdso: don't clear PG_reserved
powerpc/vdso: don't clear PG_reserved
riscv/vdso: don't clear PG_reserved
m68k/mm: use __ClearPageReserved()
arm64: kexec: no need to ClearPageReserved()
arm64: kdump: No need to mark crashkernel pages manually PG_reserved
ia64: perfmon: Don't mark buffer pages as PG_reserved
mm: better document PG_reserved
arch/arm64/kernel/machine_kexec.c | 3 +-
arch/arm64/mm/init.c | 27 --------------
arch/ia64/kernel/perfmon.c | 59 +++----------------------------
arch/m68k/mm/memory.c | 2 +-
arch/powerpc/kernel/vdso.c | 2 --
arch/riscv/kernel/vdso.c | 1 -
arch/s390/kernel/vdso.c | 2 --
drivers/char/agp/efficeon-agp.c | 2 --
include/linux/page-flags.h | 33 +++++++++++++++--
9 files changed, 37 insertions(+), 94 deletions(-)
--
2.17.2
next reply other threads:[~2018-12-14 11:13 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-12-14 11:10 David Hildenbrand [this message]
2018-12-14 11:10 ` [PATCH v1 1/9] agp: efficeon: no need to set PG_reserved on GATT tables David Hildenbrand
2018-12-14 11:10 ` [PATCH v1 2/9] s390/vdso: don't clear PG_reserved David Hildenbrand
2018-12-14 11:10 ` [PATCH v1 3/9] powerpc/vdso: " David Hildenbrand
2018-12-17 11:38 ` Michael Ellerman
2018-12-14 11:10 ` [PATCH v1 4/9] riscv/vdso: " David Hildenbrand
2018-12-14 11:10 ` [PATCH v1 5/9] m68k/mm: use __ClearPageReserved() David Hildenbrand
2018-12-14 11:10 ` [PATCH v1 6/9] arm64: kexec: no need to ClearPageReserved() David Hildenbrand
2018-12-16 10:44 ` Matthias Brugger
2018-12-14 11:10 ` [PATCH v1 7/9] arm64: kdump: No need to mark crashkernel pages manually PG_reserved David Hildenbrand
2018-12-14 11:10 ` [PATCH v1 8/9] ia64: perfmon: Don't mark buffer pages as PG_reserved David Hildenbrand
2018-12-14 11:10 ` [PATCH v1 9/9] mm: better document PG_reserved David Hildenbrand
2018-12-15 0:12 ` Randy Dunlap
2018-12-17 9:34 ` David Hildenbrand
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=20181214111014.15672-1-david@redhat.com \
--to=david@redhat$(echo .)com \
--cc=airlied@linux$(echo .)ie \
--cc=akpm@linux-foundation$(echo .)org \
--cc=alexander.h.duyck@linux$(echo .)intel.com \
--cc=anthony.yznaga@oracle$(echo .)com \
--cc=aou@eecs$(echo .)berkeley.edu \
--cc=arnd@arndb$(echo .)de \
--cc=bhsharma@redhat$(echo .)com \
--cc=catalin.marinas@arm$(echo .)com \
--cc=chandan.vn@samsung$(echo .)com \
--cc=dan.j.williams@intel$(echo .)com \
--cc=dave.kleikamp@oracle$(echo .)com \
--cc=dhowells@redhat$(echo .)com \
--cc=f.fainelli@gmail$(echo .)com \
--cc=fenghua.yu@intel$(echo .)com \
--cc=geert@linux-m68k$(echo .)org \
--cc=ghackmann@android$(echo .)com \
--cc=gor@linux$(echo .)ibm.com \
--cc=gregkh@linuxfoundation$(echo .)org \
--cc=hannes@cmpxchg$(echo .)org \
--cc=heiko.carstens@de$(echo .)ibm.com \
--cc=james.morse@arm$(echo .)com \
--cc=jrdr.linux@gmail$(echo .)com \
--cc=keescook@chromium$(echo .)org \
--cc=kristina.martsenko@arm$(echo .)com \
--cc=labbott@redhat$(echo .)com \
--cc=linux-arm-kernel@lists$(echo .)infradead.org \
--cc=linux-kernel@vger$(echo .)kernel.org \
--cc=linux-m68k@lists$(echo .)linux-m68k.org \
--cc=linux-mediatek@lists$(echo .)infradead.org \
--cc=linux-mm@kvack$(echo .)org \
--cc=linux-riscv@lists$(echo .)infradead.org \
--cc=linux-s390@vger$(echo .)kernel.org \
--cc=linuxppc-dev@lists$(echo .)ozlabs.org \
--cc=logang@deltatee$(echo .)com \
--cc=marc.zyngier@arm$(echo .)com \
--cc=mark.rutland@arm$(echo .)com \
--cc=mhocko@kernel$(echo .)org \
--cc=mhocko@suse$(echo .)com \
--cc=miles.chen@mediatek$(echo .)com \
--cc=oleg@redhat$(echo .)com \
--cc=palmer@sifive$(echo .)com \
--cc=pasha.tatashin@oracle$(echo .)com \
--cc=paulus@samba$(echo .)org \
--cc=rppt@linux$(echo .)vnet.ibm.com \
--cc=schwidefsky@de$(echo .)ibm.com \
--cc=sfr@canb$(echo .)auug.org.au \
--cc=stefan@agner$(echo .)ch \
--cc=takahiro.akashi@linaro$(echo .)org \
--cc=tklauser@distanz$(echo .)ch \
--cc=tony.luck@intel$(echo .)com \
--cc=will.deacon@arm$(echo .)com \
--cc=willy@infradead$(echo .)org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
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