[PATCH] crypto: make tables used from assembler __visible

2013-08-10 Thread Andi Kleen
From: Andi Kleen Tables used from assembler should be marked __visible to let the compiler know. Signed-off-by: Andi Kleen --- arch/x86/crypto/camellia_glue.c | 16 crypto/aes_generic.c| 8 crypto/cast_common.c| 8 3 files changed, 1

[PATCH 1/2] arch/x86/crypto/camellia_glue.c: adjust code alignment

2013-08-10 Thread Julia Lawall
From: Julia Lawall Adjust alignment in automatically generated code. If this code will not be regenerated in the future, it may as well look nice. Signed-off-by: Julia Lawall --- This patch was generated from the result of the previous one, which replaced commas by semicolons. arch/x86/cryp

[PATCH 2/2] crypto/camellia_generic.c: adjust code alignment

2013-08-10 Thread Julia Lawall
From: Julia Lawall Adjust alignment in automatically generated code. If this code will not be regenerated in the future, it may as well look nice. Signed-off-by: Julia Lawall --- This patch was generated from the result of the previous one, which replaced commas by semicolons. crypto/camell

Re: [PATCH 2/5] crypto/camellia_generic.c: convert comma to semicolon

2013-08-10 Thread Julia Lawall
On Sat, 10 Aug 2013, Joe Perches wrote: > On Sat, 2013-08-10 at 17:40 +0200, Julia Lawall wrote: > > Replace a comma between expression statements by a semicolon. > [] > > This patch is separate from the others because the code appears to be > > machine-generated. > > It may have once been machin

Re: [PATCH 2/5] crypto/camellia_generic.c: convert comma to semicolon

2013-08-10 Thread Joe Perches
On Sat, 2013-08-10 at 17:40 +0200, Julia Lawall wrote: > Replace a comma between expression statements by a semicolon. [] > This patch is separate from the others because the code appears to be > machine-generated. It may have once been machine generated, but it's not now. It's been modified sever

[PATCH 2/5] crypto/camellia_generic.c: convert comma to semicolon

2013-08-10 Thread Julia Lawall
From: Julia Lawall Replace a comma between expression statements by a semicolon. A simplified version of the semantic patch that performs this transformation is as follows: (http://coccinelle.lip6.fr/) // @r@ expression e1,e2,e; type T; identifier i; @@ e1 -, +; e2; // This patch is separ

[PATCH 3/5] arch/x86/crypto/camellia_glue.c: convert comma to semicolon

2013-08-10 Thread Julia Lawall
From: Julia Lawall Replace a comma between expression statements by a semicolon. A simplified version of the semantic patch that performs this transformation is as follows: (http://coccinelle.lip6.fr/) // @r@ expression e1,e2,e; type T; identifier i; @@ e1 -, +; e2; // This patch is separ