| 2224 | |
| 2225 | |
| 2226 | Try<Nothing> cfs_period_us( |
| 2227 | const string& hierarchy, |
| 2228 | const string& cgroup, |
| 2229 | const Duration& duration) |
| 2230 | { |
| 2231 | return cgroups::write( |
| 2232 | hierarchy, |
| 2233 | cgroup, |
| 2234 | "cpu.cfs_period_us", |
| 2235 | stringify(static_cast<uint64_t>(duration.us()))); |
| 2236 | } |
| 2237 | |
| 2238 | |
| 2239 | Try<Duration> cfs_quota_us( |