提交 53e946cb 编写于 作者: W Wei Wang 提交者: Michael S. Tsirkin

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: NWei Wang <wei.w.wang@intel.com>
Reviewed-by: NCornelia Huck <cohuck@redhat.com>
Reviewed-by: NHalil Pasic <pasic@linux.ibm.com>
Signed-off-by: NMichael S. Tsirkin <mst@redhat.com>
上级 fd1068e1
......@@ -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);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册