07 Feb, 2007

1 commit

  • csum_fold doesn't need two assembly instructions to perform its task,
    it can simply add the high and low parts together by rotating by 16
    bits, and the carry into the upper-16 bits will automatically happen.

    Also, since csum_tcpudp_magic() is just csum_tcpudp_nofold + csum_fold,
    use those two functions to achieve this. Also note that there is a
    csum_fold() at the end of ip_fast_csum() as well, so use the real
    csum_fold() there as well.

    Boot tested on Versatile.

    Signed-off-by: Russell King

    Russell King
     

03 Dec, 2006

1 commit


02 Feb, 2006

1 commit


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