Re: [U-Boot] [PATCH v3 1/2] net: introduce packet capture support

2019-07-18 Thread Joe Hershberger
On Thu, Jul 18, 2019 at 1:14 PM Ramon Fried wrote: > > On Fri, Jul 12, 2019 at 12:18 AM Joe Hershberger > wrote: > > > > On Sat, Jun 22, 2019 at 1:50 PM Ramon Fried wrote: > > > > > > Add support for capturing ethernet packets and storing > > > them in memory in PCAP(2.4) format, later to be an

Re: [U-Boot] [PATCH v3 1/2] net: introduce packet capture support

2019-07-18 Thread Ramon Fried
On Fri, Jul 12, 2019 at 12:18 AM Joe Hershberger wrote: > > On Sat, Jun 22, 2019 at 1:50 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 f

Re: [U-Boot] [PATCH v3 1/2] net: introduce packet capture support

2019-07-15 Thread Joe Hershberger
On Mon, Jul 15, 2019 at 2:08 AM Ramon Fried wrote: > > On Fri, Jul 12, 2019 at 12:18 AM Joe Hershberger > wrote: > > On Sat, Jun 22, 2019 at 1:50 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 >

Re: [U-Boot] [PATCH v3 1/2] net: introduce packet capture support

2019-07-15 Thread Ramon Fried
On Fri, Jul 12, 2019 at 12:18 AM Joe Hershberger wrote: > On Sat, Jun 22, 2019 at 1:50 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 grea

Re: [U-Boot] [PATCH v3 1/2] net: introduce packet capture support

2019-07-11 Thread Joe Hershberger
On Sat, Jun 22, 2019 at 1:50 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 detecting droppe

Re: [U-Boot] [PATCH v3 1/2] net: introduce packet capture support

2019-07-11 Thread Joe Hershberger
On Sat, Jun 22, 2019 at 1:50 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 detecting droppe

[U-Boot] [PATCH v3 1/2] net: introduce packet capture support

2019-06-22 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 Re