Lines Matching refs:w
1059 struct qdisc_walker w; member
1064 static int check_loop_fn(struct Qdisc *q, unsigned long cl, struct qdisc_walker *w);
1073 arg.w.stop = arg.w.skip = arg.w.count = 0; in check_loop()
1074 arg.w.fn = check_loop_fn; in check_loop()
1077 q->ops->cl_ops->walk(q, &arg.w); in check_loop()
1078 return arg.w.stop ? -ELOOP : 0; in check_loop()
1082 check_loop_fn(struct Qdisc *q, unsigned long cl, struct qdisc_walker *w) in check_loop_fn() argument
1086 struct check_loop_arg *arg = (struct check_loop_arg *)w; in check_loop_fn()
1712 struct qdisc_walker w; member
1740 arg.w.fn = qdisc_class_dump; in tc_dump_tclass_qdisc()
1743 arg.w.stop = 0; in tc_dump_tclass_qdisc()
1744 arg.w.skip = cb->args[1]; in tc_dump_tclass_qdisc()
1745 arg.w.count = 0; in tc_dump_tclass_qdisc()
1746 q->ops->cl_ops->walk(q, &arg.w); in tc_dump_tclass_qdisc()
1747 cb->args[1] = arg.w.count; in tc_dump_tclass_qdisc()
1748 if (arg.w.stop) in tc_dump_tclass_qdisc()