79b470
From 2fb78d18ea95c2dcb4c5b0e29171636e51bb2149 Mon Sep 17 00:00:00 2001
79b470
Message-Id: <2fb78d18ea95c2dcb4c5b0e29171636e51bb2149@dist-git>
79b470
From: Pavel Hrdina <phrdina@redhat.com>
79b470
Date: Thu, 21 Jan 2021 10:24:04 -0300
79b470
Subject: [PATCH] vircgroupv1: use defines for cpu period and quota limits
79b470
79b470
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
79b470
Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
79b470
(cherry picked from commit bc760f4d7c4f964fadcb2a73e126b0053e7a9b06)
79b470
79b470
https://bugzilla.redhat.com/1915733
79b470
79b470
Signed-off-by: Daniel Henrique Barboza <dbarboza@redhat.com>
79b470
Message-Id: <20210121132406.337681-3-dbarboza@redhat.com>
79b470
Reviewed-by: Pavel Hrdina <phrdina@redhat.com>
79b470
---
79b470
 src/util/vircgroupv1.c | 23 ++++++++++++-----------
79b470
 1 file changed, 12 insertions(+), 11 deletions(-)
79b470
79b470
diff --git a/src/util/vircgroupv1.c b/src/util/vircgroupv1.c
79b470
index d2ec7106db..c35088a3c4 100644
79b470
--- a/src/util/vircgroupv1.c
79b470
+++ b/src/util/vircgroupv1.c
79b470
@@ -1869,13 +1869,13 @@ static int
79b470
 virCgroupV1SetCpuCfsPeriod(virCgroupPtr group,
79b470
                            unsigned long long cfs_period)
79b470
 {
79b470
-    /* The cfs_period should be greater or equal than 1ms, and less or equal
79b470
-     * than 1s.
79b470
-     */
79b470
-    if (cfs_period < 1000 || cfs_period > 1000000) {
79b470
+    if (cfs_period < VIR_CGROUP_CPU_PERIOD_MIN ||
79b470
+        cfs_period > VIR_CGROUP_CPU_PERIOD_MAX) {
79b470
         virReportError(VIR_ERR_INVALID_ARG,
79b470
-                       _("cfs_period '%llu' must be in range (1000, 1000000)"),
79b470
-                       cfs_period);
79b470
+                       _("cfs_period '%llu' must be in range (%llu, %llu)"),
79b470
+                       cfs_period,
79b470
+                       VIR_CGROUP_CPU_PERIOD_MIN,
79b470
+                       VIR_CGROUP_CPU_PERIOD_MAX);
79b470
         return -1;
79b470
     }
79b470
 
79b470
@@ -1899,13 +1899,14 @@ static int
79b470
 virCgroupV1SetCpuCfsQuota(virCgroupPtr group,
79b470
                           long long cfs_quota)
79b470
 {
79b470
-    /* The cfs_quota should be greater or equal than 1ms */
79b470
     if (cfs_quota >= 0 &&
79b470
-        (cfs_quota < 1000 ||
79b470
-         cfs_quota > ULLONG_MAX / 1000)) {
79b470
+        (cfs_quota < VIR_CGROUP_CPU_QUOTA_MIN ||
79b470
+         cfs_quota > VIR_CGROUP_CPU_QUOTA_MAX)) {
79b470
         virReportError(VIR_ERR_INVALID_ARG,
79b470
-                       _("cfs_quota '%lld' must be in range (1000, %llu)"),
79b470
-                       cfs_quota, ULLONG_MAX / 1000);
79b470
+                       _("cfs_quota '%lld' must be in range (%llu, %llu)"),
79b470
+                       cfs_quota,
79b470
+                       VIR_CGROUP_CPU_QUOTA_MIN,
79b470
+                       VIR_CGROUP_CPU_QUOTA_MAX);
79b470
         return -1;
79b470
     }
79b470
 
79b470
-- 
79b470
2.30.0
79b470