had "bi" and "bo" output interchanged on 2.5.xx
This commit is contained in:
parent
992e18325e
commit
2b5a605ca8
2
NEWS
2
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
|
||||
|
||||
|
8
vmstat.c
8
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user