I'd hope that kswapd was carefully to make sure that it always hasVery true. But is a kernel thread like kswapd depends on a userspace program, then that program better be well behaved.
enough pages...
...it is harder to do the same auditing with userland program.
If the NFS server needed kswapd, we'd deadlock pretty soon, as kswapd *really* needs the NFS server. In our case, all block I/O is done using unbuffered I/O, and all memory is preallocated, so we don't need kswapd at all, just that small bit of memory that syscalls consume.A more complete solution would be to assign memory reserve levels below which a process starts allocating synchronously. For example, normal processes must have >20MB to make forward progress, kswapd wants >15MB and the NFS server needs >10MB. Some way would be needed to express the dependencies.
Yes, something like that would be neccessary. I believe it would be
slightly more complicated, like
"NFS server needs > 10MB *and working kswapd*", so you'd need 25MB in
fact... and this info should be stored in some readable form so that
it can be checked.