From 3fd4a86f3f8adfcfba5c642babd90bb4f5eecd3c Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 22 Oct 2024 10:22:20 +0200 Subject: dashboard/config/linux: increase number of devices to 32 --- prog/types.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'prog') diff --git a/prog/types.go b/prog/types.go index d04b901ac..0d6fa1596 100644 --- a/prog/types.go +++ b/prog/types.go @@ -563,6 +563,8 @@ type ProcType struct { } const ( + // Some aspects of the linux kernel configs also know about this const, + // e.g. they create that many devices of various types (usually these parameters are in CMDLINE). MaxPids = 32 procDefaultValue = 0xffffffffffffffff // special value denoting 0 for all procs ) -- cgit mrf-deployment