[Devel] [PATCH RH9 07/20] ve/kmod/whitelist: Allow dummy module autoloading
Kirill Tkhai
ktkhai at virtuozzo.com
Fri Oct 8 12:51:08 MSK 2021
From: Pavel Tikhomirov <ptikhomirov at virtuozzo.com>
After allowing dummy devices in container in bug PSBM-43329 by commit
6061ed860950 ("ve/net/dummy: enable support in a container") docker-ui
testcase TestDaemonIP was unXFAIed but it still fails to create dummy
because module is not automaticly loaded in rtnl_newlink:
ip link add name dummy_test type dummy
RTNETLINK answers: Operation not supported
So allow the module.
https://jira.sw.ru/browse/PSBM-52061
Signed-off-by: Pavel Tikhomirov <ptikhomirov at virtuozzo.com>
Reviewed-by: Kirill Tkhai <ktkhai at virtuozzo.com>
(cherry picked from vz7 commit 3919de0d2585ac861ed237b9b585f2e3bb2e59bd)
Signed-off-by: Konstantin Khorenko <khorenko at virtuozzo.com>
---
kernel/kmod.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/kernel/kmod.c b/kernel/kmod.c
index 36420d60cce2..9a24a65deecb 100644
--- a/kernel/kmod.c
+++ b/kernel/kmod.c
@@ -259,6 +259,8 @@ static const char * const ve0_allowed_mod[] = {
/* netlink_diag */
"net-pf-16-proto-4-type-16", /* PF_NETLINK, NETLINK_SOCK_DIAG, AF_NETLINK */
+
+ "rtnl-link-dummy",
};
/*
More information about the Devel
mailing list