aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/sch_fifo.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/sched/sch_fifo.c')
-rw-r--r--net/sched/sch_fifo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sched/sch_fifo.c b/net/sched/sch_fifo.c
index c264308f17c1..d71dbfc790c0 100644
--- a/net/sched/sch_fifo.c
+++ b/net/sched/sch_fifo.c
@@ -78,7 +78,7 @@ rtattr_failure:
78 return -1; 78 return -1;
79} 79}
80 80
81struct Qdisc_ops pfifo_qdisc_ops = { 81struct Qdisc_ops pfifo_qdisc_ops __read_mostly = {
82 .id = "pfifo", 82 .id = "pfifo",
83 .priv_size = sizeof(struct fifo_sched_data), 83 .priv_size = sizeof(struct fifo_sched_data),
84 .enqueue = pfifo_enqueue, 84 .enqueue = pfifo_enqueue,
@@ -92,7 +92,7 @@ struct Qdisc_ops pfifo_qdisc_ops = {
92 .owner = THIS_MODULE, 92 .owner = THIS_MODULE,
93}; 93};
94 94
95struct Qdisc_ops bfifo_qdisc_ops = { 95struct Qdisc_ops bfifo_qdisc_ops __read_mostly = {
96 .id = "bfifo", 96 .id = "bfifo",
97 .priv_size = sizeof(struct fifo_sched_data), 97 .priv_size = sizeof(struct fifo_sched_data),
98 .enqueue = bfifo_enqueue, 98 .enqueue = bfifo_enqueue,