Files
linux-apfs/drivers/md/linear.h
T

16 lines
212 B
C
Raw Normal View History

2005-04-16 15:20:36 -07:00
#ifndef _LINEAR_H
#define _LINEAR_H
struct dev_info {
struct md_rdev *rdev;
sector_t end_sector;
2005-04-16 15:20:36 -07:00
};
struct linear_conf
2005-04-16 15:20:36 -07:00
{
struct rcu_head rcu;
sector_t array_sectors;
struct dev_info disks[0];
2005-04-16 15:20:36 -07:00
};
#endif