mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
Get rid of _t suffix
Some not so obvious bits, slirp and Xen were left alone for the time being. Signed-off-by: malc <av1474@comtv.ru>
This commit is contained in:
parent
bc6291a1b9
commit
99a0949b72
316 changed files with 3325 additions and 3332 deletions
|
@ -84,10 +84,10 @@ static void virtio_balloon_handle_output(VirtIODevice *vdev, VirtQueue *vq)
|
|||
|
||||
while (memcpy_from_iovector(&pfn, offset, 4,
|
||||
elem.out_sg, elem.out_num) == 4) {
|
||||
ram_addr_t pa;
|
||||
ram_addr_t addr;
|
||||
a_ram_addr pa;
|
||||
a_ram_addr addr;
|
||||
|
||||
pa = (ram_addr_t)ldl_p(&pfn) << VIRTIO_BALLOON_PFN_SHIFT;
|
||||
pa = (a_ram_addr)ldl_p(&pfn) << VIRTIO_BALLOON_PFN_SHIFT;
|
||||
offset += 4;
|
||||
|
||||
addr = cpu_get_physical_page_desc(pa);
|
||||
|
@ -129,7 +129,7 @@ static uint32_t virtio_balloon_get_features(VirtIODevice *vdev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static ram_addr_t virtio_balloon_to_target(void *opaque, ram_addr_t target)
|
||||
static a_ram_addr virtio_balloon_to_target(void *opaque, a_ram_addr target)
|
||||
{
|
||||
VirtIOBalloon *dev = opaque;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue