]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
network: route: update comment
authorYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 15 Dec 2021 18:36:06 +0000 (03:36 +0900)
committerLuca Boccassi <luca.boccassi@gmail.com>
Wed, 15 Dec 2021 20:07:17 +0000 (20:07 +0000)
src/network/networkd-route.c

index d791c4d044e6c5338e1b042cf723281e0d83aa0a..bfd849abb969cb565ac2c5f95479d7d9cc128840 100644 (file)
@@ -854,9 +854,8 @@ static bool route_by_kernel(const Route *route) {
         if (route->protocol == RTPROT_KERNEL)
                 return true;
 
-        /* Do not touch multicast route added by kernel. See issue #6088.
-         * TODO: Why the kernel adds this route with protocol RTPROT_BOOT?
-         * https://tools.ietf.org/html/rfc4862#section-5.4 may explain why. */
+        /* The kernels older than a826b04303a40d52439aa141035fca5654ccaccd (v5.11) create the IPv6
+         * multicast with RTPROT_BOOT. Do not touch it. */
         if (route->protocol == RTPROT_BOOT &&
             route->family == AF_INET6 &&
             route->dst_prefixlen == 8 &&