From: Hans Verkuil <hverkuil@xs4all.nl>
To: "Krzysztof Hałasa" <khalasa@piap.pl>
Cc: linux-media <linux-media@vger.kernel.org>,
ismael.luceno@corp.bluecherry.net
Subject: Re: [PATCH] SOLO6x10: don't do DMA from stack in solo_dma_vin_region().
Date: Mon, 30 Sep 2013 09:51:45 +0200 [thread overview]
Message-ID: <52492D91.1030806@xs4all.nl> (raw)
In-Reply-To: <m37gemb51b.fsf@t19.piap.pl>
Ismael,
Can you Ack these four patches?
Regards,
Hans
On 09/12/2013 02:25 PM, Krzysztof Hałasa wrote:
> Signed-off-by: Krzysztof Hałasa <khalasa@piap.pl>
>
> diff --git a/drivers/staging/media/solo6x10/solo6x10-disp.c b/drivers/staging/media/solo6x10/solo6x10-disp.c
> index 32d9953..884512e 100644
> --- a/drivers/staging/media/solo6x10/solo6x10-disp.c
> +++ b/drivers/staging/media/solo6x10/solo6x10-disp.c
> @@ -176,18 +176,26 @@ static void solo_vout_config(struct solo_dev *solo_dev)
> static int solo_dma_vin_region(struct solo_dev *solo_dev, u32 off,
> u16 val, int reg_size)
> {
> - u16 buf[64];
> - int i;
> - int ret = 0;
> + u16 *buf;
> + const int n = 64, size = n * sizeof(*buf);
> + int i, ret = 0;
> +
> + if (!(buf = kmalloc(size, GFP_KERNEL)))
> + return -ENOMEM;
>
> - for (i = 0; i < sizeof(buf) >> 1; i++)
> + for (i = 0; i < n; i++)
> buf[i] = cpu_to_le16(val);
>
> - for (i = 0; i < reg_size; i += sizeof(buf))
> - ret |= solo_p2m_dma(solo_dev, 1, buf,
> - SOLO_MOTION_EXT_ADDR(solo_dev) + off + i,
> - sizeof(buf), 0, 0);
> + for (i = 0; i < reg_size; i += size) {
> + ret = solo_p2m_dma(solo_dev, 1, buf,
> + SOLO_MOTION_EXT_ADDR(solo_dev) + off + i,
> + size, 0, 0);
> +
> + if (ret)
> + break;
> + }
>
> + kfree(buf);
> return ret;
> }
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
next prev parent reply other threads:[~2013-09-30 7:51 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-12 12:25 [PATCH] SOLO6x10: don't do DMA from stack in solo_dma_vin_region() Krzysztof Hałasa
2013-09-30 7:51 ` Hans Verkuil [this message]
2013-11-05 22:08 ` Ismael Luceno
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=52492D91.1030806@xs4all.nl \
--to=hverkuil@xs4all.nl \
--cc=ismael.luceno@corp.bluecherry.net \
--cc=khalasa@piap.pl \
--cc=linux-media@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.