aboutsummaryrefslogtreecommitdiff
path: root/procfs
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2024-03-06 14:00:33 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2024-03-06 14:01:27 +0100
commitee150cd8b4fc4b1aba5d456e7791bc5366917568 (patch)
tree09674fd90b93a1c118a0aba45dc199bf82226e86 /procfs
parentcb6b4024b5e0b79f6416dc9d2553208b981f4550 (diff)
downloadhurd-ee150cd8b4fc4b1aba5d456e7791bc5366917568.tar.gz
hurd-ee150cd8b4fc4b1aba5d456e7791bc5366917568.tar.bz2
hurd-ee150cd8b4fc4b1aba5d456e7791bc5366917568.zip
procfs: fix MemTotal 4G memory clamp on 32bit systems
Using vmstats allows to get up to 16T.
Diffstat (limited to 'procfs')
-rw-r--r--procfs/rootdir.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/procfs/rootdir.c b/procfs/rootdir.c
index 7742eddc..35af7546 100644
--- a/procfs/rootdir.c
+++ b/procfs/rootdir.c
@@ -315,7 +315,10 @@ rootdir_gc_meminfo (void *hook, char **contents, ssize_t *contents_len)
"Inactive: %14lu kB\n"
"Mlocked: %14lu kB\n"
,
- (long unsigned) hbi.memory_size / 1024,
+ (long unsigned) (vmstats.free_count +
+ vmstats.active_count +
+ vmstats.inactive_count +
+ vmstats.wire_count) * PAGE_SIZE / 1024,
(long unsigned) vmstats.free_count * PAGE_SIZE / 1024,
0UL,
(long unsigned) cache_stats.cache_count * PAGE_SIZE / 1024,