]> granicus.if.org Git - procps-ng/commitdiff
had "bi" and "bo" output interchanged on 2.5.xx
authoralbert <>
Wed, 23 Oct 2002 21:27:51 +0000 (21:27 +0000)
committeralbert <>
Wed, 23 Oct 2002 21:27:51 +0000 (21:27 +0000)
NEWS
vmstat.c

diff --git a/NEWS b/NEWS
index 77f0732e6d3af08ddbf12f5e4d77cc0fb3958e5f..ac85cf13cd69480a18f41b7d7e5ae6a9424185bf 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -6,6 +6,8 @@ XConsole and top.desktop removed
 old build system removed
 code cleanup
 pgrep and pkill get "-o" (oldest matching process)
+had vmstat "bi" and "bo" output interchanged on 2.5.xx
+fix man page tbl directives
 
 procps-3.0.3 --> procps-3.0.4
 
index d0ddb3254945663d046d8e51d5b2fb2122da1bcd..5ac2f2b20f76e52b8b57ff9f2e819aa9b6ea90f4 100644 (file)
--- a/vmstat.c
+++ b/vmstat.c
@@ -121,10 +121,10 @@ static void getstat(jiff *cuse, jiff *cice, jiff *csys, jiff *cide, jiff *ciow,
 
   if(need_extra_file){  /* 2.5.40-bk4 and above */
     vminfo();
-    *pin  = vm_pgpgout;
-    *pout = vm_pgpgin;
-    *s_in = vm_pswpout;
-    *sout = vm_pswpin;
+    *pin  = vm_pgpgin;
+    *pout = vm_pgpgout;
+    *s_in = vm_pswpin;
+    *sout = vm_pswpout;
   }
 }