#include <i386/linux/linprocfs/linprocfs.h>
#define T2J(x) (((x) * 100) / stathz)
#define T2J(x) (((x) * 100) / (stathz ? stathz : hz)) /* ticks to jiffies */
#define T2S(x) ((x) / stathz)
#define T2S(x) ((x) / (stathz ? stathz : hz)) /* ticks to seconds */
int
linprocfs_domeminfo(curp, p, pfs, uio)