From: Jarek Poplawski <jarkao2@gmail.com>
To: Bernard Pidoux <bpidoux@free.fr>
Cc: Francois Romieu <romieu@fr.zoreil.com>,
Linux Netdev List <netdev@vger.kernel.org>,
Jarek Poplawski <jarkao2@o2.pl>
Subject: Re: [AX25] kernel panic
Date: Fri, 28 Mar 2008 13:07:21 +0100 [thread overview]
Message-ID: <20080328120721.GA11060@ami.dom.local> (raw)
In-Reply-To: <20080326183538.GA14266@ami.dom.local>
On Wed, Mar 26, 2008 at 07:35:38PM +0100, Jarek Poplawski wrote:
...
> OK, here is the next try. (Apply after all previous patches to any 2.6.24.x;
> there would be more noise, so revert it after catching some data.)
Bernard, I fucked it up with this #3: (changed macro to function at
the last minute). I'm currently reading this, and maybe I'll figure
out something, but if it's not a big problem for you to repeat this
after adding this #4 (after all previous) it should be 'a bit' easier.
(But no need to hurry.)
Very sorry,
Jarek P.
(debugging patch #4)
---
diff -Nurp 2.6.24.3-with3/include/net/sock.h 2.6.24.3-with4/include/net/sock.h
--- 2.6.24.3-with3/include/net/sock.h 2008-03-26 19:10:33.000000000 +0100
+++ 2.6.24.3-with4/include/net/sock.h 2008-03-28 12:42:19.000000000 +0100
@@ -1414,20 +1414,18 @@ extern int sysctl_optmem_max;
extern __u32 sysctl_wmem_default;
extern __u32 sysctl_rmem_default;
-static inline int sock_debug_ax25(struct sk_buff *skb, struct sock *ax25_sk)
-{
- struct sock *sk = skb->sk;
-
- if (sk && sk->sk_socket && sk->sk_socket->sk != sk) {
- if (net_ratelimit())
- printk(KERN_INFO "AX25: %s, %d, %p, %p, %p, %p, %p\n",
- __FUNCTION__, __LINE__, sk, sk->sk_socket,
- sk->sk_socket->sk, ax25_sk,
- ax25_sk == NULL ? NULL : ax25_sk->sk_socket);
- skb->destructor = NULL;
- return 1;
- }
- return 0;
-}
+#define sock_debug_ax25(__skb, __ax25_sk) \
+({ \
+ struct sock *__sk = __skb->sk; \
+ \
+ if (__sk && __sk->sk_socket && __sk->sk_socket->sk != __sk) { \
+ if (net_ratelimit()) \
+ printk(KERN_INFO "AX25: %s, %d, %p, %p, %p, %p, %p\n", \
+ __FUNCTION__, __LINE__, __sk, __sk->sk_socket, \
+ __sk->sk_socket->sk, __ax25_sk, \
+ __ax25_sk == NULL ? NULL : __ax25_sk->sk_socket); \
+ __skb->destructor = NULL; \
+ } \
+})
#endif /* _SOCK_H */
diff -Nurp 2.6.24.3-with3/net/ax25/af_ax25.c 2.6.24.3-with4/net/ax25/af_ax25.c
--- 2.6.24.3-with3/net/ax25/af_ax25.c 2008-03-26 18:52:54.000000000 +0100
+++ 2.6.24.3-with4/net/ax25/af_ax25.c 2008-03-28 12:50:35.000000000 +0100
@@ -866,6 +866,9 @@ static int ax25_create(struct net *net,
ax25->sk = sk;
+ if (net_ratelimit())
+ printk(KERN_INFO "AX25+ %s, %d, %p, %p\n", __FUNCTION__, __LINE__, sk, sock);
+
return 0;
}
@@ -939,6 +942,10 @@ struct sock *ax25_make_new(struct sock *
sk->sk_ax25_debug = 1;
ax25->sk = sk;
+ if (net_ratelimit())
+ printk(KERN_INFO "AX25; %s, %d, %p, %p\n",
+ __FUNCTION__, __LINE__, sk, sk->sk_socket);
+
return sk;
}
next prev parent reply other threads:[~2008-03-28 12:01 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-03-18 10:44 [AX25] kernel panic Bernard Pidoux F6BVP
2008-03-18 21:25 ` Francois Romieu
2008-03-19 7:36 ` Bernard Pidoux F6BVP
2008-03-19 20:57 ` Bernard Pidoux
2008-03-20 7:30 ` Jarek Poplawski
2008-03-20 22:58 ` Bernard Pidoux
2008-03-21 0:28 ` Jarek Poplawski
2008-03-21 9:52 ` Bernard Pidoux
2008-03-21 11:22 ` Jarek Poplawski
2008-03-21 9:40 ` Bernard Pidoux
2008-03-22 11:36 ` Jarek Poplawski
2008-03-23 17:00 ` Bernard Pidoux
2008-03-24 20:51 ` Jarek Poplawski
2008-03-25 13:23 ` Bernard Pidoux
2008-03-25 20:51 ` Jarek Poplawski
2008-03-26 18:35 ` Jarek Poplawski
2008-03-28 8:24 ` Bernard Pidoux
2008-03-28 8:27 ` Bernard Pidoux
2008-03-28 12:07 ` Jarek Poplawski [this message]
2008-03-29 12:04 ` Bernard Pidoux
2008-03-29 12:24 ` Jarek Poplawski
2008-03-30 8:43 ` Bernard Pidoux
2008-03-30 9:16 ` Jarek Poplawski
2008-03-30 17:38 ` Bernard Pidoux
2008-03-30 18:49 ` Jarek Poplawski
2008-03-30 9:00 ` Bernard Pidoux
[not found] ` <47EE38BA.9090500@free.fr>
[not found] ` <20080329130451.GC3407@ami.dom.local>
[not found] ` <47EF6479.7030702@free.fr>
[not found] ` <20080330115958.GA4975@ami.dom.local>
2008-04-01 20:37 ` Bernard Pidoux
2008-04-02 6:41 ` [ROSE/AX25] af_rose: rose_release() fix Jarek Poplawski
2008-04-02 6:56 ` David Miller
-- strict thread matches above, loose matches on Subject: below --
2009-09-09 22:28 [AX25] kernel panic Bernard Pidoux
2009-09-11 19:21 ` Jarek Poplawski
2009-09-15 10:16 ` Bernard Pidoux
[not found] ` <20090910142436.GB10547@linux-mips.org>
[not found] ` <4AA9288B.2070205@upmc.fr>
[not found] ` <20090911120557.GA12175@linux-mips.org>
2009-09-20 8:42 ` Bernard Pidoux
2009-09-20 9:09 ` f8arr
2009-09-20 21:02 ` Jarek Poplawski
2009-09-21 8:44 ` Bernard Pidoux
2009-09-21 20:11 Jarek Poplawski
2009-09-23 21:17 ` Bernard Pidoux F6BVP
2009-09-24 8:07 ` 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=20080328120721.GA11060@ami.dom.local \
--to=jarkao2@gmail.com \
--cc=bpidoux@free.fr \
--cc=jarkao2@o2.pl \
--cc=netdev@vger.kernel.org \
--cc=romieu@fr.zoreil.com \
/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;
as well as URLs for NNTP newsgroup(s).