Skip to content

Commit 5d7ca04

Browse files
committed
fix rackscale userspace limits
1 parent 35f983d commit 5d7ca04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/kpi/src/process.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ use serde::{Deserialize, Serialize};
77
use x86::bits64::paging::PML4_SLOT_SIZE;
88

99
/// Max number of machines supported by the process allocator.
10-
pub const MAX_MACHINES: usize = 8;
10+
pub const MAX_MACHINES: usize = 4;
1111

12-
pub const MAX_CORES_PER_MACHINE: usize = 12;
12+
pub const MAX_CORES_PER_MACHINE: usize = 24;
1313

1414
/// Max number of cores supported by the process allocator.
1515
pub const MAX_CORES: usize = 96; // MAX_MACHINES * MAX_CORES_PER_MACHINE;

0 commit comments

Comments
 (0)