From: Michal Nazarewicz <mpn@google.com>
To: David Rientjes <rientjes@google.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Marek Szyprowski <m.szyprowski@samsung.com>,
linux-mm@kvack.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] cma: use unsigned type for count argument
Date: Thu, 27 Dec 2012 03:05:49 +0100 [thread overview]
Message-ID: <xa1tzk10ntaa.fsf@mina86.com> (raw)
In-Reply-To: <alpine.DEB.2.00.1212261755450.4150@chino.kir.corp.google.com>
[-- Attachment #1: Type: text/plain, Size: 1385 bytes --]
> On Sat, 22 Dec 2012, Michal Nazarewicz wrote:
>> So I think just adding the following, should be sufficient to make
>> everyone happy:
>>
>> diff --git a/drivers/base/dma-contiguous.c b/drivers/base/dma-contiguous.c
>> index e34e3e0..e91743b 100644
>> --- a/drivers/base/dma-contiguous.c
>> +++ b/drivers/base/dma-contiguous.c
>> @@ -320,7 +320,7 @@ struct page *dma_alloc_from_contiguous(struct device *dev, unsigned int count,
>> pr_debug("%s(cma %p, count %u, align %u)\n", __func__, (void *)cma,
>> count, align);
>>
>> - if (!count)
>> + if (!count || count > INT_MAX)
>> return NULL;
>>
>> mask = (1 << align) - 1;
>
On Thu, Dec 27 2012, David Rientjes <rientjes@google.com> wrote:
> How is this different than leaving the formal to have a signed type, i.e.
> drop your patch, and testing for count <= 0 instead?
Not much different I guess. I don't have strong opinions to be honest,
except that I feel unsigned is the proper type to use, on top of which
I think bitmap_set() should use unsigned, so in case anyone ever bothers
to change it, CMA will be ready. :P
--
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--
[-- Attachment #2.1: Type: text/plain, Size: 0 bytes --]
[-- Attachment #2.2: Type: application/pgp-signature, Size: 835 bytes --]
prev parent reply other threads:[~2012-12-27 2:05 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-19 17:44 [PATCH] cma: use unsigned type for count argument Michal Nazarewicz
2012-12-19 17:44 ` Michal Nazarewicz
2012-12-20 23:35 ` Andrew Morton
2012-12-20 23:35 ` Andrew Morton
2012-12-21 0:03 ` David Rientjes
2012-12-21 0:03 ` David Rientjes
2012-12-22 15:31 ` Michal Nazarewicz
2012-12-27 1:59 ` David Rientjes
2012-12-27 1:59 ` David Rientjes
2012-12-27 2:05 ` Michal Nazarewicz [this message]
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=xa1tzk10ntaa.fsf@mina86.com \
--to=mpn@google.com \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=m.szyprowski@samsung.com \
--cc=rientjes@google.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 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.