Cosmetic plus some configuration default changes

This commit is contained in:
Gregory Nutt 2014-06-12 13:32:07 -06:00
parent c7f4f91e77
commit b8840dc6de
3 changed files with 5 additions and 9 deletions

7
TODO
View File

@ -15,7 +15,7 @@ nuttx/
(11) Kernel Build
(4) C++ Support
(6) Binary loaders (binfmt/)
(16) Network (net/, drivers/net)
(15) Network (net/, drivers/net)
(4) USB (drivers/usbdev, drivers/usbhost)
(10) Libraries (libc/, )
(12) File system/Generic drivers (fs/, drivers/)
@ -770,11 +770,6 @@ o Binary loaders (binfmt/)
o Network (net/, drivers/net)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
Title: SOCK_RAW/SOCK_PACKET
Description: Should implement SOCK_RAW, SOCK_PACKET
Status: Open. No changes are planned.
Priority: Low
Title: MULTIPLE NETWORK INTERFACE SUPPORT
Description: uIP polling issues / Multiple network interface support:

View File

@ -14,7 +14,7 @@ if NET_IOB
config IOB_NBUFFERS
int "Number of pre-allocated network I/O buffers"
default 16
default 24
---help---
Each packet is represented by a series of small I/O buffers in a
chain. This setting determines the number of preallocated I/O
@ -22,7 +22,7 @@ config IOB_NBUFFERS
config IOB_BUFSIZE
int "Payload size of one network I/O buffer"
default 256
default 196
---help---
Each packet is represented by a series of small I/O buffers in a
chain. This setting determines the data payload each preallocated

View File

@ -159,7 +159,8 @@ static uint16_t send_interrupt(FAR struct uip_driver_s *dev, FAR void *pvconn,
if ((flags & UIP_ACKDATA) != 0)
{
FAR sq_entry_t *entry, *next;
FAR sq_entry_t *entry;
FAR sq_entry_t *next;
FAR struct uip_wrbuffer_s *segment;
uint32_t ackno;