From 9fb901914133e441f1b41cb33cbe60ae6c24a7cf Mon Sep 17 00:00:00 2001 From: dt Date: Sun, 14 Feb 1999 21:42:05 +0000 Subject: From rev. 1.12 of usr.sbin/pstat/pstat.c by phk: Reflect the fact that we do not swap on the first blocks of a swapdev, to protect disklabels and other such magic stuff. --- lib/libkvm/kvm_getswapinfo.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'lib/libkvm') diff --git a/lib/libkvm/kvm_getswapinfo.c b/lib/libkvm/kvm_getswapinfo.c index 596e6bc..f0f1967 100644 --- a/lib/libkvm/kvm_getswapinfo.c +++ b/lib/libkvm/kvm_getswapinfo.c @@ -14,7 +14,7 @@ static const char copyright[] = #ifndef lint static const char rcsid[] = - "$Id: kvm_getswapinfo.c,v 1.4 1999/01/27 11:29:15 bde Exp $"; + "$Id: kvm_getswapinfo.c,v 1.5 1999/02/06 06:31:57 dillon Exp $"; #endif /* not lint */ #include @@ -175,12 +175,15 @@ kvm_getswapinfo( * * new style: swinfo in DEV_BSIZE'd chunks but dmmax * in pages. + * + * The first dmmax is never allocating to avoid + * trashing the disklabels */ if (type == 1) - ttl = dbtoc(swinfo.sw_nblks); + ttl = dbtoc(swinfo.sw_nblks - dmmax); else - ttl = swinfo.sw_nblks; + ttl = swinfo.sw_nblks - dmmax; if (ttl == 0) continue; -- cgit v1.1