]> Pileus Git - ~andy/linux/commit
[media] fimc-lite: Don't use mutex_lock_interruptible() in device release()
authorSylwester Nawrocki <s.nawrocki@samsung.com>
Thu, 22 Nov 2012 14:13:04 +0000 (11:13 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Mon, 26 Nov 2012 20:31:20 +0000 (18:31 -0200)
commitddc43d6dc7df0849fe41b91460fa76145cf87b67
tree4d13ed4b30b0376637d6e63d77352f1e5fd1b681
parentba6b372cf0af564bdc6c14bf68e078ae34bef222
[media] fimc-lite: Don't use mutex_lock_interruptible() in device release()

Use uninterruptible mutex_lock in the release() file op to make
sure all resources are properly freed when a process is being
terminated. Returning -ERESTARTSYS has no effect for a terminating
process and this may cause driver resources not to be released.
This patch is required for stable kernels v3.5+.

Reported-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/platform/s5p-fimc/fimc-lite.c