[PATCH 1/3] lib: sbi: fix typo in is_region_subset

Xiang W wxjstz at 126.com
Mon Feb 14 08:46:36 PST 2022


在 2022-02-11星期五的 14:11 +0300,Nikita Shubin写道:
> From: Nikita Shubin <n.shubin at yadro.com>
> 
> Fix typo in is_region_subset, regB_end should be calculated from regB.
> 
> Signed-off-by: Nikita Shubin <n.shubin at yadro.com>

LGTM

Reviewed-by: Xiang W <wxjstz at 126.com>
> ---
>  lib/sbi/sbi_domain.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/lib/sbi/sbi_domain.c b/lib/sbi/sbi_domain.c
> index b60915c..a1ac1bb 100644
> --- a/lib/sbi/sbi_domain.c
> +++ b/lib/sbi/sbi_domain.c
> @@ -159,7 +159,7 @@ static bool is_region_subset(const struct
> sbi_domain_memregion *regA,
>         ulong regA_start = regA->base;
>         ulong regA_end = regA->base + (BIT(regA->order) - 1);
>         ulong regB_start = regB->base;
> -       ulong regB_end = regB->base + (BIT(regA->order) - 1);
> +       ulong regB_end = regB->base + (BIT(regB->order) - 1);
>  
>         if ((regB_start <= regA_start) &&
>             (regA_start < regB_end) &&
> -- 
> 2.31.1
> 
> 





More information about the opensbi mailing list