public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] dma-mapping fixes for Linux 6.6
@ 2023-09-09  8:46 Christoph Hellwig
  2023-09-09 18:53 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Christoph Hellwig @ 2023-09-09  8:46 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel, iommu

The following changes since commit d069ed288ac74c24e2b1c294aa9445c80ed6c518:

  swiotlb: optimize get_max_slots() (2023-08-08 10:29:21 -0700)

are available in the Git repository at:

  git://git.infradead.org/users/hch/dma-mapping.git tags/dma-mapping-6.6-2023-09-09

for you to fetch changes up to f875db4f20f4ec2e4fa3b3be0e5081976e0b5dad:

  Revert "dma-contiguous: check for memory region overlap" (2023-09-08 05:58:32 -0300)

----------------------------------------------------------------
dma-mapping fixes for Linux 6.6

 - move a dma-debug call that prints a message out from a lock that's
   causing problems with the lock order in serial drivers (Sergey Senozhatsky)
 - fix the CONFIG_DMA_NUMA_CMA Kconfig entry to have the right dependency
   on not default to y (Christoph Hellwig)
 - move an ifdef a bit to remove a __maybe_unused that seems to trip up
   some sensitivities (Christoph Hellwig)
 - revert a bogus check in the CMA allocator (Zhenhua Huang)

----------------------------------------------------------------
Christoph Hellwig (2):
      dma-contiguous: fix the Kconfig entry for CONFIG_DMA_NUMA_CMA
      dma-pool: remove a __maybe_unused label in atomic_pool_expand

Sergey Senozhatsky (1):
      dma-debug: don't call __dma_entry_alloc_check_leak() under free_entries_lock

Zhenhua Huang (1):
      Revert "dma-contiguous: check for memory region overlap"

 kernel/dma/Kconfig      |  2 +-
 kernel/dma/contiguous.c |  5 -----
 kernel/dma/debug.c      | 20 +++++++++++++++-----
 kernel/dma/pool.c       |  4 ++--
 4 files changed, 18 insertions(+), 13 deletions(-)

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

* Re: [GIT PULL] dma-mapping fixes for Linux 6.6
  2023-09-09  8:46 Christoph Hellwig
@ 2023-09-09 18:53 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2023-09-09 18:53 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: Linus Torvalds, linux-kernel, iommu

The pull request you sent on Sat, 9 Sep 2023 05:46:57 -0300:

> git://git.infradead.org/users/hch/dma-mapping.git tags/dma-mapping-6.6-2023-09-09

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/474197a4f7921a97aa1aabc6f759823a024ff25f

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

* [GIT PULL] dma-mapping fixes for Linux 6.6
@ 2023-09-30 17:23 Christoph Hellwig
  2023-09-30 18:12 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Christoph Hellwig @ 2023-09-30 17:23 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel, iommu

The following changes since commit 0bb80ecc33a8fb5a682236443c1e740d5c917d1d:

  Linux 6.6-rc1 (2023-09-10 16:28:41 -0700)

are available in the Git repository at:

  git://git.infradead.org/users/hch/dma-mapping.git tags/dma-mapping-6.6-2023-09-30

for you to fetch changes up to 2d5780bbef8dbe6375d481cbea212606a80e4453:

  swiotlb: fix the check whether a device has used software IO TLB (2023-09-27 11:19:15 +0200)

----------------------------------------------------------------
dma-mapping fixes for Linux 6.6

 - fix the narea calculation in swiotlb initialization (Ross Lagerwall)
 - fix the check whether a device has used swiotlb (Petr Tesarik)

----------------------------------------------------------------
Petr Tesarik (1):
      swiotlb: fix the check whether a device has used software IO TLB

Ross Lagerwall (1):
      swiotlb: use the calculated number of areas

 include/linux/swiotlb.h | 23 ++++++++++++++++-------
 kernel/dma/swiotlb.c    | 31 ++++++++++++++++++++++---------
 2 files changed, 38 insertions(+), 16 deletions(-)

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

* Re: [GIT PULL] dma-mapping fixes for Linux 6.6
  2023-09-30 17:23 [GIT PULL] dma-mapping fixes for Linux 6.6 Christoph Hellwig
@ 2023-09-30 18:12 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2023-09-30 18:12 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: Linus Torvalds, linux-kernel, iommu

The pull request you sent on Sat, 30 Sep 2023 19:23:58 +0200:

> git://git.infradead.org/users/hch/dma-mapping.git tags/dma-mapping-6.6-2023-09-30

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/3b517966c5616ac011081153482a5ba0e91b17ff

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

end of thread, other threads:[~2023-09-30 18:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-30 17:23 [GIT PULL] dma-mapping fixes for Linux 6.6 Christoph Hellwig
2023-09-30 18:12 ` pr-tracker-bot
  -- strict thread matches above, loose matches on Subject: below --
2023-09-09  8:46 Christoph Hellwig
2023-09-09 18:53 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox