Re: [U-Boot] [PATCH v5 15/27] dm: eth: Pass the packet pointer as a parameter to recv

2015-03-10 Thread Joe Hershberger
On Wed, Mar 4, 2015 at 12:35 PM, Simon Glass s...@chromium.org wrote: Hi Joe, On 3 March 2015 at 19:41, Joe Hershberger joe.hershber...@ni.com wrote: Stop forcing drivers to call net_process_received_packet() - formerly called NetReceive(). Now the uclass will handle calling the driver for

Re: [U-Boot] [PATCH v5 15/27] dm: eth: Pass the packet pointer as a parameter to recv

2015-03-10 Thread Simon Glass
Hi Joe, On 10 March 2015 at 16:28, Joe Hershberger joe.hershber...@gmail.com wrote: On Wed, Mar 4, 2015 at 12:35 PM, Simon Glass s...@chromium.org wrote: Hi Joe, On 3 March 2015 at 19:41, Joe Hershberger joe.hershber...@ni.com wrote: Stop forcing drivers to call

Re: [U-Boot] [PATCH v5 15/27] dm: eth: Pass the packet pointer as a parameter to recv

2015-03-10 Thread Joe Hershberger
On Tue, Mar 10, 2015 at 6:31 PM, Simon Glass s...@chromium.org wrote: Hi Joe, On 10 March 2015 at 16:28, Joe Hershberger joe.hershber...@gmail.com wrote: On Wed, Mar 4, 2015 at 12:35 PM, Simon Glass s...@chromium.org wrote: Hi Joe, On 3 March 2015 at 19:41, Joe Hershberger

Re: [U-Boot] [PATCH v5 15/27] dm: eth: Pass the packet pointer as a parameter to recv

2015-03-04 Thread Simon Glass
Hi Joe, On 3 March 2015 at 19:41, Joe Hershberger joe.hershber...@ni.com wrote: Stop forcing drivers to call net_process_received_packet() - formerly called NetReceive(). Now the uclass will handle calling the driver for each packet until the driver errors or has nothing to return. The uclass

[U-Boot] [PATCH v5 15/27] dm: eth: Pass the packet pointer as a parameter to recv

2015-03-03 Thread Joe Hershberger
Stop forcing drivers to call net_process_received_packet() - formerly called NetReceive(). Now the uclass will handle calling the driver for each packet until the driver errors or has nothing to return. The uclass will then pass the good packets off to the network stack by calling