Browse Source

[ALSA] rawmidi: adjust runtime->avail when changing output buffer size

Modules: RawMidi Midlevel

When the output buffer size is changed, runtime->avail must be
adjusted to the new size; otherwise, draining of a bigger buffer would
appear to fail because avail does not reach buffer_size.

Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Clemens Ladisch 19 years ago
parent
commit
1b98ea4791
1 changed files with 1 additions and 0 deletions
  1. 1 0
      sound/core/rawmidi.c

+ 1 - 0
sound/core/rawmidi.c

@@ -635,6 +635,7 @@ int snd_rawmidi_output_params(struct snd_rawmidi_substream *substream,
 		kfree(runtime->buffer);
 		runtime->buffer = newbuf;
 		runtime->buffer_size = params->buffer_size;
+		runtime->avail = runtime->buffer_size;
 	}
 	runtime->avail_min = params->avail_min;
 	substream->active_sensing = !params->no_active_sensing;