summaryrefslogtreecommitdiffstats
path: root/fs/ubifs/budget.c
diff options
context:
space:
mode:
authorArtem Bityutskiy2008-12-19 15:11:13 +0100
committerArtem Bityutskiy2008-12-23 11:24:16 +0100
commitc8f915913afdfe1a796e312e21658b8edcf20868 (patch)
tree0a4cc7716e12b6ae0eb93940c2d4f638ca5c21a3 /fs/ubifs/budget.c
parentUBIFS: re-calculate min_idx_size after the commit (diff)
downloadkernel-qcow2-linux-c8f915913afdfe1a796e312e21658b8edcf20868.tar.gz
kernel-qcow2-linux-c8f915913afdfe1a796e312e21658b8edcf20868.tar.xz
kernel-qcow2-linux-c8f915913afdfe1a796e312e21658b8edcf20868.zip
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>
Diffstat (limited to 'fs/ubifs/budget.c')
-rw-r--r--fs/ubifs/budget.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ubifs/budget.c b/fs/ubifs/budget.c
index 0bcb8031ca18..44cff803171a 100644
--- a/fs/ubifs/budget.c
+++ b/fs/ubifs/budget.c
@@ -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;
/*