[GitHub] [incubator-nuttx-apps] zhaoxiu-zeng opened a new pull request #955: ostest: sighand.c: add sem_wait in signal handler

2022-01-04 Thread GitBox
zhaoxiu-zeng opened a new pull request #955: URL: https://github.com/apache/incubator-nuttx-apps/pull/955 task is blocked by semphore1, signal handler is blocked by semphore2, after post semphore2, the task must get -EINTR. Signed-off-by: Zeng Zhaoxiu ## Summary ## I

[GitHub] [incubator-nuttx] zhaoxiu-zeng commented on pull request #5120: signal: signal handler may cause task's state error

2022-01-04 Thread GitBox
zhaoxiu-zeng commented on pull request #5120: URL: https://github.com/apache/incubator-nuttx/pull/5120#issuecomment-1004597983 > > For example, task is blocked by nxsem_wait(sem1), use nxsem_wait(sem2) > > in signal handler, and take sem2 successfully, after exit from signal > > handle

[GitHub] [incubator-nuttx] Ouss4 commented on pull request #5147: Improve dependencies for include/nuttx/version.h

2022-01-04 Thread GitBox
Ouss4 commented on pull request #5147: URL: https://github.com/apache/incubator-nuttx/pull/5147#issuecomment-1004611524 @AlanRosenthal sorry can you try to rebase again and drop the merge commit. Looks like there are still issues. -- This is an automated message from the Apache Git Serv

[GitHub] [incubator-nuttx] anchao opened a new pull request #5154: net/usrsock: replace xid type to uint64_t to avoid limitation of connections

2022-01-04 Thread GitBox
anchao opened a new pull request #5154: URL: https://github.com/apache/incubator-nuttx/pull/5154 ## Summary net/usrsock: replace xid type to uint64_t to avoid limitation of connections ## Impact remove connect index logic and use usrsock_conn instance address ##

[GitHub] [incubator-nuttx-apps] anchao opened a new pull request #956: net/usrsock: replace xid type to uint64_t to avoid limitation of connections

2022-01-04 Thread GitBox
anchao opened a new pull request #956: URL: https://github.com/apache/incubator-nuttx-apps/pull/956 ## Summary net/usrsock: replace xid type to uint64_t to avoid limitation of connections ## Impact remove connect index logic and use usrsock_conn instance address

[GitHub] [incubator-nuttx] xiaoxiang781216 opened a new pull request #5155: sdio: Move sdio utils functions to drivers/mmcsd

2022-01-04 Thread GitBox
xiaoxiang781216 opened a new pull request #5155: URL: https://github.com/apache/incubator-nuttx/pull/5155 ## Summary so all sdio client driver can reuse them ## Impact Minor ## Testing Pass CI -- This is an automated message from the Apache Git Service. To respo

[GitHub] [incubator-nuttx] Ouss4 commented on pull request #5153: tools: Makefile.unix: prepare OpenSBI image for risc-v/mpfs

2022-01-04 Thread GitBox
Ouss4 commented on pull request #5153: URL: https://github.com/apache/incubator-nuttx/pull/5153#issuecomment-1004614537 Is this generic enough to have it in the top level Makefile? In the descrption it says: > This step is currently required for MPFS. If it's only an MPF

[GitHub] [incubator-nuttx] anchao opened a new pull request #5156: net/usrsock: add support for CONFIG_NET_ALLOC_CONNS

2022-01-04 Thread GitBox
anchao opened a new pull request #5156: URL: https://github.com/apache/incubator-nuttx/pull/5156 ## Summary net/usrsock: add support for CONFIG_NET_ALLOC_CONNS ## Impact N/A ## Testing CI-check -- This is an automated message from the Apache Git Service.

[GitHub] [incubator-nuttx] eenurkka commented on pull request #5153: tools: Makefile.unix: prepare OpenSBI image for risc-v/mpfs

2022-01-04 Thread GitBox
eenurkka commented on pull request #5153: URL: https://github.com/apache/incubator-nuttx/pull/5153#issuecomment-1004619527 Ouss4, thanks for the pointers. I had something like that in mind, but couldn't do it. I will try out & update this PR. -- This is an automated message from the Apac

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5146: arch/arm/samv7: rework SAMv7 timer counter implementation

2022-01-04 Thread GitBox
pkarashchenko commented on a change in pull request #5146: URL: https://github.com/apache/incubator-nuttx/pull/5146#discussion_r777921360 ## File path: arch/arm/src/samv7/sam_freerun.c ## @@ -220,8 +220,8 @@ int sam_freerun_initialize(struct sam_freerun_s *freerun, int chan,

[GitHub] [incubator-nuttx] Ouss4 commented on a change in pull request #5155: sdio: Move sdio utils functions to drivers/mmcsd

2022-01-04 Thread GitBox
Ouss4 commented on a change in pull request #5155: URL: https://github.com/apache/incubator-nuttx/pull/5155#discussion_r777931139 ## File path: drivers/mmcsd/sdio.c ## @@ -1,5 +1,5 @@ / - * drivers/wir

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #5155: sdio: Move sdio utils functions to drivers/mmcsd

2022-01-04 Thread GitBox
xiaoxiang781216 commented on a change in pull request #5155: URL: https://github.com/apache/incubator-nuttx/pull/5155#discussion_r777939085 ## File path: drivers/mmcsd/sdio.c ## @@ -1,5 +1,5 @@ / - * d

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #5154: net/usrsock: replace xid type to uint64_t to avoid limitation of connections

2022-01-04 Thread GitBox
xiaoxiang781216 commented on a change in pull request #5154: URL: https://github.com/apache/incubator-nuttx/pull/5154#discussion_r777940865 ## File path: include/nuttx/net/usrsock.h ## @@ -227,9 +227,8 @@ begin_packed_struct struct usrsock_message_req_ack_s { struct usrsock

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #5154: net/usrsock: replace xid type to uint64_t to avoid limitation of connections

2022-01-04 Thread GitBox
xiaoxiang781216 commented on a change in pull request #5154: URL: https://github.com/apache/incubator-nuttx/pull/5154#discussion_r777941456 ## File path: include/nuttx/net/usrsock.h ## @@ -96,8 +96,8 @@ enum usrsock_message_types_e begin_packed_struct struct usrsock_request_

[GitHub] [incubator-nuttx] Ouss4 commented on a change in pull request #5153: tools/mpfs: prepare OpenSBI image

2022-01-04 Thread GitBox
Ouss4 commented on a change in pull request #5153: URL: https://github.com/apache/incubator-nuttx/pull/5153#discussion_r777944462 ## File path: tools/mpfs/Config.mk ## @@ -0,0 +1,36 @@ + +# tools/mpfs/C

[GitHub] [incubator-nuttx] eenurkka commented on a change in pull request #5153: tools/mpfs: prepare OpenSBI image

2022-01-04 Thread GitBox
eenurkka commented on a change in pull request #5153: URL: https://github.com/apache/incubator-nuttx/pull/5153#discussion_r777945226 ## File path: tools/mpfs/Config.mk ## @@ -0,0 +1,36 @@ + +# tools/mpf

[GitHub] [incubator-nuttx] anchao commented on a change in pull request #5154: net/usrsock: replace xid type to uint64_t to avoid limitation of connections

2022-01-04 Thread GitBox
anchao commented on a change in pull request #5154: URL: https://github.com/apache/incubator-nuttx/pull/5154#discussion_r777959547 ## File path: include/nuttx/net/usrsock.h ## @@ -96,8 +96,8 @@ enum usrsock_message_types_e begin_packed_struct struct usrsock_request_common_s

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 commented on pull request #955: ostest: sighand.c: add sem_wait in signal handler

2022-01-04 Thread GitBox
xiaoxiang781216 commented on pull request #955: URL: https://github.com/apache/incubator-nuttx-apps/pull/955#issuecomment-1004690155 @masayuki2009 cloud you try this patch with/without https://github.com/apache/incubator-nuttx/pull/5120? -- This is an automated message from the Apache G

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 commented on a change in pull request #952: netutils/netcat: implemented NETUTILS_NETCAT_SENDFILE option.

2022-01-04 Thread GitBox
xiaoxiang781216 commented on a change in pull request #952: URL: https://github.com/apache/incubator-nuttx-apps/pull/952#discussion_r777975346 ## File path: netutils/netcat/Kconfig ## @@ -47,4 +47,16 @@ config NETUTILS_NETCAT_STACKSIZE int "netcat stack size" d

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 commented on pull request #952: netutils/netcat: implemented NETUTILS_NETCAT_SENDFILE option.

2022-01-04 Thread GitBox
xiaoxiang781216 commented on pull request #952: URL: https://github.com/apache/incubator-nuttx-apps/pull/952#issuecomment-1004693194 @a-lunev do you have any perf number with/without this feature? -- This is an automated message from the Apache Git Service. To respond to the message, ple

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #5153: tools/mpfs: prepare OpenSBI image

2022-01-04 Thread GitBox
xiaoxiang781216 merged pull request #5153: URL: https://github.com/apache/incubator-nuttx/pull/5153 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail

[incubator-nuttx] branch master updated: tools/mpfs: prepare OpenSBI image

2022-01-04 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new b4d2944 tools/mpfs: prepare OpenSBI

[GitHub] [incubator-nuttx] Donny9 opened a new pull request #5157: fs/romfs: remove the error single list and using reference

2022-01-04 Thread GitBox
Donny9 opened a new pull request #5157: URL: https://github.com/apache/incubator-nuttx/pull/5157 ## Summary fs/romfs: remove the error single list and using reference to manager file opened. ## Impact N/A ## Testing daily test -- This is an automated message from the A

[GitHub] [incubator-nuttx] Donny9 opened a new pull request #5158: uart_rpmsg: fix data loss

2022-01-04 Thread GitBox
Donny9 opened a new pull request #5158: URL: https://github.com/apache/incubator-nuttx/pull/5158 ## Summary uart_rpmsg: fix data loss Signed-off-by: Jiuzhu Dong ## Impact get console output by cmd:cu correctly. ## Testing daily test -- This is an automat

[GitHub] [incubator-nuttx] Donny9 opened a new pull request #5159: socket: extend socket_storage for rpmsg_socket addrinfo

2022-01-04 Thread GitBox
Donny9 opened a new pull request #5159: URL: https://github.com/apache/incubator-nuttx/pull/5159 ## Summary Extend socket_storage to fix compile warning about rexecd. rexecd.c: In function 'rexecd_main': rexecd.c:191:9: warning: array subscript 18 is outside array bounds

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 merged pull request #954: note main: system/sched_note add output of string and binary

2022-01-04 Thread GitBox
xiaoxiang781216 merged pull request #954: URL: https://github.com/apache/incubator-nuttx-apps/pull/954 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-m

[incubator-nuttx-apps] branch master updated: note main: system/sched_note add output of string and binary

2022-01-04 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git The following commit(s) were added to refs/heads/master by this push: new 0c79d57 note main: system/sche

[GitHub] [incubator-nuttx] no1wudi opened a new pull request #5160: arch/risc-v: Replace __LP64__ with CONFIG_ARCH_RV64

2022-01-04 Thread GitBox
no1wudi opened a new pull request #5160: URL: https://github.com/apache/incubator-nuttx/pull/5160 ## Summary It can provide better auto complete experience for modern code editor, since they use clang/gcc based parser to analyze code but lacks some target dependent info such as __LP

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #5160: arch/risc-v: Replace __LP64__ with CONFIG_ARCH_RV64

2022-01-04 Thread GitBox
xiaoxiang781216 commented on a change in pull request #5160: URL: https://github.com/apache/incubator-nuttx/pull/5160#discussion_r778061230 ## File path: arch/risc-v/include/spinlock.h ## @@ -78,7 +78,7 @@ * RISC-V architecture supports fence instruction to ensure memory orde

[incubator-nuttx] branch master updated: uart_rpmsg: fix data loss

2022-01-04 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new dce8c96 uart_rpmsg: fix data loss d

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #5158: uart_rpmsg: fix data loss

2022-01-04 Thread GitBox
xiaoxiang781216 merged pull request #5158: URL: https://github.com/apache/incubator-nuttx/pull/5158 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail

[GitHub] [incubator-nuttx] jlaitine opened a new pull request #5161: arch/risc-v/src/mpfs/mpfs_serial.c: Correct setting of nbits

2022-01-04 Thread GitBox
jlaitine opened a new pull request #5161: URL: https://github.com/apache/incubator-nuttx/pull/5161 Number of bits was set wrongly in TCSETS for mpfs Signed-off-by: Jukka Laitinen -- This is an automated message from the Apache Git Service. To respond to the message, pl

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5154: net/usrsock: replace xid type to uint64_t to avoid limitation of connections

2022-01-04 Thread GitBox
pkarashchenko commented on a change in pull request #5154: URL: https://github.com/apache/incubator-nuttx/pull/5154#discussion_r778080793 ## File path: include/nuttx/net/usrsock.h ## @@ -227,9 +228,9 @@ begin_packed_struct struct usrsock_message_req_ack_s { struct usrsock_m

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5154: net/usrsock: replace xid type to uint64_t to avoid limitation of connections

2022-01-04 Thread GitBox
pkarashchenko commented on a change in pull request #5154: URL: https://github.com/apache/incubator-nuttx/pull/5154#discussion_r778083404 ## File path: include/nuttx/net/usrsock.h ## @@ -96,8 +96,9 @@ enum usrsock_message_types_e begin_packed_struct struct usrsock_request_co

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5156: net/usrsock: add support for CONFIG_NET_ALLOC_CONNS

2022-01-04 Thread GitBox
pkarashchenko commented on a change in pull request #5156: URL: https://github.com/apache/incubator-nuttx/pull/5156#discussion_r778088951 ## File path: net/usrsock/usrsock_conn.c ## @@ -45,7 +46,9 @@ /* The array containing all usrsock connections. */ +#ifndef CONFIG_NET_A

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5156: net/usrsock: add support for CONFIG_NET_ALLOC_CONNS

2022-01-04 Thread GitBox
pkarashchenko commented on a change in pull request #5156: URL: https://github.com/apache/incubator-nuttx/pull/5156#discussion_r778089628 ## File path: net/usrsock/usrsock_conn.c ## @@ -94,23 +97,36 @@ static void _usrsock_semgive(FAR sem_t *sem) FAR struct usrsock_conn_s *usr

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5161: arch/risc-v/src/mpfs/mpfs_serial.c: Correct setting of nbits

2022-01-04 Thread GitBox
pkarashchenko commented on a change in pull request #5161: URL: https://github.com/apache/incubator-nuttx/pull/5161#discussion_r778091306 ## File path: arch/risc-v/src/mpfs/mpfs_serial.c ## @@ -907,10 +907,28 @@ static int up_ioctl(struct file *filep, int cmd, unsigned long ar

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5161: arch/risc-v/src/mpfs/mpfs_serial.c: Correct setting of nbits

2022-01-04 Thread GitBox
pkarashchenko commented on a change in pull request #5161: URL: https://github.com/apache/incubator-nuttx/pull/5161#discussion_r778091572 ## File path: arch/risc-v/src/mpfs/mpfs_serial.c ## @@ -907,10 +907,28 @@ static int up_ioctl(struct file *filep, int cmd, unsigned long ar

[GitHub] [incubator-nuttx] anchao commented on a change in pull request #5154: net/usrsock: replace xid type to uint64_t to avoid limitation of connections

2022-01-04 Thread GitBox
anchao commented on a change in pull request #5154: URL: https://github.com/apache/incubator-nuttx/pull/5154#discussion_r778095657 ## File path: include/nuttx/net/usrsock.h ## @@ -227,9 +228,9 @@ begin_packed_struct struct usrsock_message_req_ack_s { struct usrsock_message_

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5154: net/usrsock: replace xid type to uint64_t to avoid limitation of connections

2022-01-04 Thread GitBox
pkarashchenko commented on a change in pull request #5154: URL: https://github.com/apache/incubator-nuttx/pull/5154#discussion_r778098949 ## File path: include/nuttx/net/usrsock.h ## @@ -227,9 +228,9 @@ begin_packed_struct struct usrsock_message_req_ack_s { struct usrsock_m

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5159: socket: extend socket_storage for rpmsg_socket addrinfo

2022-01-04 Thread GitBox
pkarashchenko commented on a change in pull request #5159: URL: https://github.com/apache/incubator-nuttx/pull/5159#discussion_r778104011 ## File path: include/sys/socket.h ## @@ -284,23 +284,13 @@ * aligned at an appropriate boundary so that pointers to it can be cast * as

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5154: net/usrsock: replace xid type to uint64_t to avoid limitation of connections

2022-01-04 Thread GitBox
pkarashchenko commented on a change in pull request #5154: URL: https://github.com/apache/incubator-nuttx/pull/5154#discussion_r778098949 ## File path: include/nuttx/net/usrsock.h ## @@ -227,9 +228,9 @@ begin_packed_struct struct usrsock_message_req_ack_s { struct usrsock_m

[GitHub] [incubator-nuttx] anchao commented on a change in pull request #5154: net/usrsock: replace xid type to uint64_t to avoid limitation of connections

2022-01-04 Thread GitBox
anchao commented on a change in pull request #5154: URL: https://github.com/apache/incubator-nuttx/pull/5154#discussion_r778120305 ## File path: include/nuttx/net/usrsock.h ## @@ -227,9 +228,9 @@ begin_packed_struct struct usrsock_message_req_ack_s { struct usrsock_message_

[GitHub] [incubator-nuttx] anchao commented on a change in pull request #5156: net/usrsock: add support for CONFIG_NET_ALLOC_CONNS

2022-01-04 Thread GitBox
anchao commented on a change in pull request #5156: URL: https://github.com/apache/incubator-nuttx/pull/5156#discussion_r778140212 ## File path: net/usrsock/usrsock_conn.c ## @@ -45,7 +46,9 @@ /* The array containing all usrsock connections. */ +#ifndef CONFIG_NET_ALLOC_CO

[GitHub] [incubator-nuttx] anchao commented on a change in pull request #5156: net/usrsock: add support for CONFIG_NET_ALLOC_CONNS

2022-01-04 Thread GitBox
anchao commented on a change in pull request #5156: URL: https://github.com/apache/incubator-nuttx/pull/5156#discussion_r778142296 ## File path: net/usrsock/usrsock_conn.c ## @@ -94,23 +97,36 @@ static void _usrsock_semgive(FAR sem_t *sem) FAR struct usrsock_conn_s *usrsock_al

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5154: net/usrsock: replace xid type to uint64_t to avoid limitation of connections

2022-01-04 Thread GitBox
pkarashchenko commented on a change in pull request #5154: URL: https://github.com/apache/incubator-nuttx/pull/5154#discussion_r778149092 ## File path: include/nuttx/net/usrsock.h ## @@ -227,9 +228,9 @@ begin_packed_struct struct usrsock_message_req_ack_s { struct usrsock_m

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5156: net/usrsock: add support for CONFIG_NET_ALLOC_CONNS

2022-01-04 Thread GitBox
pkarashchenko commented on a change in pull request #5156: URL: https://github.com/apache/incubator-nuttx/pull/5156#discussion_r778155218 ## File path: net/usrsock/usrsock_conn.c ## @@ -94,23 +97,36 @@ static void _usrsock_semgive(FAR sem_t *sem) FAR struct usrsock_conn_s *usr

[GitHub] [incubator-nuttx] anchao commented on a change in pull request #5156: net/usrsock: add support for CONFIG_NET_ALLOC_CONNS

2022-01-04 Thread GitBox
anchao commented on a change in pull request #5156: URL: https://github.com/apache/incubator-nuttx/pull/5156#discussion_r778160048 ## File path: net/usrsock/usrsock_conn.c ## @@ -94,23 +97,36 @@ static void _usrsock_semgive(FAR sem_t *sem) FAR struct usrsock_conn_s *usrsock_al

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5156: net/usrsock: add support for CONFIG_NET_ALLOC_CONNS

2022-01-04 Thread GitBox
pkarashchenko commented on a change in pull request #5156: URL: https://github.com/apache/incubator-nuttx/pull/5156#discussion_r778161335 ## File path: net/usrsock/usrsock_conn.c ## @@ -94,23 +97,36 @@ static void _usrsock_semgive(FAR sem_t *sem) FAR struct usrsock_conn_s *usr

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #5154: net/usrsock: replace xid type to uint64_t to avoid limitation of connections

2022-01-04 Thread GitBox
xiaoxiang781216 commented on a change in pull request #5154: URL: https://github.com/apache/incubator-nuttx/pull/5154#discussion_r778164713 ## File path: include/nuttx/net/usrsock.h ## @@ -227,9 +228,9 @@ begin_packed_struct struct usrsock_message_req_ack_s { struct usrsock

[GitHub] [incubator-nuttx] anchao commented on a change in pull request #5156: net/usrsock: add support for CONFIG_NET_ALLOC_CONNS

2022-01-04 Thread GitBox
anchao commented on a change in pull request #5156: URL: https://github.com/apache/incubator-nuttx/pull/5156#discussion_r778164956 ## File path: net/usrsock/usrsock_conn.c ## @@ -94,23 +97,36 @@ static void _usrsock_semgive(FAR sem_t *sem) FAR struct usrsock_conn_s *usrsock_al

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #5160: arch/risc-v: Replace __LP64__ with CONFIG_ARCH_RV64

2022-01-04 Thread GitBox
xiaoxiang781216 merged pull request #5160: URL: https://github.com/apache/incubator-nuttx/pull/5160 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail

[incubator-nuttx] branch master updated (dce8c96 -> 3a0e86c)

2022-01-04 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git. from dce8c96 uart_rpmsg: fix data loss add 3a0e86c arch/risc-v: Replace __LP64__ with CONFIG_ARCH_RV64

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #5159: socket: extend socket_storage for rpmsg_socket addrinfo

2022-01-04 Thread GitBox
xiaoxiang781216 commented on a change in pull request #5159: URL: https://github.com/apache/incubator-nuttx/pull/5159#discussion_r778168069 ## File path: include/sys/socket.h ## @@ -284,23 +284,13 @@ * aligned at an appropriate boundary so that pointers to it can be cast *

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #5159: socket: extend socket_storage for rpmsg_socket addrinfo

2022-01-04 Thread GitBox
xiaoxiang781216 commented on a change in pull request #5159: URL: https://github.com/apache/incubator-nuttx/pull/5159#discussion_r778168069 ## File path: include/sys/socket.h ## @@ -284,23 +284,13 @@ * aligned at an appropriate boundary so that pointers to it can be cast *

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5154: net/usrsock: replace xid type to uint64_t to avoid limitation of connections

2022-01-04 Thread GitBox
pkarashchenko commented on a change in pull request #5154: URL: https://github.com/apache/incubator-nuttx/pull/5154#discussion_r778171266 ## File path: include/nuttx/net/usrsock.h ## @@ -227,9 +228,9 @@ begin_packed_struct struct usrsock_message_req_ack_s { struct usrsock_m

[GitHub] [incubator-nuttx] AlanRosenthal commented on pull request #5147: Improve dependencies for include/nuttx/version.h

2022-01-04 Thread GitBox
AlanRosenthal commented on pull request #5147: URL: https://github.com/apache/incubator-nuttx/pull/5147#issuecomment-1004907868 > @AlanRosenthal sorry can you try to rebase again and drop the merge commit. Looks like there are still issues. I tried resolving the conflict with github'

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5159: socket: extend socket_storage for rpmsg_socket addrinfo

2022-01-04 Thread GitBox
pkarashchenko commented on a change in pull request #5159: URL: https://github.com/apache/incubator-nuttx/pull/5159#discussion_r778172599 ## File path: include/sys/socket.h ## @@ -284,23 +284,13 @@ * aligned at an appropriate boundary so that pointers to it can be cast * as

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #5154: net/usrsock: replace xid type to uint64_t to avoid limitation of connections

2022-01-04 Thread GitBox
xiaoxiang781216 commented on a change in pull request #5154: URL: https://github.com/apache/incubator-nuttx/pull/5154#discussion_r778178526 ## File path: include/nuttx/net/usrsock.h ## @@ -227,9 +228,9 @@ begin_packed_struct struct usrsock_message_req_ack_s { struct usrsock

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #5138: net/tcp(unbuffered): advance sndseq by +1 because SYN and FIN occupy one sequence number

2022-01-04 Thread GitBox
xiaoxiang781216 commented on a change in pull request #5138: URL: https://github.com/apache/incubator-nuttx/pull/5138#discussion_r778182272 ## File path: net/tcp/tcp_input.c ## @@ -870,6 +870,11 @@ static void tcp_input(FAR struct net_driver_s *dev, uint8_t domain,

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5154: net/usrsock: replace xid type to uint64_t to avoid limitation of connections

2022-01-04 Thread GitBox
pkarashchenko commented on a change in pull request #5154: URL: https://github.com/apache/incubator-nuttx/pull/5154#discussion_r778182912 ## File path: include/nuttx/net/usrsock.h ## @@ -227,9 +228,9 @@ begin_packed_struct struct usrsock_message_req_ack_s { struct usrsock_m

[GitHub] [incubator-nuttx] AlanRosenthal opened a new pull request #5162: Improve dirlinks dependencies for Makefile.win

2022-01-04 Thread GitBox
AlanRosenthal opened a new pull request #5162: URL: https://github.com/apache/incubator-nuttx/pull/5162 ## Summary This PR improved dirlinks dependencies for Makefile.unix: https://github.com/apache/incubator-nuttx/pull/5069 ## Impact This PR copies the changes into Makefile.wi

[GitHub] [incubator-nuttx] anchao commented on a change in pull request #5156: net/usrsock: add support for CONFIG_NET_ALLOC_CONNS

2022-01-04 Thread GitBox
anchao commented on a change in pull request #5156: URL: https://github.com/apache/incubator-nuttx/pull/5156#discussion_r778164956 ## File path: net/usrsock/usrsock_conn.c ## @@ -94,23 +97,36 @@ static void _usrsock_semgive(FAR sem_t *sem) FAR struct usrsock_conn_s *usrsock_al

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #5159: socket: extend socket_storage for rpmsg_socket addrinfo

2022-01-04 Thread GitBox
xiaoxiang781216 commented on a change in pull request #5159: URL: https://github.com/apache/incubator-nuttx/pull/5159#discussion_r778189089 ## File path: include/sys/socket.h ## @@ -284,23 +284,13 @@ * aligned at an appropriate boundary so that pointers to it can be cast *

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #5162: Improve dirlinks dependencies for Makefile.win

2022-01-04 Thread GitBox
xiaoxiang781216 commented on pull request #5162: URL: https://github.com/apache/incubator-nuttx/pull/5162#issuecomment-1004927702 > ## Testing > I'm relying on CI to verify the changes since I don't currently have a windows env setup. Sadly, we don't have CI for Windows yet:(, but

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5154: net/usrsock: replace xid type to uint64_t to avoid limitation of connections

2022-01-04 Thread GitBox
pkarashchenko commented on a change in pull request #5154: URL: https://github.com/apache/incubator-nuttx/pull/5154#discussion_r778182912 ## File path: include/nuttx/net/usrsock.h ## @@ -227,9 +228,9 @@ begin_packed_struct struct usrsock_message_req_ack_s { struct usrsock_m

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5154: net/usrsock: replace xid type to uint64_t to avoid limitation of connections

2022-01-04 Thread GitBox
pkarashchenko commented on a change in pull request #5154: URL: https://github.com/apache/incubator-nuttx/pull/5154#discussion_r778182912 ## File path: include/nuttx/net/usrsock.h ## @@ -227,9 +228,9 @@ begin_packed_struct struct usrsock_message_req_ack_s { struct usrsock_m

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #5154: net/usrsock: replace xid type to uint64_t to avoid limitation of connections

2022-01-04 Thread GitBox
xiaoxiang781216 commented on a change in pull request #5154: URL: https://github.com/apache/incubator-nuttx/pull/5154#discussion_r778201656 ## File path: include/nuttx/net/usrsock.h ## @@ -227,9 +228,9 @@ begin_packed_struct struct usrsock_message_req_ack_s { struct usrsock

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #5154: net/usrsock: replace xid type to uint64_t to avoid limitation of connections

2022-01-04 Thread GitBox
xiaoxiang781216 commented on a change in pull request #5154: URL: https://github.com/apache/incubator-nuttx/pull/5154#discussion_r778201656 ## File path: include/nuttx/net/usrsock.h ## @@ -227,9 +228,9 @@ begin_packed_struct struct usrsock_message_req_ack_s { struct usrsock

[GitHub] [incubator-nuttx] AlanRosenthal opened a new pull request #5163: Rename `tools/Makefile.*` to have the `.mk` extension

2022-01-04 Thread GitBox
AlanRosenthal opened a new pull request #5163: URL: https://github.com/apache/incubator-nuttx/pull/5163 ## Summary This PR renames `tools/Makefile.*` to have the `.mk` extension. This PR also updates `README.md` and other files that references the other files. ## Impact By usin

[GitHub] [incubator-nuttx] AlanRosenthal opened a new pull request #5164: Add test to CI to verify that the `context` rule doesn't need to be rebuilt between runs

2022-01-04 Thread GitBox
AlanRosenthal opened a new pull request #5164: URL: https://github.com/apache/incubator-nuttx/pull/5164 ## Summary With recent improvements to Makefiles in these PRs: * https://github.com/apache/incubator-nuttx/pull/5055 * https://github.com/apache/incubator-nuttx/pull/5069 * htt

[incubator-nuttx] branch master updated: sdio: Move sdio utils functions to drivers/mmcsd

2022-01-04 Thread aguettouche
This is an automated email from the ASF dual-hosted git repository. aguettouche pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new 828f04f sdio: Move sdio utils fun

[GitHub] [incubator-nuttx] Ouss4 merged pull request #5155: sdio: Move sdio utils functions to drivers/mmcsd

2022-01-04 Thread GitBox
Ouss4 merged pull request #5155: URL: https://github.com/apache/incubator-nuttx/pull/5155 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-

[GitHub] [incubator-nuttx] Ouss4 commented on pull request #5147: Improve dependencies for include/nuttx/version.h

2022-01-04 Thread GitBox
Ouss4 commented on pull request #5147: URL: https://github.com/apache/incubator-nuttx/pull/5147#issuecomment-1004987626 > > @AlanRosenthal sorry can you try to rebase again and drop the merge commit. Looks like there are still issues. > > I tried resolving the conflict with github's

[GitHub] [incubator-nuttx] Ouss4 merged pull request #5147: Improve dependencies for include/nuttx/version.h

2022-01-04 Thread GitBox
Ouss4 merged pull request #5147: URL: https://github.com/apache/incubator-nuttx/pull/5147 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-

[incubator-nuttx] branch master updated: Improve dependencies for include/nuttx/version.h

2022-01-04 Thread aguettouche
This is an automated email from the ASF dual-hosted git repository. aguettouche pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new 0951f70 Improve dependencies for

[GitHub] [incubator-nuttx] Ouss4 commented on pull request #5163: Rename `tools/Makefile.*` to have the `.mk` extension

2022-01-04 Thread GitBox
Ouss4 commented on pull request #5163: URL: https://github.com/apache/incubator-nuttx/pull/5163#issuecomment-1004992994 @AlanRosenthal we've got sone chicken'n'egg conflicts here. :) Now that https://github.com/apache/incubator-nuttx/pull/5147 is merged, this PR has conflicts. It will a

[GitHub] [incubator-nuttx] Ouss4 edited a comment on pull request #5163: Rename `tools/Makefile.*` to have the `.mk` extension

2022-01-04 Thread GitBox
Ouss4 edited a comment on pull request #5163: URL: https://github.com/apache/incubator-nuttx/pull/5163#issuecomment-1004992994 @AlanRosenthal we've got sone chicken'n'egg conflicts here. :) Now that https://github.com/apache/incubator-nuttx/pull/5147 is merged, this PR has conflicts. It

[incubator-nuttx] branch master updated: Improve dirlinks dependencies for Makefile.win

2022-01-04 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new 57a19de Improve dirlinks dependenci

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #5162: Improve dirlinks dependencies for Makefile.win

2022-01-04 Thread GitBox
xiaoxiang781216 merged pull request #5162: URL: https://github.com/apache/incubator-nuttx/pull/5162 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail

[incubator-nuttx] branch master updated: socket: extend socket_storage for rpmsg_socket addrinfo

2022-01-04 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new 6ec006e socket: extend socket_stora

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #5159: socket: extend socket_storage for rpmsg_socket addrinfo

2022-01-04 Thread GitBox
xiaoxiang781216 merged pull request #5159: URL: https://github.com/apache/incubator-nuttx/pull/5159 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #5163: Rename `tools/Makefile.*` to have the `.mk` extension

2022-01-04 Thread GitBox
xiaoxiang781216 commented on a change in pull request #5163: URL: https://github.com/apache/incubator-nuttx/pull/5163#discussion_r778288307 ## File path: boards/mips/pic32mz/pic32mz-starterkit/README.txt ## @@ -78,9 +78,9 @@ On Board Debug Support The starter kit includes a

[GitHub] [incubator-nuttx] AlanRosenthal commented on a change in pull request #5163: Rename `tools/Makefile.*` to have the `.mk` extension

2022-01-04 Thread GitBox
AlanRosenthal commented on a change in pull request #5163: URL: https://github.com/apache/incubator-nuttx/pull/5163#discussion_r778290301 ## File path: boards/mips/pic32mz/pic32mz-starterkit/README.txt ## @@ -78,9 +78,9 @@ On Board Debug Support The starter kit includes a PI

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 commented on pull request #904: netutils/dhcpc: add non-blocking interface

2022-01-04 Thread GitBox
xiaoxiang781216 commented on pull request #904: URL: https://github.com/apache/incubator-nuttx-apps/pull/904#issuecomment-1005056486 Nice idea, @coffee809721232 please take a look. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to Gi

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 commented on a change in pull request #904: netutils/dhcpc: add non-blocking interface

2022-01-04 Thread GitBox
xiaoxiang781216 commented on a change in pull request #904: URL: https://github.com/apache/incubator-nuttx-apps/pull/904#discussion_r778290829 ## File path: netutils/dhcpc/dhcpc.c ## @@ -445,6 +448,47 @@ static uint8_t dhcpc_parsemsg(FAR struct dhcpc_state_s *pdhcpc, int bufl

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5154: net/usrsock: replace xid type to uint64_t to avoid limitation of connections

2022-01-04 Thread GitBox
pkarashchenko commented on a change in pull request #5154: URL: https://github.com/apache/incubator-nuttx/pull/5154#discussion_r778319423 ## File path: include/nuttx/net/usrsock.h ## @@ -227,9 +228,9 @@ begin_packed_struct struct usrsock_message_req_ack_s { struct usrsock_m

[GitHub] [incubator-nuttx-apps] a-lunev commented on pull request #952: netutils/netcat: implemented NETUTILS_NETCAT_SENDFILE option.

2022-01-04 Thread GitBox
a-lunev commented on pull request #952: URL: https://github.com/apache/incubator-nuttx-apps/pull/952#issuecomment-1005114071 > @a-lunev do you have any perf number with/without this feature? 1. CONFIG_NET_TCP_WRITE_BUFFERS=n, CONFIG_NETUTILS_NETCAT_SENDFILE=n, transmitted file size

[GitHub] [incubator-nuttx-apps] a-lunev edited a comment on pull request #952: netutils/netcat: implemented NETUTILS_NETCAT_SENDFILE option.

2022-01-04 Thread GitBox
a-lunev edited a comment on pull request #952: URL: https://github.com/apache/incubator-nuttx-apps/pull/952#issuecomment-1005114071 > @a-lunev do you have any perf number with/without this feature? 1. CONFIG_NET_TCP_WRITE_BUFFERS=n, CONFIG_NETUTILS_NETCAT_SENDFILE=n, file size is 50

[GitHub] [incubator-nuttx-apps] a-lunev edited a comment on pull request #952: netutils/netcat: implemented NETUTILS_NETCAT_SENDFILE option.

2022-01-04 Thread GitBox
a-lunev edited a comment on pull request #952: URL: https://github.com/apache/incubator-nuttx-apps/pull/952#issuecomment-1005114071 > @a-lunev do you have any perf number with/without this feature? Based on the current state of sim:tcpblaster config, the results are as follow:

[GitHub] [incubator-nuttx] pkarashchenko commented on pull request #5157: fs/romfs: remove the error single list and using reference

2022-01-04 Thread GitBox
pkarashchenko commented on pull request #5157: URL: https://github.com/apache/incubator-nuttx/pull/5157#issuecomment-1005129867 LGTM! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5159: socket: extend socket_storage for rpmsg_socket addrinfo

2022-01-04 Thread GitBox
pkarashchenko commented on a change in pull request #5159: URL: https://github.com/apache/incubator-nuttx/pull/5159#discussion_r778393269 ## File path: include/sys/socket.h ## @@ -284,23 +284,13 @@ * aligned at an appropriate boundary so that pointers to it can be cast * as

[GitHub] [incubator-nuttx] jlaitine commented on a change in pull request #5161: arch/risc-v/src/mpfs/mpfs_serial.c: Correct setting of nbits

2022-01-04 Thread GitBox
jlaitine commented on a change in pull request #5161: URL: https://github.com/apache/incubator-nuttx/pull/5161#discussion_r778394624 ## File path: arch/risc-v/src/mpfs/mpfs_serial.c ## @@ -907,10 +907,28 @@ static int up_ioctl(struct file *filep, int cmd, unsigned long arg)

[GitHub] [incubator-nuttx] jlaitine commented on a change in pull request #5161: arch/risc-v/src/mpfs/mpfs_serial.c: Correct setting of nbits

2022-01-04 Thread GitBox
jlaitine commented on a change in pull request #5161: URL: https://github.com/apache/incubator-nuttx/pull/5161#discussion_r778394798 ## File path: arch/risc-v/src/mpfs/mpfs_serial.c ## @@ -907,10 +907,28 @@ static int up_ioctl(struct file *filep, int cmd, unsigned long arg)

[GitHub] [incubator-nuttx] jlaitine commented on pull request #5161: arch/risc-v/src/mpfs/mpfs_serial.c: Correct setting of nbits

2022-01-04 Thread GitBox
jlaitine commented on pull request #5161: URL: https://github.com/apache/incubator-nuttx/pull/5161#issuecomment-1005177929 Thanks for reviews everyone, I still addressed points which @pkarashchenko raised -- This is an automated message from the Apache Git Service. To respond to the mess

[GitHub] [incubator-nuttx-apps] a-lunev commented on a change in pull request #952: netutils/netcat: implemented NETUTILS_NETCAT_SENDFILE option.

2022-01-04 Thread GitBox
a-lunev commented on a change in pull request #952: URL: https://github.com/apache/incubator-nuttx-apps/pull/952#discussion_r778423033 ## File path: netutils/netcat/Kconfig ## @@ -47,4 +47,16 @@ config NETUTILS_NETCAT_STACKSIZE int "netcat stack size" default D

[GitHub] [incubator-nuttx-apps] a-lunev commented on a change in pull request #952: netutils/netcat: implemented NETUTILS_NETCAT_SENDFILE option.

2022-01-04 Thread GitBox
a-lunev commented on a change in pull request #952: URL: https://github.com/apache/incubator-nuttx-apps/pull/952#discussion_r778423033 ## File path: netutils/netcat/Kconfig ## @@ -47,4 +47,16 @@ config NETUTILS_NETCAT_STACKSIZE int "netcat stack size" default D

[GitHub] [incubator-nuttx] masayuki2009 commented on pull request #5159: socket: extend socket_storage for rpmsg_socket addrinfo

2022-01-04 Thread GitBox
masayuki2009 commented on pull request #5159: URL: https://github.com/apache/incubator-nuttx/pull/5159#issuecomment-1005267419 @Donny9 @xiaoxiang781216 Hmm, I noticed that the NTP daemon with spresense:wifi_smp crashed due to stack corruption. Before this PR, ``` 24

[incubator-nuttx-website] branch asf-site updated: Publishing web: adbba922a8890b650c27ecac31f9d26fe25e1ec4 docs: 6ec006ee02ca685483cb15fa78352012ee22995b

2022-01-04 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 70a2b9c Publishing web

[GitHub] [incubator-nuttx] yamt commented on a change in pull request #4881: libc: Update include/nuttx/input/x11_keysymdef.h to the latest version

2022-01-04 Thread GitBox
yamt commented on a change in pull request #4881: URL: https://github.com/apache/incubator-nuttx/pull/4881#discussion_r778486542 ## File path: drivers/video/vnc/vnc_keymap.c ## @@ -29,13 +29,8 @@ #include #include - -#define XK_MISCELLANY 1 /* Select X11 character set */

  1   2   >