Home | History | Annotate | Download | only in tc

Lines Matching defs:shift

21 	    " [ shift SHIFT ]\n");
71 else if (!strcmp(*argv,"shift")) {
72 int shift;
75 shift = strtoul(*argv,&end,0);
80 addattr_l(n,4096,TCA_TCINDEX_SHIFT,&shift,
81 sizeof(shift));
153 int shift;
155 if (RTA_PAYLOAD(tb[TCA_TCINDEX_SHIFT]) < sizeof(shift))
157 shift = *(int *) RTA_DATA(tb[TCA_TCINDEX_SHIFT]);
158 fprintf(f,"shift %d ",shift);