diff options
author | JackieLiu <liuyun01@kylinos.cn> | 2016-12-13 13:55:27 +0800 |
---|---|---|
committer | Shaohua Li <shli@fb.com> | 2017-01-05 11:44:37 -0800 |
commit | 28ca833ecf89c585a9543fb21aef6b2bdbbaa48a (patch) | |
tree | 457f2758a225d6c5d4c8b5a2805761b03a170e47 | |
parent | bb5f1ed70bc3bbbce510907da3432dab267ff508 (diff) | |
download | linux-28ca833ecf89c585a9543fb21aef6b2bdbbaa48a.tar.bz2 |
md/raid5-cache: removes unnecessary write-through mode judgments
The write-through mode has been returned in front of the function,
do not need to do it again.
Signed-off-by: JackieLiu <liuyun01@kylinos.cn>
Reviewed-by: Song Liu <songliubraving@fb.com>
Signed-off-by: Shaohua Li <shli@fb.com>
-rw-r--r-- | drivers/md/raid5-cache.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/md/raid5-cache.c b/drivers/md/raid5-cache.c index d7bfb6fc8aef..49aea4231084 100644 --- a/drivers/md/raid5-cache.c +++ b/drivers/md/raid5-cache.c @@ -2418,9 +2418,6 @@ void r5c_finish_stripe_write_out(struct r5conf *conf, if (do_wakeup) wake_up(&conf->wait_for_overlap); - if (conf->log->r5c_journal_mode == R5C_JOURNAL_MODE_WRITE_THROUGH) - return; - spin_lock_irq(&conf->log->stripe_in_journal_lock); list_del_init(&sh->r5c); spin_unlock_irq(&conf->log->stripe_in_journal_lock); |