Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1545884 > unrolled thread

[RFC PATCH v1 01/30] lustre: don't set f_version in ll_readdir

Started byJeff Layton <jlayton@redhat.com>
First post2016-12-21 18:10 +0100
Last post2016-12-21 18:10 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [RFC PATCH v1 01/30] lustre: don't set f_version in ll_readdir Jeff Layton <jlayton@redhat.com> - 2016-12-21 18:10 +0100

#1545884 — [RFC PATCH v1 01/30] lustre: don't set f_version in ll_readdir

FromJeff Layton <jlayton@redhat.com>
Date2016-12-21 18:10 +0100
Subject[RFC PATCH v1 01/30] lustre: don't set f_version in ll_readdir
Message-ID<sQSyS-6ed-39@gated-at.bofh.it>
f_version is only ever used by filesystem-specific code, and nothing in
lustre ever looks at it.

Signed-off-by: Jeff Layton <jlayton@redhat.com>
---
 drivers/staging/lustre/lustre/llite/dir.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/drivers/staging/lustre/lustre/llite/dir.c b/drivers/staging/lustre/lustre/llite/dir.c
index ea5d247a3f70..1d288ec5f03e 100644
--- a/drivers/staging/lustre/lustre/llite/dir.c
+++ b/drivers/staging/lustre/lustre/llite/dir.c
@@ -367,8 +367,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);
@@ -1671,7 +1669,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;
 	}
-- 
2.7.4

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web