All of lore.kernel.org
 help / color / mirror / Atom feed
From: Nicolin Chen <nicoleotsuka@gmail.com>
To: hch@lst.de, robin.murphy@arm.com, m.szyprowski@samsung.com
Cc: vdumpa@nvidia.com, linux@armlinux.org.uk,
	catalin.marinas@arm.com, will.deacon@arm.com, chris@zankel.net,
	jcmvbkbc@gmail.com, joro@8bytes.org, dwmw2@infradead.org,
	tony@atomide.com, akpm@linux-foundation.org,
	sfr@canb.auug.org.au, treding@nvidia.com, keescook@chromium.org,
	iamjoonsoo.kim@lge.com, wsa+renesas@sang-engineering.com,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, linux-xtensa@linux-xtensa.org,
	iommu@lists.linux-foundation.org
Subject: [PATCH v2 0/2] Optimize dma_*_from_contiguous calls
Date: Mon,  6 May 2019 15:33:32 -0700	[thread overview]
Message-ID: <20190506223334.1834-1-nicoleotsuka@gmail.com> (raw)

[ Per discussion at v1, we decide to add two new functions and start
  replacing callers one by one. For this series, it only touches the
  dma-direct part. And instead of merging two PATCHes, I still keep
  them separate so that we may easily revert PATCH-2 if anything bad
  happens as last time -- PATCH-1 is supposed to be a safe cleanup. ]

This series of patches try to optimize dma_*_from_contiguous calls:
PATCH-1 abstracts two new functions and applies to dma-direct.c file.
PATCH-2 saves single pages and reduce fragmentations from CMA area.

Please check their commit messages for detail changelog.

Nicolin Chen (2):
  dma-contiguous: Abstract dma_{alloc,free}_contiguous()
  dma-contiguous: Use fallback alloc_pages for single pages

 include/linux/dma-contiguous.h | 10 ++++++
 kernel/dma/contiguous.c        | 57 ++++++++++++++++++++++++++++++++++
 kernel/dma/direct.c            | 24 +++-----------
 3 files changed, 71 insertions(+), 20 deletions(-)

-- 
2.17.1


WARNING: multiple messages have this Message-ID (diff)
From: Nicolin Chen <nicoleotsuka@gmail.com>
To: hch@lst.de, robin.murphy@arm.com, m.szyprowski@samsung.com
Cc: chris@zankel.net, linux-xtensa@linux-xtensa.org,
	keescook@chromium.org, sfr@canb.auug.org.au, tony@atomide.com,
	catalin.marinas@arm.com, will.deacon@arm.com,
	linux@armlinux.org.uk, iommu@lists.linux-foundation.org,
	linux-kernel@vger.kernel.org, jcmvbkbc@gmail.com,
	wsa+renesas@sang-engineering.com, akpm@linux-foundation.org,
	treding@nvidia.com, dwmw2@infradead.org, iamjoonsoo.kim@lge.com,
	linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 0/2] Optimize dma_*_from_contiguous calls
Date: Mon,  6 May 2019 15:33:32 -0700	[thread overview]
Message-ID: <20190506223334.1834-1-nicoleotsuka@gmail.com> (raw)

[ Per discussion at v1, we decide to add two new functions and start
  replacing callers one by one. For this series, it only touches the
  dma-direct part. And instead of merging two PATCHes, I still keep
  them separate so that we may easily revert PATCH-2 if anything bad
  happens as last time -- PATCH-1 is supposed to be a safe cleanup. ]

This series of patches try to optimize dma_*_from_contiguous calls:
PATCH-1 abstracts two new functions and applies to dma-direct.c file.
PATCH-2 saves single pages and reduce fragmentations from CMA area.

Please check their commit messages for detail changelog.

Nicolin Chen (2):
  dma-contiguous: Abstract dma_{alloc,free}_contiguous()
  dma-contiguous: Use fallback alloc_pages for single pages

 include/linux/dma-contiguous.h | 10 ++++++
 kernel/dma/contiguous.c        | 57 ++++++++++++++++++++++++++++++++++
 kernel/dma/direct.c            | 24 +++-----------
 3 files changed, 71 insertions(+), 20 deletions(-)

-- 
2.17.1

_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu

WARNING: multiple messages have this Message-ID (diff)
From: Nicolin Chen <nicoleotsuka@gmail.com>
To: hch@lst.de, robin.murphy@arm.com, m.szyprowski@samsung.com
Cc: chris@zankel.net, linux-xtensa@linux-xtensa.org,
	keescook@chromium.org, sfr@canb.auug.org.au, tony@atomide.com,
	catalin.marinas@arm.com, joro@8bytes.org, will.deacon@arm.com,
	linux@armlinux.org.uk, iommu@lists.linux-foundation.org,
	linux-kernel@vger.kernel.org, jcmvbkbc@gmail.com,
	wsa+renesas@sang-engineering.com, akpm@linux-foundation.org,
	treding@nvidia.com, dwmw2@infradead.org, iamjoonsoo.kim@lge.com,
	linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 0/2] Optimize dma_*_from_contiguous calls
Date: Mon,  6 May 2019 15:33:32 -0700	[thread overview]
Message-ID: <20190506223334.1834-1-nicoleotsuka@gmail.com> (raw)

[ Per discussion at v1, we decide to add two new functions and start
  replacing callers one by one. For this series, it only touches the
  dma-direct part. And instead of merging two PATCHes, I still keep
  them separate so that we may easily revert PATCH-2 if anything bad
  happens as last time -- PATCH-1 is supposed to be a safe cleanup. ]

This series of patches try to optimize dma_*_from_contiguous calls:
PATCH-1 abstracts two new functions and applies to dma-direct.c file.
PATCH-2 saves single pages and reduce fragmentations from CMA area.

Please check their commit messages for detail changelog.

Nicolin Chen (2):
  dma-contiguous: Abstract dma_{alloc,free}_contiguous()
  dma-contiguous: Use fallback alloc_pages for single pages

 include/linux/dma-contiguous.h | 10 ++++++
 kernel/dma/contiguous.c        | 57 ++++++++++++++++++++++++++++++++++
 kernel/dma/direct.c            | 24 +++-----------
 3 files changed, 71 insertions(+), 20 deletions(-)

-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

             reply	other threads:[~2019-05-06 22:35 UTC|newest]

Thread overview: 76+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-06 22:33 Nicolin Chen [this message]
2019-05-06 22:33 ` [PATCH v2 0/2] Optimize dma_*_from_contiguous calls Nicolin Chen
2019-05-06 22:33 ` Nicolin Chen
2019-05-06 22:33 ` [PATCH v2 1/2] dma-contiguous: Abstract dma_{alloc,free}_contiguous() Nicolin Chen
2019-05-06 22:33   ` [PATCH v2 1/2] dma-contiguous: Abstract dma_{alloc, free}_contiguous() Nicolin Chen
2019-05-06 22:33   ` Nicolin Chen
2019-05-24  1:52   ` dann frazier
2019-05-24  1:52     ` dann frazier
2019-05-24  1:52     ` dann frazier
2019-05-24  2:59     ` dann frazier
2019-05-24  2:59       ` dann frazier
2019-05-24  2:59       ` dann frazier
2019-05-24  3:49       ` Nicolin Chen
2019-05-24  3:49         ` Nicolin Chen
2019-05-24  3:49         ` Nicolin Chen
2019-05-06 22:33 ` [PATCH v2 2/2] dma-contiguous: Use fallback alloc_pages for single pages Nicolin Chen
2019-05-06 22:33   ` Nicolin Chen
2019-05-06 22:33   ` Nicolin Chen
2019-08-23 12:49   ` Masahiro Yamada
2019-08-23 12:49     ` Masahiro Yamada
2019-08-23 12:56     ` Masahiro Yamada
2019-08-23 12:56       ` Masahiro Yamada
2019-08-23 12:56       ` Masahiro Yamada
2019-08-23 12:56       ` Masahiro Yamada
2019-08-25  1:10       ` Christoph Hellwig
2019-08-25  1:10         ` Christoph Hellwig
2019-08-25  1:10         ` Christoph Hellwig
2019-08-25  1:10         ` Christoph Hellwig
2019-08-26  2:05         ` Masahiro Yamada
2019-08-26  2:05           ` Masahiro Yamada
2019-08-26  2:05           ` Masahiro Yamada
2019-08-26  2:05           ` Masahiro Yamada
2019-08-26  7:33           ` Christoph Hellwig
2019-08-26  7:33             ` Christoph Hellwig
2019-08-26  7:33             ` Christoph Hellwig
2019-08-26  7:33             ` Christoph Hellwig
2019-08-27  7:45             ` Masahiro Yamada
2019-08-27  7:45               ` Masahiro Yamada
2019-08-27  7:45               ` Masahiro Yamada
2019-08-27  7:45               ` Masahiro Yamada
2019-08-27  7:50               ` Christoph Hellwig
2019-08-27  7:50                 ` Christoph Hellwig
2019-08-27  7:50                 ` Christoph Hellwig
2019-08-27  7:50                 ` Christoph Hellwig
2019-08-27  9:03                 ` Masahiro Yamada
2019-08-27  9:03                   ` Masahiro Yamada
2019-08-27  9:03                   ` Masahiro Yamada
2019-08-27  9:03                   ` Masahiro Yamada
2019-08-27 11:55                   ` Christoph Hellwig
2019-08-27 11:55                     ` Christoph Hellwig
2019-08-27 11:55                     ` Christoph Hellwig
2019-08-27 11:55                     ` Christoph Hellwig
2019-08-28 10:53                     ` Masahiro Yamada
2019-08-28 10:53                       ` Masahiro Yamada
2019-08-28 10:53                       ` Masahiro Yamada
2019-08-28 10:53                       ` Masahiro Yamada
2019-08-28 12:23                       ` Masahiro Yamada
2019-08-28 12:23                         ` Masahiro Yamada
2019-08-28 12:23                         ` Masahiro Yamada
2019-08-28 12:23                         ` Masahiro Yamada
2019-08-29 11:45                         ` Masahiro Yamada
2019-08-29 11:45                           ` Masahiro Yamada
2019-08-29 11:45                           ` Masahiro Yamada
2019-08-29 11:45                           ` Masahiro Yamada
2019-08-23 22:11     ` Nicolin Chen
2019-08-23 22:11       ` Nicolin Chen
2019-08-23 22:11       ` Nicolin Chen
2019-08-26  1:56       ` Masahiro Yamada
2019-08-26  1:56         ` Masahiro Yamada
2019-08-26  1:56         ` Masahiro Yamada
2019-05-08 12:52 ` [PATCH v2 0/2] Optimize dma_*_from_contiguous calls Christoph Hellwig
2019-05-08 12:52   ` Christoph Hellwig
2019-05-08 12:52   ` Christoph Hellwig
2019-05-08 18:08   ` Nicolin Chen
2019-05-08 18:08     ` Nicolin Chen
2019-05-08 18:08     ` Nicolin Chen

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=20190506223334.1834-1-nicoleotsuka@gmail.com \
    --to=nicoleotsuka@gmail.com \
    --cc=akpm@linux-foundation.org \
    --cc=catalin.marinas@arm.com \
    --cc=chris@zankel.net \
    --cc=dwmw2@infradead.org \
    --cc=hch@lst.de \
    --cc=iamjoonsoo.kim@lge.com \
    --cc=iommu@lists.linux-foundation.org \
    --cc=jcmvbkbc@gmail.com \
    --cc=joro@8bytes.org \
    --cc=keescook@chromium.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-xtensa@linux-xtensa.org \
    --cc=linux@armlinux.org.uk \
    --cc=m.szyprowski@samsung.com \
    --cc=robin.murphy@arm.com \
    --cc=sfr@canb.auug.org.au \
    --cc=tony@atomide.com \
    --cc=treding@nvidia.com \
    --cc=vdumpa@nvidia.com \
    --cc=will.deacon@arm.com \
    --cc=wsa+renesas@sang-engineering.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 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.