[PATCH] drm: should break if already found the best size(v2)

Christian König ckoenig.leichtzumerken at gmail.com
Mon Nov 26 09:31:34 UTC 2018


Am 26.11.18 um 08:44 schrieb Monk Liu:
> some description:
> for RB tree traveler we don't need to travel to
> the bottom level if already found the equal size node,
> thus the search performance can get improved.
>
> Tested-by: Rex Zhu <Rex.zhu at amd.com>
> Signed-off-by: Monk Liu <Monk.Liu at amd.com>
> ---
>   drivers/gpu/drm/drm_mm.c | 2 ++
>   1 file changed, 2 insertions(+)
>
> diff --git a/drivers/gpu/drm/drm_mm.c b/drivers/gpu/drm/drm_mm.c
> index 3cc5fbd..369fd9b 100644
> --- a/drivers/gpu/drm/drm_mm.c
> +++ b/drivers/gpu/drm/drm_mm.c
> @@ -318,6 +318,8 @@ static struct drm_mm_node *best_hole(struct drm_mm *mm, u64 size)
>   		if (size <= node->hole_size) {
>   			best = node;
>   			rb = rb->rb_right;
> +			if (size == node->hole_size)
> +				break;

That should probably be refactored like David suggested, e.g. (if (size 
== node->hole_size)... else if (size < node->hole_size)... else".

Apart from that it looks good to me.

Christian.

>   		} else {
>   			rb = rb->rb_left;
>   		}



More information about the dri-devel mailing list