diff options
author | Stefano Stabellini <stefano.stabellini@eu.citrix.com> | 2011-05-20 16:57:24 +0000 |
---|---|---|
committer | Stefano Stabellini <stefano.stabellini@eu.citrix.com> | 2011-09-09 13:13:16 +0000 |
commit | 2b734340407e9b9f70ba84bb596201ef7027a427 (patch) | |
tree | 169c143acb1cb8802c81b10aac522f73e52af287 /xen-all.c | |
parent | 6d6467305aa62368e086c697f14560c80eac17c5 (diff) |
xen: use uint64_t instead of target_ulong in cpu_ioreq_move
cpu_ioreq_move might move 8 bytes at a time so we must make sure that
the temporary variable can hold 8 bytes.
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Diffstat (limited to 'xen-all.c')
-rw-r--r-- | xen-all.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -620,7 +620,7 @@ static void cpu_ioreq_move(ioreq_t *req) } } } else { - target_ulong tmp; + uint64_t tmp; if (req->dir == IOREQ_READ) { for (i = 0; i < req->count; i++) { |