Currently dequeueing a packet and requeueing the same packet will cause a
different packet to be pulled on the next dequeue.  This change forces
requeue to rewind the current_band.
Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
 multiq_requeue(struct sk_buff *skb, struct Qdisc *sch)
 {
        struct Qdisc *qdisc;
+       struct multiq_sched_data *q = qdisc_priv(sch);
        int ret;
 
        qdisc = multiq_classify(skb, sch, &ret);
        if (ret == NET_XMIT_SUCCESS) {
                sch->q.qlen++;
                sch->qstats.requeues++;
+               if (q->curband)
+                       q->curband--;
+               else
+                       q->curband = q->bands - 1;
                return NET_XMIT_SUCCESS;
        }
        if (net_xmit_drop_count(ret))