sparclinux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] sparc: cacheflush_32.h needs struct page
@ 2022-04-09 15:16 Randy Dunlap
  2022-04-09 18:05 ` Sam Ravnborg
  2022-04-10  1:21 ` Herbert Xu
  0 siblings, 2 replies; 3+ messages in thread
From: Randy Dunlap @ 2022-04-09 15:16 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, kernel test robot, Herbert Xu, David S . Miller,
	Sam Ravnborg, sparclinux

Add a struct page forward declaration to cacheflush_32.h.
Fixes this build warning:

  CC      drivers/crypto/xilinx/zynqmp-sha.o
In file included from ../arch/sparc/include/asm/cacheflush.h:11,
                 from ../include/linux/cacheflush.h:5,
                 from ../drivers/crypto/xilinx/zynqmp-sha.c:6:
../arch/sparc/include/asm/cacheflush_32.h:38:37: warning: 'struct page' declared inside parameter list will not be visible outside of this definition or declaration
   38 | void sparc_flush_page_to_ram(struct page *page);

Exposed by commit 0e03b8fd2936
("crypto: xilinx - Turn SHA into a tristate and allow COMPILE_TEST")
but not Fixes: that commit.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Reported-by: kernel test robot <lkp@intel.com>
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Cc: David S. Miller <davem@davemloft.net>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: sparclinux@vger.kernel.org
---
v2: use forward declaration instead of adding <linux/mm.h> (Sam)

 arch/sparc/include/asm/cacheflush_32.h |    1 +
 1 file changed, 1 insertion(+)

--- a/arch/sparc/include/asm/cacheflush_32.h
+++ b/arch/sparc/include/asm/cacheflush_32.h
@@ -35,6 +35,7 @@
 #define flush_page_for_dma(addr) \
 	sparc32_cachetlb_ops->page_for_dma(addr)
 
+struct page;
 void sparc_flush_page_to_ram(struct page *page);
 
 #define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 1

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

* Re: [PATCH v2] sparc: cacheflush_32.h needs struct page
  2022-04-09 15:16 [PATCH v2] sparc: cacheflush_32.h needs struct page Randy Dunlap
@ 2022-04-09 18:05 ` Sam Ravnborg
  2022-04-10  1:21 ` Herbert Xu
  1 sibling, 0 replies; 3+ messages in thread
From: Sam Ravnborg @ 2022-04-09 18:05 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: linux-kernel, kernel test robot, Herbert Xu, David S . Miller,
	sparclinux

On Sat, Apr 09, 2022 at 08:16:09AM -0700, Randy Dunlap wrote:
> Add a struct page forward declaration to cacheflush_32.h.
> Fixes this build warning:
> 
>   CC      drivers/crypto/xilinx/zynqmp-sha.o
> In file included from ../arch/sparc/include/asm/cacheflush.h:11,
>                  from ../include/linux/cacheflush.h:5,
>                  from ../drivers/crypto/xilinx/zynqmp-sha.c:6:
> ../arch/sparc/include/asm/cacheflush_32.h:38:37: warning: 'struct page' declared inside parameter list will not be visible outside of this definition or declaration
>    38 | void sparc_flush_page_to_ram(struct page *page);
> 
> Exposed by commit 0e03b8fd2936
> ("crypto: xilinx - Turn SHA into a tristate and allow COMPILE_TEST")
> but not Fixes: that commit.
> 
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> Reported-by: kernel test robot <lkp@intel.com>
> Cc: Herbert Xu <herbert@gondor.apana.org.au>
> Cc: David S. Miller <davem@davemloft.net>
> Cc: Sam Ravnborg <sam@ravnborg.org>
> Cc: sparclinux@vger.kernel.org
Acked-by: Sam Ravnborg <sam@ravnborg.org>

> ---
> v2: use forward declaration instead of adding <linux/mm.h> (Sam)
> 
>  arch/sparc/include/asm/cacheflush_32.h |    1 +
>  1 file changed, 1 insertion(+)
> 
> --- a/arch/sparc/include/asm/cacheflush_32.h
> +++ b/arch/sparc/include/asm/cacheflush_32.h
> @@ -35,6 +35,7 @@
>  #define flush_page_for_dma(addr) \
>  	sparc32_cachetlb_ops->page_for_dma(addr)
>  
> +struct page;
>  void sparc_flush_page_to_ram(struct page *page);
>  
>  #define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 1

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

* Re: [PATCH v2] sparc: cacheflush_32.h needs struct page
  2022-04-09 15:16 [PATCH v2] sparc: cacheflush_32.h needs struct page Randy Dunlap
  2022-04-09 18:05 ` Sam Ravnborg
@ 2022-04-10  1:21 ` Herbert Xu
  1 sibling, 0 replies; 3+ messages in thread
From: Herbert Xu @ 2022-04-10  1:21 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: linux-kernel, kernel test robot, David S . Miller, Sam Ravnborg,
	sparclinux

On Sat, Apr 09, 2022 at 08:16:09AM -0700, Randy Dunlap wrote:
> Add a struct page forward declaration to cacheflush_32.h.
> Fixes this build warning:
> 
>   CC      drivers/crypto/xilinx/zynqmp-sha.o
> In file included from ../arch/sparc/include/asm/cacheflush.h:11,
>                  from ../include/linux/cacheflush.h:5,
>                  from ../drivers/crypto/xilinx/zynqmp-sha.c:6:
> ../arch/sparc/include/asm/cacheflush_32.h:38:37: warning: 'struct page' declared inside parameter list will not be visible outside of this definition or declaration
>    38 | void sparc_flush_page_to_ram(struct page *page);
> 
> Exposed by commit 0e03b8fd2936
> ("crypto: xilinx - Turn SHA into a tristate and allow COMPILE_TEST")
> but not Fixes: that commit.
> 
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> Reported-by: kernel test robot <lkp@intel.com>
> Cc: Herbert Xu <herbert@gondor.apana.org.au>
> Cc: David S. Miller <davem@davemloft.net>
> Cc: Sam Ravnborg <sam@ravnborg.org>
> Cc: sparclinux@vger.kernel.org
> ---
> v2: use forward declaration instead of adding <linux/mm.h> (Sam)
> 
>  arch/sparc/include/asm/cacheflush_32.h |    1 +
>  1 file changed, 1 insertion(+)

Acked-by: Herbert Xu <herbert@gondor.apana.org.au>

Thanks,
-- 
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

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

end of thread, other threads:[~2022-04-10  1:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-09 15:16 [PATCH v2] sparc: cacheflush_32.h needs struct page Randy Dunlap
2022-04-09 18:05 ` Sam Ravnborg
2022-04-10  1:21 ` Herbert Xu

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