4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
9 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
13 * Ole Husgaard <sparre@login.dknet.dk>: 990513: prio2band map was always reset.
14 * J Hadi Salim <hadi@cyberus.ca>: 990609: priomap fix.
22 #include <sys/socket.h>
23 #include <netinet/in.h>
24 #include <arpa/inet.h>
30 static void explain(void)
32 fprintf(stderr
, "Usage: ... prio bands NUMBER priomap P1 P2...\n");
35 #define usage() return(-1)
37 static int prio_parse_opt(struct qdisc_util
*qu
, int argc
, char **argv
, struct nlmsghdr
*n
)
42 struct tc_prio_qopt opt
={3,{ 1, 2, 2, 2, 1, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1 }};
45 if (strcmp(*argv
, "bands") == 0) {
49 if (get_integer(&opt
.bands
, *argv
, 10)) {
50 fprintf(stderr
, "Illegal \"bands\"\n");
54 } else if (strcmp(*argv
, "priomap") == 0) {
56 fprintf(stderr
, "Error: duplicate priomap\n");
60 } else if (strcmp(*argv
, "help") == 0) {
66 fprintf(stderr
, "What is \"%s\"?\n", *argv
);
70 if (get_unsigned(&band
, *argv
, 10)) {
71 fprintf(stderr
, "Illegal \"priomap\" element\n");
74 if (band
> opt
.bands
) {
75 fprintf(stderr
, "\"priomap\" element is out of bands\n");
78 if (idx
> TC_PRIO_MAX
) {
79 fprintf(stderr
, "\"priomap\" index > TC_PRIO_MAX=%u\n", TC_PRIO_MAX
);
82 opt
.priomap
[idx
++] = band
;
89 for (; idx < TC_PRIO_MAX; idx++)
90 opt.priomap[idx] = opt.priomap[TC_PRIO_BESTEFFORT];
93 addattr_l(n
, 1024, TCA_OPTIONS
, &opt
, sizeof(opt
));
97 int prio_print_opt(struct qdisc_util
*qu
, FILE *f
, struct rtattr
*opt
)
100 struct tc_prio_qopt
*qopt
;
105 if (RTA_PAYLOAD(opt
) < sizeof(*qopt
))
107 qopt
= RTA_DATA(opt
);
108 fprintf(f
, "bands %u priomap ", qopt
->bands
);
109 for (i
=0; i
<=TC_PRIO_MAX
; i
++)
110 fprintf(f
, " %d", qopt
->priomap
[i
]);
114 struct qdisc_util prio_qdisc_util
= {
116 .parse_qopt
= prio_parse_opt
,
117 .print_qopt
= prio_print_opt
,