FD.io VPP  v16.06
Vector Packet Processing
timing_wheel.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #ifndef included_clib_timing_wheel_h
16 #define included_clib_timing_wheel_h
17 
18 #include <vppinfra/format.h>
19 
20 typedef struct {
21  /* Time of this element in units cpu clock ticks relative to time
22  base. 32 bits should be large enough for serveral kilo-seconds
23  to elapse before we have to re-set time base. */
25 
26  /* User data to store in this bin. */
29 
30 /* Overflow wheel elements where time does not fit into 32 bits. */
31 typedef struct {
32  /* Absolute time of this element. */
34 
35  /* User data to store in this bin. */
37 
40 
41 typedef struct {
42  /* 2^M bits: 1 means vector is non-zero else zero. */
44 
45  /* 2^M element table of element vectors, one for each time bin. */
48 
49 typedef struct {
50  /* Vector of refill counts per level. */
52 
53  /* Number of times cpu time base was rescaled. */
56 
57 typedef struct {
58  /* Each bin is a power of two clock ticks (N)
59  chosen so that 2^N >= min_sched_time. */
61 
62  /* Wheels are 2^M bins where 2^(N+M) >= max_sched_time. */
64 
65  /* N + M. */
67 
68  /* Number of bits to use in cpu_time_relative_to_base field
69  of timing_wheel_elt_t. */
71 
72  /* 2^M. */
74 
75  /* 2^M - 1. */
77 
79 
81 
82  /* Free list of element vector so we can recycle old allocated vectors. */
84 
86 
87  /* Hash table of user data values which have been deleted but not yet re-inserted. */
89 
90  /* Enable validation for debugging. */
92 
93  /* Time index. Measures time in units of 2^N clock ticks from
94  when wheel starts. */
96 
97  /* All times are 32 bit numbers relative to cpu_time_base.
98  So, roughly every 2^(32 + N) clocks we'll need to subtract from
99  all timing_wheel_elt_t times to make sure they never overflow. */
101 
102  /* When current_time_index is >= this we update cpu_time_base
103  to avoid overflowing 32 bit cpu_time_relative_to_base
104  in timing_wheel_elt_t. */
106 
107  /* Cached earliest element on wheel; 0 if not valid. */
109 
110  f64 min_sched_time, max_sched_time, cpu_clocks_per_second;
111 
114 
115 /* Initialization function. */
117  u64 current_cpu_time, f64 cpu_clocks_per_second);
118 
119 /* Insert user data on wheel at given CPU time stamp. */
120 void timing_wheel_insert (timing_wheel_t * w, u64 insert_cpu_time, u32 user_data);
121 
122 /* Delete user data from wheel (until it is again inserted). */
123 void timing_wheel_delete (timing_wheel_t * w, u32 user_data);
124 
125 /* Advance wheel and return any expired user data in vector. If non-zero
126  min_next_expiring_element_cpu_time will return a cpu time stamp
127  before which there are guaranteed to be no elements in the current wheel. */
128 u32 * timing_wheel_advance (timing_wheel_t * w, u64 advance_cpu_time, u32 * expired_user_data,
129  u64 * min_next_expiring_element_cpu_time);
130 
131 /* Returns absolute time in clock cycles of next expiring element. */
133 
134 /* Format a timing wheel. */
136 
137 /* Testing function to validate wheel. */
139 
140 #endif /* included_clib_timing_wheel_h */
timing_wheel_overflow_elt_t * overflow_pool
Definition: timing_wheel.h:80
u64 cached_min_cpu_time_on_wheel
Definition: timing_wheel.h:108
void timing_wheel_delete(timing_wheel_t *w, u32 user_data)
Definition: timing_wheel.c:305
u64 current_time_index
Definition: timing_wheel.h:95
timing_wheel_stats_t stats
Definition: timing_wheel.h:112
format_function_t format_timing_wheel
Definition: timing_wheel.h:135
unsigned long u64
Definition: types.h:89
u64 timing_wheel_next_expiring_elt_time(timing_wheel_t *w)
Definition: timing_wheel.c:314
void timing_wheel_validate(timing_wheel_t *w)
Definition: timing_wheel.c:147
timing_wheel_elt_t ** free_elt_vectors
Definition: timing_wheel.h:83
void timing_wheel_insert(timing_wheel_t *w, u64 insert_cpu_time, u32 user_data)
Definition: timing_wheel.c:273
timing_wheel_elt_t ** elts
Definition: timing_wheel.h:46
timing_wheel_elt_t * unexpired_elts_pending_insert
Definition: timing_wheel.h:85
uword * deleted_user_data_hash
Definition: timing_wheel.h:88
unsigned int u32
Definition: types.h:88
u64 time_index_next_cpu_time_base_update
Definition: timing_wheel.h:105
void timing_wheel_init(timing_wheel_t *w, u64 current_cpu_time, f64 cpu_clocks_per_second)
Definition: timing_wheel.c:21
u8 *( format_function_t)(u8 *s, va_list *args)
Definition: format.h:48
timing_wheel_level_t * levels
Definition: timing_wheel.h:78
u64 uword
Definition: types.h:112
double f64
Definition: types.h:140
unsigned char u8
Definition: types.h:56
u8 n_wheel_elt_time_bits
Definition: timing_wheel.h:70
u32 bins_per_wheel_mask
Definition: timing_wheel.h:76
u32 * timing_wheel_advance(timing_wheel_t *w, u64 advance_cpu_time, u32 *expired_user_data, u64 *min_next_expiring_element_cpu_time)
Definition: timing_wheel.c:551
u8 log2_clocks_per_wheel
Definition: timing_wheel.h:66