repo.or.cz
/
linux-2.6
/
linux-acpi-2.6
/
ibm-acpi-2.6.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ima: free duplicate measurement memory
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git]
/
include
/
linux
/
ramoops.h
blob
484fef81cd3a6f4d36affbecc9b20b623a232408
1
#ifndef __RAMOOPS_H
2
#define __RAMOOPS_H
3
4
/*
5
* Ramoops platform data
6
* @mem_size memory size for ramoops
7
* @mem_address physical memory address to contain ramoops
8
*/
9
10
struct
ramoops_platform_data
{
11
unsigned long
mem_size
;
12
unsigned long
mem_address
;
13
unsigned long
record_size
;
14
int
dump_oops
;
15
};
16
17
#endif