summaryrefslogtreecommitdiff
path: root/drivers/ipoe
diff options
context:
space:
mode:
authorDenys Fedoryshchenko <denys.f@collabora.com>2026-08-08 19:12:49 +0300
committerDenys Fedoryshchenko <denys.f@collabora.com>2026-08-08 19:12:49 +0300
commit9015abafb60f950a6b1a800f84cbf569b07828a1 (patch)
treec7364650ca8bd6b75335c2c84a59c642f3db6e28 /drivers/ipoe
parentd22f698e88a05332cee4b8dac2e7085c8b83b0ed (diff)
downloadaccel-ppp-9015abafb60f950a6b1a800f84cbf569b07828a1.tar.gz
accel-ppp-9015abafb60f950a6b1a800f84cbf569b07828a1.zip
ipoe: include net/rtnetlink.h, insert modules in ci even after a failure
rtnl_link_register() and struct rtnl_link_ops were reaching the driver through some other header rather than through net/rtnetlink.h, which is the kind of thing that only shows up when building against a different kernel. Include it directly. The workflows insert the kernel modules between two pytest runs, and the runs that follow are marked 'if: always()' while the insmod steps are not. A failure in an earlier, unrelated test therefore skips the insmod but still runs the tests that need the module, which then report a missing driver instead of the original problem. Mark the insmod steps 'if: always()' as well, so that the later runs test what they are supposed to.
Diffstat (limited to 'drivers/ipoe')
-rw-r--r--drivers/ipoe/ipoe.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ipoe/ipoe.c b/drivers/ipoe/ipoe.c
index a9b11fa2..251fec96 100644
--- a/drivers/ipoe/ipoe.c
+++ b/drivers/ipoe/ipoe.c
@@ -22,6 +22,7 @@
#include <linux/version.h>
#include <net/genetlink.h>
+#include <net/rtnetlink.h>
#include <net/route.h>
#include <net/sock.h>
#include <net/ip.h>