Re: [PR] mm: make the alignment length in mm consistent with Kasan [nuttx]

2025-01-12 Thread via GitHub
xiaoxiang781216 closed pull request #15397: mm: make the alignment length in mm consistent with Kasan URL: https://github.com/apache/nuttx/pull/15397 -- 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

Re: [PR] mm: make the alignment length in mm consistent with Kasan [nuttx]

2025-01-12 Thread via GitHub
xiaoxiang781216 commented on PR #15397: URL: https://github.com/apache/nuttx/pull/15397#issuecomment-2585755201 close, replaced by new 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 the spec

Re: [PR] mm: make the alignment length in mm consistent with Kasan [nuttx]

2025-01-09 Thread via GitHub
xiaoxiang781216 commented on code in PR #15397: URL: https://github.com/apache/nuttx/pull/15397#discussion_r1909910813 ## mm/mm_heap/mm.h: ## @@ -173,7 +173,12 @@ typedef size_t mmsize_t; struct mm_allocnode_s { - mmsize_t preceding; /* Physical preced

Re: [PR] mm: make the alignment length in mm consistent with Kasan [nuttx]

2025-01-09 Thread via GitHub
W-M-R commented on code in PR #15397: URL: https://github.com/apache/nuttx/pull/15397#discussion_r1909811967 ## mm/mm_heap/mm.h: ## @@ -173,7 +173,12 @@ typedef size_t mmsize_t; struct mm_allocnode_s { - mmsize_t preceding; /* Physical preceding chunk

Re: [PR] mm: make the alignment length in mm consistent with Kasan [nuttx]

2025-01-09 Thread via GitHub
xiaoxiang781216 commented on code in PR #15397: URL: https://github.com/apache/nuttx/pull/15397#discussion_r1909251267 ## mm/mm_heap/mm.h: ## @@ -173,7 +173,12 @@ typedef size_t mmsize_t; struct mm_allocnode_s { - mmsize_t preceding; /* Physical preced

Re: [PR] mm: make the alignment length in mm consistent with Kasan [nuttx]

2025-01-09 Thread via GitHub
xiaoxiang781216 commented on code in PR #15397: URL: https://github.com/apache/nuttx/pull/15397#discussion_r1909251267 ## mm/mm_heap/mm.h: ## @@ -173,7 +173,12 @@ typedef size_t mmsize_t; struct mm_allocnode_s { - mmsize_t preceding; /* Physical preced

Re: [PR] mm: make the alignment length in mm consistent with Kasan [nuttx]

2025-01-08 Thread via GitHub
xiaoxiang781216 commented on code in PR #15397: URL: https://github.com/apache/nuttx/pull/15397#discussion_r1908202218 ## mm/mm_heap/mm.h: ## @@ -173,7 +173,12 @@ typedef size_t mmsize_t; struct mm_allocnode_s { - mmsize_t preceding; /* Physical preced

Re: [PR] mm: make the alignment length in mm consistent with Kasan [nuttx]

2025-01-06 Thread via GitHub
W-M-R commented on code in PR #15397: URL: https://github.com/apache/nuttx/pull/15397#discussion_r1904846638 ## mm/mm_heap/mm.h: ## @@ -173,7 +173,12 @@ typedef size_t mmsize_t; struct mm_allocnode_s { - mmsize_t preceding; /* Physical preceding chunk

Re: [PR] mm: make the alignment length in mm consistent with Kasan [nuttx]

2025-01-06 Thread via GitHub
W-M-R commented on code in PR #15397: URL: https://github.com/apache/nuttx/pull/15397#discussion_r1904846638 ## mm/mm_heap/mm.h: ## @@ -173,7 +173,12 @@ typedef size_t mmsize_t; struct mm_allocnode_s { - mmsize_t preceding; /* Physical preceding chunk

Re: [PR] mm: make the alignment length in mm consistent with Kasan [nuttx]

2025-01-06 Thread via GitHub
W-M-R commented on code in PR #15397: URL: https://github.com/apache/nuttx/pull/15397#discussion_r1904846638 ## mm/mm_heap/mm.h: ## @@ -173,7 +173,12 @@ typedef size_t mmsize_t; struct mm_allocnode_s { - mmsize_t preceding; /* Physical preceding chunk

Re: [PR] mm: make the alignment length in mm consistent with Kasan [nuttx]

2025-01-06 Thread via GitHub
xiaoxiang781216 commented on code in PR #15397: URL: https://github.com/apache/nuttx/pull/15397#discussion_r1904294879 ## mm/mm_heap/mm.h: ## @@ -173,7 +173,12 @@ typedef size_t mmsize_t; struct mm_allocnode_s { - mmsize_t preceding; /* Physical preced

Re: [PR] mm: make the alignment length in mm consistent with Kasan [nuttx]

2025-01-06 Thread via GitHub
W-M-R commented on code in PR #15397: URL: https://github.com/apache/nuttx/pull/15397#discussion_r1904110834 ## mm/kasan/generic.c: ## @@ -44,10 +45,8 @@ #define KASAN_LAST_WORD_MASK(end) \ (UINTPTR_MAX >> (-(end) & (KASAN_BITS_PER_WORD - 1))) -#define KASAN_SHADOW_SCALE (

Re: [PR] mm: make the alignment length in mm consistent with Kasan [nuttx]

2025-01-06 Thread via GitHub
W-M-R commented on code in PR #15397: URL: https://github.com/apache/nuttx/pull/15397#discussion_r1904110834 ## mm/kasan/generic.c: ## @@ -44,10 +45,8 @@ #define KASAN_LAST_WORD_MASK(end) \ (UINTPTR_MAX >> (-(end) & (KASAN_BITS_PER_WORD - 1))) -#define KASAN_SHADOW_SCALE (

Re: [PR] mm: make the alignment length in mm consistent with Kasan [nuttx]

2025-01-05 Thread via GitHub
GUIDINGLI commented on code in PR #15397: URL: https://github.com/apache/nuttx/pull/15397#discussion_r1903552773 ## mm/mm_heap/mm.h: ## @@ -182,13 +187,18 @@ struct mm_allocnode_s FAR void *backtrace[CONFIG_MM_BACKTRACE]; /* The backtrace buffer for caller */ # endif #end