From: Clemens Ladisch <clemens@ladisch.de>
To: Jassi Brar <jassisinghbrar@gmail.com>
Cc: alsa-devel@alsa-project.org, Takashi Iwai <tiwai@suse.de>,
Linux USB Mailing List <linux-usb@vger.kernel.org>,
linux-kernel@vger.kernel.org, Felipe Balbi <balbi@ti.com>
Subject: Re: [PATCH v2] sound: usb: mixer: increase control transfer timeout
Date: Mon, 29 Aug 2011 16:05:36 +0200 [thread overview]
Message-ID: <4E5B9CB0.4090708@ladisch.de> (raw)
In-Reply-To: <CABb+yY15qrszsbJSGGFra7mrVRO_oQPUhNT=U7TNpyoYikABPw@mail.gmail.com>
Jassi Brar wrote:
> On Mon, Aug 29, 2011 at 6:01 PM, Felipe Balbi <balbi@ti.com> wrote:
> > 100ms might not be enough for slower devices. Increasing
> > timeout to 1000ms doesn't seem like overkill.
> >
> > Signed-off-by: Felipe Balbi <balbi@ti.com>
> > ---
> >
> > Changes since v1:
> > . Increase all 100ms timeout to 1000ms
> >
> > sound/usb/mixer.c | 4 ++--
> > sound/usb/mixer_quirks.c | 10 +++++-----
> > 2 files changed, 7 insertions(+), 7 deletions(-)
The calls in mixer_quirks.c are device-specific and known to work, so
none of them actually require a longer timeout. However, increasing
their timeout doesn't hurt either, and ...
> > + buf, val_len, 1000) >= val_len) {
> > + buf, val_len, 1000) >= 0) {
> > + !value, 0, NULL, 0, 1000);
> > + !value, 0, NULL, 0, 1000);
> > + value, index + 2, NULL, 0, 1000);
> > + jacks[i].unitid << 8, buf, 3, 1000);
> > + 50, 0, &new_status, 1, 1000);
>
> How about also converting to use a local define for timeout value ?
... now that _all_ calls to snd_usb_ctl_msg use the same timeout value,
we could just as well drop this parameter.
Regards,
Clemens
WARNING: multiple messages have this Message-ID (diff)
From: Clemens Ladisch <clemens@ladisch.de>
To: Jassi Brar <jassisinghbrar@gmail.com>
Cc: Felipe Balbi <balbi@ti.com>, Jaroslav Kysela <perex@perex.cz>,
Takashi Iwai <tiwai@suse.de>,
alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org,
Linux USB Mailing List <linux-usb@vger.kernel.org>
Subject: Re: [PATCH v2] sound: usb: mixer: increase control transfer timeout
Date: Mon, 29 Aug 2011 16:05:36 +0200 [thread overview]
Message-ID: <4E5B9CB0.4090708@ladisch.de> (raw)
In-Reply-To: <CABb+yY15qrszsbJSGGFra7mrVRO_oQPUhNT=U7TNpyoYikABPw@mail.gmail.com>
Jassi Brar wrote:
> On Mon, Aug 29, 2011 at 6:01 PM, Felipe Balbi <balbi@ti.com> wrote:
> > 100ms might not be enough for slower devices. Increasing
> > timeout to 1000ms doesn't seem like overkill.
> >
> > Signed-off-by: Felipe Balbi <balbi@ti.com>
> > ---
> >
> > Changes since v1:
> > . Increase all 100ms timeout to 1000ms
> >
> > sound/usb/mixer.c | 4 ++--
> > sound/usb/mixer_quirks.c | 10 +++++-----
> > 2 files changed, 7 insertions(+), 7 deletions(-)
The calls in mixer_quirks.c are device-specific and known to work, so
none of them actually require a longer timeout. However, increasing
their timeout doesn't hurt either, and ...
> > + buf, val_len, 1000) >= val_len) {
> > + buf, val_len, 1000) >= 0) {
> > + !value, 0, NULL, 0, 1000);
> > + !value, 0, NULL, 0, 1000);
> > + value, index + 2, NULL, 0, 1000);
> > + jacks[i].unitid << 8, buf, 3, 1000);
> > + 50, 0, &new_status, 1, 1000);
>
> How about also converting to use a local define for timeout value ?
... now that _all_ calls to snd_usb_ctl_msg use the same timeout value,
we could just as well drop this parameter.
Regards,
Clemens
next prev parent reply other threads:[~2011-08-29 14:05 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-29 11:10 [PATCH] sound: usb: mixer: increase control transfer timeout Felipe Balbi
2011-08-29 11:10 ` Felipe Balbi
[not found] ` <1314616226-15942-1-git-send-email-balbi-l0cyMroinI0@public.gmane.org>
2011-08-29 11:16 ` Sebastian Andrzej Siewior
2011-08-29 11:16 ` Sebastian Andrzej Siewior
[not found] ` <20110829111607.GB21556-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>
2011-08-29 11:19 ` Felipe Balbi
2011-08-29 11:19 ` Felipe Balbi
2011-08-29 11:58 ` Clemens Ladisch
2011-08-29 11:58 ` Clemens Ladisch
[not found] ` <4E5B7EE7.6070103-P6GI/4k7KOmELgA04lAiVw@public.gmane.org>
2011-08-29 12:23 ` Felipe Balbi
2011-08-29 12:23 ` Felipe Balbi
2011-08-29 12:31 ` [PATCH v2] " Felipe Balbi
2011-08-29 12:37 ` Jassi Brar
2011-08-29 12:37 ` Jassi Brar
[not found] ` <CABb+yY15qrszsbJSGGFra7mrVRO_oQPUhNT=U7TNpyoYikABPw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2011-08-29 13:00 ` Felipe Balbi
2011-08-29 13:00 ` Felipe Balbi
2011-08-29 13:34 ` Jassi Brar
2011-08-29 13:34 ` Jassi Brar
2011-08-29 14:05 ` Clemens Ladisch [this message]
2011-08-29 14:05 ` Clemens Ladisch
[not found] ` <4E5B9CB0.4090708-P6GI/4k7KOmELgA04lAiVw@public.gmane.org>
2011-08-29 14:22 ` Jassi Brar
2011-08-29 14:22 ` Jassi Brar
2011-09-12 10:57 ` Takashi Iwai
2011-09-12 10:57 ` Takashi Iwai
2011-09-16 6:25 ` [PATCH] " Takashi Iwai
2011-09-16 6:25 ` Takashi Iwai
2011-09-26 8:49 ` Felipe Balbi
2011-09-27 6:52 ` Clemens Ladisch
2011-09-27 6:52 ` Clemens Ladisch
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4E5B9CB0.4090708@ladisch.de \
--to=clemens@ladisch.de \
--cc=alsa-devel@alsa-project.org \
--cc=balbi@ti.com \
--cc=jassisinghbrar@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=tiwai@suse.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.