Re: [RFC v2 2/2] eal: add high-performance timer facility

2023-07-12 Thread Mattias Rönnblom
On 2023-07-07 00:41, Stephen Hemminger wrote: > On Wed, 15 Mar 2023 18:03:42 +0100 > Mattias Rönnblom wrote: > >> The htimer library attempts at providing a timer facility with roughly >> the same functionality, but less overhead and better scalability than >> DPDK timer library. > > I don't und

RE: [RFC v2 2/2] eal: add high-performance timer facility

2023-04-04 Thread Morten Brørup
> From: Mattias Rönnblom [mailto:mattias.ronnb...@ericsson.com] > Sent: Monday, 3 April 2023 14.04 > > On 2023-03-22 13:18, Morten Brørup wrote: > >> From: Mattias Rönnblom [mailto:mattias.ronnb...@ericsson.com] > >> Sent: Wednesday, 15 March 2023 18.04 > > > >> +++ b/lib/htimer/rte_htimer.h > >>

Re: [RFC v2 2/2] eal: add high-performance timer facility

2023-04-03 Thread Mattias Rönnblom
On 2023-03-22 13:18, Morten Brørup wrote: >> From: Mattias Rönnblom [mailto:mattias.ronnb...@ericsson.com] >> Sent: Wednesday, 15 March 2023 18.04 > >> +++ b/lib/htimer/rte_htimer.h >> @@ -0,0 +1,68 @@ >> +/* SPDX-License-Identifier: BSD-3-Clause >> + * Copyright(c) 2023 Ericsson AB >> + */ >> + >

RE: [RFC v2 2/2] eal: add high-performance timer facility

2023-03-24 Thread Morten Brørup
> From: Mattias Rönnblom [mailto:mattias.ronnb...@ericsson.com] > Sent: Wednesday, 15 March 2023 18.04 > > The htimer library attempts at providing a timer facility with roughly > the same functionality, but less overhead and better scalability than > DPDK timer library. > > The htimer library em

RE: [RFC v2 2/2] eal: add high-performance timer facility

2023-03-22 Thread Morten Brørup
> From: Mattias Rönnblom [mailto:mattias.ronnb...@ericsson.com] > Sent: Wednesday, 15 March 2023 18.04 > +++ b/lib/htimer/rte_htimer.h > @@ -0,0 +1,68 @@ > +/* SPDX-License-Identifier: BSD-3-Clause > + * Copyright(c) 2023 Ericsson AB > + */ > + > +#ifndef _RTE_HTIMER_H_ > +#define _RTE_HTIMER_H_ >

Re: [RFC v2 2/2] eal: add high-performance timer facility

2023-03-16 Thread Stephen Hemminger
On Wed, 15 Mar 2023 18:03:42 +0100 Mattias Rönnblom wrote: > The htimer library attempts at providing a timer facility with roughly > the same functionality, but less overhead and better scalability than > DPDK timer library. > > The htimer library employs per-lcore hierarchical timer wheels and

Re: [RFC v2 2/2] eal: add high-performance timer facility

2023-03-15 Thread Tyler Retzlaff
On Wed, Mar 15, 2023 at 06:03:42PM +0100, Mattias Rönnblom wrote: > The htimer library attempts at providing a timer facility with roughly > the same functionality, but less overhead and better scalability than > DPDK timer library. > > The htimer library employs per-lcore hierarchical timer wheel