[incubator-nuttx-apps] branch releases/10.2 created (now 562239e)

2021-10-12 Thread jerpelea
This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a change to branch releases/10.2 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git. at 562239e tools/mksymtab.sh: Fix issue to generate symtab_apps.c for MSYS No new revisions we

[incubator-nuttx] branch releases/10.2 created (now 3130ff6)

2021-10-12 Thread jerpelea
This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a change to branch releases/10.2 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git. at 3130ff6 risc-v/k210: Fix SMP interrupt stack size calculation No new revisions were added by this

[GitHub] [incubator-nuttx] jerpelea opened a new pull request #4662: author: Elfaro Lab SL : update licenses to Apache

2021-10-12 Thread GitBox
jerpelea opened a new pull request #4662: URL: https://github.com/apache/incubator-nuttx/pull/4662 ## Summary Gregory Nutt has submitted the SGA Elfaro Lab SL has submitted the SGA as a result we can migrate the licenses to Apache. ## Impact LICENSE ## Testing

[GitHub] [incubator-nuttx] Donny9 opened a new pull request #4661: i2c/bitbang: fix compile break when enable CONFIG_I2C_BITBANG_NO_DELAY

2021-10-12 Thread GitBox
Donny9 opened a new pull request #4661: URL: https://github.com/apache/incubator-nuttx/pull/4661 ## Summary i2c/bitbang: fix compile break when enable CONFIG_I2C_BITBANG_NO_DELAY Signed-off-by: Jiuzhu Dong ## Impact fix compile break ## Testing local test

[GitHub] [incubator-nuttx] a-lunev edited a comment on pull request #4659: net/tcp(unbuffered): retransmit only one the earliest not acknowledged segment

2021-10-12 Thread GitBox
a-lunev edited a comment on pull request #4659: URL: https://github.com/apache/incubator-nuttx/pull/4659#issuecomment-941886030 > * i suspect this is something should be fixed with cwnd, which nuttx doesn't have right now. > > * doesn't the "buffered" version behave in a simi

[GitHub] [incubator-nuttx] a-lunev commented on pull request #4659: net/tcp(unbuffered): retransmit only one the earliest not acknowledged segment

2021-10-12 Thread GitBox
a-lunev commented on pull request #4659: URL: https://github.com/apache/incubator-nuttx/pull/4659#issuecomment-941886030 > * i suspect this is something should be fixed with cwnd, which nuttx doesn't have right now. > > * doesn't the "buffered" version behave in a similar way

[GitHub] [incubator-nuttx] a-lunev commented on a change in pull request #4659: net/tcp(unbuffered): retransmit only one the earliest not acknowledged segment

2021-10-12 Thread GitBox
a-lunev commented on a change in pull request #4659: URL: https://github.com/apache/incubator-nuttx/pull/4659#discussion_r727667843 ## File path: net/tcp/tcp.h ## @@ -172,6 +172,9 @@ struct tcp_conn_s uint8_t rcvseq[4]; /* The sequence number that we expect to

[GitHub] [incubator-nuttx] yamt commented on pull request #4659: net/tcp(unbuffered): retransmit only one the earliest not acknowledged segment

2021-10-12 Thread GitBox
yamt commented on pull request #4659: URL: https://github.com/apache/incubator-nuttx/pull/4659#issuecomment-941868525 * i suspect this is something should be fixed with cwnd, which nuttx doesn't have right now. * doesn't the "buffered" version behave in a similar way? it basically moves

[GitHub] [incubator-nuttx] a-lunev commented on a change in pull request #4659: net/tcp(unbuffered): retransmit only one the earliest not acknowledged segment

2021-10-12 Thread GitBox
a-lunev commented on a change in pull request #4659: URL: https://github.com/apache/incubator-nuttx/pull/4659#discussion_r727656529 ## File path: net/tcp/tcp_send_unbuffered.c ## @@ -243,18 +243,54 @@ static uint16_t tcpsend_eventhandler(FAR struct net_driver_s *dev, else

[GitHub] [incubator-nuttx] yamt commented on a change in pull request #4659: net/tcp(unbuffered): retransmit only one the earliest not acknowledged segment

2021-10-12 Thread GitBox
yamt commented on a change in pull request #4659: URL: https://github.com/apache/incubator-nuttx/pull/4659#discussion_r727654868 ## File path: net/tcp/tcp_send_unbuffered.c ## @@ -243,18 +243,54 @@ static uint16_t tcpsend_eventhandler(FAR struct net_driver_s *dev, else if

[GitHub] [incubator-nuttx] a-lunev commented on a change in pull request #4659: net/tcp(unbuffered): retransmit only one the earliest not acknowledged segment

2021-10-12 Thread GitBox
a-lunev commented on a change in pull request #4659: URL: https://github.com/apache/incubator-nuttx/pull/4659#discussion_r727651822 ## File path: net/tcp/tcp_send_unbuffered.c ## @@ -243,18 +243,54 @@ static uint16_t tcpsend_eventhandler(FAR struct net_driver_s *dev, else

[GitHub] [incubator-nuttx] a-lunev commented on pull request #4659: net/tcp(unbuffered): retransmit only one the earliest not acknowledged segment

2021-10-12 Thread GitBox
a-lunev commented on pull request #4659: URL: https://github.com/apache/incubator-nuttx/pull/4659#issuecomment-941860848 > it's a valid concern. i posted it on the ML. https://www.mail-archive.com/dev@nuttx.apache.org/msg07045.html Thank you. -- This is an automated message from t

[GitHub] [incubator-nuttx] a-lunev commented on a change in pull request #4659: net/tcp(unbuffered): retransmit only one the earliest not acknowledged segment

2021-10-12 Thread GitBox
a-lunev commented on a change in pull request #4659: URL: https://github.com/apache/incubator-nuttx/pull/4659#discussion_r727651822 ## File path: net/tcp/tcp_send_unbuffered.c ## @@ -243,18 +243,54 @@ static uint16_t tcpsend_eventhandler(FAR struct net_driver_s *dev, else

[GitHub] [incubator-nuttx] yamt commented on pull request #4659: net/tcp(unbuffered): retransmit only one the earliest not acknowledged segment

2021-10-12 Thread GitBox
yamt commented on pull request #4659: URL: https://github.com/apache/incubator-nuttx/pull/4659#issuecomment-941850277 > > > > btw, it has been on my todo list to remove CONFIG_NET_TCP_SPLIT. if it helps your work, please let me know. it isn't urgent and i don't want to interfere you by sub

[GitHub] [incubator-nuttx] yamt commented on pull request #4660: Remove NET_TCP_SPLIT

2021-10-12 Thread GitBox
yamt commented on pull request #4660: URL: https://github.com/apache/incubator-nuttx/pull/4660#issuecomment-941849576 https://www.mail-archive.com/dev@nuttx.apache.org/msg07045.html -- This is an automated message from the Apache Git Service. To respond to the message, please log on t

[GitHub] [incubator-nuttx] yamt opened a new pull request #4660: Remove NET_TCP_SPLIT

2021-10-12 Thread GitBox
yamt opened a new pull request #4660: URL: https://github.com/apache/incubator-nuttx/pull/4660 ## Summary net/tcp/Kconfig: Remove NET_TCP_SPLIT While it's a neat idea, it doesn't work well in reality. * Many of modern tcp stacks don't obey the "ack ev

[GitHub] [incubator-nuttx] a-lunev commented on pull request #4659: net/tcp(unbuffered): retransmit only one the earliest not acknowledged segment

2021-10-12 Thread GitBox
a-lunev commented on pull request #4659: URL: https://github.com/apache/incubator-nuttx/pull/4659#issuecomment-941830913 > > > btw, it has been on my todo list to remove CONFIG_NET_TCP_SPLIT. if it helps your work, please let me know. it isn't urgent and i don't want to interfere you by su

[GitHub] [incubator-nuttx] yamt commented on a change in pull request #4659: net/tcp(unbuffered): retransmit only one the earliest not acknowledged segment

2021-10-12 Thread GitBox
yamt commented on a change in pull request #4659: URL: https://github.com/apache/incubator-nuttx/pull/4659#discussion_r727633309 ## File path: net/tcp/tcp_send_unbuffered.c ## @@ -243,18 +243,54 @@ static uint16_t tcpsend_eventhandler(FAR struct net_driver_s *dev, else if

[GitHub] [incubator-nuttx] yamt commented on pull request #4659: net/tcp(unbuffered): retransmit only one the earliest not acknowledged segment

2021-10-12 Thread GitBox
yamt commented on pull request #4659: URL: https://github.com/apache/incubator-nuttx/pull/4659#issuecomment-941828271 > > btw, it has been on my todo list to remove CONFIG_NET_TCP_SPLIT. if it helps your work, please let me know. it isn't urgent and i don't want to interfere you by submitt

[GitHub] [incubator-nuttx] a-lunev commented on pull request #4659: net/tcp(unbuffered): retransmit only one the earliest not acknowledged segment

2021-10-12 Thread GitBox
a-lunev commented on pull request #4659: URL: https://github.com/apache/incubator-nuttx/pull/4659#issuecomment-941826145 > btw, it has been on my todo list to remove CONFIG_NET_TCP_SPLIT. if it helps your work, please let me know. it isn't urgent and i don't want to interfere you by submit

[GitHub] [incubator-nuttx] a-lunev commented on a change in pull request #4659: net/tcp(unbuffered): retransmit only one the earliest not acknowledged segment

2021-10-12 Thread GitBox
a-lunev commented on a change in pull request #4659: URL: https://github.com/apache/incubator-nuttx/pull/4659#discussion_r727627443 ## File path: net/tcp/tcp_send_unbuffered.c ## @@ -243,18 +243,54 @@ static uint16_t tcpsend_eventhandler(FAR struct net_driver_s *dev, else

[GitHub] [incubator-nuttx] yamt commented on pull request #4659: net/tcp(unbuffered): retransmit only one the earliest not acknowledged segment

2021-10-12 Thread GitBox
yamt commented on pull request #4659: URL: https://github.com/apache/incubator-nuttx/pull/4659#issuecomment-941801270 btw, it has been on my todo list to remove CONFIG_NET_TCP_SPLIT. if it helps your work, please let me know. it isn't urgent and i don't want to interfere you by submittin

[GitHub] [incubator-nuttx] yamt commented on a change in pull request #4659: net/tcp(unbuffered): retransmit only one the earliest not acknowledged segment

2021-10-12 Thread GitBox
yamt commented on a change in pull request #4659: URL: https://github.com/apache/incubator-nuttx/pull/4659#discussion_r727610211 ## File path: net/tcp/tcp_send_unbuffered.c ## @@ -243,18 +243,54 @@ static uint16_t tcpsend_eventhandler(FAR struct net_driver_s *dev, else if

[incubator-nuttx-website] branch asf-site updated: Publishing web: ea6fce84bf8202600a0318215864afe272c81f07 docs: 1e2560267898f413c93c5fb616ddc5b1d4d07184

2021-10-12 Thread github-bot
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-website.git The following commit(s) were added to refs/heads/asf-site by this push: new 8ed9996 Publishing web