net_sched: sch_fq: remove one obsolete check in fq_dequeue()
[linux-2.6-block.git] / net / sched / sch_fq.c
index 98dd87ce15108cfe1c011da44ba32f97763776c8..b1c7e726ce5d1ae139f765c5b92dfdaea9bee258 100644 (file)
@@ -530,8 +530,7 @@ begin:
                        fq_flow_set_throttled(q, f);
                        goto begin;
                }
-               if (time_next_packet &&
-                   (s64)(now - time_next_packet - q->ce_threshold) > 0) {
+               if ((s64)(now - time_next_packet - q->ce_threshold) > 0) {
                        INET_ECN_set_ce(skb);
                        q->stat_ce_mark++;
                }