aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/sch_api.c
diff options
context:
space:
mode:
authorJarek Poplawski <jarkao2@gmail.com>2008-10-31 03:45:27 -0400
committerDavid S. Miller <davem@davemloft.net>2008-10-31 03:45:27 -0400
commit99c0db26797edb39cf83c8c5f8972067f5426b4e (patch)
tree918b933d2ac5f0579b24636274c4394c17011d0d /net/sched/sch_api.c
parent48a8f519e0fe22a5c98523286b2a120841a11dd5 (diff)
pkt_sched: sch_generic: Add generic qdisc->ops->peek() implementation.
With feedback from Patrick McHardy. Signed-off-by: Jarek Poplawski <jarkao2@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_api.c')
-rw-r--r--net/sched/sch_api.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/net/sched/sch_api.c b/net/sched/sch_api.c
index b16ad2972c6b..e5646614e88d 100644
--- a/net/sched/sch_api.c
+++ b/net/sched/sch_api.c
@@ -102,6 +102,10 @@ static int tclass_notify(struct sk_buff *oskb, struct nlmsghdr *n,
102 requeues once dequeued packet. It is used for non-standard or 102 requeues once dequeued packet. It is used for non-standard or
103 just buggy devices, which can defer output even if netif_queue_stopped()=0. 103 just buggy devices, which can defer output even if netif_queue_stopped()=0.
104 104
105 ---peek
106
107 like dequeue but without removing a packet from the queue
108
105 ---reset 109 ---reset
106 110
107 returns qdisc to initial state: purge all buffers, clear all 111 returns qdisc to initial state: purge all buffers, clear all
@@ -149,6 +153,14 @@ int register_qdisc(struct Qdisc_ops *qops)
149 qops->enqueue = noop_qdisc_ops.enqueue; 153 qops->enqueue = noop_qdisc_ops.enqueue;
150 if (qops->requeue == NULL) 154 if (qops->requeue == NULL)
151 qops->requeue = noop_qdisc_ops.requeue; 155 qops->requeue = noop_qdisc_ops.requeue;
156 if (qops->peek == NULL) {
157 if (qops->dequeue == NULL) {
158 qops->peek = noop_qdisc_ops.peek;
159 } else {
160 rc = -EINVAL;
161 goto out;
162 }
163 }
152 if (qops->dequeue == NULL) 164 if (qops->dequeue == NULL)
153 qops->dequeue = noop_qdisc_ops.dequeue; 165 qops->dequeue = noop_qdisc_ops.dequeue;
154 166