summaryrefslogtreecommitdiffstats
path: root/package/d80211/src/fifo_qdisc.c
blob: 12aaed57a1b391e041e28e46be91925f3207b630 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
 * Copyright 2005, Devicescape Software, Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * If building without CONFIG_NET_SCHED we need a simple
 * fifo qdisc to install by default as the sub-qdisc.
 * This is a simple replacement for sch_fifo.
 */

#include <linux/skbuff.h>
#include <net/pkt_sched.h>
#include <net/d80211.h>
#include "ieee80211_i.h"
#include "wme.h"

static int pfifo_enqueue(struct sk_buff *skb, struct Qdisc* qd)
{
	struct sk_buff_head *q = qdisc_priv(qd);

	if (skb_queue_len(q) > qd->dev->tx_queue_len) {
		qd->qstats.drops++;
		kfree_skb(skb);
		return NET_XMIT_DROP;
	}

	skb_queue_tail(q, skb);
	qd->q.qlen++;
	qd->bstats.bytes += skb->len;
	qd->bstats.packets++;

	return NET_XMIT_SUCCESS;
}


static int pfifo_requeue(struct sk_buff *skb, struct Qdisc* qd)
{
	struct sk_buff_head *q = qdisc_priv(qd);

	skb_queue_head(q, skb);
	qd->q.qlen++;
	qd->bstats.bytes += skb->len;
	qd->bstats.packets++;

	return NET_XMIT_SUCCESS;
}


static struct sk_buff *pfifo_dequeue(struct Qdisc* qd)
{
	struct sk_buff_head *q = qdisc_priv(qd);

	return skb_dequeue(q);
}


static int pfifo_init(struct Qdisc* qd, struct rtattr *opt)
{
	struct sk_buff_head *q = qdisc_priv(qd);

	skb_queue_head_init(q);
	return 0;
}


static void pfifo_reset(struct Qdisc* qd)
{
	struct sk_buff_head *q = qdisc_priv(qd);

	skb_queue_purge(q);
	qd->q.qlen = 0;
}


static int pfifo_dump(struct Qdisc *qd, struct sk_buff *skb)
{
	return skb->len;
}


struct Qdisc_ops pfifo_qdisc_ops =
{
	.next = NULL,
	.cl_ops = NULL,
	.id = "ieee80211_pfifo",
	.priv_size = sizeof(struct sk_buff_head),

	.enqueue = pfifo_enqueue,
	.dequeue = pfifo_dequeue,
	.requeue = pfifo_requeue,
	.drop = NULL,

	.init = pfifo_init,
	.reset = pfifo_reset,
	.destroy = NULL,
	.change = NULL,

	.dump = pfifo_dump,
};