KVM: s390: fix calculation of idle_mask array size
authorJens Freimann <jfrei@linux.vnet.ibm.com>
Tue, 18 Mar 2014 15:34:18 +0000 (16:34 +0100)
committerChristian Borntraeger <borntraeger@de.ibm.com>
Tue, 25 Mar 2014 12:27:11 +0000 (13:27 +0100)
commit609433fbed4f25e11e8b058ab7e9478b212879a9
treecbb26db5ab1189321d559674d55311a5bba9535d
parentf6c137ff00a478ae619deea8650829dd2f8e71b9
KVM: s390: fix calculation of idle_mask array size

We need BITS_TO_LONGS, not sizeof(long) to calculate
the correct size.

idle_mask is a bitmask, each bit representing the state
of a cpu. The desired outcome is an array of unsigned long
fields that can fit KVM_MAX_VCPUS bits. We should not use
sizeof(long) which returnes the size in bytes, but BITS_TO_LONGS

Signed-off-by: Jens Freimann <jfrei@linux.vnet.ibm.com>
Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
arch/s390/include/asm/kvm_host.h