summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHe Zhe <zhe.he@windriver.com>2019-03-15 11:04:25 +0800
committerBruce Ashfield <bruce.ashfield@gmail.com>2019-03-17 00:19:03 +0000
commit4b62efe469a88332588cc0ef89d89762aa93640e (patch)
tree1de1ce9ed033d740410a1c3f4ec95086d875d109
parented9045b143d7ff07858f4701598d1cf782c40f75 (diff)
downloadmeta-virtualization-4b62efe469a88332588cc0ef89d89762aa93640e.tar.gz
lxc: Correct CONFIG_CGROUP_NET_PRIO setting
Since af6363374cbd ("cgroup: make CONFIG_CGROUP_NET_PRIO bool and drop unnecessary init_netclassid_cgroup()"), CONFIG_CGROUP_NET_PRIO has become a bool option. Forcedly setting it to "m" would end up with "n". Change it to "y" here. Signed-off-by: He Zhe <zhe.he@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r--recipes-kernel/linux/linux-yocto/lxc.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-kernel/linux/linux-yocto/lxc.cfg b/recipes-kernel/linux/linux-yocto/lxc.cfg
index 9ff49f19..adaad3aa 100644
--- a/recipes-kernel/linux/linux-yocto/lxc.cfg
+++ b/recipes-kernel/linux/linux-yocto/lxc.cfg
@@ -15,7 +15,7 @@ CONFIG_NET_NS=y
15 15
16CONFIG_NET_CLS_CGROUP=m 16CONFIG_NET_CLS_CGROUP=m
17CONFIG_BLK_CGROUP=y 17CONFIG_BLK_CGROUP=y
18CONFIG_CGROUP_NET_PRIO=m 18CONFIG_CGROUP_NET_PRIO=y
19 19
20# Virtual drivers 20# Virtual drivers
21CONFIG_HVC_DRIVER=y 21CONFIG_HVC_DRIVER=y