Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3b79673c authored by David Woodhouse's avatar David Woodhouse
Browse files

[JFFS2] Fix accounting error in jffs2_link_node_ref()



When filing REF_OBSOLETE nodes, we'd add their size to the global
'dirty_size' count, but then to the eraseblock's 'used_size' count.
That's not clever.

Signed-off-by: default avatarDavid Woodhouse <dwmw2@infradead.org>
parent 06c6764b
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1079,7 +1079,7 @@ void jffs2_link_node_ref(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,


	case REF_OBSOLETE:
	case REF_OBSOLETE:
		c->dirty_size += len;
		c->dirty_size += len;
		jeb->used_size += len;
		jeb->dirty_size += len;
		break;
		break;
	}
	}
	c->free_size -= len;
	c->free_size -= len;