diff options
author | Yan, Zheng <zheng.z.yan@intel.com> | 2014-04-09 09:35:19 +0800 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2014-04-28 12:53:52 -0700 |
commit | 6da5246dd4b077ab229481ca342802f7fdcdab59 (patch) | |
tree | c00a07637ed0823cc3e6d20d89048da320088cd8 | |
parent | 0081bd83c089ef3d0c9a4e4e869e2ab75f2cb379 (diff) |
ceph: use fpos_cmp() to compare dentry positions
Signed-off-by: Yan, Zheng <zheng.z.yan@intel.com>
Reviewed-by: Sage Weil <sage@inktank.com>
-rw-r--r-- | fs/ceph/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/dir.c b/fs/ceph/dir.c index 8c7f90b9691..fb4f7a203ed 100644 --- a/fs/ceph/dir.c +++ b/fs/ceph/dir.c @@ -141,7 +141,7 @@ static int __dcache_readdir(struct file *file, struct dir_context *ctx, /* start at beginning? */ if (ctx->pos == 2 || last == NULL || - ctx->pos < ceph_dentry(last)->offset) { + fpos_cmp(ctx->pos, ceph_dentry(last)->offset) < 0) { if (list_empty(&parent->d_subdirs)) goto out_unlock; p = parent->d_subdirs.prev; |