diff options
Diffstat (limited to 'net/sched/cls_flow.c')
| -rw-r--r-- | net/sched/cls_flow.c | 8 | 
1 files changed, 1 insertions, 7 deletions
diff --git a/net/sched/cls_flow.c b/net/sched/cls_flow.c index 972303aa8edd..014cd3de7b5d 100644 --- a/net/sched/cls_flow.c +++ b/net/sched/cls_flow.c @@ -683,14 +683,8 @@ static void flow_walk(struct tcf_proto *tp, struct tcf_walker *arg,  	struct flow_filter *f;  	list_for_each_entry(f, &head->filters, list) { -		if (arg->count < arg->skip) -			goto skip; -		if (arg->fn(tp, f, arg) < 0) { -			arg->stop = 1; +		if (!tc_cls_stats_dump(tp, arg, f))  			break; -		} -skip: -		arg->count++;  	}  }  |