projects
/
~shefty
/
rdma-dev.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
ramoops: move dump_oops into platform data
[~shefty/rdma-dev.git]
/
include
/
linux
/
ramoops.h
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
int dump_oops;
14
};
15
16
#endif