qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] spice: (32 bit only) fix surface cmd tracking d


From: Hans de Goede
Subject: Re: [Qemu-devel] [PATCH] spice: (32 bit only) fix surface cmd tracking destruction
Date: Wed, 13 Mar 2013 17:16:36 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130219 Thunderbird/17.0.3

Looks good,

Acked-by: Hans de Goede <address@hidden>

On 03/13/2013 04:58 PM, Alon Levy wrote:
No change for 64 bit arches, but for 32 bit previously we zeroed half
the surfaces cmd array, instead of all of it.

Signed-off-by: Alon Levy <address@hidden>
---
  hw/qxl.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/qxl.c b/hw/qxl.c
index ef69348..4cbab45 100644
--- a/hw/qxl.c
+++ b/hw/qxl.c
@@ -226,7 +226,7 @@ static void 
qxl_spice_destroy_surfaces_complete(PCIQXLDevice *qxl)
      trace_qxl_spice_destroy_surfaces_complete(qxl->id);
      qemu_mutex_lock(&qxl->track_lock);
      memset(qxl->guest_surfaces.cmds, 0,
-           sizeof(qxl->guest_surfaces.cmds) * qxl->ssd.num_surfaces);
+           sizeof(qxl->guest_surfaces.cmds[0]) * qxl->ssd.num_surfaces);
      qxl->guest_surfaces.count = 0;
      qemu_mutex_unlock(&qxl->track_lock);
  }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]