]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
net/sched: netem: remove useless VERSION
authorStephen Hemminger <stephen@networkplumber.org>
Sat, 9 May 2026 17:03:23 +0000 (10:03 -0700)
committerPaolo Abeni <pabeni@redhat.com>
Thu, 14 May 2026 09:41:30 +0000 (11:41 +0200)
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>
net/sched/sch_netem.c

index 5623610186bd8a09ad708fc15ac36325cfe47f25..e82c86c2654d52a4133ae9553e15603edc408cf7 100644 (file)
@@ -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)