forked from Minki/linux
2465b8580a
Enable compilation of x86_64 crypto code;, and add the needed constant to make
the code compile again (that macro was added to i386 asm-offsets between
2.6.17 and 2.6.18, in 6c2bb98bc3
).
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Cc: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 lines
700 B
C
19 lines
700 B
C
/* for use by sys-$SUBARCH/kernel-offsets.c */
|
|
|
|
OFFSET(HOST_TASK_REGS, task_struct, thread.regs);
|
|
OFFSET(HOST_TASK_PID, task_struct, pid);
|
|
DEFINE(UM_KERN_PAGE_SIZE, PAGE_SIZE);
|
|
DEFINE(UM_NSEC_PER_SEC, NSEC_PER_SEC);
|
|
DEFINE_STR(UM_KERN_EMERG, KERN_EMERG);
|
|
DEFINE_STR(UM_KERN_ALERT, KERN_ALERT);
|
|
DEFINE_STR(UM_KERN_CRIT, KERN_CRIT);
|
|
DEFINE_STR(UM_KERN_ERR, KERN_ERR);
|
|
DEFINE_STR(UM_KERN_WARNING, KERN_WARNING);
|
|
DEFINE_STR(UM_KERN_NOTICE, KERN_NOTICE);
|
|
DEFINE_STR(UM_KERN_INFO, KERN_INFO);
|
|
DEFINE_STR(UM_KERN_DEBUG, KERN_DEBUG);
|
|
DEFINE(UM_ELF_CLASS, ELF_CLASS);
|
|
DEFINE(UM_ELFCLASS32, ELFCLASS32);
|
|
DEFINE(UM_ELFCLASS64, ELFCLASS64);
|
|
DEFINE(crypto_tfm_ctx_offset, offsetof(struct crypto_tfm, __crt_ctx));
|