We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85fb99a commit 94cac01Copy full SHA for 94cac01
drivers/md/raid5.c
@@ -410,7 +410,7 @@ void raid5_release_stripe(struct stripe_head *sh)
410
md_wakeup_thread(conf->mddev->thread);
411
return;
412
slow_path:
413
- local_irq_save(flags);
+ local_irq_save_nort(flags);
414
/* we are ok here if STRIPE_ON_RELEASE_LIST is set or not */
415
if (atomic_dec_and_lock(&sh->count, &conf->device_lock)) {
416
INIT_LIST_HEAD(&list);
@@ -419,7 +419,7 @@ void raid5_release_stripe(struct stripe_head *sh)
419
spin_unlock(&conf->device_lock);
420
release_inactive_stripe_list(conf, &list, hash);
421
}
422
- local_irq_restore(flags);
+ local_irq_restore_nort(flags);
423
424
425
static inline void remove_hash(struct stripe_head *sh)
0 commit comments