Lines Matching full:fprintf
30 fprintf(stderr, "Usage: ... sfq [ limit NUMBER ] [ perturb SECS ] [ quantum BYTES ]\n");
31 fprintf(stderr, " [ divisor NUMBER ] [ flows NUMBER] [ depth NUMBER ]\n");
32 fprintf(stderr, " [ headdrop ]\n");
33 fprintf(stderr, " [ redflowlimit BYTES ] [ min BYTES ] [ max BYTES ]\n");
34 fprintf(stderr, " [ avpkt BYTES ] [ burst PACKETS ] [ probability P ]\n");
35 fprintf(stderr, " [ ecn ] [ harddrop ]\n");
53 fprintf(stderr, "Illegal \"limit\"\n");
60 fprintf(stderr, "Illegal \"perturb\"\n");
67 fprintf(stderr, "Illegal \"limit\"\n");
71 fprintf(stderr, "Illegal \"limit\", must be > 1\n");
78 fprintf(stderr, "Illegal \"divisor\"\n");
85 fprintf(stderr, "Illegal \"flows\"\n");
92 fprintf(stderr, "Illegal \"flows\"\n");
102 fprintf(stderr, "Illegal \"redflowlimit\"\n");
109 fprintf(stderr, "Illegal \"min\"\n");
116 fprintf(stderr, "Illegal \"max\"\n");
123 fprintf(stderr, "Illegal \"burst\"\n");
130 fprintf(stderr, "Illegal \"avpkt\"\n");
137 fprintf(stderr, "Illegal \"probability\"\n");
151 fprintf(stderr, "What is \"%s\"?\n", *argv);
159 fprintf(stderr, "Required parameter (redflowlimit) is missing\n");
174 fprintf(stderr, "\"max\" is larger than \"limit\"\n");
179 fprintf(stderr, "\"min\" is not smaller than \"max\"\n");
185 fprintf(stderr, "SFQ: failed to calculate EWMA constant.\n");
189 fprintf(stderr, "SFQ: WARNING. Burst %u seems to be too large.\n", burst);
194 fprintf(stderr, "SFQ: failed to calculate probability.\n");
221 fprintf(f, "limit %up ", qopt->limit);
222 fprintf(f, "quantum %s ", sprint_size(qopt->quantum, b1));
224 fprintf(f, "depth %u ", qopt_ext->depth);
226 fprintf(f, "headdrop ");
229 fprintf(f, "flows %u/%u ", qopt->flows, qopt->divisor);
231 fprintf(f, "divisor %u ", qopt->divisor);
233 fprintf(f, "perturb %dsec ", qopt->perturb_period);
235 fprintf(f, "\n ewma %u ", qopt_ext->Wlog);
236 fprintf(f, "min %s max %s probability %g ",
241 fprintf(f, "ecn ");
243 fprintf(f, "\n prob_mark %u prob_mark_head %u prob_drop %u",
247 fprintf(f, "\n forced_mark %u forced_mark_head %u forced_drop %u",
267 fprintf(f, " allot %d ", st->allot);
268 fprintf(f, "\n");