[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <FE5A0944-E520-4D3F-987E-A357411DD60B@gmail.com>
Date: Mon, 13 Feb 2012 10:08:05 -0500
From: Xi Wang <xi.wang@...il.com>
To: Andrew Morton <akpm@...ux-foundation.org>
Cc: Jesper Juhl <jj@...osbits.net>, Jens Axboe <axboe@...nel.dk>,
Pekka Enberg <penberg@...nel.org>,
Dan Carpenter <dan.carpenter@...cle.com>,
linux-kernel@...r.kernel.org, Christoph Lameter <cl@...ux.com>,
Matt Mackall <mpm@...enic.com>,
David Rientjes <rientjes@...gle.com>
Subject: Re: [PATCH RFC v2] slab: introduce kmalloc_array
Here goes a quick summary.
Proposed names
==============
kaalloc (Alexey Dobriyan)
kcallocn (Andrew Morton)
kmalloc_array (Pekka Enberg)
knalloc (Andrew Morton, Xi Wang)
kncalloc (Andrew Morton)
Other changes
=============
Documentation/CodingStyle "Chapter 14: Allocating memory"
* Mention the new array allocator whatever-it-is-called.
* Add some description:
"The preferred form for allocating an array is the following:
p = whatever-it-is-called(n, sizeof(...), ...);
To return zeroed items, the preferred form is the following:
p = kcalloc(n, sizeof(...), ...);
Both forms avoid overflowing the allocation size n * sizeof(...)."
* Add some checkpatch rule?
- xi
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists