]> xenbits.xensource.com Git - libvirt.git/commitdiff
cgroup: fix a comment typo in vircgroup.c
authorChen Hanxiao <chenhanxiao@cn.fujitsu.com>
Wed, 9 Oct 2013 07:09:11 +0000 (15:09 +0800)
committerMichal Privoznik <mprivozn@redhat.com>
Wed, 9 Oct 2013 15:16:58 +0000 (17:16 +0200)
s/shoule/should

Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com>
src/util/vircgroup.c

index e99caf5c54fe51a554fc2b2b3b40afa73cce62b9..91b87049ce210c6b0a64750b4aebe4596ad8b58e 100644 (file)
@@ -2431,7 +2431,7 @@ virCgroupGetCpuShares(virCgroupPtr group, unsigned long long *shares)
 int
 virCgroupSetCpuCfsPeriod(virCgroupPtr group, unsigned long long cfs_period)
 {
-    /* The cfs_period shoule be greater or equal than 1ms, and less or equal
+    /* The cfs_period should be greater or equal than 1ms, and less or equal
      * than 1s.
      */
     if (cfs_period < 1000 || cfs_period > 1000000) {