diff options
author | Coly Li <colyli@suse.de> | 2019-06-28 13:59:51 +0200 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-06-28 15:39:17 +0200 |
commit | a231f07a5fe30a522b402011c5190cb936641a66 (patch) | |
tree | ee29a6ab832e636dc2c5fa23af822f1f5294d0b0 /drivers/md/bcache/journal.c | |
parent | bcache: add code comments for journal_read_bucket() (diff) | |
download | linux-a231f07a5fe30a522b402011c5190cb936641a66.tar.xz linux-a231f07a5fe30a522b402011c5190cb936641a66.zip |
bcache: set largest seq to ja->seq[bucket_index] in journal_read_bucket()
In journal_read_bucket() when setting ja->seq[bucket_index], there might
be potential case that a later non-maximum overwrites a better sequence
number to ja->seq[bucket_index]. This patch adds a check to make sure
that ja->seq[bucket_index] will be only set a new value if it is bigger
then current value.
Signed-off-by: Coly Li <colyli@suse.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/md/bcache/journal.c')
-rw-r--r-- | drivers/md/bcache/journal.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/md/bcache/journal.c b/drivers/md/bcache/journal.c index 98ee467ec3f7..3d321bffddc9 100644 --- a/drivers/md/bcache/journal.c +++ b/drivers/md/bcache/journal.c @@ -156,7 +156,8 @@ add: list_add(&i->list, where); ret = 1; - ja->seq[bucket_index] = j->seq; + if (j->seq > ja->seq[bucket_index]) + ja->seq[bucket_index] = j->seq; next_set: offset += blocks * ca->sb.block_size; len -= blocks * ca->sb.block_size; |