Message ID | 20240831001053.4751-2-richard.weiyang@gmail.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | [1/3] maple_tree: use ma_data_end() in mas_data_end() | expand |
nack * Wei Yang <richard.weiyang@gmail.com> [240830 20:11]: > Before modifying data, we need to walk the tree to locate the > maple_node. Also we get the range boundary at offset/offset_end. > > For the upper boundary at offset, we have defined function > mas_safe_pivot() to get it. Let's leverage it. > > Signed-off-by: Wei Yang <richard.weiyang@gmail.com> > --- > lib/maple_tree.c | 16 ++++++---------- > 1 file changed, 6 insertions(+), 10 deletions(-) > > diff --git a/lib/maple_tree.c b/lib/maple_tree.c > index 85668246f944..17533c246749 100644 > --- a/lib/maple_tree.c > +++ b/lib/maple_tree.c > @@ -2185,7 +2185,7 @@ static inline void mas_wr_node_walk(struct ma_wr_state *wr_mas) > while (offset < count && mas->index > wr_mas->pivots[offset]) > offset++; > > - wr_mas->r_max = offset < count ? wr_mas->pivots[offset] : mas->max; > + wr_mas->r_max = mas_safe_pivot(mas, wr_mas->pivots, offset, wr_mas->type); > wr_mas->r_min = mas_safe_min(mas, wr_mas->pivots, offset); > wr_mas->offset_end = mas->offset = offset; > } > @@ -3987,11 +3987,9 @@ static inline void mas_wr_extend_null(struct ma_wr_state *wr_mas) > (mas->end != wr_mas->offset_end) && > !wr_mas->slots[wr_mas->offset_end + 1]) { > wr_mas->offset_end++; > - if (wr_mas->offset_end == mas->end) > - mas->last = mas->max; > - else > - mas->last = wr_mas->pivots[wr_mas->offset_end]; > - wr_mas->end_piv = mas->last; > + wr_mas->end_piv = mas->last = > + mas_safe_pivot(mas, wr_mas->pivots, > + wr_mas->offset_end, wr_mas->type); > } > } > > @@ -4016,10 +4014,8 @@ static inline void mas_wr_end_piv(struct ma_wr_state *wr_mas) > (wr_mas->mas->last > wr_mas->pivots[wr_mas->offset_end])) > wr_mas->offset_end++; > > - if (wr_mas->offset_end < wr_mas->mas->end) > - wr_mas->end_piv = wr_mas->pivots[wr_mas->offset_end]; > - else > - wr_mas->end_piv = wr_mas->mas->max; > + wr_mas->end_piv = mas_safe_pivot(wr_mas->mas, wr_mas->pivots, > + wr_mas->offset_end, wr_mas->type); > > if (!wr_mas->entry) > mas_wr_extend_null(wr_mas); > -- > 2.34.1 > >
On Tue, Sep 03, 2024 at 08:41:54PM -0400, Liam R. Howlett wrote: >nack > Would mind giving some reason? Besides it call an inline function, is this wrong logically? >* Wei Yang <richard.weiyang@gmail.com> [240830 20:11]: >> Before modifying data, we need to walk the tree to locate the >> maple_node. Also we get the range boundary at offset/offset_end. >> >> For the upper boundary at offset, we have defined function >> mas_safe_pivot() to get it. Let's leverage it. >> >> Signed-off-by: Wei Yang <richard.weiyang@gmail.com> >> --- >> lib/maple_tree.c | 16 ++++++---------- >> 1 file changed, 6 insertions(+), 10 deletions(-) >> >> diff --git a/lib/maple_tree.c b/lib/maple_tree.c >> index 85668246f944..17533c246749 100644 >> --- a/lib/maple_tree.c >> +++ b/lib/maple_tree.c >> @@ -2185,7 +2185,7 @@ static inline void mas_wr_node_walk(struct ma_wr_state *wr_mas) >> while (offset < count && mas->index > wr_mas->pivots[offset]) >> offset++; >> >> - wr_mas->r_max = offset < count ? wr_mas->pivots[offset] : mas->max; >> + wr_mas->r_max = mas_safe_pivot(mas, wr_mas->pivots, offset, wr_mas->type); >> wr_mas->r_min = mas_safe_min(mas, wr_mas->pivots, offset); >> wr_mas->offset_end = mas->offset = offset; >> } >> @@ -3987,11 +3987,9 @@ static inline void mas_wr_extend_null(struct ma_wr_state *wr_mas) >> (mas->end != wr_mas->offset_end) && >> !wr_mas->slots[wr_mas->offset_end + 1]) { >> wr_mas->offset_end++; >> - if (wr_mas->offset_end == mas->end) >> - mas->last = mas->max; >> - else >> - mas->last = wr_mas->pivots[wr_mas->offset_end]; >> - wr_mas->end_piv = mas->last; >> + wr_mas->end_piv = mas->last = >> + mas_safe_pivot(mas, wr_mas->pivots, >> + wr_mas->offset_end, wr_mas->type); >> } >> } >> >> @@ -4016,10 +4014,8 @@ static inline void mas_wr_end_piv(struct ma_wr_state *wr_mas) >> (wr_mas->mas->last > wr_mas->pivots[wr_mas->offset_end])) >> wr_mas->offset_end++; >> >> - if (wr_mas->offset_end < wr_mas->mas->end) >> - wr_mas->end_piv = wr_mas->pivots[wr_mas->offset_end]; >> - else >> - wr_mas->end_piv = wr_mas->mas->max; >> + wr_mas->end_piv = mas_safe_pivot(wr_mas->mas, wr_mas->pivots, >> + wr_mas->offset_end, wr_mas->type); >> >> if (!wr_mas->entry) >> mas_wr_extend_null(wr_mas); >> -- >> 2.34.1 >> >>
diff --git a/lib/maple_tree.c b/lib/maple_tree.c index 85668246f944..17533c246749 100644 --- a/lib/maple_tree.c +++ b/lib/maple_tree.c @@ -2185,7 +2185,7 @@ static inline void mas_wr_node_walk(struct ma_wr_state *wr_mas) while (offset < count && mas->index > wr_mas->pivots[offset]) offset++; - wr_mas->r_max = offset < count ? wr_mas->pivots[offset] : mas->max; + wr_mas->r_max = mas_safe_pivot(mas, wr_mas->pivots, offset, wr_mas->type); wr_mas->r_min = mas_safe_min(mas, wr_mas->pivots, offset); wr_mas->offset_end = mas->offset = offset; } @@ -3987,11 +3987,9 @@ static inline void mas_wr_extend_null(struct ma_wr_state *wr_mas) (mas->end != wr_mas->offset_end) && !wr_mas->slots[wr_mas->offset_end + 1]) { wr_mas->offset_end++; - if (wr_mas->offset_end == mas->end) - mas->last = mas->max; - else - mas->last = wr_mas->pivots[wr_mas->offset_end]; - wr_mas->end_piv = mas->last; + wr_mas->end_piv = mas->last = + mas_safe_pivot(mas, wr_mas->pivots, + wr_mas->offset_end, wr_mas->type); } } @@ -4016,10 +4014,8 @@ static inline void mas_wr_end_piv(struct ma_wr_state *wr_mas) (wr_mas->mas->last > wr_mas->pivots[wr_mas->offset_end])) wr_mas->offset_end++; - if (wr_mas->offset_end < wr_mas->mas->end) - wr_mas->end_piv = wr_mas->pivots[wr_mas->offset_end]; - else - wr_mas->end_piv = wr_mas->mas->max; + wr_mas->end_piv = mas_safe_pivot(wr_mas->mas, wr_mas->pivots, + wr_mas->offset_end, wr_mas->type); if (!wr_mas->entry) mas_wr_extend_null(wr_mas);
Before modifying data, we need to walk the tree to locate the maple_node. Also we get the range boundary at offset/offset_end. For the upper boundary at offset, we have defined function mas_safe_pivot() to get it. Let's leverage it. Signed-off-by: Wei Yang <richard.weiyang@gmail.com> --- lib/maple_tree.c | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-)