Lines Matching refs:cor
174 struct tc_netem_corr cor; in netem_parse_opt() local
184 memset(&cor, 0, sizeof(cor)); in netem_parse_opt()
215 if (get_percent(&cor.delay_corr, *argv)) { in netem_parse_opt()
243 if (get_percent(&cor.loss_corr, *argv)) { in netem_parse_opt()
373 if (get_percent(&cor.dup_corr, *argv)) { in netem_parse_opt()
450 addattr_l(n, 1024, TCA_NETEM_CORR, &cor, sizeof(cor)) < 0) in netem_parse_opt()
498 const struct tc_netem_corr *cor = NULL; in netem_print_opt() local
523 if (RTA_PAYLOAD(tb[TCA_NETEM_CORR]) < sizeof(*cor)) in netem_print_opt()
525 cor = RTA_DATA(tb[TCA_NETEM_CORR]); in netem_print_opt()
560 if (cor && cor->delay_corr) in netem_print_opt()
561 fprintf(f, " %s", sprint_percent(cor->delay_corr, b1)); in netem_print_opt()
567 if (cor && cor->loss_corr) in netem_print_opt()
568 fprintf(f, " %s", sprint_percent(cor->loss_corr, b1)); in netem_print_opt()
590 if (cor && cor->dup_corr) in netem_print_opt()
591 fprintf(f, " %s", sprint_percent(cor->dup_corr, b1)); in netem_print_opt()