File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2382,8 +2382,8 @@ static void raid1d(struct md_thread *thread)
2382
2382
}
2383
2383
spin_unlock_irqrestore (& conf -> device_lock , flags );
2384
2384
while (!list_empty (& tmp )) {
2385
- r1_bio = list_first_entry (& conf -> bio_end_io_list ,
2386
- struct r1bio , retry_list );
2385
+ r1_bio = list_first_entry (& tmp , struct r1bio ,
2386
+ retry_list );
2387
2387
list_del (& r1_bio -> retry_list );
2388
2388
raid_end_bio_io (r1_bio );
2389
2389
}
Original file line number Diff line number Diff line change @@ -2688,8 +2688,8 @@ static void raid10d(struct md_thread *thread)
2688
2688
}
2689
2689
spin_unlock_irqrestore (& conf -> device_lock , flags );
2690
2690
while (!list_empty (& tmp )) {
2691
- r10_bio = list_first_entry (& conf -> bio_end_io_list ,
2692
- struct r10bio , retry_list );
2691
+ r10_bio = list_first_entry (& tmp , struct r10bio ,
2692
+ retry_list );
2693
2693
list_del (& r10_bio -> retry_list );
2694
2694
raid_end_bio_io (r10_bio );
2695
2695
}
You can’t perform that action at this time.
0 commit comments