dev.dpdk.org archive mirror
 help / color / mirror / Atom feed
From: Bruce Richardson <bruce.richardson@intel.com>
To: "Burakov, Anatoly" <anatoly.burakov@intel.com>
Cc: "Ananyev, Konstantin" <konstantin.ananyev@intel.com>,
	Thomas Monjalon <thomas@monjalon.net>,
	Jerin Jacob <jerinjacobk@gmail.com>,
	David Marchand <david.marchand@redhat.com>,
	"Ma, Liang J" <liang.j.ma@intel.com>, dpdk-dev <dev@dpdk.org>,
	"Hunt, David" <david.hunt@intel.com>,
	Stephen Hemminger <stephen@networkplumber.org>,
	Honnappa Nagarahalli <honnappa.nagarahalli@arm.com>,
	"Ruifeng Wang (Arm Technology China)" <ruifeng.wang@arm.com>,
	David Christensen <drc@linux.vnet.ibm.com>,
	Jerin Jacob <jerinj@marvell.com>
Subject: Re: [dpdk-dev] [PATCH v4 02/10] eal: add power management intrinsics
Date: Fri, 9 Oct 2020 12:36:06 +0100	[thread overview]
Message-ID: <20201009113606.GC1474@bricha3-MOBL.ger.corp.intel.com> (raw)
In-Reply-To: <66b285ab-066e-f1d0-cbf8-f31d0f896806@intel.com>

On Fri, Oct 09, 2020 at 12:12:56PM +0100, Burakov, Anatoly wrote:
> On 09-Oct-20 11:48 AM, Ananyev, Konstantin wrote:
> > > On 09-Oct-20 11:17 AM, Thomas Monjalon wrote:
> > > > 09/10/2020 12:03, Burakov, Anatoly:
> > > > > On 09-Oct-20 10:54 AM, Jerin Jacob wrote:
> > > > > > On Fri, Oct 9, 2020 at 3:10 PM Burakov, Anatoly
> > > > > > <anatoly.burakov@intel.com> wrote:
> > > > > > > On 09-Oct-20 10:29 AM, Thomas Monjalon wrote:
> > > > > > > > 09/10/2020 11:25, Burakov, Anatoly:
> > > > > > > > > On 09-Oct-20 6:42 AM, Jerin Jacob wrote:
> > > > > > > > > > On Thu, Oct 8, 2020 at 10:38 PM Ananyev, Konstantin
> > > > > > > > > > <konstantin.ananyev@intel.com> wrote:
> > > > > > > > > > > > On Thu, Oct 8, 2020 at 6:57 PM Burakov, Anatoly
> > > > > > > > > > > > <anatoly.burakov@intel.com> wrote:
> > > > > > > > > > > > > On 08-Oct-20 9:44 AM, Jerin Jacob wrote:
> > > > > > > > > > > > > > On Thu, Oct 8, 2020 at 2:04 PM Thomas Monjalon <thomas@monjalon.net> wrote:
> > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > 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 provide an architecture-specific
> > > > > > > > > > > > > > > > function to either wait until a specified TSC timestamp is reached, or
> > > > > > > > > > > > > > > > optionally wait until either a TSC timestamp is reached or a memory
> > > > > > > > > > > > > > > > location is written to. The monitor function also provides an optional
> > > > > > > > > > > > > > > > comparison, to avoid sleeping when the expected write has already
> > > > > > > > > > > > > > > > happened, and no more writes are expected.
> > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > For more details, Please reference Intel SDM Volume 2.
> > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > I really would like to see feedbacks from other arch maintainers.
> > > > > > > > > > > > > > > Unfortunately they were not Cc'ed.
> > > > > > > > > > > > > > 
> > > > > > > > > > > > > > Shared the feedback from the arm64 perspective here. Yet to get a reply on this.
> > > > > > > > > > > > > > http://mails.dpdk.org/archives/dev/2020-September/181646.html
> > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > Also please mark the new functions as experimental.
> > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > 
> > > > > > > > > > > > > 
> > > > > > > > > > > > > Hi Jerin,
> > > > > > > > > > > > 
> > > > > > > > > > > > Hi Anatoly,
> > > > > > > > > > > > 
> > > > > > > > > > > > > 
> > > > > > > > > > > > >       > IMO, We must introduce some arch feature-capability _get_ scheme to tell
> > > > > > > > > > > > >       > the consumer of this API is only supported on x86. Probably as
> > > > > > > > > > > > > functions[1]
> > > > > > > > > > > > >       > or macro flags scheme and have a stub for the other architectures as the
> > > > > > > > > > > > >       > API marked as generic ie rte_power_* not rte_x86_..
> > > > > > > > > > > > >       >
> > > > > > > > > > > > >       > This will help the consumer to create workers based on the
> > > > > > > > > > > > > instruction features
> > > > > > > > > > > > >       > which can NOT be abstracted as a generic feature across the
> > > > > > > > > > > > > architectures.
> > > > > > > > > > > > > 
> > > > > > > > > > > > > I'm not entirely sure what you mean by that.
> > > > > > > > > > > > > 
> > > > > > > > > > > > > I mean, yes, we should have added stubs for other architectures, and we
> > > > > > > > > > > > > will add those in future revisions, but what does your proposed runtime
> > > > > > > > > > > > > check accomplish that cannot currently be done with CPUID flags?
> > > > > > > > > > > > 
> > > > > > > > > > > > 
> > > > > > > > > > > > RTE_CPUFLAG_WAITPKG  flag definition is not available in other architectures.
> > > > > > > > > > > > i.e RTE_CPUFLAG_WAITPKG defined in lib/librte_eal/x86/include/rte_cpuflags.h
> > > > > > > > > > > > and it is used in http://patches.dpdk.org/patch/79540/ as generic API.
> > > > > > > > > > > > I doubt http://patches.dpdk.org/patch/79540/  would compile on non-x86.
> > > > > > > > > > > 
> > > > > > > > > > > 
> > > > > > > > > > > I am agree with Jerin, that we need some generic way to
> > > > > > > > > > > figure-out does platform supports power_monitor() or not.
> > > > > > > > > > > Though not sure do we need to create a new feature-get framework here...
> > > > > > > > > > 
> > > > > > > > > > That's works too. Some means of generic probing is fine. Following
> > > > > > > > > > schemed needs
> > > > > > > > > > more documentation on that usage, as, it is not straight forward compare to
> > > > > > > > > > feature-get framework. Also, on the other thread, we are adding the
> > > > > > > > > > new instructions like
> > > > > > > > > > demote cacheline etc, maybe if the user wants to KNOW if the arch
> > > > > > > > > > supports it then
> > > > > > > > > > the feature-get framework is good.
> > > > > > > > > > If we think, there is no other usecase for generic arch feature-get
> > > > > > > > > > framework then
> > > > > > > > > > we can keep the below scheme else generic arch feature is better for
> > > > > > > > > > more forward
> > > > > > > > > > looking use cases.
> > > > > > > > > > 
> > > > > > > > > > > Might be just something like:
> > > > > > > > > > >       rte_power_monitor(...) == -ENOTSUP
> > > > > > > > > > > be enough indication for that?
> > > > > > > > > > > So user can just do:
> > > > > > > > > > > if (rte_power_monitor(NULL, 0, 0, 0, 0) == -ENOTSUP) {
> > > > > > > > > > >              /* not supported  path */
> > > > > > > > > > > }
> > > > > > > > > > > 
> > > > > > > > > > > To check is that feature supported or not.
> > > > > > > > > > 
> > > > > > > > > > 
> > > > > > > > > 
> > > > > > > > > Looking at CLDEMOTE patches, CLDEMOTE is a noop on other archs. I think
> > > > > > > > > we can safely make this intrinsic as a noop on other archs as well, as
> > > > > > > > > it's functionally identical to waking up immediately.
> > > > > > > > > 
> > > > > > > > > If we're not creating this for CLDEMOTE, we don't need it here as well.
> > > > > > > > > If we do need it for this, then we arguably need it for CLDEMOTE too.
> > > > > > > > 
> > > > > > > > Sorry I don't understand what you mean, too many "it" and "this" :)
> > > > > > > > 
> > > > > > > 
> > > > > > > Sorry, i meant "the generic feature-get framework". CLDEMOTE doesn't
> > > > > > > exist on other archs, this doesn't too, so it's a fairly similar
> > > > > > > situation. Stubbing UMWAIT with a noop is a valid approach because it's
> > > > > > > equivalent to sleeping and then immediately waking up (which can happen
> > > > > > > for a host of reasons unrelated to the code itself).
> > > > > > 
> > > > > > If we are keeping the following return in the public API then it can not be NOP
> > > > > > + * @return
> > > > > > + *   - 1 if wakeup was due to TSC timeout expiration.
> > > > > > + *   - 0 if wakeup was due to memory write or other reasons.
> > > > > > + */
> > > > > > 
> > > > > 
> > > > > In the generic header, it is specified that return value is
> > > > > implementation-defined (i.e. arch-specific).
> > > > 
> > > > Obviously an API definition should *never* be "implementation-defined".
> > > 
> > > If there isn't a meaningful return value, we could either make it a
> > > void, or return 0/-ENOTSUP so. I'm OK with either as nop is a valid
> > > result for a UMWAIT, and there are no side-effects to the intrinsic
> > > itself (it's basically a fancy rte_pause).
> > > 
> > > > 
> > > > 
> > > > > I guess we could remove
> > > > > that and set return value to either 0 or -ENOTSUP if that would resolve
> > > > > the issue?
> > > > > 
> > > > > > Also, we need to fix compilation issue if any with
> > > > > > http://patches.dpdk.org/patch/79540/
> > > > > > as it has direct reference to if
> > > > > > (!rte_cpu_get_flag_enabled(RTE_CPUFLAG_WAITPKG)) {
> > > > > > Either we need to add -ENOTSUP return or generic feature-get framework.
> > > > > 
> > > > > IIRC power library isn't compiled on anything other than x86, so this
> > > > > code wouldn't get compiled.
> > > > 
> > > > It is not call "power-x86", so we must assume it could work
> > > > on any architecture.
> > > 
> > > #ifdef it is!
> > > 
> > > > 
> > > > 
> > > > > > > I'm not against a generic feature-get framework, i'm just pointing out
> > > > > > > that if this is what's preventing the merge, it should prevent the merge
> > > > > > > of CLDEMOTE as well
> > 
> > I wouldn't consider these two as totally equal.
> > Yes, both are just hints to CPU, that can be ignored,
> > but if not, then consequences of executing are quite different.
> > If UMWAIT is not supported by cpu at all, then user might want to use some
> > different power saving mechanism (pause, frequence scaling, etc.).
> > Without information is UMWAIT supported or not, user can't make
> > such choice.
> 
> After some attempts at implementing this, i actually came to the conclusion
> that some generic way to check support for this feature is necessary,
> because we end up with a usability inconsistency:
> 
> 1) on non-x86, if you call the function, it returns -ENOTSUP
> 2) on x86, since we're not checking CPUID flags on every single call, it'll
> either succeed, or crash the process - the burden is on the user to check
> for CPUID flags, but it can't be done in an arch agnostic way because the
> CPUID flags are only defined for x86, thus requiring a special code path for
> x86
> 
> Where would be the best place to add such an infrastructure? I'm thinking
> rte_cpuflags.h?
> 
Time to relook at some of the contents of patchset:
http://patches.dpdk.org/project/dpdk/list/?series=4811&archive=both&state=*

The idea of that set (IIRC) was to replace the per-architecture enums with
just strings to avoid situations like this - or at least make them less
awkward.

/Bruce

  reply	other threads:[~2020-10-09 11:36 UTC|newest]

Thread overview: 421+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-27 17:02 [dpdk-dev] [RFC 0/6] Power-optimized RX for Ethernet devices Anatoly Burakov
2020-05-27 17:02 ` [dpdk-dev] [RFC 1/6] eal: add power management intrinsics Anatoly Burakov
2020-05-28 11:39   ` Ananyev, Konstantin
2020-05-28 14:40     ` Burakov, Anatoly
2020-05-28 14:58       ` Bruce Richardson
2020-05-28 15:38       ` Ananyev, Konstantin
2020-05-29  6:56         ` Jerin Jacob
2020-06-02 10:15           ` Ananyev, Konstantin
2020-06-03  6:22           ` Honnappa Nagarahalli
2020-06-03  6:31             ` Jerin Jacob
2020-11-02 11:09   ` [dpdk-dev] [PATCH v11 0/6] Add PMD power mgmt Liang Ma
2020-11-02 11:10     ` [dpdk-dev] [PATCH v11 1/6] ethdev: add simple power management API Liang Ma
2020-11-02 12:23       ` Burakov, Anatoly
2020-11-02 11:10     ` [dpdk-dev] [PATCH v11 2/6] power: add PMD power management API and callback Liang Ma
2020-11-02 11:10     ` [dpdk-dev] [PATCH v11 3/6] net/ixgbe: implement power management API Liang Ma
2020-11-02 11:10     ` [dpdk-dev] [PATCH v11 4/6] net/i40e: " Liang Ma
2020-11-02 11:10     ` [dpdk-dev] [PATCH v11 5/6] net/ice: " Liang Ma
2020-11-02 11:10     ` [dpdk-dev] [PATCH v11 6/6] examples/l3fwd-power: enable PMD power mgmt Liang Ma
2020-12-17 14:05     ` [dpdk-dev] [PATCH v12 00/11] Add PMD power management Anatoly Burakov
2020-12-17 16:12       ` David Marchand
2021-01-08 16:42         ` Burakov, Anatoly
2021-01-11  8:44           ` David Marchand
2021-01-11  8:52             ` David Marchand
2021-01-11 10:21               ` Burakov, Anatoly
2021-01-08 17:42       ` [dpdk-dev] [PATCH v13 " Anatoly Burakov
2021-01-08 17:42         ` [dpdk-dev] [PATCH v13 01/11] eal: uninline power intrinsics Anatoly Burakov
2021-01-12 15:54           ` Ananyev, Konstantin
2021-01-08 17:42         ` [dpdk-dev] [PATCH v13 02/11] eal: avoid invalid API usage in " Anatoly Burakov
2021-01-08 19:58           ` Stephen Hemminger
2021-01-11 10:21             ` Burakov, Anatoly
2021-01-12 15:56           ` Ananyev, Konstantin
2021-01-08 17:42         ` [dpdk-dev] [PATCH v13 03/11] eal: change API of " Anatoly Burakov
2021-01-12 15:58           ` Ananyev, Konstantin
2021-01-08 17:42         ` [dpdk-dev] [PATCH v13 04/11] eal: remove sync version of power monitor Anatoly Burakov
2021-01-12 15:59           ` Ananyev, Konstantin
2021-01-08 17:42         ` [dpdk-dev] [PATCH v13 05/11] eal: add monitor wakeup function Anatoly Burakov
2021-01-12 16:02           ` Ananyev, Konstantin
2021-01-12 16:18             ` Burakov, Anatoly
2021-01-12 16:25               ` Burakov, Anatoly
2021-01-08 17:42         ` [dpdk-dev] [PATCH v13 06/11] ethdev: add simple power management API Anatoly Burakov
2021-01-09  8:04           ` Andrew Rybchenko
2021-01-08 17:42         ` [dpdk-dev] [PATCH v13 07/11] power: add PMD power management API and callback Anatoly Burakov
2021-01-08 17:42         ` [dpdk-dev] [PATCH v13 08/11] net/ixgbe: implement power management API Anatoly Burakov
2021-01-08 17:42         ` [dpdk-dev] [PATCH v13 09/11] net/i40e: " Anatoly Burakov
2021-01-08 17:42         ` [dpdk-dev] [PATCH v13 10/11] net/ice: " Anatoly Burakov
2021-01-08 17:42         ` [dpdk-dev] [PATCH v13 11/11] examples/l3fwd-power: enable PMD power mgmt Anatoly Burakov
2021-01-11 14:35         ` [dpdk-dev] [PATCH v14 00/11] Add PMD power management Anatoly Burakov
2021-01-11 14:35           ` [dpdk-dev] [PATCH v14 01/11] eal: uninline power intrinsics Anatoly Burakov
2021-01-11 14:35           ` [dpdk-dev] [PATCH v14 02/11] eal: avoid invalid API usage in " Anatoly Burakov
2021-01-11 14:35           ` [dpdk-dev] [PATCH v14 03/11] eal: change API of " Anatoly Burakov
2021-01-11 14:35           ` [dpdk-dev] [PATCH v14 04/11] eal: remove sync version of power monitor Anatoly Burakov
2021-01-11 14:35           ` [dpdk-dev] [PATCH v14 05/11] eal: add monitor wakeup function Anatoly Burakov
2021-01-11 14:35           ` [dpdk-dev] [PATCH v14 06/11] ethdev: add simple power management API Anatoly Burakov
2021-01-11 14:35           ` [dpdk-dev] [PATCH v14 07/11] power: add PMD power management API and callback Anatoly Burakov
2021-01-11 14:35           ` [dpdk-dev] [PATCH v14 08/11] net/ixgbe: implement power management API Anatoly Burakov
2021-01-11 14:35           ` [dpdk-dev] [PATCH v14 09/11] net/i40e: " Anatoly Burakov
2021-01-11 14:35           ` [dpdk-dev] [PATCH v14 10/11] net/ice: " Anatoly Burakov
2021-01-11 14:35           ` [dpdk-dev] [PATCH v14 11/11] examples/l3fwd-power: enable PMD power mgmt Anatoly Burakov
2021-01-11 14:58           ` [dpdk-dev] [PATCH v15 00/11] Add PMD power management Anatoly Burakov
2021-01-11 14:58             ` [dpdk-dev] [PATCH v15 01/11] eal: uninline power intrinsics Anatoly Burakov
2021-01-12 16:09               ` Ananyev, Konstantin
2021-01-12 16:14                 ` Burakov, Anatoly
2021-01-11 14:58             ` [dpdk-dev] [PATCH v15 02/11] eal: avoid invalid API usage in " Anatoly Burakov
2021-01-11 14:58             ` [dpdk-dev] [PATCH v15 03/11] eal: change API of " Anatoly Burakov
2021-01-11 14:58             ` [dpdk-dev] [PATCH v15 04/11] eal: remove sync version of power monitor Anatoly Burakov
2021-01-11 14:58             ` [dpdk-dev] [PATCH v15 05/11] eal: add monitor wakeup function Anatoly Burakov
2021-01-11 14:58             ` [dpdk-dev] [PATCH v15 06/11] ethdev: add simple power management API Anatoly Burakov
2021-01-11 14:58             ` [dpdk-dev] [PATCH v15 07/11] power: add PMD power management API and callback Anatoly Burakov
2021-01-11 14:58             ` [dpdk-dev] [PATCH v15 08/11] net/ixgbe: implement power management API Anatoly Burakov
2021-01-11 14:58             ` [dpdk-dev] [PATCH v15 09/11] net/i40e: " Anatoly Burakov
2021-01-11 14:58             ` [dpdk-dev] [PATCH v15 10/11] net/ice: " Anatoly Burakov
2021-01-11 14:58             ` [dpdk-dev] [PATCH v15 11/11] examples/l3fwd-power: enable PMD power mgmt Anatoly Burakov
2021-01-12 17:37             ` [dpdk-dev] [PATCH v16 00/11] Add PMD power management Anatoly Burakov
2021-01-12 17:37               ` [dpdk-dev] [PATCH v16 01/11] eal: uninline power intrinsics Anatoly Burakov
2021-01-12 17:37               ` [dpdk-dev] [PATCH v16 02/11] eal: avoid invalid API usage in " Anatoly Burakov
2021-01-12 17:37               ` [dpdk-dev] [PATCH v16 03/11] eal: change API of " Anatoly Burakov
2021-01-13 13:01                 ` Ananyev, Konstantin
2021-01-13 17:22                   ` Burakov, Anatoly
2021-01-13 18:01                     ` Ananyev, Konstantin
2021-01-14 10:23                       ` Burakov, Anatoly
2021-01-14 12:33                         ` Ananyev, Konstantin
2021-01-12 17:37               ` [dpdk-dev] [PATCH v16 04/11] eal: remove sync version of power monitor Anatoly Burakov
2021-01-12 17:37               ` [dpdk-dev] [PATCH v16 05/11] eal: add monitor wakeup function Anatoly Burakov
2021-01-13 12:46                 ` Ananyev, Konstantin
2021-01-12 17:37               ` [dpdk-dev] [PATCH v16 06/11] ethdev: add simple power management API Anatoly Burakov
2021-01-13 13:18                 ` Ananyev, Konstantin
2021-01-12 17:37               ` [dpdk-dev] [PATCH v16 07/11] power: add PMD power management API and callback Anatoly Burakov
2021-01-13 12:58                 ` Ananyev, Konstantin
2021-01-13 17:29                   ` Burakov, Anatoly
2021-01-14 13:00                     ` Burakov, Anatoly
2021-01-12 17:37               ` [dpdk-dev] [PATCH v16 08/11] net/ixgbe: implement power management API Anatoly Burakov
2021-01-12 17:37               ` [dpdk-dev] [PATCH v16 09/11] net/i40e: " Anatoly Burakov
2021-01-12 17:37               ` [dpdk-dev] [PATCH v16 10/11] net/ice: " Anatoly Burakov
2021-01-12 17:37               ` [dpdk-dev] [PATCH v16 11/11] examples/l3fwd-power: enable PMD power mgmt Anatoly Burakov
2021-01-14  9:36               ` [dpdk-dev] [PATCH v16 00/11] Add PMD power management David Marchand
2021-01-14 10:25                 ` Burakov, Anatoly
2021-01-14 14:46               ` [dpdk-dev] [PATCH v17 " Anatoly Burakov
2021-01-14 14:46                 ` [dpdk-dev] [PATCH v17 01/11] eal: uninline power intrinsics Anatoly Burakov
2021-01-14 14:46                 ` [dpdk-dev] [PATCH v17 02/11] eal: avoid invalid API usage in " Anatoly Burakov
2021-01-14 14:46                 ` [dpdk-dev] [PATCH v17 03/11] eal: change API of " Anatoly Burakov
2021-01-18 22:26                   ` Thomas Monjalon
2021-01-19 10:29                     ` Burakov, Anatoly
2021-01-19 10:42                       ` Thomas Monjalon
2021-01-19 11:23                         ` Burakov, Anatoly
2021-01-19 14:17                           ` Thomas Monjalon
2021-01-20 10:32                             ` Burakov, Anatoly
2021-01-20 10:38                               ` Thomas Monjalon
2021-01-20 11:05                                 ` Burakov, Anatoly
2021-01-20 11:11                                   ` Thomas Monjalon
2021-01-20 11:17                                     ` Burakov, Anatoly
2021-01-14 14:46                 ` [dpdk-dev] [PATCH v17 04/11] eal: remove sync version of power monitor Anatoly Burakov
2021-01-14 14:46                 ` [dpdk-dev] [PATCH v17 05/11] eal: add monitor wakeup function Anatoly Burakov
2021-01-14 14:46                 ` [dpdk-dev] [PATCH v17 06/11] ethdev: add simple power management API Anatoly Burakov
2021-01-14 14:46                 ` [dpdk-dev] [PATCH v17 07/11] power: add PMD power management API and callback Anatoly Burakov
2021-01-18 12:41                   ` David Hunt
2021-01-19 16:45                     ` [dpdk-dev] [PATCH v18 0/2] Add PMD power management Anatoly Burakov
2021-01-19 16:45                       ` [dpdk-dev] [PATCH v18 1/2] power: add PMD power management API and callback Anatoly Burakov
2021-01-19 16:45                       ` [dpdk-dev] [PATCH v18 2/2] examples/l3fwd-power: enable PMD power mgmt Anatoly Burakov
2021-01-20 11:50                       ` [dpdk-dev] [PATCH v19 0/4] Add PMD power management Anatoly Burakov
2021-01-20 11:50                         ` [dpdk-dev] [PATCH v19 1/4] eal: rename power monitor condition member Anatoly Burakov
2021-01-20 11:50                         ` [dpdk-dev] [PATCH v19 2/4] eal: improve comments around power monitoring API Anatoly Burakov
2021-01-20 11:50                         ` [dpdk-dev] [PATCH v19 3/4] power: add PMD power management API and callback Anatoly Burakov
2021-01-20 11:50                         ` [dpdk-dev] [PATCH v19 4/4] examples/l3fwd-power: enable PMD power mgmt Anatoly Burakov
2021-01-22 17:12                         ` [dpdk-dev] [PATCH v20 0/4] Add PMD power management Anatoly Burakov
2021-01-22 17:12                           ` [dpdk-dev] [PATCH v20 1/4] eal: rename power monitor condition member Anatoly Burakov
2021-01-29 11:26                             ` Thomas Monjalon
2021-01-22 17:12                           ` [dpdk-dev] [PATCH v20 2/4] eal: improve comments around power monitoring API Anatoly Burakov
2021-01-29 11:27                             ` Thomas Monjalon
2021-01-22 17:12                           ` [dpdk-dev] [PATCH v20 3/4] power: add PMD power management API and callback Anatoly Burakov
2021-01-22 17:12                           ` [dpdk-dev] [PATCH v20 4/4] examples/l3fwd-power: enable PMD power mgmt Anatoly Burakov
2021-01-29 14:15                             ` Thomas Monjalon
2021-01-29 14:20                           ` [dpdk-dev] [PATCH v20 0/4] Add PMD power management Thomas Monjalon
2021-01-29 14:47                             ` Burakov, Anatoly
2021-01-18 22:48                   ` [dpdk-dev] [PATCH v17 07/11] power: add PMD power management API and callback Thomas Monjalon
2021-01-19 12:25                     ` Burakov, Anatoly
2021-01-14 14:46                 ` [dpdk-dev] [PATCH v17 08/11] net/ixgbe: implement power management API Anatoly Burakov
2021-01-14 14:46                 ` [dpdk-dev] [PATCH v17 09/11] net/i40e: " Anatoly Burakov
2021-01-14 14:46                 ` [dpdk-dev] [PATCH v17 10/11] net/ice: " Anatoly Burakov
2021-01-14 14:46                 ` [dpdk-dev] [PATCH v17 11/11] examples/l3fwd-power: enable PMD power mgmt Anatoly Burakov
2021-01-18 12:53                   ` David Hunt
2021-01-18 15:24                 ` [dpdk-dev] [PATCH v17 00/11] Add PMD power management David Marchand
2021-01-18 15:45                   ` Burakov, Anatoly
2021-01-18 16:06                     ` Thomas Monjalon
2021-01-18 17:02                       ` Burakov, Anatoly
2021-01-18 17:54                         ` David Marchand
2021-01-18 22:52                 ` Thomas Monjalon
2021-01-19 10:30                   ` Burakov, Anatoly
2020-12-17 14:05     ` [dpdk-dev] [PATCH v12 01/11] eal: uninline power intrinsics Anatoly Burakov
2020-12-17 14:05     ` [dpdk-dev] [PATCH v12 02/11] eal: avoid invalid API usage in " Anatoly Burakov
2020-12-17 14:05     ` [dpdk-dev] [PATCH v12 03/11] eal: change API of " Anatoly Burakov
2020-12-17 14:05     ` [dpdk-dev] [PATCH v12 04/11] eal: remove sync version of power monitor Anatoly Burakov
2020-12-17 14:05     ` [dpdk-dev] [PATCH v12 05/11] eal: add monitor wakeup function Anatoly Burakov
2020-12-17 14:05     ` [dpdk-dev] [PATCH v12 06/11] ethdev: add simple power management API Anatoly Burakov
2020-12-28 11:00       ` Andrew Rybchenko
2021-01-08 16:30         ` Burakov, Anatoly
2021-01-12 20:32       ` Lance Richardson
2021-01-13 13:04         ` Burakov, Anatoly
2021-01-13 13:25           ` Ananyev, Konstantin
2020-12-17 14:05     ` [dpdk-dev] [PATCH v12 07/11] power: add PMD power management API and callback Anatoly Burakov
2020-12-17 14:05     ` [dpdk-dev] [PATCH v12 08/11] net/ixgbe: implement power management API Anatoly Burakov
2020-12-17 14:05     ` [dpdk-dev] [PATCH v12 09/11] net/i40e: " Anatoly Burakov
2020-12-17 14:05     ` [dpdk-dev] [PATCH v12 10/11] net/ice: " Anatoly Burakov
2020-12-17 14:05     ` [dpdk-dev] [PATCH v12 11/11] examples/l3fwd-power: enable PMD power mgmt Anatoly Burakov
2020-05-27 17:02 ` [dpdk-dev] [RFC 2/6] ethdev: add simple power management API Anatoly Burakov
2020-05-28 12:15   ` Ananyev, Konstantin
2020-05-27 17:02 ` [dpdk-dev] [RFC 3/6] net/ixgbe: implement " Anatoly Burakov
2020-05-27 17:02 ` [dpdk-dev] [RFC 4/6] net/i40e: " Anatoly Burakov
2020-05-27 17:02 ` [dpdk-dev] [RFC 5/6] net/ice: " Anatoly Burakov
2020-05-27 17:02 ` [dpdk-dev] [RFC 6/6] app/testpmd: add command for power management on a port Anatoly Burakov
2020-05-27 17:33 ` [dpdk-dev] [RFC 0/6] Power-optimized RX for Ethernet devices Jerin Jacob
2020-05-27 20:57   ` Stephen Hemminger
2020-08-11 10:27 ` [dpdk-dev] [RFC v2 1/5] eal: add power management intrinsics Liang Ma
2020-08-11 10:27   ` [dpdk-dev] [RFC v2 2/5] ethdev: add simple power management API and callback Liang Ma
2020-08-13 18:11     ` Liang, Ma
2020-08-11 10:27   ` [dpdk-dev] [RFC v2 3/5] net/ixgbe: implement power management API Liang Ma
2020-08-11 10:27   ` [dpdk-dev] [RFC v2 4/5] net/i40e: " Liang Ma
2020-08-11 10:27   ` [dpdk-dev] [RFC v2 5/5] net/ice: " Liang Ma
2020-08-13 18:04   ` [dpdk-dev] [RFC v2 1/5] eal: add power management intrinsics Liang, Ma
2020-09-03 16:06   ` [dpdk-dev] [RFC PATCH v3 1/6] " Liang Ma
2020-09-03 16:07     ` [dpdk-dev] [RFC PATCH v3 2/6] ethdev: add simple power management API Liang Ma
2020-09-03 16:07     ` [dpdk-dev] [RFC PATCH v3 3/6] power: add simple power management API and callback Liang Ma
2020-09-03 16:07     ` [dpdk-dev] [RFC PATCH v3 4/6] net/ixgbe: implement power management API Liang Ma
2020-09-03 16:07     ` [dpdk-dev] [RFC PATCH v3 5/6] net/i40e: " Liang Ma
2020-09-03 16:07     ` [dpdk-dev] [RFC PATCH v3 6/6] net/ice: " Liang Ma
2020-09-04 10:18   ` [dpdk-dev] [PATCH v3 1/6] eal: add power management intrinsics Liang Ma
2020-09-04 10:18     ` [dpdk-dev] [PATCH v3 2/6] ethdev: add simple power management API Liang Ma
2020-09-04 16:37       ` Stephen Hemminger
2020-09-14 21:04         ` Liang, Ma
2020-09-04 20:54       ` Ananyev, Konstantin
2020-09-04 10:18     ` [dpdk-dev] [PATCH v3 3/6] power: add simple power management API and callback Liang Ma
2020-09-04 16:36       ` Stephen Hemminger
2020-09-14 20:52         ` Liang, Ma
2020-09-04 18:33       ` Ananyev, Konstantin
2020-09-14 21:01         ` Liang, Ma
2020-09-16 14:53           ` Ananyev, Konstantin
2020-09-16 16:39             ` Liang, Ma
2020-09-16 16:44               ` Ananyev, Konstantin
2020-09-04 10:18     ` [dpdk-dev] [PATCH v3 4/6] net/ixgbe: implement power management API Liang Ma
2020-09-04 10:18     ` [dpdk-dev] [PATCH v3 5/6] net/i40e: " Liang Ma
2020-09-04 10:19     ` [dpdk-dev] [PATCH v3 6/6] net/ice: " Liang Ma
2020-09-04 16:23     ` [dpdk-dev] [PATCH v3 1/6] eal: add power management intrinsics Stephen Hemminger
2020-09-14 20:48       ` Liang, Ma
2020-09-04 16:37     ` Stephen Hemminger
2020-09-14 20:49       ` Liang, Ma
2020-09-04 18:42     ` Stephen Hemminger
2020-09-14 21:12       ` Liang, Ma
2020-09-16 16:34       ` Liang, Ma
2020-09-06 21:44     ` Ananyev, Konstantin
2020-09-18  5:01     ` Jerin Jacob
2020-10-02 14:11     ` [dpdk-dev] [PATCH v4 01/10] eal: add new x86 cpuid support for WAITPKG Liang Ma
2020-10-02 14:11       ` [dpdk-dev] [PATCH v4 02/10] eal: add power management intrinsics Liang Ma
2020-10-08  8:33         ` Thomas Monjalon
2020-10-08  8:44           ` Jerin Jacob
2020-10-08  9:41             ` Thomas Monjalon
2020-10-08 13:26             ` Burakov, Anatoly
2020-10-08 15:13               ` Jerin Jacob
2020-10-08 17:07                 ` Ananyev, Konstantin
2020-10-09  5:42                   ` Jerin Jacob
2020-10-09  9:25                     ` Burakov, Anatoly
2020-10-09  9:29                       ` Thomas Monjalon
2020-10-09  9:40                         ` Burakov, Anatoly
2020-10-09  9:54                           ` Jerin Jacob
2020-10-09 10:03                             ` Burakov, Anatoly
2020-10-09 10:17                               ` Thomas Monjalon
2020-10-09 10:22                                 ` Burakov, Anatoly
2020-10-09 10:45                                   ` Jerin Jacob
2020-10-09 10:48                                   ` Ananyev, Konstantin
2020-10-09 11:12                                     ` Burakov, Anatoly
2020-10-09 11:36                                       ` Bruce Richardson [this message]
2020-10-09 11:42                                         ` Burakov, Anatoly
2020-10-09 10:19                               ` Jerin Jacob
2020-10-08 17:15         ` Ananyev, Konstantin
2020-10-09  9:11           ` Burakov, Anatoly
2020-10-09 15:39             ` Ananyev, Konstantin
2020-10-09 16:10               ` Burakov, Anatoly
2020-10-09 16:56                 ` Ananyev, Konstantin
2020-10-09 16:59                   ` Burakov, Anatoly
2020-10-10 13:19                     ` Ananyev, Konstantin
2020-10-12 10:35                       ` Burakov, Anatoly
2020-10-12 10:36                         ` Burakov, Anatoly
2020-10-12 12:50                           ` Ananyev, Konstantin
2020-10-12 13:13                             ` Burakov, Anatoly
2020-10-13  9:45                               ` Burakov, Anatoly
2020-10-02 14:11       ` [dpdk-dev] [PATCH v4 03/10] ethdev: add simple power management API Liang Ma
2020-10-08  8:46         ` Thomas Monjalon
2020-10-08 11:39           ` Ananyev, Konstantin
2020-10-08 22:26         ` Ananyev, Konstantin
2020-10-09 16:11           ` Burakov, Anatoly
2020-10-02 14:11       ` [dpdk-dev] [PATCH v4 04/10] power: add simple power management API and callback Liang Ma
2020-10-09 16:38         ` Ananyev, Konstantin
2020-10-09 16:47           ` Burakov, Anatoly
2020-10-09 16:51             ` Ananyev, Konstantin
2020-10-09 16:56               ` Burakov, Anatoly
2020-10-02 14:11       ` [dpdk-dev] [PATCH v4 05/10] net/ixgbe: implement power management API Liang Ma
2020-10-09 15:53         ` Ananyev, Konstantin
2020-10-02 14:11       ` [dpdk-dev] [PATCH v4 06/10] net/i40e: " Liang Ma
2020-10-09 16:01         ` Ananyev, Konstantin
2020-10-02 14:11       ` [dpdk-dev] [PATCH v4 07/10] net/ice: " Liang Ma
2020-10-02 14:11       ` [dpdk-dev] [PATCH v4 08/10] examples/l3fwd-power: enable PMD power mgmt Liang Ma
2020-10-02 14:11       ` [dpdk-dev] [PATCH v4 09/10] doc: update release notes for PMD power management Liang Ma
2020-10-02 14:11       ` [dpdk-dev] [PATCH v4 10/10] doc: update the programming guide " Liang Ma
2020-10-02 14:44       ` [dpdk-dev] [PATCH v4 01/10] eal: add new x86 cpuid support for WAITPKG Bruce Richardson
2020-10-08 22:08       ` Ananyev, Konstantin
2020-10-09 16:02       ` [dpdk-dev] [PATCH v5 " Anatoly Burakov
2020-10-09 17:06         ` Burakov, Anatoly
2020-10-14 13:30         ` [dpdk-dev] [PATCH v6 " Anatoly Burakov
2020-10-15 12:04           ` [dpdk-dev] [PATCH v7 " Anatoly Burakov
2020-10-23 17:17             ` [dpdk-dev] [PATCH v8 " Liang Ma
2020-10-23 23:06               ` [dpdk-dev] [PATCH v9 00/10] Add PMD power mgmt Liang Ma
2020-10-27 14:59                 ` [dpdk-dev] [PATCH v10 0/9] " Liang Ma
2020-10-27 16:02                   ` Thomas Monjalon
2020-10-28 13:35                     ` Liang, Ma
2020-10-28 13:49                       ` Jerin Jacob
2020-10-28 14:21                         ` Thomas Monjalon
2020-10-28 14:57                           ` Ananyev, Konstantin
2020-10-28 15:14                             ` Jerin Jacob
2020-10-28 15:30                               ` Liang, Ma
2020-10-28 15:36                                 ` Jerin Jacob
2020-10-28 15:44                                   ` Liang, Ma
2020-10-28 16:01                                     ` Jerin Jacob
2020-10-28 16:21                                       ` Liang, Ma
2020-10-28 15:33                               ` Ananyev, Konstantin
2020-10-28 15:39                                 ` Jerin Jacob
2020-10-28 15:49                                   ` Ananyev, Konstantin
2020-10-28 15:57                                     ` Jerin Jacob
2020-10-28 16:38                                       ` Ananyev, Konstantin
2020-10-28 16:47                                       ` Liang, Ma
2020-10-28 16:54                                         ` McDaniel, Timothy
2020-10-29  9:19                                           ` Liang, Ma
2020-10-28 17:02                                         ` Ajit Khaparde
2020-10-28 18:10                                           ` Ananyev, Konstantin
2020-10-27 20:53                   ` Ajit Khaparde
2020-10-28 12:13                     ` Liang, Ma
2020-10-29 17:42                   ` Thomas Monjalon
2020-10-30  9:36                     ` Liang, Ma
2020-10-30  9:58                       ` Thomas Monjalon
2020-10-27 14:59                 ` [dpdk-dev] [PATCH v10 1/9] eal: add new x86 cpuid support for WAITPKG Liang Ma
2020-10-27 14:59                 ` [dpdk-dev] [PATCH v10 2/9] eal: add power management intrinsics Liang Ma
2020-10-29 17:39                   ` Thomas Monjalon
2020-10-27 14:59                 ` [dpdk-dev] [PATCH v10 3/9] eal: add intrinsics support check infrastructure Liang Ma
2020-10-29 21:27                   ` David Marchand
2020-10-30 10:09                     ` Burakov, Anatoly
2020-10-30 10:14                       ` Thomas Monjalon
2020-10-30 13:37                         ` Burakov, Anatoly
2020-10-30 14:09                           ` Thomas Monjalon
2020-10-30 15:27                             ` Burakov, Anatoly
2020-10-30 15:44                               ` Thomas Monjalon
2020-10-30 16:36                                 ` Burakov, Anatoly
2020-10-30 16:50                                   ` Thomas Monjalon
2020-10-27 14:59                 ` [dpdk-dev] [PATCH v10 4/9] ethdev: add simple power management API Liang Ma
2020-10-27 14:59                 ` [dpdk-dev] [PATCH v10 5/9] power: add PMD power management API and callback Liang Ma
2020-10-27 14:59                 ` [dpdk-dev] [PATCH v10 6/9] net/ixgbe: implement power management API Liang Ma
2020-10-27 14:59                 ` [dpdk-dev] [PATCH v10 7/9] net/i40e: " Liang Ma
2020-10-27 14:59                 ` [dpdk-dev] [PATCH v10 8/9] net/ice: " Liang Ma
2020-10-27 14:59                 ` [dpdk-dev] [PATCH v10 9/9] examples/l3fwd-power: enable PMD power mgmt Liang Ma
2020-10-23 23:06               ` [dpdk-dev] [PATCH v9 01/10] eal: add new x86 cpuid support for WAITPKG Liang Ma
2020-10-23 23:06               ` [dpdk-dev] [PATCH v9 02/10] eal: add power management intrinsics Liang Ma
2020-10-23 23:06               ` [dpdk-dev] [PATCH v9 03/10] eal: add intrinsics support check infrastructure Liang Ma
2020-10-23 23:06               ` [dpdk-dev] [PATCH v9 04/10] ethdev: add simple power management API Liang Ma
2020-10-24 20:39                 ` Thomas Monjalon
2020-10-27 11:15                   ` Liang, Ma
2020-10-27 15:52                     ` Thomas Monjalon
2020-10-27 17:43                       ` Ananyev, Konstantin
2020-10-27 18:30                         ` Thomas Monjalon
2020-10-27 23:29                           ` Ananyev, Konstantin
2020-10-28  3:24                             ` Ajit Khaparde
2020-10-28 12:24                             ` Liang, Ma
2020-10-23 23:06               ` [dpdk-dev] [PATCH v9 05/10] power: add PMD power management API and callback Liang Ma
2020-10-23 23:06               ` [dpdk-dev] [PATCH v9 06/10] net/ixgbe: implement power management API Liang Ma
2020-10-23 23:06               ` [dpdk-dev] [PATCH v9 07/10] net/i40e: " Liang Ma
2020-10-23 23:06               ` [dpdk-dev] [PATCH v9 08/10] net/ice: " Liang Ma
2020-10-23 23:06               ` [dpdk-dev] [PATCH v9 09/10] examples/l3fwd-power: enable PMD power mgmt Liang Ma
2020-10-23 23:06               ` [dpdk-dev] [PATCH v9 10/10] doc: update programmer's guide for power library Liang Ma
2020-10-24 20:49                 ` Thomas Monjalon
2020-10-27 11:04                   ` Liang, Ma
2020-10-23 17:20             ` [dpdk-dev] [PATCH v8 02/10] eal: add power management intrinsics Liang Ma
2020-10-23 17:21             ` [dpdk-dev] [PATCH v8 03/10] eal: add intrinsics support check infrastructure Liang Ma
2020-10-23 17:22             ` [dpdk-dev] [PATCH v8 04/10] ethdev: add simple power management API Liang Ma
2020-10-23 17:23             ` [dpdk-dev] [PATCH v8 05/10] power: add PMD power management API and callback Liang Ma
2020-10-23 17:26             ` [dpdk-dev] [PATCH v8 06/10] net/ixgbe: implement power management API Liang Ma
2020-10-23 17:26             ` [dpdk-dev] [PATCH v8 07/10] net/i40e: " Liang Ma
2020-10-23 17:27             ` [dpdk-dev] [PATCH v8 08/10] net/ice: " Liang Ma
2020-10-23 17:30             ` [dpdk-dev] [PATCH v8 09/10] examples/l3fwd-power: enable PMD power mgmt Liang Ma
2020-10-23 17:36             ` [dpdk-dev] [PATCH v8 10/10] doc: update programmer's guide for power library Liang Ma
2020-10-15 12:04           ` [dpdk-dev] [PATCH v7 02/10] eal: add power management intrinsics Anatoly Burakov
2020-10-15 12:06             ` Jerin Jacob
2020-10-15 13:16             ` Ferruh Yigit
2020-10-16  8:44               ` Ruifeng Wang
2020-10-15 16:43             ` Ananyev, Konstantin
2020-10-19 21:12             ` Thomas Monjalon
2020-10-20  2:49               ` Ruifeng Wang
2020-10-20  7:35                 ` Thomas Monjalon
2020-10-20 14:01                   ` David Hunt
2020-10-20 14:17                     ` David Hunt
2020-10-20 14:33                       ` Thomas Monjalon
2020-10-20 17:26                         ` Ananyev, Konstantin
2020-10-20 19:28                           ` Thomas Monjalon
2020-10-15 12:04           ` [dpdk-dev] [PATCH v7 03/10] eal: add intrinsics support check infrastructure Anatoly Burakov
2020-10-16  9:02             ` Ruifeng Wang
2020-10-16 11:21             ` Kinsella, Ray
2020-10-15 12:04           ` [dpdk-dev] [PATCH v7 04/10] ethdev: add simple power management API Anatoly Burakov
2020-10-15 12:04           ` [dpdk-dev] [PATCH v7 05/10] power: add PMD power management API and callback Anatoly Burakov
2020-10-15 16:52             ` Ananyev, Konstantin
2020-10-15 12:04           ` [dpdk-dev] [PATCH v7 06/10] net/ixgbe: implement power management API Anatoly Burakov
2020-10-15 12:04           ` [dpdk-dev] [PATCH v7 07/10] net/i40e: " Anatoly Burakov
2020-10-15 12:04           ` [dpdk-dev] [PATCH v7 08/10] net/ice: " Anatoly Burakov
2020-10-15 12:04           ` [dpdk-dev] [PATCH v7 09/10] examples/l3fwd-power: enable PMD power mgmt Anatoly Burakov
2020-10-15 12:04           ` [dpdk-dev] [PATCH v7 10/10] doc: update programmer's guide for power library Anatoly Burakov
2020-10-14 13:30         ` [dpdk-dev] [PATCH v6 02/10] eal: add power management intrinsics Anatoly Burakov
2020-10-14 17:48           ` Ananyev, Konstantin
2020-10-15 10:09             ` Burakov, Anatoly
2020-10-15 10:45               ` Burakov, Anatoly
2020-10-14 13:30         ` [dpdk-dev] [PATCH v6 03/10] eal: add intrinsics support check infrastructure Anatoly Burakov
2020-10-14 17:51           ` Ananyev, Konstantin
2020-10-14 17:59           ` Jerin Jacob
2020-10-14 13:30         ` [dpdk-dev] [PATCH v6 04/10] ethdev: add simple power management API Anatoly Burakov
2020-10-14 17:06           ` Ananyev, Konstantin
2020-10-15 11:29           ` Liang, Ma
2020-10-14 13:30         ` [dpdk-dev] [PATCH v6 05/10] power: add PMD power management API and callback Anatoly Burakov
2020-10-14 14:19           ` David Hunt
2020-10-14 18:41           ` Ananyev, Konstantin
2020-10-15 10:31             ` Burakov, Anatoly
2020-10-15 16:02               ` Ananyev, Konstantin
2020-10-14 13:30         ` [dpdk-dev] [PATCH v6 06/10] net/ixgbe: implement power management API Anatoly Burakov
2020-10-14 17:04           ` Wang, Haiyue
2020-10-14 13:30         ` [dpdk-dev] [PATCH v6 07/10] net/i40e: " Anatoly Burakov
2020-10-14 13:30         ` [dpdk-dev] [PATCH v6 08/10] net/ice: " Anatoly Burakov
2020-10-14 13:30         ` [dpdk-dev] [PATCH v6 09/10] examples/l3fwd-power: enable PMD power mgmt Anatoly Burakov
2020-10-14 14:24           ` David Hunt
2020-10-14 13:30         ` [dpdk-dev] [PATCH v6 10/10] doc: update programmer's guide for power library Anatoly Burakov
2020-10-14 14:27           ` David Hunt
2020-10-09 16:02       ` [dpdk-dev] [PATCH v5 02/10] eal: add power management intrinsics Anatoly Burakov
2020-10-09 16:09         ` Jerin Jacob
2020-10-09 16:24           ` Burakov, Anatoly
2020-10-12 19:47         ` David Christensen
2020-10-09 16:02       ` [dpdk-dev] [PATCH v5 03/10] eal: add intrinsics support check infrastructure Anatoly Burakov
2020-10-11 10:07         ` Jerin Jacob
2020-10-12  9:26           ` Burakov, Anatoly
2020-10-12 19:52         ` David Christensen
2020-10-09 16:02       ` [dpdk-dev] [PATCH v5 04/10] ethdev: add simple power management API Anatoly Burakov
2020-10-14  3:10         ` Guo, Jia
2020-10-14  9:07           ` Burakov, Anatoly
2020-10-14  9:15             ` Guo, Jia
2020-10-14  9:30               ` Burakov, Anatoly
2020-10-14  9:23             ` Bruce Richardson
2020-10-09 16:02       ` [dpdk-dev] [PATCH v5 05/10] power: add PMD power management API and callback Anatoly Burakov
2020-10-09 16:02       ` [dpdk-dev] [PATCH v5 06/10] net/ixgbe: implement power management API Anatoly Burakov
2020-10-12  7:46         ` Wang, Haiyue
2020-10-12  9:28           ` Burakov, Anatoly
2020-10-12  9:44           ` Burakov, Anatoly
2020-10-12 15:58             ` Wang, Haiyue
2020-10-12  8:09         ` Wang, Haiyue
2020-10-12  9:28           ` Burakov, Anatoly
2020-10-13  1:17             ` Wang, Haiyue
2020-10-09 16:02       ` [dpdk-dev] [PATCH v5 07/10] net/i40e: " Anatoly Burakov
2020-10-14  3:19         ` Guo, Jia
2020-10-14  9:08           ` Burakov, Anatoly
2020-10-14  9:17             ` Guo, Jia
2020-10-09 16:02       ` [dpdk-dev] [PATCH v5 08/10] net/ice: " Anatoly Burakov
2020-10-09 16:02       ` [dpdk-dev] [PATCH v5 09/10] examples/l3fwd-power: enable PMD power mgmt Anatoly Burakov
2020-10-09 16:02       ` [dpdk-dev] [PATCH v5 10/10] doc: update programmer's guide for power library Anatoly Burakov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20201009113606.GC1474@bricha3-MOBL.ger.corp.intel.com \
    --to=bruce.richardson@intel.com \
    --cc=anatoly.burakov@intel.com \
    --cc=david.hunt@intel.com \
    --cc=david.marchand@redhat.com \
    --cc=dev@dpdk.org \
    --cc=drc@linux.vnet.ibm.com \
    --cc=honnappa.nagarahalli@arm.com \
    --cc=jerinj@marvell.com \
    --cc=jerinjacobk@gmail.com \
    --cc=konstantin.ananyev@intel.com \
    --cc=liang.j.ma@intel.com \
    --cc=ruifeng.wang@arm.com \
    --cc=stephen@networkplumber.org \
    --cc=thomas@monjalon.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).