Commit 53e946cb authored by Wei Wang's avatar Wei Wang Committed by Michael S. Tsirkin
Browse files

virtio-balloon: improve update_balloon_size_func



There is no need to update the balloon actual register when there is no
ballooning request. This patch avoids update_balloon_size when diff is 0.

Signed-off-by: default avatarWei Wang <wei.w.wang@intel.com>
Reviewed-by: default avatarCornelia Huck <cohuck@redhat.com>
Reviewed-by: default avatarHalil Pasic <pasic@linux.ibm.com>
Signed-off-by: default avatarMichael S. Tsirkin <mst@redhat.com>
parent fd1068e1
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -457,9 +457,12 @@ static void update_balloon_size_func(struct work_struct *work)
			  update_balloon_size_work);
	diff = towards_target(vb);

	if (!diff)
		return;

	if (diff > 0)
		diff -= fill_balloon(vb, diff);
	else if (diff < 0)
	else
		diff += leak_balloon(vb, -diff);
	update_balloon_size(vb);