mirror of https://gitee.com/openkylin/linux.git
UBIFS: fix debugging dump
In 'dbg_check_space_info()' we want to dump current lprops statistics, but actually dump old statistics. Fix this. Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
This commit is contained in:
parent
be9e62a730
commit
e055f7e873
|
@ -1005,8 +1005,10 @@ int dbg_check_space_info(struct ubifs_info *c)
|
|||
ubifs_msg("saved lprops statistics dump");
|
||||
dbg_dump_lstats(&d->saved_lst);
|
||||
ubifs_get_lp_stats(c, &lst);
|
||||
|
||||
ubifs_msg("current lprops statistics dump");
|
||||
dbg_dump_lstats(&d->saved_lst);
|
||||
dbg_dump_lstats(&lst);
|
||||
|
||||
spin_lock(&c->space_lock);
|
||||
dbg_dump_budg(c);
|
||||
spin_unlock(&c->space_lock);
|
||||
|
|
Loading…
Reference in New Issue