mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 05:02:12 +00:00
UBIFS: avoid unnecessary calculations
Do not calculate min_idx_lebs, because it is available in c->min_idx_lebs Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
This commit is contained in:
parent
650ed50f42
commit
c8f915913a
@ -763,7 +763,8 @@ long long ubifs_get_free_space(struct ubifs_info *c)
|
||||
long long available, outstanding, free;
|
||||
|
||||
spin_lock(&c->space_lock);
|
||||
min_idx_lebs = ubifs_calc_min_idx_lebs(c);
|
||||
min_idx_lebs = c->min_idx_lebs;
|
||||
ubifs_assert(min_idx_lebs == ubifs_calc_min_idx_lebs(c));
|
||||
outstanding = c->budg_data_growth + c->budg_dd_growth;
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user