29 Jan, 2009

1 commit

  • In rare circumstances csum_partial() can be called with data which is
    not 16 or 32 bit aligned. This is been observed with RPC calls for NFS
    file systems for example. Add support for handling this without resorting
    to the misaligned fixup code (which is why this hasn't been seen as a
    problem). This mimics the i386 version, which has had this support for
    some time.

    Signed-off-by: Stuart Menefy
    Signed-off-by: Paul Mundt

    Stuart Menefy
     

27 Sep, 2006

1 commit

  • There's a bug in the Hitachi SuperH csum_partial_copy_generic()
    implementation. If the supplied length is 1 (and several alignment
    conditions are met), the function immediately branches to label 4.
    However, the assembly at label 4 expects the length to be stored in
    register r2. Since this has not occurred, subsequent behavior is
    undefined.

    This can cause bad payload checksums in TCP connections.

    I've fixed the problem by initializing register r2 prior to the branch
    instruction.

    Signed-off-by: Ollie Wild
    Signed-off-by: Paul Mundt

    Ollie Wild
     

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