Skip to content

Commit

Permalink
Merge pull request #8014 from ukernel/wip-15038
Browse files Browse the repository at this point in the history
mds: fix inode_t::compare()

Reviewed-by: Greg Farnum <gfarnum@redhat.com>
  • Loading branch information
gregsfortytwo committed Mar 10, 2016
2 parents 4fdd10d + 9b79d05 commit 6f81a7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mds/mdstypes.cc
Expand Up @@ -448,7 +448,7 @@ int inode_t::compare(const inode_t &other, bool *divergent) const
gid != other.gid ||
nlink != other.nlink ||
memcmp(&dir_layout, &other.dir_layout, sizeof(dir_layout)) ||
memcmp(&layout, &other.layout, sizeof(layout)) ||
layout != other.layout ||
old_pools != other.old_pools ||
size != other.size ||
max_size_ever != other.max_size_ever ||
Expand Down

0 comments on commit 6f81a7a

Please sign in to comment.