Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
flex_proportions.h
Go to the documentation of this file.
1 /*
2  * Floating proportions with flexible aging period
3  *
4  * Copyright (C) 2011, SUSE, Jan Kara <[email protected]>
5  */
6 
7 #ifndef _LINUX_FLEX_PROPORTIONS_H
8 #define _LINUX_FLEX_PROPORTIONS_H
9 
10 #include <linux/percpu_counter.h>
11 #include <linux/spinlock.h>
12 #include <linux/seqlock.h>
13 
14 /*
15  * When maximum proportion of some event type is specified, this is the
16  * precision with which we allow limitting. Note that this creates an upper
17  * bound on the number of events per period like
18  * ULLONG_MAX >> FPROP_FRAC_SHIFT.
19  */
20 #define FPROP_FRAC_SHIFT 10
21 #define FPROP_FRAC_BASE (1UL << FPROP_FRAC_SHIFT)
22 
23 /*
24  * ---- Global proportion definitions ----
25  */
26 struct fprop_global {
27  /* Number of events in the current period */
29  /* Current period */
30  unsigned int period;
31  /* Synchronization with period transitions */
33 };
34 
35 int fprop_global_init(struct fprop_global *p);
36 void fprop_global_destroy(struct fprop_global *p);
37 bool fprop_new_period(struct fprop_global *p, int periods);
38 
39 /*
40  * ---- SINGLE ----
41  */
43  /* the local events counter */
44  unsigned long events;
45  /* Period in which we last updated events */
46  unsigned int period;
47  raw_spinlock_t lock; /* Protect period and numerator */
48 };
49 
50 #define INIT_FPROP_LOCAL_SINGLE(name) \
51 { .lock = __RAW_SPIN_LOCK_UNLOCKED(name.lock), \
52 }
53 
58  struct fprop_local_single *pl, unsigned long *numerator,
59  unsigned long *denominator);
60 
61 static inline
62 void fprop_inc_single(struct fprop_global *p, struct fprop_local_single *pl)
63 {
64  unsigned long flags;
65 
66  local_irq_save(flags);
67  __fprop_inc_single(p, pl);
68  local_irq_restore(flags);
69 }
70 
71 /*
72  * ---- PERCPU ----
73  */
75  /* the local events counter */
77  /* Period in which we last updated events */
78  unsigned int period;
79  raw_spinlock_t lock; /* Protect period and numerator */
80 };
81 
86  int max_frac);
88  struct fprop_local_percpu *pl, unsigned long *numerator,
89  unsigned long *denominator);
90 
91 static inline
92 void fprop_inc_percpu(struct fprop_global *p, struct fprop_local_percpu *pl)
93 {
94  unsigned long flags;
95 
96  local_irq_save(flags);
97  __fprop_inc_percpu(p, pl);
98  local_irq_restore(flags);
99 }
100 
101 #endif