Index: linux-2.6.x/crypto/aes.c =================================================================== RCS file: linux-2.6.x/crypto/aes.c,v retrieving revision 1.1.1.6 diff -u -r1.1.1.6 aes.c --- linux-2.6.x/crypto/aes.c 31 Aug 2005 00:33:03 -0000 1.1.1.6 +++ linux-2.6.x/crypto/aes.c 14 Mar 2006 22:53:06 -0000 @@ -78,12 +78,11 @@ struct aes_ctx { int key_length; - u32 E[60]; - u32 D[60]; + u32 _KEYS[120]; }; -#define E_KEY ctx->E -#define D_KEY ctx->D +#define E_KEY (&ctx->_KEYS[0]) +#define D_KEY (&ctx->_KEYS[60]) static u8 pow_tab[256] __initdata; static u8 log_tab[256] __initdata;