mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-24 23:00:11 +01:00
amdgpu: fix round down/up page size error
Signed-off-by: Jack Xiao <Jack.Xiao@amd.com> Reviewed-by: Monk Liu monk.liu@amd.com Reviewed-by: Jammy Zhou <Jammy.Zhou@amd.com>
This commit is contained in:
parent
c04b9639bc
commit
f8be9a794c
1 changed files with 3 additions and 2 deletions
|
|
@ -36,8 +36,9 @@
|
|||
|
||||
#define AMDGPU_CS_MAX_RINGS 8
|
||||
/* do not use below macro if b is not power of 2 aligned value */
|
||||
#define ROUND_DOWN(a,b) ((a) & (~((b)-1)))
|
||||
#define ROUND_UP(a,b) (((a)+((b)-1)) & (~((b)-1)))
|
||||
#define __round_mask(x, y) ((__typeof__(x))((y)-1))
|
||||
#define ROUND_UP(x, y) ((((x)-1) | __round_mask(x, y))+1)
|
||||
#define ROUND_DOWN(x, y) ((x) & ~__round_mask(x, y))
|
||||
|
||||
struct amdgpu_bo_va_hole {
|
||||
struct list_head list;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue