Revision 2cff98b99c469880ce830cbcde015b53b67e0a7b authored by Dean Nelson on 29 April 2015, 15:09:18 UTC, committed by Will Deacon on 29 April 2015, 16:39:39 UTC
__dma_alloc() does a PAGE_ALIGN() on the passed in size argument before
doing anything else. __dma_free() does not. And because it doesn't, it is
possible to leak memory should size not be an integer multiple of PAGE_SIZE.

The solution is to add a PAGE_ALIGN() to __dma_free() like is done in
__dma_alloc().

Additionally, this patch removes a redundant PAGE_ALIGN() from
__dma_alloc_coherent(), since __dma_alloc_coherent() can only be called
from __dma_alloc(), which already does a PAGE_ALIGN() before the call.

Cc: stable@vger.kernel.org
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Dean Nelson <dnelson@redhat.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
1 parent 6829e27
History
File Mode Size
Kconfig -rw-r--r-- 4.8 KB
Makefile -rw-r--r-- 809 bytes
bitblit.c -rw-r--r-- 10.6 KB
dummycon.c -rw-r--r-- 1.7 KB
fbcon.c -rw-r--r-- 88.2 KB
fbcon.h -rw-r--r-- 7.2 KB
fbcon_ccw.c -rw-r--r-- 10.6 KB
fbcon_cw.c -rw-r--r-- 10.4 KB
fbcon_rotate.c -rw-r--r-- 2.5 KB
fbcon_rotate.h -rw-r--r-- 2.3 KB
fbcon_ud.c -rw-r--r-- 11.6 KB
mdacon.c -rw-r--r-- 13.9 KB
newport_con.c -rw-r--r-- 20.1 KB
softcursor.c -rw-r--r-- 2.0 KB
sticon.c -rw-r--r-- 9.4 KB
sticore.c -rw-r--r-- 27.7 KB
tileblit.c -rw-r--r-- 3.8 KB
vgacon.c -rw-r--r-- 41.0 KB

back to top