projects
/
linux-2.6-microblaze.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
[linux-2.6-microblaze.git]
/
drivers
/
md
/
linear.h
1
#ifndef _LINEAR_H
2
#define _LINEAR_H
3
4
struct dev_info {
5
struct md_rdev *rdev;
6
sector_t end_sector;
7
};
8
9
struct linear_conf
10
{
11
struct rcu_head rcu;
12
sector_t array_sectors;
13
struct dev_info disks[0];
14
};
15
#endif