Re: [U-Boot] [PATCH] net: introduce packet capture support

2019-06-21 Thread Ramon Fried
On Fri, Jun 21, 2019 at 2:40 PM Alex Marginean wrote: > > Hi Ramon, > > On 6/14/2019 9:18 AM, Ramon Fried wrote: > > Add support for capturing ethernet packets and storing > > them in memory in PCAP(2.4) format, later to be analyzed by > > any PCAP viewer software (IE. Wireshark) > > > > This feat

Re: [U-Boot] [PATCH] net: introduce packet capture support

2019-06-21 Thread Alex Marginean
Hi Ramon, On 6/14/2019 9:18 AM, Ramon Fried wrote: Add support for capturing ethernet packets and storing them in memory in PCAP(2.4) format, later to be analyzed by any PCAP viewer software (IE. Wireshark) This feature greatly assist debugging network issues such as detecting dropped packets,

Re: [U-Boot] [PATCH] net: introduce packet capture support

2019-06-14 Thread Ramon Fried
On Fri, Jun 14, 2019 at 10:12 AM Bin Meng wrote: > Hi Ramon, > > On Fri, Jun 14, 2019 at 2:18 PM Ramon Fried wrote: > > > > Add support for capturing ethernet packets and storing > > them in memory in PCAP(2.4) format, later to be analyzed by > > any PCAP viewer software (IE. Wireshark) > > > >

Re: [U-Boot] [PATCH] net: introduce packet capture support

2019-06-14 Thread Bin Meng
Hi Ramon, On Fri, Jun 14, 2019 at 2:18 PM Ramon Fried wrote: > > Add support for capturing ethernet packets and storing > them in memory in PCAP(2.4) format, later to be analyzed by > any PCAP viewer software (IE. Wireshark) > > This feature greatly assist debugging network issues such > as detec

[U-Boot] [PATCH] net: introduce packet capture support

2019-06-13 Thread Ramon Fried
Add support for capturing ethernet packets and storing them in memory in PCAP(2.4) format, later to be analyzed by any PCAP viewer software (IE. Wireshark) This feature greatly assist debugging network issues such as detecting dropped packets, packet corruption etc. Signed-off-by: Ramon Fried --