kdump.h 351 B

12345678910111213
  1. #ifndef _PPC64_KDUMP_H
  2. #define _PPC64_KDUMP_H
  3. /* How many bytes to reserve at zero for kdump. The reserve limit should
  4. * be greater or equal to the trampoline's end address. */
  5. #define KDUMP_RESERVE_LIMIT 0x8000
  6. #define KDUMP_TRAMPOLINE_START 0x0100
  7. #define KDUMP_TRAMPOLINE_END 0x3000
  8. extern void kdump_setup(void);
  9. #endif /* __PPC64_KDUMP_H */