Re: [dpdk-dev] [PATCH v3 0/6] support oops handling

2021-09-22 Thread Jerin Jacob
On Wed, Sep 22, 2021 at 2:03 PM Thomas Monjalon wrote: > > 22/09/2021 10:03, Jerin Jacob: > > On Wed, Sep 22, 2021 at 1:04 PM Thomas Monjalon wrote: > > > 21/09/2021 19:54, Jerin Jacob: > > > > On Tue, Sep 21, 2021 at 11:00 PM Thomas Monjalon > > > > wrote: > > > > > 06/09/2021 06:17, jer...@ma

Re: [dpdk-dev] [PATCH v3 0/6] support oops handling

2021-09-22 Thread Thomas Monjalon
22/09/2021 10:03, Jerin Jacob: > On Wed, Sep 22, 2021 at 1:04 PM Thomas Monjalon wrote: > > 21/09/2021 19:54, Jerin Jacob: > > > On Tue, Sep 21, 2021 at 11:00 PM Thomas Monjalon > > > wrote: > > > > 06/09/2021 06:17, jer...@marvell.com: > > > > > It is handy to get detailed OOPS information like

Re: [dpdk-dev] [PATCH v3 0/6] support oops handling

2021-09-22 Thread Jerin Jacob
On Wed, Sep 22, 2021 at 1:04 PM Thomas Monjalon wrote: > > 21/09/2021 19:54, Jerin Jacob: > > On Tue, Sep 21, 2021 at 11:00 PM Thomas Monjalon > > wrote: > > > > > > 06/09/2021 06:17, jer...@marvell.com: > > > > It is handy to get detailed OOPS information like Linux kernel > > > > when DPDK app

Re: [dpdk-dev] [PATCH v3 0/6] support oops handling

2021-09-22 Thread Thomas Monjalon
21/09/2021 19:54, Jerin Jacob: > On Tue, Sep 21, 2021 at 11:00 PM Thomas Monjalon wrote: > > > > 06/09/2021 06:17, jer...@marvell.com: > > > It is handy to get detailed OOPS information like Linux kernel > > > when DPDK application crashes without losing any of the features > > > provided by cored

Re: [dpdk-dev] [PATCH v3 0/6] support oops handling

2021-09-21 Thread Jerin Jacob
On Tue, Sep 21, 2021 at 11:00 PM Thomas Monjalon wrote: > > 06/09/2021 06:17, jer...@marvell.com: > > It is handy to get detailed OOPS information like Linux kernel > > when DPDK application crashes without losing any of the features > > provided by coredump infrastructure by the OS. > > > > This

Re: [dpdk-dev] [PATCH v3 0/6] support oops handling

2021-09-21 Thread Thomas Monjalon
06/09/2021 06:17, jer...@marvell.com: > It is handy to get detailed OOPS information like Linux kernel > when DPDK application crashes without losing any of the features > provided by coredump infrastructure by the OS. > > This patch series introduces the APIs to handle OOPS in DPDK. I don't unde

[dpdk-dev] [PATCH v3 0/6] support oops handling

2021-09-05 Thread jerinj
From: Jerin Jacob v3: - Updated the release notes - Introduce "--no-oops" EAL option to disable default EAL handler. Default EAL oops handler stores the existing handler and invoke after decoding. So there may not be explicit use case to use this. But added, just in case for control to app