lkml.org 
[lkml]   [2005]   [Sep]   [20]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Date
    From
    SubjectRe: p = kmalloc(sizeof(*p), )
    On Tue, Sep 20, 2005 at 03:20:18PM +0300, Pekka J Enberg wrote:
    > Well, yes, but for initialization, I would prefer something like what Al
    > Viro suggested. To me, initialization is a separate issue from kmalloc. I
    > do get your point but I just don't think sizeof(struct foo) is the answer.

    No matter, and no matter what CodingStyle says, I won't be changing
    my style of kmalloc for something which I disagree with.

    Since some of the other major contributors to the kernel appear to
    also disagree with the statement, I think that the entry in
    CodingStyle must be removed.

    Plus, this means that kernel janitors should _not_ fix up code to
    follow the sizeof(*p) style.

    ---

    It isn't clear that the use of p = kmalloc(sizeof(*p), ...) is
    preferred over p = kmalloc(sizeof(struct foo), ...) - in fact,
    there are some good reasons to use the latter form.

    Therefore, the choice of which to use should be left up to the
    developer concerned, and not written in to the coding style.

    For discussion, please see the thread:
    http://lkml.org/lkml/2005/9/18/29

    Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

    diff --git a/Documentation/CodingStyle b/Documentation/CodingStyle
    --- a/Documentation/CodingStyle
    +++ b/Documentation/CodingStyle
    @@ -410,26 +410,7 @@ Kernel messages do not have to be termin
    Printing numbers in parentheses (%d) adds no value and should be avoided.


    - Chapter 13: Allocating memory
    -
    -The kernel provides the following general purpose memory allocators:
    -kmalloc(), kzalloc(), kcalloc(), and vmalloc(). Please refer to the API
    -documentation for further information about them.
    -
    -The preferred form for passing a size of a struct is the following:
    -
    - p = kmalloc(sizeof(*p), ...);
    -
    -The alternative form where struct name is spelled out hurts readability and
    -introduces an opportunity for a bug when the pointer variable type is changed
    -but the corresponding sizeof that is passed to a memory allocator is not.
    -
    -Casting the return value which is a void pointer is redundant. The conversion
    -from void pointer to any other pointer type is guaranteed by the C programming
    -language.
    -
    -
    - Chapter 14: References
    + Chapter 13: References

    The C Programming Language, Second Edition
    by Brian W. Kernighan and Dennis M. Ritchie.


    --
    Russell King
    Linux kernel 2.6 ARM Linux - http://www.arm.linux.org.uk/
    maintainer of: 2.6 Serial core
    -
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at http://www.tux.org/lkml/

    \
     
     \ /
      Last update: 2005-09-20 14:34    [W:3.067 / U:0.556 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site