xen/balloon: Use the correct sizeof when declaring frame_list
authorJulien Grall <julien.grall@citrix.com>
Wed, 7 Oct 2015 13:04:33 +0000 (14:04 +0100)
committerDavid Vrabel <david.vrabel@citrix.com>
Fri, 23 Oct 2015 13:20:44 +0000 (14:20 +0100)
commit3990dd27034606312429a09c807ea74a6ec32dde
treeb12dd869e7bac3789f60e51bf624454c47edfa6e
parent9435cce87950d805e6c8315410f2cb8ff6b2c6a2
xen/balloon: Use the correct sizeof when declaring frame_list

The type of the item in frame_list is xen_pfn_t which is not an unsigned
long on ARM but an uint64_t.

With the current computation, the size of frame_list will be 2 *
PAGE_SIZE rather than PAGE_SIZE.

I bet it's just mistake when the type has been switched from "unsigned
long" to "xen_pfn_t" in commit 965c0aaafe3e75d4e65cd4ec862915869bde3abd
"xen: balloon: use correct type for frame_list".

Signed-off-by: Julien Grall <julien.grall@citrix.com>
Signed-off-by: David Vrabel <david.vrabel@citrix.com>
drivers/xen/balloon.c
This page took 0.024978 seconds and 5 git commands to generate.