03 Apr, 2009

1 commit

  • Impact: cleanup

    fs/befs/debug.c depends on slab.h without including it. Upcoming
    changes for kmemtrace would break the build:

    CC fs/befs/debug.o
    fs/befs/debug.c: In function ‘befs_error’:
    fs/befs/debug.c:31: error: implicit declaration of function ‘kmalloc’
    fs/befs/debug.c:31: warning: initialization makes pointer from integer without a cast
    fs/befs/debug.c:42: error: implicit declaration of function ‘kfree’
    fs/befs/debug.c: In function ‘befs_warning’:
    fs/befs/debug.c:49: warning: initialization makes pointer from integer without a cast
    fs/befs/debug.c: In function ‘befs_debug’:
    fs/befs/debug.c:73: warning: assignment makes pointer from integer without a cast
    make[1]: *** [fs/befs/debug.o] Error 1
    make: *** [fs/befs/] Error 2

    So add the dependency explicitly.

    Signed-off-by: Pekka Enberg
    Cc: Eduard - Gabriel Munteanu
    LKML-Reference:
    Signed-off-by: Ingo Molnar

    Pekka Enberg
     

14 Dec, 2006

1 commit

  • Run this:

    #!/bin/sh
    for f in $(grep -Erl "\([^\)]*\) *k[cmz]alloc" *) ; do
    echo "De-casting $f..."
    perl -pi -e "s/ ?= ?\([^\)]*\) *(k[cmz]alloc) *\(/ = \1\(/" $f
    done

    And then go through and reinstate those cases where code is casting pointers
    to non-pointers.

    And then drop a few hunks which conflicted with outstanding work.

    Cc: Russell King , Ian Molton
    Cc: Mikael Starvik
    Cc: Yoshinori Sato
    Cc: Roman Zippel
    Cc: Geert Uytterhoeven
    Cc: Ralf Baechle
    Cc: Paul Mackerras
    Cc: Kyle McMartin
    Cc: Benjamin Herrenschmidt
    Cc: Martin Schwidefsky
    Cc: "David S. Miller"
    Cc: Jeff Dike
    Cc: Greg KH
    Cc: Jens Axboe
    Cc: Paul Fulghum
    Cc: Alan Cox
    Cc: Karsten Keil
    Cc: Mauro Carvalho Chehab
    Cc: Jeff Garzik
    Cc: James Bottomley
    Cc: Ian Kent
    Cc: Steven French
    Cc: David Woodhouse
    Cc: Neil Brown
    Cc: Jaroslav Kysela
    Cc: Takashi Iwai
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Robert P. J. Day
     

11 Oct, 2006

3 commits


17 Apr, 2005

1 commit

  • Initial git repository build. I'm not bothering with the full history,
    even though we have it. We can create a separate "historical" git
    archive of that later if we want to, and in the meantime it's about
    3.2GB when imported into git - space that would just make the early
    git days unnecessarily complicated, when we don't have a lot of good
    infrastructure for it.

    Let it rip!

    Linus Torvalds