Re: [U-Boot] [PATCH 8/9] net: nfs: Use the tx buffer to construct rpc msgs

2016-09-07 Thread Guillaume Gardet
Le 07/09/2016 à 09:33, Guillaume Gardet a écrit : Le 06/09/2016 à 21:09, Joe Hershberger a écrit : On Tue, Sep 6, 2016 at 8:09 AM, Guillaume Gardet wrote: Hi Joe, I tested 2016.09-rc2 on a beagleboard xM and NFS does not work anymore! When I call the nfs command,

Re: [U-Boot] [PATCH 8/9] net: nfs: Use the tx buffer to construct rpc msgs

2016-09-07 Thread Guillaume Gardet
Le 06/09/2016 à 21:09, Joe Hershberger a écrit : On Tue, Sep 6, 2016 at 8:09 AM, Guillaume Gardet wrote: Hi Joe, I tested 2016.09-rc2 on a beagleboard xM and NFS does not work anymore! When I call the nfs command, I get a "data abort" error with a reboot of the

Re: [U-Boot] [PATCH 8/9] net: nfs: Use the tx buffer to construct rpc msgs

2016-09-06 Thread Joe Hershberger
On Tue, Sep 6, 2016 at 8:09 AM, Guillaume Gardet wrote: > Hi Joe, > > I tested 2016.09-rc2 on a beagleboard xM and NFS does not work anymore! > When I call the nfs command, I get a "data abort" error with a reboot of the > board! Yikes! > A git bisect point to this

Re: [U-Boot] [PATCH 8/9] net: nfs: Use the tx buffer to construct rpc msgs

2016-09-06 Thread Guillaume Gardet
Hi Joe, I tested 2016.09-rc2 on a beagleboard xM and NFS does not work anymore! When I call the nfs command, I get a "data abort" error with a reboot of the board! A git bisect point to this patch: "net: nfs: Use the tx buffer to construct rpc msgs" Could you have a look and fix it for the

[U-Boot] [PATCH 8/9] net: nfs: Use the tx buffer to construct rpc msgs

2016-08-15 Thread Joe Hershberger
Instead of always allocating a huge temporary buffer on the stack and then memcpy()ing the result into the transmit buffer, simply figure out where in the transmit buffer the bytes will belong and write them there directly as each message is built. Signed-off-by: Joe Hershberger