Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NuttX RTOS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
f4grx
NuttX RTOS
Commits
826a0116
Commit
826a0116
authored
11 years ago
by
Gregory Nutt
Browse files
Options
Downloads
Patches
Plain Diff
NET: write buffering configuration no longer depends on EXPERIMENTAL
parent
c9cb7972
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
TODO
+13
-3
13 additions, 3 deletions
TODO
net/Kconfig
+0
-1
0 additions, 1 deletion
net/Kconfig
with
13 additions
and
4 deletions
TODO
+
13
−
3
View file @
826a0116
...
...
@@ -15,7 +15,7 @@ nuttx/
(11) Kernel Build
(4) C++ Support
(6) Binary loaders (binfmt/)
(1
6
) Network (net/, drivers/net)
(1
7
) Network (net/, drivers/net)
(4) USB (drivers/usbdev, drivers/usbhost)
(11) Libraries (libc/, )
(12) File system/Generic drivers (fs/, drivers/)
...
...
@@ -828,14 +828,24 @@ o Network (net/, drivers/net)
RX interrupts when throttled and re-anable on each poll time.
recvfrom would, of course, have to un-throttle.
Status: Open. This is just a thought experiment. No changes are planned.
Priority: Medium
Priority: Low. This is not a bug but an enhancement idea.
Title: COMMON TCP BUFFERING
Description: TCP read-ahead logic and TCP write buffering logic use a
separate set of packet buffers. It seems like more efficient
use of the buffering would be had if a common pool of packet
buffers were used for both read-ahead and write buffering.
This would probably depend on having READ-AHEAD THROTTLING to
prevent run-awary read-ahead logic from consuming all buffers.
Status: Open. This is just a thought experiment. No changes are planned.
Priority: Low. This is not a bug but an enhancement idea.
Title: STANDARDIZE ETHERNET DRIVER STATISTICS
Description: Need to standardize collection of statistics from network
drivers. apps/nshlib ifconfig command should present
statistics.
Status: Open
Priority: Low
Priority: Low
. This is not a bug but an enhancement idea.
Title: CONCURRENT TCP SEND OPERATIONS
Description: At present, there cannot be two concurrent active TCP send
...
...
This diff is collapsed.
Click to expand it.
net/Kconfig
+
0
−
1
View file @
826a0116
...
...
@@ -159,7 +159,6 @@ endif # NET_TCP_READAHEAD
config NET_TCP_WRITE_BUFFERS
bool "Enabled TCP/IP write buffering"
default n
depends on EXPERIMENTAL
---help---
Write buffers allows buffering of ongoing TCP/IP packets, providing
for higher performance, streamed output.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment