diff options
author | Nicolas Iooss <nicolas.iooss_linux@m4x.org> | 2016-08-28 18:47:12 +0200 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2016-09-05 14:30:35 +0200 |
commit | 0f5aa88a7bb28b73253fb42b3df8202142769f39 (patch) | |
tree | b57ebe5ded4d28dd333881950dc29a9e5326e3aa /arch/m32r | |
parent | c6935931c1894ff857616ff8549b61236a19148f (diff) | |
download | linux-0f5aa88a7bb28b73253fb42b3df8202142769f39.tar.gz linux-0f5aa88a7bb28b73253fb42b3df8202142769f39.tar.bz2 linux-0f5aa88a7bb28b73253fb42b3df8202142769f39.zip |
ceph: do not modify fi->frag in need_reset_readdir()
Commit f3c4ebe65ea1 ("ceph: using hash value to compose dentry offset")
modified "if (fpos_frag(new_pos) != fi->frag)" to "if (fi->frag |=
fpos_frag(new_pos))" in need_reset_readdir(), thus replacing a
comparison operator with an assignment one.
This looks like a typo which is reported by clang when building the
kernel with some warning flags:
fs/ceph/dir.c:600:22: error: using the result of an assignment as a
condition without parentheses [-Werror,-Wparentheses]
} else if (fi->frag |= fpos_frag(new_pos)) {
~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
fs/ceph/dir.c:600:22: note: place parentheses around the assignment
to silence this warning
} else if (fi->frag |= fpos_frag(new_pos)) {
^
( )
fs/ceph/dir.c:600:22: note: use '!=' to turn this compound
assignment into an inequality comparison
} else if (fi->frag |= fpos_frag(new_pos)) {
^~
!=
Fixes: f3c4ebe65ea1 ("ceph: using hash value to compose dentry offset")
Signed-off-by: Nicolas Iooss <nicolas.iooss_linux@m4x.org>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'arch/m32r')
0 files changed, 0 insertions, 0 deletions