* [PATCH] tty/n_gsm.c: fix false positive WARN_ON and do some codes improvement
@ 2015-11-25 11:18 xinhui
2015-11-25 11:27 ` xinhui
2015-12-14 18:55 ` Greg Kroah-Hartman
0 siblings, 2 replies; 4+ messages in thread
From: xinhui @ 2015-11-25 11:18 UTC (permalink / raw)
To: linux-kernel; +Cc: Greg Kroah-Hartman, Jiri Slaby, dvyukov, yanmin_zhang
From: xinhui <xinhui@linux.vnet.ibm.com>
If gsm driver fails to activate one mux, and this mux is not stored in
gsm_mux[], there would be a warning in gsm_cleanup_mux(). Actually this
is a legal case. So just do a simple check instead of WARN_ON.
There is one filed gsm->num to store its index of gsm_mux[]. So use
gsm->num to remove itself from gsm_mux[] instead of the for-loop
traverse.
Reported-by: Dmitry Vyukov <dvyukov@google.com>
Fixes: 5a64096700dc ("tty/n_gsm.c: fix a memory leak in gsmld_open")
Signed-off-by: Pan Xinhui <xinhui.pan@linux.vnet.ibm.com>
---
drivers/tty/n_gsm.c | 12 +++++-------
1 files changed, 5 insertions(+), 7 deletions(-)
diff --git a/drivers/tty/n_gsm.c b/drivers/tty/n_gsm.c
index c3fe026..56377e1 100644
--- a/drivers/tty/n_gsm.c
+++ b/drivers/tty/n_gsm.c
@@ -2037,15 +2037,13 @@ static void gsm_cleanup_mux(struct gsm_mux *gsm)
gsm->dead = 1;
+ /* open failed before registering => nothing to do*/
+ if (gsm_mux[gsm->num] != gsm)
+ return;
+
spin_lock(&gsm_mux_lock);
- for (i = 0; i < MAX_MUX; i++) {
- if (gsm_mux[i] == gsm) {
- gsm_mux[i] = NULL;
- break;
- }
- }
+ gsm_mux[gsm->num] = NULL;
spin_unlock(&gsm_mux_lock);
- WARN_ON(i == MAX_MUX);
/* In theory disconnecting DLCI 0 is sufficient but for some
modems this is apparently not the case. */
--
1.7.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] tty/n_gsm.c: fix false positive WARN_ON and do some codes improvement
2015-11-25 11:18 [PATCH] tty/n_gsm.c: fix false positive WARN_ON and do some codes improvement xinhui
@ 2015-11-25 11:27 ` xinhui
2015-12-14 18:55 ` Greg Kroah-Hartman
1 sibling, 0 replies; 4+ messages in thread
From: xinhui @ 2015-11-25 11:27 UTC (permalink / raw)
To: xinhui, linux-kernel
Cc: Greg Kroah-Hartman, Jiri Slaby, dvyukov, yanmin_zhang
Hi, Jiri
I made this patch based on your idea. Any modification is welcome. :)
PS. "xinhui" or "xinhui.pan"@linux.vnet.ibm.com are same mail account, both of them are alias.
thanks
xinhui
On 2015/11/25 19:18, xinhui wrote:
> From: xinhui <xinhui@linux.vnet.ibm.com>
>
> If gsm driver fails to activate one mux, and this mux is not stored in
> gsm_mux[], there would be a warning in gsm_cleanup_mux(). Actually this
> is a legal case. So just do a simple check instead of WARN_ON.
>
> There is one filed gsm->num to store its index of gsm_mux[]. So use
> gsm->num to remove itself from gsm_mux[] instead of the for-loop
> traverse.
>
> Reported-by: Dmitry Vyukov <dvyukov@google.com>
> Fixes: 5a64096700dc ("tty/n_gsm.c: fix a memory leak in gsmld_open")
> Signed-off-by: Pan Xinhui <xinhui.pan@linux.vnet.ibm.com>
> ---
> drivers/tty/n_gsm.c | 12 +++++-------
> 1 files changed, 5 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/tty/n_gsm.c b/drivers/tty/n_gsm.c
> index c3fe026..56377e1 100644
> --- a/drivers/tty/n_gsm.c
> +++ b/drivers/tty/n_gsm.c
> @@ -2037,15 +2037,13 @@ static void gsm_cleanup_mux(struct gsm_mux *gsm)
>
> gsm->dead = 1;
>
> + /* open failed before registering => nothing to do*/
> + if (gsm_mux[gsm->num] != gsm)
> + return;
> +
> spin_lock(&gsm_mux_lock);
> - for (i = 0; i < MAX_MUX; i++) {
> - if (gsm_mux[i] == gsm) {
> - gsm_mux[i] = NULL;
> - break;
> - }
> - }
> + gsm_mux[gsm->num] = NULL;
> spin_unlock(&gsm_mux_lock);
> - WARN_ON(i == MAX_MUX);
>
> /* In theory disconnecting DLCI 0 is sufficient but for some
> modems this is apparently not the case. */
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] tty/n_gsm.c: fix false positive WARN_ON and do some codes improvement
2015-11-25 11:18 [PATCH] tty/n_gsm.c: fix false positive WARN_ON and do some codes improvement xinhui
2015-11-25 11:27 ` xinhui
@ 2015-12-14 18:55 ` Greg Kroah-Hartman
2015-12-15 5:43 ` Pan Xinhui
1 sibling, 1 reply; 4+ messages in thread
From: Greg Kroah-Hartman @ 2015-12-14 18:55 UTC (permalink / raw)
To: xinhui; +Cc: linux-kernel, Jiri Slaby, dvyukov, yanmin_zhang
On Wed, Nov 25, 2015 at 07:18:37PM +0800, xinhui wrote:
> From: xinhui <xinhui@linux.vnet.ibm.com>
>
> If gsm driver fails to activate one mux, and this mux is not stored in
> gsm_mux[], there would be a warning in gsm_cleanup_mux(). Actually this
> is a legal case. So just do a simple check instead of WARN_ON.
>
> There is one filed gsm->num to store its index of gsm_mux[]. So use
> gsm->num to remove itself from gsm_mux[] instead of the for-loop
> traverse.
>
> Reported-by: Dmitry Vyukov <dvyukov@google.com>
> Fixes: 5a64096700dc ("tty/n_gsm.c: fix a memory leak in gsmld_open")
> Signed-off-by: Pan Xinhui <xinhui.pan@linux.vnet.ibm.com>
the signed-off-by name has to match your from: name :(
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] tty/n_gsm.c: fix false positive WARN_ON and do some codes improvement
2015-12-14 18:55 ` Greg Kroah-Hartman
@ 2015-12-15 5:43 ` Pan Xinhui
0 siblings, 0 replies; 4+ messages in thread
From: Pan Xinhui @ 2015-12-15 5:43 UTC (permalink / raw)
To: Greg Kroah-Hartman; +Cc: linux-kernel, Jiri Slaby, dvyukov, yanmin_zhang
Hi, Greg
This patch is dropped, I have created another patch based on Jiri' patch.
On 2015/12/15 02:55, Greg Kroah-Hartman wrote:
> On Wed, Nov 25, 2015 at 07:18:37PM +0800, xinhui wrote:
>> From: xinhui <xinhui@linux.vnet.ibm.com>
>>
>> If gsm driver fails to activate one mux, and this mux is not stored in
>> gsm_mux[], there would be a warning in gsm_cleanup_mux(). Actually this
>> is a legal case. So just do a simple check instead of WARN_ON.
>>
>> There is one filed gsm->num to store its index of gsm_mux[]. So use
>> gsm->num to remove itself from gsm_mux[] instead of the for-loop
>> traverse.
>>
>> Reported-by: Dmitry Vyukov <dvyukov@google.com>
>> Fixes: 5a64096700dc ("tty/n_gsm.c: fix a memory leak in gsmld_open")
>> Signed-off-by: Pan Xinhui <xinhui.pan@linux.vnet.ibm.com>
>
> the signed-off-by name has to match your from: name :(
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-12-15 5:43 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-25 11:18 [PATCH] tty/n_gsm.c: fix false positive WARN_ON and do some codes improvement xinhui
2015-11-25 11:27 ` xinhui
2015-12-14 18:55 ` Greg Kroah-Hartman
2015-12-15 5:43 ` Pan Xinhui
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox