Lines Matching refs:cor
177 struct tc_netem_corr cor; in netem_parse_opt() local
188 memset(&cor, 0, sizeof(cor)); in netem_parse_opt()
219 if (get_percent(&cor.delay_corr, *argv)) { in netem_parse_opt()
247 if (get_percent(&cor.loss_corr, *argv)) { in netem_parse_opt()
391 if (get_percent(&cor.dup_corr, *argv)) { in netem_parse_opt()
476 addattr_l(n, 1024, TCA_NETEM_CORR, &cor, sizeof(cor)) < 0) in netem_parse_opt()
538 const struct tc_netem_corr *cor = NULL; in netem_print_opt() local
565 if (RTA_PAYLOAD(tb[TCA_NETEM_CORR]) < sizeof(*cor)) in netem_print_opt()
567 cor = RTA_DATA(tb[TCA_NETEM_CORR]); in netem_print_opt()
612 if (cor && cor->delay_corr) in netem_print_opt()
613 fprintf(f, " %s", sprint_percent(cor->delay_corr, b1)); in netem_print_opt()
619 if (cor && cor->loss_corr) in netem_print_opt()
620 fprintf(f, " %s", sprint_percent(cor->loss_corr, b1)); in netem_print_opt()
643 if (cor && cor->dup_corr) in netem_print_opt()
644 fprintf(f, " %s", sprint_percent(cor->dup_corr, b1)); in netem_print_opt()