diff options
| author | Stephen Hemminger <stephen@networkplumber.org> | 2026-05-09 20:03:23 +0300 |
|---|---|---|
| committer | Paolo Abeni <pabeni@redhat.com> | 2026-05-14 12:41:30 +0300 |
| commit | 4398429a5ff4bc8b38c6c57e78debc565a089672 (patch) | |
| tree | 074630481dcb88d008f87d1832e63b0840f88436 | |
| parent | 9371b229a1ced41ab6372f8a2fc33fe6af21efe9 (diff) | |
| download | linux-4398429a5ff4bc8b38c6c57e78debc565a089672.tar.xz | |
net/sched: netem: remove useless VERSION
The version printed was never updated and kernel version is
better indication of what is fixed or not.
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Link: https://patch.msgid.link/20260509171123.307549-3-stephen@networkplumber.org
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
| -rw-r--r-- | net/sched/sch_netem.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/net/sched/sch_netem.c b/net/sched/sch_netem.c index 5623610186bd..e82c86c2654d 100644 --- a/net/sched/sch_netem.c +++ b/net/sched/sch_netem.c @@ -27,8 +27,6 @@ #include <net/pkt_sched.h> #include <net/inet_ecn.h> -#define VERSION "1.3" - /* Network Emulation Queuing algorithm. ==================================== @@ -1413,10 +1411,8 @@ static struct Qdisc_ops netem_qdisc_ops __read_mostly = { }; MODULE_ALIAS_NET_SCH("netem"); - static int __init netem_module_init(void) { - pr_info("netem: version " VERSION "\n"); return register_qdisc(&netem_qdisc_ops); } static void __exit netem_module_exit(void) |
