diff options
author | John W. Linville <linville@tuxdriver.com> | 2010-11-24 16:49:20 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-11-24 16:49:20 -0500 |
commit | 51cce8a590c4696d62bfacc63378d1036084cef7 (patch) | |
tree | dc24485bdff37ca6a83c69e93ffdbe5c5807b59d /lib | |
parent | 2fe66ec242d3f76e3b0101f36419e7e5405bcff3 (diff) | |
parent | 4f8559383c41262b50dc758e2e310f257ce6a14d (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next-2.6 into for-davem
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Kconfig | 3 | ||||
-rw-r--r-- | lib/Makefile | 2 | ||||
-rw-r--r-- | lib/average.c | 57 |
3 files changed, 62 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index fa9bf2c06199..3116aa631af6 100644 --- a/lib/Kconfig +++ b/lib/Kconfig | |||
@@ -210,4 +210,7 @@ config GENERIC_ATOMIC64 | |||
210 | config LRU_CACHE | 210 | config LRU_CACHE |
211 | tristate | 211 | tristate |
212 | 212 | ||
213 | config AVERAGE | ||
214 | bool | ||
215 | |||
213 | endmenu | 216 | endmenu |
diff --git a/lib/Makefile b/lib/Makefile index e6a3763b8212..76d3b8514903 100644 --- a/lib/Makefile +++ b/lib/Makefile | |||
@@ -106,6 +106,8 @@ obj-$(CONFIG_GENERIC_ATOMIC64) += atomic64.o | |||
106 | 106 | ||
107 | obj-$(CONFIG_ATOMIC64_SELFTEST) += atomic64_test.o | 107 | obj-$(CONFIG_ATOMIC64_SELFTEST) += atomic64_test.o |
108 | 108 | ||
109 | obj-$(CONFIG_AVERAGE) += average.o | ||
110 | |||
109 | hostprogs-y := gen_crc32table | 111 | hostprogs-y := gen_crc32table |
110 | clean-files := crc32table.h | 112 | clean-files := crc32table.h |
111 | 113 | ||
diff --git a/lib/average.c b/lib/average.c new file mode 100644 index 000000000000..f1d1b4660c42 --- /dev/null +++ b/lib/average.c | |||
@@ -0,0 +1,57 @@ | |||
1 | /* | ||
2 | * lib/average.c | ||
3 | * | ||
4 | * This source code is licensed under the GNU General Public License, | ||
5 | * Version 2. See the file COPYING for more details. | ||
6 | */ | ||
7 | |||
8 | #include <linux/module.h> | ||
9 | #include <linux/average.h> | ||
10 | #include <linux/bug.h> | ||
11 | |||
12 | /** | ||
13 | * DOC: Exponentially Weighted Moving Average (EWMA) | ||
14 | * | ||
15 | * These are generic functions for calculating Exponentially Weighted Moving | ||
16 | * Averages (EWMA). We keep a structure with the EWMA parameters and a scaled | ||
17 | * up internal representation of the average value to prevent rounding errors. | ||
18 | * The factor for scaling up and the exponential weight (or decay rate) have to | ||
19 | * be specified thru the init fuction. The structure should not be accessed | ||
20 | * directly but only thru the helper functions. | ||
21 | */ | ||
22 | |||
23 | /** | ||
24 | * ewma_init() - Initialize EWMA parameters | ||
25 | * @avg: Average structure | ||
26 | * @factor: Factor to use for the scaled up internal value. The maximum value | ||
27 | * of averages can be ULONG_MAX/(factor*weight). | ||
28 | * @weight: Exponential weight, or decay rate. This defines how fast the | ||
29 | * influence of older values decreases. Has to be bigger than 1. | ||
30 | * | ||
31 | * Initialize the EWMA parameters for a given struct ewma @avg. | ||
32 | */ | ||
33 | void ewma_init(struct ewma *avg, unsigned long factor, unsigned long weight) | ||
34 | { | ||
35 | WARN_ON(weight <= 1 || factor == 0); | ||
36 | avg->internal = 0; | ||
37 | avg->weight = weight; | ||
38 | avg->factor = factor; | ||
39 | } | ||
40 | EXPORT_SYMBOL(ewma_init); | ||
41 | |||
42 | /** | ||
43 | * ewma_add() - Exponentially weighted moving average (EWMA) | ||
44 | * @avg: Average structure | ||
45 | * @val: Current value | ||
46 | * | ||
47 | * Add a sample to the average. | ||
48 | */ | ||
49 | struct ewma *ewma_add(struct ewma *avg, unsigned long val) | ||
50 | { | ||
51 | avg->internal = avg->internal ? | ||
52 | (((avg->internal * (avg->weight - 1)) + | ||
53 | (val * avg->factor)) / avg->weight) : | ||
54 | (val * avg->factor); | ||
55 | return avg; | ||
56 | } | ||
57 | EXPORT_SYMBOL(ewma_add); | ||