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.
17 lines
304 B
17 lines
304 B
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#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;
|
|
int raid_disks; /* a copy of mddev->raid_disks */
|
|
struct dev_info disks[0];
|
|
};
|
|
#endif
|
|
|