Re: [dpdk-dev] [PATCH v7 02/10] eal: add power management intrinsics

2020-10-20 Thread Thomas Monjalon
20/10/2020 19:26, Ananyev, Konstantin: > > 20/10/2020 16:17, David Hunt: > > > On 20/10/2020 3:01 PM, David Hunt wrote: > > > > On 20/10/2020 8:35 AM, Thomas Monjalon wrote: > > > >> 20/10/2020 04:49, Ruifeng Wang: > > > >>> From: Thomas Monjalon > > > 15/10/2020 14:04, Anatoly Burakov: > > >

Re: [dpdk-dev] [PATCH v7 02/10] eal: add power management intrinsics

2020-10-20 Thread Ananyev, Konstantin
> 20/10/2020 16:17, David Hunt: > > On 20/10/2020 3:01 PM, David Hunt wrote: > > > On 20/10/2020 8:35 AM, Thomas Monjalon wrote: > > >> 20/10/2020 04:49, Ruifeng Wang: > > >>> From: Thomas Monjalon > > 15/10/2020 14:04, Anatoly Burakov: > > > +/** > > > + * This function is not su

Re: [dpdk-dev] [PATCH v7 02/10] eal: add power management intrinsics

2020-10-20 Thread Thomas Monjalon
20/10/2020 16:17, David Hunt: > On 20/10/2020 3:01 PM, David Hunt wrote: > > On 20/10/2020 8:35 AM, Thomas Monjalon wrote: > >> 20/10/2020 04:49, Ruifeng Wang: > >>> From: Thomas Monjalon > 15/10/2020 14:04, Anatoly Burakov: > > +/** > > + * This function is not supported on ARM. > >>

Re: [dpdk-dev] [PATCH v7 02/10] eal: add power management intrinsics

2020-10-20 Thread David Hunt
On 20/10/2020 3:01 PM, David Hunt wrote: On 20/10/2020 8:35 AM, Thomas Monjalon wrote: 20/10/2020 04:49, Ruifeng Wang: From: Thomas Monjalon 15/10/2020 14:04, Anatoly Burakov: +/** + * This function is not supported on ARM. + */ +static inline void +rte_power_monitor(const volatile void *

Re: [dpdk-dev] [PATCH v7 02/10] eal: add power management intrinsics

2020-10-20 Thread David Hunt
On 20/10/2020 8:35 AM, Thomas Monjalon wrote: 20/10/2020 04:49, Ruifeng Wang: From: Thomas Monjalon 15/10/2020 14:04, Anatoly Burakov: +/** + * This function is not supported on ARM. + */ +static inline void +rte_power_monitor(const volatile void *p, const uint64_t expected_value, +

Re: [dpdk-dev] [PATCH v7 02/10] eal: add power management intrinsics

2020-10-20 Thread Thomas Monjalon
20/10/2020 04:49, Ruifeng Wang: > From: Thomas Monjalon > > 15/10/2020 14:04, Anatoly Burakov: > > > +/** > > > + * This function is not supported on ARM. > > > + */ > > > +static inline void > > > +rte_power_monitor(const volatile void *p, const uint64_t > > expected_value, > > > +

Re: [dpdk-dev] [PATCH v7 02/10] eal: add power management intrinsics

2020-10-19 Thread Ruifeng Wang
.h...@intel.com; > jerinjac...@gmail.com; timothy.mcdan...@intel.com; gage.e...@intel.com; > chris.macnam...@intel.com; Anatoly Burakov ; > david.march...@redhat.com > Subject: Re: [dpdk-dev] [PATCH v7 02/10] eal: add power management > intrinsics > > 15/10/2020 14:04, Anatoly Burakov: &g

Re: [dpdk-dev] [PATCH v7 02/10] eal: add power management intrinsics

2020-10-19 Thread Thomas Monjalon
15/10/2020 14:04, Anatoly Burakov: > +/** > + * This function is not supported on ARM. > + */ > +static inline void > +rte_power_monitor(const volatile void *p, const uint64_t expected_value, > + const uint64_t value_mask, const uint64_t tsc_timestamp, > + const uint8_t

Re: [dpdk-dev] [PATCH v7 02/10] eal: add power management intrinsics

2020-10-16 Thread Ruifeng Wang
gt; jerinjac...@gmail.com; tho...@monjalon.net; > timothy.mcdan...@intel.com; gage.e...@intel.com; > chris.macnam...@intel.com > Subject: Re: [dpdk-dev] [PATCH v7 02/10] eal: add power management > intrinsics > > On 10/15/2020 1:04 PM, Anatoly Burakov wrote: > > From: Lia

Re: [dpdk-dev] [PATCH v7 02/10] eal: add power management intrinsics

2020-10-15 Thread Ananyev, Konstantin
> Add two new power management intrinsics, and provide an implementation > in eal/x86 based on UMONITOR/UMWAIT instructions. The instructions > are implemented as raw byte opcodes because there is not yet widespread > compiler support for these instructions. > > The power management instructions

Re: [dpdk-dev] [PATCH v7 02/10] eal: add power management intrinsics

2020-10-15 Thread Ferruh Yigit
On 10/15/2020 1:04 PM, Anatoly Burakov wrote: From: Liang Ma Add two new power management intrinsics, and provide an implementation in eal/x86 based on UMONITOR/UMWAIT instructions. The instructions are implemented as raw byte opcodes because there is not yet widespread compiler support for the

Re: [dpdk-dev] [PATCH v7 02/10] eal: add power management intrinsics

2020-10-15 Thread Jerin Jacob
On Thu, Oct 15, 2020 at 5:34 PM Anatoly Burakov wrote: > > From: Liang Ma > > Add two new power management intrinsics, and provide an implementation > in eal/x86 based on UMONITOR/UMWAIT instructions. The instructions > are implemented as raw byte opcodes because there is not yet widespread > com

[dpdk-dev] [PATCH v7 02/10] eal: add power management intrinsics

2020-10-15 Thread Anatoly Burakov
From: Liang Ma Add two new power management intrinsics, and provide an implementation in eal/x86 based on UMONITOR/UMWAIT instructions. The instructions are implemented as raw byte opcodes because there is not yet widespread compiler support for these instructions. The power management instructi