|
@@ -125,6 +125,7 @@ int reiserfs_readdir_inode(struct inode *inode, struct dir_context *ctx)
|
|
|
int d_reclen;
|
|
|
char *d_name;
|
|
|
ino_t d_ino;
|
|
|
+ loff_t cur_pos = deh_offset(deh);
|
|
|
|
|
|
if (!de_visible(deh))
|
|
|
/* it is hidden entry */
|
|
@@ -196,8 +197,9 @@ int reiserfs_readdir_inode(struct inode *inode, struct dir_context *ctx)
|
|
|
if (local_buf != small_buf) {
|
|
|
kfree(local_buf);
|
|
|
}
|
|
|
- // next entry should be looked for with such offset
|
|
|
- next_pos = deh_offset(deh) + 1;
|
|
|
+
|
|
|
+ /* deh_offset(deh) may be invalid now. */
|
|
|
+ next_pos = cur_pos + 1;
|
|
|
|
|
|
if (item_moved(&tmp_ih, &path_to_entry)) {
|
|
|
set_cpu_key_k_offset(&pos_key,
|