netem: fix code indentation
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
This commit is contained in:
parent
da9cc6ab90
commit
268a9eee98
12
tc/q_netem.c
12
tc/q_netem.c
|
|
@ -231,7 +231,7 @@ static int netem_parse_opt(struct qdisc_util *qu, int argc, char **argv,
|
||||||
|
|
||||||
if (!strcmp(*argv, "random")) {
|
if (!strcmp(*argv, "random")) {
|
||||||
NEXT_ARG();
|
NEXT_ARG();
|
||||||
random_loss_model:
|
random_loss_model:
|
||||||
if (get_percent(&opt.loss, *argv)) {
|
if (get_percent(&opt.loss, *argv)) {
|
||||||
explain1("loss percent");
|
explain1("loss percent");
|
||||||
return -1;
|
return -1;
|
||||||
|
|
@ -338,7 +338,7 @@ random_loss_model:
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
} else if (matches(*argv, "ecn") == 0) {
|
} else if (matches(*argv, "ecn") == 0) {
|
||||||
present[TCA_NETEM_ECN] = 1;
|
present[TCA_NETEM_ECN] = 1;
|
||||||
} else if (matches(*argv, "reorder") == 0) {
|
} else if (matches(*argv, "reorder") == 0) {
|
||||||
NEXT_ARG();
|
NEXT_ARG();
|
||||||
present[TCA_NETEM_REORDER] = 1;
|
present[TCA_NETEM_REORDER] = 1;
|
||||||
|
|
@ -469,7 +469,7 @@ random_loss_model:
|
||||||
|
|
||||||
if (present[TCA_NETEM_CORR] &&
|
if (present[TCA_NETEM_CORR] &&
|
||||||
addattr_l(n, 1024, TCA_NETEM_CORR, &cor, sizeof(cor)) < 0)
|
addattr_l(n, 1024, TCA_NETEM_CORR, &cor, sizeof(cor)) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
if (present[TCA_NETEM_REORDER] &&
|
if (present[TCA_NETEM_REORDER] &&
|
||||||
addattr_l(n, 1024, TCA_NETEM_REORDER, &reorder, sizeof(reorder)) < 0)
|
addattr_l(n, 1024, TCA_NETEM_REORDER, &reorder, sizeof(reorder)) < 0)
|
||||||
|
|
@ -478,7 +478,7 @@ random_loss_model:
|
||||||
if (present[TCA_NETEM_ECN] &&
|
if (present[TCA_NETEM_ECN] &&
|
||||||
addattr_l(n, 1024, TCA_NETEM_ECN, &present[TCA_NETEM_ECN],
|
addattr_l(n, 1024, TCA_NETEM_ECN, &present[TCA_NETEM_ECN],
|
||||||
sizeof(present[TCA_NETEM_ECN])) < 0)
|
sizeof(present[TCA_NETEM_ECN])) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
if (present[TCA_NETEM_CORRUPT] &&
|
if (present[TCA_NETEM_CORRUPT] &&
|
||||||
addattr_l(n, 1024, TCA_NETEM_CORRUPT, &corrupt, sizeof(corrupt)) < 0)
|
addattr_l(n, 1024, TCA_NETEM_CORRUPT, &corrupt, sizeof(corrupt)) < 0)
|
||||||
|
|
@ -491,11 +491,11 @@ random_loss_model:
|
||||||
if (loss_type == NETEM_LOSS_GI) {
|
if (loss_type == NETEM_LOSS_GI) {
|
||||||
if (addattr_l(n, 1024, NETEM_LOSS_GI,
|
if (addattr_l(n, 1024, NETEM_LOSS_GI,
|
||||||
&gimodel, sizeof(gimodel)) < 0)
|
&gimodel, sizeof(gimodel)) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
} else if (loss_type == NETEM_LOSS_GE) {
|
} else if (loss_type == NETEM_LOSS_GE) {
|
||||||
if (addattr_l(n, 1024, NETEM_LOSS_GE,
|
if (addattr_l(n, 1024, NETEM_LOSS_GE,
|
||||||
&gemodel, sizeof(gemodel)) < 0)
|
&gemodel, sizeof(gemodel)) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
} else {
|
} else {
|
||||||
fprintf(stderr, "loss in the weeds!\n");
|
fprintf(stderr, "loss in the weeds!\n");
|
||||||
return -1;
|
return -1;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue