18 Jan, 2020

3 commits


03 Dec, 2019

1 commit


05 Sep, 2019

5 commits


27 Jul, 2018

3 commits


14 Jun, 2018

1 commit


10 Sep, 2016

1 commit


23 Aug, 2016

10 commits


06 Jul, 2016

1 commit


22 Jun, 2016

1 commit


19 Apr, 2015

7 commits


25 Jun, 2013

1 commit

  • This patch tackles the time out problem which leads to break the
    boot process, when loading file over nfs. The patch does two things.

    First of all, we just ignore messages that arrive with a rpc_id smaller
    then the client id. We just interpret this messages as answers to
    formaly timed out messages.

    Second, when a time out occurs we double the time to wait, so that we
    do not stress the server resending the last message.

    Signed-off-by: Matthias Brugger
    Tested-by: Enric Balletbo i Serra

    Matthias Brugger
     

13 Jul, 2012

1 commit


24 May, 2012

3 commits


16 May, 2012

1 commit


07 Dec, 2011

1 commit

  • When building u-boot as 64 bit application (e.g. sandbox) ulong might be
    64 bits in size. This breaks network code as IPaddr_t is 64 bytes in
    size then and an IPv4 address is 32 bits in size. This patch makes sure
    that IPaddr_t is always 32 bits in size. Also some warnings introduced
    by this patch are fixed.

    Signed-off-by: Matthias Weisser
    Acked-by: Mike Frysinger

    Matthias Weisser