From ea39f3b55948f4fc27bfbdaa94afcdfc9e7c55c9 Mon Sep 17 00:00:00 2001 From: patacongo Date: Fri, 11 Sep 2009 20:32:02 +0000 Subject: [PATCH] Remove check for outstanding un-ACKed data in TX poll git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2038 42af7a65-404d-4744-a932-0658087f49c3 --- Documentation/NuttX.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html index 9c7269825f..fdc628d49c 100644 --- a/Documentation/NuttX.html +++ b/Documentation/NuttX.html @@ -1524,6 +1524,9 @@ nuttx-0.4.11 2009-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr> * net/net_close.c. Fixed another important TCP/IP race condition bug: If the host closes the TCP connection just before the target calls close(), then the close operation may hang indefinitely! + * net/net_tcppoll.c. Removed an unnecessary check for outstanding, un-ACKed + data. The NuttX socket layer keeps track of ACKs and doesn't need this check; + removing the check should improve write throughput pascal-0.1.3 2009-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>