mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 04:56:43 +07:00
a4f1f9ac81
This commit introduces a generic library to estimate either the min or max value of a time-varying variable over a recent time window. This is code originally from Kathleen Nichols. The current form of the code is from Van Jacobson. A single struct minmax_sample will track the estimated windowed-max value of the series if you call minmax_running_max() or the estimated windowed-min value of the series if you call minmax_running_min(). Nearly equivalent code is already in place for minimum RTT estimation in the TCP stack. This commit extracts that code and generalizes it to handle both min and max. Moving the code here reduces the footprint and complexity of the TCP code base and makes the filter generally available for other parts of the codebase, including an upcoming TCP congestion control module. This library works well for time series where the measurements are smoothly increasing or decreasing. Signed-off-by: Van Jacobson <vanj@google.com> Signed-off-by: Neal Cardwell <ncardwell@google.com> Signed-off-by: Yuchung Cheng <ycheng@google.com> Signed-off-by: Nandita Dukkipati <nanditad@google.com> Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: Soheil Hassas Yeganeh <soheil@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
38 lines
793 B
C
38 lines
793 B
C
/**
|
|
* lib/minmax.c: windowed min/max tracker by Kathleen Nichols.
|
|
*
|
|
*/
|
|
#ifndef MINMAX_H
|
|
#define MINMAX_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
/* A single data point for our parameterized min-max tracker */
|
|
struct minmax_sample {
|
|
u32 t; /* time measurement was taken */
|
|
u32 v; /* value measured */
|
|
};
|
|
|
|
/* State for the parameterized min-max tracker */
|
|
struct minmax {
|
|
struct minmax_sample s[3];
|
|
};
|
|
|
|
static inline u32 minmax_get(const struct minmax *m)
|
|
{
|
|
return m->s[0].v;
|
|
}
|
|
|
|
static inline u32 minmax_reset(struct minmax *m, u32 t, u32 meas)
|
|
{
|
|
struct minmax_sample val = { .t = t, .v = meas };
|
|
|
|
m->s[2] = m->s[1] = m->s[0] = val;
|
|
return m->s[0].v;
|
|
}
|
|
|
|
u32 minmax_running_max(struct minmax *m, u32 win, u32 t, u32 meas);
|
|
u32 minmax_running_min(struct minmax *m, u32 win, u32 t, u32 meas);
|
|
|
|
#endif
|