Commit 8f99c85b authored by Ilya Dryomov's avatar Ilya Dryomov

crush: reduce scope of some local variables

Reflects ceph.git commit e7d47827f0333c96ad43d257607fb92ed4176550.
Signed-off-by: default avatarIlya Dryomov <ilya.dryomov@inktank.com>
Reviewed-by: default avatarSage Weil <sage@inktank.com>
parent bfb16d7d
...@@ -189,7 +189,7 @@ static int terminal(int x) ...@@ -189,7 +189,7 @@ static int terminal(int x)
static int bucket_tree_choose(struct crush_bucket_tree *bucket, static int bucket_tree_choose(struct crush_bucket_tree *bucket,
int x, int r) int x, int r)
{ {
int n, l; int n;
__u32 w; __u32 w;
__u64 t; __u64 t;
...@@ -197,6 +197,7 @@ static int bucket_tree_choose(struct crush_bucket_tree *bucket, ...@@ -197,6 +197,7 @@ static int bucket_tree_choose(struct crush_bucket_tree *bucket,
n = bucket->num_nodes >> 1; n = bucket->num_nodes >> 1;
while (!terminal(n)) { while (!terminal(n)) {
int l;
/* pick point in [0, w) */ /* pick point in [0, w) */
w = bucket->node_weights[n]; w = bucket->node_weights[n];
t = (__u64)crush_hash32_4(bucket->h.hash, x, n, r, t = (__u64)crush_hash32_4(bucket->h.hash, x, n, r,
...@@ -496,7 +497,6 @@ int crush_do_rule(const struct crush_map *map, ...@@ -496,7 +497,6 @@ int crush_do_rule(const struct crush_map *map,
__u32 step; __u32 step;
int i, j; int i, j;
int numrep; int numrep;
int firstn;
const int descend_once = 0; const int descend_once = 0;
if ((__u32)ruleno >= map->max_rules) { if ((__u32)ruleno >= map->max_rules) {
...@@ -510,9 +510,9 @@ int crush_do_rule(const struct crush_map *map, ...@@ -510,9 +510,9 @@ int crush_do_rule(const struct crush_map *map,
o = b; o = b;
for (step = 0; step < rule->len; step++) { for (step = 0; step < rule->len; step++) {
int firstn = 0;
struct crush_rule_step *curstep = &rule->steps[step]; struct crush_rule_step *curstep = &rule->steps[step];
firstn = 0;
switch (curstep->op) { switch (curstep->op) {
case CRUSH_RULE_TAKE: case CRUSH_RULE_TAKE:
w[0] = curstep->arg1; w[0] = curstep->arg1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment