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
|
old build system removed
|
||||||
code cleanup
|
code cleanup
|
||||||
pgrep and pkill get "-o" (oldest matching process)
|
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
|
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 */
|
if(need_extra_file){ /* 2.5.40-bk4 and above */
|
||||||
vminfo();
|
vminfo();
|
||||||
*pin = vm_pgpgout;
|
*pin = vm_pgpgin;
|
||||||
*pout = vm_pgpgin;
|
*pout = vm_pgpgout;
|
||||||
*s_in = vm_pswpout;
|
*s_in = vm_pswpin;
|
||||||
*sout = vm_pswpin;
|
*sout = vm_pswpout;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user