You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef _LINEAR_H |
|
#define _LINEAR_H |
|
|
|
struct dev_info { |
|
struct md_rdev *rdev; |
|
sector_t end_sector; |
|
}; |
|
|
|
struct linear_conf |
|
{ |
|
struct rcu_head rcu; |
|
sector_t array_sectors; |
|
struct dev_info disks[0]; |
|
}; |
|
#endif
|
|
|