74 lines
1.9 KiB
Diff
74 lines
1.9 KiB
Diff
Fedora specific configuration - we want to mount all controllers by default for libvirt.
|
|
|
|
diff -up libcgroup-0.34/samples/cgconfig.conf.orig libcgroup-0.34/samples/cgconfig.conf
|
|
--- libcgroup-0.34/samples/cgconfig.conf.orig 2009-03-04 10:40:06.000000000 +0100
|
|
+++ libcgroup-0.34/samples/cgconfig.conf 2009-10-19 10:17:37.000000000 +0200
|
|
@@ -10,39 +10,17 @@
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
#
|
|
-#group daemons/www {
|
|
-# perm {
|
|
-# task {
|
|
-# uid = root;
|
|
-# gid = webmaster;
|
|
-# }
|
|
-# admin {
|
|
-# uid = root;
|
|
-# gid = root;
|
|
-# }
|
|
-# }
|
|
-# cpu {
|
|
-# cpu.shares = 1000;
|
|
-# }
|
|
-#}
|
|
+# See man cgconfig.conf for further details.
|
|
#
|
|
-#group daemons/ftp {
|
|
-# perm {
|
|
-# task {
|
|
-# uid = root;
|
|
-# gid = ftpmaster;
|
|
-# }
|
|
-# admin {
|
|
-# uid = root;
|
|
-# gid = root;
|
|
-# }
|
|
-# }
|
|
-# cpu {
|
|
-# cpu.shares = 500;
|
|
-# }
|
|
-#}
|
|
-#
|
|
-#mount {
|
|
-# cpu = /mnt/cgroups/cpu;
|
|
-# cpuacct = /mnt/cgroups/cpuacct;
|
|
-#}
|
|
+# By default, mount all controllers to /cgroup/<controller>
|
|
+
|
|
+mount {
|
|
+ cpuset = /cgroup/cpuset;
|
|
+ cpu = /cgroup/cpu;
|
|
+ cpuacct = /cgroup/cpuacct;
|
|
+ memory = /cgroup/memory;
|
|
+ devices = /cgroup/devices;
|
|
+ freezer = /cgroup/freezer;
|
|
+ net_cls = /cgroup/net_cls;
|
|
+}
|
|
+
|
|
diff -up libcgroup-0.35.1/samples/cgconfig.sysconfig.orig libcgroup-0.35.1/samples/cgconfig.sysconfig
|
|
--- libcgroup-0.35.1/samples/cgconfig.sysconfig.orig 2010-03-09 14:56:34.000000000 +0100
|
|
+++ libcgroup-0.35.1/samples/cgconfig.sysconfig 2010-03-09 16:30:12.000000000 +0100
|
|
@@ -5,8 +5,6 @@
|
|
# controller to limit cpu.shares of this default group and allowing some more
|
|
# important group take most of the CPU.
|
|
#
|
|
-# By default, create these groups:
|
|
-CREATE_DEFAULT=yes
|
|
-
|
|
-# Uncomment following line to disable creation of the default group on startup:
|
|
-# CREATE_DEFAULT=no
|
|
+# By default, do not create these groups:
|
|
+# CREATE_DEFAULT=yes
|
|
+CREATE_DEFAULT=no
|