Hello, An interrupted syscall is not an error when returning from poll() at line 240 of audio/pcm_bluetooth.c. So no need to freak out. Here is a patch to fix this. Cheers, Colin DIDIER --- a/audio/pcm_bluetooth.c 2010-08-25 10:08:37.000000000 +0200 +++ b/audio/pcm_bluetooth.c 2010-08-25 10:08:59.000000000 +0200 @@ -237,9 +237,11 @@ ret = poll(fds, 2, poll_timeout); if (ret < 0) { - SNDERR("poll error: %s (%d)", strerror(errno), errno); - if (errno != EINTR) + if (errno != EINTR) { + SNDERR("poll error: %s (%d)", strerror(errno), + errno); break; + } } else if (ret > 0) { ret = (fds[0].revents) ? 0 : 1; SNDERR("poll fd %d revents %d", ret, fds[ret].revents); -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html