From: "Bernard, f6bvp" <f6bvp@free.fr>
To: Jarek Poplawski <jarkao2@gmail.com>
Cc: Linux Netdev List <netdev@vger.kernel.org>,
Ralf Baechle DL5RB <ralf@linux-mips.org>
Subject: Re: ax25 rose Re: kernel panic linux-2.6.27-rc7
Date: Sat, 04 Oct 2008 20:30:26 +0200 [thread overview]
Message-ID: <1223145027.23358.20.camel@f6bvp-5> (raw)
In-Reply-To: <20081003074351.GB5235@ff.dom.local>
Jarek,
Following your indications I did it both ways !
Without commit 30902dc3cb0ea1cfc7ac2b17bcf478ff98420d74 patch
kernel-2.6.27-rc7 is no longer subject to kernel panic when running ROSE
applications.
Reversely, when this patch is applied to rose-patched 2.6.25.10 kernel,
this one reboots a few seconds after ROSE application are started.
Otherwise it is very stable.
I checked about three times this behaviour for both kernels with and
without the incriminated patch.
This confirms without doubt that it is responsible of observed kernel
panic.
Is there however a possibility to find a solution to cure the problem
this patch was dedicated to ?
Bernard
Le vendredi 03 octobre 2008 à 07:43 +0000, Jarek Poplawski a écrit :
> On Fri, Oct 03, 2008 at 07:34:18AM +0000, Jarek Poplawski wrote:
> > On 02-10-2008 21:48, Jarek Poplawski wrote:
> > > On Thu, Oct 02, 2008 at 08:20:18PM +0200, Bernard, f6bvp wrote:
> > ...
> > >> Although I did not change anything, and contrarily to my previous
> > >> observation, the system instability as shown above occurs
> > >> systematically.
> > >> There was no problem with Kernel 2.6.25-10 I was using before (with
> > >> patches for AX25 and ROSE that are now included in 2.6.27-rc7).
> >
> > Then it could be useful to try our luck with reverting some other
> > "suspicious" changes added in the meantime. My first candidate is
> > attached below. (So you could test this with vanilla 2.6.27-rc7 or
> > later, with or without any of the patches in this thread, and the
> > patch below reverted.)
>
> Hmm... Of course, you could do this other way as well: 2.6.25-10 etc.
> with this patch applied.
>
> Jarek P.
>
> >
> > >> I did not try 2.6.26 on this machine, thus I cannot tell if the bug was
> > >> already present.
> > >> Would it be worth to test 2.6.26 ?
> > >
> > > Yes, but only if you think you can do it safely.
> >
> > This is still valid (it can wait).
> >
> > Jarek P.
> >
> > -------->
> >
> > commit 30902dc3cb0ea1cfc7ac2b17bcf478ff98420d74
> > Author: David S. Miller <davem@davemloft.net>
> > Date: Tue Jun 17 21:26:37 2008 -0700
> >
> > ax25: Fix std timer socket destroy handling.
> >
> > Tihomir Heidelberg - 9a4gl, reports:
> >
> > --------------------
> > I would like to direct you attention to one problem existing in ax.25
> > kernel since 2.4. If listening socket is closed and its SKB queue is
> > released but those sockets get weird. Those "unAccepted()" sockets
> > should be destroyed in ax25_std_heartbeat_expiry, but it will not
> > happen. And there is also a note about that in ax25_std_timer.c:
> > /* Magic here: If we listen() and a new link dies before it
> > is accepted() it isn't 'dead' so doesn't get removed. */
> >
> > This issue cause ax25d to stop accepting new connections and I had to
> > restarted ax25d approximately each day and my services were unavailable.
> > Also netstat -n -l shows invalid source and device for those listening
> > sockets. It is strange why ax25d's listening socket get weird because of
> > this issue, but definitely when I solved this bug I do not have problems
> > with ax25d anymore and my ax25d can run for months without problems.
> > --------------------
> >
> > Actually as far as I can see, this problem is even in releases
> > as far back as 2.2.x as well.
> >
> > It seems senseless to special case this test on TCP_LISTEN state.
> > Anything still stuck in state 0 has no external references and
> > we can just simply kill it off directly.
> >
> > Signed-off-by: David S. Miller <davem@davemloft.net>
> >
> > diff --git a/net/ax25/ax25_std_timer.c b/net/ax25/ax25_std_timer.c
> > index 96e4b92..cdc7e75 100644
> > --- a/net/ax25/ax25_std_timer.c
> > +++ b/net/ax25/ax25_std_timer.c
> > @@ -39,11 +39,9 @@ void ax25_std_heartbeat_expiry(ax25_cb *ax25)
> >
> > switch (ax25->state) {
> > case AX25_STATE_0:
> > - /* Magic here: If we listen() and a new link dies before it
> > - is accepted() it isn't 'dead' so doesn't get removed. */
> > - if (!sk || sock_flag(sk, SOCK_DESTROY) ||
> > - (sk->sk_state == TCP_LISTEN &&
> > - sock_flag(sk, SOCK_DEAD))) {
> > + if (!sk ||
> > + sock_flag(sk, SOCK_DESTROY) ||
> > + sock_flag(sk, SOCK_DEAD)) {
> > if (sk) {
> > sock_hold(sk);
> > ax25_destroy_socket(ax25);
>
next prev parent reply other threads:[~2008-10-04 18:29 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-09-28 12:49 kernel panic linux-2.6.27-rc7 Bernard Pidoux F6BVP
2008-09-29 12:30 ` ax25 rose " Jarek Poplawski
2008-09-30 9:40 ` Bernard Pidoux F6BVP
2008-09-30 10:10 ` Jarek Poplawski
2008-09-30 11:17 ` Jarek Poplawski
2008-09-30 20:59 ` Bernard Pidoux F6BVP
2008-09-30 21:30 ` Jarek Poplawski
2008-09-30 22:49 ` Bernard Pidoux F6BVP
2008-10-01 5:58 ` Jarek Poplawski
2008-10-02 18:20 ` Bernard, f6bvp
2008-10-02 19:48 ` Jarek Poplawski
2008-10-03 7:34 ` Jarek Poplawski
2008-10-03 7:43 ` Jarek Poplawski
2008-10-04 18:30 ` Bernard, f6bvp [this message]
2008-10-04 19:11 ` Jarek Poplawski
2008-10-04 20:09 ` Jarek Poplawski
2008-10-05 15:40 ` Bernard, f6bvp
2008-10-05 20:33 ` Jarek Poplawski
2008-10-05 21:09 ` Jarek Poplawski
2008-10-05 18:31 ` Bernard, f6bvp
2008-10-05 20:40 ` Jarek Poplawski
2008-10-05 21:18 ` Bernard, f6bvp
2008-10-05 22:05 ` [PATCH to REVERT] " Jarek Poplawski
2008-10-06 20:05 ` David Miller
2008-10-05 22:16 ` [PATCH] netrom: Fix sock_orphan() use in nr_release Jarek Poplawski
2008-10-05 13:04 ` ax25 rose Re: kernel panic linux-2.6.27-rc7 Jarek Poplawski
2008-10-01 6:58 ` [PATCH] lib8390: Fix locking in ei_poll (poll controller) Jarek Poplawski
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=1223145027.23358.20.camel@f6bvp-5 \
--to=f6bvp@free.fr \
--cc=jarkao2@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=ralf@linux-mips.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