Allow SAREA > 1 page in size

main
Rik Faith 2000-07-19 20:41:51 +00:00
parent aed8549e91
commit ee9514b63b
1 changed files with 1 additions and 1 deletions

View File

@ -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);