Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1291302

Re: [PATCH resend ] tty/n_gsm.c: use gsm->num to remove mux itself from gsm_mux[]

From One Thousand Gnomes <gnomes@lxorguk.ukuu.org.uk>
Newsgroups linux.kernel
Subject Re: [PATCH resend ] tty/n_gsm.c: use gsm->num to remove mux itself from gsm_mux[]
Date 2015-12-14 16:50 +0100
Message-ID <qFDxV-83l-33@gated-at.bofh.it> (permalink)
References <qFvqF-2Qk-5@gated-at.bofh.it>
Organization Intel Corporation

Show all headers | View raw


On Mon, 14 Dec 2015 15:08:03 +0800
Pan Xinhui <xinhui.pan@linux.vnet.ibm.com> wrote:

> From: Pan Xinhui <xinhui.pan@linux.vnet.ibm.com>
> 
> There is one filed gsm->num to store mux's index of gsm_mux[]. So use
> gsm->num to remove itself from gsm_mux[] instead of the for-loop
> traverse in gsm_cleanup_mux().
> 
> Signed-off-by: Pan Xinhui <xinhui.pan@linux.vnet.ibm.com>
> ---
>  drivers/tty/n_gsm.c |   14 +++++---------
>  1 files changed, 5 insertions(+), 9 deletions(-)
> 
> diff --git a/drivers/tty/n_gsm.c b/drivers/tty/n_gsm.c
> index 9aff371..cf28054 100644
> --- a/drivers/tty/n_gsm.c
> +++ b/drivers/tty/n_gsm.c
> @@ -2037,18 +2037,14 @@ static void gsm_cleanup_mux(struct gsm_mux *gsm)
>  
>  	gsm->dead = 1;
>  
> -	spin_lock(&gsm_mux_lock);
> -	for (i = 0; i < MAX_MUX; i++) {
> -		if (gsm_mux[i] == gsm) {
> -			gsm_mux[i] = NULL;
> -			break;
> -		}
> -	}
> -	spin_unlock(&gsm_mux_lock);
>  	/* open failed before registering => nothing to do */
> -	if (i == MAX_MUX)
> +	if (gsm_mux[gsm->num] != gsm)
>  		return;
>  
> +	spin_lock(&gsm_mux_lock);
> +	gsm_mux[gsm->num] = NULL;
> +	spin_unlock(&gsm_mux_lock);

Its a highly theoretical and probably impossible corner case but I can't
help thinking the lock should be held for the if () as well as NULLing
this out.

Alan
--
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/

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[PATCH resend ] tty/n_gsm.c: use gsm->num to remove mux itself from  gsm_mux[] Pan Xinhui <xinhui.pan@linux.vnet.ibm.com> - 2015-12-14 08:10 +0100
  Re: [PATCH resend ] tty/n_gsm.c: use gsm->num to remove mux itself  from gsm_mux[] One Thousand Gnomes <gnomes@lxorguk.ukuu.org.uk> - 2015-12-14 16:50 +0100

csiph-web