[Spice-devel] [spice (stable)] sound: do not change volume or mute state on migration

Victor Toso victortoso at redhat.com
Mon Feb 27 15:13:08 UTC 2017


From: Victor Toso <me at victortoso.com>

On migration, we are resending the current volume and mute state in
the Guest. If the client user has change its master volume in the
guest it might change the client application volume too and the volume
jump (increase or decrease) might happen on migration.

This patch is a complement of f10de4bc084fcc - Here, volume was
jumping regardless of guest's volume value.

Resolves: rhbz#1425443
Signed-off-by: Victor Toso <victortoso at redhat.com>
---
 server/snd_worker.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/server/snd_worker.c b/server/snd_worker.c
index 1b9bad5..343a69e 100644
--- a/server/snd_worker.c
+++ b/server/snd_worker.c
@@ -560,6 +560,12 @@ static int snd_send_volume(SndChannel *channel, SpiceVolumeState *st, int msg)
     SpiceMsgAudioVolume *vol;
     uint8_t c;
 
+    /* Never changes volume or mute state on migration */
+    if (red_client_during_migrate_at_target(channel->channel_client->client)) {
+        spice_debug("Do not change volume during migration");
+        return FALSE;
+    }
+
     vol = alloca(sizeof (SpiceMsgAudioVolume) +
                  st->volume_nchannels * sizeof (uint16_t));
     if (!snd_reset_send_data(channel, msg)) {
@@ -591,6 +597,12 @@ static int snd_send_mute(SndChannel *channel, SpiceVolumeState *st, int msg)
 {
     SpiceMsgAudioMute mute;
 
+    /* Never changes volume or mute state on migration */
+    if (red_client_during_migrate_at_target(channel->channel_client->client)) {
+        spice_debug("Do not change mute during migration");
+        return FALSE;
+    }
+
     if (!snd_reset_send_data(channel, msg)) {
         return FALSE;
     }
-- 
2.9.3



More information about the Spice-devel mailing list