Home | History | Annotate | Download | only in tc

Lines Matching refs:excess

44 	fprintf(stderr, "  [ hdr HEX... ] [ excess ( CLASSID | clp ) ] "
56 __u32 excess = 0;
133 else if (!strcmp(*argv,"excess")) {
135 if (!strcmp(*argv,"clp")) excess = 0;
136 else if (get_tc_classid(&excess,*argv)) {
183 if (excess) addattr_l(n,1024,TCA_ATM_EXCESS,&excess,sizeof(excess));
222 __u32 excess;
224 if (RTA_PAYLOAD(tb[TCA_ATM_EXCESS]) < sizeof(excess))
225 fprintf(stderr,"ATM: excess class ID too short\n");
227 excess = rta_getattr_u32(tb[TCA_ATM_EXCESS]);
228 if (!excess) fprintf(f,"excess clp ");
232 print_tc_classid(buf,sizeof(buf),excess);
233 fprintf(f,"excess %s ",buf);