All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] pxa2xx_spi: fix memory corruption
@ 2011-07-09 21:14 ` Vasily Khoruzhick
  0 siblings, 0 replies; 44+ messages in thread
From: Vasily Khoruzhick @ 2011-07-09 21:14 UTC (permalink / raw)
  To: linux-arm-kernel, Eric Miao, spi-devel-general; +Cc: Vasily Khoruzhick

pxa2xx_spi_probe allocates struct driver_data and null_dma_buf
at same time via spi_alloc_master(), but then calculates
null_dma_buf pointer incorrectly, and it causes memory corruption
later if DMA usage is enabled.

Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com>
---
 drivers/spi/pxa2xx_spi.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/spi/pxa2xx_spi.c b/drivers/spi/pxa2xx_spi.c
index dc25bee..ef38fbf 100644
--- a/drivers/spi/pxa2xx_spi.c
+++ b/drivers/spi/pxa2xx_spi.c
@@ -1569,7 +1569,7 @@ static int __devinit pxa2xx_spi_probe(struct platform_device *pdev)
 	master->transfer = transfer;
 
 	drv_data->ssp_type = ssp->type;
-	drv_data->null_dma_buf = (u32 *)ALIGN((u32)(drv_data +
+	drv_data->null_dma_buf = (u32 *)ALIGN(((u32)drv_data +
 						sizeof(struct driver_data)), 8);
 
 	drv_data->ioaddr = ssp->mmio_base;
-- 
1.7.5.rc3

^ permalink raw reply related	[flat|nested] 44+ messages in thread

end of thread, other threads:[~2011-12-08  8:19 UTC | newest]

Thread overview: 44+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-09 21:14 [PATCH] pxa2xx_spi: fix memory corruption Vasily Khoruzhick
2011-07-09 21:14 ` Vasily Khoruzhick
2011-07-09 23:05 ` Marek Vasut
2011-07-09 23:05   ` Marek Vasut
2011-07-09 23:11   ` Russell King - ARM Linux
2011-07-09 23:11     ` Russell King - ARM Linux
2011-07-10  7:14     ` Marek Vasut
2011-07-10  7:14       ` Marek Vasut
     [not found]       ` <201107100914.45452.marek.vasut-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2011-07-10  7:57         ` Marek Vasut
2011-07-10  7:57           ` Marek Vasut
2011-07-10 12:09           ` [PATCH v2] " Vasily Khoruzhick
2011-07-10 12:09             ` Vasily Khoruzhick
2011-07-10 12:43             ` Marek Vasut
2011-07-10 12:43               ` Marek Vasut
2011-07-10 13:09               ` Vasily Khoruzhick
2011-07-10 13:09                 ` Vasily Khoruzhick
2011-07-10 15:18                 ` [PATCH v3] " Vasily Khoruzhick
2011-07-10 15:18                   ` Vasily Khoruzhick
     [not found]                   ` <1310311099-24638-1-git-send-email-anarsoul-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2011-07-14 12:17                     ` Vasily Khoruzhick
2011-07-14 12:17                       ` Vasily Khoruzhick
     [not found]                       ` <201107141517.36147.anarsoul-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2011-07-14 12:21                         ` Marek Vasut
2011-07-14 12:21                           ` Marek Vasut
2011-07-15  2:53                     ` Grant Likely
2011-07-15  2:53                       ` Grant Likely
2011-07-15  8:12                       ` Russell King - ARM Linux
2011-07-15  8:12                         ` Russell King - ARM Linux
     [not found]                         ` <20110715081242.GM23270-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2011-07-15 19:50                           ` Grant Likely
2011-07-15 19:50                             ` Grant Likely
2011-07-15 20:24                             ` Russell King - ARM Linux
2011-07-15 20:24                               ` Russell King - ARM Linux
2011-07-15 21:31                               ` Grant Likely
2011-07-15 21:31                                 ` Grant Likely
2011-07-18 10:10                                 ` Russell King - ARM Linux
2011-07-18 10:10                                   ` Russell King - ARM Linux
2011-07-18  7:56                       ` Vasily Khoruzhick
2011-07-18  7:56                         ` Vasily Khoruzhick
     [not found]                         ` <201107181056.51782.anarsoul-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2011-11-29 14:05                           ` Vasily Khoruzhick
2011-11-29 14:05                             ` Vasily Khoruzhick
2011-11-29 14:31                             ` Marek Vasut
2011-11-29 14:31                               ` Marek Vasut
2011-12-07 20:35                             ` Wolfram Sang
2011-12-07 20:35                               ` Wolfram Sang
     [not found]                               ` <20111207203559.GB3744-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2011-12-08  8:19                                 ` [RESEND PATCH " Vasily Khoruzhick
2011-12-08  8:19                                   ` Vasily Khoruzhick

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.