Skip to content

Commit

Permalink
lustre: don't set f_version in ll_readdir
Browse files Browse the repository at this point in the history
f_version is only ever used by filesystem-specific code. Generic
VFS code never uses it.

Nothing in lustre ever looks at it, so just remove this.

Signed-off-by: Jeff Layton <[email protected]>
Reviewed-by: Andreas Dilger <[email protected]>
  • Loading branch information
jtlayton committed Jan 1, 2018
1 parent ac0bf02 commit 8ec426c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions drivers/staging/lustre/lustre/llite/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -369,8 +369,6 @@ static int ll_readdir(struct file *filp, struct dir_context *ctx)
}
ctx->pos = pos;
ll_finish_md_op_data(op_data);
filp->f_version = inode->i_version;

out:
if (!rc)
ll_stats_ops_tally(sbi, LPROC_LL_READDIR, 1);
Expand Down Expand Up @@ -1678,7 +1676,6 @@ static loff_t ll_dir_seek(struct file *file, loff_t offset, int origin)
else
fd->lfd_pos = offset;
file->f_pos = offset;
file->f_version = 0;
}
ret = offset;
}
Expand Down

0 comments on commit 8ec426c

Please sign in to comment.