memstat_uma.c (4156ce4fed70de28d56d0ef9a32cdb4f6c5ffeb7) | memstat_uma.c (4026b447908ec41deae2e5c9cdd62eef3072daa4) |
---|---|
1/*- 2 * Copyright (c) 2005-2006 Robert N. M. Watson 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 16 unchanged lines hidden (view full) --- 25 * 26 * $FreeBSD$ 27 */ 28 29#include <sys/param.h> 30#include <sys/cpuset.h> 31#include <sys/sysctl.h> 32 | 1/*- 2 * Copyright (c) 2005-2006 Robert N. M. Watson 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 16 unchanged lines hidden (view full) --- 25 * 26 * $FreeBSD$ 27 */ 28 29#include <sys/param.h> 30#include <sys/cpuset.h> 31#include <sys/sysctl.h> 32 |
33#include <vm/vm.h> 34#include <vm/vm_page.h> 35 | |
36#include <vm/uma.h> 37#include <vm/uma_int.h> 38 39#include <err.h> 40#include <errno.h> 41#include <kvm.h> 42#include <nlist.h> 43#include <stddef.h> --- 423 unchanged lines hidden --- | 33#include <vm/uma.h> 34#include <vm/uma_int.h> 35 36#include <err.h> 37#include <errno.h> 38#include <kvm.h> 39#include <nlist.h> 40#include <stddef.h> --- 423 unchanged lines hidden --- |