Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.13-rc7 16 lines 265 B view raw
1#ifndef _LINEAR_H 2#define _LINEAR_H 3 4struct dev_info { 5 struct md_rdev *rdev; 6 sector_t end_sector; 7}; 8 9struct linear_conf 10{ 11 struct rcu_head rcu; 12 sector_t array_sectors; 13 int raid_disks; /* a copy of mddev->raid_disks */ 14 struct dev_info disks[0]; 15}; 16#endif