mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
3cb0300200
The typedefs are just annoying. 'mdk' probably refers to 'md_k.h' which used to be an include file that defined this thing. Signed-off-by: NeilBrown <neilb@suse.de>
22 lines
305 B
C
22 lines
305 B
C
#ifndef _LINEAR_H
|
|
#define _LINEAR_H
|
|
|
|
struct dev_info {
|
|
struct md_rdev *rdev;
|
|
sector_t end_sector;
|
|
};
|
|
|
|
typedef struct dev_info dev_info_t;
|
|
|
|
struct linear_private_data
|
|
{
|
|
struct rcu_head rcu;
|
|
sector_t array_sectors;
|
|
dev_info_t disks[0];
|
|
};
|
|
|
|
|
|
typedef struct linear_private_data linear_conf_t;
|
|
|
|
#endif
|