diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-01-03 16:23:12 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-01-03 16:23:12 +0000 |
| commit | 42c43e6031ccea7e2e8c0bd974f882df60731e44 (patch) | |
| tree | c7aa39b6ef241e6540b183e8f18346cfdf2952f7 | |
| parent | c410df597bbcf336aed35a8be61783db2c1ebd32 (diff) | |
Notes
| -rw-r--r-- | lib/libkvm/kvm_getswapinfo.c | 2 | ||||
| -rw-r--r-- | sys/sys/conf.h | 16 | ||||
| -rw-r--r-- | sys/sys/linedisc.h | 16 | ||||
| -rw-r--r-- | sys/vm/swap_pager.h | 19 | ||||
| -rw-r--r-- | usr.sbin/pstat/pstat.c | 2 |
5 files changed, 20 insertions, 35 deletions
diff --git a/lib/libkvm/kvm_getswapinfo.c b/lib/libkvm/kvm_getswapinfo.c index f3f72ddd27a6..d7c6d57e8144 100644 --- a/lib/libkvm/kvm_getswapinfo.c +++ b/lib/libkvm/kvm_getswapinfo.c @@ -13,11 +13,11 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/time.h> #include <sys/stat.h> -#include <sys/conf.h> #include <sys/blist.h> #include <sys/sysctl.h> #include <vm/vm_param.h> +#include <vm/swap_pager.h> #include <err.h> #include <errno.h> diff --git a/sys/sys/conf.h b/sys/sys/conf.h index ca14498e263b..f11cd800b3cb 100644 --- a/sys/sys/conf.h +++ b/sys/sys/conf.h @@ -253,22 +253,6 @@ void ldisc_deregister(int); #define LDISC_LOAD -1 /* Loadable line discipline */ #endif /* _KERNEL */ -/* - * Swap device table - */ -struct swdevt { - udev_t sw_dev; /* For quasibogus swapdev reporting */ - int sw_flags; - int sw_nblks; - int sw_used; - struct vnode *sw_vp; - dev_t sw_device; -}; -#define SW_FREED 0x01 -#define SW_SEQUENTIAL 0x02 -#define SW_CLOSING 0x04 -#define sw_freed sw_flags /* XXX compat */ - #ifdef _KERNEL d_open_t noopen; d_close_t noclose; diff --git a/sys/sys/linedisc.h b/sys/sys/linedisc.h index ca14498e263b..f11cd800b3cb 100644 --- a/sys/sys/linedisc.h +++ b/sys/sys/linedisc.h @@ -253,22 +253,6 @@ void ldisc_deregister(int); #define LDISC_LOAD -1 /* Loadable line discipline */ #endif /* _KERNEL */ -/* - * Swap device table - */ -struct swdevt { - udev_t sw_dev; /* For quasibogus swapdev reporting */ - int sw_flags; - int sw_nblks; - int sw_used; - struct vnode *sw_vp; - dev_t sw_device; -}; -#define SW_FREED 0x01 -#define SW_SEQUENTIAL 0x02 -#define SW_CLOSING 0x04 -#define sw_freed sw_flags /* XXX compat */ - #ifdef _KERNEL d_open_t noopen; d_close_t noclose; diff --git a/sys/vm/swap_pager.h b/sys/vm/swap_pager.h index 23fc08508846..3593ed3a3aa7 100644 --- a/sys/vm/swap_pager.h +++ b/sys/vm/swap_pager.h @@ -48,6 +48,24 @@ #define _VM_SWAP_PAGER_H_ 1 /* + * Swap device table + */ +struct swdevt { + udev_t sw_dev; /* For quasibogus swapdev reporting */ + int sw_flags; + int sw_nblks; + int sw_used; + struct vnode *sw_vp; + dev_t sw_device; +}; +#define SW_FREED 0x01 +#define SW_SEQUENTIAL 0x02 +#define SW_CLOSING 0x04 +#define sw_freed sw_flags /* XXX compat */ + +#ifdef _KERNEL + +/* * SWB_NPAGES must be a power of 2. It may be set to 1, 2, 4, 8, or 16 * pages per allocation. We recommend you stick with the default of 8. * The 16-page limit is due to the radix code (kern/subr_blist.c). @@ -78,7 +96,6 @@ struct swblock { daddr_t swb_pages[SWAP_META_PAGES]; }; -#ifdef _KERNEL extern struct pagerlst swap_pager_un_object_list; extern int swap_pager_full; extern struct blist *swapblist; diff --git a/usr.sbin/pstat/pstat.c b/usr.sbin/pstat/pstat.c index f85de47094e8..2346bc42e2a6 100644 --- a/usr.sbin/pstat/pstat.c +++ b/usr.sbin/pstat/pstat.c @@ -60,11 +60,11 @@ static const char rcsid[] = #include <sys/ioctl.h> #include <sys/ioctl_compat.h> /* XXX NTTYDISC is too well hidden */ #include <sys/tty.h> -#include <sys/conf.h> #include <sys/blist.h> #include <sys/user.h> #include <sys/sysctl.h> +#include <vm/swap_pager.h> #include <err.h> #include <fcntl.h> |
