Giter Club home page Giter Club logo

Comments (7)

andreixc avatar andreixc commented on May 27, 2024

First observation is that Nagle is trying to enqueue full segments.
For example if the queue has 800 bytes free and 1000 bytes segment arrives the algorithm will reject that
when it should enqueue the 800 bytes and let the upper layer know this.

from picotcp.

andreixc avatar andreixc commented on May 27, 2024

This is happening as an unfortunate case where

  • the output queue can't take another segment anymore
  • the hold queue also can't take another segment anymore
  • we are waiting for the ACK to bless us with free space in the output queue.

As a solution I would propose setting the pico_err to try again and don't let the write function fail that fast.

from picotcp.

andreixc avatar andreixc commented on May 27, 2024

Using pico_err solution failed to fix the issue, the queues still get filled.
The wireshark log looks like there are a lot of retransmissions and the hold queue can't get more frames.
This could be because there is a problem with the way we ack packets (the wireshark shows there is a segment that is constantly retransmitted and even if the other side is sending us the ack packets we fail to ack the segment).

from picotcp.

andreixc avatar andreixc commented on May 27, 2024

The behavior seems to be caused because we are not receiving packets anymore.
A breakpoint in ENET_IRQ is not reached.
No more Rx packets, means no more ACKs for tcp.

from picotcp.

andreixc avatar andreixc commented on May 27, 2024

The Rx interrupt is not generated anymore because the Rx Dma buffer is full.
(RxProduceIndex + 1) % MaxNumberOfElements = RxConsumeIndex
in this case the DMA rejects frames and expects for us to consume before generating a new Rx Interrupt.

This happens because the queue that holds the events coming from IRQ or application is full.
At this point we can see that we are generating events faster than we process them.(main thread seems to have a higher priority than pico).

I think that this event handling should be avoided, so we don't lose events anymore and even if we do lose events
,to be able to recover from this.

from picotcp.

andreixc avatar andreixc commented on May 27, 2024

Tested with a bit different design for the event queue.
With this one no more interrupts are getting lost and the memory test finishes with succes

  • with Nagle enabled : ~5 Mbit/s
  • without Nagle : ~7 Mbit/s

Making the final changes, this bug is finished.

from picotcp.

andreixc avatar andreixc commented on May 27, 2024

Bug squashed by pushes
master 22b0995
master 9f18218
mbed 58:5f6eedbbbd5b.

One less headache, closed.

from picotcp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.