Home | History | Annotate | Download | only in tc

Lines Matching refs:tb

331 	struct rtattr *tb[TCA_RSVP_MAX+1];
337 parse_rtattr_nested(tb, TCA_RSVP_MAX, opt);
342 if (tb[TCA_RSVP_PINFO]) {
343 if (RTA_PAYLOAD(tb[TCA_RSVP_PINFO]) < sizeof(*pinfo))
346 pinfo = RTA_DATA(tb[TCA_RSVP_PINFO]);
349 if (tb[TCA_RSVP_CLASSID]) {
352 fprintf(f, "flowid %s ", sprint_tc_classid(rta_getattr_u32(tb[TCA_RSVP_CLASSID]), b1));
354 fprintf(f, "tunnel %d skip %d ", rta_getattr_u32(tb[TCA_RSVP_CLASSID]), pinfo->tunnelhdr);
358 if (tb[TCA_RSVP_DST]) {
362 if (inet_ntop(family, RTA_DATA(tb[TCA_RSVP_DST]), buf, sizeof(buf)) == 0)
385 if (tb[TCA_RSVP_SRC]) {
389 if (inet_ntop(family, RTA_DATA(tb[TCA_RSVP_SRC]), buf, sizeof(buf)) == 0) {
404 if (tb[TCA_RSVP_ACT]) {
405 tc_print_action(f, tb[TCA_RSVP_ACT], 0);
407 if (tb[TCA_RSVP_POLICE])
408 tc_print_police(f, tb[TCA_RSVP_POLICE]);