Re: [dpdk-dev] [PATCH] eal: fix link status issue on ppc_64

2019-10-15 Thread David Christensen
The rte_atomic64_exchange operation for ppc_64 incorrectly linked back to a 32 bit generic operation (__atomic_exchange_4) rather than the 64 bit generic operation (__atomic_exchange_8). As a result, only the link speed was passed to the application, not the link state, link duplex, on link au

Re: [dpdk-dev] [PATCH] eal: fix link status issue on ppc_64

2019-10-15 Thread David Marchand
Hello David, On Tue, Oct 15, 2019 at 1:08 AM David Christensen wrote: > > The rte_atomic64_exchange operation for ppc_64 incorrectly linked > back to a 32 bit generic operation (__atomic_exchange_4) rather than > the 64 bit generic operation (__atomic_exchange_8). As a result, > only the link sp

[dpdk-dev] [PATCH] eal: fix link status issue on ppc_64

2019-10-14 Thread David Christensen
The rte_atomic64_exchange operation for ppc_64 incorrectly linked back to a 32 bit generic operation (__atomic_exchange_4) rather than the 64 bit generic operation (__atomic_exchange_8). As a result, only the link speed was passed to the application, not the link state, link duplex, on link autone