X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=linux_module%2Fiface-pstate-ctrl.c;h=2864ea05cc82ae174d1420853088d5bec07c9e87;hb=659151a0b655c619f3acbb98a45e9eeb8002a4b3;hp=15596793006ede90e00916ac5bad94bf5ae13eb2;hpb=85c259546c85d19af43b443f9724c44caffb9b20;p=palacios.git diff --git a/linux_module/iface-pstate-ctrl.c b/linux_module/iface-pstate-ctrl.c index 1559679..2864ea0 100644 --- a/linux_module/iface-pstate-ctrl.c +++ b/linux_module/iface-pstate-ctrl.c @@ -1686,7 +1686,7 @@ static int pstate_hw_show(struct seq_file * file, void * v) } - seq_printf(file,"\nPstate\tCtrl\tKHz\n"); + seq_printf(file,"\nPstate\tCtrl\tKHz\tmW\tuS(X)\tuS(B)\n"); numstates = get_cpu_var(processors)->performance->state_count; if (!numstates) { seq_printf(file,"UNKNOWN\n"); @@ -1694,10 +1694,13 @@ static int pstate_hw_show(struct seq_file * file, void * v) int i; for (i=0;iperformance->states[i].control, - get_cpu_var(processors)->performance->states[i].core_frequency*1000); + get_cpu_var(processors)->performance->states[i].core_frequency*1000, + get_cpu_var(processors)->performance->states[i].power, + get_cpu_var(processors)->performance->states[i].transition_latency, + get_cpu_var(processors)->performance->states[i].bus_master_latency); } } put_cpu_var(processors);