From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2864 invoked by alias); 6 Apr 2009 17:35:29 -0000 Received: (qmail 2833 invoked by uid 22791); 6 Apr 2009 17:35:29 -0000 X-SWARE-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL,BAYES_00,SPF_PASS X-Spam-Check-By: sourceware.org Received: from hagrid.ecoscentric.com (HELO mail.ecoscentric.com) (212.13.207.197) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 06 Apr 2009 17:35:23 +0000 Received: from localhost (hagrid.ecoscentric.com [127.0.0.1]) by mail.ecoscentric.com (Postfix) with ESMTP id 3F16560B8009 for ; Mon, 6 Apr 2009 18:35:18 +0100 (BST) Received: from mail.ecoscentric.com ([127.0.0.1]) by localhost (hagrid.ecoscentric.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9Q7tk8m9bgJz; Mon, 6 Apr 2009 18:35:16 +0100 (BST) From: bugzilla-daemon@ecoscentric.com To: ecos-bugs@ecos.sourceware.org Subject: [Bug 1000738] New: Redboot networking problem X-Bugzilla-Reason: QAcontact X-Bugzilla-Type: newchanged X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: eCos X-Bugzilla-Component: RedBoot X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: iliev@ronetix.at X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: normal X-Bugzilla-Assigned-To: gary@mlbassoc.com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Date: Mon, 06 Apr 2009 17:35:00 -0000 Mailing-List: contact ecos-bugs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: ecos-bugs-owner@sourceware.org X-SW-Source: 2009/txt/msg00174.txt.bz2 http://bugs.ecos.sourceware.org/show_bug.cgi?id=1000738 Summary: Redboot networking problem Product: eCos Version: CVS Platform: snds (Samsung SNDS) OS/Version: HostOS: Linux Status: UNCONFIRMED Severity: normal Priority: normal Component: RedBoot AssignedTo: gary@mlbassoc.com ReportedBy: iliev@ronetix.at QAContact: ecos-bugs@ecos.sourceware.org Class: --- There is a problem when performing two http loads one after other - the second load put the RedBoot in an endless loop. If there is a small delay between the both loads, then sometimes it works. If the the first load is a http and the second load a tftp, then the problem doesn't exist. The endless loop is in tcp.c, __tcp_handler(): for (prev = NULL, s = tcp_list; s; prev = s, s = s->next) { if (s->our_port == ntohs(tcp->dest_port)) { if (s->his_port == 0) It loops forever because *s == s->next* and *s->our_port* and *ntohs(tcp->dest_port)* differs with one. -- Configure bugmail: http://bugs.ecos.sourceware.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug.