diff options
author | David Woodhouse <dwmw2@infradead.org> | 2007-06-29 08:39:57 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2007-06-29 08:39:57 -0400 |
commit | 43dfa07fbb6b8bd5b6173a5bab48470f578c8e5b (patch) | |
tree | 2818c8f74de363c2a4084b9b050685d0a17beec9 /fs/jffs2/write.c | |
parent | 663d77a7ccfd407cf7491dbd53c7c17eef58c96a (diff) |
[JFFS2] Deletion dirents should be REF_NORMAL, not REF_PRISTINE.
Otherwise they'll never actually get garbage-collected.
Noted by Jonathan Larmour.
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'fs/jffs2/write.c')
-rw-r--r-- | fs/jffs2/write.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/jffs2/write.c b/fs/jffs2/write.c index 1406f2ce20a7..bc6185933664 100644 --- a/fs/jffs2/write.c +++ b/fs/jffs2/write.c | |||
@@ -296,7 +296,8 @@ struct jffs2_full_dirent *jffs2_write_dirent(struct jffs2_sb_info *c, struct jff | |||
296 | return ERR_PTR(ret?ret:-EIO); | 296 | return ERR_PTR(ret?ret:-EIO); |
297 | } | 297 | } |
298 | /* Mark the space used */ | 298 | /* Mark the space used */ |
299 | fd->raw = jffs2_add_physical_node_ref(c, flash_ofs | REF_PRISTINE, PAD(sizeof(*rd)+namelen), f->inocache); | 299 | fd->raw = jffs2_add_physical_node_ref(c, flash_ofs | dirent_node_state(rd), |
300 | PAD(sizeof(*rd)+namelen), f->inocache); | ||
300 | if (IS_ERR(fd->raw)) { | 301 | if (IS_ERR(fd->raw)) { |
301 | void *hold_err = fd->raw; | 302 | void *hold_err = fd->raw; |
302 | /* Release the full_dirent which is now useless, and return */ | 303 | /* Release the full_dirent which is now useless, and return */ |