Files
linux-apfs/include/linux/ramoops.h
T

18 lines
310 B
C
Raw Normal View History

#ifndef __RAMOOPS_H
#define __RAMOOPS_H
/*
* Ramoops platform data
* @mem_size memory size for ramoops
* @mem_address physical memory address to contain ramoops
*/
struct ramoops_platform_data {
unsigned long mem_size;
unsigned long mem_address;
unsigned long record_size;
2011-07-26 16:08:58 -07:00
int dump_oops;
};
#endif