]> git.ipfire.org Git - thirdparty/qemu.git/commit
virtio-balloon: Better names for offset variables in inflate/deflate code
authorDavid Hildenbrand <david@redhat.com>
Mon, 22 Jul 2019 13:41:06 +0000 (15:41 +0200)
committerMichael Roth <mdroth@linux.vnet.ibm.com>
Tue, 30 Jul 2019 17:41:24 +0000 (12:41 -0500)
commit46275f909105080a96d13ed39fc9d389f313f579
tree4365d506c1bfda63ad75ac4c80f5e2d26049e2bd
parentb0d6feca997b01d1a4d9ce2b7952a0668408c844
virtio-balloon: Better names for offset variables in inflate/deflate code

"host_page_base" is really confusing, let's make this clearer, also
rename the other offsets to indicate to which base they apply.

offset -> mr_offset
ram_offset -> rb_offset
host_page_base -> rb_aligned_offset

While at it, use QEMU_ALIGN_DOWN() instead of a handcrafted computation
and move the computation to the place where it is needed.

Acked-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: David Hildenbrand <david@redhat.com>
Message-Id: <20190722134108.22151-5-david@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
(cherry picked from commit e6129b271b9dccca22c84870e313c315f2c70063)
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
hw/virtio/virtio-balloon.c