1
0
Fork 0

ceph: remove redundant assignment

There is redundant assighment of variable i in
ceph_mdsmap_get_random_mds(), just remvoe it.

Signed-off-by: Chengguang Xu <cgxu519@gmx.com>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
hifive-unleashed-5.1
Chengguang Xu 2018-11-15 22:27:01 +08:00 committed by Ilya Dryomov
parent 2bf996ac48
commit 0cab9f33d9
1 changed files with 0 additions and 1 deletions

View File

@ -35,7 +35,6 @@ int ceph_mdsmap_get_random_mds(struct ceph_mdsmap *m)
/* pick */
n = prandom_u32() % n;
i = 0;
for (i = 0; n > 0; i++, n--)
while (m->m_info[i].state <= 0)
i++;