Re: [dpdk-dev] [PATCH] eal: Fix device registration on FreeBSD

2017-03-27 Thread Thomas Monjalon
2017-03-27 11:34, Shreyansh Jain: > On Wednesday 22 March 2017 12:02 AM, Ben Walker wrote: > > The FreeBSD implementation wasn't registering new devices > > with the device framework on start up. However, common > > code attempts to unregister them on shutdown which causes > > a SEGFAULT. This fix

Re: [dpdk-dev] [PATCH] eal: Fix device registration on FreeBSD

2017-03-26 Thread Shreyansh Jain
On Wednesday 22 March 2017 12:02 AM, Ben Walker wrote: The FreeBSD implementation wasn't registering new devices with the device framework on start up. However, common code attempts to unregister them on shutdown which causes a SEGFAULT. This fix makes the FreeBSD code do the same thing as the Li

[dpdk-dev] [PATCH] eal: Fix device registration on FreeBSD

2017-03-21 Thread Ben Walker
The FreeBSD implementation wasn't registering new devices with the device framework on start up. However, common code attempts to unregister them on shutdown which causes a SEGFAULT. This fix makes the FreeBSD code do the same thing as the Linux code for registration. Signed-off-by: Ben Walker --