mirror of https://gitee.com/openkylin/linux.git
md/r5cache: enable IRQs on error path
We need to re-enable the IRQs here before returning.
Fixes: a39f7afde3
("md/r5cache: write-out phase and reclaim support")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Shaohua Li <shli@fb.com>
This commit is contained in:
parent
d7bd398e97
commit
d3014e21e1
|
@ -1029,7 +1029,7 @@ static sector_t r5c_calculate_new_cp(struct r5conf *conf)
|
|||
spin_lock_irqsave(&log->stripe_in_journal_lock, flags);
|
||||
if (list_empty(&conf->log->stripe_in_journal_list)) {
|
||||
/* all stripes flushed */
|
||||
spin_unlock(&log->stripe_in_journal_lock);
|
||||
spin_unlock_irqrestore(&log->stripe_in_journal_lock, flags);
|
||||
return log->next_checkpoint;
|
||||
}
|
||||
sh = list_first_entry(&conf->log->stripe_in_journal_list,
|
||||
|
|
Loading…
Reference in New Issue