mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: Kulikov Vasiliy <segooon@gmail.com>
Cc: kernel-janitors@vger.kernel.org, Jaroslav Kysela <perex@perex.cz>,
	Tejun Heo <tj@kernel.org>,
	alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 07/10] ALSA: sb: check get_user() return value
Date: Thu, 29 Jul 2010 12:31:00 +0200	[thread overview]
Message-ID: <s5h62zytw9n.wl%tiwai@suse.de> (raw)
In-Reply-To: <1280335251-23385-1-git-send-email-segooon@gmail.com>

At Wed, 28 Jul 2010 20:40:51 +0400,
Kulikov Vasiliy wrote:
> 
> get_user() may fail, if so return -EFAULT.
> 
> Signed-off-by: Kulikov Vasiliy <segooon@gmail.com>

Thanks, applied this one (with one additional fix for get_user() there).


Takashi

> ---
>  sound/isa/sb/emu8000_pcm.c |    6 ++++--
>  1 files changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/sound/isa/sb/emu8000_pcm.c b/sound/isa/sb/emu8000_pcm.c
> index ccedbfe..ae6fa9f 100644
> --- a/sound/isa/sb/emu8000_pcm.c
> +++ b/sound/isa/sb/emu8000_pcm.c
> @@ -433,7 +433,8 @@ static int emu8k_transfer_block(struct snd_emu8000 *emu, int offset, unsigned sh
>  	while (count > 0) {
>  		unsigned short sval;
>  		CHECK_SCHEDULER();
> -		get_user(sval, buf);
> +		if (get_user(sval, buf))
> +			return -EFAULT;
>  		EMU8000_SMLD_WRITE(emu, sval);
>  		buf++;
>  		count--;
> @@ -525,7 +526,8 @@ static int emu8k_pcm_copy(struct snd_pcm_substream *subs,
>  	while (count-- > 0) {
>  		unsigned short sval;
>  		CHECK_SCHEDULER();
> -		get_user(sval, buf);
> +		if (get_user(sval, buf))
> +			return -EFAULT;
>  		EMU8000_SMLD_WRITE(emu, sval);
>  		buf++;
>  		if (rec->voices > 1) {
> -- 
> 1.7.0.4
> 

      reply	other threads:[~2010-07-29 10:31 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-07-28 16:40 Kulikov Vasiliy
2010-07-29 10:31 ` Takashi Iwai [this message]

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=s5h62zytw9n.wl%tiwai@suse.de \
    --to=tiwai@suse.de \
    --cc=alsa-devel@alsa-project.org \
    --cc=kernel-janitors@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=perex@perex.cz \
    --cc=segooon@gmail.com \
    --cc=tj@kernel.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®