13 Jul, 2007

1 commit

  • This should be the last big batch of whitespace/formatting fixes.
    checkpatch warnings for the cifs directory are down about 90% and
    many of the remaining ones are harder to remove or make the code
    harder to read.

    Signed-off-by: Steve French

    Steve French
     

09 Jul, 2007

1 commit


07 Jul, 2007

1 commit


06 Mar, 2007

1 commit


08 Dec, 2006

3 commits

  • Replace all uses of kmem_cache_t with struct kmem_cache.

    The patch was generated using the following script:

    #!/bin/sh
    #
    # Replace one string by another in all the kernel sources.
    #

    set -e

    for file in `find * -name "*.c" -o -name "*.h"|xargs grep -l $1`; do
    quilt add $file
    sed -e "1,\$s/$1/$2/g" $file >/tmp/$$
    mv /tmp/$$ $file
    quilt refresh
    done

    The script was run like this

    sh replace kmem_cache_t "struct kmem_cache"

    Signed-off-by: Christoph Lameter
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Christoph Lameter
     
  • SLAB_KERNEL is an alias of GFP_KERNEL.

    Signed-off-by: Christoph Lameter
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Christoph Lameter
     
  • SLAB_NOFS is an alias of GFP_NOFS.

    Signed-off-by: Christoph Lameter
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Christoph Lameter
     

12 Aug, 2006

4 commits


01 Jun, 2006

1 commit


27 Feb, 2006

1 commit


24 Jan, 2006

1 commit


13 Jan, 2006

1 commit


13 Dec, 2005

1 commit


03 Dec, 2005

1 commit


30 Nov, 2005

1 commit


17 Nov, 2005

1 commit


12 Oct, 2005

1 commit


11 Oct, 2005

2 commits


08 Oct, 2005

1 commit


06 Oct, 2005

2 commits


04 Oct, 2005

2 commits


23 Sep, 2005

1 commit


16 Sep, 2005

1 commit


21 Aug, 2005

1 commit


24 Jun, 2005

1 commit


14 Jun, 2005

1 commit


29 Apr, 2005

5 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