mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-08 19:48:05 +02:00
Allow SAREA > 1 page in size
This commit is contained in:
parent
aed8549e91
commit
ee9514b63b
1 changed files with 1 additions and 1 deletions
|
|
@ -88,7 +88,7 @@ struct page *drm_vm_shm_nopage(struct vm_area_struct *vma,
|
|||
|
||||
offset = address - vma->vm_start;
|
||||
page = offset >> PAGE_SHIFT;
|
||||
physical = (unsigned long)dev->lock.hw_lock + (offset & (~PAGE_MASK));
|
||||
physical = (unsigned long)dev->lock.hw_lock + offset;
|
||||
atomic_inc(&mem_map[MAP_NR(physical)].count); /* Dec. by kernel */
|
||||
|
||||
DRM_DEBUG("0x%08lx (page %lu) => 0x%08lx\n", address, page, physical);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue