All of lore.kernel.org
 help / color / mirror / Atom feed
* via82xx calc_linear_pos bug
@ 2004-07-23 15:47 Timo Hirvonen
  2004-07-27 13:39 ` Takashi Iwai
  0 siblings, 1 reply; 4+ messages in thread
From: Timo Hirvonen @ 2004-07-23 15:47 UTC (permalink / raw)
  To: alsa-devel

[-- Attachment #1: Type: text/plain, Size: 689 bytes --]

After playing about 10-20 seconds snd_pcm_status_get_avail returns too
large value (1972895704, 1972895664 ..).

Tested kernels:

	2.6.7-mm1	works
	2.6.7-mm2	broken
	2.6.8-rc1-mm1	broken

lspci -v 
0000:00:11.5 Multimedia audio controller: VIA Technologies, Inc. VT8233/A/8235 AC97 Audio Controller (rev 50)
        Subsystem: VIA Technologies, Inc.: Unknown device 4161
        Flags: medium devsel, IRQ 22
        I/O ports at e800
        Capabilities: [c0] Power Management version 2

Attached patch (against 2.6.8-rc1-mm1) changes calc_linear_pos to the
state it was in 2.6.7-mm1.

I don't understand the code so this might not be right solution to this
problem but it seems to work.

[-- Attachment #2: via82xx-calc_linear_pos.patch --]
[-- Type: text/x-patch, Size: 630 bytes --]

--- sound/pci/via82xx.c.orig	2004-07-23 16:16:23.000000000 +0300
+++ sound/pci/via82xx.c	2004-07-23 16:16:40.000000000 +0300
@@ -715,11 +715,7 @@ static inline unsigned int calc_linear_p
 	unsigned int size, res;
 
 	size = viadev->idx_table[idx].size;
-	/* FIXME: is this always true? */
-	if (count)
-		res = viadev->idx_table[idx].offset + size - count;
-	else
-		res = viadev->idx_table[idx].offset;
+	res = viadev->idx_table[idx].offset + size - count;
 
 	/* check the validity of the calculated position */
 	if (size < count || (res < viadev->lastpos && (res >= viadev->bufsize2 || viadev->lastpos < viadev->bufsize2))) {

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2004-07-27 15:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-07-23 15:47 via82xx calc_linear_pos bug Timo Hirvonen
2004-07-27 13:39 ` Takashi Iwai
2004-07-27 14:53   ` Timo Hirvonen
2004-07-27 15:42     ` Takashi Iwai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.