Searched refs:disk_idx (Results 1 – 5 of 5) sorted by relevance
/linux-6.1.9/drivers/md/ |
D | raid5.h | 791 static inline int raid5_get_page_offset(struct stripe_head *sh, int disk_idx) in raid5_get_page_offset() argument 793 return (disk_idx % sh->stripes_per_page) * RAID5_STRIPE_SIZE(sh->raid_conf); in raid5_get_page_offset() 800 raid5_get_dev_page(struct stripe_head *sh, int disk_idx) in raid5_get_dev_page() argument 802 return sh->pages[disk_idx / sh->stripes_per_page]; in raid5_get_dev_page()
|
D | md-multipath.c | 339 int disk_idx; in multipath_run() local 372 disk_idx = rdev->raid_disk; in multipath_run() 373 if (disk_idx < 0 || in multipath_run() 374 disk_idx >= mddev->raid_disks) in multipath_run() 377 disk = conf->multipaths + disk_idx; in multipath_run()
|
D | raid5.c | 3814 static int want_replace(struct stripe_head *sh, int disk_idx) in want_replace() argument 3820 rdev = rcu_dereference(sh->raid_conf->disks[disk_idx].replacement); in want_replace() 3832 int disk_idx, int disks) in need_this_block() argument 3834 struct r5dev *dev = &sh->dev[disk_idx]; in need_this_block() 3854 (s->replacing && want_replace(sh, disk_idx))) in need_this_block() 3939 int disk_idx, int disks) in fetch_block() argument 3941 struct r5dev *dev = &sh->dev[disk_idx]; in fetch_block() 3944 if (need_this_block(sh, s, disk_idx, disks)) { in fetch_block() 3962 ((sh->qd_idx >= 0 && sh->pd_idx == disk_idx) || in fetch_block() 3963 (s->failed && (disk_idx == s->failed_num[0] || in fetch_block() [all …]
|
D | raid1.c | 3031 int disk_idx = rdev->raid_disk; in setup_conf() local 3032 if (disk_idx >= mddev->raid_disks in setup_conf() 3033 || disk_idx < 0) in setup_conf() 3036 disk = conf->mirrors + mddev->raid_disks + disk_idx; in setup_conf() 3038 disk = conf->mirrors + disk_idx; in setup_conf()
|
D | raid10.c | 4112 int i, disk_idx; in raid10_run() local 4156 disk_idx = rdev->raid_disk; in raid10_run() 4157 if (disk_idx < 0) in raid10_run() 4159 if (disk_idx >= conf->geo.raid_disks && in raid10_run() 4160 disk_idx >= conf->prev.raid_disks) in raid10_run() 4162 disk = conf->mirrors + disk_idx; in raid10_run()
|