]> git.baikalelectronics.ru Git - kernel.git/commit
drm/exynos: call find_vma with the mmap_sem held
authorJonathan Gonzalez V <zeus@gnu.org>
Wed, 4 Jun 2014 23:07:30 +0000 (16:07 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 4 Jun 2014 23:54:00 +0000 (16:54 -0700)
commit1ee6bf88f7d248957ba6dcd392177af215fa6ba5
tree801a090e9ad5b69fb6a12e9e5268fa836b80fa43
parent1c835e36bad182daee2844a0cf08f5d409f9bfe0
drm/exynos: call find_vma with the mmap_sem held

Performing vma lookups without taking the mm->mmap_sem is asking for
trouble.  While doing the search, the vma in question can be modified or
even removed before returning to the caller.  Take the lock (exclusively)
in order to avoid races while iterating through the vmacache and/or
rbtree.

Signed-off-by: Jonathan Gonzalez V <zeus@gnu.org>
Signed-off-by: Davidlohr Bueso <davidlohr@hp.com>
Cc: Inki Dae <inki.dae@samsung.com>
Cc: Joonyoung Shim <jy0922.shim@samsung.com>
Cc: David Airlie <airlied@linux.ie>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/gpu/drm/exynos/exynos_drm_g2d.c