mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: Roel Kluin <12o3l@tiscali.nl>
Cc: lkml <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] OSS: dmabuf: fix negative DMAbuf_get_buffer_pointer() check
Date: Fri, 18 Apr 2008 12:28:06 +0200	[thread overview]
Message-ID: <s5hve2fe9u1.wl%tiwai@suse.de> (raw)
In-Reply-To: <48079941.3070209@tiscali.nl>

At Thu, 17 Apr 2008 20:38:57 +0200,
Roel Kluin wrote:
> 
> Too late for OSS?
> ---
> Since unsigned active_offs < 0 is even true when DMAbuf_get_buffer_pointer()
> returns negative
> 
> Signed-off-by: Roel Kluin <12o3l@tiscali.nl>

I applied it to my git tree.  Thanks.


Takashi

> ---
> diff --git a/sound/oss/dmabuf.c b/sound/oss/dmabuf.c
> index eaf6997..1e90d76 100644
> --- a/sound/oss/dmabuf.c
> +++ b/sound/oss/dmabuf.c
> @@ -795,9 +795,9 @@ static int find_output_space(int dev, char **buf, int *size)
>  #ifdef BE_CONSERVATIVE
>  	active_offs = dmap->byte_counter + dmap->qhead * dmap->fragment_size;
>  #else
> -	active_offs = DMAbuf_get_buffer_pointer(dev, dmap, DMODE_OUTPUT);
> +	active_offs = max(DMAbuf_get_buffer_pointer(dev, dmap, DMODE_OUTPUT), 0);
>  	/* Check for pointer wrapping situation */
> -	if (active_offs < 0 || active_offs >= dmap->bytes_in_use)
> +	if (active_offs >= dmap->bytes_in_use)
>  		active_offs = 0;
>  	active_offs += dmap->byte_counter;
>  #endif
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
> 

      reply	other threads:[~2008-04-18 10:28 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-04-17 18:38 Roel Kluin
2008-04-18 10:28 ` 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=s5hve2fe9u1.wl%tiwai@suse.de \
    --to=tiwai@suse.de \
    --cc=12o3l@tiscali.nl \
    --cc=linux-kernel@vger.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®