Wengang Wang 8298524803 ocfs2: make direntry invalid when deleting it
When we deleting a direntry from a directory, if it's the first in a block we
invalid it by setting inode to 0; otherwise, we merge the deleted one to the
prior and contiguous direntry. And we don't truncate directories.

There is a problem for the later case since inode is not set to 0.
This problem happens when the caller passes a file position as parameter to
ocfs2_dir_foreach_blk(). If the position happens to point to a stale(not
the first, deleted in betweens of ocfs2_dir_foreach_blk()s) direntry, we are
not able to recognize its staleness. So that we treat it as a live one wrongly.

The fix is to set inode to 0 in both cases indicating the direntry is stale.
This won't introduce additional IOs.

Signed-off-by: Wengang Wang <wen.gang.wang@oracle.com>
Signed-off-by: Joel Becker <jlbec@evilplan.org>
2011-11-17 01:46:46 -08:00
..
2011-05-23 23:37:20 -07:00
2011-07-28 02:07:16 -07:00
2011-07-25 14:58:15 -07:00
2011-07-25 14:58:15 -07:00
2011-07-28 02:07:16 -07:00
2011-05-31 19:03:45 -07:00
2011-07-24 10:36:54 -07:00
2011-05-23 23:37:20 -07:00
2011-05-31 19:03:45 -07:00
2011-07-24 10:34:54 -07:00