linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Punit Agrawal <punit.agrawal@arm.com>
To: will.deacon@arm.com, catalin.marinas@arm.com
Cc: Punit Agrawal <punit.agrawal@arm.com>,
	linux-mm@kvack.org, steve.capper@arm.com,
	linux-arm-kernel@lists.infradead.org, mark.rutland@arm.com
Subject: [PATCH v7 0/9] arm64: Enable contiguous pte hugepage support
Date: Tue, 22 Aug 2017 11:42:40 +0100	[thread overview]
Message-ID: <20170822104249.2189-1-punit.agrawal@arm.com> (raw)

Hi,

This series re-enables contiguous hugepage support for arm64.

Changes in v7 -

* Patch 4 - "Add break-before-make logic for contiguous entries"
  - get_clear_flush() - unconditionally clear the ptes (even if they
    are not present). This is to bring huge_ptep_get_and_clear()
    in line with generic implementation.
  - get_clear_flush() - Only flush the TLBs if the cleared entry was
    valid.
  - huge_ptep_set_wrprotect() - simplified based on Catalin's
    feedback.

* Patch 6 - "Override huge_pte_clear() to support"
  - Address compile warnings due to non-existence of certain levels of
    the page table when using 16 and 64k pages.

All the dependent series ([2], [3]) for enabling contiguous hugepage
support have been merged in the previous cycle. Additionally, a patch
to clarify the semantics of huge_pte_offset() in generic code[6] is
currently in the -mm tree.

Previous postings can be found at [0], [1], [4], [5], [7].

The patches are based on v4.13-rc6. If there are no further comments
please consider merging for the next release cycle.

Thanks,
Punit

[0] https://www.spinics.net/lists/arm-kernel/msg570422.html
[1] http://lists.infradead.org/pipermail/linux-arm-kernel/2017-March/497027.html
[2] https://www.spinics.net/lists/arm-kernel/msg581657.html
[3] https://www.spinics.net/lists/arm-kernel/msg583342.html
[4] https://www.spinics.net/lists/arm-kernel/msg583367.html
[5] https://www.spinics.net/lists/arm-kernel/msg582758.html
[6] https://lkml.org/lkml/2017/8/18/678
[7] https://www.spinics.net/lists/arm-kernel/msg597777.html
[8] http://www.spinics.net/lists/linux-mm/msg133176.html

Punit Agrawal (4):
  arm64: hugetlb: Handle swap entries in huge_pte_offset() for
    contiguous hugepages
  arm64: hugetlb: Override huge_pte_clear() to support contiguous
    hugepages
  arm64: hugetlb: Override set_huge_swap_pte_at() to support contiguous
    hugepages
  arm64: Re-enable support for contiguous hugepages

Steve Capper (5):
  arm64: hugetlb: set_huge_pte_at Add WARN_ON on !pte_present
  arm64: hugetlb: Introduce pte_pgprot helper
  arm64: hugetlb: Spring clean huge pte accessors
  arm64: hugetlb: Add break-before-make logic for contiguous entries
  arm64: hugetlb: Cleanup setup_hugepagesz

 arch/arm64/include/asm/hugetlb.h |   9 +-
 arch/arm64/mm/hugetlbpage.c      | 316 ++++++++++++++++++++++++++++-----------
 2 files changed, 240 insertions(+), 85 deletions(-)

-- 
2.13.2

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

             reply	other threads:[~2017-08-22 10:43 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-22 10:42 Punit Agrawal [this message]
2017-08-22 10:42 ` [PATCH v7 1/9] arm64: hugetlb: set_huge_pte_at Add WARN_ON on !pte_present Punit Agrawal
2017-08-22 10:42 ` [PATCH v7 2/9] arm64: hugetlb: Introduce pte_pgprot helper Punit Agrawal
2017-08-22 10:42 ` [PATCH v7 3/9] arm64: hugetlb: Spring clean huge pte accessors Punit Agrawal
2017-08-22 10:42 ` [PATCH v7 4/9] arm64: hugetlb: Add break-before-make logic for contiguous entries Punit Agrawal
2017-08-22 10:42 ` [PATCH v7 5/9] arm64: hugetlb: Handle swap entries in huge_pte_offset() for contiguous hugepages Punit Agrawal
2017-08-22 14:14   ` Julien Thierry
2017-08-22 14:41     ` Punit Agrawal
2017-08-22 15:01       ` Julien Thierry
2017-08-22 16:18         ` Punit Agrawal
2017-08-22 16:21           ` Julien Thierry
2017-08-22 16:35   ` Catalin Marinas
2017-08-22 17:14     ` Punit Agrawal
2017-08-22 10:42 ` [PATCH v7 6/9] arm64: hugetlb: Override huge_pte_clear() to support " Punit Agrawal
2017-08-22 10:42 ` [PATCH v7 7/9] arm64: hugetlb: Override set_huge_swap_pte_at() " Punit Agrawal
2017-08-22 10:42 ` [PATCH v7 8/9] arm64: Re-enable support for " Punit Agrawal
2017-08-22 10:42 ` [PATCH v7 9/9] arm64: hugetlb: Cleanup setup_hugepagesz Punit Agrawal

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=20170822104249.2189-1-punit.agrawal@arm.com \
    --to=punit.agrawal@arm.com \
    --cc=catalin.marinas@arm.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-mm@kvack.org \
    --cc=mark.rutland@arm.com \
    --cc=steve.capper@arm.com \
    --cc=will.deacon@arm.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).