Re: [PR] dirent.h: Add missing field d_ino [nuttx]

2024-09-23 Thread via GitHub
yamt commented on PR #13556: URL: https://github.com/apache/nuttx/pull/13556#issuecomment-2370333217 > > what's your motivation to add d_ino? > > @yamt I'm porting Rust std library to NuttX, the `ino` is required by it: https://doc.rust-lang.org/std/os/unix/fs/trait.DirEntryExt.html#t

Re: [PR] examples/userfs: Add initial value for d_ino [nuttx-apps]

2024-09-23 Thread via GitHub
no1wudi closed pull request #2593: examples/userfs: Add initial value for d_ino URL: https://github.com/apache/nuttx-apps/pull/2593 -- 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 commen

Re: [PR] dirent.h: Add missing field d_ino [nuttx]

2024-09-23 Thread via GitHub
no1wudi closed pull request #13556: dirent.h: Add missing field d_ino URL: https://github.com/apache/nuttx/pull/13556 -- 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 unsubsc

Re: [PR] dirent.h: Add missing field d_ino [nuttx]

2024-09-23 Thread via GitHub
no1wudi commented on PR #13556: URL: https://github.com/apache/nuttx/pull/13556#issuecomment-2370303188 > @no1wudi I think we might need to customise the Unix Port, and make it work for NuttX? It seems a bit odd that we need to add extra Kernel Fields to NuttX, just to support Rust.

Re: [PR] smartfs: add partial support for FIOC_FILEPATH ioctl [nuttx]

2024-09-23 Thread via GitHub
michallenc commented on PR #13584: URL: https://github.com/apache/nuttx/pull/13584#issuecomment-2370303032 > one simple method is that smartfs_open cache the path into smartfs_ofile_s. Yes, but can we afford it for smaller microcontrollers with less memory? The maximum path length is

Re: [PR] Arm64 irq1 [nuttx]

2024-09-23 Thread via GitHub
jlaitine commented on code in PR #13520: URL: https://github.com/apache/nuttx/pull/13520#discussion_r1772700965 ## arch/arm64/src/common/arm64_vector_table.S: ## @@ -78,6 +78,10 @@ #endif stpx0, x1, [sp, #8 * REG_ELR] +mrsx0, sp_el0 +mrsx1, tpidrro_e

Re: [PR] dirent.h: Add missing field d_ino [nuttx]

2024-09-23 Thread via GitHub
lupyuen commented on PR #13556: URL: https://github.com/apache/nuttx/pull/13556#issuecomment-2370296023 > And I'm reusing the unix port, so the strcut layout should be aligned to POSIX if possible even if we don't implement it yet @no1wudi I think we might need to customise the Unix P

Re: [PR] dirent.h: Add missing field d_ino [nuttx]

2024-09-23 Thread via GitHub
no1wudi commented on PR #13556: URL: https://github.com/apache/nuttx/pull/13556#issuecomment-2370288018 And I'm reusing the unix port, so the strcut layout should be aligned to POSIX if possible even if we don't implement it yet -- This is an automated message from the Apache Git Service

Re: [PR] dirent.h: Add missing field d_ino [nuttx]

2024-09-23 Thread via GitHub
no1wudi commented on PR #13556: URL: https://github.com/apache/nuttx/pull/13556#issuecomment-2370280029 > what's your motivation to add d_ino? @yamt I'm porting Rust std library to NuttX, the `ino` is required by it: https://doc.rust-lang.org/std/os/wasi/fs/trait.DirEntryExt.html#tymethod

Re: [PR] dirent.h: Add missing field d_ino [nuttx]

2024-09-23 Thread via GitHub
yamt commented on PR #13556: URL: https://github.com/apache/nuttx/pull/13556#issuecomment-2370233564 honestly speaking, i'm not sure if it's worth to implement d_ino for nuttx. as the most filesystems here don't implement inode numbers at all, applications using d_ino likely need modifi

Re: [PR] dirent.h: Add missing field d_ino [nuttx]

2024-09-23 Thread via GitHub
yamt commented on code in PR #13556: URL: https://github.com/apache/nuttx/pull/13556#discussion_r1772626277 ## fs/vfs/fs_dir.c: ## @@ -503,6 +503,9 @@ static ssize_t dir_read(FAR struct file *filep, FAR char *buffer, return ret; } + /* REVISIT: Should we use i_in

Re: [PR] Arm64 irq1 [nuttx]

2024-09-23 Thread via GitHub
jlaitine commented on PR #13520: URL: https://github.com/apache/nuttx/pull/13520#issuecomment-2370187206 FYI: I managed to get things running in our own branches again by reverting everything in this PR except for e38f2b2a6d -- This is an automated message from the Apache Git Service.

Re: [PR] lib_libvsprintf.c: add Add support for %pB parameter. [nuttx]

2024-09-23 Thread via GitHub
yamt commented on PR #13536: URL: https://github.com/apache/nuttx/pull/13536#issuecomment-2370184919 an alternative approach is to use a non-conflicting modifier/specifier. it still has a possibility of feature conflicts and has `__format__` attribute problems though. -- This is an

Re: [PR] riscv: use g_running_task store current regs [nuttx]

2024-09-23 Thread via GitHub
hujun260 commented on PR #13585: URL: https://github.com/apache/nuttx/pull/13585#issuecomment-2370180534 > @hujun260 I rebooted and retested OSTest, 10 times on rv-virt:knsh64. Out of the 10 tests, 1 test failed at vfork. Would you know what's causing this? Thanks! https://gist.github.com/l

Re: [PR] lib_libvsprintf.c: add Add support for %pB parameter. [nuttx]

2024-09-23 Thread via GitHub
yamt commented on PR #13536: URL: https://github.com/apache/nuttx/pull/13536#issuecomment-2370179935 > > > @yamt please review the new implementation which disable the extension by default. > > > > > > i feel it's difficult to use a kconfig which alters the behavior of very basic

Re: [PR] lib_libvsprintf.c: add Add support for %pB parameter. [nuttx]

2024-09-23 Thread via GitHub
yamt commented on PR #13536: URL: https://github.com/apache/nuttx/pull/13536#issuecomment-2370177668 > > > @yamt please review the new implementation which disable the extension by default. > > > > > > i feel it's difficult to use a kconfig which alters the behavior of very basic

Re: [PR] Arm64 irq1 [nuttx]

2024-09-23 Thread via GitHub
jlaitine commented on PR #13520: URL: https://github.com/apache/nuttx/pull/13520#issuecomment-2370163475 This PR seems problematic also for the performance; what is the reason for example for saving the FPU registers every time? Before this PR we had well working and performant arm64 in bot

Re: [PR] riscv: use g_running_task store current regs [nuttx]

2024-09-23 Thread via GitHub
lupyuen commented on PR #13585: URL: https://github.com/apache/nuttx/pull/13585#issuecomment-2370160016 @hujun260 I rebooted and retested OSTest, 10 times on rv-virt:knsh64. Out of the 10 tests, 1 test failed at vfork. Would you know what's causing this? Thanks! https://gist.github.com/lupy

Re: [PR] drivers/modem/alt1250: Fix issue where the program would get stuck [nuttx]

2024-09-23 Thread via GitHub
nuttxpr commented on PR #13586: URL: https://github.com/apache/nuttx/pull/13586#issuecomment-2370151325 [**\[Experimental Bot, please feedback here\]**](https://github.com/search?q=repo%3Aapache%2Fnuttx+13552&type=issues) **No, this PR does not fully meet the NuttX requirement

[PR] net/usrsock: Clear usockid when USRSOCK_EVENT_ABORT is received [nuttx]

2024-09-23 Thread via GitHub
SPRESENSE opened a new pull request, #13587: URL: https://github.com/apache/nuttx/pull/13587 ## Summary Clear usockid when USRSOCK_EVENT_ABORT is received. When usrsock receives a USRSOCK_EVENT_ABORT, it determines that the usrsock daemon's socket is closed. Then usrsock clears the uso

Re: [PR] riscv: use g_running_task store current regs [nuttx]

2024-09-23 Thread via GitHub
lupyuen commented on PR #13585: URL: https://github.com/apache/nuttx/pull/13585#issuecomment-2370130717 Hi @tmedicci would you need to test this on ESP32 RISC-V? Thanks! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use

Re: [PR] riscv: use g_running_task store current regs [nuttx]

2024-09-23 Thread via GitHub
nuttxpr commented on PR #13585: URL: https://github.com/apache/nuttx/pull/13585#issuecomment-2370122340 [**\[Experimental Bot, please feedback here\]**](https://github.com/search?q=repo%3Aapache%2Fnuttx+13552&type=issues) The PR summary is missing some information, and the Tes

Re: [PR] riscv: add a return value to riscv_swint [nuttx]

2024-09-23 Thread via GitHub
hujun260 commented on PR #13564: URL: https://github.com/apache/nuttx/pull/13564#issuecomment-2370119876 > Sorry @hujun260 I think we might have a Race Condition that's intermittently hanging and failing the Signals Test in OSTest. Yesterday Milk-V Duo S SBC (SG2000) tested OK. But today it

Re: [PR] Rptun framework update and related driver update [nuttx]

2024-09-23 Thread via GitHub
CV-Bowen commented on code in PR #13526: URL: https://github.com/apache/nuttx/pull/13526#discussion_r1772495462 ## drivers/rptun/rptun_secure.c: ## @@ -0,0 +1,221 @@ +/ + * drivers/rptun/rptun_secure.c +

Re: [PR] Rptun framework update and related driver update [nuttx]

2024-09-23 Thread via GitHub
CV-Bowen commented on code in PR #13526: URL: https://github.com/apache/nuttx/pull/13526#discussion_r1772495368 ## drivers/rptun/Kconfig: ## @@ -12,6 +12,12 @@ menuconfig RPTUN if RPTUN +config RPTUN_SECURE + bool "rptun secure support" + default n + ---he

Re: [PR] Arm64 irq1 [nuttx]

2024-09-23 Thread via GitHub
lipengfei28 commented on PR #13520: URL: https://github.com/apache/nuttx/pull/13520#issuecomment-2369998003 commit 8288fe4e305bb905fa3ef18d24f895cf5ca33359 (HEAD -> master, apache/master) Author: chao an Date: Mon Sep 23 08:59:15 2024 +0800 Revert "toolchain/ghs: Fix CONF

Re: [PR] Arm64 irq1 [nuttx]

2024-09-23 Thread via GitHub
xiaoxiang781216 commented on code in PR #13520: URL: https://github.com/apache/nuttx/pull/13520#discussion_r1772478573 ## arch/arm64/src/common/arm64_syscall.c: ## @@ -397,11 +324,59 @@ int arm64_syscall(uint64_t *regs) break; #endif + /* This is not an architec

Re: [PR] stdio/va_format: move non-standard structure va_format to nuttx/streams.h [nuttx]

2024-09-23 Thread via GitHub
Donny9 commented on PR #13575: URL: https://github.com/apache/nuttx/pull/13575#issuecomment-2369945801 > Please provide link to nuttx-apps PR as well. https://github.com/apache/nuttx-apps/pull/2600 Done~ -- This is an automated message from the Apache Git Service. To respond to the

Re: [PR] Revert "lzf: Add macro judgment to header file reference." [nuttx]

2024-09-23 Thread via GitHub
xiaoxiang781216 commented on PR #13567: URL: https://github.com/apache/nuttx/pull/13567#issuecomment-2369908632 > > @anchao should we close this pr? > > I don't agree with exporting some functions from NuttX, which will make the nuttx to the restrictions of other OS build systems(Andr

Re: [PR] smartfs: add partial support for FIOC_FILEPATH ioctl [nuttx]

2024-09-23 Thread via GitHub
xiaoxiang781216 commented on PR #13584: URL: https://github.com/apache/nuttx/pull/13584#issuecomment-2369899875 one simple method is that smartfs_open cache the path into smartfs_ofile_s. -- This is an automated message from the Apache Git Service. To respond to the message, please log on

(nuttx) branch master updated: Revert "toolchain/ghs: Fix CONFIG_SCHED_CRITMONITOR_MAXTIME_XXX "zero used for undefined preprocessing identifier" warnings"

2024-09-23 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/nuttx.git The following commit(s) were added to refs/heads/master by this push: new 8288fe4e30 Revert "toolchain/ghs: Fix CONFIG_

Re: [PR] Revert "toolchain/ghs: Fix CONFIG_SCHED_CRITMONITOR_MAXTIME_XXX "zero used for undefined preprocessing identifier" warnings" [nuttx]

2024-09-23 Thread via GitHub
xiaoxiang781216 merged PR #13569: URL: https://github.com/apache/nuttx/pull/13569 -- 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-unsubscr...@nu

Re: [PR] Revert "lzf: Add macro judgment to header file reference." [nuttx]

2024-09-23 Thread via GitHub
anchao commented on PR #13567: URL: https://github.com/apache/nuttx/pull/13567#issuecomment-2369861148 > @anchao should we close this pr? I don't agree with exporting some functions from NuttX, which will make the nuttx to the restrictions of other OS build systems(Android). Don't you

Re: [PR] arm: g_current_regs is only used to determine if we are in irq, [nuttx]

2024-09-23 Thread via GitHub
github-actions[bot] commented on PR #13444: URL: https://github.com/apache/nuttx/pull/13444#issuecomment-2369774065 This PR exceeds the recommended size of 1000 lines. Please make sure you are NOT addressing multiple issues with one PR. Note this PR might be rejected due to its size. --

(nuttx-apps) branch dependabot/github_actions/codelytv/pr-size-labeler-1.10.1 created (now f4251ef36)

2024-09-23 Thread github-bot
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/github_actions/codelytv/pr-size-labeler-1.10.1 in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git at f4251ef36 build(deps): bump codelytv/pr-size-labeler from

[PR] build(deps): bump codelytv/pr-size-labeler from 1.10.0 to 1.10.1 [nuttx-apps]

2024-09-23 Thread via GitHub
dependabot[bot] opened a new pull request, #2602: URL: https://github.com/apache/nuttx-apps/pull/2602 Bumps [codelytv/pr-size-labeler](https://github.com/codelytv/pr-size-labeler) from 1.10.0 to 1.10.1. Release notes Sourced from https://github.com/codelytv/pr-size-labeler/release

Re: [PR] misc/rpmsgdev: Fix invalid pointer error [nuttx]

2024-09-23 Thread via GitHub
pkarashchenko merged PR #13583: URL: https://github.com/apache/nuttx/pull/13583 -- 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-unsubscr...@nutt

(nuttx) branch master updated: misc/rpmsgdev: Fix invalid pointer error when there are more than one remotes

2024-09-23 Thread pkarashchenko
This is an automated email from the ASF dual-hosted git repository. pkarashchenko pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git The following commit(s) were added to refs/heads/master by this push: new a5b85fcd96 misc/rpmsgdev: Fix invalid poin

Re: [PR] stdio/va_format: move non-standard structure va_format to nuttx/streams.h [nuttx]

2024-09-23 Thread via GitHub
pkarashchenko commented on PR #13575: URL: https://github.com/apache/nuttx/pull/13575#issuecomment-2369566924 Please provide link to nuttx-apps PR as well. -- 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

Re: [PR] Arm64 irq1 [nuttx]

2024-09-23 Thread via GitHub
jlaitine commented on PR #13520: URL: https://github.com/apache/nuttx/pull/13520#issuecomment-2369432497 After this PR got merged, nuttx is not compiling any more. I am getting this: common/arm64_fatal.c:84:30: error: initialized field overwritten [-Werror=override-init] 84 |

Re: [PR] smartfs: add partial support for FIOC_FILEPATH ioctl [nuttx]

2024-09-23 Thread via GitHub
michallenc commented on PR #13584: URL: https://github.com/apache/nuttx/pull/13584#issuecomment-2369283341 I am not 100 % forcing this to be merged. It provides SmartFS with least partial support for inotify but does not handle correctly subdirectories and there is no way how to detect it a

Re: [PR] Arm64 irq1 [nuttx]

2024-09-23 Thread via GitHub
pussuw commented on code in PR #13520: URL: https://github.com/apache/nuttx/pull/13520#discussion_r1771935988 ## arch/arm64/src/common/arm64_syscall.c: ## @@ -397,11 +324,59 @@ int arm64_syscall(uint64_t *regs) break; #endif + /* This is not an architecture-spec

Re: [PR] Arm64 irq1 [nuttx]

2024-09-23 Thread via GitHub
pussuw commented on code in PR #13520: URL: https://github.com/apache/nuttx/pull/13520#discussion_r1771930758 ## arch/arm64/src/common/arm64_syscall.c: ## @@ -397,11 +324,59 @@ int arm64_syscall(uint64_t *regs) break; #endif + /* This is not an architecture-spec

Re: [PR] Arm64 irq1 [nuttx]

2024-09-23 Thread via GitHub
pussuw commented on code in PR #13520: URL: https://github.com/apache/nuttx/pull/13520#discussion_r1771928920 ## arch/arm64/src/common/arm64_vectors.S: ## @@ -196,179 +139,32 @@ SECTION_FUNC(text, arm64_jump_to_user) GTEXT(arm64_sync_exc) SECTION_FUNC(text, arm64_sync_exc) -

Re: [PR] Arm64 irq1 [nuttx]

2024-09-23 Thread via GitHub
pussuw commented on code in PR #13520: URL: https://github.com/apache/nuttx/pull/13520#discussion_r1771930758 ## arch/arm64/src/common/arm64_syscall.c: ## @@ -397,11 +324,59 @@ int arm64_syscall(uint64_t *regs) break; #endif + /* This is not an architecture-spec

Re: [PR] Arm64 irq1 [nuttx]

2024-09-23 Thread via GitHub
pussuw commented on code in PR #13520: URL: https://github.com/apache/nuttx/pull/13520#discussion_r1771928920 ## arch/arm64/src/common/arm64_vectors.S: ## @@ -196,179 +139,32 @@ SECTION_FUNC(text, arm64_jump_to_user) GTEXT(arm64_sync_exc) SECTION_FUNC(text, arm64_sync_exc) -

Re: [PR] Arm64 irq1 [nuttx]

2024-09-23 Thread via GitHub
pussuw commented on code in PR #13520: URL: https://github.com/apache/nuttx/pull/13520#discussion_r1771928920 ## arch/arm64/src/common/arm64_vectors.S: ## @@ -196,179 +139,32 @@ SECTION_FUNC(text, arm64_jump_to_user) GTEXT(arm64_sync_exc) SECTION_FUNC(text, arm64_sync_exc) -

Re: [PR] arm: g_current_regs is only used to determine if we are in irq, [nuttx]

2024-09-23 Thread via GitHub
xiaoxiang781216 commented on PR #13444: URL: https://github.com/apache/nuttx/pull/13444#issuecomment-2368715130 please fix conflict, @hujun260 -- 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

(nuttx) branch master updated: Revert "pthread_mutex:add deadlock assert"

2024-09-23 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/nuttx.git The following commit(s) were added to refs/heads/master by this push: new 9afcd34282 Revert "pthread_mutex:add deadlock

Re: [PR] Revert "pthread_mutex:add deadlock assert" [nuttx]

2024-09-23 Thread via GitHub
xiaoxiang781216 merged PR #13568: URL: https://github.com/apache/nuttx/pull/13568 -- 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-unsubscr...@nu

Re: [PR] tools/doreleasenotes [nuttx]

2024-09-23 Thread via GitHub
xiaoxiang781216 commented on PR #13582: URL: https://github.com/apache/nuttx/pull/13582#issuecomment-2368707931 please.fix.lint.error -- 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

Re: [PR] Revert "lzf: Add macro judgment to header file reference." [nuttx]

2024-09-23 Thread via GitHub
xiaoxiang781216 commented on PR #13567: URL: https://github.com/apache/nuttx/pull/13567#issuecomment-2368686298 @anchao should we close this pr? -- 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 t

(nuttx) 05/05: Kernel build: enter exception save sp_sl0,exit exception restroe sp_el0

2024-09-23 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/nuttx.git commit 52a4fb6fabd74c78cc6a33cba9a84eb4a3c72a48 Author: lipengfei28 AuthorDate: Thu Sep 12 17:51:32 2024 +0800 Kernel bu

(nuttx) 04/05: arm64: simply the vectors

2024-09-23 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/nuttx.git commit 370679c65bb6b492cdad86bdfbd4ace2d7ea0908 Author: ligd AuthorDate: Sun Feb 4 21:37:50 2024 +0800 arm64: simply the

(nuttx) 03/05: arm64: add arm64_current_el to obtain current EL

2024-09-23 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/nuttx.git commit e38f2b2a6dadd48608682184cf5e4633a5d135ce Author: qinwei1 AuthorDate: Mon Oct 30 17:44:57 2023 +0800 arm64: add ar

(nuttx) 02/05: arm64: save FPU regs every time

2024-09-23 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/nuttx.git commit 3c4f3c10083ac5769a9805ed48bf71904f000edd Author: ligd AuthorDate: Mon Jan 29 18:22:38 2024 +0800 arm64: save FPU

(nuttx) branch master updated (a5bc9a9da2 -> 52a4fb6fab)

2024-09-23 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/nuttx.git from a5bc9a9da2 arch/x86_64:Add FP backtrace function new 291d5a2acc arm64: refine the fatal handler new 3c4f3c

(nuttx) 01/05: arm64: refine the fatal handler

2024-09-23 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/nuttx.git commit 291d5a2acc57497b5cd0305682297a319bacdf4c Author: qinwei1 AuthorDate: Mon Oct 30 22:58:48 2023 +0800 arm64: refine

Re: [PR] Arm64 irq1 [nuttx]

2024-09-23 Thread via GitHub
xiaoxiang781216 merged PR #13520: URL: https://github.com/apache/nuttx/pull/13520 -- 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-unsubscr...@nu

Re: [PR] misc/rpmsgdev: Fix invalid pointer error [nuttx]

2024-09-23 Thread via GitHub
nuttxpr commented on PR #13583: URL: https://github.com/apache/nuttx/pull/13583#issuecomment-2368674501 [**\[Experimental Bot, please feedback here\]**](https://github.com/search?q=repo%3Aapache%2Fnuttx+13552&type=issues) ## NuttX PR Requirements Review The provided PR

[PR] misc/rpmsgdev: Fix invalid pointer error [nuttx]

2024-09-23 Thread via GitHub
JianyuWang0623 opened a new pull request, #13583: URL: https://github.com/apache/nuttx/pull/13583 ## Summary Fix invalid pointer error when there are more than one remotes - Log ``` [ap] arm_busfault: PANIC!!! Bus Fault: [ap] arm_busfault:IRQ: 5 regs: 0x3c434e44

(nuttx) branch master updated: arch/x86_64:Add FP backtrace function

2024-09-23 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/nuttx.git The following commit(s) were added to refs/heads/master by this push: new a5bc9a9da2 arch/x86_64:Add FP backtrace functi

Re: [PR] arch/x86_64:Add FP backtrace function [nuttx]

2024-09-23 Thread via GitHub
xiaoxiang781216 merged PR #13551: URL: https://github.com/apache/nuttx/pull/13551 -- 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-unsubscr...@nu

(nuttx-apps) branch master updated (27c172068 -> 778ae8495)

2024-09-23 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/nuttx-apps.git from 27c172068 build.yml: Workflow aligned with nuttx repo new 97221aa43 uORB: DEBUG_UORB add LIBC_PRINT_EXTEN

(nuttx-apps) 02/03: adb: add LIBC_PRINT_EXTENSION dependency.

2024-09-23 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/nuttx-apps.git commit 4253d031f01dbdb478ce4f9cd1b85faa6f39195e Author: likun17 AuthorDate: Fri Sep 20 17:26:03 2024 +0800 adb: add

Re: [PR] Adapt %p* newly added LIBC_PRINT_EXTENSION kconfig configuration [nuttx-apps]

2024-09-23 Thread via GitHub
xiaoxiang781216 merged PR #2601: URL: https://github.com/apache/nuttx-apps/pull/2601 -- 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-unsubscr...

(nuttx-apps) 01/03: uORB: DEBUG_UORB add LIBC_PRINT_EXTENSION dependency.

2024-09-23 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/nuttx-apps.git commit 97221aa433b74889d0c4c46ee47f73895f2ee109 Author: likun17 AuthorDate: Fri Sep 20 17:06:02 2024 +0800 uORB: DE

(nuttx-apps) 03/03: monkey: monkey_log.c add LIBC_PRINT_EXTENSION dependency.

2024-09-23 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/nuttx-apps.git commit 778ae8495b5b06f39e4187a18f5103da0acb5fdb Author: likun17 AuthorDate: Fri Sep 20 18:10:56 2024 +0800 monkey:

Re: [PR] riscv: add a return value to riscv_swint [nuttx]

2024-09-23 Thread via GitHub
hujun260 commented on PR #13564: URL: https://github.com/apache/nuttx/pull/13564#issuecomment-2368227045 > Sorry @hujun260 I think we might have a Race Condition that's intermittently hanging and failing the Signals Test in OSTest. Yesterday Milk-V Duo S SBC (SG2000) tested OK. But today it

Re: [PR] Arm64 irq1 [nuttx]

2024-09-23 Thread via GitHub
github-actions[bot] commented on PR #13520: URL: https://github.com/apache/nuttx/pull/13520#issuecomment-2368217784 This PR exceeds the recommended size of 1000 lines. Please make sure you are NOT addressing multiple issues with one PR. Note this PR might be rejected due to its size. --

Re: [PR] Arm64 irq1 [nuttx]

2024-09-23 Thread via GitHub
lipengfei28 commented on code in PR #13520: URL: https://github.com/apache/nuttx/pull/13520#discussion_r1771409366 ## arch/arm64/src/common/arm64_arch.h: ## @@ -394,6 +394,26 @@ static inline void arch_nop(void) __asm__ volatile ("nop"); } +/***

Re: [I] pico-sdk doesn't have picotool anymore [nuttx]

2024-09-23 Thread via GitHub
acassis commented on issue #13566: URL: https://github.com/apache/nuttx/issues/13566#issuecomment-2368211427 Thank you @linguini1 !!! Actually, compiling/installing the picotool and using version 2.0.0 works fine, but we need to check if WiFi still working for this version as well. -- Th

(nuttx) branch master updated (b025c6285d -> 5a4d31f315)

2024-09-23 Thread acassis
This is an automated email from the ASF dual-hosted git repository. acassis pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git from b025c6285d Documentation: Document stack and backtrace dump for Espressif SoCs add 5a4d31f315 SAMA5 sam_mcan.c u

Re: [PR] SAMA5 sam_mcan.c unitialized variable [nuttx]

2024-09-23 Thread via GitHub
acassis merged PR #13581: URL: https://github.com/apache/nuttx/pull/13581 -- 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-unsubscr...@nuttx.apac

Re: [PR] Arm64 irq1 [nuttx]

2024-09-23 Thread via GitHub
acassis commented on code in PR #13520: URL: https://github.com/apache/nuttx/pull/13520#discussion_r1771389965 ## arch/arm64/src/common/arm64_arch.h: ## @@ -394,6 +394,26 @@ static inline void arch_nop(void) __asm__ volatile ("nop"); } +/***

Re: [PR] drivers/i3c: support i3c driver frameworks [nuttx]

2024-09-23 Thread via GitHub
github-actions[bot] commented on PR #13507: URL: https://github.com/apache/nuttx/pull/13507#issuecomment-2368173399 This PR exceeds the recommended size of 1000 lines. Please make sure you are NOT addressing multiple issues with one PR. Note this PR might be rejected due to its size. --

Re: [PR] xtensa/esp32[|s2|s3]: Fix task backtrace dump [nuttx]

2024-09-23 Thread via GitHub
tmedicci commented on code in PR #13546: URL: https://github.com/apache/nuttx/pull/13546#discussion_r1771343231 ## arch/xtensa/Kconfig: ## @@ -238,26 +238,14 @@ config XTENSA_CP_INITSET is provided by CONFIG_XTENSA_CP_INITSET. Each bit corresponds to one

(nuttx-apps) branch master updated (ac11e3cba -> 27c172068)

2024-09-23 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/nuttx-apps.git from ac11e3cba Adapt the new header file path of va_format. add 27c172068 build.yml: Workflow aligned with nut

Re: [PR] build.yml: Workflow aligned with nuttx repo [nuttx-apps]

2024-09-23 Thread via GitHub
xiaoxiang781216 merged PR #2591: URL: https://github.com/apache/nuttx-apps/pull/2591 -- 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-unsubscr...

(nuttx) 01/04: xtensa/Kconfig: Fix dependency for backtrace dump on Xtensas

2024-09-23 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/nuttx.git commit d6ee1742a9fa6327e498632d8d78aaa03e871b92 Author: Tiago Medicci Serrano AuthorDate: Tue Sep 17 10:05:48 2024 -0300

Re: [PR] xtensa/esp32[|s2|s3]: Fix task backtrace dump [nuttx]

2024-09-23 Thread via GitHub
xiaoxiang781216 merged PR #13546: URL: https://github.com/apache/nuttx/pull/13546 -- 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-unsubscr...@nu

(nuttx) 02/04: xtensa/esp32[|s2|s3]: Fix task backtrace dump

2024-09-23 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/nuttx.git commit cdeb720bf8a3b7fd29693c40e36e11cd9633b209 Author: Tiago Medicci Serrano AuthorDate: Wed Sep 4 16:25:57 2024 -0300

(nuttx) branch master updated (d68fab125e -> b025c6285d)

2024-09-23 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/nuttx.git from d68fab125e FS_RAMMAP depends on FS_REFCOUNT and remove useless macro new d6ee1742a9 xtensa/Kconfig: Fix depende

(nuttx) 03/04: tools: Add generic tool to decode the backtrace dump

2024-09-23 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/nuttx.git commit 27858f913b819da09d528d31e05f4e0d1613bdbd Author: Tiago Medicci Serrano AuthorDate: Fri Sep 20 13:56:35 2024 -0300

(nuttx) 04/04: Documentation: Document stack and backtrace dump for Espressif SoCs

2024-09-23 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/nuttx.git commit b025c6285db64c6bb3b9b065b96e8831a4fb8aec Author: Tiago Medicci Serrano AuthorDate: Thu Sep 19 14:59:34 2024 -0300

Re: [PR] xtensa/esp32[|s2|s3]: Fix task backtrace dump [nuttx]

2024-09-23 Thread via GitHub
xiaoxiang781216 commented on code in PR #13546: URL: https://github.com/apache/nuttx/pull/13546#discussion_r1771328824 ## arch/xtensa/Kconfig: ## @@ -238,26 +238,14 @@ config XTENSA_CP_INITSET is provided by CONFIG_XTENSA_CP_INITSET. Each bit corresponds to one

Re: [PR] stdio/va_format: move non-standard structure va_format to nuttx/streams.h [nuttx]

2024-09-23 Thread via GitHub
Donny9 commented on PR #13575: URL: https://github.com/apache/nuttx/pull/13575#issuecomment-2368074108 > please add commit messages which describe the change and why is it needed I have explained clearly enough in the commit message. Please read carefully. va_format is not a standard

Re: [PR] build.yml: Workflow aligned with nuttx repo [nuttx-apps]

2024-09-23 Thread via GitHub
simbit18 commented on code in PR #2591: URL: https://github.com/apache/nuttx-apps/pull/2591#discussion_r1771280033 ## .github/workflows/build.yml: ## @@ -276,7 +283,7 @@ jobs: git config --global --add safe.directory /github/workspace/sources/nuttx git con

Re: [PR] tools/doreleasenotes [nuttx]

2024-09-23 Thread via GitHub
nuttxpr commented on PR #13582: URL: https://github.com/apache/nuttx/pull/13582#issuecomment-2368014104 [**\[Experimental Bot, please feedback here\]**](https://github.com/search?q=repo%3Aapache%2Fnuttx+13552&type=issues) While this summary provides a high-level overview, it l

Re: [PR] xtensa/esp32[|s2|s3]: Fix task backtrace dump [nuttx]

2024-09-23 Thread via GitHub
tmedicci commented on code in PR #13546: URL: https://github.com/apache/nuttx/pull/13546#discussion_r1771272466 ## arch/xtensa/Kconfig: ## @@ -238,26 +238,14 @@ config XTENSA_CP_INITSET is provided by CONFIG_XTENSA_CP_INITSET. Each bit corresponds to one

[PR] tools/doreleasenotes [nuttx]

2024-09-23 Thread via GitHub
jerpelea opened a new pull request, #13582: URL: https://github.com/apache/nuttx/pull/13582 ## Summary Simple tool to generate the NuttX release notes tested on Python-3.8.9 Requirements pip install PyGithub pip install PyInquirer pip install tqdm The followin

Re: [I] [Feedback] PR Review Bot [nuttx]

2024-09-23 Thread via GitHub
nuttxpr commented on issue #13552: URL: https://github.com/apache/nuttx/issues/13552#issuecomment-2367958326 > Yes we need increase PR and git commit descriptions quality (both need to be self explanatory).. bot was created to help.. you can .. wait was there this nice copy-paste section wh

Re: [PR] lvgl: upgrade to release/v9.2 [nuttx-apps]

2024-09-23 Thread via GitHub
cederom commented on PR #2592: URL: https://github.com/apache/nuttx-apps/pull/2592#issuecomment-2367949725 Thank you @kisvegabor fingers crossed, please let us know how we can help on the NuttX RTOS side :-) -- This is an automated message from the Apache Git Service. To respond to the me

Re: [PR] stdio/va_format: move non-standard structure va_format to nuttx/streams.h [nuttx]

2024-09-23 Thread via GitHub
cederom commented on PR #13575: URL: https://github.com/apache/nuttx/pull/13575#issuecomment-2367946765 Yes we need increase PR descriptions quality.. bot was created to help.. you can .. wait was there this nice copy-paste section where all sections were filled in already before @lupyuen ?

Re: [PR] enable SOCK_CLOEXEC explicit [nuttx-apps]

2024-09-23 Thread via GitHub
cederom commented on PR #2595: URL: https://github.com/apache/nuttx-apps/pull/2595#issuecomment-2367939396 Hmm, looks more like macOS, as Lup was able to reproduce outside CI.. maybe some includes are missing to reference internal implementation? o_O -- This is an automated message from t

Re: [PR] lvgl: upgrade to release/v9.2 [nuttx-apps]

2024-09-23 Thread via GitHub
kisvegabor commented on PR #2592: URL: https://github.com/apache/nuttx-apps/pull/2592#issuecomment-2367910500 > Do you know when LVGL 9.2.1 will be released @kisvegabor ? :-) Targeting beginning of October. -- This is an automated message from the Apache Git Service. To respond to t

[PR] SAMA5 sam_mcan.c unitialized variable [nuttx]

2024-09-23 Thread via GitHub
TimJTi opened a new pull request, #13581: URL: https://github.com/apache/nuttx/pull/13581 ## Summary Noted a compiler warning - perhaps as a result of moving to newer gcc version or changes to NuttX gcc compiler options: ``` chip/sam_mcan.c:1562:14: warning: 'ret' may be used un

(nuttx) branch master updated (90d990712d -> d68fab125e)

2024-09-23 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/nuttx.git from 90d990712d libs/libc/stdio: Optimize header file dependencies in *prinf.c file. add 7e97691452 Should call fs_

Re: [PR] File reference count bug fix [nuttx]

2024-09-23 Thread via GitHub
xiaoxiang781216 merged PR #13578: URL: https://github.com/apache/nuttx/pull/13578 -- 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-unsubscr...@nu

(nuttx) 03/06: include/nuttx/compiler.h: fix redefine about offsetof

2024-09-23 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/nuttx.git commit 88da2b4adb5b737b44c71103fb48889779cfaa9d Author: dongjiuzhu1 AuthorDate: Wed Jun 12 10:20:46 2024 +0800 include/n

  1   2   >