lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Wed, 28 Sep 2016 14:59:07 -0500
From:   Scott Wood <oss@...error.net>
To:     Valentin Rothberg <valentinrothberg@...il.com>, roy.pledge@....com,
        claudiu.manoil@....com
Cc:     linux-kernel@...r.kernel.org
Subject: Re: [PATCH] soc/fsl: dpaa_sys.h: fix ARM32 typo

On Tue, 2016-09-27 at 10:27 +0200, Valentin Rothberg wrote:
> The Kconfig symbol for 32bit ARM is 'ARM', not 'ARM32'.
> 
> Signed-off-by: Valentin Rothberg <valentinrothberg@...il.com>
> ---
>  drivers/soc/fsl/qbman/dpaa_sys.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/soc/fsl/qbman/dpaa_sys.h
> b/drivers/soc/fsl/qbman/dpaa_sys.h
> index b63fd72295c6..608b1f608e13 100644
> --- a/drivers/soc/fsl/qbman/dpaa_sys.h
> +++ b/drivers/soc/fsl/qbman/dpaa_sys.h
> @@ -55,7 +55,7 @@ static inline void dpaa_flush(void *p)
>  {
>  #ifdef CONFIG_PPC
>  	flush_dcache_range((unsigned long)p, (unsigned long)p+64);
> -#elif defined(CONFIG_ARM32)
> +#elif defined(CONFIG_ARM)
>  	__cpuc_flush_dcache_area(p, 64);
>  #elif defined(CONFIG_ARM64)
>  	__flush_dcache_area(p, 64);

Despite a couple stray pieces like this, the current qbman submission only
supports PPC.  ARM support is expected as a followup that should go via the
arm-soc tree.

-Scott

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ