* [PATCH v2] arm: davinci: fix edma dmaengine induced null pointer dereference on da830
@ 2013-03-05 15:58 Matt Porter
2013-03-06 16:57 ` Tomas Novotny
0 siblings, 1 reply; 3+ messages in thread
From: Matt Porter @ 2013-03-05 15:58 UTC (permalink / raw)
To: linux-arm-kernel
This adds additional error checking to the private edma api implementation
to catch the case where the edma_alloc_slot() has an invalid controller
parameter. The edma dmaengine wrapper driver relies on this condition
being handled in order to avoid setting up a second edma dmaengine
instance on DA830.
Verfied using a DA850 with the second EDMA controller platform instance
removed to simulate a DA830 which only has a single EDMA controller.
Reported-by: Tomas Novotny <tomas@novotny.cz>
Signed-off-by: Matt Porter <mporter@ti.com>
Cc: stable at vger.kernel.org # v3.7.x+
---
v2: Move error check out of conditional to catch all cases
arch/arm/mach-davinci/dma.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/arch/arm/mach-davinci/dma.c b/arch/arm/mach-davinci/dma.c
index a685e97..45b7c71 100644
--- a/arch/arm/mach-davinci/dma.c
+++ b/arch/arm/mach-davinci/dma.c
@@ -743,6 +743,9 @@ EXPORT_SYMBOL(edma_free_channel);
*/
int edma_alloc_slot(unsigned ctlr, int slot)
{
+ if (!edma_cc[ctlr])
+ return -EINVAL;
+
if (slot >= 0)
slot = EDMA_CHAN_SLOT(slot);
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH v2] arm: davinci: fix edma dmaengine induced null pointer dereference on da830
2013-03-05 15:58 [PATCH v2] arm: davinci: fix edma dmaengine induced null pointer dereference on da830 Matt Porter
@ 2013-03-06 16:57 ` Tomas Novotny
2013-03-12 10:15 ` Sekhar Nori
0 siblings, 1 reply; 3+ messages in thread
From: Tomas Novotny @ 2013-03-06 16:57 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, 5 Mar 2013 10:58:22 -0500
Matt Porter <mporter@ti.com> wrote:
> This adds additional error checking to the private edma api implementation
> to catch the case where the edma_alloc_slot() has an invalid controller
> parameter. The edma dmaengine wrapper driver relies on this condition
> being handled in order to avoid setting up a second edma dmaengine
> instance on DA830.
>
> Verfied using a DA850 with the second EDMA controller platform instance
> removed to simulate a DA830 which only has a single EDMA controller.
>
> Reported-by: Tomas Novotny <tomas@novotny.cz>
> Signed-off-by: Matt Porter <mporter@ti.com>
> Cc: stable at vger.kernel.org # v3.7.x+
> ---
> v2: Move error check out of conditional to catch all cases
>
> arch/arm/mach-davinci/dma.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/arch/arm/mach-davinci/dma.c b/arch/arm/mach-davinci/dma.c
> index a685e97..45b7c71 100644
> --- a/arch/arm/mach-davinci/dma.c
> +++ b/arch/arm/mach-davinci/dma.c
> @@ -743,6 +743,9 @@ EXPORT_SYMBOL(edma_free_channel);
> */
> int edma_alloc_slot(unsigned ctlr, int slot)
> {
> + if (!edma_cc[ctlr])
> + return -EINVAL;
> +
> if (slot >= 0)
> slot = EDMA_CHAN_SLOT(slot);
>
On the TI AM1707 based custom board:
Tested-by: Tomas Novotny <tomas@novotny.cz>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH v2] arm: davinci: fix edma dmaengine induced null pointer dereference on da830
2013-03-06 16:57 ` Tomas Novotny
@ 2013-03-12 10:15 ` Sekhar Nori
0 siblings, 0 replies; 3+ messages in thread
From: Sekhar Nori @ 2013-03-12 10:15 UTC (permalink / raw)
To: linux-arm-kernel
On 3/6/2013 10:27 PM, Tomas Novotny wrote:
> On Tue, 5 Mar 2013 10:58:22 -0500
> Matt Porter <mporter@ti.com> wrote:
>
>> This adds additional error checking to the private edma api implementation
>> to catch the case where the edma_alloc_slot() has an invalid controller
>> parameter. The edma dmaengine wrapper driver relies on this condition
>> being handled in order to avoid setting up a second edma dmaengine
>> instance on DA830.
>>
>> Verfied using a DA850 with the second EDMA controller platform instance
>> removed to simulate a DA830 which only has a single EDMA controller.
>>
>> Reported-by: Tomas Novotny <tomas@novotny.cz>
>> Signed-off-by: Matt Porter <mporter@ti.com>
>> Cc: stable at vger.kernel.org # v3.7.x+
>> ---
>> v2: Move error check out of conditional to catch all cases
>>
>> arch/arm/mach-davinci/dma.c | 3 +++
>> 1 file changed, 3 insertions(+)
>>
>> diff --git a/arch/arm/mach-davinci/dma.c b/arch/arm/mach-davinci/dma.c
>> index a685e97..45b7c71 100644
>> --- a/arch/arm/mach-davinci/dma.c
>> +++ b/arch/arm/mach-davinci/dma.c
>> @@ -743,6 +743,9 @@ EXPORT_SYMBOL(edma_free_channel);
>> */
>> int edma_alloc_slot(unsigned ctlr, int slot)
>> {
>> + if (!edma_cc[ctlr])
>> + return -EINVAL;
>> +
>> if (slot >= 0)
>> slot = EDMA_CHAN_SLOT(slot);
>>
>
> On the TI AM1707 based custom board:
>
> Tested-by: Tomas Novotny <tomas@novotny.cz>
I tested it on DA830 EVM. Queuing this for v3.9-rc
Thanks,
Sekhar
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-03-12 10:15 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-05 15:58 [PATCH v2] arm: davinci: fix edma dmaengine induced null pointer dereference on da830 Matt Porter
2013-03-06 16:57 ` Tomas Novotny
2013-03-12 10:15 ` Sekhar Nori
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).