vmcore_info.c 294 B

123456789101112131415
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. #include <linux/vmcore_info.h>
  3. #include <linux/mm.h>
  4. void arch_crash_save_vmcoreinfo(void)
  5. {
  6. #ifdef CONFIG_NUMA
  7. VMCOREINFO_SYMBOL(node_data);
  8. VMCOREINFO_LENGTH(node_data, MAX_NUMNODES);
  9. #endif
  10. #ifdef CONFIG_X2TLB
  11. VMCOREINFO_CONFIG(X2TLB);
  12. #endif
  13. }