All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] swiotlb: remove unnecessary function swiotlb_max_segment()
@ 2023-02-21 14:06 Petr Tesarik
  2023-02-21 14:16 ` Christoph Hellwig
  0 siblings, 1 reply; 3+ messages in thread
From: Petr Tesarik @ 2023-02-21 14:06 UTC (permalink / raw)
  To: patchwork, Christoph Hellwig, Marek Szyprowski, Robin Murphy,
	open list:DMA MAPPING HELPERS, open list
  Cc: roberto.sassu

From: Petr Tesarik <petr.tesarik.ext@huawei.com>

It is difficult to imagine how this function should be used by
drivers. The last in-tree user was removed by commit
d3f6bacfca86 ("drm/i915: stop abusing swiotlb_max_segment"), and
even this user had been abusing it to achieve a different goal.

Let's remove this function now, as already suggested by Chris
Hellwig about a year ago in commit a2daa27c0c61 ("swiotlb:
simplify swiotlb_max_segment").

Signed-off-by: Petr Tesarik <petr.tesarik.ext@huawei.com>
---
 include/linux/swiotlb.h | 5 -----
 kernel/dma/swiotlb.c    | 8 --------
 2 files changed, 13 deletions(-)

diff --git a/include/linux/swiotlb.h b/include/linux/swiotlb.h
index 35bc4e281c21..bcef10e20ea4 100644
--- a/include/linux/swiotlb.h
+++ b/include/linux/swiotlb.h
@@ -121,7 +121,6 @@ static inline bool is_swiotlb_force_bounce(struct device *dev)
 
 void swiotlb_init(bool addressing_limited, unsigned int flags);
 void __init swiotlb_exit(void);
-unsigned int swiotlb_max_segment(void);
 size_t swiotlb_max_mapping_size(struct device *dev);
 bool is_swiotlb_active(struct device *dev);
 void __init swiotlb_adjust_size(unsigned long size);
@@ -140,10 +139,6 @@ static inline bool is_swiotlb_force_bounce(struct device *dev)
 static inline void swiotlb_exit(void)
 {
 }
-static inline unsigned int swiotlb_max_segment(void)
-{
-	return 0;
-}
 static inline size_t swiotlb_max_mapping_size(struct device *dev)
 {
 	return SIZE_MAX;
diff --git a/kernel/dma/swiotlb.c b/kernel/dma/swiotlb.c
index a34c38bbe28f..f35d934f6e58 100644
--- a/kernel/dma/swiotlb.c
+++ b/kernel/dma/swiotlb.c
@@ -156,14 +156,6 @@ setup_io_tlb_npages(char *str)
 }
 early_param("swiotlb", setup_io_tlb_npages);
 
-unsigned int swiotlb_max_segment(void)
-{
-	if (!io_tlb_default_mem.nslabs)
-		return 0;
-	return rounddown(io_tlb_default_mem.nslabs << IO_TLB_SHIFT, PAGE_SIZE);
-}
-EXPORT_SYMBOL_GPL(swiotlb_max_segment);
-
 unsigned long swiotlb_size_or_default(void)
 {
 	return default_nslabs << IO_TLB_SHIFT;
-- 
2.25.1


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

* Re: [PATCH] swiotlb: remove unnecessary function swiotlb_max_segment()
  2023-02-21 14:06 [PATCH] swiotlb: remove unnecessary function swiotlb_max_segment() Petr Tesarik
@ 2023-02-21 14:16 ` Christoph Hellwig
  2023-02-21 14:26   ` Petr Tesarik
  0 siblings, 1 reply; 3+ messages in thread
From: Christoph Hellwig @ 2023-02-21 14:16 UTC (permalink / raw)
  To: Petr Tesarik
  Cc: patchwork, Christoph Hellwig, Marek Szyprowski, Robin Murphy,
	open list:DMA MAPPING HELPERS, open list, roberto.sassu

I've got an equivalent patch already queue up in dma-mapping-for-next.

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

* Re: [PATCH] swiotlb: remove unnecessary function swiotlb_max_segment()
  2023-02-21 14:16 ` Christoph Hellwig
@ 2023-02-21 14:26   ` Petr Tesarik
  0 siblings, 0 replies; 3+ messages in thread
From: Petr Tesarik @ 2023-02-21 14:26 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: patchwork, Marek Szyprowski, Robin Murphy,
	open list:DMA MAPPING HELPERS, open list, roberto.sassu

On 2/21/2023 3:16 PM, Christoph Hellwig wrote:
> I've got an equivalent patch already queue up in dma-mapping-for-next.

Ah, good. Sorry for the fuss. Most importantly, it goes away. It was one of the things that confused me as I started reading swiotlb code.

Petr T


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

end of thread, other threads:[~2023-02-21 14:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-21 14:06 [PATCH] swiotlb: remove unnecessary function swiotlb_max_segment() Petr Tesarik
2023-02-21 14:16 ` Christoph Hellwig
2023-02-21 14:26   ` Petr Tesarik

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.