[PATCH] kdump: Routines for copying dump pages
[linux-2.6/openmoko-kernel/knife-kernel.git] / include / asm-um / processor-x86_64.h
blob0beb9a42ae05b5cf1afe8fd45d3e914837b6ad0f
1 /*
2 * Copyright 2003 PathScale, Inc.
4 * Licensed under the GPL
5 */
7 #ifndef __UM_PROCESSOR_X86_64_H
8 #define __UM_PROCESSOR_X86_64_H
10 /* include faultinfo structure */
11 #include "sysdep/faultinfo.h"
13 struct arch_thread {
14 unsigned long debugregs[8];
15 int debugregs_seq;
16 struct faultinfo faultinfo;
19 /* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */
20 extern inline void rep_nop(void)
22 __asm__ __volatile__("rep;nop": : :"memory");
25 #define cpu_relax() rep_nop()
27 #define INIT_ARCH_THREAD { .debugregs = { [ 0 ... 7 ] = 0 }, \
28 .debugregs_seq = 0, \
29 .faultinfo = { 0, 0, 0 } }
31 #include "asm/arch/user.h"
33 #define current_text_addr() \
34 ({ void *pc; __asm__("movq $1f,%0\n1:":"=g" (pc)); pc; })
36 #define ARCH_IS_STACKGROW(address) \
37 (address + 128 >= UPT_SP(&current->thread.regs.regs))
39 #include "asm/processor-generic.h"
41 #endif
44 * Overrides for Emacs so that we follow Linus's tabbing style.
45 * Emacs will notice this stuff at the end of the file and automatically
46 * adjust the settings for this buffer only. This must remain at the end
47 * of the file.
48 * ---------------------------------------------------------------------------
49 * Local variables:
50 * c-file-style: "linux"
51 * End: