From: "Rune Torgersen" <runet@innovsys.com>
To: "Philip Van-Houtte" <jvan_1@students.concordia.ca>,
<linuxppc-embedded@ozlabs.org>
Subject: RE: oops in process_backlog : kernel 2.6.9
Date: Fri, 18 Feb 2005 17:26:13 -0600 [thread overview]
Message-ID: <DCEAAC0833DD314AB0B58112AD99B93B8592BE@ismail.innsys.innovsys.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 85 bytes --]
Try this patch.
It makes sure the IP stack is intialized before accepting packets.
[-- Attachment #2: ip_stack_init_26.patch --]
[-- Type: application/octet-stream, Size: 493 bytes --]
--- linux-2.5/net/ipv4/ip_output.c 2005-01-12 08:59:11.000000000 -0600
+++ linux-innsys/net/ipv4/ip_output.c 2005-02-18 17:22:50.250776473 -0600
@@ -1339,11 +1335,11 @@ static struct packet_type ip_packet_type
void __init ip_init(void)
{
- dev_add_pack(&ip_packet_type);
-
ip_rt_init();
inet_initpeers();
+ dev_add_pack(&ip_packet_type);
+
#if defined(CONFIG_IP_MULTICAST) && defined(CONFIG_PROC_FS)
igmp_mc_proc_init();
#endif
next reply other threads:[~2005-02-18 23:26 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-02-18 23:26 Rune Torgersen [this message]
-- strict thread matches above, loose matches on Subject: below --
2005-02-18 17:03 oops in process_backlog : kernel 2.6.9 Philip Van-Houtte
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=DCEAAC0833DD314AB0B58112AD99B93B8592BE@ismail.innsys.innovsys.com \
--to=runet@innovsys.com \
--cc=jvan_1@students.concordia.ca \
--cc=linuxppc-embedded@ozlabs.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