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>
This commit is contained in:
committed by
Ilya Dryomov
parent
2bf996ac48
commit
0cab9f33d9
@@ -35,7 +35,6 @@ int ceph_mdsmap_get_random_mds(struct ceph_mdsmap *m)
|
|||||||
|
|
||||||
/* pick */
|
/* pick */
|
||||||
n = prandom_u32() % n;
|
n = prandom_u32() % n;
|
||||||
i = 0;
|
|
||||||
for (i = 0; n > 0; i++, n--)
|
for (i = 0; n > 0; i++, n--)
|
||||||
while (m->m_info[i].state <= 0)
|
while (m->m_info[i].state <= 0)
|
||||||
i++;
|
i++;
|
||||||
|
|||||||
Reference in New Issue
Block a user