linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3] x86: deinline dma_alloc_attrs()
@ 2015-04-06 19:10 Denys Vlasenko
  2015-04-06 19:10 ` [PATCH v3] x86: deinline dma_free_attrs() Denys Vlasenko
  2015-04-06 19:20 ` [PATCH v3] x86: deinline dma_alloc_attrs() Don Dutile
  0 siblings, 2 replies; 3+ messages in thread
From: Denys Vlasenko @ 2015-04-06 19:10 UTC (permalink / raw)
  To: linux-kernel
  Cc: Denys Vlasenko, Marek Szyprowski, Konrad Rzeszutek Wilk,
	David Woodhouse, Don Dutile, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Andi Kleen, x86

Reduces kernel size by 68739 bytes on allyesconfig build:

    text     data      bss       dec     hex filename
82662736 22255384 20627456 125545576 77bac68 vmlinux0
82594029 22255352 20627456 125476837 77a9fe5 vmlinux1

Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: Don Dutile <ddutile@redhat.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Andi Kleen <andi@firstfloor.org>
Cc: x86@kernel.org
Cc: linux-kernel@vger.kernel.org
---

Changes in v2: added EXPORT_SYMBOL()
Changes in v3: added *correct* EXPORT_SYMBOL()

 arch/x86/include/asm/dma-mapping.h | 28 ++--------------------------
 arch/x86/kernel/pci-dma.c          | 27 +++++++++++++++++++++++++++
 2 files changed, 29 insertions(+), 26 deletions(-)

diff --git a/arch/x86/include/asm/dma-mapping.h b/arch/x86/include/asm/dma-mapping.h
index 808dae6..6339320 100644
--- a/arch/x86/include/asm/dma-mapping.h
+++ b/arch/x86/include/asm/dma-mapping.h
@@ -127,33 +127,9 @@ static inline gfp_t dma_alloc_coherent_gfp_flags(struct device *dev, gfp_t gfp)
 
 #define dma_alloc_coherent(d,s,h,f)	dma_alloc_attrs(d,s,h,f,NULL)
 
-static inline void *
+void *
 dma_alloc_attrs(struct device *dev, size_t size, dma_addr_t *dma_handle,
-		gfp_t gfp, struct dma_attrs *attrs)
-{
-	struct dma_map_ops *ops = get_dma_ops(dev);
-	void *memory;
-
-	gfp &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
-
-	if (dma_alloc_from_coherent(dev, size, dma_handle, &memory))
-		return memory;
-
-	if (!dev)
-		dev = &x86_dma_fallback_dev;
-
-	if (!is_device_dma_capable(dev))
-		return NULL;
-
-	if (!ops->alloc)
-		return NULL;
-
-	memory = ops->alloc(dev, size, dma_handle,
-			    dma_alloc_coherent_gfp_flags(dev, gfp), attrs);
-	debug_dma_alloc_coherent(dev, size, *dma_handle, memory);
-
-	return memory;
-}
+		gfp_t gfp, struct dma_attrs *attrs);
 
 #define dma_free_coherent(d,s,c,h) dma_free_attrs(d,s,c,h,NULL)
 
diff --git a/arch/x86/kernel/pci-dma.c b/arch/x86/kernel/pci-dma.c
index a25e202..74e2f6a 100644
--- a/arch/x86/kernel/pci-dma.c
+++ b/arch/x86/kernel/pci-dma.c
@@ -140,6 +140,34 @@ void dma_generic_free_coherent(struct device *dev, size_t size, void *vaddr,
 		free_pages((unsigned long)vaddr, get_order(size));
 }
 
+void *dma_alloc_attrs(struct device *dev, size_t size, dma_addr_t *dma_handle,
+		      gfp_t gfp, struct dma_attrs *attrs)
+{
+	struct dma_map_ops *ops = get_dma_ops(dev);
+	void *memory;
+
+	gfp &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
+
+	if (dma_alloc_from_coherent(dev, size, dma_handle, &memory))
+		return memory;
+
+	if (!dev)
+		dev = &x86_dma_fallback_dev;
+
+	if (!is_device_dma_capable(dev))
+		return NULL;
+
+	if (!ops->alloc)
+		return NULL;
+
+	memory = ops->alloc(dev, size, dma_handle,
+			    dma_alloc_coherent_gfp_flags(dev, gfp), attrs);
+	debug_dma_alloc_coherent(dev, size, *dma_handle, memory);
+
+	return memory;
+}
+EXPORT_SYMBOL(dma_alloc_attrs)
+
 /*
  * See <Documentation/x86/x86_64/boot-options.txt> for the iommu kernel
  * parameter documentation.
-- 
1.8.1.4


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

* [PATCH v3] x86: deinline dma_free_attrs()
  2015-04-06 19:10 [PATCH v3] x86: deinline dma_alloc_attrs() Denys Vlasenko
@ 2015-04-06 19:10 ` Denys Vlasenko
  2015-04-06 19:20 ` [PATCH v3] x86: deinline dma_alloc_attrs() Don Dutile
  1 sibling, 0 replies; 3+ messages in thread
From: Denys Vlasenko @ 2015-04-06 19:10 UTC (permalink / raw)
  To: linux-kernel
  Cc: Denys Vlasenko, Marek Szyprowski, Konrad Rzeszutek Wilk,
	David Woodhouse, Don Dutile, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Andi Kleen, x86

Reduces kernel size by 76720 bytes on allyesconfig build:

    text     data      bss       dec     hex filename
82594029 22255352 20627456 125476837 77a9fe5 vmlinux1
82517277 22255384 20627456 125400117 7797435 vmlinux2

Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: Don Dutile <ddutile@redhat.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Andi Kleen <andi@firstfloor.org>
Cc: x86@kernel.org
Cc: linux-kernel@vger.kernel.org
---

Changes in v2: added EXPORT_SYMBOL()
Changes in v3: added *correct* EXPORT_SYMBOL()

 arch/x86/include/asm/dma-mapping.h | 18 +++---------------
 arch/x86/kernel/pci-dma.c          | 16 ++++++++++++++++
 2 files changed, 19 insertions(+), 15 deletions(-)

diff --git a/arch/x86/include/asm/dma-mapping.h b/arch/x86/include/asm/dma-mapping.h
index 6339320..1f5b728 100644
--- a/arch/x86/include/asm/dma-mapping.h
+++ b/arch/x86/include/asm/dma-mapping.h
@@ -133,20 +133,8 @@ dma_alloc_attrs(struct device *dev, size_t size, dma_addr_t *dma_handle,
 
 #define dma_free_coherent(d,s,c,h) dma_free_attrs(d,s,c,h,NULL)
 
-static inline void dma_free_attrs(struct device *dev, size_t size,
-				  void *vaddr, dma_addr_t bus,
-				  struct dma_attrs *attrs)
-{
-	struct dma_map_ops *ops = get_dma_ops(dev);
-
-	WARN_ON(irqs_disabled());       /* for portability */
-
-	if (dma_release_from_coherent(dev, get_order(size), vaddr))
-		return;
-
-	debug_dma_free_coherent(dev, size, vaddr, bus);
-	if (ops->free)
-		ops->free(dev, size, vaddr, bus, attrs);
-}
+void dma_free_attrs(struct device *dev, size_t size,
+		    void *vaddr, dma_addr_t bus,
+		    struct dma_attrs *attrs);
 
 #endif
diff --git a/arch/x86/kernel/pci-dma.c b/arch/x86/kernel/pci-dma.c
index 74e2f6a..4fa0f15 100644
--- a/arch/x86/kernel/pci-dma.c
+++ b/arch/x86/kernel/pci-dma.c
@@ -167,6 +167,23 @@ void *dma_alloc_attrs(struct device *dev, size_t size, dma_addr_t *dma_handle,
 }
 EXPORT_SYMBOL(dma_alloc_attrs)
 
+void dma_free_attrs(struct device *dev, size_t size,
+		    void *vaddr, dma_addr_t bus,
+		    struct dma_attrs *attrs)
+{
+	struct dma_map_ops *ops = get_dma_ops(dev);
+
+	WARN_ON(irqs_disabled());       /* for portability */
+
+	if (dma_release_from_coherent(dev, get_order(size), vaddr))
+		return;
+
+	debug_dma_free_coherent(dev, size, vaddr, bus);
+	if (ops->free)
+		ops->free(dev, size, vaddr, bus, attrs);
+}
+EXPORT_SYMBOL(dma_free_attrs)
+
 /*
  * See <Documentation/x86/x86_64/boot-options.txt> for the iommu kernel
  * parameter documentation.
-- 
1.8.1.4


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

* Re: [PATCH v3] x86: deinline dma_alloc_attrs()
  2015-04-06 19:10 [PATCH v3] x86: deinline dma_alloc_attrs() Denys Vlasenko
  2015-04-06 19:10 ` [PATCH v3] x86: deinline dma_free_attrs() Denys Vlasenko
@ 2015-04-06 19:20 ` Don Dutile
  1 sibling, 0 replies; 3+ messages in thread
From: Don Dutile @ 2015-04-06 19:20 UTC (permalink / raw)
  To: Denys Vlasenko, linux-kernel
  Cc: Marek Szyprowski, Konrad Rzeszutek Wilk, David Woodhouse,
	Thomas Gleixner, Ingo Molnar, H. Peter Anvin, Andi Kleen, x86

On 04/06/2015 03:10 PM, Denys Vlasenko wrote:
> Reduces kernel size by 68739 bytes on allyesconfig build:
>
>      text     data      bss       dec     hex filename
> 82662736 22255384 20627456 125545576 77bac68 vmlinux0
> 82594029 22255352 20627456 125476837 77a9fe5 vmlinux1
>
> Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
> Cc: Marek Szyprowski <m.szyprowski@samsung.com>
> Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
> Cc: David Woodhouse <dwmw2@infradead.org>
> Cc: Don Dutile <ddutile@redhat.com>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Cc: Ingo Molnar <mingo@redhat.com>
> Cc: "H. Peter Anvin" <hpa@zytor.com>
> Cc: Andi Kleen <andi@firstfloor.org>
> Cc: x86@kernel.org
> Cc: linux-kernel@vger.kernel.org
> ---
>
> Changes in v2: added EXPORT_SYMBOL()
> Changes in v3: added *correct* EXPORT_SYMBOL()
>
>   arch/x86/include/asm/dma-mapping.h | 28 ++--------------------------
>   arch/x86/kernel/pci-dma.c          | 27 +++++++++++++++++++++++++++
>   2 files changed, 29 insertions(+), 26 deletions(-)
>
> diff --git a/arch/x86/include/asm/dma-mapping.h b/arch/x86/include/asm/dma-mapping.h
> index 808dae6..6339320 100644
> --- a/arch/x86/include/asm/dma-mapping.h
> +++ b/arch/x86/include/asm/dma-mapping.h
> @@ -127,33 +127,9 @@ static inline gfp_t dma_alloc_coherent_gfp_flags(struct device *dev, gfp_t gfp)
>
>   #define dma_alloc_coherent(d,s,h,f)	dma_alloc_attrs(d,s,h,f,NULL)
>
> -static inline void *
> +void *
>   dma_alloc_attrs(struct device *dev, size_t size, dma_addr_t *dma_handle,
> -		gfp_t gfp, struct dma_attrs *attrs)
> -{
> -	struct dma_map_ops *ops = get_dma_ops(dev);
> -	void *memory;
> -
> -	gfp &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
> -
> -	if (dma_alloc_from_coherent(dev, size, dma_handle, &memory))
> -		return memory;
> -
> -	if (!dev)
> -		dev = &x86_dma_fallback_dev;
> -
> -	if (!is_device_dma_capable(dev))
> -		return NULL;
> -
> -	if (!ops->alloc)
> -		return NULL;
> -
> -	memory = ops->alloc(dev, size, dma_handle,
> -			    dma_alloc_coherent_gfp_flags(dev, gfp), attrs);
> -	debug_dma_alloc_coherent(dev, size, *dma_handle, memory);
> -
> -	return memory;
> -}
> +		gfp_t gfp, struct dma_attrs *attrs);
>
>   #define dma_free_coherent(d,s,c,h) dma_free_attrs(d,s,c,h,NULL)
>
> diff --git a/arch/x86/kernel/pci-dma.c b/arch/x86/kernel/pci-dma.c
> index a25e202..74e2f6a 100644
> --- a/arch/x86/kernel/pci-dma.c
> +++ b/arch/x86/kernel/pci-dma.c
> @@ -140,6 +140,34 @@ void dma_generic_free_coherent(struct device *dev, size_t size, void *vaddr,
>   		free_pages((unsigned long)vaddr, get_order(size));
>   }
>
> +void *dma_alloc_attrs(struct device *dev, size_t size, dma_addr_t *dma_handle,
> +		      gfp_t gfp, struct dma_attrs *attrs)
> +{
> +	struct dma_map_ops *ops = get_dma_ops(dev);
> +	void *memory;
> +
> +	gfp &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
> +
> +	if (dma_alloc_from_coherent(dev, size, dma_handle, &memory))
> +		return memory;
> +
> +	if (!dev)
> +		dev = &x86_dma_fallback_dev;
> +
> +	if (!is_device_dma_capable(dev))
> +		return NULL;
> +
> +	if (!ops->alloc)
> +		return NULL;
> +
> +	memory = ops->alloc(dev, size, dma_handle,
> +			    dma_alloc_coherent_gfp_flags(dev, gfp), attrs);
> +	debug_dma_alloc_coherent(dev, size, *dma_handle, memory);
> +
> +	return memory;
> +}
> +EXPORT_SYMBOL(dma_alloc_attrs)
> +
>   /*
>    * See <Documentation/x86/x86_64/boot-options.txt> for the iommu kernel
>    * parameter documentation.
>
Less inlining, correct export symbol.
Ack.


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

end of thread, other threads:[~2015-04-06 19:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-06 19:10 [PATCH v3] x86: deinline dma_alloc_attrs() Denys Vlasenko
2015-04-06 19:10 ` [PATCH v3] x86: deinline dma_free_attrs() Denys Vlasenko
2015-04-06 19:20 ` [PATCH v3] x86: deinline dma_alloc_attrs() Don Dutile

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).