diff options
author | Mark Langsdorf <mark.langsdorf@calxeda.com> | 2012-03-12 11:33:25 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-05-21 15:40:50 -0500 |
commit | 80a2ba3d3cf33b777d6a45776b0625b9a4283951 (patch) | |
tree | 85bb0d3c5d34f91d36e8847dff800085b4f1008d /hw/loader.c | |
parent | b4f1a7ca72fcd0bfdf89d089c6739650f7b14f2a (diff) | |
download | qemu-80a2ba3d3cf33b777d6a45776b0625b9a4283951.zip |
use an uint64_t for the max_sz parameter in load_image_targphys
Allow load_image_targphys to load files on systems with more than 2G of
emulated memory by changing the max_sz parameter from an int to an
uint64_t.
Reviewed-by: Andreas F=E4rber <afaerber@suse.de>
Acked-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Mark Langsdorf <mark.langsdorf@calxeda.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/loader.c')
-rw-r--r-- | hw/loader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/loader.c b/hw/loader.c index 415cdce534..7d64113e7f 100644 --- a/hw/loader.c +++ b/hw/loader.c @@ -103,7 +103,7 @@ ssize_t read_targphys(const char *name, /* return the size or -1 if error */ int load_image_targphys(const char *filename, - target_phys_addr_t addr, int max_sz) + target_phys_addr_t addr, uint64_t max_sz) { int size; |