mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Michal Nazarewicz" <mina86@mina86.com>
To: m.szyprowski@samsung.com, "Barry Song" <Barry.Song@csr.com>
Cc: linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, workgroup.linux@csr.com,
	"Barry Song" <Baohua.Song@csr.com>
Subject: Re: [PATCH v3] MM: CMA: add a simple kernel module as the helper to test CMA
Date: Wed, 07 Mar 2012 11:59:03 +0100	[thread overview]
Message-ID: <op.wasrgptm3l0zgt@mpn-glaptop> (raw)
In-Reply-To: <1331090098-25097-1-git-send-email-Barry.Song@csr.com>

Thanks!  Some minor comments, hopefully last ones:

On Wed, 07 Mar 2012 04:14:58 +0100, Barry Song <Barry.Song@csr.com> wrote:
> +static ssize_t
> +cma_test_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
> +{

[...]

> +	_dev_info(cma_dev, "free: CM virt: %p dma: %p size:%uK\n",

This should read: “size: %zuK”.  “z” is the proper modifier to use for size_t type.

> +		alloc->virt, (void *)alloc->dma, alloc->size / SZ_1K);
> +	kfree(alloc);
> +
> +	return 0;
> +}

> +static ssize_t
> +cma_test_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
> +{
> +	struct cma_allocation *alloc;
> +	size_t size;
> +	int ret;
> +
> +	ret = kstrtouint_from_user(buf, count, 0, &size);

kstrtouint_from_user() expects pointer to unsigned int, size_t is not always
unsigned int.  It may be unsigned long.  As such, size should be of type
unsigned long and this line should use kstrtoulong_from_user().

[...]

> +	if (alloc->virt) {
> +		_dev_info(cma_dev, "alloc: virt: %p dma: %p size: %uK\n",
> +			alloc->virt, (void *)alloc->dma, size);

Like previously, this should be “size: %zuK”.

[...]

> +}

-- 
Best regards,                                         _     _
.o. | Liege of Serenely Enlightened Majesty of      o' \,=./ `o
..o | Computer Science,  Michał “mina86” Nazarewicz    (o o)
ooo +----<email/xmpp: mpn@google.com>--------------ooO--(_)--Ooo--

  parent reply	other threads:[~2012-03-07 10:59 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-07  3:14 Barry Song
2012-03-07  4:14 ` Cong Wang
2012-03-07  4:49   ` Barry Song
2012-03-07  4:55     ` Cong Wang
2012-03-07  4:57       ` Barry Song
2012-03-07  5:01         ` Cong Wang
2012-03-07  5:05           ` Barry Song
2012-03-07  5:09             ` Cong Wang
2012-03-07  5:17               ` Barry Song
2012-03-07  5:22                 ` Cong Wang
2012-03-07  5:40                   ` Barry Song
2012-03-07 10:38           ` Barry Song
2012-03-07 10:48   ` Michal Nazarewicz
2012-03-07 10:55     ` Barry Song
2012-03-07 10:59 ` Michal Nazarewicz [this message]
2012-03-07 11:12   ` Barry Song

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=op.wasrgptm3l0zgt@mpn-glaptop \
    --to=mina86@mina86.com \
    --cc=Baohua.Song@csr.com \
    --cc=Barry.Song@csr.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=m.szyprowski@samsung.com \
    --cc=workgroup.linux@csr.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®