diff options
author | David Woodhouse <dwmw2@infradead.org> | 2006-05-20 22:46:05 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2006-05-20 22:46:05 -0400 |
commit | 68270995f29f1a82b3eaab01df63ea7e721e2fa6 (patch) | |
tree | 44388152f209c9f8f0df8eec33efaaca7817ec6d /fs/jffs2/nodelist.c | |
parent | 7807ef7ba2a41c05f6197381f572dd38baa6c1ce (diff) |
[JFFS2] Introduce jffs2_scan_dirty_space() function.
To eliminate the __totlen field from struct jffs2_raw_node_ref, we need
to allocate nodes for dirty space instead of just tweaking the accounting
data. Introduce jffs2_scan_dirty_space() in preparation for that.
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'fs/jffs2/nodelist.c')
-rw-r--r-- | fs/jffs2/nodelist.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/fs/jffs2/nodelist.c b/fs/jffs2/nodelist.c index 1fc8aedb56fb..00506857eabc 100644 --- a/fs/jffs2/nodelist.c +++ b/fs/jffs2/nodelist.c | |||
@@ -1080,3 +1080,14 @@ void jffs2_link_node_ref(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, | |||
1080 | ref->__totlen = len; | 1080 | ref->__totlen = len; |
1081 | ref->next_phys = NULL; | 1081 | ref->next_phys = NULL; |
1082 | } | 1082 | } |
1083 | |||
1084 | int jffs2_scan_dirty_space(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, | ||
1085 | uint32_t size) | ||
1086 | { | ||
1087 | c->dirty_size += size; | ||
1088 | c->free_size -= size; | ||
1089 | jeb->dirty_size += size; | ||
1090 | jeb->free_size -= size; | ||
1091 | |||
1092 | return 0; | ||
1093 | } | ||