diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-03-06 14:00:33 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-03-06 14:01:27 +0100 |
commit | ee150cd8b4fc4b1aba5d456e7791bc5366917568 (patch) | |
tree | 09674fd90b93a1c118a0aba45dc199bf82226e86 /procfs | |
parent | cb6b4024b5e0b79f6416dc9d2553208b981f4550 (diff) | |
download | hurd-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.c | 5 |
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, |