Entry for a blkio file. The format of each entry can either be: 1. 2. 3. 4. For details: https://www.kernel.org/doc/Documentation/cgroup-v1/blkio-controller.txt
| 460 | // For details: |
| 461 | // https://www.kernel.org/doc/Documentation/cgroup-v1/blkio-controller.txt |
| 462 | struct Value |
| 463 | { |
| 464 | Option<Device> device; |
| 465 | Option<Operation> op; |
| 466 | uint64_t value; |
| 467 | |
| 468 | static Try<Value> parse(const std::string& s); |
| 469 | }; |
| 470 | |
| 471 | |
| 472 | namespace cfq { |