[Devel] [PATCH RHEL7 COMMIT] ve/kmod/whitelist: allow dummy module autoloading

Kirill Tkhai ktkhai at virtuozzo.com
Mon Oct 3 02:01:54 PDT 2016


The commit is pushed to "branch-rh7-3.10.0-327.36.1.vz7.18.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git
after rh7-3.10.0-327.36.1.vz7.18.3
------>
commit 30c0b9e216cb37ad6b55f0ca8f2aa1741789715c
Author: Pavel Tikhomirov <ptikhomirov at virtuozzo.com>
Date:   Mon Oct 3 09:00:53 2016 +0000

    ve/kmod/whitelist: allow dummy module autoloading
    
    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>
---
 kernel/kmod.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/kernel/kmod.c b/kernel/kmod.c
index ef74971..e0ef148 100644
--- a/kernel/kmod.c
+++ b/kernel/kmod.c
@@ -419,6 +419,8 @@ static const char * const ve0_allowed_mod[] = {
 	"ip_set_hash:ip,port,net",
 	"ip_set_hash:net,iface",
 	"ip_set_list:set",
+
+	"rtnl-link-dummy",
 };
 
 /*


More information about the Devel mailing list