]> Zhao Yanbai Git Server - minix.git/commit
ProcFS: get process information from MIB service 55/3255/2
authorDavid van Moolenbroek <david@minix3.org>
Sun, 8 Nov 2015 11:56:52 +0000 (11:56 +0000)
committerLionel Sambuc <lionel.sambuc@gmail.com>
Wed, 13 Jan 2016 19:32:54 +0000 (20:32 +0100)
commit305e366fe47197851cc728bd12ee4d4f1d8f7d64
treee40bad5e44ef5dc2f4903e84be15ee78e335a422
parentb89261ba018da33f0bd8cd05f5a1fe9e7a9c837b
ProcFS: get process information from MIB service

Instead of pulling in process tables itself, ProcFS now queries the
MIB service for process information.  This reduces ProcFS's memory
usage by about 1MB.  The change does have two negative consequences.

First, getting all the original /proc/<pid>/psinfo fields filled in
would take a lot of extra effort.  Since the only program that uses
those files at all is mtop(1), we reformat psinfo to expose only the
information used by mtop(1).  This means that with this patch, older
copies of MINIX3 ps and top will cease to work.

Second, since both MIB and ProcFS update their own view of the
process list only once per clock tick, ProcFS' view may now be
outdated by up to two clock ticks.  This is unlikely to pose a
problem in practice.

Change-Id: Iaa6b60450c8fb52d092962394d33d08bd638bc01
13 files changed:
minix/fs/procfs/glo.h
minix/fs/procfs/inc.h
minix/fs/procfs/pid.c
minix/fs/procfs/proto.h
minix/fs/procfs/tree.c
minix/include/minix/endpoint.h
minix/include/minix/procfs.h
minix/include/minix/sysctl.h
minix/lib/libminc/Makefile
minix/servers/mib/mib.h
minix/servers/mib/minix.c
minix/servers/mib/proc.c
minix/usr.bin/mtop/mtop.c