summaryrefslogtreecommitdiffhomepage
path: root/runsc/boot
diff options
context:
space:
mode:
authorAleksandr Razumov <a.razumov@corp.mail.ru>2019-12-17 20:41:02 +0300
committerAleksandr Razumov <a.razumov@corp.mail.ru>2019-12-17 20:41:02 +0300
commit67f678be27b3f4545d41539bd6855527da53a250 (patch)
tree66d35d45dce0f360c289db9a9943ae5297d1becf /runsc/boot
parentb661434202672f920291bf5685b68772103c66cb (diff)
Leave minimum CPU number as a constant
Remove introduced CPUNumMin config and hard-code it as 2.
Diffstat (limited to 'runsc/boot')
-rw-r--r--runsc/boot/config.go10
1 files changed, 1 insertions, 9 deletions
diff --git a/runsc/boot/config.go b/runsc/boot/config.go
index d9f5b67c0..a878bc2ce 100644
--- a/runsc/boot/config.go
+++ b/runsc/boot/config.go
@@ -256,12 +256,6 @@ type Config struct {
//
// E.g. 0.2 CPU quota will result in 1, and 1.9 in 2.
CPUNumFromQuota bool
-
- // CPUNumMin is minimum value of CPU number setting when CPUNumFromQuota
- // strategy is active.
- //
- // E.g. when CPUNumMin is 2, 0.2 CPU quota will result in 2 instead of 1.
- CPUNumMin int
}
// ToFlags returns a slice of flags that correspond to the given Config.
@@ -295,9 +289,7 @@ func (c *Config) ToFlags() []string {
"--overlayfs-stale-read=" + strconv.FormatBool(c.OverlayfsStaleRead),
}
if c.CPUNumFromQuota {
- f = append(f, "--cpu-num-from-quota",
- "--cpu-num-min="+strconv.Itoa(c.CPUNumMin),
- )
+ f = append(f, "--cpu-num-from-quota")
}
// Only include these if set since it is never to be used by users.
if c.TestOnlyAllowRunAsCurrentUserWithoutChroot {