diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2020-01-22 03:06:47 -0500 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2020-01-23 02:08:15 -0500 |
commit | 8347505640238d3b80f9bb7510fdc1bb574bad19 (patch) | |
tree | be1526d13afbe482e95130be37e43cc470376411 /hw/virtio/vhost.c | |
parent | aefcaf9d1b3ebb30981627bd08f595211a648a62 (diff) | |
download | qemu-8347505640238d3b80f9bb7510fdc1bb574bad19.zip qemu-8347505640238d3b80f9bb7510fdc1bb574bad19.tar.gz qemu-8347505640238d3b80f9bb7510fdc1bb574bad19.tar.bz2 |
vhost: coding style fix
Drop a trailing whitespace. Make line shorter.
Fixes: 76525114736e8 ("vhost: Only align sections for vhost-user")
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/virtio/vhost.c')
-rw-r--r-- | hw/virtio/vhost.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/virtio/vhost.c b/hw/virtio/vhost.c index 25fd469..9edfadc 100644 --- a/hw/virtio/vhost.c +++ b/hw/virtio/vhost.c @@ -551,7 +551,7 @@ static void vhost_region_add_section(struct vhost_dev *dev, trace_vhost_region_add_section(section->mr->name, mrs_gpa, mrs_size, mrs_host); - if (dev->vhost_ops->backend_type == VHOST_BACKEND_TYPE_USER) { + if (dev->vhost_ops->backend_type == VHOST_BACKEND_TYPE_USER) { /* Round the section to it's page size */ /* First align the start down to a page boundary */ size_t mrs_page = qemu_ram_pagesize(mrs_rb); @@ -566,8 +566,8 @@ static void vhost_region_add_section(struct vhost_dev *dev, if (alignage) { mrs_size += mrs_page - alignage; } - trace_vhost_region_add_section_aligned(section->mr->name, mrs_gpa, mrs_size, - mrs_host); + trace_vhost_region_add_section_aligned(section->mr->name, mrs_gpa, + mrs_size, mrs_host); } if (dev->n_tmp_sections) { |