* [PATCH 1/2] maple_tree: fix comment typo of ma_root
@ 2024-08-12 15:09 Wei Yang
2024-08-12 15:09 ` [PATCH 2/2] maple_tree: fix comment typo with corresponding maple_status Wei Yang
2024-08-14 1:31 ` [PATCH 1/2] maple_tree: fix comment typo of ma_root Liam R. Howlett
0 siblings, 2 replies; 4+ messages in thread
From: Wei Yang @ 2024-08-12 15:09 UTC (permalink / raw)
To: akpm, Liam.Howlett; +Cc: linux-kernel, maple-tree, Wei Yang
In comment of mas_start(), we lists the return value for different
cases. In case of a single entry, we set mas->status to ma_root, while
the comment uses mas_root, which is not a maple_status.
Fix the typo according to the code.
Signed-off-by: Wei Yang <richard.weiyang@gmail.com>
---
lib/maple_tree.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/maple_tree.c b/lib/maple_tree.c
index 3d2e207d9a5f..14ff54078f9e 100644
--- a/lib/maple_tree.c
+++ b/lib/maple_tree.c
@@ -1346,7 +1346,7 @@ static void mas_node_count(struct ma_state *mas, int count)
* Return:
* - If mas->node is an error or not mas_start, return NULL.
* - If it's an empty tree: NULL & mas->status == ma_none
- * - If it's a single entry: The entry & mas->status == mas_root
+ * - If it's a single entry: The entry & mas->status == ma_root
* - If it's a tree: NULL & mas->status == safe root node.
*/
static inline struct maple_enode *mas_start(struct ma_state *mas)
--
2.34.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 2/2] maple_tree: fix comment typo with corresponding maple_status
2024-08-12 15:09 [PATCH 1/2] maple_tree: fix comment typo of ma_root Wei Yang
@ 2024-08-12 15:09 ` Wei Yang
2024-08-14 1:37 ` Liam R. Howlett
2024-08-14 1:31 ` [PATCH 1/2] maple_tree: fix comment typo of ma_root Liam R. Howlett
1 sibling, 1 reply; 4+ messages in thread
From: Wei Yang @ 2024-08-12 15:09 UTC (permalink / raw)
To: akpm, Liam.Howlett; +Cc: linux-kernel, maple-tree, Wei Yang
In comment of function mas_start(), we list the return value of
different cases. According to the comment context, tell the maple_status
here is more consistent with others.
Let's correct it with ma_active in the case it's a tree.
Signed-off-by: Wei Yang <richard.weiyang@gmail.com>
---
lib/maple_tree.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/maple_tree.c b/lib/maple_tree.c
index 14ff54078f9e..026197c44988 100644
--- a/lib/maple_tree.c
+++ b/lib/maple_tree.c
@@ -1347,7 +1347,7 @@ static void mas_node_count(struct ma_state *mas, int count)
* - If mas->node is an error or not mas_start, return NULL.
* - If it's an empty tree: NULL & mas->status == ma_none
* - If it's a single entry: The entry & mas->status == ma_root
- * - If it's a tree: NULL & mas->status == safe root node.
+ * - If it's a tree: NULL & mas->status == ma_active
*/
static inline struct maple_enode *mas_start(struct ma_state *mas)
{
--
2.34.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] maple_tree: fix comment typo of ma_root
2024-08-12 15:09 [PATCH 1/2] maple_tree: fix comment typo of ma_root Wei Yang
2024-08-12 15:09 ` [PATCH 2/2] maple_tree: fix comment typo with corresponding maple_status Wei Yang
@ 2024-08-14 1:31 ` Liam R. Howlett
1 sibling, 0 replies; 4+ messages in thread
From: Liam R. Howlett @ 2024-08-14 1:31 UTC (permalink / raw)
To: Wei Yang; +Cc: akpm, linux-kernel, maple-tree
* Wei Yang <richard.weiyang@gmail.com> [240812 11:09]:
> In comment of mas_start(), we lists the return value for different
> cases. In case of a single entry, we set mas->status to ma_root, while
> the comment uses mas_root, which is not a maple_status.
>
> Fix the typo according to the code.
>
> Signed-off-by: Wei Yang <richard.weiyang@gmail.com>
If you are fixing typos in a single comment, we can probably do that in
one patch.
Reviewed-by: Liam R. Howlett <Liam.Howlett@oracle.com>
> ---
> lib/maple_tree.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/lib/maple_tree.c b/lib/maple_tree.c
> index 3d2e207d9a5f..14ff54078f9e 100644
> --- a/lib/maple_tree.c
> +++ b/lib/maple_tree.c
> @@ -1346,7 +1346,7 @@ static void mas_node_count(struct ma_state *mas, int count)
> * Return:
> * - If mas->node is an error or not mas_start, return NULL.
> * - If it's an empty tree: NULL & mas->status == ma_none
> - * - If it's a single entry: The entry & mas->status == mas_root
> + * - If it's a single entry: The entry & mas->status == ma_root
> * - If it's a tree: NULL & mas->status == safe root node.
> */
> static inline struct maple_enode *mas_start(struct ma_state *mas)
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] maple_tree: fix comment typo with corresponding maple_status
2024-08-12 15:09 ` [PATCH 2/2] maple_tree: fix comment typo with corresponding maple_status Wei Yang
@ 2024-08-14 1:37 ` Liam R. Howlett
0 siblings, 0 replies; 4+ messages in thread
From: Liam R. Howlett @ 2024-08-14 1:37 UTC (permalink / raw)
To: Wei Yang; +Cc: akpm, linux-kernel, maple-tree
* Wei Yang <richard.weiyang@gmail.com> [240812 11:09]:
> In comment of function mas_start(), we list the return value of
> different cases. According to the comment context, tell the maple_status
> here is more consistent with others.
>
> Let's correct it with ma_active in the case it's a tree.
>
> Signed-off-by: Wei Yang <richard.weiyang@gmail.com>
> ---
> lib/maple_tree.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/lib/maple_tree.c b/lib/maple_tree.c
> index 14ff54078f9e..026197c44988 100644
> --- a/lib/maple_tree.c
> +++ b/lib/maple_tree.c
> @@ -1347,7 +1347,7 @@ static void mas_node_count(struct ma_state *mas, int count)
> * - If mas->node is an error or not mas_start, return NULL.
> * - If it's an empty tree: NULL & mas->status == ma_none
> * - If it's a single entry: The entry & mas->status == ma_root
> - * - If it's a tree: NULL & mas->status == safe root node.
> + * - If it's a tree: NULL & mas->status == ma_active
This was obvious fallout from the removal of the mas->node overloading
and adding a status for underflow/overflow. With this change, the
detail that mas->node == safe root node is lost in favour of the status
being set to active. Both are important. Maybe this comment needs
further clearing up to state what mas->node is, but we are basically
documenting what happens in the function so I don't think it's worth
fixing.
Reviewed-by: Liam R. Howlett <Liam.Howlett@Oracle.com>
> */
> static inline struct maple_enode *mas_start(struct ma_state *mas)
> {
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-08-14 1:38 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-08-12 15:09 [PATCH 1/2] maple_tree: fix comment typo of ma_root Wei Yang
2024-08-12 15:09 ` [PATCH 2/2] maple_tree: fix comment typo with corresponding maple_status Wei Yang
2024-08-14 1:37 ` Liam R. Howlett
2024-08-14 1:31 ` [PATCH 1/2] maple_tree: fix comment typo of ma_root Liam R. Howlett
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®