]> git.baikalelectronics.ru Git - kernel.git/commit
ubifs: Correctly initialize c->min_log_bytes
authorRichard Weinberger <richard@nod.at>
Tue, 13 Aug 2019 21:55:48 +0000 (23:55 +0200)
committerRichard Weinberger <richard@nod.at>
Thu, 22 Aug 2019 15:24:59 +0000 (17:24 +0200)
commit2ff4d19a5d532faa626e8d2c3cb2c251d3503a53
tree77496a5741b4a9ba2d332db389d00e033a438c85
parent7cd7cfdbae495f9bd573e1af725897151553c35d
ubifs: Correctly initialize c->min_log_bytes

Currently on a freshly mounted UBIFS, c->min_log_bytes is 0.
This can lead to a log overrun and make commits fail.

Recent kernels will report the following assert:
UBIFS assert failed: c->lhead_lnum != c->ltail_lnum, in fs/ubifs/log.c:412

c->min_log_bytes can have two states, 0 and c->leb_size.
It controls how much bytes of the log area are reserved for non-bud
nodes such as commit nodes.

After a commit it has to be set to c->leb_size such that we have always
enough space for a commit. While a commit runs it can be 0 to make the
remaining bytes of the log available to writers.

Having it set to 0 right after mount is wrong since no space for commits
is reserved.

Fixes: 974763da840db ("UBIFS: add new flash file system")
Reported-and-tested-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Richard Weinberger <richard@nod.at>
fs/ubifs/super.c