23 May, 2011

4 commits


16 May, 2011

10 commits


18 Apr, 2011

1 commit


12 Apr, 2011

5 commits


31 Mar, 2011

1 commit


09 Feb, 2011

2 commits


20 Jan, 2011

1 commit

  • Clean up some unused macros in net/*.
    1. be left for code change. e.g. PGV_FROM_VMALLOC, PGV_FROM_VMALLOC, KMEM_SAFETYZONE.
    2. never be used since introduced to kernel.
    e.g. P9_RDMA_MAX_SGE, UTIL_CTRL_PKT_SIZE.

    Signed-off-by: Shan Wei
    Acked-by: Sjur Braendeland
    Signed-off-by: David S. Miller

    Shan Wei
     

16 Jan, 2011

1 commit

  • In the original code we check if (servl == NULL) twice. The first time
    should print the message that cfmuxl_remove_uplayer() failed and set
    "ret" correctly, but instead it just returns success. The second check
    should be checking the value of "ret" instead of "servl".

    Signed-off-by: Dan Carpenter
    Acked-by: Sjur Braendeland
    Signed-off-by: David S. Miller

    Dan Carpenter
     

11 Jan, 2011

2 commits


23 Nov, 2010

1 commit

  • Changed Makefile to use -y instead of -objs
    because -objs is deprecated and not mentioned in
    Documentation/kbuild/makefiles.txt.

    Also, use the ccflags-$ flag instead of EXTRA_CFLAGS because EXTRA_CFLAGS is
    deprecated and should now be switched.

    Last but not least, took out if-conditionals.

    Signed-off-by: Tracey Dent
    Signed-off-by: David S. Miller

    Tracey Dent
     

04 Nov, 2010

2 commits


07 Oct, 2010

1 commit


06 Oct, 2010

1 commit

  • caif_connect() might dereference a netdevice after dev_put() it.

    It also doesnt check dev_get_by_index() return value and could
    dereference a NULL pointer.

    Fix it, using RCU to avoid taking a reference.

    Signed-off-by: Eric Dumazet
    CC: Sjur Braendeland
    Signed-off-by: David S. Miller

    Eric Dumazet
     

05 Oct, 2010

1 commit


22 Sep, 2010

4 commits


10 Sep, 2010

1 commit


07 Sep, 2010

2 commits

  • Convert pr_("%s" ..., (struct netdev *)->name ...)
    to netdev_((struct netdev *), ...)

    Signed-off-by: Joe Perches
    Signed-off-by: David S. Miller

    Joe Perches
     
  • This patch standardizes caif message logging prefixes.

    Add #define pr_fmt(fmt) KBUILD_MODNAME ":%s(): " fmt, __func__
    Add missing "\n"s to some logging messages
    Convert pr_warning to pr_warn

    This changes the logging message prefix from CAIF: to caif:
    for all uses but caif_socket.c and chnl_net.c. Those now use
    their filename without extension.

    Signed-off-by: Joe Perches
    Signed-off-by: David S. Miller

    Joe Perches