mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Thomas Gleixner <tglx@linutronix.de>
To: Darren Hart <dvhltc@us.ibm.com>
Cc: linux-kernel@vger.kernel.org, Ingo Molnar <mingo@elte.hu>
Subject: Re: [tip PATCH] futex: fix futex_wait_setup key handling
Date: Fri, 10 Apr 2009 18:33:38 +0200 (CEST)	[thread overview]
Message-ID: <alpine.LFD.2.00.0904101831380.21577@localhost.localdomain> (raw)
In-Reply-To: <20090410162324.12330.37348.stgit@Aeon>

On Fri, 10 Apr 2009, Darren Hart wrote:

> If the get_futex_key() call were to fail, the existing code would
> try and put_futex_key() prior to returning.  This patch makes sure
> we only put_futex_key() if get_futex_key() succeeded.
> 
> Please apply to -rt and to tip:/core/futexes.
> 
> Reported-by: Clark Williams <williams@redhat.com>
> Signed-off-by: Darren Hart <dvhltc@us.ibm.com>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Cc: Ingo Molnar <mingo@elte.hu>
> ---
> 
>  kernel/futex.c |    5 +++--
>  1 files changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/kernel/futex.c b/kernel/futex.c
> index 185c981..4357f06 100644
> --- a/kernel/futex.c
> +++ b/kernel/futex.c
> @@ -1657,7 +1657,7 @@ retry_private:
>  
>  		ret = get_user(uval, uaddr);
>  		if (ret)
> -			goto out;
> +			goto out_put_key;
>  
>  		if (!fshared)
>  			goto retry_private;
> @@ -1671,9 +1671,10 @@ retry_private:
>  		ret = -EWOULDBLOCK;
>  	}
>  
> -out:
> +out_put_key:
>  	if (ret)
>  		put_futex_key(fshared, &q->key);
> +out:
>  	return ret;

Yikes. Can we please convert the places which do "goto out;" to
"return ret;" ?

Thanks,

	tglx

      reply	other threads:[~2009-04-10 16:34 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-04-10 16:23 Darren Hart
2009-04-10 16:33 ` Thomas Gleixner [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=alpine.LFD.2.00.0904101831380.21577@localhost.localdomain \
    --to=tglx@linutronix.de \
    --cc=dvhltc@us.ibm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@elte.hu \
    /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®