[PATCH 1/2] drm/ttm: cleanup and add TTM_PL_FLAG_TEMPORARY
Christian König
christian.koenig at amd.com
Thu May 27 11:45:48 UTC 2021
Am 27.05.21 um 03:30 schrieb Lang Yu:
> Make TTM_PL_FLAG_* start from zero and add
> TTM_PL_FLAG_TEMPORARY flag for temporary
> GTT allocation use.
>
> Signed-off-by: Lang Yu <Lang.Yu at amd.com>
Reviewed-by: Christian König <christian.koenig at amd.com> for this patch here.
> ---
> include/drm/ttm/ttm_placement.h | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/include/drm/ttm/ttm_placement.h b/include/drm/ttm/ttm_placement.h
> index aa6ba4d0cf78..9f5cfc7c2d5a 100644
> --- a/include/drm/ttm/ttm_placement.h
> +++ b/include/drm/ttm/ttm_placement.h
> @@ -47,8 +47,9 @@
> * top of the memory area, instead of the bottom.
> */
>
> -#define TTM_PL_FLAG_CONTIGUOUS (1 << 19)
> -#define TTM_PL_FLAG_TOPDOWN (1 << 22)
> +#define TTM_PL_FLAG_CONTIGUOUS (1 << 0)
> +#define TTM_PL_FLAG_TOPDOWN (1 << 1)
> +#define TTM_PL_FLAG_TEMPORARY (1 << 2)
>
> /**
> * struct ttm_place
More information about the amd-gfx
mailing list