mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-12 05:26:42 +07:00
drm/nouveau/mmu: swap out round for ALIGN
Rounding value is guaranteed to be power-of-two, so this is better anyway. Fixes build on 32-bit. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
46bda4f4af
commit
6497c2baf2
@ -1349,12 +1349,12 @@ nvkm_vmm_get_locked(struct nvkm_vmm *vmm, bool getref, bool mapref, bool sparse,
|
||||
|
||||
addr = this->addr;
|
||||
if (vmm->func->page_block && prev && prev->page != p)
|
||||
addr = roundup(addr, vmm->func->page_block);
|
||||
addr = ALIGN(addr, vmm->func->page_block);
|
||||
addr = ALIGN(addr, 1ULL << align);
|
||||
|
||||
tail = this->addr + this->size;
|
||||
if (vmm->func->page_block && next && next->page != p)
|
||||
tail = rounddown(tail, vmm->func->page_block);
|
||||
tail = ALIGN_DOWN(addr, vmm->func->page_block);
|
||||
|
||||
if (addr <= tail && tail - addr >= size) {
|
||||
rb_erase(&this->tree, &vmm->free);
|
||||
|
Loading…
Reference in New Issue
Block a user