On 09/18/2015 04:55 PM, Paolo Bonzini wrote:
On 18/09/2015 15:51, Denis V. Lunev wrote:
185
> 186 task_cputime_adjusted(current, &utime, &stime);
187 return div_u64(cputime_to_nsecs(utime + stime), 100);
188 }
189
190 static int kvm_hv_set_msr(struct kvm_vcpu *vcpu, u32 msr,
u64 data, bool host)
191 {
192 struct kvm_vcpu_hv *hv = &vcpu->arch.hyperv;
193
194 switch (msr) {
---
0-DAY kernel test infrastructure Open Source Technology
Center
https://lists.01.org/pipermail/kbuild-all Intel
Corporation
can not get an idea what is this warning about...
For me it looks pretty lame.
I think it wants you to do
- return div_u64(cputime_to_nsecs(utime + stime), 100);
+ return div_u64(cputime_to_nsecs(utime) +
+ cputime_to_nsecs(stime), 100);
Paolo
ok, I'll check but warning points here
> 186 task_cputime_adjusted(current, &utime, &stime);
and says about parameters 2 and 3. There is no parameter 3
in div_u64 call :)
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html