freebsd-dev/usr.sbin/pstat/pstat.c

649 lines
15 KiB
C
Raw Normal View History

1994-05-26 05:23:31 +00:00
/*-
1997-03-11 13:00:41 +00:00
* Copyright (c) 1980, 1991, 1993, 1994
1994-05-26 05:23:31 +00:00
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#ifndef lint
static const char copyright[] =
1997-03-11 13:00:41 +00:00
"@(#) Copyright (c) 1980, 1991, 1993, 1994\n\
1994-05-26 05:23:31 +00:00
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
#if 0
1997-03-11 13:00:41 +00:00
static char sccsid[] = "@(#)pstat.c 8.16 (Berkeley) 5/9/95";
#endif
static const char rcsid[] =
1999-08-28 01:35:59 +00:00
"$FreeBSD$";
1994-05-26 05:23:31 +00:00
#endif /* not lint */
#include <sys/param.h>
#include <sys/time.h>
#define _KERNEL
1994-05-26 05:23:31 +00:00
#include <sys/file.h>
1997-03-11 13:00:41 +00:00
#include <sys/uio.h>
#undef _KERNEL
1994-05-26 05:23:31 +00:00
#include <sys/stat.h>
#include <sys/stdint.h>
1994-05-26 05:23:31 +00:00
#include <sys/ioctl.h>
#include <sys/ioctl_compat.h> /* XXX NTTYDISC is too well hidden */
1994-05-26 05:23:31 +00:00
#include <sys/tty.h>
#include <sys/conf.h>
#include <sys/blist.h>
1994-05-26 05:23:31 +00:00
#include <sys/user.h>
1994-05-26 05:23:31 +00:00
#include <sys/sysctl.h>
#include <err.h>
#include <fcntl.h>
1994-05-26 05:23:31 +00:00
#include <kvm.h>
#include <limits.h>
#include <nlist.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
static struct nlist nl[] = {
#define NLMANDATORYBEG 0
#define V_MOUNTLIST 0
1994-05-26 05:23:31 +00:00
{ "_mountlist" }, /* address of head of mount list. */
#define V_NUMV 1
1994-05-26 05:23:31 +00:00
{ "_numvnodes" },
#define FNL_NFILES 2
1994-05-26 05:23:31 +00:00
{"_nfiles"},
#define FNL_MAXFILES 3
1994-05-26 05:23:31 +00:00
{"_maxfiles"},
#define NLMANDATORYEND FNL_MAXFILES /* names up to here are mandatory */
#define SCONS NLMANDATORYEND + 1
{ "_constty" },
#define SPTY NLMANDATORYEND + 2
1994-05-26 05:23:31 +00:00
{ "_pt_tty" },
#define SNPTY NLMANDATORYEND + 3
1994-05-26 05:23:31 +00:00
{ "_npty" },
#ifdef __FreeBSD__
#define SCCONS (SNPTY+1)
{ "_sccons" },
#define NSCCONS (SNPTY+2)
{ "_nsccons" },
#define SIO (SNPTY+3)
{ "_sio_tty" },
#define NSIO (SNPTY+4)
{ "_nsio_tty" },
#define RC (SNPTY+5)
{ "_rc_tty" },
#define NRC (SNPTY+6)
{ "_nrc_tty" },
#define CY (SNPTY+7)
{ "_cy_tty" },
#define NCY (SNPTY+8)
{ "_ncy_tty" },
#define SI (SNPTY+9)
{ "_si_tty" },
#define NSI (SNPTY+10)
{ "_si_Nports" },
#endif
1994-05-26 05:23:31 +00:00
{ "" }
};
static int usenumflag;
static int totalflag;
static int swapflag;
static char *nlistf;
static char *memf;
static kvm_t *kd;
1994-05-26 05:23:31 +00:00
static char *usagestr;
1994-05-26 05:23:31 +00:00
#define SVAR(var) __STRING(var) /* to force expansion */
#define KGET(idx, var) \
KGET1(idx, &var, sizeof(var), SVAR(var))
#define KGET1(idx, p, s, msg) \
KGET2(nl[idx].n_value, p, s, msg)
#define KGET2(addr, p, s, msg) \
if (kvm_read(kd, (u_long)(addr), p, s) != s) \
warnx("cannot read %s: %s", msg, kvm_geterr(kd))
#define KGETN(idx, var) \
KGET1N(idx, &var, sizeof(var), SVAR(var))
#define KGET1N(idx, p, s, msg) \
KGET2N(nl[idx].n_value, p, s, msg)
#define KGET2N(addr, p, s, msg) \
((kvm_read(kd, (u_long)(addr), p, s) == s) ? 1 : 0)
1994-05-26 05:23:31 +00:00
#define KGETRET(addr, p, s, msg) \
if (kvm_read(kd, (u_long)(addr), p, s) != s) { \
warnx("cannot read %s: %s", msg, kvm_geterr(kd)); \
return (0); \
}
2002-05-23 14:48:25 +00:00
static void filemode(void);
static int getfiles(char **, size_t *);
2002-05-23 14:48:25 +00:00
static void swapmode(void);
static void ttymode(void);
static void ttyprt(struct xtty *);
#if 0
/* XXX */
2002-05-23 14:48:25 +00:00
static void ttytype(struct tty *, char *, int, int, int);
#endif
2002-05-23 14:48:25 +00:00
static void usage(void);
1994-05-26 05:23:31 +00:00
int
2002-05-23 14:48:25 +00:00
main(int argc, char *argv[])
1994-05-26 05:23:31 +00:00
{
int ch, i, quit, ret;
int fileflag, ttyflag;
char buf[_POSIX2_LINE_MAX],*opts;
1994-05-26 05:23:31 +00:00
fileflag = swapflag = ttyflag = 0;
/* We will behave like good old swapinfo if thus invoked */
opts = strrchr(argv[0],'/');
if (opts)
opts++;
else
opts = argv[0];
if (!strcmp(opts,"swapinfo")) {
swapflag = 1;
opts = "kM:N:";
usagestr = "swapinfo [-k] [-M core] [-N system]";
} else {
opts = "TM:N:fknst";
usagestr = "pstat [-Tfknst] [-M core] [-N system]";
}
while ((ch = getopt(argc, argv, opts)) != -1)
1994-05-26 05:23:31 +00:00
switch (ch) {
case 'f':
fileflag = 1;
break;
case 'k':
putenv("BLOCKSIZE=1K");
break;
1994-05-26 05:23:31 +00:00
case 'M':
memf = optarg;
break;
case 'N':
nlistf = optarg;
break;
case 'n':
usenumflag = 1;
break;
case 's':
++swapflag;
1994-05-26 05:23:31 +00:00
break;
case 'T':
totalflag = 1;
break;
case 't':
ttyflag = 1;
break;
default:
usage();
1994-05-26 05:23:31 +00:00
}
argc -= optind;
argv += optind;
if (memf != NULL) {
kd = kvm_openfiles(nlistf, memf, NULL, O_RDONLY, buf);
if (kd == NULL)
errx(1, "kvm_openfiles: %s", buf);
if ((ret = kvm_nlist(kd, nl)) != 0) {
if (ret == -1)
errx(1, "kvm_nlist: %s", kvm_geterr(kd));
quit = 0;
for (i = NLMANDATORYBEG; i <= NLMANDATORYEND; i++)
if (!nl[i].n_value) {
quit = 1;
warnx("undefined symbol: %s",
nl[i].n_name);
}
if (quit)
exit(1);
}
1994-05-26 05:23:31 +00:00
}
if (!(fileflag | ttyflag | swapflag | totalflag))
usage();
1994-05-26 05:23:31 +00:00
if (fileflag || totalflag)
filemode();
if (ttyflag)
ttymode();
if (swapflag || totalflag)
swapmode();
exit (0);
}
static void
2002-05-23 14:48:25 +00:00
usage(void)
{
fprintf(stderr, "usage: %s\n", usagestr);
exit (1);
}
static const char hdr[] =
" LINE RAW CAN OUT IHIWT ILOWT OHWT LWT COL STATE SESS PGID DISC\n";
#if 0
/* XXX */
static int ttyspace = 128;
#endif
1994-05-26 05:23:31 +00:00
static void
2002-05-23 14:48:25 +00:00
ttymode(void)
1994-05-26 05:23:31 +00:00
{
struct xtty *xt, *end;
void *xttys;
size_t len;
(void)printf("%s", hdr);
if ((xttys = malloc(len = sizeof *xt)) == NULL)
err(1, "malloc()");
while (sysctlbyname("kern.ttys", xttys, &len, 0, 0) == -1) {
if (errno != ENOMEM)
err(1, "sysctlbyname()");
len *= 2;
if ((xttys = realloc(xttys, len)) == NULL)
err(1, "realloc()");
}
if (len > 0) {
end = (struct xtty *)((char *)xttys + len);
for (xt = xttys; xt < end; xt++)
ttyprt(xt);
}
#if 0
/* XXX */
1994-05-26 05:23:31 +00:00
if ((tty = malloc(ttyspace * sizeof(*tty))) == NULL)
errx(1, "malloc");
if (nl[SCONS].n_type != 0) {
(void)printf("1 console\n");
KGET(SCONS, *tty);
ttyprt(&tty[0], 0);
}
#ifdef __FreeBSD__
if (nl[NSCCONS].n_type != 0)
ttytype(tty, "vty", SCCONS, NSCCONS, 0);
if (nl[NSIO].n_type != 0)
ttytype(tty, "sio", SIO, NSIO, 0);
if (nl[NRC].n_type != 0)
ttytype(tty, "rc", RC, NRC, 0);
if (nl[NCY].n_type != 0)
ttytype(tty, "cy", CY, NCY, 0);
if (nl[NSI].n_type != 0)
ttytype(tty, "si", SI, NSI, 1);
1994-05-26 05:23:31 +00:00
#endif
if (nl[SNPTY].n_type != 0)
ttytype(tty, "pty", SPTY, SNPTY, 0);
1994-05-26 05:23:31 +00:00
}
static void
2002-05-23 14:48:25 +00:00
ttytype(struct tty *tty, char *name, int type, int number, int indir)
1994-05-26 05:23:31 +00:00
{
1997-03-11 13:00:41 +00:00
struct tty *tp;
1994-05-26 05:23:31 +00:00
int ntty;
struct tty **ttyaddr;
1994-05-26 05:23:31 +00:00
if (tty == NULL)
return;
KGET(number, ntty);
(void)printf("%d %s %s\n", ntty, name, (ntty == 1) ? "line" : "lines");
if (ntty > ttyspace) {
ttyspace = ntty;
if ((tty = realloc(tty, ttyspace * sizeof(*tty))) == 0)
errx(1, "realloc");
1994-05-26 05:23:31 +00:00
}
if (indir) {
KGET(type, ttyaddr);
KGET2(ttyaddr, tty, ntty * sizeof(struct tty), "tty structs");
} else {
KGET1(type, tty, ntty * sizeof(struct tty), "tty structs");
}
(void)printf("%s", hdr);
1994-05-26 05:23:31 +00:00
for (tp = tty; tp < &tty[ntty]; tp++)
ttyprt(tp, tp - tty);
#endif
1994-05-26 05:23:31 +00:00
}
static struct {
1994-05-26 05:23:31 +00:00
int flag;
char val;
} ttystates[] = {
#ifdef TS_WOPEN
1994-05-26 05:23:31 +00:00
{ TS_WOPEN, 'W'},
#endif
1994-05-26 05:23:31 +00:00
{ TS_ISOPEN, 'O'},
{ TS_CARR_ON, 'C'},
#ifdef TS_CONNECTED
{ TS_CONNECTED, 'c'},
#endif
1994-05-26 05:23:31 +00:00
{ TS_TIMEOUT, 'T'},
{ TS_FLUSH, 'F'},
{ TS_BUSY, 'B'},
#ifdef TS_ASLEEP
1994-05-26 05:23:31 +00:00
{ TS_ASLEEP, 'A'},
#endif
#ifdef TS_SO_OLOWAT
{ TS_SO_OLOWAT, 'A'},
#endif
#ifdef TS_SO_OCOMPLETE
{ TS_SO_OCOMPLETE, 'a'},
#endif
1994-05-26 05:23:31 +00:00
{ TS_XCLUDE, 'X'},
{ TS_TTSTOP, 'S'},
#ifdef TS_CAR_OFLOW
{ TS_CAR_OFLOW, 'm'},
#endif
#ifdef TS_CTS_OFLOW
{ TS_CTS_OFLOW, 'o'},
#endif
#ifdef TS_DSR_OFLOW
{ TS_DSR_OFLOW, 'd'},
#endif
1994-05-26 05:23:31 +00:00
{ TS_TBLOCK, 'K'},
{ TS_ASYNC, 'Y'},
{ TS_BKSL, 'D'},
{ TS_ERASE, 'E'},
{ TS_LNCH, 'L'},
{ TS_TYPEN, 'P'},
{ TS_CNTTB, 'N'},
#ifdef TS_CAN_BYPASS_L_RINT
1995-05-07 23:19:53 +00:00
{ TS_CAN_BYPASS_L_RINT, 'l'},
#endif
#ifdef TS_SNOOP
{ TS_SNOOP, 's'},
#endif
#ifdef TS_ZOMBIE
{ TS_ZOMBIE, 'Z'},
1995-05-07 23:19:53 +00:00
#endif
1994-05-26 05:23:31 +00:00
{ 0, '\0'},
};
static void
ttyprt(struct xtty *xt)
1994-05-26 05:23:31 +00:00
{
1997-03-11 13:00:41 +00:00
int i, j;
1994-05-26 05:23:31 +00:00
pid_t pgid;
char *name, state[20];
if (xt->xt_size != sizeof *xt)
errx(1, "struct xtty size mismatch");
if (usenumflag || xt->xt_dev == 0 ||
(name = devname(xt->xt_dev, S_IFCHR)) == NULL)
(void)printf(" %2d,%-2d", major(xt->xt_dev), minor(xt->xt_dev));
1994-05-26 05:23:31 +00:00
else
(void)printf("%7s ", name);
(void)printf("%2ld %3ld ", xt->xt_rawcc, xt->xt_cancc);
(void)printf("%3ld %5d %5d %4d %3d %7d ", xt->xt_outcc,
xt->xt_ihiwat, xt->xt_ilowat, xt->xt_ohiwat, xt->xt_olowat,
xt->xt_column);
1994-05-26 05:23:31 +00:00
for (i = j = 0; ttystates[i].flag; i++)
if (xt->xt_state & ttystates[i].flag)
1994-05-26 05:23:31 +00:00
state[j++] = ttystates[i].val;
if (j == 0)
state[j++] = '-';
state[j] = '\0';
(void)printf("%-6s %8d", state, xt->xt_sid);
1994-05-26 05:23:31 +00:00
pgid = 0;
(void)printf("%6d ", xt->xt_pgid);
switch (xt->xt_line) {
1994-05-26 05:23:31 +00:00
case TTYDISC:
(void)printf("term\n");
break;
case NTTYDISC:
(void)printf("ntty\n");
break;
1994-05-26 05:23:31 +00:00
case SLIPDISC:
(void)printf("slip\n");
break;
case PPPDISC:
(void)printf("ppp\n");
break;
1994-05-26 05:23:31 +00:00
default:
(void)printf("%d\n", xt->xt_line);
1994-05-26 05:23:31 +00:00
break;
}
}
static void
2002-05-23 14:48:25 +00:00
filemode(void)
1994-05-26 05:23:31 +00:00
{
1997-03-11 13:00:41 +00:00
struct file *fp;
1994-05-26 05:23:31 +00:00
struct file *addr;
char *buf, flagbuf[16], *fbp;
int maxfile, nfiles;
size_t len;
1994-05-26 05:23:31 +00:00
static char *dtypes[] = { "???", "inode", "socket" };
if (kd != NULL) {
KGET(FNL_MAXFILES, maxfile);
KGET(FNL_NFILES, nfiles);
} else {
len = sizeof maxfile;
if (sysctlbyname("kern.maxfiles", &maxfile, &len, 0, 0) == -1)
err(1, "sysctlbyname()");
len = sizeof nfiles;
if (sysctlbyname("kern.openfiles", &nfiles, &len, 0, 0) == -1)
err(1, "sysctlbyname()");
}
1994-05-26 05:23:31 +00:00
if (totalflag) {
(void)printf("%3d/%3d files\n", nfiles, maxfile);
1994-05-26 05:23:31 +00:00
return;
}
if (getfiles(&buf, &len) == -1)
return;
/*
* Getfiles returns in malloc'd memory a pointer to the first file
* structure, and then an array of file structs (whose addresses are
* derivable from the previous entry).
*/
addr = LIST_FIRST((struct filelist *)buf);
1996-03-11 05:41:43 +00:00
fp = (struct file *)(buf + sizeof(struct filelist));
nfiles = (len - sizeof(struct filelist)) / sizeof(struct file);
1995-05-30 03:57:47 +00:00
(void)printf("%d/%d open files\n", nfiles, maxfile);
1994-05-26 05:23:31 +00:00
(void)printf(" LOC TYPE FLG CNT MSG DATA OFFSET\n");
for (; (char *)fp < buf + len; addr = LIST_NEXT(fp, f_list), fp++) {
1994-05-26 05:23:31 +00:00
if ((unsigned)fp->f_type > DTYPE_SOCKET)
continue;
(void)printf("%8lx ", (u_long)(void *)addr);
1994-05-26 05:23:31 +00:00
(void)printf("%-8.8s", dtypes[fp->f_type]);
fbp = flagbuf;
if (fp->f_flag & FREAD)
*fbp++ = 'R';
if (fp->f_flag & FWRITE)
*fbp++ = 'W';
if (fp->f_flag & FAPPEND)
*fbp++ = 'A';
if (fp->f_flag & FASYNC)
*fbp++ = 'I';
*fbp = '\0';
(void)printf("%6s %3d", flagbuf, fp->f_count);
(void)printf(" %3d", fp->f_msgcount);
(void)printf(" %8lx", (u_long)(void *)fp->f_data);
(void)printf(" %jx\n", (uintmax_t)fp->f_offset);
1994-05-26 05:23:31 +00:00
}
free(buf);
}
static int
getfiles(char **abuf, size_t *alen)
1994-05-26 05:23:31 +00:00
{
size_t len;
int mib[2];
char *buf;
/*
* XXX
* Add emulation of KINFO_FILE here.
*/
if (kd != NULL)
errx(1, "files on dead kernel, not implemented");
1994-05-26 05:23:31 +00:00
mib[0] = CTL_KERN;
mib[1] = KERN_FILE;
if (sysctl(mib, 2, NULL, &len, NULL, 0) == -1) {
warn("sysctl: KERN_FILE");
return (-1);
}
if ((buf = malloc(len)) == NULL)
errx(1, "malloc");
1994-05-26 05:23:31 +00:00
if (sysctl(mib, 2, buf, &len, NULL, 0) == -1) {
warn("sysctl: KERN_FILE");
return (-1);
}
*abuf = buf;
*alen = len;
return (0);
}
/*
* swapmode is based on a program called swapinfo written
* by Kevin Lahey <kml@rokkaku.atl.ga.us>.
*/
#define CONVERT(v) ((int)((intmax_t)(v) * pagesize / blocksize))
static struct kvm_swap swtot;
static int nswdev;
static void
print_swap_header(void)
1994-05-26 05:23:31 +00:00
{
int hlen;
long blocksize;
const char *header;
1994-05-26 05:23:31 +00:00
header = getbsize(&hlen, &blocksize);
if (totalflag == 0)
(void)printf("%-15s %*s %8s %8s %8s %s\n",
1994-05-26 05:23:31 +00:00
"Device", hlen, header,
"Used", "Avail", "Capacity", "Type");
}
static void
print_swap(struct kvm_swap *ksw)
{
int hlen, pagesize;
long blocksize;
pagesize = getpagesize();
getbsize(&hlen, &blocksize);
swtot.ksw_total += ksw->ksw_total;
swtot.ksw_used += ksw->ksw_used;
++nswdev;
if (totalflag == 0) {
2002-05-28 05:45:56 +00:00
(void)printf("%-10s %*d ",
ksw->ksw_devname, hlen,
CONVERT(ksw->ksw_total));
(void)printf("%8d %8d %5.0f%% %s\n",
CONVERT(ksw->ksw_used),
CONVERT(ksw->ksw_total - ksw->ksw_used),
(ksw->ksw_used * 100.0) / ksw->ksw_total,
(ksw->ksw_flags & SW_SEQUENTIAL) ?
"Sequential" : "Interleaved");
}
}
static void
print_swap_total(void)
{
int hlen, pagesize;
long blocksize;
pagesize = getpagesize();
getbsize(&hlen, &blocksize);
1994-05-26 05:23:31 +00:00
if (totalflag) {
blocksize = 1024 * 1024;
(void)printf("%dM/%dM swap space\n",
CONVERT(swtot.ksw_used), CONVERT(swtot.ksw_total));
} else if (nswdev > 1) {
(void)printf("%-15s %*d %8d %8d %5.0f%%\n",
"Total", hlen, CONVERT(swtot.ksw_total),
CONVERT(swtot.ksw_used),
CONVERT(swtot.ksw_total - swtot.ksw_used),
(swtot.ksw_used * 100.0) / swtot.ksw_total);
}
}
static void
swapmode_kvm(void)
{
struct kvm_swap kswap[16];
int i, n;
n = kvm_getswapinfo(kd, kswap, sizeof kswap / sizeof kswap[0],
((swapflag > 1) ? SWIF_DUMP_TREE : 0) | SWIF_DEV_PREFIX);
print_swap_header();
for (i = 0; i < n; ++i)
print_swap(&kswap[i]);
print_swap_total();
}
static void
swapmode_sysctl(void)
{
struct kvm_swap ksw;
struct xswdev xsw;
size_t mibsize, size;
int mib[16], n;
print_swap_header();
mibsize = sizeof mib / sizeof mib[0];
if (sysctlnametomib("vm.swap_info", mib, &mibsize) == -1)
err(1, "sysctlnametomib()");
for (n = 0; ; ++n) {
mib[mibsize] = n;
size = sizeof xsw;
if (sysctl(mib, mibsize + 1, &xsw, &size, NULL, NULL) == -1)
break;
if (xsw.xsw_version != XSWDEV_VERSION)
errx(1, "xswdev version mismatch");
snprintf(ksw.ksw_devname, sizeof ksw.ksw_devname,
"/dev/%s", devname(xsw.xsw_dev, S_IFCHR));
ksw.ksw_used = xsw.xsw_used;
ksw.ksw_total = xsw.xsw_nblks;
ksw.ksw_flags = xsw.xsw_flags;
print_swap(&ksw);
1994-05-26 05:23:31 +00:00
}
if (errno != ENOENT)
err(1, "sysctl()");
print_swap_total();
}
static void
swapmode(void)
{
if (kd != NULL)
swapmode_kvm();
else
swapmode_sysctl();
1994-05-26 05:23:31 +00:00
}