ceph: use fpos_cmp() to compare dentry positions
authorYan, Zheng <zheng.z.yan@intel.com>
Wed, 9 Apr 2014 01:35:19 +0000 (09:35 +0800)
committerSage Weil <sage@inktank.com>
Mon, 28 Apr 2014 19:53:52 +0000 (12:53 -0700)
Signed-off-by: Yan, Zheng <zheng.z.yan@intel.com>
Reviewed-by: Sage Weil <sage@inktank.com>
fs/ceph/dir.c

index 8c7f90b..fb4f7a2 100644 (file)
@@ -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;