Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Thomas Graf | 63d886c | 2005-07-05 15:29:16 -0700 | [diff] [blame] | 2 | /* |
| 3 | * net/sched/sch_blackhole.c Black hole queue |
| 4 | * |
Thomas Graf | 63d886c | 2005-07-05 15:29:16 -0700 | [diff] [blame] | 5 | * Authors: Thomas Graf <tgraf@suug.ch> |
| 6 | * |
| 7 | * Note: Quantum tunneling is not supported. |
| 8 | */ |
| 9 | |
Paul Gortmaker | 075640e | 2015-10-07 17:27:45 -0400 | [diff] [blame] | 10 | #include <linux/init.h> |
Thomas Graf | 63d886c | 2005-07-05 15:29:16 -0700 | [diff] [blame] | 11 | #include <linux/types.h> |
| 12 | #include <linux/kernel.h> |
Thomas Graf | 63d886c | 2005-07-05 15:29:16 -0700 | [diff] [blame] | 13 | #include <linux/skbuff.h> |
| 14 | #include <net/pkt_sched.h> |
| 15 | |
Eric Dumazet | 520ac30 | 2016-06-21 23:16:49 -0700 | [diff] [blame] | 16 | static int blackhole_enqueue(struct sk_buff *skb, struct Qdisc *sch, |
| 17 | struct sk_buff **to_free) |
Thomas Graf | 63d886c | 2005-07-05 15:29:16 -0700 | [diff] [blame] | 18 | { |
Eric Dumazet | 520ac30 | 2016-06-21 23:16:49 -0700 | [diff] [blame] | 19 | qdisc_drop(skb, sch, to_free); |
Konstantin Khlebnikov | 7e85dc8 | 2018-06-15 13:27:31 +0300 | [diff] [blame] | 20 | return NET_XMIT_SUCCESS | __NET_XMIT_BYPASS; |
Thomas Graf | 63d886c | 2005-07-05 15:29:16 -0700 | [diff] [blame] | 21 | } |
| 22 | |
| 23 | static struct sk_buff *blackhole_dequeue(struct Qdisc *sch) |
| 24 | { |
| 25 | return NULL; |
| 26 | } |
| 27 | |
Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 28 | static struct Qdisc_ops blackhole_qdisc_ops __read_mostly = { |
Thomas Graf | 63d886c | 2005-07-05 15:29:16 -0700 | [diff] [blame] | 29 | .id = "blackhole", |
| 30 | .priv_size = 0, |
| 31 | .enqueue = blackhole_enqueue, |
| 32 | .dequeue = blackhole_dequeue, |
Jarek Poplawski | 8e3af97 | 2008-10-31 00:45:55 -0700 | [diff] [blame] | 33 | .peek = blackhole_dequeue, |
Thomas Graf | 63d886c | 2005-07-05 15:29:16 -0700 | [diff] [blame] | 34 | .owner = THIS_MODULE, |
| 35 | }; |
| 36 | |
Paul Gortmaker | 075640e | 2015-10-07 17:27:45 -0400 | [diff] [blame] | 37 | static int __init blackhole_init(void) |
Thomas Graf | 63d886c | 2005-07-05 15:29:16 -0700 | [diff] [blame] | 38 | { |
| 39 | return register_qdisc(&blackhole_qdisc_ops); |
| 40 | } |
Paul Gortmaker | 075640e | 2015-10-07 17:27:45 -0400 | [diff] [blame] | 41 | device_initcall(blackhole_init) |