12 Dec, 2011

3 commits


20 Nov, 2011

1 commit


30 May, 2011

1 commit

  • Documentation/CodingStyle recommends to use the form

    p = kmalloc(sizeof(*p), ...);

    to calculate the size of a struct and not the version where the struct
    name is spelled out to prevent bugs when the type of p changes. This
    also seems appropriate for manipulation of buffers when they are
    directly associated with p.

    Signed-off-by: Sven Eckelmann

    Sven Eckelmann
     

02 May, 2011

1 commit


18 Apr, 2011

1 commit

  • The rcu protected macros rcu_dereference() and rcu_assign_pointer()
    for the orig_node->router need to be used, as well as spin/rcu locking.
    Otherwise we might end up using a router pointer pointing to already
    freed memory.

    Therefore this commit introduces the safe getter method
    orig_node_get_router().

    Signed-off-by: Linus Lüssing
    Signed-off-by: Marek Lindner
    Signed-off-by: Sven Eckelmann

    Linus Lüssing
     

05 Mar, 2011

5 commits


12 Feb, 2011

1 commit


31 Jan, 2011

1 commit


17 Dec, 2010

1 commit

  • B.A.T.M.A.N. (better approach to mobile ad-hoc networking) is a routing
    protocol for multi-hop ad-hoc mesh networks. The networks may be wired or
    wireless. See http://www.open-mesh.org/ for more information and user space
    tools.

    Signed-off-by: Sven Eckelmann
    Signed-off-by: David S. Miller

    Sven Eckelmann