diff options
| author | Dr. David Alan Gilbert <dgilbert@redhat.com> | 2018-03-12 17:20:57 +0000 |
|---|---|---|
| committer | Michael S. Tsirkin <mst@redhat.com> | 2018-03-20 05:03:26 +0200 |
| commit | f90bb71bfdaca6ece1696e194aad11fb8599ffba (patch) | |
| tree | ac6677b5c12103fdeef75d1da2f625bbd071683c /exec.c | |
| parent | db144f7000327a98a7ed0b32f1fc8615ad4ae740 (diff) | |
| download | focaccia-qemu-f90bb71bfdaca6ece1696e194aad11fb8599ffba.tar.gz focaccia-qemu-f90bb71bfdaca6ece1696e194aad11fb8599ffba.zip | |
qemu_ram_block_host_offset
Utility to give the offset of a host pointer within a RAMBlock (assuming we already know it's in that RAMBlock) Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Peter Xu <peterx@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'exec.c')
| -rw-r--r-- | exec.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/exec.c b/exec.c index 34fdfd966e..2199b093bd 100644 --- a/exec.c +++ b/exec.c @@ -2297,6 +2297,16 @@ static void *qemu_ram_ptr_length(RAMBlock *ram_block, ram_addr_t addr, return ramblock_ptr(block, addr); } +/* Return the offset of a hostpointer within a ramblock */ +ram_addr_t qemu_ram_block_host_offset(RAMBlock *rb, void *host) +{ + ram_addr_t res = (uint8_t *)host - (uint8_t *)rb->host; + assert((uintptr_t)host >= (uintptr_t)rb->host); + assert(res < rb->max_length); + + return res; +} + /* * Translates a host ptr back to a RAMBlock, a ram_addr and an offset * in that RAMBlock. |