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-next>] [day] [month] [year] [list]
Date:	Mon, 29 Dec 2008 17:47:17 +1100
From:	Benjamin Herrenschmidt <benh@....ibm.com>
To:	Rusty Russell <rusty@...dango2.ozlabs.ibm.com>
Cc:	linux-kernel@...r.kernel.org, Paul Mackerras <paulus@...ba.org>
Subject: Re: [PATCH] powerpc: fix compile damage from 2a4aca11

On Mon, 2008-12-29 at 17:41 +1100, Rusty Russell wrote:
> In file included from /scratch/kisskb/src/arch/powerpc/mm/mem.c:51:
> /scratch/kisskb/src/arch/powerpc/mm/mmu_decl.h: In function
> '_tlbil_all':
> /scratch/kisskb/src/arch/powerpc/mm/mmu_decl.h:34: error: expected ';'
> before '}' token
> /scratch/kisskb/src/arch/powerpc/mm/mmu_decl.h:36: error: invalid
> storage class for function '_tlbil_pid'
> 
> "powerpc/mm: Split low level tlb invalidate for nohash processors" needs
> more semicolons.  Or testing.  Or both.

Yeah, looks like both paulus and I are missing 40x and 8xx test configs
in our build tests :-( I'll fix that.,

> Signed-off-by: Rusty Russell <rusty@...dango2.ozlabs.ibm.com>

Nice signed-off :-)

Cheers,
Ben.


> diff --git a/arch/powerpc/mm/mmu_decl.h b/arch/powerpc/mm/mmu_decl.h
> index 4314b39..ad123bc 100644
> --- a/arch/powerpc/mm/mmu_decl.h
> +++ b/arch/powerpc/mm/mmu_decl.h
> @@ -30,11 +30,11 @@
>  #if defined(CONFIG_40x) || defined(CONFIG_8xx)
>  static inline void _tlbil_all(void)
>  {
> -	asm volatile ("sync; tlbia; isync" : : : "memory")
> +	asm volatile ("sync; tlbia; isync" : : : "memory");
>  }
>  static inline void _tlbil_pid(unsigned int pid)
>  {
> -	asm volatile ("sync; tlbia; isync" : : : "memory")
> +	asm volatile ("sync; tlbia; isync" : : : "memory");
>  }
>  #else /* CONFIG_40x || CONFIG_8xx */
>  extern void _tlbil_all(void);
> @@ -47,7 +47,7 @@ extern void _tlbil_pid(unsigned int pid);
>  #ifdef CONFIG_8xx
>  static inline void _tlbil_va(unsigned long address, unsigned int pid)
>  {
> -	asm volatile ("tlbie %0; sync" : : "r" (address) : "memory")
> +	asm volatile ("tlbie %0; sync" : : "r" (address) : "memory");
>  }
>  #else /* CONFIG_8xx */
>  extern void _tlbil_va(unsigned long address, unsigned int pid);

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ