All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 0/3] iommu/io-pgtable-arm-v7s: Use DMA32 zone for page tables
@ 2018-12-05  5:48 ` Nicolas Boichat
  0 siblings, 0 replies; 75+ messages in thread
From: Nicolas Boichat @ 2018-12-05  5:48 UTC (permalink / raw)
  To: Will Deacon
  Cc: Robin Murphy, Joerg Roedel, Christoph Lameter, Pekka Enberg,
	David Rientjes, Joonsoo Kim, Andrew Morton, Vlastimil Babka,
	Michal Hocko, Mel Gorman, Levin Alexander, Huaisheng Ye,
	Mike Rapoport, linux-arm-kernel, iommu, linux-kernel, linux-mm,
	Yong Wu, Matthias Brugger, Tomasz Figa, yingjoe.chen, hch

This is a follow-up to the discussion in [1], [2].

IOMMUs using ARMv7 short-descriptor format require page tables
(level 1 and 2) to be allocated within the first 4GB of RAM, even
on 64-bit systems.

For L1 tables that are bigger than a page, we can just use __get_free_pages
with GFP_DMA32 (on arm64 systems only, arm would still use GFP_DMA).

For L2 tables that only take 1KB, it would be a waste to allocate a full
page, so we considered 3 approaches:
 1. This series, adding support for GFP_DMA32 slab caches.
 2. genalloc, which requires pre-allocating the maximum number of L2 page
    tables (4096, so 4MB of memory).
 3. page_frag, which is not very memory-efficient as it is unable to reuse
    freed fragments until the whole page is freed. [3]

This series is the most memory-efficient approach.

[1] https://lists.linuxfoundation.org/pipermail/iommu/2018-November/030876.html
[2] https://lists.linuxfoundation.org/pipermail/iommu/2018-December/031696.html
[3] https://patchwork.codeaurora.org/patch/671639/

Changes since v1:
 - Add support for SLAB_CACHE_DMA32 in slab and slub (patches 1/2)
 - iommu/io-pgtable-arm-v7s (patch 3):
   - Changed approach to use SLAB_CACHE_DMA32 added by the previous
     commit.
   - Use DMA or DMA32 depending on the architecture (DMA for arm,
     DMA32 for arm64).

Changes since v2:
 - Reworded and expanded commit messages
 - Added cache_dma32 documentation in PATCH 2/3.

v3 used the page_frag approach, see [3].

Nicolas Boichat (3):
  mm: slab/slub: Add check_slab_flags function to check for valid flags
  mm: Add support for kmem caches in DMA32 zone
  iommu/io-pgtable-arm-v7s: Request DMA32 memory, and improve debugging

 Documentation/ABI/testing/sysfs-kernel-slab |  9 ++++++++
 drivers/iommu/io-pgtable-arm-v7s.c          | 20 +++++++++++++----
 include/linux/slab.h                        |  2 ++
 mm/internal.h                               | 22 +++++++++++++++++--
 mm/slab.c                                   | 10 +++------
 mm/slab.h                                   |  3 ++-
 mm/slab_common.c                            |  2 +-
 mm/slub.c                                   | 24 +++++++++++++++------
 8 files changed, 70 insertions(+), 22 deletions(-)

-- 
2.20.0.rc1.387.gf8505762e3-goog

^ permalink raw reply	[flat|nested] 75+ messages in thread

end of thread, other threads:[~2018-12-06 10:10 UTC | newest]

Thread overview: 75+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-05  5:48 [PATCH v4 0/3] iommu/io-pgtable-arm-v7s: Use DMA32 zone for page tables Nicolas Boichat
2018-12-05  5:48 ` Nicolas Boichat
2018-12-05  5:48 ` Nicolas Boichat
2018-12-05  5:48 ` [PATCH v4 1/3] mm: slab/slub: Add check_slab_flags function to check for valid flags Nicolas Boichat
2018-12-05  5:48   ` Nicolas Boichat
2018-12-05  5:48   ` Nicolas Boichat
2018-12-05 13:34   ` Vlastimil Babka
2018-12-05 13:34     ` Vlastimil Babka
2018-12-05 13:34     ` Vlastimil Babka
     [not found] ` <20181205054828.183476-1-drinkcat-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2018-12-05  5:48   ` [PATCH v4 2/3] mm: Add support for kmem caches in DMA32 zone Nicolas Boichat
2018-12-05  5:48     ` Nicolas Boichat
2018-12-05  5:48     ` Nicolas Boichat
     [not found]     ` <20181205054828.183476-3-drinkcat-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2018-12-05  7:25       ` Wei Yang
2018-12-05  7:25         ` Wei Yang
2018-12-05  7:25         ` Wei Yang
2018-12-05  7:39         ` Nicolas Boichat
2018-12-05  7:39           ` Nicolas Boichat
2018-12-05  7:39           ` Nicolas Boichat
     [not found]           ` <CANMq1KCi-k_4-66pMfvByzsjpf1H6_bvC82Ow0b_jEH6B3LHwA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2018-12-05  9:18             ` Wei Yang
2018-12-05  9:18               ` Wei Yang
2018-12-05  9:18               ` Wei Yang
2018-12-05 12:18             ` Wei Yang
2018-12-05 12:18               ` Wei Yang
2018-12-05 12:18               ` Wei Yang
2018-12-06  0:41               ` Nicolas Boichat
2018-12-06  0:41                 ` Nicolas Boichat
2018-12-06  0:41                 ` Nicolas Boichat
2018-12-06  3:32                 ` Wei Yang
2018-12-06  3:32                   ` Wei Yang
2018-12-06  3:32                   ` Wei Yang
2018-12-06  3:55                   ` Nicolas Boichat
2018-12-06  3:55                     ` Nicolas Boichat
2018-12-06  3:55                     ` Nicolas Boichat
2018-12-06  6:29                     ` Wei Yang
2018-12-06  6:29                       ` Wei Yang
2018-12-06  6:29                       ` Wei Yang
2018-12-05  9:55       ` Michal Hocko
2018-12-05  9:55         ` Michal Hocko
2018-12-05  9:55         ` Michal Hocko
     [not found]         ` <20181205095557.GE1286-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2018-12-05 11:01           ` Nicolas Boichat
2018-12-05 11:01             ` Nicolas Boichat
2018-12-05 11:01             ` Nicolas Boichat
2018-12-05 11:37             ` Michal Hocko
2018-12-05 11:37               ` Michal Hocko
2018-12-05 11:37               ` Michal Hocko
2018-12-05 13:59     ` Vlastimil Babka
2018-12-05 13:59       ` Vlastimil Babka
2018-12-05 13:59       ` Vlastimil Babka
2018-12-06  3:49       ` Nicolas Boichat
2018-12-06  3:49         ` Nicolas Boichat
2018-12-06  3:49         ` Nicolas Boichat
2018-12-06  9:34         ` Vlastimil Babka
2018-12-06  9:34           ` Vlastimil Babka
2018-12-06  9:34           ` Vlastimil Babka
2018-12-06 10:09           ` Nicolas Boichat
2018-12-06 10:09             ` Nicolas Boichat
2018-12-06 10:09             ` Nicolas Boichat
2018-12-05  5:48 ` [PATCH v4 3/3] iommu/io-pgtable-arm-v7s: Request DMA32 memory, and improve debugging Nicolas Boichat
2018-12-05  5:48   ` Nicolas Boichat
2018-12-05  5:48   ` Nicolas Boichat
2018-12-05 13:54   ` Christoph Hellwig
2018-12-05 13:54     ` Christoph Hellwig
2018-12-05 13:54     ` Christoph Hellwig
2018-12-05 14:40     ` Robin Murphy
2018-12-05 14:40       ` Robin Murphy
2018-12-05 14:40       ` Robin Murphy
     [not found]       ` <1d211576-9153-cca1-5cd0-8c9881bd3fa4-5wv7dgnIgG8@public.gmane.org>
2018-12-05 14:43         ` Christoph Hellwig
2018-12-05 14:43           ` Christoph Hellwig
2018-12-05 14:43           ` Christoph Hellwig
2018-12-05 14:46           ` Will Deacon
2018-12-05 14:46             ` Will Deacon
2018-12-05 14:46             ` Will Deacon
2018-12-05 14:43   ` Vlastimil Babka
2018-12-05 14:43     ` Vlastimil Babka
2018-12-05 14:43     ` Vlastimil Babka

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.