*/
        bool unplug_indefinite;
 
+       bool throttled;
+
        /* Queue Limit in bytes */
        u32 limit;
 
 {
        struct plug_sched_data *q = qdisc_priv(sch);
 
-       if (qdisc_is_throttled(sch))
+       if (q->throttled)
                return NULL;
 
        if (!q->unplug_indefinite) {
                        /* No more packets to dequeue. Block the queue
                         * and wait for the next release command.
                         */
-                       qdisc_throttled(sch);
+                       q->throttled = true;
                        return NULL;
                }
                q->pkts_to_release--;
                q->limit = ctl->limit;
        }
 
-       qdisc_throttled(sch);
+       q->throttled = true;
        return 0;
 }
 
                q->pkts_last_epoch = q->pkts_current_epoch;
                q->pkts_current_epoch = 0;
                if (q->unplug_indefinite)
-                       qdisc_throttled(sch);
+                       q->throttled = true;
                q->unplug_indefinite = false;
                break;
        case TCQ_PLUG_RELEASE_ONE:
                 */
                q->pkts_to_release += q->pkts_last_epoch;
                q->pkts_last_epoch = 0;
-               qdisc_unthrottled(sch);
+               q->throttled = false;
                netif_schedule_queue(sch->dev_queue);
                break;
        case TCQ_PLUG_RELEASE_INDEFINITE:
                q->pkts_to_release = 0;
                q->pkts_last_epoch = 0;
                q->pkts_current_epoch = 0;
-               qdisc_unthrottled(sch);
+               q->throttled = false;
                netif_schedule_queue(sch->dev_queue);
                break;
        case TCQ_PLUG_LIMIT: