ipanic_version.h 364 B

123456789101112131415161718
  1. #if !defined(__AEE_IPANIC_VERSION_H__)
  2. #define __AEE_IPANIC_VERSION_H__
  3. #include <linux/version.h>
  4. #include <linux/kmsg_dump.h>
  5. struct ipanic_log_index {
  6. u32 idx;
  7. u64 seq;
  8. };
  9. extern u32 log_first_idx;
  10. extern u64 log_first_seq;
  11. extern u32 log_next_idx;
  12. extern u64 log_next_seq;
  13. int ipanic_kmsg_dump3(struct kmsg_dumper *dumper, char *buf, size_t len);
  14. #endif